diff --git a/CONTRIBUTING.md b/.github/CONTRIBUTING.md
similarity index 96%
rename from CONTRIBUTING.md
rename to .github/CONTRIBUTING.md
index 9b5c18fdc2f..013a7d1e205 100644
--- a/CONTRIBUTING.md
+++ b/.github/CONTRIBUTING.md
@@ -138,12 +138,15 @@ First, read the comments in this byond thread, starting here:http://www.byond.co
There are two key points here:
-1) Defining a list in the type definition incurs a hidden proc call - init, if you must define a list at startup, do so in New() and avoid the overhead of a second call (init() and then new())
+1) Defining a list in the type definition incurs a hidden proc call - init, if you must define a list at startup, do so in New()/Initialize and avoid the overhead of a second call (init() and then new())
2)Offsets list creation overhead to the point where the list is actually required (which for many objects, may be never at all).
Remember, this tradeoff makes sense in many cases but not all, you should think carefully about your implementation before deciding if this is an appropriate thing to do
+###Prefer `Initialize` over `New` for atoms
+Our game controller is pretty good at handling long operations and lag. But, it can't control what happens when the map is loaded, which calls `New` for all atoms on the map. If you're creating a new atom, use the `Initialize` proc to do what you would normally do in `New`. This cuts down on the number of proc calls needed when the world is loaded. See here for details on `Initialize`: https://github.com/tgstation/tgstation/blob/master/code/game/atoms.dm#L49
+
###No magic numbers or strings
Make these #defines with a name that more clearly states what it's for.
diff --git a/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md
similarity index 100%
rename from ISSUE_TEMPLATE.md
rename to .github/ISSUE_TEMPLATE.md
diff --git a/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md
similarity index 100%
rename from PULL_REQUEST_TEMPLATE.md
rename to .github/PULL_REQUEST_TEMPLATE.md
diff --git a/SQL/database_changelog.txt b/SQL/database_changelog.txt
index bf765a0806d..4c4638295b0 100644
--- a/SQL/database_changelog.txt
+++ b/SQL/database_changelog.txt
@@ -1,3 +1,13 @@
+19 February 2017, by Jordie0608
+
+Optimised and indexed significant portions of the schema.
+
+See the file 'optimisations_2017-02-19.sql' for instructions on how to apply these changes to your database.
+
+Remember to add a prefix to the table name if you use them
+
+----------------------------------------------------
+
30 January 2017, by Lzimann
Modified table 'death', adding the columns 'mapname' and 'server'.
diff --git a/SQL/optimisations_2017-02-19.sql b/SQL/optimisations_2017-02-19.sql
new file mode 100644
index 00000000000..bcfd1028019
--- /dev/null
+++ b/SQL/optimisations_2017-02-19.sql
@@ -0,0 +1,207 @@
+/*
+It is recommended you do not perfom any of these queries while your server is live as they will lock the tables during execution.
+
+Backup your database before starting; Breaking errors may occur when old data is not be compatible with new column formats.
+i.e. A field that is null or empty due to rows existing before the column was added, data corruption or incorrect inputs will prevent altering the column to be NOT NULL.
+To account where this is likely to occur, these queries check if fields have valid data and if not will replace invalid data with 0.
+Some fields may be out of range for new column lengths, this will also cause a breaking error.
+For instance `death`.`bruteloss` is now SMALLINT and won't accept any values over 65535.
+Data in this table can thus be truncated using a query such as:
+UPDATE `[database]`.`[table]` SET `[column]` = LEAST(`[column]`, [max column size])
+To truncate a text field you would have to use SUBSTRING(), however I don't suggest you truncate any text fields.
+If you wish to instead preserve this data you will need to modify the schema and queries to accomodate.
+
+Take note some columns have been renamed, removed or changed type. Any services relying on these columns will have to be updated per changes.
+
+----------------------------------------------------*/
+
+START TRANSACTION;
+ALTER TABLE `feedback`.`ban`
+ DROP COLUMN `rounds`
+, CHANGE COLUMN `bantype` `bantype` ENUM('PERMABAN', 'TEMPBAN', 'JOB_PERMABAN', 'JOB_TEMPBAN', 'ADMIN_PERMABAN', 'ADMIN_TEMPBAN') NOT NULL
+, CHANGE COLUMN `reason` `reason` VARCHAR(2048) NOT NULL
+, CHANGE COLUMN `who` `who` VARCHAR(2048) NOT NULL
+, CHANGE COLUMN `adminwho` `adminwho` VARCHAR(2048) NOT NULL
+, CHANGE COLUMN `unbanned` `unbanned` TINYINT UNSIGNED NULL DEFAULT NULL
+, ADD COLUMN `server_ip` INT UNSIGNED NOT NULL AFTER `serverip`
+, ADD COLUMN `server_port` SMALLINT UNSIGNED NOT NULL AFTER `server_ip`
+, ADD COLUMN `ipTEMP` INT UNSIGNED NOT NULL AFTER `ip`
+, ADD COLUMN `a_ipTEMP` INT UNSIGNED NOT NULL AFTER `a_ip`
+, ADD COLUMN `unbanned_ipTEMP` INT UNSIGNED NULL DEFAULT NULL AFTER `unbanned_ip`;
+SET SQL_SAFE_UPDATES = 0;
+UPDATE `feedback`.`ban`
+ SET `server_ip` = COALESCE(NULLIF(INET_ATON(SUBSTRING_INDEX(`serverip`, ':', 1)), ''), INET_ATON('0.0.0.0'))
+, `server_port` = IF(`serverip` LIKE '%:_%', CAST(SUBSTRING_INDEX(`serverip`, ':', -1) AS UNSIGNED), '0')
+, `ipTEMP` = COALESCE(NULLIF(INET_ATON(SUBSTRING_INDEX(`ip`, ':', 1)), ''), INET_ATON('0.0.0.0'))
+, `a_ipTEMP` = COALESCE(NULLIF(INET_ATON(SUBSTRING_INDEX(`a_ip`, ':', 1)), ''), INET_ATON('0.0.0.0'))
+, `unbanned_ipTEMP` = COALESCE(NULLIF(INET_ATON(SUBSTRING_INDEX(`unbanned_ip`, ':', 1)), ''), INET_ATON('0.0.0.0'));
+SET SQL_SAFE_UPDATES = 1;
+ALTER TABLE `feedback`.`ban`
+ DROP COLUMN `unbanned_ip`
+, DROP COLUMN `a_ip`
+, DROP COLUMN `ip`
+, DROP COLUMN `serverip`
+, CHANGE COLUMN `ipTEMP` `ip` INT(10) UNSIGNED NOT NULL
+, CHANGE COLUMN `a_ipTEMP` `a_ip` INT(10) UNSIGNED NOT NULL
+, CHANGE COLUMN `unbanned_ipTEMP` `unbanned_ip` INT(10) UNSIGNED NULL DEFAULT NULL;
+COMMIT;
+
+START TRANSACTION;
+ALTER TABLE `feedback`.`connection_log`
+ ADD COLUMN `server_ip` INT UNSIGNED NOT NULL AFTER `serverip`
+, ADD COLUMN `server_port` SMALLINT UNSIGNED NOT NULL AFTER `server_ip`
+, ADD COLUMN `ipTEMP` INT UNSIGNED NOT NULL AFTER `ip`;
+SET SQL_SAFE_UPDATES = 0;
+UPDATE `feedback`.`connection_log`
+ SET `server_ip` = COALESCE(NULLIF(INET_ATON(SUBSTRING_INDEX(`serverip`, ':', 1)), ''), INET_ATON('0.0.0.0'))
+, `server_port` = IF(`serverip` LIKE '%:_%', CAST(SUBSTRING_INDEX(`serverip`, ':', -1) AS UNSIGNED), '0')
+, `ipTEMP` = COALESCE(NULLIF(INET_ATON(SUBSTRING_INDEX(`ip`, ':', 1)), ''), INET_ATON('0.0.0.0'));
+SET SQL_SAFE_UPDATES = 1;
+ALTER TABLE `feedback`.`connection_log`
+ DROP COLUMN `ip`
+, DROP COLUMN `serverip`
+, CHANGE COLUMN `ipTEMP` `ip` INT(10) UNSIGNED NOT NULL;
+COMMIT;
+
+START TRANSACTION;
+SET SQL_SAFE_UPDATES = 0;
+UPDATE `feedback`.`death`
+ SET `bruteloss` = LEAST(`bruteloss`, 65535)
+, `brainloss` = LEAST(`brainloss`, 65535)
+, `fireloss` = LEAST(`fireloss`, 65535)
+, `oxyloss` = LEAST(`oxyloss`, 65535);
+ALTER TABLE `feedback`.`death`
+ CHANGE COLUMN `pod` `pod` VARCHAR(50) NOT NULL
+, CHANGE COLUMN `coord` `coord` VARCHAR(32) NOT NULL
+, CHANGE COLUMN `mapname` `mapname` VARCHAR(32) NOT NULL
+, CHANGE COLUMN `job` `job` VARCHAR(32) NOT NULL
+, CHANGE COLUMN `special` `special` VARCHAR(32) NULL DEFAULT NULL
+, CHANGE COLUMN `name` `name` VARCHAR(96) NOT NULL
+, CHANGE COLUMN `byondkey` `byondkey` VARCHAR(32) NOT NULL
+, CHANGE COLUMN `laname` `laname` VARCHAR(96) NULL DEFAULT NULL
+, CHANGE COLUMN `lakey` `lakey` VARCHAR(32) NULL DEFAULT NULL
+, CHANGE COLUMN `gender` `gender` ENUM('neuter', 'male', 'female', 'plural') NOT NULL
+, CHANGE COLUMN `bruteloss` `bruteloss` SMALLINT UNSIGNED NOT NULL
+, CHANGE COLUMN `brainloss` `brainloss` SMALLINT UNSIGNED NOT NULL
+, CHANGE COLUMN `fireloss` `fireloss` SMALLINT UNSIGNED NOT NULL
+, CHANGE COLUMN `oxyloss` `oxyloss` SMALLINT UNSIGNED NOT NULL
+, ADD COLUMN `server_ip` INT UNSIGNED NOT NULL AFTER `server`
+, ADD COLUMN `server_port` SMALLINT UNSIGNED NOT NULL AFTER `server_ip`;
+UPDATE `feedback`.`death`
+ SET `server_ip` = COALESCE(NULLIF(INET_ATON(SUBSTRING_INDEX(`server`, ':', 1)), ''), INET_ATON('0.0.0.0'))
+, `server_port` = IF(`server` LIKE '%:_%', CAST(SUBSTRING_INDEX(`server`, ':', -1) AS UNSIGNED), '0');
+SET SQL_SAFE_UPDATES = 1;
+ALTER TABLE `feedback`.`death`
+ DROP COLUMN `server`;
+COMMIT;
+
+ALTER TABLE `feedback`.`library`
+ CHANGE COLUMN `category` `category` ENUM('Any', 'Fiction', 'Non-Fiction', 'Adult', 'Reference', 'Religion') NOT NULL
+, CHANGE COLUMN `ckey` `ckey` VARCHAR(32) NOT NULL DEFAULT 'LEGACY'
+, CHANGE COLUMN `datetime` `datetime` DATETIME NOT NULL
+, CHANGE COLUMN `deleted` `deleted` TINYINT(1) UNSIGNED NULL DEFAULT NULL;
+
+ALTER TABLE `feedback`.`messages`
+ CHANGE COLUMN `type` `type` ENUM('memo', 'message', 'message sent', 'note', 'watchlist entry') NOT NULL
+, CHANGE COLUMN `text` `text` VARCHAR(2048) NOT NULL
+, CHANGE COLUMN `secret` `secret` TINYINT(1) UNSIGNED NOT NULL;
+
+START TRANSACTION;
+ALTER TABLE `feedback`.`player`
+ ADD COLUMN `ipTEMP` INT UNSIGNED NOT NULL AFTER `ip`;
+SET SQL_SAFE_UPDATES = 0;
+UPDATE `feedback`.`player`
+ SET `ipTEMP` = COALESCE(NULLIF(INET_ATON(SUBSTRING_INDEX(`ip`, ':', 1)), ''), INET_ATON('0.0.0.0'));
+SET SQL_SAFE_UPDATES = 1;
+ALTER TABLE `feedback`.`player`
+ DROP COLUMN `ip`
+, CHANGE COLUMN `ipTEMP` `ip` INT(10) UNSIGNED NOT NULL;
+COMMIT;
+
+START TRANSACTION;
+ALTER TABLE `feedback`.`poll_question`
+ CHANGE COLUMN `polltype` `polltype` ENUM('OPTION', 'TEXT', 'NUMVAL', 'MULTICHOICE', 'IRV') NOT NULL
+, CHANGE COLUMN `adminonly` `adminonly` TINYINT(1) UNSIGNED NOT NULL
+, CHANGE COLUMN `createdby_ckey` `createdby_ckey` VARCHAR(32) NULL DEFAULT NULL
+, CHANGE COLUMN `dontshow` `dontshow` TINYINT(1) UNSIGNED NOT NULL
+, ADD COLUMN `createdby_ipTEMP` INT UNSIGNED NOT NULL AFTER `createdby_ip`
+, DROP COLUMN `for_trialmin`;
+SET SQL_SAFE_UPDATES = 0;
+UPDATE `feedback`.`poll_question`
+ SET `createdby_ipTEMP` = COALESCE(NULLIF(INET_ATON(SUBSTRING_INDEX(`createdby_ip`, ':', 1)), ''), INET_ATON('0.0.0.0'));
+SET SQL_SAFE_UPDATES = 1;
+ALTER TABLE `feedback`.`poll_question`
+ DROP COLUMN `createdby_ip`
+, CHANGE COLUMN `createdby_ipTEMP` `createdby_ip` INT(10) UNSIGNED NOT NULL;
+COMMIT;
+
+START TRANSACTION;
+ALTER TABLE `feedback`.`poll_textreply`
+ CHANGE COLUMN `replytext` `replytext` VARCHAR(2048) NOT NULL
+, ADD COLUMN `ipTEMP` INT UNSIGNED NOT NULL AFTER `ip`;
+SET SQL_SAFE_UPDATES = 0;
+UPDATE `feedback`.`poll_textreply`
+ SET `ipTEMP` = COALESCE(NULLIF(INET_ATON(SUBSTRING_INDEX(`ip`, ':', 1)), ''), INET_ATON('0.0.0.0'));
+SET SQL_SAFE_UPDATES = 1;
+ALTER TABLE `feedback`.`poll_textreply`
+ DROP COLUMN `ip`
+, CHANGE COLUMN `ipTEMP` `ip` INT(10) UNSIGNED NOT NULL;
+COMMIT;
+
+START TRANSACTION;
+ALTER TABLE `feedback`.`poll_vote`
+ CHANGE COLUMN `ckey` `ckey` VARCHAR(32) NOT NULL
+, ADD COLUMN `ipTEMP` INT UNSIGNED NOT NULL AFTER `ip`;
+SET SQL_SAFE_UPDATES = 0;
+UPDATE `feedback`.`poll_vote`
+ SET `ipTEMP` = COALESCE(NULLIF(INET_ATON(SUBSTRING_INDEX(`ip`, ':', 1)), ''), INET_ATON('0.0.0.0'));
+SET SQL_SAFE_UPDATES = 1;
+ALTER TABLE `feedback`.`poll_vote`
+ DROP COLUMN `ip`
+, CHANGE COLUMN `ipTEMP` `ip` INT(10) UNSIGNED NOT NULL;
+COMMIT;
+
+/*----------------------------------------------------
+
+These queries are to be run after the above.
+These indexes are designed with only the codebase queries in mind.
+You may find it helpful to modify or create your own indexes if you utilise additional queries for other services.
+
+----------------------------------------------------*/
+
+ALTER TABLE `feedback`.`ban`
+ ADD INDEX `idx_ban_checkban` (`ckey` ASC, `bantype` ASC, `expiration_time` ASC, `unbanned` ASC, `job` ASC)
+, ADD INDEX `idx_ban_isbanned` (`ckey` ASC, `ip` ASC, `computerid` ASC, `bantype` ASC, `expiration_time` ASC, `unbanned` ASC)
+, ADD INDEX `idx_ban_count` (`id` ASC, `a_ckey` ASC, `bantype` ASC, `expiration_time` ASC, `unbanned` ASC);
+
+ALTER TABLE `feedback`.`ipintel`
+ ADD INDEX `idx_ipintel` (`ip` ASC, `intel` ASC, `date` ASC);
+
+ALTER TABLE `feedback`.`library`
+ ADD INDEX `idx_lib_id_del` (`id` ASC, `deleted` ASC)
+, ADD INDEX `idx_lib_del_title` (`deleted` ASC, `title` ASC)
+, ADD INDEX `idx_lib_search` (`deleted` ASC, `author` ASC, `title` ASC, `category` ASC);
+
+ALTER TABLE `feedback`.`messages`
+ ADD INDEX `idx_msg_ckey_time` (`targetckey` ASC, `timestamp` ASC)
+, ADD INDEX `idx_msg_type_ckeys_time` (`type` ASC, `targetckey` ASC, `adminckey` ASC, `timestamp` ASC)
+, ADD INDEX `idx_msg_type_ckey_time_odr` (`type` ASC, `targetckey` ASC, `timestamp` ASC);
+
+ALTER TABLE `feedback`.`player`
+ ADD INDEX `idx_player_cid_ckey` (`computerid` ASC, `ckey` ASC)
+, ADD INDEX `idx_player_ip_ckey` (`ip` ASC, `ckey` ASC);
+
+ALTER TABLE `feedback`.`poll_option`
+ ADD INDEX `idx_pop_pollid` (`pollid` ASC);
+
+ALTER TABLE `feedback`.`poll_question`
+ ADD INDEX `idx_pquest_question_time_ckey` (`question` ASC, `starttime` ASC, `endtime` ASC, `createdby_ckey` ASC, `createdby_ip` ASC)
+, ADD INDEX `idx_pquest_time_admin` (`starttime` ASC, `endtime` ASC, `adminonly` ASC)
+, ADD INDEX `idx_pquest_id_time_type_admin` (`id` ASC, `starttime` ASC, `endtime` ASC, `polltype` ASC, `adminonly` ASC);
+
+ALTER TABLE `feedback`.`poll_vote`
+ ADD INDEX `idx_pvote_pollid_ckey` (`pollid` ASC, `ckey` ASC)
+, ADD INDEX `idx_pvote_optionid_ckey` (`optionid` ASC, `ckey` ASC);
+
+ALTER TABLE `feedback`.`poll_textreply`
+ ADD INDEX `idx_ptext_pollid_ckey` (`pollid` ASC, `ckey` ASC);
\ No newline at end of file
diff --git a/SQL/tgstation_schema.sql b/SQL/tgstation_schema.sql
index c4f46b50849..f1945a4ddbd 100644
--- a/SQL/tgstation_schema.sql
+++ b/SQL/tgstation_schema.sql
@@ -59,18 +59,9 @@ CREATE TABLE `admin_ranks` (
`rank` varchar(40) NOT NULL,
`flags` int(16) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
-) ENGINE=InnoDB DEFAULT CHARSET=latin1;
+) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
-insert into admin_ranks (rank, flags) values ('Moderator',2);
-insert into admin_ranks (rank, flags) values ('Admin Candidate',2);
-insert into admin_ranks (rank, flags) values ('Trial Admin',5638);
-insert into admin_ranks (rank, flags) values ('Badmin',5727);
-insert into admin_ranks (rank, flags) values ('Game Admin',8063);
-insert into admin_ranks (rank, flags) values ('Game Master',65535);
-insert into admin_ranks (rank, flags) values ('Host',65535);
-insert into admin_ranks (rank, flags) values ('Coder',5168);
-
--
-- Table structure for table `ban`
--
@@ -81,28 +72,31 @@ DROP TABLE IF EXISTS `ban`;
CREATE TABLE `ban` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`bantime` datetime NOT NULL,
- `serverip` varchar(32) NOT NULL,
- `bantype` varchar(32) NOT NULL,
- `reason` text NOT NULL,
+ `server_ip` int(10) unsigned NOT NULL,
+ `server_port` smallint(5) unsigned NOT NULL,
+ `bantype` enum('PERMABAN','TEMPBAN','JOB_PERMABAN','JOB_TEMPBAN','ADMIN_PERMABAN','ADMIN_TEMPBAN') NOT NULL,
+ `reason` varchar(2048) NOT NULL,
`job` varchar(32) DEFAULT NULL,
`duration` int(11) NOT NULL,
- `rounds` int(11) DEFAULT NULL,
`expiration_time` datetime NOT NULL,
`ckey` varchar(32) NOT NULL,
`computerid` varchar(32) NOT NULL,
- `ip` varchar(32) NOT NULL,
+ `ip` int(10) unsigned NOT NULL,
`a_ckey` varchar(32) NOT NULL,
`a_computerid` varchar(32) NOT NULL,
- `a_ip` varchar(32) NOT NULL,
- `who` text NOT NULL,
- `adminwho` text NOT NULL,
+ `a_ip` int(10) unsigned NOT NULL,
+ `who` varchar(2048) NOT NULL,
+ `adminwho` varchar(2048) NOT NULL,
`edits` text,
- `unbanned` int(2) DEFAULT NULL,
+ `unbanned` tinyint(3) unsigned DEFAULT NULL,
`unbanned_datetime` datetime DEFAULT NULL,
`unbanned_ckey` varchar(32) DEFAULT NULL,
`unbanned_computerid` varchar(32) DEFAULT NULL,
- `unbanned_ip` varchar(32) DEFAULT NULL,
- PRIMARY KEY (`id`)
+ `unbanned_ip` int(10) unsigned DEFAULT NULL,
+ PRIMARY KEY (`id`),
+ KEY `idx_ban_checkban` (`ckey`,`bantype`,`expiration_time`,`unbanned`,`job`),
+ KEY `idx_ban_isbanned` (`ckey`,`ip`,`computerid`,`bantype`,`expiration_time`,`unbanned`),
+ KEY `idx_ban_count` (`id`,`a_ckey`,`bantype`,`expiration_time`,`unbanned`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
@@ -116,9 +110,10 @@ DROP TABLE IF EXISTS `connection_log`;
CREATE TABLE `connection_log` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`datetime` datetime DEFAULT NULL,
- `serverip` varchar(45) DEFAULT NULL,
+ `server_ip` int(10) unsigned NOT NULL,
+ `server_port` smallint(5) unsigned NOT NULL,
`ckey` varchar(45) DEFAULT NULL,
- `ip` varchar(18) DEFAULT NULL,
+ `ip` int(10) unsigned NOT NULL,
`computerid` varchar(45) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
@@ -133,23 +128,23 @@ DROP TABLE IF EXISTS `death`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `death` (
`id` int(11) NOT NULL AUTO_INCREMENT,
- `pod` text NOT NULL COMMENT 'Place of death',
- `coord` text NOT NULL COMMENT 'X, Y, Z POD',
- `mapname` text NOT NULL,
- `server` text NOT NULL,
+ `pod` varchar(50) NOT NULL,
+ `coord` varchar(32) NOT NULL,
+ `mapname` varchar(32) NOT NULL,
+ `server_ip` int(10) unsigned NOT NULL,
+ `server_port` smallint(5) unsigned NOT NULL,
`tod` datetime NOT NULL COMMENT 'Time of death',
- `job` text NOT NULL,
- `special` text NOT NULL,
- `name` text NOT NULL,
- `byondkey` text NOT NULL,
- `laname` text NOT NULL COMMENT 'Last attacker name',
- `lakey` text NOT NULL COMMENT 'Last attacker key',
- `gender` text NOT NULL,
- `bruteloss` int(11) NOT NULL,
- `brainloss` int(11) NOT NULL,
- `fireloss` int(11) NOT NULL,
- `oxyloss` int(11) NOT NULL,
-
+ `job` varchar(32) NOT NULL,
+ `special` varchar(32) DEFAULT NULL,
+ `name` varchar(96) NOT NULL,
+ `byondkey` varchar(32) NOT NULL,
+ `laname` varchar(96) DEFAULT NULL,
+ `lakey` varchar(32) DEFAULT NULL,
+ `gender` enum('neuter','male','female','plural') NOT NULL,
+ `bruteloss` smallint(5) unsigned NOT NULL,
+ `brainloss` smallint(5) unsigned NOT NULL,
+ `fireloss` smallint(5) unsigned NOT NULL,
+ `oxyloss` smallint(5) unsigned NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
@@ -172,6 +167,22 @@ CREATE TABLE `feedback` (
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
+--
+-- Table structure for table `ipintel`
+--
+
+DROP TABLE IF EXISTS `ipintel`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `ipintel` (
+ `ip` int(10) unsigned NOT NULL,
+ `date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
+ `intel` double NOT NULL DEFAULT '0',
+ PRIMARY KEY (`ip`),
+ KEY `idx_ipintel` (`ip`,`intel`,`date`)
+) ENGINE=InnoDB DEFAULT CHARSET=latin1;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
--
-- Table structure for table `legacy_population`
--
@@ -193,22 +204,49 @@ CREATE TABLE `legacy_population` (
--
DROP TABLE IF EXISTS `library`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `library` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`author` varchar(45) NOT NULL,
`title` varchar(45) NOT NULL,
`content` text NOT NULL,
- `category` varchar(45) NOT NULL,
- `ckey` varchar(45) DEFAULT 'LEGACY',
- `datetime` datetime DEFAULT NULL,
- `deleted` tinyint(1) DEFAULT NULL,
- PRIMARY KEY (`id`)
+ `category` enum('Any','Fiction','Non-Fiction','Adult','Reference','Religion') NOT NULL,
+ `ckey` varchar(32) NOT NULL DEFAULT 'LEGACY',
+ `datetime` datetime NOT NULL,
+ `deleted` tinyint(1) unsigned DEFAULT NULL,
+ PRIMARY KEY (`id`),
+ KEY `deleted_idx` (`deleted`),
+ KEY `idx_lib_id_del` (`id`,`deleted`),
+ KEY `idx_lib_del_title` (`deleted`,`title`),
+ KEY `idx_lib_search` (`deleted`,`author`,`title`,`category`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
+/*!40101 SET character_set_client = @saved_cs_client */;
--
--- Create an index to speed up the libary
+-- Table structure for table `messages`
--
-CREATE INDEX deleted_idx ON `library` (`deleted`);
+
+DROP TABLE IF EXISTS `messages`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `messages` (
+ `id` int(11) NOT NULL AUTO_INCREMENT,
+ `type` enum('memo','message','message sent','note','watchlist entry') NOT NULL,
+ `targetckey` varchar(32) NOT NULL,
+ `adminckey` varchar(32) NOT NULL,
+ `text` varchar(2048) NOT NULL,
+ `timestamp` datetime NOT NULL,
+ `server` varchar(32) DEFAULT NULL,
+ `secret` tinyint(1) unsigned NOT NULL,
+ `lasteditor` varchar(32) DEFAULT NULL,
+ `edits` text,
+ PRIMARY KEY (`id`),
+ KEY `idx_msg_ckey_time` (`targetckey`,`timestamp`),
+ KEY `idx_msg_type_ckeys_time` (`type`,`targetckey`,`adminckey`,`timestamp`),
+ KEY `idx_msg_type_ckey_time_odr` (`type`,`targetckey`,`timestamp`)
+) ENGINE=InnoDB DEFAULT CHARSET=latin1;
+/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `player`
@@ -222,11 +260,13 @@ CREATE TABLE `player` (
`ckey` varchar(32) NOT NULL,
`firstseen` datetime NOT NULL,
`lastseen` datetime NOT NULL,
- `ip` varchar(18) NOT NULL,
+ `ip` int(10) unsigned NOT NULL,
`computerid` varchar(32) NOT NULL,
`lastadminrank` varchar(32) NOT NULL DEFAULT 'Player',
PRIMARY KEY (`id`),
- UNIQUE KEY `ckey` (`ckey`)
+ UNIQUE KEY `ckey` (`ckey`),
+ KEY `idx_player_cid_ckey` (`computerid`,`ckey`),
+ KEY `idx_player_ip_ckey` (`ip`,`ckey`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
@@ -247,7 +287,8 @@ CREATE TABLE `poll_option` (
`descmin` varchar(32) DEFAULT NULL,
`descmid` varchar(32) DEFAULT NULL,
`descmax` varchar(32) DEFAULT NULL,
- PRIMARY KEY (`id`)
+ PRIMARY KEY (`id`),
+ KEY `idx_pop_pollid` (`pollid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
@@ -260,17 +301,19 @@ DROP TABLE IF EXISTS `poll_question`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `poll_question` (
`id` int(11) NOT NULL AUTO_INCREMENT,
- `polltype` varchar(16) NOT NULL DEFAULT 'OPTION',
+ `polltype` enum('OPTION','TEXT','NUMVAL','MULTICHOICE','IRV') NOT NULL,
`starttime` datetime NOT NULL,
`endtime` datetime NOT NULL,
`question` varchar(255) NOT NULL,
- `adminonly` tinyint(1) DEFAULT '0',
+ `adminonly` tinyint(1) unsigned NOT NULL,
`multiplechoiceoptions` int(2) DEFAULT NULL,
- `createdby_ckey` varchar(45) NULL DEFAULT NULL,
- `createdby_ip` varchar(45) NULL DEFAULT NULL,
- `for_trialmin` varchar(45) NULL DEFAULT NULL,
- `dontshow` tinyint(1) NOT NULL DEFAULT '0',
- PRIMARY KEY (`id`)
+ `createdby_ckey` varchar(32) DEFAULT NULL,
+ `createdby_ip` int(10) unsigned NOT NULL,
+ `dontshow` tinyint(1) unsigned NOT NULL,
+ PRIMARY KEY (`id`),
+ KEY `idx_pquest_question_time_ckey` (`question`,`starttime`,`endtime`,`createdby_ckey`,`createdby_ip`),
+ KEY `idx_pquest_time_admin` (`starttime`,`endtime`,`adminonly`),
+ KEY `idx_pquest_id_time_type_admin` (`id`,`starttime`,`endtime`,`polltype`,`adminonly`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
@@ -286,10 +329,11 @@ CREATE TABLE `poll_textreply` (
`datetime` datetime NOT NULL,
`pollid` int(11) NOT NULL,
`ckey` varchar(32) NOT NULL,
- `ip` varchar(18) NOT NULL,
- `replytext` text NOT NULL,
+ `ip` int(10) unsigned NOT NULL,
+ `replytext` varchar(2048) NOT NULL,
`adminrank` varchar(32) NOT NULL DEFAULT 'Player',
- PRIMARY KEY (`id`)
+ PRIMARY KEY (`id`),
+ KEY `idx_ptext_pollid_ckey` (`pollid`,`ckey`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
@@ -305,47 +349,21 @@ CREATE TABLE `poll_vote` (
`datetime` datetime NOT NULL,
`pollid` int(11) NOT NULL,
`optionid` int(11) NOT NULL,
- `ckey` varchar(255) NOT NULL,
- `ip` varchar(16) NOT NULL,
+ `ckey` varchar(32) NOT NULL,
+ `ip` int(10) unsigned NOT NULL,
`adminrank` varchar(32) NOT NULL,
`rating` int(2) DEFAULT NULL,
- PRIMARY KEY (`id`)
-) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Table structure for table `ipintel`
---
-
-DROP TABLE IF EXISTS `ipintel`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `ipintel` (
-`ip` INT UNSIGNED NOT NULL ,
-`date` TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP NOT NULL ,
-`intel` REAL NOT NULL DEFAULT '0',
-PRIMARY KEY ( `ip` )
-) ENGINE = INNODB;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Table structure for table `messages`
---
-
-DROP TABLE IF EXISTS `messages`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `messages` (
- `id` int(11) NOT NULL AUTO_INCREMENT ,
- `type` varchar(32) NOT NULL ,
- `targetckey` varchar(32) NOT NULL ,
- `adminckey` varchar(32) NOT NULL ,
- `text` text NOT NULL ,
- `timestamp` datetime NOT NULL ,
- `server` varchar(32) NULL ,
- `secret` tinyint(1) NULL DEFAULT 1 ,
- `lasteditor` varchar(32) NULL ,
- `edits` text NULL ,
- PRIMARY KEY (`id`)
+ PRIMARY KEY (`id`),
+ KEY `idx_pvote_pollid_ckey` (`pollid`,`ckey`),
+ KEY `idx_pvote_optionid_ckey` (`optionid`,`ckey`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
+/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
+
+/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
+/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
+/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
+/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
+/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
+/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
+/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
\ No newline at end of file
diff --git a/SQL/tgstation_schema_prefixed.sql b/SQL/tgstation_schema_prefixed.sql
index 63d32eed08e..b5af607fb18 100644
--- a/SQL/tgstation_schema_prefixed.sql
+++ b/SQL/tgstation_schema_prefixed.sql
@@ -34,7 +34,7 @@ CREATE TABLE `SS13_admin` (
-- Table structure for table `SS13_admin_log`
--
-DROP TABLE IF EXISTS `SS13_admin_log`;
+DROP TABLE IF EXISTS `SS13_dmin_log`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `SS13_admin_log` (
@@ -59,18 +59,9 @@ CREATE TABLE `SS13_admin_ranks` (
`rank` varchar(40) NOT NULL,
`flags` int(16) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
-) ENGINE=InnoDB DEFAULT CHARSET=latin1;
+) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
-insert into SS13_admin_ranks (rank, flags) values ('Moderator',2);
-insert into SS13_admin_ranks (rank, flags) values ('Admin Candidate',2);
-insert into SS13_admin_ranks (rank, flags) values ('Trial Admin',5638);
-insert into SS13_admin_ranks (rank, flags) values ('Badmin',5727);
-insert into SS13_admin_ranks (rank, flags) values ('Game Admin',8063);
-insert into SS13_admin_ranks (rank, flags) values ('Game Master',65535);
-insert into SS13_admin_ranks (rank, flags) values ('Host',65535);
-insert into SS13_admin_ranks (rank, flags) values ('Coder',5168);
-
--
-- Table structure for table `SS13_ban`
--
@@ -81,28 +72,31 @@ DROP TABLE IF EXISTS `SS13_ban`;
CREATE TABLE `SS13_ban` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`bantime` datetime NOT NULL,
- `serverip` varchar(32) NOT NULL,
- `bantype` varchar(32) NOT NULL,
- `reason` text NOT NULL,
+ `server_ip` int(10) unsigned NOT NULL,
+ `server_port` smallint(5) unsigned NOT NULL,
+ `bantype` enum('PERMABAN','TEMPBAN','JOB_PERMABAN','JOB_TEMPBAN','ADMIN_PERMABAN','ADMIN_TEMPBAN') NOT NULL,
+ `reason` varchar(2048) NOT NULL,
`job` varchar(32) DEFAULT NULL,
`duration` int(11) NOT NULL,
- `rounds` int(11) DEFAULT NULL,
`expiration_time` datetime NOT NULL,
`ckey` varchar(32) NOT NULL,
`computerid` varchar(32) NOT NULL,
- `ip` varchar(32) NOT NULL,
+ `ip` int(10) unsigned NOT NULL,
`a_ckey` varchar(32) NOT NULL,
`a_computerid` varchar(32) NOT NULL,
- `a_ip` varchar(32) NOT NULL,
- `who` text NOT NULL,
- `adminwho` text NOT NULL,
+ `a_ip` int(10) unsigned NOT NULL,
+ `who` varchar(2048) NOT NULL,
+ `adminwho` varchar(2048) NOT NULL,
`edits` text,
- `unbanned` int(2) DEFAULT NULL,
+ `unbanned` tinyint(3) unsigned DEFAULT NULL,
`unbanned_datetime` datetime DEFAULT NULL,
`unbanned_ckey` varchar(32) DEFAULT NULL,
`unbanned_computerid` varchar(32) DEFAULT NULL,
- `unbanned_ip` varchar(32) DEFAULT NULL,
- PRIMARY KEY (`id`)
+ `unbanned_ip` int(10) unsigned DEFAULT NULL,
+ PRIMARY KEY (`id`),
+ KEY `idx_ban_checkban` (`ckey`,`bantype`,`expiration_time`,`unbanned`,`job`),
+ KEY `idx_ban_isbanned` (`ckey`,`ip`,`computerid`,`bantype`,`expiration_time`,`unbanned`),
+ KEY `idx_ban_count` (`id`,`a_ckey`,`bantype`,`expiration_time`,`unbanned`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
@@ -116,9 +110,10 @@ DROP TABLE IF EXISTS `SS13_connection_log`;
CREATE TABLE `SS13_connection_log` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`datetime` datetime DEFAULT NULL,
- `serverip` varchar(45) DEFAULT NULL,
+ `server_ip` int(10) unsigned NOT NULL,
+ `server_port` smallint(5) unsigned NOT NULL,
`ckey` varchar(45) DEFAULT NULL,
- `ip` varchar(18) DEFAULT NULL,
+ `ip` int(10) unsigned NOT NULL,
`computerid` varchar(45) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
@@ -133,22 +128,23 @@ DROP TABLE IF EXISTS `SS13_death`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `SS13_death` (
`id` int(11) NOT NULL AUTO_INCREMENT,
- `pod` text NOT NULL COMMENT 'Place of death',
- `coord` text NOT NULL COMMENT 'X, Y, Z POD',
- `mapname` text NOT NULL,
- `server` text NOT NULL,
+ `pod` varchar(50) NOT NULL,
+ `coord` varchar(32) NOT NULL,
+ `mapname` varchar(32) NOT NULL,
+ `server_ip` int(10) unsigned NOT NULL,
+ `server_port` smallint(5) unsigned NOT NULL,
`tod` datetime NOT NULL COMMENT 'Time of death',
- `job` text NOT NULL,
- `special` text NOT NULL,
- `name` text NOT NULL,
- `byondkey` text NOT NULL,
- `laname` text NOT NULL COMMENT 'Last attacker name',
- `lakey` text NOT NULL COMMENT 'Last attacker key',
- `gender` text NOT NULL,
- `bruteloss` int(11) NOT NULL,
- `brainloss` int(11) NOT NULL,
- `fireloss` int(11) NOT NULL,
- `oxyloss` int(11) NOT NULL,
+ `job` varchar(32) NOT NULL,
+ `special` varchar(32) DEFAULT NULL,
+ `name` varchar(96) NOT NULL,
+ `byondkey` varchar(32) NOT NULL,
+ `laname` varchar(96) DEFAULT NULL,
+ `lakey` varchar(32) DEFAULT NULL,
+ `gender` enum('neuter','male','female','plural') NOT NULL,
+ `bruteloss` smallint(5) unsigned NOT NULL,
+ `brainloss` smallint(5) unsigned NOT NULL,
+ `fireloss` smallint(5) unsigned NOT NULL,
+ `oxyloss` smallint(5) unsigned NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
@@ -171,6 +167,22 @@ CREATE TABLE `SS13_feedback` (
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
+--
+-- Table structure for table `SS13_ipintel`
+--
+
+DROP TABLE IF EXISTS `SS13_ipintel`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `SS13_ipintel` (
+ `ip` int(10) unsigned NOT NULL,
+ `date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
+ `intel` double NOT NULL DEFAULT '0',
+ PRIMARY KEY (`ip`),
+ KEY `idx_ipintel` (`ip`,`intel`,`date`)
+) ENGINE=InnoDB DEFAULT CHARSET=latin1;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
--
-- Table structure for table `SS13_legacy_population`
--
@@ -192,17 +204,49 @@ CREATE TABLE `SS13_legacy_population` (
--
DROP TABLE IF EXISTS `SS13_library`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `SS13_library` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`author` varchar(45) NOT NULL,
`title` varchar(45) NOT NULL,
`content` text NOT NULL,
- `category` varchar(45) NOT NULL,
- `ckey` varchar(45) DEFAULT 'LEGACY',
- `datetime` datetime DEFAULT NULL,
- `deleted` tinyint(1) DEFAULT NULL,
- PRIMARY KEY (`id`)
+ `category` enum('Any','Fiction','Non-Fiction','Adult','Reference','Religion') NOT NULL,
+ `ckey` varchar(32) NOT NULL DEFAULT 'LEGACY',
+ `datetime` datetime NOT NULL,
+ `deleted` tinyint(1) unsigned DEFAULT NULL,
+ PRIMARY KEY (`id`),
+ KEY `deleted_idx` (`deleted`),
+ KEY `idx_lib_id_del` (`id`,`deleted`),
+ KEY `idx_lib_del_title` (`deleted`,`title`),
+ KEY `idx_lib_search` (`deleted`,`author`,`title`,`category`)
+) ENGINE=InnoDB DEFAULT CHARSET=latin1;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Table structure for table `SS13_messages`
+--
+
+DROP TABLE IF EXISTS `SS13_messages`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `SS13_messages` (
+ `id` int(11) NOT NULL AUTO_INCREMENT,
+ `type` enum('memo','message','message sent','note','watchlist entry') NOT NULL,
+ `targetckey` varchar(32) NOT NULL,
+ `adminckey` varchar(32) NOT NULL,
+ `text` varchar(2048) NOT NULL,
+ `timestamp` datetime NOT NULL,
+ `server` varchar(32) DEFAULT NULL,
+ `secret` tinyint(1) unsigned NOT NULL,
+ `lasteditor` varchar(32) DEFAULT NULL,
+ `edits` text,
+ PRIMARY KEY (`id`),
+ KEY `idx_msg_ckey_time` (`targetckey`,`timestamp`),
+ KEY `idx_msg_type_ckeys_time` (`type`,`targetckey`,`adminckey`,`timestamp`),
+ KEY `idx_msg_type_ckey_time_odr` (`type`,`targetckey`,`timestamp`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
+/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `SS13_player`
@@ -216,11 +260,13 @@ CREATE TABLE `SS13_player` (
`ckey` varchar(32) NOT NULL,
`firstseen` datetime NOT NULL,
`lastseen` datetime NOT NULL,
- `ip` varchar(18) NOT NULL,
+ `ip` int(10) unsigned NOT NULL,
`computerid` varchar(32) NOT NULL,
`lastadminrank` varchar(32) NOT NULL DEFAULT 'Player',
PRIMARY KEY (`id`),
- UNIQUE KEY `ckey` (`ckey`)
+ UNIQUE KEY `ckey` (`ckey`),
+ KEY `idx_player_cid_ckey` (`computerid`,`ckey`),
+ KEY `idx_player_ip_ckey` (`ip`,`ckey`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
@@ -241,7 +287,8 @@ CREATE TABLE `SS13_poll_option` (
`descmin` varchar(32) DEFAULT NULL,
`descmid` varchar(32) DEFAULT NULL,
`descmax` varchar(32) DEFAULT NULL,
- PRIMARY KEY (`id`)
+ PRIMARY KEY (`id`),
+ KEY `idx_pop_pollid` (`pollid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
@@ -254,17 +301,19 @@ DROP TABLE IF EXISTS `SS13_poll_question`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `SS13_poll_question` (
`id` int(11) NOT NULL AUTO_INCREMENT,
- `polltype` varchar(16) NOT NULL DEFAULT 'OPTION',
+ `polltype` enum('OPTION','TEXT','NUMVAL','MULTICHOICE','IRV') NOT NULL,
`starttime` datetime NOT NULL,
`endtime` datetime NOT NULL,
`question` varchar(255) NOT NULL,
- `adminonly` tinyint(1) DEFAULT '0',
+ `adminonly` tinyint(1) unsigned NOT NULL,
`multiplechoiceoptions` int(2) DEFAULT NULL,
- `createdby_ckey` varchar(45) NULL DEFAULT NULL,
- `createdby_ip` varchar(45) NULL DEFAULT NULL,
- `for_trialmin` varchar(45) NULL DEFAULT NULL,
- `dontshow` tinyint(1) NOT NULL DEFAULT '0',
- PRIMARY KEY (`id`)
+ `createdby_ckey` varchar(32) DEFAULT NULL,
+ `createdby_ip` int(10) unsigned NOT NULL,
+ `dontshow` tinyint(1) unsigned NOT NULL,
+ PRIMARY KEY (`id`),
+ KEY `idx_pquest_question_time_ckey` (`question`,`starttime`,`endtime`,`createdby_ckey`,`createdby_ip`),
+ KEY `idx_pquest_time_admin` (`starttime`,`endtime`,`adminonly`),
+ KEY `idx_pquest_id_time_type_admin` (`id`,`starttime`,`endtime`,`polltype`,`adminonly`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
@@ -280,10 +329,11 @@ CREATE TABLE `SS13_poll_textreply` (
`datetime` datetime NOT NULL,
`pollid` int(11) NOT NULL,
`ckey` varchar(32) NOT NULL,
- `ip` varchar(18) NOT NULL,
- `replytext` text NOT NULL,
+ `ip` int(10) unsigned NOT NULL,
+ `replytext` varchar(2048) NOT NULL,
`adminrank` varchar(32) NOT NULL DEFAULT 'Player',
- PRIMARY KEY (`id`)
+ PRIMARY KEY (`id`),
+ KEY `idx_ptext_pollid_ckey` (`pollid`,`ckey`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
@@ -299,47 +349,21 @@ CREATE TABLE `SS13_poll_vote` (
`datetime` datetime NOT NULL,
`pollid` int(11) NOT NULL,
`optionid` int(11) NOT NULL,
- `ckey` varchar(255) NOT NULL,
- `ip` varchar(16) NOT NULL,
+ `ckey` varchar(32) NOT NULL,
+ `ip` int(10) unsigned NOT NULL,
`adminrank` varchar(32) NOT NULL,
`rating` int(2) DEFAULT NULL,
- PRIMARY KEY (`id`)
-) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Table structure for table `SS13_ipintel`
---
-
-DROP TABLE IF EXISTS `SS13_ipintel`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `SS13_ipintel` (
-`ip` INT UNSIGNED NOT NULL ,
-`date` TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP NOT NULL ,
-`intel` REAL NOT NULL DEFAULT '0',
-PRIMARY KEY ( `ip` )
-) ENGINE = INNODB;
-/*!40101 SET character_set_client = @saved_cs_client */;
-
---
--- Table structure for table `SS13_messages`
---
-
-DROP TABLE IF EXISTS `SS13_messages`;
-/*!40101 SET @saved_cs_client = @@character_set_client */;
-/*!40101 SET character_set_client = utf8 */;
-CREATE TABLE `SS13_messages` (
- `id` int(11) NOT NULL AUTO_INCREMENT ,
- `type` varchar(32) NOT NULL ,
- `targetckey` varchar(32) NOT NULL ,
- `adminckey` varchar(32) NOT NULL ,
- `text` text NOT NULL ,
- `timestamp` datetime NOT NULL ,
- `server` varchar(32) NULL ,
- `secret` tinyint(1) NULL DEFAULT 1 ,
- `lasteditor` varchar(32) NULL ,
- `edits` text NULL ,
- PRIMARY KEY (`id`)
+ PRIMARY KEY (`id`),
+ KEY `idx_pvote_pollid_ckey` (`pollid`,`ckey`),
+ KEY `idx_pvote_optionid_ckey` (`optionid`,`ckey`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
+/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
+
+/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
+/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
+/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
+/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
+/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
+/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
+/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
\ No newline at end of file
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_ash_walker1.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_ash_walker1.dmm
index a97350244ef..f219cfcc992 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_ash_walker1.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_ash_walker1.dmm
@@ -90,6 +90,7 @@
/obj/item/seeds/glowshroom,
/obj/item/seeds/glowshroom,
/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/item/weapon/storage/bag/plants/portaseeder,
/turf/open/floor/engine/cult{
baseturf = /turf/open/floor/plating/lava/smooth
},
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_hermit.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_hermit.dmm
index 977ea0775ae..24e9ea2aabc 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_hermit.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_hermit.dmm
@@ -186,7 +186,7 @@
initial_gas_mix = "o2=14;n2=23;TEMP=300"
},
/obj/structure/shuttle/engine/propulsion/burst{
- dir = 4
+ dir = 8
},
/turf/closed/wall/mineral/titanium/interior{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_prisoner_crash.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_prisoner_crash.dmm
index c529c4a3054..5b2c8fc4bca 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_prisoner_crash.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_prisoner_crash.dmm
@@ -22,15 +22,15 @@
/area/lavaland/surface/outdoors)
"f" = (
/obj/structure/shuttle/engine/propulsion{
- icon_state = "propulsion";
- dir = 4
+ dir = 8;
+ icon_state = "propulsion"
},
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/lavaland/surface/outdoors)
"g" = (
/obj/structure/shuttle/engine/propulsion{
- icon_state = "propulsion";
- dir = 4
+ dir = 8;
+ icon_state = "propulsion"
},
/turf/open/floor/plating/asteroid/basalt/lava_land_surface,
/area/ruin/unpowered)
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_swarmer_crash.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_swarmer_crash.dmm
index 69c101f4ebf..cdc6f090546 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_swarmer_crash.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_swarmer_crash.dmm
@@ -18,8 +18,8 @@
/area/ruin/unpowered)
"e" = (
/obj/structure/shuttle/engine/propulsion{
- icon_state = "propulsion";
- dir = 8
+ dir = 4;
+ icon_state = "propulsion"
},
/turf/template_noop,
/area/ruin/unpowered)
diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1.dmm b/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1.dmm
index b4157fa43fc..beeaacd9a4d 100644
--- a/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1.dmm
+++ b/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1.dmm
@@ -2,13 +2,13 @@
"ab" = (/turf/open/floor/plating/lava/smooth/lava_land_surface,/area/lavaland/surface/outdoors)
"ac" = (/turf/open/floor/plating/asteroid/basalt/lava_land_surface,/area/lavaland/surface/outdoors)
"ad" = (/turf/closed/wall/mineral/plastitanium,/area/ruin/powered/syndicate_lava_base)
-"ae" = (/obj/structure/closet/secure_closet/bar{req_access = null;req_access_txt = "150"},/turf/open/floor/plasteel/podhatch{dir = 10},/area/ruin/powered/syndicate_lava_base)
-"af" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/snacks/syndicake,/obj/item/weapon/reagent_containers/food/snacks/syndicake,/obj/item/weapon/reagent_containers/food/snacks/syndicake,/obj/structure/sign/barsign{pixel_y = 32;req_access = null;req_access_txt = "150"},/turf/open/floor/plasteel/podhatch,/area/ruin/powered/syndicate_lava_base)
-"ag" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/snacks/salad/validsalad,/turf/open/floor/plasteel/podhatch{tag = "icon-podhatch (SOUTHEAST)";icon_state = "podhatch";dir = 6},/area/ruin/powered/syndicate_lava_base)
-"ah" = (/obj/structure/rack{icon = 'icons/obj/stationobjs.dmi';icon_state = "minibar_left";name = "skeletal minibar"},/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka,/turf/open/floor/wood,/area/ruin/powered/syndicate_lava_base)
-"ai" = (/obj/structure/rack{icon = 'icons/obj/stationobjs.dmi';icon_state = "minibar_right";name = "skeletal minibar"},/obj/item/weapon/reagent_containers/food/drinks/bottle/gin,/turf/open/floor/wood,/area/ruin/powered/syndicate_lava_base)
-"aj" = (/obj/structure/dresser,/obj/structure/mirror{desc = "Mirror mirror on the wall, who is the most robust of them all?";pixel_x = -26},/turf/open/floor/plasteel/vault,/area/ruin/powered/syndicate_lava_base)
-"ak" = (/obj/item/weapon/twohanded/required/kirbyplants{icon_state = "plant-21";layer = 4.1},/turf/open/floor/plasteel/vault,/area/ruin/powered/syndicate_lava_base)
+"ae" = (/obj/structure/closet/secure_closet/bar{req_access = null; req_access_txt = "150"},/turf/open/floor/plasteel/podhatch{dir = 10},/area/ruin/powered/syndicate_lava_base)
+"af" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/snacks/syndicake,/obj/item/weapon/reagent_containers/food/snacks/syndicake,/obj/item/weapon/reagent_containers/food/snacks/syndicake,/obj/structure/sign/barsign{pixel_y = 32; req_access = null; req_access_txt = "150"},/turf/open/floor/plasteel/podhatch,/area/ruin/powered/syndicate_lava_base)
+"ag" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/snacks/salad/validsalad,/turf/open/floor/plasteel/podhatch{tag = "icon-podhatch (SOUTHEAST)"; icon_state = "podhatch"; dir = 6},/area/ruin/powered/syndicate_lava_base)
+"ah" = (/obj/structure/rack{icon = 'icons/obj/stationobjs.dmi'; icon_state = "minibar_left"; name = "skeletal minibar"},/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka,/turf/open/floor/wood,/area/ruin/powered/syndicate_lava_base)
+"ai" = (/obj/structure/rack{icon = 'icons/obj/stationobjs.dmi'; icon_state = "minibar_right"; name = "skeletal minibar"},/obj/item/weapon/reagent_containers/food/drinks/bottle/gin,/turf/open/floor/wood,/area/ruin/powered/syndicate_lava_base)
+"aj" = (/obj/structure/dresser,/obj/structure/mirror{desc = "Mirror mirror on the wall, who is the most robust of them all?"; pixel_x = -26},/turf/open/floor/plasteel/vault,/area/ruin/powered/syndicate_lava_base)
+"ak" = (/obj/item/weapon/twohanded/required/kirbyplants{icon_state = "plant-21"; layer = 4.1},/turf/open/floor/plasteel/vault,/area/ruin/powered/syndicate_lava_base)
"al" = (/obj/item/weapon/twohanded/required/kirbyplants{icon_state = "plant-22"},/turf/open/floor/plasteel/vault,/area/ruin/powered/syndicate_lava_base)
"am" = (/obj/structure/table/wood,/obj/item/weapon/clipboard,/obj/item/toy/figure/syndie,/turf/open/floor/plasteel/vault,/area/ruin/powered/syndicate_lava_base)
"an" = (/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plasteel/podhatch{dir = 5},/area/ruin/powered/syndicate_lava_base)
@@ -16,14 +16,14 @@
"ap" = (/turf/open/floor/plasteel/vault{dir = 5},/area/ruin/powered/syndicate_lava_base)
"aq" = (/obj/item/stack/sheet/mineral/plastitanium{amount = 30},/obj/item/stack/rods{amount = 50},/obj/structure/table/reinforced,/turf/open/floor/plasteel/podhatch{dir = 9},/area/ruin/powered/syndicate_lava_base)
"ar" = (/turf/open/floor/wood,/area/ruin/powered/syndicate_lava_base)
-"as" = (/obj/effect/mob_spawn/human/lavaland_syndicate{tag = "icon-sleeper_s (EAST)";icon_state = "sleeper_s";dir = 4},/turf/open/floor/plasteel/grimy,/area/ruin/powered/syndicate_lava_base)
+"as" = (/obj/effect/mob_spawn/human/lavaland_syndicate{tag = "icon-sleeper_s (EAST)"; icon_state = "sleeper_s"; dir = 4},/turf/open/floor/plasteel/grimy,/area/ruin/powered/syndicate_lava_base)
"at" = (/turf/open/floor/plasteel/grimy,/area/ruin/powered/syndicate_lava_base)
-"au" = (/obj/effect/mob_spawn/human/lavaland_syndicate{tag = "icon-sleeper_s (WEST)";icon_state = "sleeper_s";dir = 8},/turf/open/floor/plasteel/grimy,/area/ruin/powered/syndicate_lava_base)
-"av" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plasteel/podhatch{tag = "icon-podhatch (EAST)";icon_state = "podhatch";dir = 4},/area/ruin/powered/syndicate_lava_base)
+"au" = (/obj/effect/mob_spawn/human/lavaland_syndicate{tag = "icon-sleeper_s (WEST)"; icon_state = "sleeper_s"; dir = 8},/turf/open/floor/plasteel/grimy,/area/ruin/powered/syndicate_lava_base)
+"av" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plasteel/podhatch{tag = "icon-podhatch (EAST)"; icon_state = "podhatch"; dir = 4},/area/ruin/powered/syndicate_lava_base)
"aw" = (/obj/item/stack/cable_coil/white,/obj/item/stack/cable_coil/white,/obj/item/stack/packageWrap,/obj/item/weapon/hand_labeler,/obj/structure/table/reinforced,/turf/open/floor/plasteel/podhatch{dir = 8},/area/ruin/powered/syndicate_lava_base)
"ax" = (/obj/structure/table/wood,/obj/item/ammo_box/magazine/m10mm,/obj/item/ammo_box/magazine/m10mm,/obj/item/ammo_box/magazine/m10mm,/obj/item/ammo_box/magazine/m10mm,/obj/item/ammo_box/magazine/sniper_rounds,/obj/item/ammo_box/magazine/sniper_rounds,/obj/item/ammo_box/magazine/sniper_rounds,/turf/open/floor/plasteel/grimy,/area/ruin/powered/syndicate_lava_base)
"ay" = (/obj/structure/table/wood,/obj/item/ammo_box/magazine/m10mm,/obj/item/ammo_box/magazine/m10mm,/obj/item/ammo_box/magazine/m10mm,/obj/item/ammo_box/magazine/m10mm,/obj/item/ammo_box/magazine/sniper_rounds,/obj/item/ammo_box/magazine/sniper_rounds,/obj/item/ammo_box/magazine/sniper_rounds,/obj/item/ammo_box/magazine/sniper_rounds,/obj/item/ammo_box/magazine/sniper_rounds,/obj/item/ammo_box/magazine/sniper_rounds,/turf/open/floor/plasteel/grimy,/area/ruin/powered/syndicate_lava_base)
-"az" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plasteel/podhatch{tag = "icon-podhatch (SOUTHEAST)";icon_state = "podhatch";dir = 6},/area/ruin/powered/syndicate_lava_base)
+"az" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plasteel/podhatch{tag = "icon-podhatch (SOUTHEAST)"; icon_state = "podhatch"; dir = 6},/area/ruin/powered/syndicate_lava_base)
"aA" = (/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/glass{amount = 50},/obj/structure/table/reinforced,/obj/item/weapon/wrench,/turf/open/floor/plasteel/podhatch{dir = 10},/area/ruin/powered/syndicate_lava_base)
"aB" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/turf/open/floor/wood{icon_state = "wood-broken4"},/area/ruin/powered/syndicate_lava_base)
"aC" = (/obj/structure/table/wood,/obj/item/weapon/storage/box/drinkingglasses,/turf/open/floor/wood,/area/ruin/powered/syndicate_lava_base)
@@ -31,153 +31,149 @@
"aE" = (/obj/structure/table/wood,/obj/item/weapon/lighter{pixel_y = 3},/obj/item/weapon/storage/fancy/cigarettes/cigpack_syndicate,/turf/open/floor/wood,/area/ruin/powered/syndicate_lava_base)
"aF" = (/obj/structure/table/wood,/obj/item/weapon/storage/fancy/donut_box,/turf/open/floor/wood,/area/ruin/powered/syndicate_lava_base)
"aG" = (/obj/structure/extinguisher_cabinet{pixel_x = 26},/turf/open/floor/wood,/area/ruin/powered/syndicate_lava_base)
-"aH" = (/obj/effect/mob_spawn/human/lavaland_syndicate/comms{tag = "icon-sleeper_s (EAST)";icon_state = "sleeper_s";dir = 4},/turf/open/floor/plasteel/grimy,/area/ruin/powered/syndicate_lava_base)
+"aH" = (/obj/effect/mob_spawn/human/lavaland_syndicate/comms{tag = "icon-sleeper_s (EAST)"; icon_state = "sleeper_s"; dir = 4},/turf/open/floor/plasteel/grimy,/area/ruin/powered/syndicate_lava_base)
"aI" = (/obj/structure/sign/nosmoking_2,/turf/closed/wall/mineral/plastitanium,/area/ruin/powered/syndicate_lava_base)
"aJ" = (/obj/structure/closet/crate/bin,/obj/item/trash/syndi_cakes,/turf/open/floor/plasteel/black,/area/ruin/powered/syndicate_lava_base)
"aK" = (/obj/structure/chair/stool/bar,/turf/open/floor/plasteel/vault{dir = 5},/area/ruin/powered/syndicate_lava_base)
"aL" = (/obj/structure/chair/stool/bar,/turf/open/floor/plasteel/black,/area/ruin/powered/syndicate_lava_base)
-"aM" = (/obj/structure/table/wood,/obj/item/weapon/lipstick/random{pixel_x = 3;pixel_y = 3},/obj/item/weapon/lipstick/random{pixel_x = -3;pixel_y = -3},/obj/item/weapon/lipstick/random,/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
+"aM" = (/obj/structure/table/wood,/obj/item/weapon/lipstick/random{pixel_x = 3; pixel_y = 3},/obj/item/weapon/lipstick/random{pixel_x = -3; pixel_y = -3},/obj/item/weapon/lipstick/random,/obj/item/weapon/soap/syndie,/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
"aN" = (/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
-"aO" = (/obj/structure/dresser,/obj/structure/mirror{desc = "Mirror mirror on the wall, who is the most robust of them all?";pixel_x = 26},/turf/open/floor/plasteel/vault{dir = 5},/area/ruin/powered/syndicate_lava_base)
+"aO" = (/obj/structure/dresser,/obj/structure/mirror{desc = "Mirror mirror on the wall, who is the most robust of them all?"; pixel_x = 26},/turf/open/floor/plasteel/vault{dir = 5},/area/ruin/powered/syndicate_lava_base)
"aP" = (/obj/item/target,/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
"aQ" = (/obj/structure/closet/emcloset{anchored = 1},/obj/item/weapon/tank/internals/emergency_oxygen/engi,/obj/item/device/flashlight/seclite,/obj/item/clothing/mask/gas,/turf/open/floor/plasteel/podhatch{dir = 5},/area/ruin/powered/syndicate_lava_base)
-"aR" = (/obj/item/weapon/twohanded/required/kirbyplants{icon_state = "plant-21";layer = 4.1},/turf/open/floor/plasteel/vault{dir = 5},/area/ruin/powered/syndicate_lava_base)
-"aS" = (/obj/machinery/syndicatebomb/badmin/varplosion{can_unanchor = 0;name = "self destruct device"},/turf/open/floor/plasteel/black,/area/ruin/powered/syndicate_lava_base)
-"aT" = (/obj/machinery/door/airlock/hatch{name = "Dormitories";req_access_txt = "150"},/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
-"aU" = (/obj/structure/closet/emcloset,/obj/item/weapon/tank/internals/emergency_oxygen/engi,/obj/item/device/flashlight/seclite,/obj/item/clothing/mask/gas,/turf/open/floor/plasteel/podhatch{tag = "icon-podhatch (EAST)";icon_state = "podhatch";dir = 4},/area/ruin/powered/syndicate_lava_base)
-"aV" = (/obj/machinery/door/airlock/hatch{name = "Storage Closet";req_access_txt = "150"},/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
-"aW" = (/obj/machinery/door/airlock/hatch{name = "Restroom";req_access_txt = "150"},/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
-"aX" = (/obj/structure/mirror{desc = "Mirror mirror on the wall, who is the most robust of them all?";pixel_x = 28},/obj/structure/sink{dir = 4;icon_state = "sink";pixel_x = 11;pixel_y = 0},/turf/open/floor/plasteel/vault{dir = 5},/area/ruin/powered/syndicate_lava_base)
+"aR" = (/obj/item/weapon/twohanded/required/kirbyplants{icon_state = "plant-21"; layer = 4.1},/turf/open/floor/plasteel/vault{dir = 5},/area/ruin/powered/syndicate_lava_base)
+"aS" = (/obj/machinery/syndicatebomb/badmin/varplosion{can_unanchor = 0; name = "self destruct device"},/turf/open/floor/plasteel/black,/area/ruin/powered/syndicate_lava_base)
+"aT" = (/obj/machinery/door/airlock/hatch{name = "Dormitories"; req_access_txt = "150"},/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
+"aU" = (/obj/structure/closet/emcloset,/obj/item/weapon/tank/internals/emergency_oxygen/engi,/obj/item/device/flashlight/seclite,/obj/item/clothing/mask/gas,/turf/open/floor/plasteel/podhatch{tag = "icon-podhatch (EAST)"; icon_state = "podhatch"; dir = 4},/area/ruin/powered/syndicate_lava_base)
+"aV" = (/obj/machinery/door/airlock/hatch{name = "Storage Closet"; req_access_txt = "150"},/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
+"aW" = (/obj/machinery/door/airlock/hatch{name = "Restroom"; req_access_txt = "150"},/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
+"aX" = (/obj/structure/mirror{desc = "Mirror mirror on the wall, who is the most robust of them all?"; pixel_x = 28},/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/turf/open/floor/plasteel/vault{dir = 5},/area/ruin/powered/syndicate_lava_base)
"aY" = (/turf/open/floor/plasteel/podhatch{dir = 8},/area/ruin/powered/syndicate_lava_base)
-"aZ" = (/turf/open/floor/plasteel/podhatch{tag = "icon-podhatch (EAST)";icon_state = "podhatch";dir = 4},/area/ruin/powered/syndicate_lava_base)
-"ba" = (/obj/structure/closet/emcloset{anchored = 1},/obj/item/weapon/tank/internals/emergency_oxygen/engi,/obj/item/device/flashlight/seclite,/obj/item/clothing/mask/gas,/turf/open/floor/plasteel/podhatch{tag = "icon-podhatch (SOUTHEAST)";icon_state = "podhatch";dir = 6},/area/ruin/powered/syndicate_lava_base)
-"bb" = (/obj/machinery/syndicatebomb/badmin/varplosion{can_unanchor = 0;name = "self destruct device"},/turf/open/floor/plasteel/vault{dir = 5},/area/ruin/powered/syndicate_lava_base)
+"aZ" = (/turf/open/floor/plasteel/podhatch{tag = "icon-podhatch (EAST)"; icon_state = "podhatch"; dir = 4},/area/ruin/powered/syndicate_lava_base)
+"ba" = (/obj/structure/closet/emcloset{anchored = 1},/obj/item/weapon/tank/internals/emergency_oxygen/engi,/obj/item/device/flashlight/seclite,/obj/item/clothing/mask/gas,/turf/open/floor/plasteel/podhatch{tag = "icon-podhatch (SOUTHEAST)"; icon_state = "podhatch"; dir = 6},/area/ruin/powered/syndicate_lava_base)
+"bb" = (/obj/machinery/syndicatebomb/badmin/varplosion{can_unanchor = 0; name = "self destruct device"},/turf/open/floor/plasteel/vault{dir = 5},/area/ruin/powered/syndicate_lava_base)
"bc" = (/obj/item/weapon/twohanded/required/kirbyplants{icon_state = "plant-22"},/turf/open/floor/plasteel/vault{dir = 5},/area/ruin/powered/syndicate_lava_base)
"bd" = (/obj/structure/bookcase/random,/turf/open/floor/plasteel/vault{dir = 5},/area/ruin/powered/syndicate_lava_base)
-"be" = (/obj/item/weapon/twohanded/required/kirbyplants{icon_state = "plant-21";layer = 4.1},/turf/open/floor/plasteel/black,/area/ruin/powered/syndicate_lava_base)
+"be" = (/obj/item/weapon/twohanded/required/kirbyplants{icon_state = "plant-21"; layer = 4.1},/turf/open/floor/plasteel/black,/area/ruin/powered/syndicate_lava_base)
"bf" = (/obj/structure/bookcase/random,/turf/open/floor/plasteel/black,/area/ruin/powered/syndicate_lava_base)
-"bg" = (/obj/structure/toilet{tag = "icon-toilet00 (WEST)";icon_state = "toilet00";dir = 8},/turf/open/floor/plasteel/vault{dir = 5},/area/ruin/powered/syndicate_lava_base)
-"bh" = (/obj/machinery/door/airlock/hatch{name = "Lounge";req_access_txt = "150"},/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
+"bg" = (/obj/structure/toilet{tag = "icon-toilet00 (WEST)"; icon_state = "toilet00"; dir = 8},/turf/open/floor/plasteel/vault{dir = 5},/area/ruin/powered/syndicate_lava_base)
+"bh" = (/obj/machinery/door/airlock/hatch{name = "Lounge"; req_access_txt = "150"},/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
"bi" = (/obj/machinery/chem_dispenser,/turf/open/floor/plasteel/podhatch{dir = 8},/area/ruin/powered/syndicate_lava_base)
-"bj" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/item/weapon/reagent_containers/glass/beaker,/obj/item/weapon/reagent_containers/dropper,/obj/item/weapon/reagent_containers/syringe,/obj/structure/sign/nosmoking_2{pixel_y = 32},/turf/open/floor/plasteel/podhatch{tag = "icon-podhatch (NORTH)";icon_state = "podhatch";dir = 1},/area/ruin/powered/syndicate_lava_base)
-"bk" = (/obj/machinery/chem_master,/turf/open/floor/plasteel/podhatch{tag = "icon-podhatch (EAST)";icon_state = "podhatch";dir = 4},/area/ruin/powered/syndicate_lava_base)
-"bl" = (/obj/structure/noticeboard{pixel_y = 32},/obj/machinery/reagentgrinder{desc = "Used to grind things up into raw materials and liquids.";pixel_y = 5},/obj/structure/table/reinforced,/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
+"bj" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/item/weapon/reagent_containers/glass/beaker,/obj/item/weapon/reagent_containers/dropper,/obj/item/weapon/reagent_containers/syringe,/obj/structure/sign/nosmoking_2{pixel_y = 32},/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/item/weapon/reagent_containers/glass/beaker/large,/turf/open/floor/plasteel/podhatch{tag = "icon-podhatch (NORTH)"; icon_state = "podhatch"; dir = 1},/area/ruin/powered/syndicate_lava_base)
+"bk" = (/obj/machinery/chem_master,/turf/open/floor/plasteel/podhatch{tag = "icon-podhatch (EAST)"; icon_state = "podhatch"; dir = 4},/area/ruin/powered/syndicate_lava_base)
+"bl" = (/obj/structure/noticeboard{pixel_y = 32},/obj/machinery/reagentgrinder{desc = "Used to grind things up into raw materials and liquids."; pixel_y = 5},/obj/structure/table/reinforced,/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
"bm" = (/obj/structure/table/reinforced,/obj/item/weapon/clipboard,/obj/item/weapon/folder/white,/obj/item/weapon/book/manual/wiki/chemistry,/obj/item/weapon/book/manual/wiki/chemistry,/obj/item/device/assembly/signaler,/obj/item/device/assembly/signaler,/obj/item/device/assembly/voice,/obj/item/device/assembly/voice,/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
-"bn" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/box/beakers{pixel_x = 3;pixel_y = 3},/obj/item/weapon/storage/box/syringes,/obj/item/weapon/gun/syringe/syndicate,/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
+"bn" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/box/beakers{pixel_x = 3; pixel_y = 3},/obj/item/weapon/storage/box/syringes,/obj/item/weapon/gun/syringe/syndicate,/obj/item/weapon/storage/box/beakers,/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
"bo" = (/turf/open/floor/plasteel/podhatch{dir = 9},/area/ruin/powered/syndicate_lava_base)
"bp" = (/turf/open/floor/plasteel/podhatch{dir = 5},/area/ruin/powered/syndicate_lava_base)
-"bq" = (/obj/structure/table/reinforced,/obj/machinery/reagentgrinder{desc = "Used to grind things up into raw materials and liquids.";pixel_y = 5},/obj/structure/noticeboard{pixel_y = 32},/turf/open/floor/plasteel/podhatch/corner,/area/ruin/powered/syndicate_lava_base)
-"br" = (/obj/structure/reagent_dispensers/virusfood{pixel_y = 32},/obj/structure/table/reinforced,/obj/item/device/healthanalyzer,/obj/item/stack/sheet/mineral/plasma{amount = 5;layer = 3.1},/turf/open/floor/plasteel/podhatch,/area/ruin/powered/syndicate_lava_base)
-"bs" = (/obj/structure/extinguisher_cabinet{pixel_x = 0;pixel_y = 32},/obj/machinery/computer/pandemic,/turf/open/floor/plasteel/podhatch,/area/ruin/powered/syndicate_lava_base)
-"bt" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/box/beakers{pixel_x = 3;pixel_y = 3},/obj/item/weapon/storage/box/syringes,/turf/open/floor/plasteel/podhatch,/area/ruin/powered/syndicate_lava_base)
-"bu" = (/obj/structure/bed/roller,/obj/machinery/iv_drip,/obj/item/weapon/reagent_containers/blood/random,/turf/open/floor/plasteel/podhatch{tag = "icon-podhatch (SOUTHEAST)";icon_state = "podhatch";dir = 6},/area/ruin/powered/syndicate_lava_base)
+"bq" = (/obj/structure/table/reinforced,/obj/machinery/reagentgrinder{desc = "Used to grind things up into raw materials and liquids."; pixel_y = 5},/obj/structure/noticeboard{pixel_y = 32},/turf/open/floor/plasteel/podhatch/corner,/area/ruin/powered/syndicate_lava_base)
+"br" = (/obj/structure/reagent_dispensers/virusfood{pixel_y = 32},/obj/structure/table/reinforced,/obj/item/device/healthanalyzer,/obj/item/stack/sheet/mineral/plasma{amount = 5; layer = 3.1},/turf/open/floor/plasteel/podhatch,/area/ruin/powered/syndicate_lava_base)
+"bs" = (/obj/structure/extinguisher_cabinet{pixel_x = 0; pixel_y = 32},/obj/machinery/computer/pandemic,/turf/open/floor/plasteel/podhatch,/area/ruin/powered/syndicate_lava_base)
+"bt" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/box/beakers{pixel_x = 3; pixel_y = 3},/obj/item/weapon/storage/box/syringes,/turf/open/floor/plasteel/podhatch,/area/ruin/powered/syndicate_lava_base)
+"bu" = (/obj/structure/bed/roller,/obj/machinery/iv_drip,/obj/item/weapon/reagent_containers/blood/random,/turf/open/floor/plasteel/podhatch{tag = "icon-podhatch (SOUTHEAST)"; icon_state = "podhatch"; dir = 6},/area/ruin/powered/syndicate_lava_base)
"bv" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/ruin/powered/syndicate_lava_base)
"bw" = (/mob/living/carbon/monkey,/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
-"bx" = (/obj/structure/bed/roller,/turf/open/floor/plasteel/vault{dir = 8},/area/space)
+"bx" = (/obj/structure/bed/roller,/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
"by" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plasteel/vault{dir = 5},/area/ruin/powered/syndicate_lava_base)
-"bz" = (/obj/structure/bed/roller,/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
-"bA" = (/mob/living/carbon/monkey,/turf/open/floor/plasteel/vault{dir = 5},/area/ruin/powered/syndicate_lava_base)
-"bB" = (/obj/structure/window/reinforced,/turf/open/floor/plasteel/vault{dir = 5},/area/ruin/powered/syndicate_lava_base)
-"bC" = (/obj/machinery/door/window/brigdoor,/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
-"bD" = (/obj/machinery/chem_heater,/obj/structure/extinguisher_cabinet{pixel_x = -26},/turf/open/floor/plasteel/podhatch{dir = 10},/area/ruin/powered/syndicate_lava_base)
-"bE" = (/obj/structure/chair/office/dark{dir = 1},/turf/open/floor/plasteel/podhatch,/area/ruin/powered/syndicate_lava_base)
-"bF" = (/obj/structure/closet/crate/bin,/turf/open/floor/plasteel/podhatch{tag = "icon-podhatch (SOUTHEAST)";icon_state = "podhatch";dir = 6},/area/ruin/powered/syndicate_lava_base)
-"bG" = (/turf/open/floor/plasteel/vault,/area/ruin/powered/syndicate_lava_base)
-"bH" = (/obj/item/device/assembly/igniter,/obj/item/device/assembly/igniter,/obj/item/device/assembly/igniter,/obj/item/device/assembly/timer{pixel_x = 3;pixel_y = 3},/obj/item/device/assembly/timer{pixel_x = 3;pixel_y = 3},/obj/item/device/assembly/timer{pixel_x = 3;pixel_y = 3},/obj/structure/table/reinforced,/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
-"bI" = (/obj/structure/table/reinforced,/obj/item/weapon/book/manual/wiki/infections,/obj/item/stack/sheet/mineral/silver{amount = 10},/turf/open/floor/plasteel/podhatch{tag = "icon-podhatch (EAST)";icon_state = "podhatch";dir = 4},/area/ruin/powered/syndicate_lava_base)
-"bJ" = (/obj/structure/chair/office/dark{dir = 8},/turf/open/floor/plasteel/vault{dir = 5},/area/ruin/powered/syndicate_lava_base)
-"bK" = (/obj/machinery/door/airlock/hatch{name = "Monkey Pen";req_access_txt = "150"},/turf/open/floor/plasteel/black,/area/ruin/powered/syndicate_lava_base)
-"bL" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plasteel/vault{dir = 5},/area/space)
-"bM" = (/obj/structure/table/reinforced,/obj/item/weapon/gun/ballistic/automatic/c20r/toy/unrestricted,/obj/item/weapon/gun/ballistic/automatic/c20r/toy/unrestricted,/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
-"bN" = (/obj/item/weapon/twohanded/required/kirbyplants{icon_state = "plant-21";layer = 4.1},/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
-"bO" = (/obj/structure/table/reinforced,/obj/item/clothing/gloves/color/latex,/obj/item/clothing/gloves/color/latex,/obj/item/clothing/suit/toggle/labcoat,/obj/item/clothing/suit/toggle/labcoat,/obj/item/clothing/glasses/science,/obj/item/clothing/glasses/science,/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
-"bP" = (/obj/machinery/smartfridge/chemistry/virology,/turf/open/floor/plasteel/podhatch{tag = "icon-podhatch (EAST)";icon_state = "podhatch";dir = 4},/area/ruin/powered/syndicate_lava_base)
-"bQ" = (/obj/machinery/iv_drip,/obj/item/weapon/reagent_containers/blood/random,/turf/open/floor/plasteel/vault{dir = 5},/area/ruin/powered/syndicate_lava_base)
-"bR" = (/obj/structure/closet/crate/bin,/turf/open/floor/plasteel/podhatch{dir = 9},/area/ruin/powered/syndicate_lava_base)
-"bS" = (/obj/structure/chair/office/dark,/turf/open/floor/plasteel/podhatch{tag = "icon-podhatch (NORTH)";icon_state = "podhatch";dir = 1},/area/ruin/powered/syndicate_lava_base)
-"bT" = (/obj/machinery/chem_heater,/turf/open/floor/plasteel/podhatch{dir = 5},/area/ruin/powered/syndicate_lava_base)
-"bU" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/item/weapon/reagent_containers/glass/beaker,/obj/item/weapon/reagent_containers/dropper,/obj/item/weapon/reagent_containers/syringe,/turf/open/floor/plasteel/podhatch{tag = "icon-podhatch (EAST)";icon_state = "podhatch";dir = 4},/area/ruin/powered/syndicate_lava_base)
-"bV" = (/obj/structure/chair/office/dark,/turf/open/floor/plasteel/vault{dir = 5},/area/ruin/powered/syndicate_lava_base)
-"bW" = (/obj/machinery/door/airlock/hatch{name = "Monkey Pen";req_access_txt = "150"},/turf/open/floor/plasteel/black,/area/space)
-"bX" = (/obj/machinery/door/airlock/hatch{name = "Monkey Pen";req_access_txt = "150"},/turf/open/floor/plasteel/vault{dir = 5},/area/ruin/powered/syndicate_lava_base)
-"bY" = (/obj/structure/table/reinforced,/obj/item/weapon/folder,/obj/item/clothing/ears/earmuffs,/obj/item/clothing/ears/earmuffs,/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
-"bZ" = (/obj/structure/table/reinforced,/obj/item/weapon/suppressor/specialoffer,/obj/item/weapon/gun/ballistic/automatic/toy/pistol/unrestricted,/obj/item/weapon/gun/ballistic/automatic/toy/pistol/unrestricted,/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
-"ca" = (/obj/machinery/chem_master,/turf/open/floor/plasteel/podhatch{dir = 8},/area/ruin/powered/syndicate_lava_base)
-"cb" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/item/weapon/reagent_containers/glass/beaker,/obj/item/weapon/reagent_containers/dropper,/obj/item/weapon/reagent_containers/syringe,/turf/open/floor/plasteel/podhatch,/area/ruin/powered/syndicate_lava_base)
-"cc" = (/obj/machinery/chem_dispenser,/obj/structure/extinguisher_cabinet{pixel_x = 26},/turf/open/floor/plasteel/podhatch{tag = "icon-podhatch (EAST)";icon_state = "podhatch";dir = 4},/area/ruin/powered/syndicate_lava_base)
-"cd" = (/obj/structure/table/reinforced,/obj/item/clothing/suit/bio_suit/general,/obj/item/clothing/mask/surgical,/obj/item/clothing/head/bio_hood/general,/turf/open/floor/plasteel/podhatch{tag = "icon-podhatch (SOUTHEAST)";icon_state = "podhatch";dir = 6},/area/ruin/powered/syndicate_lava_base)
-"ce" = (/obj/machinery/shower{dir = 4;icon_state = "shower";name = "emergency shower"},/obj/machinery/shower{dir = 8;icon_state = "shower";name = "emergency shower"},/turf/open/floor/plasteel/vault{dir = 5},/area/ruin/powered/syndicate_lava_base)
-"cf" = (/obj/structure/table/reinforced,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/turf/open/floor/plasteel/podhatch{tag = "icon-podhatch (NORTH)";icon_state = "podhatch";dir = 1},/area/ruin/powered/syndicate_lava_base)
-"cg" = (/obj/structure/table/reinforced,/obj/item/weapon/folder/white,/obj/item/stack/sheet/mineral/gold{amount = 10},/obj/item/stack/sheet/mineral/uranium{amount = 10},/turf/open/floor/plasteel/podhatch{tag = "icon-podhatch (NORTH)";icon_state = "podhatch";dir = 1},/area/ruin/powered/syndicate_lava_base)
-"ch" = (/turf/open/floor/plasteel/vault{dir = 8},/area/space)
-"ci" = (/obj/structure/bed/roller,/mob/living/carbon/monkey,/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
-"cj" = (/obj/structure/sign/securearea,/turf/closed/wall/mineral/plastitanium,/area/ruin/powered/syndicate_lava_base)
-"ck" = (/obj/machinery/door/airlock/hatch{name = "Firing Range";req_access_txt = "150"},/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
-"cl" = (/obj/machinery/door/airlock/hatch{name = "Chemistry Lab";req_access_txt = "150"},/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
-"cm" = (/obj/structure/sign/chemistry,/turf/closed/wall/mineral/plastitanium,/area/ruin/powered/syndicate_lava_base)
-"cn" = (/obj/machinery/syndicatebomb/badmin/varplosion{can_unanchor = 0;name = "self destruct device"},/turf/open/floor/plasteel/podhatch{dir = 8},/area/ruin/powered/syndicate_lava_base)
-"co" = (/obj/structure/sign/biohazard,/turf/closed/wall/mineral/plastitanium,/area/ruin/powered/syndicate_lava_base)
-"cp" = (/obj/machinery/door/airlock/hatch{name = "Virology Lab";req_access_txt = "150"},/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
-"cq" = (/obj/structure/rack,/obj/item/ammo_box/foambox{pixel_x = -3;pixel_y = 3},/obj/item/ammo_box/foambox,/obj/item/ammo_box/foambox{pixel_x = 3;pixel_y = -3},/turf/open/floor/plasteel/podhatch{dir = 5},/area/ruin/powered/syndicate_lava_base)
-"cr" = (/obj/item/weapon/twohanded/required/kirbyplants{icon_state = "plant-22"},/turf/open/floor/plasteel/podhatch{dir = 9},/area/ruin/powered/syndicate_lava_base)
-"cs" = (/turf/open/floor/plasteel/podhatch{tag = "icon-podhatch (NORTH)";icon_state = "podhatch";dir = 1},/area/ruin/powered/syndicate_lava_base)
-"ct" = (/turf/open/floor/plasteel/podhatch/corner{tag = "icon-podhatchcorner (EAST)";icon_state = "podhatchcorner";dir = 4},/area/ruin/powered/syndicate_lava_base)
-"cu" = (/turf/open/floor/plasteel/podhatch/corner{tag = "icon-podhatchcorner (WEST)";icon_state = "podhatchcorner";dir = 8},/area/ruin/powered/syndicate_lava_base)
-"cv" = (/obj/item/weapon/twohanded/required/kirbyplants{icon_state = "plant-21";layer = 4.1},/turf/open/floor/plasteel/podhatch{dir = 5},/area/ruin/powered/syndicate_lava_base)
-"cw" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/sign/bluecross_2,/turf/open/floor/plating,/area/ruin/powered/syndicate_lava_base)
-"cx" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular{pixel_x = 3;pixel_y = 3},/obj/item/weapon/storage/firstaid/fire,/obj/item/weapon/storage/firstaid/regular{pixel_x = -3;pixel_y = -3},/turf/open/floor/plasteel/vault,/area/ruin/powered/syndicate_lava_base)
-"cy" = (/obj/machinery/sleeper/syndie{dir = 8},/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
-"cz" = (/obj/structure/closet/crate/secure,/obj/item/target,/obj/item/target,/obj/item/target/alien,/obj/item/target/alien,/obj/item/target/clown,/obj/item/target/clown,/turf/open/floor/plasteel/podhatch{tag = "icon-podhatch (SOUTHEAST)";icon_state = "podhatch";dir = 6},/area/ruin/powered/syndicate_lava_base)
-"cA" = (/turf/open/floor/plasteel/podhatch{dir = 10},/area/ruin/powered/syndicate_lava_base)
-"cB" = (/obj/machinery/syndicatebomb/badmin/varplosion{can_unanchor = 0;name = "self destruct device"},/turf/open/floor/plasteel/podhatch,/area/ruin/powered/syndicate_lava_base)
-"cC" = (/obj/structure/extinguisher_cabinet{pixel_y = -32},/turf/open/floor/plasteel/podhatch,/area/ruin/powered/syndicate_lava_base)
-"cD" = (/turf/open/floor/plasteel/podhatch,/area/ruin/powered/syndicate_lava_base)
-"cE" = (/turf/open/floor/plasteel/podhatch/corner{tag = "icon-podhatchcorner (NORTH)";icon_state = "podhatchcorner";dir = 1},/area/ruin/powered/syndicate_lava_base)
-"cF" = (/turf/open/floor/plasteel/podhatch/corner,/area/ruin/powered/syndicate_lava_base)
-"cG" = (/turf/open/floor/plasteel/podhatch{tag = "icon-podhatch (SOUTHEAST)";icon_state = "podhatch";dir = 6},/area/ruin/powered/syndicate_lava_base)
-"cH" = (/obj/machinery/door/airlock/hatch{name = "Infirmary";req_access_txt = "150"},/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
-"cI" = (/obj/structure/bed/roller,/obj/machinery/iv_drip,/obj/item/weapon/reagent_containers/blood/random,/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
-"cJ" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "lavalandsyndi";name = "Syndicate Research Experimentor Shutters"},/turf/open/floor/plating,/area/ruin/powered/syndicate_lava_base)
-"cK" = (/obj/machinery/door/airlock/hatch{name = "Experimentation Room";req_access_txt = "150"},/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
-"cL" = (/obj/machinery/door/airlock/hatch{name = "Telecommunications Control";req_access_txt = "150"},/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
-"cM" = (/turf/open/floor/engine,/area/ruin/powered/syndicate_lava_base)
-"cN" = (/obj/structure/noticeboard{pixel_y = 32},/turf/open/floor/plasteel/vault{dir = 5},/area/ruin/powered/syndicate_lava_base)
-"cO" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/syndicate,/obj/item/device/multitool,/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
-"cP" = (/obj/item/weapon/surgicaldrill,/obj/item/weapon/circular_saw,/obj/structure/table/reinforced,/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
-"cQ" = (/obj/structure/sink{dir = 4;icon_state = "sink";pixel_x = 11;pixel_y = 0},/obj/structure/mirror{pixel_x = 30},/turf/open/floor/plasteel/vault{dir = 5},/area/ruin/powered/syndicate_lava_base)
-"cR" = (/obj/item/stack/cable_coil/white{pixel_x = 3;pixel_y = 3},/obj/structure/table/reinforced,/obj/item/weapon/storage/toolbox/syndicate,/obj/item/stack/cable_coil/white,/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
-"cS" = (/obj/structure/table/reinforced,/obj/item/device/flashlight/lamp,/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
-"cT" = (/obj/structure/table/reinforced,/obj/item/device/radio/intercom{broadcasting = 0;dir = 8;freerange = 1;listening = 1;name = "Pirate Radio Listening Channel";pixel_x = 0},/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
-"cU" = (/obj/machinery/computer/camera_advanced,/turf/open/floor/plasteel/vault{dir = 5},/area/ruin/powered/syndicate_lava_base)
-"cV" = (/obj/structure/filingcabinet/chestdrawer,/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
-"cW" = (/obj/item/weapon/cautery,/obj/item/weapon/scalpel,/obj/structure/table/reinforced,/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
-"cX" = (/obj/structure/table/optable,/obj/item/weapon/surgical_drapes,/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
-"cY" = (/obj/item/weapon/retractor,/obj/item/weapon/hemostat,/obj/structure/table/reinforced,/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
-"cZ" = (/obj/structure/sign/nosmoking_2{pixel_x = 32},/turf/open/floor/plasteel/vault{dir = 5},/area/ruin/powered/syndicate_lava_base)
-"da" = (/obj/item/weapon/twohanded/required/kirbyplants{icon_state = "plant-22"},/obj/structure/extinguisher_cabinet{pixel_x = -26},/turf/open/floor/plasteel/vault{dir = 5},/area/ruin/powered/syndicate_lava_base)
-"db" = (/obj/structure/table/reinforced,/obj/item/device/radio/intercom{broadcasting = 1;dir = 8;freerange = 1;listening = 0;name = "Pirate Radio Broadcast Channel";pixel_x = 0},/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
-"dc" = (/obj/structure/sign/fire{pixel_x = -32},/turf/open/floor/engine,/area/ruin/powered/syndicate_lava_base)
-"dd" = (/obj/structure/table/reinforced,/obj/item/device/assembly/signaler,/obj/item/device/assembly/signaler,/obj/item/device/assembly/voice,/obj/item/device/assembly/voice,/obj/item/weapon/screwdriver/nuke,/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
-"de" = (/obj/structure/table/reinforced,/obj/item/stack/sheet/plasteel{amount = 15},/obj/item/device/electropack,/obj/item/device/taperecorder,/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
-"df" = (/obj/structure/filingcabinet/security,/turf/open/floor/plasteel/vault{dir = 5},/area/ruin/powered/syndicate_lava_base)
-"dg" = (/obj/structure/table/reinforced,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
-"dh" = (/obj/machinery/computer/message_monitor,/obj/item/weapon/paper/monitorkey,/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
-"di" = (/turf/open/floor/plasteel/vault{tag = "icon-vault (NORTHEAST)";dir = 5},/area/ruin/powered/syndicate_lava_base)
-"dj" = (/obj/effect/baseturf_helper,/turf/open/floor/plasteel/vault{tag = "icon-vault (NORTHEAST)";dir = 5},/area/ruin/powered/syndicate_lava_base)
-"dk" = (/obj/machinery/button/door{id = "lavalandsyndi";name = "Syndicate Experimentor Lockdown Control";pixel_x = 26;req_access_txt = "150"},/turf/open/floor/engine,/area/ruin/powered/syndicate_lava_base)
-"dl" = (/obj/machinery/button/door{id = "lavalandsyndi";name = "Syndicate Experimentor Lockdown Control";pixel_x = -26;req_access_txt = "150"},/turf/open/floor/plasteel/vault{dir = 5},/area/ruin/powered/syndicate_lava_base)
-"dm" = (/obj/item/stack/sheet/mineral/plastitanium{amount = 30},/obj/item/stack/rods{amount = 50},/obj/structure/table/reinforced,/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
-"dn" = (/obj/structure/filingcabinet/medical,/turf/open/floor/plasteel/vault{dir = 5},/area/ruin/powered/syndicate_lava_base)
-"do" = (/turf/open/floor/plasteel/circuit/gcircuit,/area/ruin/powered/syndicate_lava_base)
-"dp" = (/obj/machinery/door/poddoor/preopen{id = "lavalandsyndi";name = "Syndicate Research Experimentor Shutters"},/obj/machinery/door/airlock/hatch{name = "Experimentation Room";req_access_txt = "150"},/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
-"dq" = (/obj/item/stack/sheet/metal{amount = 50},/obj/item/weapon/grenade/chem_grenade,/obj/item/weapon/grenade/chem_grenade,/obj/item/weapon/grenade/chem_grenade,/obj/structure/table/reinforced,/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
-"dr" = (/obj/machinery/telecomms/relay/preset/ruskie{use_power = 0},/turf/open/floor/plasteel/vault{tag = "icon-vault (NORTHEAST)";dir = 5},/area/ruin/powered/syndicate_lava_base)
-"ds" = (/obj/machinery/door/airlock/hatch{name = "Syndicate Recon Outpost";req_access_txt = "150"},/obj/structure/fans/tiny,/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
-"dt" = (/obj/machinery/door/airlock/hatch{name = "Monkey Pen";req_access_txt = "150"},/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
-"du" = (/obj/structure/sign/vacuum{pixel_x = -32},/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
-"dv" = (/obj/structure/sign/xeno_warning_mining{pixel_x = 32},/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
-"dw" = (/obj/structure/bed/roller,/obj/machinery/iv_drip,/mob/living/carbon/monkey,/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
-"dx" = (/obj/structure/sign/securearea{pixel_y = 32},/turf/open/floor/plating/lava/smooth/lava_land_surface,/area/lavaland/surface/outdoors)
+"bz" = (/mob/living/carbon/monkey,/turf/open/floor/plasteel/vault{dir = 5},/area/ruin/powered/syndicate_lava_base)
+"bA" = (/obj/structure/window/reinforced,/turf/open/floor/plasteel/vault{dir = 5},/area/ruin/powered/syndicate_lava_base)
+"bB" = (/obj/machinery/door/window/brigdoor,/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
+"bC" = (/obj/machinery/chem_heater,/obj/structure/extinguisher_cabinet{pixel_x = -26},/turf/open/floor/plasteel/podhatch{dir = 10},/area/ruin/powered/syndicate_lava_base)
+"bD" = (/obj/structure/chair/office/dark{dir = 1},/turf/open/floor/plasteel/podhatch,/area/ruin/powered/syndicate_lava_base)
+"bE" = (/obj/structure/closet/crate/bin,/turf/open/floor/plasteel/podhatch{tag = "icon-podhatch (SOUTHEAST)"; icon_state = "podhatch"; dir = 6},/area/ruin/powered/syndicate_lava_base)
+"bF" = (/turf/open/floor/plasteel/vault,/area/ruin/powered/syndicate_lava_base)
+"bG" = (/obj/item/device/assembly/igniter,/obj/item/device/assembly/igniter,/obj/item/device/assembly/igniter,/obj/item/device/assembly/timer{pixel_x = 3; pixel_y = 3},/obj/item/device/assembly/timer{pixel_x = 3; pixel_y = 3},/obj/item/device/assembly/timer{pixel_x = 3; pixel_y = 3},/obj/structure/table/reinforced,/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
+"bH" = (/obj/structure/table/reinforced,/obj/item/weapon/book/manual/wiki/infections,/obj/item/stack/sheet/mineral/silver{amount = 10},/turf/open/floor/plasteel/podhatch{tag = "icon-podhatch (EAST)"; icon_state = "podhatch"; dir = 4},/area/ruin/powered/syndicate_lava_base)
+"bI" = (/obj/structure/chair/office/dark{dir = 8},/turf/open/floor/plasteel/vault{dir = 5},/area/ruin/powered/syndicate_lava_base)
+"bJ" = (/obj/machinery/door/airlock/hatch{name = "Monkey Pen"; req_access_txt = "150"},/turf/open/floor/plasteel/black,/area/ruin/powered/syndicate_lava_base)
+"bK" = (/obj/structure/table/reinforced,/obj/item/weapon/gun/ballistic/automatic/c20r/toy/unrestricted,/obj/item/weapon/gun/ballistic/automatic/c20r/toy/unrestricted,/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
+"bL" = (/obj/item/weapon/twohanded/required/kirbyplants{icon_state = "plant-21"; layer = 4.1},/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
+"bM" = (/obj/structure/table/reinforced,/obj/item/clothing/gloves/color/latex,/obj/item/clothing/gloves/color/latex,/obj/item/clothing/suit/toggle/labcoat,/obj/item/clothing/suit/toggle/labcoat,/obj/item/clothing/glasses/science,/obj/item/clothing/glasses/science,/obj/item/clothing/glasses/hud/health,/obj/item/clothing/glasses/hud/health,/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
+"bN" = (/obj/machinery/smartfridge/chemistry/virology,/turf/open/floor/plasteel/podhatch{tag = "icon-podhatch (EAST)"; icon_state = "podhatch"; dir = 4},/area/ruin/powered/syndicate_lava_base)
+"bO" = (/obj/machinery/iv_drip,/obj/item/weapon/reagent_containers/blood/random,/turf/open/floor/plasteel/vault{dir = 5},/area/ruin/powered/syndicate_lava_base)
+"bP" = (/obj/structure/closet/crate/bin,/turf/open/floor/plasteel/podhatch{dir = 9},/area/ruin/powered/syndicate_lava_base)
+"bQ" = (/obj/structure/chair/office/dark,/turf/open/floor/plasteel/podhatch{tag = "icon-podhatch (NORTH)"; icon_state = "podhatch"; dir = 1},/area/ruin/powered/syndicate_lava_base)
+"bR" = (/obj/machinery/chem_heater,/turf/open/floor/plasteel/podhatch{dir = 5},/area/ruin/powered/syndicate_lava_base)
+"bS" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/item/weapon/reagent_containers/glass/beaker,/obj/item/weapon/reagent_containers/dropper,/obj/item/weapon/reagent_containers/syringe,/obj/item/weapon/reagent_containers/glass/beaker/large,/turf/open/floor/plasteel/podhatch{tag = "icon-podhatch (EAST)"; icon_state = "podhatch"; dir = 4},/area/ruin/powered/syndicate_lava_base)
+"bT" = (/obj/structure/chair/office/dark,/turf/open/floor/plasteel/vault{dir = 5},/area/ruin/powered/syndicate_lava_base)
+"bU" = (/obj/machinery/door/airlock/hatch{name = "Monkey Pen"; req_access_txt = "150"},/turf/open/floor/plasteel/vault{dir = 5},/area/ruin/powered/syndicate_lava_base)
+"bV" = (/obj/structure/table/reinforced,/obj/item/weapon/folder,/obj/item/clothing/ears/earmuffs,/obj/item/clothing/ears/earmuffs,/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
+"bW" = (/obj/structure/table/reinforced,/obj/item/weapon/suppressor/specialoffer,/obj/item/weapon/gun/ballistic/automatic/toy/pistol/unrestricted,/obj/item/weapon/gun/ballistic/automatic/toy/pistol/unrestricted,/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
+"bX" = (/obj/machinery/chem_master,/turf/open/floor/plasteel/podhatch{dir = 8},/area/ruin/powered/syndicate_lava_base)
+"bY" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/item/weapon/reagent_containers/glass/beaker,/obj/item/weapon/reagent_containers/dropper,/obj/item/weapon/reagent_containers/syringe,/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/item/weapon/reagent_containers/glass/beaker/large,/turf/open/floor/plasteel/podhatch,/area/ruin/powered/syndicate_lava_base)
+"bZ" = (/obj/machinery/chem_dispenser,/obj/structure/extinguisher_cabinet{pixel_x = 26},/turf/open/floor/plasteel/podhatch{tag = "icon-podhatch (EAST)"; icon_state = "podhatch"; dir = 4},/area/ruin/powered/syndicate_lava_base)
+"ca" = (/obj/structure/table/reinforced,/obj/item/clothing/suit/bio_suit/general,/obj/item/clothing/mask/surgical,/obj/item/clothing/head/bio_hood/general,/obj/item/clothing/glasses/hud/health,/obj/item/clothing/glasses/science,/turf/open/floor/plasteel/podhatch{tag = "icon-podhatch (SOUTHEAST)"; icon_state = "podhatch"; dir = 6},/area/ruin/powered/syndicate_lava_base)
+"cb" = (/obj/machinery/shower{dir = 4; icon_state = "shower"; name = "emergency shower"},/obj/machinery/shower{dir = 8; icon_state = "shower"; name = "emergency shower"},/turf/open/floor/plasteel/vault{dir = 5},/area/ruin/powered/syndicate_lava_base)
+"cc" = (/obj/structure/table/reinforced,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/turf/open/floor/plasteel/podhatch{tag = "icon-podhatch (NORTH)"; icon_state = "podhatch"; dir = 1},/area/ruin/powered/syndicate_lava_base)
+"cd" = (/obj/structure/table/reinforced,/obj/item/weapon/folder/white,/obj/item/stack/sheet/mineral/gold{amount = 10},/obj/item/stack/sheet/mineral/uranium{amount = 10},/turf/open/floor/plasteel/podhatch{tag = "icon-podhatch (NORTH)"; icon_state = "podhatch"; dir = 1},/area/ruin/powered/syndicate_lava_base)
+"ce" = (/obj/structure/bed/roller,/mob/living/carbon/monkey,/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
+"cf" = (/obj/structure/sign/securearea,/turf/closed/wall/mineral/plastitanium,/area/ruin/powered/syndicate_lava_base)
+"cg" = (/obj/machinery/door/airlock/hatch{name = "Firing Range"; req_access_txt = "150"},/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
+"ch" = (/obj/machinery/door/airlock/hatch{name = "Chemistry Lab"; req_access_txt = "150"},/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
+"ci" = (/obj/structure/sign/chemistry,/turf/closed/wall/mineral/plastitanium,/area/ruin/powered/syndicate_lava_base)
+"cj" = (/obj/machinery/syndicatebomb/badmin/varplosion{can_unanchor = 0; name = "self destruct device"},/turf/open/floor/plasteel/podhatch{dir = 8},/area/ruin/powered/syndicate_lava_base)
+"ck" = (/obj/structure/sign/biohazard,/turf/closed/wall/mineral/plastitanium,/area/ruin/powered/syndicate_lava_base)
+"cl" = (/obj/machinery/door/airlock/hatch{name = "Virology Lab"; req_access_txt = "150"},/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
+"cm" = (/obj/structure/rack,/obj/item/ammo_box/foambox{pixel_x = -3; pixel_y = 3},/obj/item/ammo_box/foambox,/obj/item/ammo_box/foambox{pixel_x = 3; pixel_y = -3},/turf/open/floor/plasteel/podhatch{dir = 5},/area/ruin/powered/syndicate_lava_base)
+"cn" = (/obj/item/weapon/twohanded/required/kirbyplants{icon_state = "plant-22"},/turf/open/floor/plasteel/podhatch{dir = 9},/area/ruin/powered/syndicate_lava_base)
+"co" = (/turf/open/floor/plasteel/podhatch{tag = "icon-podhatch (NORTH)"; icon_state = "podhatch"; dir = 1},/area/ruin/powered/syndicate_lava_base)
+"cp" = (/turf/open/floor/plasteel/podhatch/corner{tag = "icon-podhatchcorner (EAST)"; icon_state = "podhatchcorner"; dir = 4},/area/ruin/powered/syndicate_lava_base)
+"cq" = (/turf/open/floor/plasteel/podhatch/corner{tag = "icon-podhatchcorner (WEST)"; icon_state = "podhatchcorner"; dir = 8},/area/ruin/powered/syndicate_lava_base)
+"cr" = (/obj/item/weapon/twohanded/required/kirbyplants{icon_state = "plant-21"; layer = 4.1},/turf/open/floor/plasteel/podhatch{dir = 5},/area/ruin/powered/syndicate_lava_base)
+"cs" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/sign/bluecross_2,/turf/open/floor/plating,/area/ruin/powered/syndicate_lava_base)
+"ct" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular{pixel_x = 3; pixel_y = 3},/obj/item/weapon/storage/firstaid/fire,/obj/item/weapon/storage/firstaid/regular{pixel_x = -3; pixel_y = -3},/turf/open/floor/plasteel/vault,/area/ruin/powered/syndicate_lava_base)
+"cu" = (/obj/machinery/sleeper/syndie{dir = 8},/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
+"cv" = (/obj/structure/closet/crate/secure,/obj/item/target,/obj/item/target,/obj/item/target/alien,/obj/item/target/alien,/obj/item/target/clown,/obj/item/target/clown,/turf/open/floor/plasteel/podhatch{tag = "icon-podhatch (SOUTHEAST)"; icon_state = "podhatch"; dir = 6},/area/ruin/powered/syndicate_lava_base)
+"cw" = (/turf/open/floor/plasteel/podhatch{dir = 10},/area/ruin/powered/syndicate_lava_base)
+"cx" = (/obj/machinery/syndicatebomb/badmin/varplosion{can_unanchor = 0; name = "self destruct device"},/turf/open/floor/plasteel/podhatch,/area/ruin/powered/syndicate_lava_base)
+"cy" = (/obj/structure/extinguisher_cabinet{pixel_y = -32},/turf/open/floor/plasteel/podhatch,/area/ruin/powered/syndicate_lava_base)
+"cz" = (/turf/open/floor/plasteel/podhatch,/area/ruin/powered/syndicate_lava_base)
+"cA" = (/turf/open/floor/plasteel/podhatch/corner{tag = "icon-podhatchcorner (NORTH)"; icon_state = "podhatchcorner"; dir = 1},/area/ruin/powered/syndicate_lava_base)
+"cB" = (/turf/open/floor/plasteel/podhatch/corner,/area/ruin/powered/syndicate_lava_base)
+"cC" = (/turf/open/floor/plasteel/podhatch{tag = "icon-podhatch (SOUTHEAST)"; icon_state = "podhatch"; dir = 6},/area/ruin/powered/syndicate_lava_base)
+"cD" = (/obj/machinery/door/airlock/hatch{name = "Infirmary"; req_access_txt = "150"},/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
+"cE" = (/obj/structure/bed/roller,/obj/machinery/iv_drip,/obj/item/weapon/reagent_containers/blood/random,/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
+"cF" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "lavalandsyndi"; name = "Syndicate Research Experimentor Shutters"},/turf/open/floor/plating,/area/ruin/powered/syndicate_lava_base)
+"cG" = (/obj/machinery/door/airlock/hatch{name = "Experimentation Room"; req_access_txt = "150"},/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
+"cH" = (/obj/machinery/door/airlock/hatch{name = "Telecommunications Control"; req_access_txt = "150"},/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
+"cI" = (/turf/open/floor/engine,/area/ruin/powered/syndicate_lava_base)
+"cJ" = (/obj/structure/noticeboard{pixel_y = 32},/turf/open/floor/plasteel/vault{dir = 5},/area/ruin/powered/syndicate_lava_base)
+"cK" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/syndicate,/obj/item/device/multitool,/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
+"cL" = (/obj/item/weapon/surgicaldrill,/obj/item/weapon/circular_saw,/obj/structure/table/reinforced,/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
+"cM" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/obj/structure/mirror{pixel_x = 30},/turf/open/floor/plasteel/vault{dir = 5},/area/ruin/powered/syndicate_lava_base)
+"cN" = (/obj/item/stack/cable_coil/white{pixel_x = 3; pixel_y = 3},/obj/structure/table/reinforced,/obj/item/weapon/storage/toolbox/syndicate,/obj/item/stack/cable_coil/white,/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
+"cO" = (/obj/structure/table/reinforced,/obj/item/device/flashlight/lamp,/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
+"cP" = (/obj/structure/table/reinforced,/obj/item/device/radio/intercom{broadcasting = 0; dir = 8; freerange = 1; listening = 1; name = "Pirate Radio Listening Channel"; pixel_x = 0},/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
+"cQ" = (/obj/machinery/computer/camera_advanced,/turf/open/floor/plasteel/vault{dir = 5},/area/ruin/powered/syndicate_lava_base)
+"cR" = (/obj/structure/filingcabinet/chestdrawer,/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
+"cS" = (/obj/item/weapon/cautery,/obj/item/weapon/scalpel,/obj/structure/table/reinforced,/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
+"cT" = (/obj/structure/table/optable,/obj/item/weapon/surgical_drapes,/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
+"cU" = (/obj/item/weapon/retractor,/obj/item/weapon/hemostat,/obj/structure/table/reinforced,/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
+"cV" = (/obj/structure/sign/nosmoking_2{pixel_x = 32},/turf/open/floor/plasteel/vault{dir = 5},/area/ruin/powered/syndicate_lava_base)
+"cW" = (/obj/item/weapon/twohanded/required/kirbyplants{icon_state = "plant-22"},/obj/structure/extinguisher_cabinet{pixel_x = -26},/turf/open/floor/plasteel/vault{dir = 5},/area/ruin/powered/syndicate_lava_base)
+"cX" = (/obj/structure/table/reinforced,/obj/item/device/radio/intercom{broadcasting = 1; dir = 8; freerange = 1; listening = 0; name = "Pirate Radio Broadcast Channel"; pixel_x = 0},/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
+"cY" = (/obj/structure/sign/fire{pixel_x = -32},/turf/open/floor/engine,/area/ruin/powered/syndicate_lava_base)
+"cZ" = (/obj/structure/table/reinforced,/obj/item/device/assembly/signaler,/obj/item/device/assembly/signaler,/obj/item/device/assembly/voice,/obj/item/device/assembly/voice,/obj/item/weapon/screwdriver/nuke,/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
+"da" = (/obj/structure/table/reinforced,/obj/item/stack/sheet/plasteel{amount = 15},/obj/item/device/electropack,/obj/item/device/taperecorder,/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
+"db" = (/obj/structure/filingcabinet/security,/turf/open/floor/plasteel/vault{dir = 5},/area/ruin/powered/syndicate_lava_base)
+"dc" = (/obj/structure/table/reinforced,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
+"dd" = (/obj/machinery/computer/message_monitor,/obj/item/weapon/paper/monitorkey,/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
+"de" = (/turf/open/floor/plasteel/vault{tag = "icon-vault (NORTHEAST)"; dir = 5},/area/ruin/powered/syndicate_lava_base)
+"df" = (/obj/effect/baseturf_helper,/turf/open/floor/plasteel/vault{tag = "icon-vault (NORTHEAST)"; dir = 5},/area/ruin/powered/syndicate_lava_base)
+"dg" = (/obj/machinery/button/door{id = "lavalandsyndi"; name = "Syndicate Experimentor Lockdown Control"; pixel_x = 26; req_access_txt = "150"},/turf/open/floor/engine,/area/ruin/powered/syndicate_lava_base)
+"dh" = (/obj/machinery/button/door{id = "lavalandsyndi"; name = "Syndicate Experimentor Lockdown Control"; pixel_x = -26; req_access_txt = "150"},/turf/open/floor/plasteel/vault{dir = 5},/area/ruin/powered/syndicate_lava_base)
+"di" = (/obj/item/stack/sheet/mineral/plastitanium{amount = 30},/obj/item/stack/rods{amount = 50},/obj/structure/table/reinforced,/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
+"dj" = (/obj/structure/filingcabinet/medical,/turf/open/floor/plasteel/vault{dir = 5},/area/ruin/powered/syndicate_lava_base)
+"dk" = (/turf/open/floor/plasteel/circuit/gcircuit,/area/ruin/powered/syndicate_lava_base)
+"dl" = (/obj/machinery/door/poddoor/preopen{id = "lavalandsyndi"; name = "Syndicate Research Experimentor Shutters"},/obj/machinery/door/airlock/hatch{name = "Experimentation Room"; req_access_txt = "150"},/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
+"dm" = (/obj/item/stack/sheet/metal{amount = 50},/obj/item/weapon/grenade/chem_grenade,/obj/item/weapon/grenade/chem_grenade,/obj/item/weapon/grenade/chem_grenade,/obj/structure/table/reinforced,/obj/item/weapon/grenade/chem_grenade,/obj/item/weapon/grenade/chem_grenade/large,/obj/item/weapon/grenade/chem_grenade/large,/obj/item/weapon/grenade/chem_grenade/large,/obj/item/weapon/grenade/chem_grenade/large,/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
+"dn" = (/obj/machinery/telecomms/relay/preset/ruskie{use_power = 0},/turf/open/floor/plasteel/vault{tag = "icon-vault (NORTHEAST)"; dir = 5},/area/ruin/powered/syndicate_lava_base)
+"do" = (/obj/machinery/door/airlock/hatch{name = "Syndicate Recon Outpost"; req_access_txt = "150"},/obj/structure/fans/tiny,/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
+"dp" = (/obj/machinery/door/airlock/hatch{name = "Monkey Pen"; req_access_txt = "150"},/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
+"dq" = (/obj/structure/sign/vacuum{pixel_x = -32},/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
+"dr" = (/obj/structure/sign/xeno_warning_mining{pixel_x = 32},/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
+"ds" = (/obj/structure/bed/roller,/obj/machinery/iv_drip,/mob/living/carbon/monkey,/turf/open/floor/plasteel/vault{dir = 8},/area/ruin/powered/syndicate_lava_base)
+"dt" = (/obj/structure/sign/securearea{pixel_y = 32},/turf/open/floor/plating/lava/smooth/lava_land_surface,/area/lavaland/surface/outdoors)
(1,1,1) = {"
aaaaaaaaabaaaaabababababababababababababababababababababababababababababaaaa
@@ -195,26 +191,26 @@ ababababababababadapaPapadaQapaoaRadapaoapaoapaSadadaTadaTadadadadababababab
abababababacababadapaNapadaUaoapapaVaoapaoapaoapaTapapapapapaWaXadababababab
abababababababacadaYaNaZadbabbaobcadbdbeapaobcbfadaRapapapaRadbgadacabababab
abababababababacadapaNapadadadadadadadadbhbhadadadadadadadadadadadadadababab
-abababababababacadaYaNaZadbibjbkblbmbnadbobpadbqbrbsbtbubvbwbzbybzbAadababab
-abababababacabacadbBbCbBadbDbEbFbGbGbHbvaYaZbvbIbJapapapbvbKbybybKbyadababab
-abababababacababadbMaNbNadaRapapapapbObvaYaZbvbPapaoaoaoaoaoaoaoaoaoadababab
-abababababacabacadapapapadbQaoapbRbSbTbvaYaZbvbUapapbbbVbybKbybybXbyadababab
-abababababababacadbYapbZadbQapapcacbccadaYaZadcdcebRcfcgbyaNcibyaNciadababab
-ababababababacabadcjckadadcjclcmadbvadadcnaZadcocpadbvbvadadadadadadadababab
-ababababababababadcqapaRbvcrcscscscscscsctcucscscscscscscvcwcxapcyadabababab
-aaabababababacacadczapapckcAcBcCcDcDcDcDcEcFcDcDcDcDcDcDcGcHapapcIadabababab
-aaabababababacadadadcJadadadadadadcKcjadaYaZadadcLcjadadadadapapcyadabababab
-abababababababadcMcMcMcMcMcMcMcjaRapapadaYaZadaRapapcNbbcOadcPapcQadabababab
-abababababababadcMcMcMcMcMcMcMcJcRapapadaYaZadapaocScTcUcVadcWcXcYadabababab
-abababababababadcMcMcMcMcMcMcMcJbHapcZadaYaZaddaaodbbJapaNadadadadadabababab
-ababababababacaddccMcMcMcMcMcMcJddapdeadaYaZaddfaodgdhapaNcLdidjdiadabababab
-abababababababadcMcMcMcMcMcMdkaddlapdmadaYaZaddnapapapapbNaddododoadabababab
-ababababababacadcMcMcMcMcMcMcMdpapapdqadcAcGadadadadadadadaddodrdoadabababab
-ababababababacadcMcMcMcMcMcMcMaddaapaRaddsdsadacacacacacabadadadadadabababab
-ababababababacadadadadadadadadadbvdtbvaddudvadacacacababababababacacabababab
-ababababababacacacabababacacacaddwaNdwadaNaNadacababababacababababababababab
-ababababababababababababababacadadadadaddsdsadababacacababababababababababab
-abababababababababababababababababababdxababdxababababababababababababababab
+abababababababacadaYaNaZadbibjbkblbmbnadbobpadbqbrbsbtbubvbwbxbybxbzadababab
+abababababacabacadbAbBbAadbCbDbEbFbFbGbvaYaZbvbHbIapapapbvbJbybybJbyadababab
+abababababacababadbKaNbLadaRapapapapbMbvaYaZbvbNapaoaoaoaoaoaoaoaoaoadababab
+abababababacabacadapapapadbOaoapbPbQbRbvaYaZbvbSapapbbbTbybJbybybUbyadababab
+abababababababacadbVapbWadbOapapbXbYbZadaYaZadcacbbPcccdbyaNcebyaNceadababab
+ababababababacabadcfcgadadcfchciadbvadadcjaZadckcladbvbvadadadadadadadababab
+ababababababababadcmapaRbvcncococococococpcqcococococococrcsctapcuadabababab
+aaabababababacacadcvapapcgcwcxcyczczczczcAcBczczczczczczcCcDapapcEadabababab
+aaabababababacadadadcFadadadadadadcGcfadaYaZadadcHcfadadadadapapcuadabababab
+abababababababadcIcIcIcIcIcIcIcfaRapapadaYaZadaRapapcJbbcKadcLapcMadabababab
+abababababababadcIcIcIcIcIcIcIcFcNapapadaYaZadapaocOcPcQcRadcScTcUadabababab
+abababababababadcIcIcIcIcIcIcIcFbGapcVadaYaZadcWaocXbIapaNadadadadadabababab
+ababababababacadcYcIcIcIcIcIcIcFcZapdaadaYaZaddbaodcddapaNcHdedfdeadabababab
+abababababababadcIcIcIcIcIcIdgaddhapdiadaYaZaddjapapapapbLaddkdkdkadabababab
+ababababababacadcIcIcIcIcIcIcIdlapapdmadcwcCadadadadadadadaddkdndkadabababab
+ababababababacadcIcIcIcIcIcIcIadcWapaRaddodoadacacacacacabadadadadadabababab
+ababababababacadadadadadadadadadbvdpbvaddqdradacacacababababababacacabababab
+ababababababacacacabababacacacaddsaNdsadaNaNadacababababacababababababababab
+ababababababababababababababacadadadadaddodoadababacacababababababababababab
+abababababababababababababababababababdtababdtababababababababababababababab
abababababababababababababababababababababababababababababababababababababaa
aaababababababababababababababababababababababababababababababababababababaa
aaaaabaaababababababababababababababababababababababababababababababaaaaaaaa
diff --git a/_maps/RandomRuins/SpaceRuins/TheDerelict.dmm b/_maps/RandomRuins/SpaceRuins/TheDerelict.dmm
index 137dd2b0be9..1eec962d6a3 100644
--- a/_maps/RandomRuins/SpaceRuins/TheDerelict.dmm
+++ b/_maps/RandomRuins/SpaceRuins/TheDerelict.dmm
@@ -280,7 +280,7 @@
"ft" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plating/airless,/area/derelict/singularity_engine)
"fu" = (/obj/item/stack/cable_coil/cut,/turf/open/floor/plasteel/airless{icon_state = "damaged5"},/area/derelict/singularity_engine)
"fv" = (/obj/effect/spawner/lootdrop/crate_spawner,/turf/open/floor/plasteel/airless,/area/derelict/bridge/access)
-"fw" = (/obj/effect/mob_spawn/derelict_drone,/turf/open/floor/plasteel/airless,/area/derelict/bridge/access)
+"fw" = (/obj/item/drone_shell/dusty,/turf/open/floor/plasteel/airless,/area/derelict/bridge/access)
"fx" = (/turf/open/floor/plasteel/airless,/area/derelict/bridge/access)
"fy" = (/obj/structure/table,/obj/item/device/assembly/flash/handheld,/turf/open/floor/plasteel/airless,/area/derelict/bridge/access)
"fz" = (/obj/structure/table,/obj/machinery/light/small{dir = 1},/obj/item/weapon/electronics/airlock,/turf/open/floor/plasteel/airless,/area/derelict/bridge/access)
@@ -427,7 +427,7 @@
"ik" = (/obj/structure/chair,/turf/open/floor/plasteel/airless{icon_state = "damaged3"},/area/derelict/medical)
"il" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating/airless,/area/derelict/medical)
"im" = (/obj/item/weapon/storage/box/lights/mixed,/turf/open/floor/plating/airless,/area/derelict/singularity_engine)
-"in" = (/obj/effect/mob_spawn/derelict_drone,/turf/open/floor/plating/airless,/area/derelict/singularity_engine)
+"in" = (/obj/item/drone_shell/dusty,/turf/open/floor/plating/airless,/area/derelict/singularity_engine)
"io" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating/airless,/area/derelict/singularity_engine)
"ip" = (/obj/item/stack/cable_coil/cut{amount = 2;dir = 2;icon_state = "coil_red2"},/turf/open/floor/plasteel/airless{icon_state = "damaged2"},/area/derelict/hallway/primary)
"iq" = (/turf/open/floor/plasteel/airless{icon_state = "damaged4"},/area/ruin/unpowered/no_grav)
@@ -720,7 +720,7 @@
"nR" = (/turf/open/floor/plasteel/airless,/area/derelict/se_solar)
"nS" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plasteel/airless,/area/derelict/se_solar)
"nT" = (/obj/docking_port/stationary{dheight = 0;dir = 2;dwidth = 11;height = 22;id = "whiteship_z4";name = "KSS13: Derelict";width = 35},/turf/open/space,/area/space)
-"nU" = (/obj/machinery/power/terminal{icon_state = "term";dir = 1},/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/effect/mob_spawn/derelict_drone,/turf/open/floor/plasteel/airless,/area/derelict/se_solar)
+"nU" = (/obj/machinery/power/terminal{icon_state = "term";dir = 1},/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/item/drone_shell/dusty,/turf/open/floor/plasteel/airless,/area/derelict/se_solar)
"nV" = (/turf/open/floor/plating/airless,/area/derelict/se_solar)
"nW" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel/airless,/area/derelict/se_solar)
"nX" = (/obj/item/weapon/storage/toolbox/syndicate,/turf/open/floor/plasteel/airless,/area/derelict/se_solar)
diff --git a/_maps/RandomRuins/SpaceRuins/caravanambush.dmm b/_maps/RandomRuins/SpaceRuins/caravanambush.dmm
index 896b8528aea..d784dadd808 100644
--- a/_maps/RandomRuins/SpaceRuins/caravanambush.dmm
+++ b/_maps/RandomRuins/SpaceRuins/caravanambush.dmm
@@ -99,7 +99,7 @@
/area/ruin/powered)
"ar" = (
/obj/structure/shuttle/engine/propulsion/burst{
- dir = 4
+ dir = 8
},
/turf/open/floor/plating/airless,
/area/ruin/powered)
@@ -222,7 +222,7 @@
/area/ruin/powered)
"aN" = (
/obj/structure/shuttle/engine/propulsion/burst{
- dir = 4
+ dir = 8
},
/turf/open/floor/plating/airless,
/area/ruin/unpowered/no_grav)
@@ -626,9 +626,9 @@
/area/ruin/unpowered)
"ca" = (
/obj/structure/shuttle/engine/propulsion/burst/left{
- tag = "icon-burst_l (EAST)";
+ dir = 8;
icon_state = "burst_l";
- dir = 4
+ tag = "icon-burst_l (EAST)"
},
/turf/open/floor/plating/airless,
/area/ruin/unpowered)
@@ -712,7 +712,7 @@
/area/ruin/unpowered)
"co" = (
/obj/structure/shuttle/engine/propulsion/burst{
- dir = 4
+ dir = 8
},
/turf/open/floor/plating/airless,
/area/ruin/unpowered)
@@ -847,9 +847,9 @@
/area/ruin/unpowered)
"cF" = (
/obj/structure/shuttle/engine/propulsion/burst/right{
- tag = "icon-burst_r (EAST)";
+ dir = 8;
icon_state = "burst_r";
- dir = 4
+ tag = "icon-burst_r (EAST)"
},
/turf/open/floor/plating/airless,
/area/ruin/unpowered)
diff --git a/_maps/RandomRuins/SpaceRuins/crashedclownship.dmm b/_maps/RandomRuins/SpaceRuins/crashedclownship.dmm
index 13d2f98575c..0dd2e116108 100644
--- a/_maps/RandomRuins/SpaceRuins/crashedclownship.dmm
+++ b/_maps/RandomRuins/SpaceRuins/crashedclownship.dmm
@@ -1,46 +1,697 @@
-"a" = (/turf/open/space,/area/space)
-"b" = (/turf/closed/mineral/random,/area/ruin/unpowered/no_grav)
-"c" = (/turf/open/floor/plating/asteroid/airless,/area/ruin/unpowered/no_grav)
-"d" = (/turf/closed/wall/mineral/clown,/area/ruin/unpowered)
-"e" = (/obj/machinery/door/airlock/clown,/turf/open/floor/mineral/bananium/airless,/area/ruin/unpowered)
-"f" = (/turf/open/floor/plating/asteroid/airless,/area/ruin/unpowered)
-"g" = (/obj/effect/mob_spawn/human/clown,/turf/open/floor/mineral/bananium/airless,/area/ruin/unpowered)
-"h" = (/turf/open/floor/mineral/bananium/airless,/area/ruin/unpowered)
-"i" = (/obj/structure/closet/crate,/obj/item/weapon/ore/bananium,/obj/item/weapon/ore/bananium,/obj/item/weapon/ore/bananium,/obj/item/weapon/ore/bananium,/obj/item/weapon/ore/bananium,/turf/open/floor/mineral/bananium/airless,/area/ruin/unpowered)
-"j" = (/obj/structure/closet/crate{icon_state = "crateopen";opened = 1},/obj/item/weapon/ore/bananium,/turf/open/floor/mineral/bananium/airless,/area/ruin/unpowered)
-"k" = (/obj/structure/closet/secure_closet{name = "clown locker";req_access_txt = "46"},/obj/item/clothing/shoes/clown_shoes/banana_shoes,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/turf/open/floor/mineral/bananium/airless,/area/ruin/unpowered)
-"l" = (/obj/structure/shuttle/engine/heater{color = "#FFFF00";dir = 4;icon_state = "heater"},/obj/structure/window/reinforced{color = "#FFFF00";dir = 8},/turf/open/floor/plating/airless{color = "#FFFF00"},/area/ruin/unpowered)
-"m" = (/obj/structure/shuttle/engine/propulsion{color = "#FFFF00";dir = 8;icon_state = "propulsion_l"},/turf/open/space,/area/ruin/unpowered)
-"n" = (/turf/closed/mineral/random,/area/ruin/unpowered)
-"o" = (/obj/item/weapon/shard{icon_state = "small"},/turf/open/floor/plating/asteroid/airless,/area/ruin/unpowered)
-"p" = (/obj/item/weapon/ore/bananium,/turf/open/floor/mineral/bananium/airless,/area/ruin/unpowered)
-"q" = (/obj/item/weapon/shard{icon_state = "medium"},/obj/structure/chair{dir = 8},/turf/open/floor/plating/asteroid/airless,/area/ruin/unpowered)
-"r" = (/obj/effect/mob_spawn/human/clown{name = "Clown Pilot"},/turf/open/floor/mineral/bananium/airless,/area/ruin/unpowered)
-"s" = (/obj/item/weapon/paper{info = "The call has gone out! Our ancestral home has been rediscovered! Not a small patch of land, but a true clown nation, a true Clown Planet! We're on our way home at last!"},/turf/open/floor/mineral/bananium/airless,/area/ruin/unpowered)
-"t" = (/obj/structure/grille{color = "#FFFF00"},/obj/structure/window/reinforced{color = "#FFFF00"},/obj/structure/window/reinforced{color = "#FFFF00";dir = 4},/obj/structure/window/reinforced{color = "#FFFF00";dir = 8},/turf/open/floor/plating/airless{color = "#FFFF00"},/area/ruin/unpowered)
-"u" = (/obj/item/weapon/shard,/obj/structure/chair{dir = 8},/turf/open/floor/mineral/bananium/airless,/area/ruin/unpowered)
-"v" = (/obj/item/weapon/shard{icon_state = "medium"},/turf/open/floor/mineral/bananium/airless,/area/ruin/unpowered)
-"w" = (/obj/item/weapon/storage/bag/ore,/turf/open/floor/mineral/bananium/airless,/area/ruin/unpowered)
-"x" = (/obj/item/weapon/pickaxe,/turf/open/floor/mineral/bananium/airless,/area/ruin/unpowered)
-"y" = (/obj/structure/closet/crate,/obj/item/weapon/ore/bananium,/obj/item/weapon/ore/bananium,/obj/item/weapon/ore/bananium,/obj/item/weapon/ore/bananium,/turf/open/floor/mineral/bananium/airless,/area/ruin/unpowered)
-"z" = (/obj/item/weapon/shovel,/turf/open/floor/mineral/bananium/airless,/area/ruin/unpowered)
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/open/space,
+/area/space)
+"b" = (
+/turf/closed/mineral/random,
+/area/ruin/unpowered/no_grav)
+"c" = (
+/turf/open/floor/plating/asteroid/airless,
+/area/ruin/unpowered/no_grav)
+"d" = (
+/turf/closed/wall/mineral/clown,
+/area/ruin/unpowered)
+"e" = (
+/obj/machinery/door/airlock/clown,
+/turf/open/floor/mineral/bananium/airless,
+/area/ruin/unpowered)
+"f" = (
+/turf/open/floor/plating/asteroid/airless,
+/area/ruin/unpowered)
+"g" = (
+/obj/effect/mob_spawn/human/clown,
+/turf/open/floor/mineral/bananium/airless,
+/area/ruin/unpowered)
+"h" = (
+/turf/open/floor/mineral/bananium/airless,
+/area/ruin/unpowered)
+"i" = (
+/obj/structure/closet/crate,
+/obj/item/weapon/ore/bananium,
+/obj/item/weapon/ore/bananium,
+/obj/item/weapon/ore/bananium,
+/obj/item/weapon/ore/bananium,
+/obj/item/weapon/ore/bananium,
+/turf/open/floor/mineral/bananium/airless,
+/area/ruin/unpowered)
+"j" = (
+/obj/structure/closet/crate{
+ icon_state = "crateopen";
+ opened = 1
+ },
+/obj/item/weapon/ore/bananium,
+/turf/open/floor/mineral/bananium/airless,
+/area/ruin/unpowered)
+"k" = (
+/obj/structure/closet/secure_closet{
+ name = "clown locker";
+ req_access_txt = "46"
+ },
+/obj/item/clothing/shoes/clown_shoes/banana_shoes,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
+ },
+/turf/open/floor/mineral/bananium/airless,
+/area/ruin/unpowered)
+"l" = (
+/obj/structure/shuttle/engine/heater{
+ color = "#FFFF00";
+ dir = 4;
+ icon_state = "heater"
+ },
+/obj/structure/window/reinforced{
+ color = "#FFFF00";
+ dir = 8
+ },
+/turf/open/floor/plating/airless{
+ color = "#FFFF00"
+ },
+/area/ruin/unpowered)
+"m" = (
+/obj/structure/shuttle/engine/propulsion{
+ color = "#FFFF00";
+ dir = 4;
+ icon_state = "propulsion_l"
+ },
+/turf/open/space,
+/area/ruin/unpowered)
+"n" = (
+/turf/closed/mineral/random,
+/area/ruin/unpowered)
+"o" = (
+/obj/item/weapon/shard{
+ icon_state = "small"
+ },
+/turf/open/floor/plating/asteroid/airless,
+/area/ruin/unpowered)
+"p" = (
+/obj/item/weapon/ore/bananium,
+/turf/open/floor/mineral/bananium/airless,
+/area/ruin/unpowered)
+"q" = (
+/obj/item/weapon/shard{
+ icon_state = "medium"
+ },
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/plating/asteroid/airless,
+/area/ruin/unpowered)
+"r" = (
+/obj/effect/mob_spawn/human/clown{
+ name = "Clown Pilot"
+ },
+/turf/open/floor/mineral/bananium/airless,
+/area/ruin/unpowered)
+"s" = (
+/obj/item/weapon/paper{
+ info = "The call has gone out! Our ancestral home has been rediscovered! Not a small patch of land, but a true clown nation, a true Clown Planet! We're on our way home at last!"
+ },
+/turf/open/floor/mineral/bananium/airless,
+/area/ruin/unpowered)
+"t" = (
+/obj/structure/grille{
+ color = "#FFFF00"
+ },
+/obj/structure/window/reinforced{
+ color = "#FFFF00"
+ },
+/obj/structure/window/reinforced{
+ color = "#FFFF00";
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ color = "#FFFF00";
+ dir = 8
+ },
+/turf/open/floor/plating/airless{
+ color = "#FFFF00"
+ },
+/area/ruin/unpowered)
+"u" = (
+/obj/item/weapon/shard,
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/mineral/bananium/airless,
+/area/ruin/unpowered)
+"v" = (
+/obj/item/weapon/shard{
+ icon_state = "medium"
+ },
+/turf/open/floor/mineral/bananium/airless,
+/area/ruin/unpowered)
+"w" = (
+/obj/item/weapon/storage/bag/ore,
+/turf/open/floor/mineral/bananium/airless,
+/area/ruin/unpowered)
+"x" = (
+/obj/item/weapon/pickaxe,
+/turf/open/floor/mineral/bananium/airless,
+/area/ruin/unpowered)
+"y" = (
+/obj/structure/closet/crate,
+/obj/item/weapon/ore/bananium,
+/obj/item/weapon/ore/bananium,
+/obj/item/weapon/ore/bananium,
+/obj/item/weapon/ore/bananium,
+/turf/open/floor/mineral/bananium/airless,
+/area/ruin/unpowered)
+"z" = (
+/obj/item/weapon/shovel,
+/turf/open/floor/mineral/bananium/airless,
+/area/ruin/unpowered)
(1,1,1) = {"
-abbaaaaccccccaaaaaaaaaaaaaaa
-bbbbaabbbbbccbbbaaaaaaaaaaaa
-bbbbbbbbbbbccbbaaaaaaaaaaaaa
-abbbbbbbbbbbbbbaaaaaaaaaaaaa
-abbbbbbbbbbbbccaadddeeddddda
-aabbbbbbbbbbbbcdddfghhiijklm
-aaabbbbbbbbbbbbnnnohhhhhphlm
-aabbbbbbbbbbbbbnnqrhsphphplm
-aabbbbbbbbbbbbbthuhvhghhhplm
-aabbbbbbbbbbbbbdddwxhhyyizlm
-aabbbbbbbbbbbbbbbdddeeddddda
-abbbbbbbbbbbbbbbbbbbbbbbbaaa
-abbabbbbbccbbbbbbbbbbbaaaaaa
-aaaabbbbcccbbbbbbbbbaaaaaaaa
-aaaabbaaaaccbcbbcccaaaaaaaaa
-aaaabaaaaaacbbbbbbcaaaaaaaaa
-aaaaaaaaaaaaaabbbbcaaaaaaaaa
+a
+b
+b
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+a
+"}
+(2,1,1) = {"
+b
+b
+b
+b
+b
+a
+a
+a
+a
+a
+a
+b
+b
+a
+a
+a
+a
+"}
+(3,1,1) = {"
+b
+b
+b
+b
+b
+b
+a
+b
+b
+b
+b
+b
+b
+a
+a
+a
+a
+"}
+(4,1,1) = {"
+a
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+a
+a
+a
+a
+a
+"}
+(5,1,1) = {"
+a
+a
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+a
+"}
+(6,1,1) = {"
+a
+a
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+a
+a
+"}
+(7,1,1) = {"
+a
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+a
+a
+a
+"}
+(8,1,1) = {"
+c
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+a
+a
+a
+"}
+(9,1,1) = {"
+c
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+c
+a
+a
+a
+"}
+(10,1,1) = {"
+c
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+c
+c
+a
+a
+a
+"}
+(11,1,1) = {"
+c
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+c
+c
+c
+a
+a
+"}
+(12,1,1) = {"
+c
+c
+c
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+c
+c
+a
+"}
+(13,1,1) = {"
+c
+c
+c
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+a
+"}
+(14,1,1) = {"
+a
+b
+b
+b
+c
+b
+b
+b
+b
+b
+b
+b
+b
+b
+c
+b
+a
+"}
+(15,1,1) = {"
+a
+b
+b
+b
+c
+c
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+b
+"}
+(16,1,1) = {"
+a
+b
+a
+a
+a
+d
+n
+n
+t
+d
+b
+b
+b
+b
+b
+b
+b
+"}
+(17,1,1) = {"
+a
+a
+a
+a
+a
+d
+n
+n
+h
+d
+b
+b
+b
+b
+c
+b
+b
+"}
+(18,1,1) = {"
+a
+a
+a
+a
+d
+d
+n
+q
+u
+d
+d
+b
+b
+b
+c
+b
+b
+"}
+(19,1,1) = {"
+a
+a
+a
+a
+d
+f
+o
+r
+h
+w
+d
+b
+b
+b
+c
+c
+c
+"}
+(20,1,1) = {"
+a
+a
+a
+a
+d
+g
+h
+h
+v
+x
+d
+b
+b
+b
+a
+a
+a
+"}
+(21,1,1) = {"
+a
+a
+a
+a
+e
+h
+h
+s
+h
+h
+e
+b
+b
+a
+a
+a
+a
+"}
+(22,1,1) = {"
+a
+a
+a
+a
+e
+h
+h
+p
+g
+h
+e
+b
+b
+a
+a
+a
+a
+"}
+(23,1,1) = {"
+a
+a
+a
+a
+d
+i
+h
+h
+h
+y
+d
+b
+a
+a
+a
+a
+a
+"}
+(24,1,1) = {"
+a
+a
+a
+a
+d
+i
+h
+p
+h
+y
+d
+b
+a
+a
+a
+a
+a
+"}
+(25,1,1) = {"
+a
+a
+a
+a
+d
+j
+p
+h
+h
+i
+d
+b
+a
+a
+a
+a
+a
+"}
+(26,1,1) = {"
+a
+a
+a
+a
+d
+k
+h
+p
+p
+z
+d
+a
+a
+a
+a
+a
+a
+"}
+(27,1,1) = {"
+a
+a
+a
+a
+d
+l
+l
+l
+l
+l
+d
+a
+a
+a
+a
+a
+a
+"}
+(28,1,1) = {"
+a
+a
+a
+a
+a
+m
+m
+m
+m
+m
+a
+a
+a
+a
+a
+a
+a
"}
diff --git a/_maps/RandomRuins/SpaceRuins/crashedship.dmm b/_maps/RandomRuins/SpaceRuins/crashedship.dmm
index edfe6668cf9..a5eb8de1a33 100644
--- a/_maps/RandomRuins/SpaceRuins/crashedship.dmm
+++ b/_maps/RandomRuins/SpaceRuins/crashedship.dmm
@@ -1,439 +1,5684 @@
-"aa" = (/turf/open/space,/area/space)
-"ab" = (/obj/item/weapon/circular_saw,/obj/structure/lattice,/turf/open/space,/area/space)
-"ac" = (/turf/closed/wall/mineral/titanium,/area/awaymission/BMPship/Aft)
-"ad" = (/turf/closed/wall/mineral/titanium/interior,/area/awaymission/BMPship/Aft)
-"ae" = (/turf/closed/wall/mineral/titanium/overspace,/area/awaymission/BMPship/Aft)
-"af" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/grille,/turf/open/floor/engine,/area/awaymission/BMPship/Aft)
-"ag" = (/obj/machinery/porta_turret{dir = 8;emagged = 1;installation = /obj/item/weapon/gun/energy/lasercannon},/turf/open/floor/engine,/area/awaymission/BMPship/Aft)
-"ah" = (/turf/open/floor/engine,/area/awaymission/BMPship/Aft)
-"ai" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
-"aj" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/grille,/turf/open/floor/engine,/area/awaymission/BMPship/Aft)
-"ak" = (/obj/machinery/door/unpowered/shuttle,/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
-"al" = (/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
-"am" = (/obj/structure/lattice,/turf/open/space,/area/space)
-"an" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/grille,/turf/open/floor/engine,/area/awaymission/BMPship/Aft)
-"ao" = (/obj/machinery/light/small,/turf/open/floor/engine,/area/awaymission/BMPship/Aft)
-"ap" = (/turf/closed/wall/mineral/titanium/overspace,/area/awaymission/BMPship/Midship)
-"aq" = (/turf/closed/wall/mineral/titanium,/area/awaymission/BMPship/Midship)
-"ar" = (/obj/machinery/door/airlock/silver{locked = 1},/turf/open/floor/plating{icon_state = "panelscorched"},/area/awaymission/BMPship/Aft)
-"as" = (/obj/structure/bed/roller,/turf/open/floor/plating/airless,/area/awaymission/BMPship/Midship)
-"at" = (/turf/open/floor/plating/airless,/area/awaymission/BMPship/Midship)
-"au" = (/obj/item/weapon/restraints/handcuffs,/obj/item/weapon/restraints/handcuffs,/obj/structure/closet/crate,/turf/open/floor/plating/airless,/area/awaymission/BMPship/Midship)
-"av" = (/obj/item/weapon/scalpel,/obj/structure/closet/crate,/obj/item/weapon/tank/internals/anesthetic,/turf/open/floor/plating/airless,/area/awaymission/BMPship/Midship)
-"aw" = (/obj/item/bodybag,/turf/open/floor/plating/airless,/area/awaymission/BMPship/Midship)
-"ax" = (/obj/item/weapon/storage/box/syringes,/turf/open/floor/plating/airless,/area/awaymission/BMPship/Midship)
-"ay" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plating/airless,/area/awaymission/BMPship/Midship)
-"az" = (/obj/structure/table/optable,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plating/airless,/area/awaymission/BMPship/Midship)
-"aA" = (/obj/machinery/computer/operating,/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/open/floor/plating/airless,/area/awaymission/BMPship/Midship)
-"aB" = (/turf/open/floor/plating,/obj/effect/turf_decal/stripes/line{dir = 9},/area/awaymission/BMPship/Aft)
-"aC" = (/obj/structure/closet/crate/freezer,/obj/item/organ/appendix,/obj/item/weapon/reagent_containers/food/snacks/meat/slab,/obj/item/weapon/reagent_containers/food/snacks/meat/slab/human/mutant/golem,/turf/open/floor/plating,/obj/effect/turf_decal/stripes/line{dir = 1},/area/awaymission/BMPship/Aft)
-"aD" = (/obj/structure/closet/crate/freezer,/obj/item/organ/brain,/obj/item/weapon/reagent_containers/food/snacks/meat/slab,/obj/item/weapon/reagent_containers/food/snacks/meat/slab/human/mutant/slime,/turf/open/floor/plating,/obj/effect/turf_decal/stripes/line{dir = 1},/area/awaymission/BMPship/Aft)
-"aE" = (/obj/structure/table,/obj/item/stack/packageWrap,/turf/open/floor/plating,/obj/effect/turf_decal/stripes/line{dir = 1},/area/awaymission/BMPship/Aft)
-"aF" = (/obj/structure/table,/obj/item/weapon/storage/box,/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/obj/effect/turf_decal/stripes/line{dir = 1},/area/awaymission/BMPship/Aft)
-"aG" = (/turf/open/floor/plating,/obj/effect/turf_decal/stripes/line{dir = 1},/area/awaymission/BMPship/Aft)
-"aH" = (/turf/closed/wall/mineral/titanium/interior,/area/awaymission/BMPship/Fore)
-"aI" = (/turf/closed/wall/mineral/titanium/overspace,/area/awaymission/BMPship/Fore)
-"aJ" = (/turf/open/floor/plating/airless{icon_state = "platingdmg2"},/area/awaymission/BMPship/Midship)
-"aK" = (/turf/open/floor/plating/airless{icon_state = "platingdmg3"},/area/awaymission/BMPship/Midship)
-"aL" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating/airless,/area/awaymission/BMPship/Midship)
-"aM" = (/turf/open/floor/plating,/obj/effect/turf_decal/stripes/line{dir = 8},/area/awaymission/BMPship/Aft)
-"aN" = (/obj/item/weapon/storage/box,/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
-"aO" = (/obj/item/weapon/hand_labeler,/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
-"aP" = (/obj/structure/closet/crate/large,/turf/open/floor/plating,/obj/effect/turf_decal/stripes/line{dir = 4},/area/awaymission/BMPship/Aft)
-"aQ" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/structure/grille,/turf/open/floor/plating/airless,/area/awaymission/BMPship/Fore)
-"aR" = (/obj/structure/table/wood,/obj/item/stack/spacecash/c500,/obj/item/stack/spacecash/c100,/obj/item/weapon/reagent_containers/food/drinks/beer,/turf/open/floor/wood,/area/awaymission/BMPship/Fore)
-"aS" = (/obj/structure/bed,/obj/item/weapon/bedsheet/yellow,/turf/open/floor/wood,/area/awaymission/BMPship/Fore)
-"aT" = (/turf/closed/wall/mineral/titanium,/area/awaymission/BMPship/Fore)
-"aU" = (/turf/open/floor/plating,/obj/effect/turf_decal/stripes/line{dir = 9},/area/awaymission/BMPship/Fore)
-"aV" = (/obj/structure/rack,/turf/open/floor/plating,/obj/effect/turf_decal/stripes/line{dir = 1},/area/awaymission/BMPship/Fore)
-"aW" = (/turf/open/floor/plating,/obj/effect/turf_decal/stripes/line{dir = 1},/area/awaymission/BMPship/Fore)
-"aX" = (/turf/open/floor/plating,/obj/effect/turf_decal/stripes/line{dir = 5},/area/awaymission/BMPship/Fore)
-"aY" = (/obj/structure/sign/vacuum,/turf/closed/wall/mineral/titanium,/area/awaymission/BMPship/Fore)
-"aZ" = (/turf/open/floor/plating/airless{icon_state = "platingdmg1"},/area/awaymission/BMPship/Midship)
-"ba" = (/turf/open/floor/plating/airless{icon_state = "panelscorched"},/area/awaymission/BMPship/Midship)
-"bb" = (/obj/effect/decal/cleanable/blood/gibs/old,/obj/effect/gibspawner/human,/turf/open/floor/plating/airless,/area/awaymission/BMPship/Midship)
-"bc" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/item/clothing/glasses/regular/hipster,/turf/open/floor/plating/airless,/area/awaymission/BMPship/Midship)
-"bd" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plating/airless,/area/awaymission/BMPship/Midship)
-"be" = (/obj/machinery/door/unpowered/shuttle,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf,/area/awaymission/BMPship/Midship)
-"bf" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plating,/obj/effect/turf_decal/stripes/line{dir = 8},/area/awaymission/BMPship/Aft)
-"bg" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
-"bh" = (/obj/structure/closet/crate/freezer,/obj/item/weapon/reagent_containers/food/drinks/beer,/obj/item/weapon/reagent_containers/food/drinks/beer,/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
-"bi" = (/obj/machinery/computer/teleporter,/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
-"bj" = (/obj/machinery/teleport/station,/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
-"bk" = (/obj/machinery/teleport/hub,/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
-"bl" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/grille,/turf/open/floor/plating/airless,/area/awaymission/BMPship/Fore)
-"bm" = (/turf/open/floor/wood,/area/awaymission/BMPship/Fore)
-"bn" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/wood,/area/awaymission/BMPship/Fore)
-"bo" = (/turf/open/floor/plating,/obj/effect/turf_decal/stripes/line{dir = 8},/area/awaymission/BMPship/Fore)
-"bp" = (/turf/open/floor/plating,/area/awaymission/BMPship/Fore)
-"bq" = (/obj/machinery/door/airlock/external,/turf/open/floor/plating,/area/awaymission/BMPship/Fore)
-"br" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
-"bs" = (/obj/structure/closet/crate,/obj/item/stack/spacecash/c1000,/obj/item/stack/spacecash/c50,/turf/open/floor/plating,/obj/effect/turf_decal/stripes/line{dir = 4},/area/awaymission/BMPship/Aft)
-"bt" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/grille,/turf/open/floor/plating/airless,/area/awaymission/BMPship/Fore)
-"bu" = (/turf/open/floor/plasteel{icon_state = "wood-broken"},/area/awaymission/BMPship/Fore)
-"bv" = (/turf/open/floor/plating,/obj/effect/turf_decal/stripes/line{dir = 2},/area/awaymission/BMPship/Fore)
-"bw" = (/obj/machinery/light/small,/turf/open/floor/plating,/obj/effect/turf_decal/stripes/line{dir = 2},/area/awaymission/BMPship/Fore)
-"bx" = (/turf/open/floor/plating,/obj/effect/turf_decal/stripes/line{dir = 6},/area/awaymission/BMPship/Fore)
-"by" = (/obj/machinery/light,/obj/effect/decal/cleanable/blood/gibs/old,/turf/open/floor/plating/airless,/area/awaymission/BMPship/Midship)
-"bz" = (/obj/machinery/button/door{id = "packerMed";pixel_y = -24},/turf/open/floor/plating/airless,/area/awaymission/BMPship/Midship)
-"bA" = (/obj/machinery/sleeper{dir = 1},/turf/open/floor/plating/airless,/area/awaymission/BMPship/Midship)
-"bB" = (/obj/machinery/sleep_console,/turf/open/floor/plating/airless,/area/awaymission/BMPship/Midship)
-"bC" = (/obj/machinery/light,/turf/open/floor/plating/airless,/area/awaymission/BMPship/Midship)
-"bD" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
-"bE" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/item/weapon/hand_labeler,/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
-"bF" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
-"bG" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/item/weapon/storage/box,/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
-"bH" = (/turf/open/floor/plating,/obj/effect/turf_decal/stripes/line{dir = 4},/area/awaymission/BMPship/Aft)
-"bI" = (/obj/machinery/door/unpowered/shuttle,/turf/open/floor/plasteel{icon_state = "carpetside";dir = 1},/area/awaymission/BMPship/Fore)
-"bJ" = (/obj/machinery/door/airlock/silver,/turf/open/floor/carpet,/area/awaymission/BMPship/Fore)
-"bK" = (/obj/machinery/door/poddoor/shutters{id = "packerMed"},/turf/open/floor/plating/airless,/area/awaymission/BMPship/Midship)
-"bL" = (/obj/structure/closet/crate/large,/turf/open/floor/plating,/obj/effect/turf_decal/stripes/line{dir = 10},/area/awaymission/BMPship/Aft)
-"bM" = (/turf/open/floor/plating,/obj/effect/turf_decal/stripes/line{dir = 2},/area/awaymission/BMPship/Aft)
-"bN" = (/obj/machinery/light/small,/turf/open/floor/plating,/obj/effect/turf_decal/stripes/line{dir = 2},/area/awaymission/BMPship/Aft)
-"bO" = (/obj/structure/kitchenspike,/turf/open/floor/plating,/obj/effect/turf_decal/stripes/line{dir = 2},/area/awaymission/BMPship/Aft)
-"bP" = (/obj/structure/closet/crate,/obj/item/device/analyzer,/obj/item/stack/spacecash/c10,/turf/open/floor/plating,/obj/effect/turf_decal/stripes/line{dir = 2},/area/awaymission/BMPship/Aft)
-"bQ" = (/obj/structure/closet/crate,/obj/item/stack/spacecash/c1000,/obj/item/stack/spacecash/c200,/obj/item/stack/spacecash/c500,/turf/open/floor/plating,/obj/effect/turf_decal/stripes/line{dir = 2},/area/awaymission/BMPship/Aft)
-"bR" = (/obj/structure/closet/crate/freezer,/obj/item/weapon/reagent_containers/food/snacks/hugemushroomslice,/obj/item/organ/appendix,/obj/item/weapon/reagent_containers/food/snacks/meat/slab,/obj/item/weapon/reagent_containers/food/snacks/meat/slab/human/mutant/golem/adamantine,/turf/open/floor/plating,/obj/effect/turf_decal/stripes/line{dir = 2},/area/awaymission/BMPship/Aft)
-"bS" = (/obj/machinery/button/door{id = "packerCargo";pixel_y = -24},/obj/machinery/light/small,/turf/open/floor/plating,/obj/effect/turf_decal/stripes/line{dir = 2},/area/awaymission/BMPship/Aft)
-"bT" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/obj/effect/turf_decal/stripes/line{dir = 2},/area/awaymission/BMPship/Aft)
-"bU" = (/turf/open/floor/plating,/obj/effect/turf_decal/stripes/line{dir = 6},/area/awaymission/BMPship/Aft)
-"bV" = (/turf/open/floor/carpet,/area/awaymission/BMPship/Fore)
-"bW" = (/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/power/apc{dir = 1;environ = 0;equipment = 3;locked = 0;pixel_y = 32;req_access = ""},/turf/open/floor/carpet,/area/awaymission/BMPship/Fore)
-"bX" = (/obj/structure/table,/obj/item/weapon/screwdriver,/obj/item/weapon/screwdriver,/obj/item/weapon/paper{info = "The next person who takes one of my screwdrivers gets stabbed with one. They are MINE. - Love, Madsen";name = "scribbled note"},/obj/item/weapon/screwdriver,/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
-"bY" = (/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
-"bZ" = (/obj/machinery/hydroponics,/turf/open/floor/plasteel/green/side{dir = 8},/area/awaymission/BMPship/Midship)
-"ca" = (/obj/structure/sink{dir = 2},/turf/open/floor/plasteel/yellow/side{dir = 1},/area/awaymission/BMPship/Midship)
-"cb" = (/obj/machinery/vending/hydroseeds{slogan_delay = 700},/turf/open/floor/plasteel/yellow/side{dir = 1},/area/awaymission/BMPship/Midship)
-"cc" = (/obj/machinery/vending/hydronutrients,/turf/open/floor/plasteel/yellow/side{dir = 1},/area/awaymission/BMPship/Midship)
-"cd" = (/obj/machinery/hydroponics,/turf/open/floor/plasteel/green/side{dir = 4},/area/awaymission/BMPship/Midship)
-"ce" = (/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
-"cf" = (/obj/structure/table,/obj/item/weapon/kitchen/knife/butcher,/obj/item/weapon/reagent_containers/food/drinks/beer,/obj/item/weapon/reagent_containers/food/snacks/meat,/turf/open/floor/plasteel/barber,/area/awaymission/BMPship/Midship)
-"cg" = (/obj/structure/table,/obj/item/weapon/storage/box/donkpockets,/turf/open/floor/plasteel/barber,/area/awaymission/BMPship/Midship)
-"ch" = (/obj/structure/table,/obj/machinery/microwave,/turf/open/floor/plasteel/barber,/area/awaymission/BMPship/Midship)
-"ci" = (/obj/machinery/processor,/obj/machinery/light{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel/barber,/area/awaymission/BMPship/Midship)
-"cj" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/drinks/beer,/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
-"ck" = (/obj/structure/table,/obj/item/weapon/kitchen/knife,/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
-"cl" = (/obj/structure/table,/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
-"cm" = (/obj/structure/table,/obj/effect/decal/cleanable/cobweb/cobweb2,/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
-"cn" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/poddoor/shutters{id = "packerCargo"},/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
-"co" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/carpet,/area/awaymission/BMPship/Fore)
-"cp" = (/obj/item/weapon/reagent_containers/food/snacks/hugemushroomslice,/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
-"cq" = (/turf/open/floor/plasteel,/area/awaymission/BMPship/Midship)
-"cr" = (/obj/item/weapon/reagent_containers/food/drinks/beer,/turf/open/floor/plasteel,/area/awaymission/BMPship/Midship)
-"cs" = (/turf/open/floor/plasteel/barber,/area/awaymission/BMPship/Midship)
-"ct" = (/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel/barber,/area/awaymission/BMPship/Midship)
-"cu" = (/obj/structure/chair/stool,/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
-"cv" = (/obj/structure/kitchenspike,/turf/open/floor/plasteel/showroomfloor,/area/awaymission/BMPship/Aft)
-"cw" = (/turf/open/floor/plasteel/showroomfloor,/area/awaymission/BMPship/Aft)
-"cx" = (/obj/machinery/door/airlock/silver,/turf/open/floor/plasteel/showroomfloor,/area/awaymission/BMPship/Aft)
-"cy" = (/turf/open/floor/plasteel/white,/area/awaymission/BMPship/Aft)
-"cz" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/white,/area/awaymission/BMPship/Aft)
-"cA" = (/obj/effect/decal/cleanable/blood/gibs/old,/turf/open/floor/plasteel/white,/area/awaymission/BMPship/Aft)
-"cB" = (/obj/machinery/gibber,/turf/open/floor/plasteel/white,/area/awaymission/BMPship/Aft)
-"cC" = (/turf/open/floor/plasteel/hydrofloor,/area/awaymission/BMPship/Aft)
-"cD" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/awaymission/BMPship/Aft)
-"cE" = (/turf/open/floor/plasteel,/area/awaymission/BMPship/Aft)
-"cF" = (/turf/closed/wall/mineral/titanium/overspace,/area/space)
-"cG" = (/turf/open/floor/carpet,/turf/closed/wall/mineral/titanium/interior,/area/awaymission/BMPship/Fore)
-"cH" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/carpet,/area/awaymission/BMPship/Fore)
-"cI" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/carpet,/area/awaymission/BMPship/Fore)
-"cJ" = (/obj/item/weapon/reagent_containers/food/snacks/hugemushroomslice,/turf/open/floor/plasteel,/area/awaymission/BMPship/Midship)
-"cK" = (/obj/machinery/door/unpowered/shuttle,/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
-"cL" = (/obj/structure/window/reinforced,/turf/open/floor/plasteel/barber,/area/awaymission/BMPship/Midship)
-"cM" = (/obj/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2";pixel_y = 1;d2 = 2},/turf/open/floor/plasteel/barber,/area/awaymission/BMPship/Midship)
-"cN" = (/obj/machinery/door/window,/turf/open/floor/plasteel/barber,/area/awaymission/BMPship/Midship)
-"cO" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/open/floor/plasteel/barber,/area/awaymission/BMPship/Midship)
-"cP" = (/obj/item/weapon/reagent_containers/food/drinks/beer,/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
-"cQ" = (/obj/structure/cable{icon_state = "0-2";pixel_y = 1;d2 = 2},/turf/open/floor/plasteel/showroomfloor,/area/awaymission/BMPship/Aft)
-"cR" = (/obj/structure/closet/secure_closet/freezer/meat{opened = 1},/turf/open/floor/plasteel/white,/area/awaymission/BMPship/Aft)
-"cS" = (/obj/structure/closet/crate/freezer,/obj/item/weapon/reagent_containers/food/snacks/meat/slab,/obj/item/weapon/reagent_containers/food/snacks/meat/slab,/turf/open/floor/plasteel/white,/area/awaymission/BMPship/Aft)
-"cT" = (/obj/effect/decal/cleanable/blood/splatter,/turf/open/floor/plasteel/white,/area/awaymission/BMPship/Aft)
-"cU" = (/obj/item/weapon/crowbar,/turf/open/floor/plasteel/white,/area/awaymission/BMPship/Aft)
-"cV" = (/turf/open/floor/plasteel,/obj/effect/turf_decal/stripes/line{dir = 8},/area/awaymission/BMPship/Aft)
-"cW" = (/obj/structure/cable{icon_state = "0-2";pixel_y = 1;d2 = 2},/obj/machinery/power/apc{dir = 1;environ = 0;equipment = 3;locked = 0;pixel_y = 32;req_access = ""},/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
-"cX" = (/turf/open/floor/plasteel,/obj/effect/turf_decal/stripes/line{dir = 4},/area/awaymission/BMPship/Aft)
-"cY" = (/obj/structure/table,/obj/item/weapon/paper{info = "I'm no scientist, but judging from the design and components, it seems to be some kind of teleporter. This thing is gonna be worth a lot of cash to the right man. The boys are excited, as they have every right to be, and I've let them crack into that case of beer we got. I normally wouldn't allow such a thing, but this is a time for celebration! It's not like a couple drinks will hurt anything.";name = "Captain's log entry"},/turf/open/floor/carpet,/area/awaymission/BMPship/Fore)
-"cZ" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/drinks/beer,/turf/open/floor/carpet,/area/awaymission/BMPship/Fore)
-"da" = (/obj/structure/frame/computer{anchored = 1},/turf/open/floor/carpet,/area/awaymission/BMPship/Fore)
-"db" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/carpet,/area/awaymission/BMPship/Fore)
-"dc" = (/obj/machinery/hydroponics,/turf/open/floor/plasteel/green/side{dir = 10},/area/awaymission/BMPship/Midship)
-"dd" = (/turf/open/floor/plasteel/green/side,/area/awaymission/BMPship/Midship)
-"de" = (/obj/machinery/seed_extractor,/obj/item/seeds/plump/walkingmushroom,/turf/open/floor/plasteel/green/side,/area/awaymission/BMPship/Midship)
-"df" = (/obj/machinery/hydroponics,/turf/open/floor/plasteel/green/side{dir = 6},/area/awaymission/BMPship/Midship)
-"dg" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
-"dh" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
-"di" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
-"dj" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/showroomfloor,/area/awaymission/BMPship/Aft)
-"dk" = (/turf/closed/wall/mineral/titanium/nodiagonal,/area/awaymission/BMPship/Aft)
-"dl" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel,/area/awaymission/BMPship/Aft)
-"dm" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
-"dn" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
-"do" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
-"dp" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel,/obj/effect/turf_decal/stripes/line{dir = 4},/area/awaymission/BMPship/Aft)
-"dq" = (/obj/item/device/multitool,/turf/open/floor/engine,/area/awaymission/BMPship/Aft)
-"dr" = (/obj/structure/shuttle/engine/heater{icon_state = "heater";dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/engine/airless,/area/awaymission/BMPship/Aft)
-"ds" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion";dir = 8},/turf/open/space,/area/awaymission/BMPship/Aft)
-"dt" = (/obj/structure/table,/obj/machinery/recharger,/turf/open/floor/carpet,/area/awaymission/BMPship/Fore)
-"du" = (/obj/structure/chair/stool,/turf/open/floor/carpet,/area/awaymission/BMPship/Fore)
-"dv" = (/obj/machinery/light{icon_state = "tube1";dir = 4},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/carpet,/area/awaymission/BMPship/Fore)
-"dw" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
-"dx" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
-"dy" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
-"dz" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
-"dA" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
-"dB" = (/turf/closed/wall/r_wall,/area/awaymission/BMPship/Midship)
-"dC" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/showroomfloor,/area/awaymission/BMPship/Aft)
-"dD" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel,/obj/effect/turf_decal/stripes/line{dir = 8},/area/awaymission/BMPship/Aft)
-"dE" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel,/area/awaymission/BMPship/Aft)
-"dF" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/obj/effect/turf_decal/stripes/line{dir = 4},/area/awaymission/BMPship/Aft)
-"dG" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/grille,/turf/open/floor/plating,/area/awaymission/BMPship/Fore)
-"dH" = (/obj/item/weapon/shard,/turf/open/floor/carpet,/area/awaymission/BMPship/Fore)
-"dI" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/carpet,/area/awaymission/BMPship/Fore)
-"dJ" = (/obj/machinery/door/airlock/silver,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/carpet,/area/awaymission/BMPship/Fore)
-"dK" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
-"dL" = (/obj/machinery/shieldwallgen,/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plating,/area/awaymission/BMPship/Midship)
-"dM" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
-"dN" = (/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/power/apc{dir = 1;locked = 0;pixel_y = 28;req_access = ""},/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
-"dO" = (/turf/open/floor/plasteel/loadingarea/dirtydirty{dir = 4},/area/awaymission/BMPship/Midship)
-"dP" = (/obj/machinery/conveyor{dir = 4;id = "meatConvey1"},/turf/open/floor/plating,/area/awaymission/BMPship/Midship)
-"dQ" = (/obj/machinery/conveyor{dir = 4;id = "meatConvey1"},/obj/structure/plasticflaps,/turf/open/floor/plating,/area/awaymission/BMPship/Midship)
-"dR" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal/deliveryChute{dir = 8},/turf/open/floor/plating,/area/awaymission/BMPship/Midship)
-"dS" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall/r_wall,/area/awaymission/BMPship/Midship)
-"dT" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
-"dU" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
-"dV" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
-"dW" = (/obj/structure/window/reinforced{dir = 1},/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
-"dX" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
-"dY" = (/obj/structure/rack,/obj/item/weapon/storage/box/lights,/turf/open/floor/plasteel,/obj/effect/turf_decal/stripes/line{dir = 8},/area/awaymission/BMPship/Aft)
-"dZ" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel/hydrofloor,/area/awaymission/BMPship/Aft)
-"ea" = (/obj/machinery/power/smes/magical{desc = "A high-capacity superconducting magnetic energy storage (SMES) unit.";name = "power storage unit"},/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/cable,/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
-"eb" = (/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/power/terminal{dir = 8},/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
-"ec" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel,/obj/effect/turf_decal/stripes/line{dir = 4},/area/awaymission/BMPship/Aft)
-"ed" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/grille,/turf/open/floor/plating,/area/awaymission/BMPship/Fore)
-"ee" = (/obj/structure/table,/turf/open/floor/carpet,/area/awaymission/BMPship/Fore)
-"ef" = (/obj/structure/chair/office{dir = 8},/turf/open/floor/carpet,/area/awaymission/BMPship/Fore)
-"eg" = (/obj/item/weapon/shard{icon_state = "medium"},/turf/open/floor/carpet,/area/awaymission/BMPship/Fore)
-"eh" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/awaymission/BMPship/Midship)
-"ei" = (/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plating,/area/awaymission/BMPship/Midship)
-"ej" = (/turf/open/floor/plating,/area/awaymission/BMPship/Midship)
-"ek" = (/obj/item/weapon/reagent_containers/glass/bucket,/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
-"el" = (/obj/machinery/conveyor_switch/oneway{id = "meatConvey1"},/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
-"em" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
-"en" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
-"eo" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/showroomfloor,/area/awaymission/BMPship/Aft)
-"ep" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/showroomfloor,/area/awaymission/BMPship/Aft)
-"eq" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/disposaloutlet{dir = 4},/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
-"er" = (/obj/effect/decal/cleanable/blood/gibs/old,/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
-"es" = (/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
-"et" = (/obj/structure/rack,/obj/item/weapon/storage/belt/utility/full,/turf/open/floor/plasteel,/obj/effect/turf_decal/stripes/line{dir = 8},/area/awaymission/BMPship/Aft)
-"eu" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel,/obj/effect/turf_decal/stripes/line{dir = 4},/area/awaymission/BMPship/Aft)
-"ev" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/carpet,/area/awaymission/BMPship/Fore)
-"ew" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/carpet,/area/awaymission/BMPship/Fore)
-"ex" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/carpet,/area/awaymission/BMPship/Fore)
-"ey" = (/obj/effect/decal/cleanable/dirt,/obj/effect/gibspawner/xeno,/turf/open/floor/plating,/area/awaymission/BMPship/Midship)
-"ez" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
-"eA" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
-"eB" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
-"eC" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
-"eD" = (/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
-"eE" = (/obj/effect/gibspawner/human,/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
-"eF" = (/obj/machinery/door/window{base_state = "right";dir = 4;icon_state = "right"},/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
-"eG" = (/obj/structure/rack,/obj/item/weapon/stock_parts/cell/high,/turf/open/floor/plasteel,/obj/effect/turf_decal/stripes/line{dir = 8},/area/awaymission/BMPship/Aft)
-"eH" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/grille,/turf/open/floor/plating,/area/awaymission/BMPship/Fore)
-"eI" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/light/small{dir = 8},/turf/open/floor/plating,/area/awaymission/BMPship/Midship)
-"eJ" = (/obj/machinery/door/window{base_state = "right";dir = 4;icon_state = "right"},/turf/open/floor/plating,/area/awaymission/BMPship/Midship)
-"eK" = (/obj/machinery/light,/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
-"eL" = (/obj/effect/gibspawner/generic,/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
-"eM" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
-"eN" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel/showroomfloor,/area/awaymission/BMPship/Aft)
-"eO" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel/showroomfloor,/area/awaymission/BMPship/Aft)
-"eP" = (/obj/structure/rack,/turf/open/floor/plasteel,/obj/effect/turf_decal/stripes/line{dir = 8},/area/awaymission/BMPship/Aft)
-"eQ" = (/obj/machinery/power/smes/magical{desc = "A high-capacity superconducting magnetic energy storage (SMES) unit.";name = "power storage unit"},/obj/structure/cable,/obj/structure/cable,/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
-"eR" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel,/obj/effect/turf_decal/stripes/line{dir = 4},/area/awaymission/BMPship/Aft)
-"eS" = (/obj/effect/decal/cleanable/cobweb,/obj/machinery/power/port_gen/pacman/super,/turf/open/floor/engine,/area/awaymission/BMPship/Aft)
-"eT" = (/obj/structure/closet,/turf/open/floor/carpet,/area/awaymission/BMPship/Fore)
-"eU" = (/obj/machinery/light{icon_state = "tube1";dir = 4},/obj/structure/closet,/turf/open/floor/carpet,/area/awaymission/BMPship/Fore)
-"eV" = (/obj/item/weapon/wrench,/turf/open/floor/plating,/area/awaymission/BMPship/Midship)
-"eW" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
-"eX" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
-"eY" = (/obj/structure/mopbucket,/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
-"eZ" = (/obj/structure/window/reinforced{dir = 4},/obj/item/weapon/kitchen/knife,/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
-"fa" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/item/weapon/stock_parts/cell/high,/turf/open/floor/plasteel,/area/awaymission/BMPship/Aft)
-"fb" = (/obj/machinery/door/unpowered/shuttle,/turf/closed/wall/mineral/titanium/interior,/area/awaymission/BMPship/Aft)
-"fc" = (/obj/machinery/door/unpowered/shuttle,/turf/open/floor/carpet,/area/awaymission/BMPship/Fore)
-"fd" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/door/unpowered/shuttle,/turf/open/floor/carpet,/area/awaymission/BMPship/Fore)
-"fe" = (/obj/effect/gibspawner/xeno,/turf/open/floor/plating,/area/awaymission/BMPship/Midship)
-"ff" = (/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel{icon_state = "panelscorched"},/area/awaymission/BMPship/Midship)
-"fg" = (/obj/structure/kitchenspike,/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
-"fh" = (/turf/open/floor/plasteel/loadingarea/dirty{dir = 4},/area/awaymission/BMPship/Midship)
-"fi" = (/obj/machinery/conveyor{dir = 4;id = "meatConvey2"},/obj/item/weapon/kitchen/knife,/turf/open/floor/plating,/area/awaymission/BMPship/Midship)
-"fj" = (/obj/machinery/conveyor{dir = 4;id = "meatConvey2"},/obj/structure/plasticflaps,/turf/open/floor/plating,/area/awaymission/BMPship/Midship)
-"fk" = (/obj/machinery/conveyor{dir = 4;id = "meatConvey2"},/turf/open/floor/plating,/area/awaymission/BMPship/Midship)
-"fl" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
-"fm" = (/turf/closed/wall/mineral/titanium/interior,/area/awaymission/BMPship/Midship)
-"fn" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
-"fo" = (/obj/structure/window/reinforced,/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
-"fp" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
-"fq" = (/obj/item/stack/cable_coil,/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
-"fr" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel,/obj/effect/turf_decal/stripes/line{dir = 4},/area/awaymission/BMPship/Aft)
-"fs" = (/obj/item/stack/sheet/mineral/uranium{amount = 50},/turf/open/floor/engine,/area/awaymission/BMPship/Aft)
-"ft" = (/turf/open/floor/plating/airless{icon_state = "platingdmg1"},/area/awaymission/BMPship/Fore)
-"fu" = (/obj/structure/lattice,/turf/open/space,/area/awaymission/BMPship/Fore)
-"fv" = (/turf/open/floor/plating/airless{icon_state = "platingdmg3"},/area/awaymission/BMPship/Fore)
-"fw" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plating/airless,/area/awaymission/BMPship/Fore)
-"fx" = (/obj/item/weapon/shard{icon_state = "small"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plating/airless,/area/awaymission/BMPship/Fore)
-"fy" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plating/airless{icon_state = "panelscorched"},/area/awaymission/BMPship/Fore)
-"fz" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plating/airless{icon_state = "platingdmg3"},/area/awaymission/BMPship/Fore)
-"fA" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/item/weapon/kitchen/knife,/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
-"fB" = (/obj/machinery/conveyor_switch/oneway{id = "meatConvey2"},/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
-"fC" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel/showroomfloor,/area/awaymission/BMPship/Aft)
-"fD" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plasteel/showroomfloor,/area/awaymission/BMPship/Aft)
-"fE" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel/showroomfloor,/area/awaymission/BMPship/Aft)
-"fF" = (/obj/item/weapon/mop,/turf/open/floor/plasteel/showroomfloor,/area/awaymission/BMPship/Aft)
-"fG" = (/obj/effect/decal/cleanable/oil,/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
-"fH" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plasteel,/obj/effect/turf_decal/stripes/line{dir = 4},/area/awaymission/BMPship/Aft)
-"fI" = (/turf/open/floor/plating/airless{icon_state = "platingdmg2"},/area/awaymission/BMPship/Fore)
-"fJ" = (/obj/item/weapon/shard,/turf/open/floor/plating/airless{icon_state = "platingdmg1"},/area/awaymission/BMPship/Fore)
-"fK" = (/obj/structure/chair/stool,/turf/open/floor/plating/airless{icon_state = "platingdmg3"},/area/awaymission/BMPship/Fore)
-"fL" = (/obj/item/stack/cable_coil{amount = 5},/turf/open/floor/plating/airless,/area/awaymission/BMPship/Fore)
-"fM" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plating/airless,/area/awaymission/BMPship/Fore)
-"fN" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
-"fO" = (/obj/structure/closet/crate/freezer,/obj/item/weapon/reagent_containers/food/snacks/meat,/turf/open/floor/plasteel/showroomfloor,/area/awaymission/BMPship/Aft)
-"fP" = (/obj/item/weapon/reagent_containers/glass/bucket,/turf/open/floor/plasteel/showroomfloor,/area/awaymission/BMPship/Aft)
-"fQ" = (/obj/structure/reagent_dispensers,/turf/open/floor/plasteel/showroomfloor,/area/awaymission/BMPship/Aft)
-"fR" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
-"fS" = (/turf/open/floor/plating/asteroid/airless,/area/awaymission/BMPship)
-"fT" = (/obj/structure/frame/computer{anchored = 1},/turf/open/floor/plating/airless{icon_state = "panelscorched"},/area/awaymission/BMPship/Fore)
-"fU" = (/obj/structure/frame/computer{anchored = 1},/turf/open/floor/plating/airless{icon_state = "platingdmg1"},/area/awaymission/BMPship/Fore)
-"fV" = (/obj/machinery/light/small,/turf/open/floor/plasteel/bar,/area/awaymission/BMPship/Midship)
-"fW" = (/turf/open/floor/plasteel{icon_state = "platingdmg3"},/area/awaymission/BMPship/Midship)
-"fX" = (/turf/open/floor/plasteel{icon_state = "platingdmg1"},/area/awaymission/BMPship/Midship)
-"fY" = (/obj/machinery/door/airlock/silver{locked = 1},/turf/open/floor/plasteel,/area/awaymission/BMPship/Aft)
-"fZ" = (/obj/machinery/door/airlock/silver{locked = 1},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/awaymission/BMPship/Aft)
-"ga" = (/obj/machinery/door/unpowered/shuttle,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel,/area/awaymission/BMPship/Aft)
-"gb" = (/turf/closed/mineral/random,/area/awaymission/BMPship)
-"gc" = (/obj/item/device/multitool,/turf/open/floor/plating/airless{icon_state = "platingdmg2"},/area/awaymission/BMPship)
-"gd" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/airlock/silver,/turf/open/floor/plating/airless,/area/awaymission/BMPship/Fore)
-"ge" = (/turf/closed/mineral/random,/area/awaymission/BMPship/Midship)
-"gf" = (/obj/machinery/light{dir = 1},/turf/open/floor/plasteel,/area/awaymission/BMPship/Aft)
-"gg" = (/obj/structure/chair/stool,/turf/open/floor/plasteel,/area/awaymission/BMPship/Aft)
-"gh" = (/obj/structure/table,/obj/item/weapon/paper{info = "DEAR DAIRY: So we was doing our typpical route when the captain says we've been picking up weird signals on some backwatter planet. Madsen wanted to stay on course but he ain't the captain, so we went out of the way to check it out. There was lots of rocks on the way, but we got to the planet fine. Found a big fancy camp with nobody around and this big metal donut thing with NT stamps all over it right in the middle. Case of beer too. Captain reckons we can pass it off to some buyer in the Syndicate. Ingram says it's bad luck and that someone is going to come look for it but it sounds like better money than selling bad meat to jerky companies.";name = "Old Diary"},/turf/open/floor/plasteel,/area/awaymission/BMPship/Aft)
-"gi" = (/obj/structure/table,/obj/item/weapon/pen/red,/obj/item/weapon/reagent_containers/food/drinks/beer,/turf/open/floor/plasteel,/area/awaymission/BMPship/Aft)
-"gj" = (/obj/structure/closet,/obj/item/clothing/under/overalls,/turf/open/floor/plasteel,/area/awaymission/BMPship/Aft)
-"gk" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/structure/grille,/turf/open/floor/plating/airless,/area/awaymission/BMPship/Fore)
-"gl" = (/obj/machinery/porta_turret{dir = 8;emagged = 1;installation = /obj/item/weapon/gun/energy/lasercannon},/turf/open/floor/engine,/area/awaymission/BMPship/Fore)
-"gm" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/engine,/area/awaymission/BMPship/Fore)
-"gn" = (/obj/structure/cable,/turf/open/floor/plating/airless{icon_state = "platingdmg3"},/area/awaymission/BMPship/Fore)
-"go" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plating/airless,/area/awaymission/BMPship/Fore)
-"gp" = (/turf/open/floor/plating/asteroid/airless,/area/awaymission/BMPship/Fore)
-"gq" = (/obj/structure/rack,/turf/open/floor/plating/airless,/area/awaymission/BMPship/Fore)
-"gr" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plating/asteroid/airless,/area/awaymission/BMPship/Fore)
-"gs" = (/turf/open/floor/plating/asteroid/airless,/area/awaymission/BMPship/Midship)
-"gt" = (/turf/open/floor/plating/airless{broken = 1;icon_state = "platingdmg1"},/area/awaymission/BMPship/Midship)
-"gu" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plating/airless,/area/awaymission/BMPship/Midship)
-"gv" = (/obj/item/wallframe/apc,/turf/open/floor/plating/airless,/area/awaymission/BMPship/Midship)
-"gw" = (/obj/structure/ore_box,/obj/machinery/light/small{dir = 1},/turf/open/floor/plating/airless,/area/awaymission/BMPship/Midship)
-"gx" = (/obj/item/stack/cable_coil{amount = 5},/turf/open/floor/plating/airless,/area/awaymission/BMPship/Midship)
-"gy" = (/obj/structure/ore_box,/turf/open/floor/plating/airless,/area/awaymission/BMPship/Midship)
-"gz" = (/obj/machinery/computer/arcade,/turf/open/floor/plasteel,/area/awaymission/BMPship/Aft)
-"gA" = (/obj/effect/decal/remains/human,/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/awaymission/BMPship/Aft)
-"gB" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plasteel,/area/awaymission/BMPship/Aft)
-"gC" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel,/area/awaymission/BMPship/Aft)
-"gD" = (/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/item/wallframe/apc,/turf/open/floor/plasteel,/area/awaymission/BMPship/Aft)
-"gE" = (/obj/effect/decal/remains/human,/obj/item/clothing/head/helmet/space/syndicate/green/dark,/obj/effect/gibspawner/generic,/turf/open/floor/plating/asteroid/airless,/area/awaymission/BMPship)
-"gF" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/grille,/obj/item/weapon/shard{icon_state = "small"},/turf/open/floor/plating/airless,/area/awaymission/BMPship/Fore)
-"gG" = (/turf/open/floor/engine,/area/awaymission/BMPship/Fore)
-"gH" = (/obj/machinery/door/unpowered/shuttle,/turf,/area/awaymission/BMPship/Fore)
-"gI" = (/turf/open/floor/plating/airless,/area/awaymission/BMPship/Fore)
-"gJ" = (/obj/effect/gibspawner/robot,/turf/open/floor/plasteel/airless{icon_state = "floorscorched2"},/area/awaymission/BMPship/Fore)
-"gK" = (/turf/closed/mineral/random,/area/awaymission/BMPship/Fore)
-"gL" = (/turf/open/floor/plating/airless{broken = 1;icon_state = "platingdmg2"},/area/awaymission/BMPship/Midship)
-"gM" = (/obj/structure/mecha_wreckage/ripley,/turf/open/floor/plating/airless,/area/awaymission/BMPship/Midship)
-"gN" = (/obj/structure/bed,/turf/open/floor/plasteel,/area/awaymission/BMPship/Aft)
-"gO" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/item/weapon/storage/wallet/random,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/awaymission/BMPship/Aft)
-"gP" = (/obj/structure/closet,/obj/item/clothing/under/lawyer/bluesuit,/obj/item/clothing/suit/apron,/turf/open/floor/plasteel,/area/awaymission/BMPship/Aft)
-"gQ" = (/obj/item/clothing/suit/space/syndicate/green/dark,/turf/open/floor/plating/asteroid/airless,/area/awaymission/BMPship)
-"gR" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/grille,/turf/open/floor/plating/airless,/area/awaymission/BMPship/Fore)
-"gS" = (/turf/closed/wall/mineral/titanium,/area/awaymission/BMPship)
-"gT" = (/obj/effect/gibspawner/robot,/turf/open/floor/plating/airless,/area/awaymission/BMPship/Midship)
-"gU" = (/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plating/airless,/area/awaymission/BMPship/Midship)
-"gV" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plating/airless,/area/awaymission/BMPship/Midship)
-"gW" = (/obj/machinery/door/unpowered/shuttle,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/closed/wall/mineral/titanium/interior,/area/awaymission/BMPship/Midship)
-"gX" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plasteel,/area/awaymission/BMPship/Aft)
-"gY" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel,/area/awaymission/BMPship/Aft)
-"gZ" = (/obj/item/weapon/shard{icon_state = "medium"},/turf/open/space,/area/space)
-"ha" = (/turf/open/floor/plating/airless{broken = 1;icon_state = "panelscorched"},/area/awaymission/BMPship/Midship)
-"hb" = (/obj/effect/decal/remains/human,/turf/open/floor/plasteel,/area/awaymission/BMPship/Aft)
-"hc" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/turf/open/floor/plasteel,/area/awaymission/BMPship/Aft)
-"hd" = (/obj/machinery/door/unpowered/shuttle,/turf/open/floor/plasteel/cafeteria{dir = 2},/area/awaymission/BMPship/Aft)
-"he" = (/obj/structure/mirror{pixel_y = 28},/turf/open/floor/plasteel/cafeteria{dir = 2},/area/awaymission/BMPship/Aft)
-"hf" = (/obj/structure/toilet{dir = 8},/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/cafeteria{dir = 2},/area/awaymission/BMPship/Aft)
-"hg" = (/turf/open/floor/plating/airless{broken = 1;icon_state = "platingdmg3"},/area/awaymission/BMPship/Midship)
-"hh" = (/obj/item/weapon/caution,/turf/open/floor/plating/airless,/area/awaymission/BMPship/Midship)
-"hi" = (/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plating/airless,/area/awaymission/BMPship/Midship)
-"hj" = (/obj/structure/closet/crate,/obj/item/stack/spacecash/c10,/obj/item/stack/spacecash/c200,/turf/open/floor/plasteel,/area/awaymission/BMPship/Aft)
-"hk" = (/obj/structure/closet/crate,/obj/item/stack/spacecash/c10,/turf/open/floor/plasteel,/area/awaymission/BMPship/Aft)
-"hl" = (/obj/structure/sink{dir = 2},/turf/open/floor/plasteel/cafeteria{dir = 2},/area/awaymission/BMPship/Aft)
-"hm" = (/turf/open/floor/plasteel/cafeteria{dir = 2},/turf/closed/wall/mineral/titanium/interior,/area/awaymission/BMPship/Aft)
-"hn" = (/obj/item/clothing/gloves/color/fyellow,/turf/open/floor/plating/asteroid/airless,/area/awaymission/BMPship)
-"ho" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/structure/grille,/turf/open/floor/engine,/area/awaymission/BMPship/Aft)
-"hp" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/engine,/area/awaymission/BMPship/Aft)
-"hq" = (/obj/item/weapon/storage/box/matches,/obj/item/weapon/storage/fancy/cigarettes/dromedaryco,/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
-"hr" = (/obj/item/weapon/poster/contraband,/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
-"hs" = (/obj/item/weapon/reagent_containers/food/drinks/beer,/turf/open/floor/plating,/area/awaymission/BMPship/Aft)
-"ht" = (/turf/open/floor/plating,/turf/closed/wall/mineral/titanium/interior,/area/awaymission/BMPship/Aft)
-"hu" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/grille,/turf/open/floor/engine,/area/awaymission/BMPship/Aft)
-"hv" = (/turf/closed/mineral/diamond,/area/awaymission/BMPship)
-"hw" = (/turf/closed/mineral/clown,/area/awaymission/BMPship)
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"aa" = (
+/turf/open/space,
+/area/space)
+"ab" = (
+/obj/item/weapon/circular_saw,
+/obj/structure/lattice,
+/turf/open/space,
+/area/space)
+"ac" = (
+/turf/closed/wall/mineral/titanium,
+/area/awaymission/BMPship/Aft)
+"ad" = (
+/turf/closed/wall/mineral/titanium/interior,
+/area/awaymission/BMPship/Aft)
+"ae" = (
+/turf/closed/wall/mineral/titanium/overspace,
+/area/awaymission/BMPship/Aft)
+"af" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/grille,
+/turf/open/floor/engine,
+/area/awaymission/BMPship/Aft)
+"ag" = (
+/obj/machinery/porta_turret{
+ dir = 8;
+ emagged = 1;
+ installation = /obj/item/weapon/gun/energy/lasercannon
+ },
+/turf/open/floor/engine,
+/area/awaymission/BMPship/Aft)
+"ah" = (
+/turf/open/floor/engine,
+/area/awaymission/BMPship/Aft)
+"ai" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Aft)
+"aj" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/grille,
+/turf/open/floor/engine,
+/area/awaymission/BMPship/Aft)
+"ak" = (
+/obj/machinery/door/unpowered/shuttle,
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Aft)
+"al" = (
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Aft)
+"am" = (
+/obj/structure/lattice,
+/turf/open/space,
+/area/space)
+"an" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/grille,
+/turf/open/floor/engine,
+/area/awaymission/BMPship/Aft)
+"ao" = (
+/obj/machinery/light/small,
+/turf/open/floor/engine,
+/area/awaymission/BMPship/Aft)
+"ap" = (
+/turf/closed/wall/mineral/titanium/overspace,
+/area/awaymission/BMPship/Midship)
+"aq" = (
+/turf/closed/wall/mineral/titanium,
+/area/awaymission/BMPship/Midship)
+"ar" = (
+/obj/machinery/door/airlock/silver{
+ locked = 1
+ },
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/awaymission/BMPship/Aft)
+"as" = (
+/obj/structure/bed/roller,
+/turf/open/floor/plating/airless,
+/area/awaymission/BMPship/Midship)
+"at" = (
+/turf/open/floor/plating/airless,
+/area/awaymission/BMPship/Midship)
+"au" = (
+/obj/item/weapon/restraints/handcuffs,
+/obj/item/weapon/restraints/handcuffs,
+/obj/structure/closet/crate,
+/turf/open/floor/plating/airless,
+/area/awaymission/BMPship/Midship)
+"av" = (
+/obj/item/weapon/scalpel,
+/obj/structure/closet/crate,
+/obj/item/weapon/tank/internals/anesthetic,
+/turf/open/floor/plating/airless,
+/area/awaymission/BMPship/Midship)
+"aw" = (
+/obj/item/bodybag,
+/turf/open/floor/plating/airless,
+/area/awaymission/BMPship/Midship)
+"ax" = (
+/obj/item/weapon/storage/box/syringes,
+/turf/open/floor/plating/airless,
+/area/awaymission/BMPship/Midship)
+"ay" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plating/airless,
+/area/awaymission/BMPship/Midship)
+"az" = (
+/obj/structure/table/optable,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf/open/floor/plating/airless,
+/area/awaymission/BMPship/Midship)
+"aA" = (
+/obj/machinery/computer/operating,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating/airless,
+/area/awaymission/BMPship/Midship)
+"aB" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Aft)
+"aC" = (
+/obj/structure/closet/crate/freezer,
+/obj/item/organ/appendix,
+/obj/item/weapon/reagent_containers/food/snacks/meat/slab,
+/obj/item/weapon/reagent_containers/food/snacks/meat/slab/human/mutant/golem,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Aft)
+"aD" = (
+/obj/structure/closet/crate/freezer,
+/obj/item/organ/brain,
+/obj/item/weapon/reagent_containers/food/snacks/meat/slab,
+/obj/item/weapon/reagent_containers/food/snacks/meat/slab/human/mutant/slime,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Aft)
+"aE" = (
+/obj/structure/table,
+/obj/item/stack/packageWrap,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Aft)
+"aF" = (
+/obj/structure/table,
+/obj/item/weapon/storage/box,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Aft)
+"aG" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Aft)
+"aH" = (
+/turf/closed/wall/mineral/titanium/interior,
+/area/awaymission/BMPship/Fore)
+"aI" = (
+/turf/closed/wall/mineral/titanium/overspace,
+/area/awaymission/BMPship/Fore)
+"aJ" = (
+/turf/open/floor/plating/airless{
+ icon_state = "platingdmg2"
+ },
+/area/awaymission/BMPship/Midship)
+"aK" = (
+/turf/open/floor/plating/airless{
+ icon_state = "platingdmg3"
+ },
+/area/awaymission/BMPship/Midship)
+"aL" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating/airless,
+/area/awaymission/BMPship/Midship)
+"aM" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Aft)
+"aN" = (
+/obj/item/weapon/storage/box,
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Aft)
+"aO" = (
+/obj/item/weapon/hand_labeler,
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Aft)
+"aP" = (
+/obj/structure/closet/crate/large,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Aft)
+"aQ" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/grille,
+/turf/open/floor/plating/airless,
+/area/awaymission/BMPship/Fore)
+"aR" = (
+/obj/structure/table/wood,
+/obj/item/stack/spacecash/c500,
+/obj/item/stack/spacecash/c100,
+/obj/item/weapon/reagent_containers/food/drinks/beer,
+/turf/open/floor/wood,
+/area/awaymission/BMPship/Fore)
+"aS" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet/yellow,
+/turf/open/floor/wood,
+/area/awaymission/BMPship/Fore)
+"aT" = (
+/turf/closed/wall/mineral/titanium,
+/area/awaymission/BMPship/Fore)
+"aU" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Fore)
+"aV" = (
+/obj/structure/rack,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Fore)
+"aW" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Fore)
+"aX" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Fore)
+"aY" = (
+/obj/structure/sign/vacuum,
+/turf/closed/wall/mineral/titanium,
+/area/awaymission/BMPship/Fore)
+"aZ" = (
+/turf/open/floor/plating/airless{
+ icon_state = "platingdmg1"
+ },
+/area/awaymission/BMPship/Midship)
+"ba" = (
+/turf/open/floor/plating/airless{
+ icon_state = "panelscorched"
+ },
+/area/awaymission/BMPship/Midship)
+"bb" = (
+/obj/effect/decal/cleanable/blood/gibs/old,
+/obj/effect/gibspawner/human,
+/turf/open/floor/plating/airless,
+/area/awaymission/BMPship/Midship)
+"bc" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/item/clothing/glasses/regular/hipster,
+/turf/open/floor/plating/airless,
+/area/awaymission/BMPship/Midship)
+"bd" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf/open/floor/plating/airless,
+/area/awaymission/BMPship/Midship)
+"be" = (
+/obj/machinery/door/unpowered/shuttle,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf,
+/area/awaymission/BMPship/Midship)
+"bf" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Aft)
+"bg" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Aft)
+"bh" = (
+/obj/structure/closet/crate/freezer,
+/obj/item/weapon/reagent_containers/food/drinks/beer,
+/obj/item/weapon/reagent_containers/food/drinks/beer,
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Aft)
+"bi" = (
+/obj/machinery/computer/teleporter,
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Aft)
+"bj" = (
+/obj/machinery/teleport/station,
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Aft)
+"bk" = (
+/obj/machinery/teleport/hub,
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Aft)
+"bl" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/grille,
+/turf/open/floor/plating/airless,
+/area/awaymission/BMPship/Fore)
+"bm" = (
+/turf/open/floor/wood,
+/area/awaymission/BMPship/Fore)
+"bn" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/awaymission/BMPship/Fore)
+"bo" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Fore)
+"bp" = (
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Fore)
+"bq" = (
+/obj/machinery/door/airlock/external,
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Fore)
+"br" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Aft)
+"bs" = (
+/obj/structure/closet/crate,
+/obj/item/stack/spacecash/c1000,
+/obj/item/stack/spacecash/c50,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Aft)
+"bt" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/grille,
+/turf/open/floor/plating/airless,
+/area/awaymission/BMPship/Fore)
+"bu" = (
+/turf/open/floor/plasteel{
+ icon_state = "wood-broken"
+ },
+/area/awaymission/BMPship/Fore)
+"bv" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Fore)
+"bw" = (
+/obj/machinery/light/small,
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Fore)
+"bx" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Fore)
+"by" = (
+/obj/machinery/light,
+/obj/effect/decal/cleanable/blood/gibs/old,
+/turf/open/floor/plating/airless,
+/area/awaymission/BMPship/Midship)
+"bz" = (
+/obj/machinery/button/door{
+ id = "packerMed";
+ pixel_y = -24
+ },
+/turf/open/floor/plating/airless,
+/area/awaymission/BMPship/Midship)
+"bA" = (
+/obj/machinery/sleeper{
+ dir = 1
+ },
+/turf/open/floor/plating/airless,
+/area/awaymission/BMPship/Midship)
+"bB" = (
+/obj/machinery/sleep_console,
+/turf/open/floor/plating/airless,
+/area/awaymission/BMPship/Midship)
+"bC" = (
+/obj/machinery/light,
+/turf/open/floor/plating/airless,
+/area/awaymission/BMPship/Midship)
+"bD" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Aft)
+"bE" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/item/weapon/hand_labeler,
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Aft)
+"bF" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Aft)
+"bG" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/item/weapon/storage/box,
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Aft)
+"bH" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Aft)
+"bI" = (
+/obj/machinery/door/unpowered/shuttle,
+/turf/open/floor/plasteel{
+ icon_state = "carpetside";
+ dir = 1
+ },
+/area/awaymission/BMPship/Fore)
+"bJ" = (
+/obj/machinery/door/airlock/silver,
+/turf/open/floor/carpet,
+/area/awaymission/BMPship/Fore)
+"bK" = (
+/obj/machinery/door/poddoor/shutters{
+ id = "packerMed"
+ },
+/turf/open/floor/plating/airless,
+/area/awaymission/BMPship/Midship)
+"bL" = (
+/obj/structure/closet/crate/large,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Aft)
+"bM" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Aft)
+"bN" = (
+/obj/machinery/light/small,
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Aft)
+"bO" = (
+/obj/structure/kitchenspike,
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Aft)
+"bP" = (
+/obj/structure/closet/crate,
+/obj/item/device/analyzer,
+/obj/item/stack/spacecash/c10,
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Aft)
+"bQ" = (
+/obj/structure/closet/crate,
+/obj/item/stack/spacecash/c1000,
+/obj/item/stack/spacecash/c200,
+/obj/item/stack/spacecash/c500,
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Aft)
+"bR" = (
+/obj/structure/closet/crate/freezer,
+/obj/item/weapon/reagent_containers/food/snacks/hugemushroomslice,
+/obj/item/organ/appendix,
+/obj/item/weapon/reagent_containers/food/snacks/meat/slab,
+/obj/item/weapon/reagent_containers/food/snacks/meat/slab/human/mutant/golem/adamantine,
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Aft)
+"bS" = (
+/obj/machinery/button/door{
+ id = "packerCargo";
+ pixel_y = -24
+ },
+/obj/machinery/light/small,
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Aft)
+"bT" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Aft)
+"bU" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Aft)
+"bV" = (
+/turf/open/floor/carpet,
+/area/awaymission/BMPship/Fore)
+"bW" = (
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ environ = 0;
+ equipment = 3;
+ locked = 0;
+ pixel_y = 32;
+ req_access = ""
+ },
+/turf/open/floor/carpet,
+/area/awaymission/BMPship/Fore)
+"bX" = (
+/obj/structure/table,
+/obj/item/weapon/screwdriver,
+/obj/item/weapon/screwdriver,
+/obj/item/weapon/paper{
+ info = "The next person who takes one of my screwdrivers gets stabbed with one. They are MINE. - Love, Madsen";
+ name = "scribbled note"
+ },
+/obj/item/weapon/screwdriver,
+/turf/open/floor/plasteel/bar,
+/area/awaymission/BMPship/Midship)
+"bY" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/bar,
+/area/awaymission/BMPship/Midship)
+"bZ" = (
+/obj/machinery/hydroponics,
+/turf/open/floor/plasteel/green/side{
+ dir = 8
+ },
+/area/awaymission/BMPship/Midship)
+"ca" = (
+/obj/structure/sink{
+ dir = 2
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 1
+ },
+/area/awaymission/BMPship/Midship)
+"cb" = (
+/obj/machinery/vending/hydroseeds{
+ slogan_delay = 700
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 1
+ },
+/area/awaymission/BMPship/Midship)
+"cc" = (
+/obj/machinery/vending/hydronutrients,
+/turf/open/floor/plasteel/yellow/side{
+ dir = 1
+ },
+/area/awaymission/BMPship/Midship)
+"cd" = (
+/obj/machinery/hydroponics,
+/turf/open/floor/plasteel/green/side{
+ dir = 4
+ },
+/area/awaymission/BMPship/Midship)
+"ce" = (
+/turf/open/floor/plasteel/bar,
+/area/awaymission/BMPship/Midship)
+"cf" = (
+/obj/structure/table,
+/obj/item/weapon/kitchen/knife/butcher,
+/obj/item/weapon/reagent_containers/food/drinks/beer,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/turf/open/floor/plasteel/barber,
+/area/awaymission/BMPship/Midship)
+"cg" = (
+/obj/structure/table,
+/obj/item/weapon/storage/box/donkpockets,
+/turf/open/floor/plasteel/barber,
+/area/awaymission/BMPship/Midship)
+"ch" = (
+/obj/structure/table,
+/obj/machinery/microwave,
+/turf/open/floor/plasteel/barber,
+/area/awaymission/BMPship/Midship)
+"ci" = (
+/obj/machinery/processor,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/floor/plasteel/barber,
+/area/awaymission/BMPship/Midship)
+"cj" = (
+/obj/structure/table,
+/obj/item/weapon/reagent_containers/food/drinks/beer,
+/turf/open/floor/plasteel/bar,
+/area/awaymission/BMPship/Midship)
+"ck" = (
+/obj/structure/table,
+/obj/item/weapon/kitchen/knife,
+/turf/open/floor/plasteel/bar,
+/area/awaymission/BMPship/Midship)
+"cl" = (
+/obj/structure/table,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plasteel/bar,
+/area/awaymission/BMPship/Midship)
+"cm" = (
+/obj/structure/table,
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/turf/open/floor/plasteel/bar,
+/area/awaymission/BMPship/Midship)
+"cn" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/poddoor/shutters{
+ id = "packerCargo"
+ },
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Aft)
+"co" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/turf/open/floor/carpet,
+/area/awaymission/BMPship/Fore)
+"cp" = (
+/obj/item/weapon/reagent_containers/food/snacks/hugemushroomslice,
+/turf/open/floor/plasteel/bar,
+/area/awaymission/BMPship/Midship)
+"cq" = (
+/turf/open/floor/plasteel,
+/area/awaymission/BMPship/Midship)
+"cr" = (
+/obj/item/weapon/reagent_containers/food/drinks/beer,
+/turf/open/floor/plasteel,
+/area/awaymission/BMPship/Midship)
+"cs" = (
+/turf/open/floor/plasteel/barber,
+/area/awaymission/BMPship/Midship)
+"ct" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/floor/plasteel/barber,
+/area/awaymission/BMPship/Midship)
+"cu" = (
+/obj/structure/chair/stool,
+/turf/open/floor/plasteel/bar,
+/area/awaymission/BMPship/Midship)
+"cv" = (
+/obj/structure/kitchenspike,
+/turf/open/floor/plasteel/showroomfloor,
+/area/awaymission/BMPship/Aft)
+"cw" = (
+/turf/open/floor/plasteel/showroomfloor,
+/area/awaymission/BMPship/Aft)
+"cx" = (
+/obj/machinery/door/airlock/silver,
+/turf/open/floor/plasteel/showroomfloor,
+/area/awaymission/BMPship/Aft)
+"cy" = (
+/turf/open/floor/plasteel/white,
+/area/awaymission/BMPship/Aft)
+"cz" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/awaymission/BMPship/Aft)
+"cA" = (
+/obj/effect/decal/cleanable/blood/gibs/old,
+/turf/open/floor/plasteel/white,
+/area/awaymission/BMPship/Aft)
+"cB" = (
+/obj/machinery/gibber,
+/turf/open/floor/plasteel/white,
+/area/awaymission/BMPship/Aft)
+"cC" = (
+/turf/open/floor/plasteel/hydrofloor,
+/area/awaymission/BMPship/Aft)
+"cD" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/awaymission/BMPship/Aft)
+"cE" = (
+/turf/open/floor/plasteel,
+/area/awaymission/BMPship/Aft)
+"cF" = (
+/turf/closed/wall/mineral/titanium/overspace,
+/area/space)
+"cG" = (
+/turf/open/floor/carpet,
+/turf/closed/wall/mineral/titanium/interior,
+/area/awaymission/BMPship/Fore)
+"cH" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/carpet,
+/area/awaymission/BMPship/Fore)
+"cI" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/carpet,
+/area/awaymission/BMPship/Fore)
+"cJ" = (
+/obj/item/weapon/reagent_containers/food/snacks/hugemushroomslice,
+/turf/open/floor/plasteel,
+/area/awaymission/BMPship/Midship)
+"cK" = (
+/obj/machinery/door/unpowered/shuttle,
+/turf/open/floor/plasteel/bar,
+/area/awaymission/BMPship/Midship)
+"cL" = (
+/obj/structure/window/reinforced,
+/turf/open/floor/plasteel/barber,
+/area/awaymission/BMPship/Midship)
+"cM" = (
+/obj/structure/window/reinforced,
+/obj/structure/cable{
+ icon_state = "0-2";
+ pixel_y = 1;
+ d2 = 2
+ },
+/turf/open/floor/plasteel/barber,
+/area/awaymission/BMPship/Midship)
+"cN" = (
+/obj/machinery/door/window,
+/turf/open/floor/plasteel/barber,
+/area/awaymission/BMPship/Midship)
+"cO" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/turf/open/floor/plasteel/barber,
+/area/awaymission/BMPship/Midship)
+"cP" = (
+/obj/item/weapon/reagent_containers/food/drinks/beer,
+/turf/open/floor/plasteel/bar,
+/area/awaymission/BMPship/Midship)
+"cQ" = (
+/obj/structure/cable{
+ icon_state = "0-2";
+ pixel_y = 1;
+ d2 = 2
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/awaymission/BMPship/Aft)
+"cR" = (
+/obj/structure/closet/secure_closet/freezer/meat{
+ opened = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/awaymission/BMPship/Aft)
+"cS" = (
+/obj/structure/closet/crate/freezer,
+/obj/item/weapon/reagent_containers/food/snacks/meat/slab,
+/obj/item/weapon/reagent_containers/food/snacks/meat/slab,
+/turf/open/floor/plasteel/white,
+/area/awaymission/BMPship/Aft)
+"cT" = (
+/obj/effect/decal/cleanable/blood/splatter,
+/turf/open/floor/plasteel/white,
+/area/awaymission/BMPship/Aft)
+"cU" = (
+/obj/item/weapon/crowbar,
+/turf/open/floor/plasteel/white,
+/area/awaymission/BMPship/Aft)
+"cV" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/awaymission/BMPship/Aft)
+"cW" = (
+/obj/structure/cable{
+ icon_state = "0-2";
+ pixel_y = 1;
+ d2 = 2
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ environ = 0;
+ equipment = 3;
+ locked = 0;
+ pixel_y = 32;
+ req_access = ""
+ },
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Aft)
+"cX" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/awaymission/BMPship/Aft)
+"cY" = (
+/obj/structure/table,
+/obj/item/weapon/paper{
+ info = "I'm no scientist, but judging from the design and components, it seems to be some kind of teleporter. This thing is gonna be worth a lot of cash to the right man. The boys are excited, as they have every right to be, and I've let them crack into that case of beer we got. I normally wouldn't allow such a thing, but this is a time for celebration! It's not like a couple drinks will hurt anything.";
+ name = "Captain's log entry"
+ },
+/turf/open/floor/carpet,
+/area/awaymission/BMPship/Fore)
+"cZ" = (
+/obj/structure/table,
+/obj/item/weapon/reagent_containers/food/drinks/beer,
+/turf/open/floor/carpet,
+/area/awaymission/BMPship/Fore)
+"da" = (
+/obj/structure/frame/computer{
+ anchored = 1
+ },
+/turf/open/floor/carpet,
+/area/awaymission/BMPship/Fore)
+"db" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/carpet,
+/area/awaymission/BMPship/Fore)
+"dc" = (
+/obj/machinery/hydroponics,
+/turf/open/floor/plasteel/green/side{
+ dir = 10
+ },
+/area/awaymission/BMPship/Midship)
+"dd" = (
+/turf/open/floor/plasteel/green/side,
+/area/awaymission/BMPship/Midship)
+"de" = (
+/obj/machinery/seed_extractor,
+/obj/item/seeds/plump/walkingmushroom,
+/turf/open/floor/plasteel/green/side,
+/area/awaymission/BMPship/Midship)
+"df" = (
+/obj/machinery/hydroponics,
+/turf/open/floor/plasteel/green/side{
+ dir = 6
+ },
+/area/awaymission/BMPship/Midship)
+"dg" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/bar,
+/area/awaymission/BMPship/Midship)
+"dh" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/turf/open/floor/plasteel/bar,
+/area/awaymission/BMPship/Midship)
+"di" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/bar,
+/area/awaymission/BMPship/Midship)
+"dj" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/awaymission/BMPship/Aft)
+"dk" = (
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/awaymission/BMPship/Aft)
+"dl" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel,
+/area/awaymission/BMPship/Aft)
+"dm" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Aft)
+"dn" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Aft)
+"do" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Aft)
+"dp" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/awaymission/BMPship/Aft)
+"dq" = (
+/obj/item/device/multitool,
+/turf/open/floor/engine,
+/area/awaymission/BMPship/Aft)
+"dr" = (
+/obj/structure/shuttle/engine/heater{
+ icon_state = "heater";
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/engine/airless,
+/area/awaymission/BMPship/Aft)
+"ds" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 4;
+ icon_state = "propulsion"
+ },
+/turf/open/space,
+/area/awaymission/BMPship/Aft)
+"dt" = (
+/obj/structure/table,
+/obj/machinery/recharger,
+/turf/open/floor/carpet,
+/area/awaymission/BMPship/Fore)
+"du" = (
+/obj/structure/chair/stool,
+/turf/open/floor/carpet,
+/area/awaymission/BMPship/Fore)
+"dv" = (
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/carpet,
+/area/awaymission/BMPship/Fore)
+"dw" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plasteel/bar,
+/area/awaymission/BMPship/Midship)
+"dx" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel/bar,
+/area/awaymission/BMPship/Midship)
+"dy" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/bar,
+/area/awaymission/BMPship/Midship)
+"dz" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/bar,
+/area/awaymission/BMPship/Midship)
+"dA" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plasteel/bar,
+/area/awaymission/BMPship/Midship)
+"dB" = (
+/turf/closed/wall/r_wall,
+/area/awaymission/BMPship/Midship)
+"dC" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/awaymission/BMPship/Aft)
+"dD" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/awaymission/BMPship/Aft)
+"dE" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel,
+/area/awaymission/BMPship/Aft)
+"dF" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/awaymission/BMPship/Aft)
+"dG" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Fore)
+"dH" = (
+/obj/item/weapon/shard,
+/turf/open/floor/carpet,
+/area/awaymission/BMPship/Fore)
+"dI" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/carpet,
+/area/awaymission/BMPship/Fore)
+"dJ" = (
+/obj/machinery/door/airlock/silver,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf/open/floor/carpet,
+/area/awaymission/BMPship/Fore)
+"dK" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/bar,
+/area/awaymission/BMPship/Midship)
+"dL" = (
+/obj/machinery/shieldwallgen,
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Midship)
+"dM" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/bar,
+/area/awaymission/BMPship/Midship)
+"dN" = (
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ locked = 0;
+ pixel_y = 28;
+ req_access = ""
+ },
+/turf/open/floor/plasteel/bar,
+/area/awaymission/BMPship/Midship)
+"dO" = (
+/turf/open/floor/plasteel/loadingarea/dirtydirty{
+ dir = 4
+ },
+/area/awaymission/BMPship/Midship)
+"dP" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "meatConvey1"
+ },
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Midship)
+"dQ" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "meatConvey1"
+ },
+/obj/structure/plasticflaps,
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Midship)
+"dR" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/disposal/deliveryChute{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Midship)
+"dS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/awaymission/BMPship/Midship)
+"dT" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/bar,
+/area/awaymission/BMPship/Midship)
+"dU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel/bar,
+/area/awaymission/BMPship/Midship)
+"dV" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Aft)
+"dW" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Aft)
+"dX" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Aft)
+"dY" = (
+/obj/structure/rack,
+/obj/item/weapon/storage/box/lights,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/awaymission/BMPship/Aft)
+"dZ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/awaymission/BMPship/Aft)
+"ea" = (
+/obj/machinery/power/smes/magical{
+ desc = "A high-capacity superconducting magnetic energy storage (SMES) unit.";
+ name = "power storage unit"
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/structure/cable,
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Aft)
+"eb" = (
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/machinery/power/terminal{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Aft)
+"ec" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/awaymission/BMPship/Aft)
+"ed" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Fore)
+"ee" = (
+/obj/structure/table,
+/turf/open/floor/carpet,
+/area/awaymission/BMPship/Fore)
+"ef" = (
+/obj/structure/chair/office{
+ dir = 8
+ },
+/turf/open/floor/carpet,
+/area/awaymission/BMPship/Fore)
+"eg" = (
+/obj/item/weapon/shard{
+ icon_state = "medium"
+ },
+/turf/open/floor/carpet,
+/area/awaymission/BMPship/Fore)
+"eh" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Midship)
+"ei" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Midship)
+"ej" = (
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Midship)
+"ek" = (
+/obj/item/weapon/reagent_containers/glass/bucket,
+/turf/open/floor/plasteel/bar,
+/area/awaymission/BMPship/Midship)
+"el" = (
+/obj/machinery/conveyor_switch/oneway{
+ id = "meatConvey1"
+ },
+/turf/open/floor/plasteel/bar,
+/area/awaymission/BMPship/Midship)
+"em" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel/bar,
+/area/awaymission/BMPship/Midship)
+"en" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plasteel/bar,
+/area/awaymission/BMPship/Midship)
+"eo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/awaymission/BMPship/Aft)
+"ep" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/awaymission/BMPship/Aft)
+"eq" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/structure/disposaloutlet{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Aft)
+"er" = (
+/obj/effect/decal/cleanable/blood/gibs/old,
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Aft)
+"es" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Aft)
+"et" = (
+/obj/structure/rack,
+/obj/item/weapon/storage/belt/utility/full,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/awaymission/BMPship/Aft)
+"eu" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/awaymission/BMPship/Aft)
+"ev" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/carpet,
+/area/awaymission/BMPship/Fore)
+"ew" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/turf/open/floor/carpet,
+/area/awaymission/BMPship/Fore)
+"ex" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/carpet,
+/area/awaymission/BMPship/Fore)
+"ey" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/gibspawner/xeno,
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Midship)
+"ez" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel/bar,
+/area/awaymission/BMPship/Midship)
+"eA" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/bar,
+/area/awaymission/BMPship/Midship)
+"eB" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/bar,
+/area/awaymission/BMPship/Midship)
+"eC" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plasteel/bar,
+/area/awaymission/BMPship/Midship)
+"eD" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Aft)
+"eE" = (
+/obj/effect/gibspawner/human,
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Aft)
+"eF" = (
+/obj/machinery/door/window{
+ base_state = "right";
+ dir = 4;
+ icon_state = "right"
+ },
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Aft)
+"eG" = (
+/obj/structure/rack,
+/obj/item/weapon/stock_parts/cell/high,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/awaymission/BMPship/Aft)
+"eH" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Fore)
+"eI" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Midship)
+"eJ" = (
+/obj/machinery/door/window{
+ base_state = "right";
+ dir = 4;
+ icon_state = "right"
+ },
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Midship)
+"eK" = (
+/obj/machinery/light,
+/turf/open/floor/plasteel/bar,
+/area/awaymission/BMPship/Midship)
+"eL" = (
+/obj/effect/gibspawner/generic,
+/turf/open/floor/plasteel/bar,
+/area/awaymission/BMPship/Midship)
+"eM" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/bar,
+/area/awaymission/BMPship/Midship)
+"eN" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/awaymission/BMPship/Aft)
+"eO" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/awaymission/BMPship/Aft)
+"eP" = (
+/obj/structure/rack,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/awaymission/BMPship/Aft)
+"eQ" = (
+/obj/machinery/power/smes/magical{
+ desc = "A high-capacity superconducting magnetic energy storage (SMES) unit.";
+ name = "power storage unit"
+ },
+/obj/structure/cable,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Aft)
+"eR" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/awaymission/BMPship/Aft)
+"eS" = (
+/obj/effect/decal/cleanable/cobweb,
+/obj/machinery/power/port_gen/pacman/super,
+/turf/open/floor/engine,
+/area/awaymission/BMPship/Aft)
+"eT" = (
+/obj/structure/closet,
+/turf/open/floor/carpet,
+/area/awaymission/BMPship/Fore)
+"eU" = (
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 4
+ },
+/obj/structure/closet,
+/turf/open/floor/carpet,
+/area/awaymission/BMPship/Fore)
+"eV" = (
+/obj/item/weapon/wrench,
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Midship)
+"eW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel/bar,
+/area/awaymission/BMPship/Midship)
+"eX" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/bar,
+/area/awaymission/BMPship/Midship)
+"eY" = (
+/obj/structure/mopbucket,
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Aft)
+"eZ" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/item/weapon/kitchen/knife,
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Aft)
+"fa" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/item/weapon/stock_parts/cell/high,
+/turf/open/floor/plasteel,
+/area/awaymission/BMPship/Aft)
+"fb" = (
+/obj/machinery/door/unpowered/shuttle,
+/turf/closed/wall/mineral/titanium/interior,
+/area/awaymission/BMPship/Aft)
+"fc" = (
+/obj/machinery/door/unpowered/shuttle,
+/turf/open/floor/carpet,
+/area/awaymission/BMPship/Fore)
+"fd" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/machinery/door/unpowered/shuttle,
+/turf/open/floor/carpet,
+/area/awaymission/BMPship/Fore)
+"fe" = (
+/obj/effect/gibspawner/xeno,
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Midship)
+"ff" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/floor/plasteel{
+ icon_state = "panelscorched"
+ },
+/area/awaymission/BMPship/Midship)
+"fg" = (
+/obj/structure/kitchenspike,
+/turf/open/floor/plasteel/bar,
+/area/awaymission/BMPship/Midship)
+"fh" = (
+/turf/open/floor/plasteel/loadingarea/dirty{
+ dir = 4
+ },
+/area/awaymission/BMPship/Midship)
+"fi" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "meatConvey2"
+ },
+/obj/item/weapon/kitchen/knife,
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Midship)
+"fj" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "meatConvey2"
+ },
+/obj/structure/plasticflaps,
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Midship)
+"fk" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "meatConvey2"
+ },
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Midship)
+"fl" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel/bar,
+/area/awaymission/BMPship/Midship)
+"fm" = (
+/turf/closed/wall/mineral/titanium/interior,
+/area/awaymission/BMPship/Midship)
+"fn" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Aft)
+"fo" = (
+/obj/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Aft)
+"fp" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Aft)
+"fq" = (
+/obj/item/stack/cable_coil,
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Aft)
+"fr" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/awaymission/BMPship/Aft)
+"fs" = (
+/obj/item/stack/sheet/mineral/uranium{
+ amount = 50
+ },
+/turf/open/floor/engine,
+/area/awaymission/BMPship/Aft)
+"ft" = (
+/turf/open/floor/plating/airless{
+ icon_state = "platingdmg1"
+ },
+/area/awaymission/BMPship/Fore)
+"fu" = (
+/obj/structure/lattice,
+/turf/open/space,
+/area/awaymission/BMPship/Fore)
+"fv" = (
+/turf/open/floor/plating/airless{
+ icon_state = "platingdmg3"
+ },
+/area/awaymission/BMPship/Fore)
+"fw" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plating/airless,
+/area/awaymission/BMPship/Fore)
+"fx" = (
+/obj/item/weapon/shard{
+ icon_state = "small"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/turf/open/floor/plating/airless,
+/area/awaymission/BMPship/Fore)
+"fy" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/turf/open/floor/plating/airless{
+ icon_state = "panelscorched"
+ },
+/area/awaymission/BMPship/Fore)
+"fz" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating/airless{
+ icon_state = "platingdmg3"
+ },
+/area/awaymission/BMPship/Fore)
+"fA" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/item/weapon/kitchen/knife,
+/turf/open/floor/plasteel/bar,
+/area/awaymission/BMPship/Midship)
+"fB" = (
+/obj/machinery/conveyor_switch/oneway{
+ id = "meatConvey2"
+ },
+/turf/open/floor/plasteel/bar,
+/area/awaymission/BMPship/Midship)
+"fC" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/awaymission/BMPship/Aft)
+"fD" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/awaymission/BMPship/Aft)
+"fE" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/awaymission/BMPship/Aft)
+"fF" = (
+/obj/item/weapon/mop,
+/turf/open/floor/plasteel/showroomfloor,
+/area/awaymission/BMPship/Aft)
+"fG" = (
+/obj/effect/decal/cleanable/oil,
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Aft)
+"fH" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/awaymission/BMPship/Aft)
+"fI" = (
+/turf/open/floor/plating/airless{
+ icon_state = "platingdmg2"
+ },
+/area/awaymission/BMPship/Fore)
+"fJ" = (
+/obj/item/weapon/shard,
+/turf/open/floor/plating/airless{
+ icon_state = "platingdmg1"
+ },
+/area/awaymission/BMPship/Fore)
+"fK" = (
+/obj/structure/chair/stool,
+/turf/open/floor/plating/airless{
+ icon_state = "platingdmg3"
+ },
+/area/awaymission/BMPship/Fore)
+"fL" = (
+/obj/item/stack/cable_coil{
+ amount = 5
+ },
+/turf/open/floor/plating/airless,
+/area/awaymission/BMPship/Fore)
+"fM" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/turf/open/floor/plating/airless,
+/area/awaymission/BMPship/Fore)
+"fN" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/bar,
+/area/awaymission/BMPship/Midship)
+"fO" = (
+/obj/structure/closet/crate/freezer,
+/obj/item/weapon/reagent_containers/food/snacks/meat,
+/turf/open/floor/plasteel/showroomfloor,
+/area/awaymission/BMPship/Aft)
+"fP" = (
+/obj/item/weapon/reagent_containers/glass/bucket,
+/turf/open/floor/plasteel/showroomfloor,
+/area/awaymission/BMPship/Aft)
+"fQ" = (
+/obj/structure/reagent_dispensers,
+/turf/open/floor/plasteel/showroomfloor,
+/area/awaymission/BMPship/Aft)
+"fR" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Aft)
+"fS" = (
+/turf/open/floor/plating/asteroid/airless,
+/area/awaymission/BMPship)
+"fT" = (
+/obj/structure/frame/computer{
+ anchored = 1
+ },
+/turf/open/floor/plating/airless{
+ icon_state = "panelscorched"
+ },
+/area/awaymission/BMPship/Fore)
+"fU" = (
+/obj/structure/frame/computer{
+ anchored = 1
+ },
+/turf/open/floor/plating/airless{
+ icon_state = "platingdmg1"
+ },
+/area/awaymission/BMPship/Fore)
+"fV" = (
+/obj/machinery/light/small,
+/turf/open/floor/plasteel/bar,
+/area/awaymission/BMPship/Midship)
+"fW" = (
+/turf/open/floor/plasteel{
+ icon_state = "platingdmg3"
+ },
+/area/awaymission/BMPship/Midship)
+"fX" = (
+/turf/open/floor/plasteel{
+ icon_state = "platingdmg1"
+ },
+/area/awaymission/BMPship/Midship)
+"fY" = (
+/obj/machinery/door/airlock/silver{
+ locked = 1
+ },
+/turf/open/floor/plasteel,
+/area/awaymission/BMPship/Aft)
+"fZ" = (
+/obj/machinery/door/airlock/silver{
+ locked = 1
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/awaymission/BMPship/Aft)
+"ga" = (
+/obj/machinery/door/unpowered/shuttle,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel,
+/area/awaymission/BMPship/Aft)
+"gb" = (
+/turf/closed/mineral/random,
+/area/awaymission/BMPship)
+"gc" = (
+/obj/item/device/multitool,
+/turf/open/floor/plating/airless{
+ icon_state = "platingdmg2"
+ },
+/area/awaymission/BMPship)
+"gd" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/silver,
+/turf/open/floor/plating/airless,
+/area/awaymission/BMPship/Fore)
+"ge" = (
+/turf/closed/mineral/random,
+/area/awaymission/BMPship/Midship)
+"gf" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/awaymission/BMPship/Aft)
+"gg" = (
+/obj/structure/chair/stool,
+/turf/open/floor/plasteel,
+/area/awaymission/BMPship/Aft)
+"gh" = (
+/obj/structure/table,
+/obj/item/weapon/paper{
+ info = "DEAR DAIRY: So we was doing our typpical route when the captain says we've been picking up weird signals on some backwatter planet. Madsen wanted to stay on course but he ain't the captain, so we went out of the way to check it out. There was lots of rocks on the way, but we got to the planet fine. Found a big fancy camp with nobody around and this big metal donut thing with NT stamps all over it right in the middle. Case of beer too. Captain reckons we can pass it off to some buyer in the Syndicate. Ingram says it's bad luck and that someone is going to come look for it but it sounds like better money than selling bad meat to jerky companies.";
+ name = "Old Diary"
+ },
+/turf/open/floor/plasteel,
+/area/awaymission/BMPship/Aft)
+"gi" = (
+/obj/structure/table,
+/obj/item/weapon/pen/red,
+/obj/item/weapon/reagent_containers/food/drinks/beer,
+/turf/open/floor/plasteel,
+/area/awaymission/BMPship/Aft)
+"gj" = (
+/obj/structure/closet,
+/obj/item/clothing/under/overalls,
+/turf/open/floor/plasteel,
+/area/awaymission/BMPship/Aft)
+"gk" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/grille,
+/turf/open/floor/plating/airless,
+/area/awaymission/BMPship/Fore)
+"gl" = (
+/obj/machinery/porta_turret{
+ dir = 8;
+ emagged = 1;
+ installation = /obj/item/weapon/gun/energy/lasercannon
+ },
+/turf/open/floor/engine,
+/area/awaymission/BMPship/Fore)
+"gm" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/awaymission/BMPship/Fore)
+"gn" = (
+/obj/structure/cable,
+/turf/open/floor/plating/airless{
+ icon_state = "platingdmg3"
+ },
+/area/awaymission/BMPship/Fore)
+"go" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plating/airless,
+/area/awaymission/BMPship/Fore)
+"gp" = (
+/turf/open/floor/plating/asteroid/airless,
+/area/awaymission/BMPship/Fore)
+"gq" = (
+/obj/structure/rack,
+/turf/open/floor/plating/airless,
+/area/awaymission/BMPship/Fore)
+"gr" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plating/asteroid/airless,
+/area/awaymission/BMPship/Fore)
+"gs" = (
+/turf/open/floor/plating/asteroid/airless,
+/area/awaymission/BMPship/Midship)
+"gt" = (
+/turf/open/floor/plating/airless{
+ broken = 1;
+ icon_state = "platingdmg1"
+ },
+/area/awaymission/BMPship/Midship)
+"gu" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plating/airless,
+/area/awaymission/BMPship/Midship)
+"gv" = (
+/obj/item/wallframe/apc,
+/turf/open/floor/plating/airless,
+/area/awaymission/BMPship/Midship)
+"gw" = (
+/obj/structure/ore_box,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plating/airless,
+/area/awaymission/BMPship/Midship)
+"gx" = (
+/obj/item/stack/cable_coil{
+ amount = 5
+ },
+/turf/open/floor/plating/airless,
+/area/awaymission/BMPship/Midship)
+"gy" = (
+/obj/structure/ore_box,
+/turf/open/floor/plating/airless,
+/area/awaymission/BMPship/Midship)
+"gz" = (
+/obj/machinery/computer/arcade,
+/turf/open/floor/plasteel,
+/area/awaymission/BMPship/Aft)
+"gA" = (
+/obj/effect/decal/remains/human,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/awaymission/BMPship/Aft)
+"gB" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel,
+/area/awaymission/BMPship/Aft)
+"gC" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel,
+/area/awaymission/BMPship/Aft)
+"gD" = (
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/item/wallframe/apc,
+/turf/open/floor/plasteel,
+/area/awaymission/BMPship/Aft)
+"gE" = (
+/obj/effect/decal/remains/human,
+/obj/item/clothing/head/helmet/space/syndicate/green/dark,
+/obj/effect/gibspawner/generic,
+/turf/open/floor/plating/asteroid/airless,
+/area/awaymission/BMPship)
+"gF" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/grille,
+/obj/item/weapon/shard{
+ icon_state = "small"
+ },
+/turf/open/floor/plating/airless,
+/area/awaymission/BMPship/Fore)
+"gG" = (
+/turf/open/floor/engine,
+/area/awaymission/BMPship/Fore)
+"gH" = (
+/obj/machinery/door/unpowered/shuttle,
+/turf,
+/area/awaymission/BMPship/Fore)
+"gI" = (
+/turf/open/floor/plating/airless,
+/area/awaymission/BMPship/Fore)
+"gJ" = (
+/obj/effect/gibspawner/robot,
+/turf/open/floor/plasteel/airless{
+ icon_state = "floorscorched2"
+ },
+/area/awaymission/BMPship/Fore)
+"gK" = (
+/turf/closed/mineral/random,
+/area/awaymission/BMPship/Fore)
+"gL" = (
+/turf/open/floor/plating/airless{
+ broken = 1;
+ icon_state = "platingdmg2"
+ },
+/area/awaymission/BMPship/Midship)
+"gM" = (
+/obj/structure/mecha_wreckage/ripley,
+/turf/open/floor/plating/airless,
+/area/awaymission/BMPship/Midship)
+"gN" = (
+/obj/structure/bed,
+/turf/open/floor/plasteel,
+/area/awaymission/BMPship/Aft)
+"gO" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet,
+/obj/item/weapon/storage/wallet/random,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/awaymission/BMPship/Aft)
+"gP" = (
+/obj/structure/closet,
+/obj/item/clothing/under/lawyer/bluesuit,
+/obj/item/clothing/suit/apron,
+/turf/open/floor/plasteel,
+/area/awaymission/BMPship/Aft)
+"gQ" = (
+/obj/item/clothing/suit/space/syndicate/green/dark,
+/turf/open/floor/plating/asteroid/airless,
+/area/awaymission/BMPship)
+"gR" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/obj/structure/grille,
+/turf/open/floor/plating/airless,
+/area/awaymission/BMPship/Fore)
+"gS" = (
+/turf/closed/wall/mineral/titanium,
+/area/awaymission/BMPship)
+"gT" = (
+/obj/effect/gibspawner/robot,
+/turf/open/floor/plating/airless,
+/area/awaymission/BMPship/Midship)
+"gU" = (
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/turf/open/floor/plating/airless,
+/area/awaymission/BMPship/Midship)
+"gV" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/turf/open/floor/plating/airless,
+/area/awaymission/BMPship/Midship)
+"gW" = (
+/obj/machinery/door/unpowered/shuttle,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/turf/closed/wall/mineral/titanium/interior,
+/area/awaymission/BMPship/Midship)
+"gX" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/turf/open/floor/plasteel,
+/area/awaymission/BMPship/Aft)
+"gY" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel,
+/area/awaymission/BMPship/Aft)
+"gZ" = (
+/obj/item/weapon/shard{
+ icon_state = "medium"
+ },
+/turf/open/space,
+/area/space)
+"ha" = (
+/turf/open/floor/plating/airless{
+ broken = 1;
+ icon_state = "panelscorched"
+ },
+/area/awaymission/BMPship/Midship)
+"hb" = (
+/obj/effect/decal/remains/human,
+/turf/open/floor/plasteel,
+/area/awaymission/BMPship/Aft)
+"hc" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet,
+/turf/open/floor/plasteel,
+/area/awaymission/BMPship/Aft)
+"hd" = (
+/obj/machinery/door/unpowered/shuttle,
+/turf/open/floor/plasteel/cafeteria{
+ dir = 2
+ },
+/area/awaymission/BMPship/Aft)
+"he" = (
+/obj/structure/mirror{
+ pixel_y = 28
+ },
+/turf/open/floor/plasteel/cafeteria{
+ dir = 2
+ },
+/area/awaymission/BMPship/Aft)
+"hf" = (
+/obj/structure/toilet{
+ dir = 8
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plasteel/cafeteria{
+ dir = 2
+ },
+/area/awaymission/BMPship/Aft)
+"hg" = (
+/turf/open/floor/plating/airless{
+ broken = 1;
+ icon_state = "platingdmg3"
+ },
+/area/awaymission/BMPship/Midship)
+"hh" = (
+/obj/item/weapon/caution,
+/turf/open/floor/plating/airless,
+/area/awaymission/BMPship/Midship)
+"hi" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/turf/open/floor/plating/airless,
+/area/awaymission/BMPship/Midship)
+"hj" = (
+/obj/structure/closet/crate,
+/obj/item/stack/spacecash/c10,
+/obj/item/stack/spacecash/c200,
+/turf/open/floor/plasteel,
+/area/awaymission/BMPship/Aft)
+"hk" = (
+/obj/structure/closet/crate,
+/obj/item/stack/spacecash/c10,
+/turf/open/floor/plasteel,
+/area/awaymission/BMPship/Aft)
+"hl" = (
+/obj/structure/sink{
+ dir = 2
+ },
+/turf/open/floor/plasteel/cafeteria{
+ dir = 2
+ },
+/area/awaymission/BMPship/Aft)
+"hm" = (
+/turf/open/floor/plasteel/cafeteria{
+ dir = 2
+ },
+/turf/closed/wall/mineral/titanium/interior,
+/area/awaymission/BMPship/Aft)
+"hn" = (
+/obj/item/clothing/gloves/color/fyellow,
+/turf/open/floor/plating/asteroid/airless,
+/area/awaymission/BMPship)
+"ho" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/grille,
+/turf/open/floor/engine,
+/area/awaymission/BMPship/Aft)
+"hp" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/awaymission/BMPship/Aft)
+"hq" = (
+/obj/item/weapon/storage/box/matches,
+/obj/item/weapon/storage/fancy/cigarettes/dromedaryco,
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Aft)
+"hr" = (
+/obj/item/weapon/poster/contraband,
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Aft)
+"hs" = (
+/obj/item/weapon/reagent_containers/food/drinks/beer,
+/turf/open/floor/plating,
+/area/awaymission/BMPship/Aft)
+"ht" = (
+/turf/open/floor/plating,
+/turf/closed/wall/mineral/titanium/interior,
+/area/awaymission/BMPship/Aft)
+"hu" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/structure/grille,
+/turf/open/floor/engine,
+/area/awaymission/BMPship/Aft)
+"hv" = (
+/turf/closed/mineral/diamond,
+/area/awaymission/BMPship)
+"hw" = (
+/turf/closed/mineral/clown,
+/area/awaymission/BMPship)
(1,1,1) = {"
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacadadadadaeaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafagahacaiadaeaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajahahakalaladaeaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaaaaaaaaaaaaaaaaaaaaaaaanagaoacalalaladaeaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamapaqaqaqaqaqaqaqaqaqaqacacacacacaracadadadadaeaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaamaaamaqasatauavawaxayazaAaqaBaCaDaEaFaGaGaGaGaGaGadaeaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaHaHaHaHaHaHaHaHaHaHaHaIaaaaaaaaaaaaamaJaKatatatatatataLatataqaMalalaNalalalalalalaOaPadaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaQaRaSaTaUaVaWaVaWaVaXaYaaaaaaaaaaamaZaKatbabbatatasatbcbdbdbebfbgalbhalalbibjbkalalaPadaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaablbmbnaTbobpbpbpbpbpbpbqaaaaaaamapaqatbaaKatbaatatatatatatataqaMbralalalalalalalalalbsadaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaabtbubmaTbpbvbvbwbvbvbxaTaaaaaaapaqaZbaatbybzatatatbAbBbCbAbBaqaMbDbEbFbFbGbFbFbFbFbgbHadaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaTaTbIaTbJaTaqaqaqaqaqaqaqaqaqaqaqaqaqaqaqaqbKbKbKaqaqaqaqaqaqbLbMbNbObMbMbPbQbRbSbTbUadaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaIaTbVbVbWbVaTbXbYbZcacbcccacdbYceaqcfcgchcicececececjckclcjcmaqacacacacacacacacadaccnadadaeaaaaaaaaaa
-aaaaaaaaaaaaaaaaaIaTbVbVbVcobVaTcecpbZcqcqcqcrcdceceaqcscscsctcececececucucecuceaqcvcvcwcxcyczcAcBadcCcDcEadacacacaeaaaa
-aaaaaaaaaaaaaacFcGbVbVbVbVcHcIaTcecebZcqcJcqcqcdcececKcLcMcNcOcececececececPceceaqcwcQcwaccRcScTcUadcVcDcCcCcWcXadadadae
-aaaaaaaaaaaaaIaTbVbVcYcZdabVdbaTcecedcdddddedddfceceaqcedgdhdhdhdhdhdhdhdhdhdiceaqcwdjcwdkacacacacadcVdldmdndodpaddqdrds
-aaaaaaaaaaaaaTbVbVbVdtdubVbVdvaTdwdxdydydydydydydiceaqcedzcedAdBdBdBdBdBdBdBdzceaqcwdjcwcwcwcwcwdCaddDdEalbraldFakahdrds
-aaaaaaaaaaaadGdadHbVbVbVbVbVdIdJdydKdBdBdBdBdBdLdMcedNcedzdOdPdQdPdPdPdPdRdSdTdUaqcwdjdVdWdWdXcwcwaddYdZaleaebecadahdrds
-aaaaaaaaaaaaedeeefbVegbVbVbVdbaTcecedBeheheheiejdzekdzcedzceeldBdBdBdBdBdBdBdzemeneoepeqererescwcwadetdZalbraleuadadadae
-aaaaaaaaaaaaedeeefbVbVevewewexaTcecedBeheyejeiejezdyeAdyeBcececececeeCcececedzcececwdjeDaleEeFcwcwadeGdEalbraldFacadadae
-aaaaaaaaaaaaeHbVbVbVbVcobVbVbVbJcecedBeIehejeJejdzceeKcedzceceeLcecececececeeMdhdheNeOeDeraleFcwcwadePdEaleQebeRadeSdrds
-aaaaaaaaaaaaaTbVbVbVbVcobVeTeUaTdwcedBehejejeieVdzceaqcedzcedAdBdBdBdBdBdBdBdzeWeXeoepeqeYaleZcwdCaddDfaalalalcXfbahdrds
-aaaaaaaaaaaaaIaTaTaTfcfdaTaTaTaTcecedBejejfeffejdzfgaqcedzfhfifjfkfkfkfkdRdSdTflfmcwdjfnfofofpcwcwadcVdZalfqalfradfsdrds
-aaaaaaaaaaaaaaaIftfufvfwfxfyfzaTcecedBdBdBdBdBdLfAcecKcedzcefBdBdBdBdBdBdBdBdzcefmcwfCfDfDfDfEcwfFadcVdEcEcCfGfHadadadae
-aaaaaaaaaaaaaaaafufIfJfufKfLfMaTcecececececececeejceaqcefNdydydydydydydhdhdhdKcefmfOcwcwcwcwdjfPfQadcVfRaladadadadaeaaaa
-aafSfSaaaaamaaaaaaaaaHfTfUfvfMaTcefVcecececefWcefXfWaqcefVcececefVcecececefVcecefmacacfYacacfZacacadacgaacadaeaaaaaaaaaa
-gbgbgbfSaaamaagcamaaaHaHaHaHgdaTaqaqaqaqaqaqaqaqgefmfmfmfmfmfmfmfmfmfmfmfmfmfmfmfmcEcEcEcEgfcDggghgigfdEgjadaaaaaaaaaaaa
-gbgbgbgbfSaaaaaaaaaagkglgmaHgngogpgqftgrfvaTgbgbgbgbaqgsgsatgtgsguatgsgtgvgwgxgyfmgzcEalcEcEgAgBgBgBgBgCgDadaaaaaaaaaaaa
-gbgbgbgbgEaaaaaaaaaagFgGgGgHgIfIgIgpgJgIgpgKgbgbgbgbgbaqgsgLgMatgsgtatatatatatatfmggcEcEgNcEgOcEgNcEcEcEgPadaaaaaaaaaaaa
-aaaagbfSgQaaaaaaaaaagRglgGaHfvfvgpftgpfvgpaTgbgbgbgSgbgbgbgsgTgsatatatatatatgUgVgWgXgXgXgXgXgYcEcEcEadadadadaaaaaaaaaaaa
-aaaaaafSaaaaaaaagZfSaHaHaHaHaHaHgKgpaTgbgbgbgbgbgbgbgbgbgbgbgtgLatatgsatathaatatfmcEcEhbhccEgNcEgNcEhdhehfadaaaaaaaaaaaa
-aaaaaaaaaaaaaaaafSfSfSgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbaqgsgLatathghhhhhhhifmhjhkcEalcEcEcEcEcEadhlhmaeaaaaaaaaaaaa
-aaaaaaaaaaaaaahnfSfSfSgbgbgbgbgbgbgbgbgbgbgbgSgbgbgbgbgbgbgbgbfmfmfmfmfmfmfmfmfmfmadadadadadfYadadadadadaeaaaaaaaaaaaaaa
-aaaaaaaaaaaafSfSfSfSgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbfSfSaaaaaaaaaahoaghpachqalhracaeaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaafSfSfSfSfSgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbfSfSaaaaaaaaaaajahahakalhshtaeaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaafSfSfSfSfSgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbfSfSaaaaaaaaaahuagahacaihtaeaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaafSgbgbfSfSgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbfSfSaaaaaaaaaadkacacacacaeaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaagbgbgbfSfSfSgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbfSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaagbgbgbgbgbfSfSgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbfSfSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaagbgbgbgbgbfSfSfSgbgbhvgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbfSfSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaagbgbgbgbgbfSfSfSgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbfSfSfSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaagbgbgbgbgbfSfSfSgbgbgbgbgbgbhwgbgbgbgbgbgbgbgbgbgbgbfSfSfSfSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaagbgbgbgbgbfSfSfSgbgbgbhwgbgbhwgbgbgbgbgbgbgbgbgbfSfSfSfSgbgbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaagbgbgbgbfSfSfSfSgbgbgbgbgbgbgbgbgbgbgbgbgbgbgbfSfSgbgbgbgbgbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaagbgbfSfSfSfSfSfSgbgbgbgbgbgbgbgbgbgbgbgbfSfSfSfSgbgbgbgbgbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaafSfSfSfSfSfSgbgbgbgbgbgbgbgbfSfSfSfSaaaaaagbgbgbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafSfSfSfSfSfSfSfSfSfSfSfSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gb
+gb
+gb
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(2,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fS
+gb
+gb
+gb
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(3,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fS
+gb
+gb
+gb
+gb
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(4,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fS
+gb
+gb
+fS
+fS
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(5,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fS
+gE
+gQ
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gb
+gb
+gb
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(6,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+am
+am
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fS
+fS
+fS
+gb
+gb
+gb
+gb
+gb
+aa
+aa
+aa
+aa
+aa
+"}
+(7,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aI
+aT
+dG
+ed
+ed
+eH
+aT
+aI
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+fS
+fS
+fS
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+aa
+aa
+aa
+aa
+"}
+(8,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+cF
+aT
+bV
+da
+ee
+ee
+bV
+bV
+aT
+aI
+aa
+aa
+gc
+aa
+aa
+aa
+aa
+aa
+hn
+fS
+fS
+fS
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+aa
+aa
+aa
+"}
+(9,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aI
+cG
+bV
+bV
+dH
+ef
+ef
+bV
+bV
+aT
+ft
+fu
+aa
+am
+aa
+aa
+aa
+gZ
+fS
+fS
+fS
+fS
+fS
+fS
+fS
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+aa
+aa
+"}
+(10,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aI
+aT
+bV
+bV
+bV
+bV
+bV
+bV
+bV
+bV
+aT
+fu
+fI
+aa
+aa
+aa
+aa
+aa
+fS
+fS
+fS
+fS
+fS
+fS
+fS
+fS
+fS
+fS
+fS
+gb
+gb
+gb
+gb
+aa
+aa
+"}
+(11,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aH
+aQ
+bl
+bt
+aT
+aT
+bV
+bV
+cY
+dt
+bV
+eg
+bV
+bV
+bV
+fc
+fv
+fJ
+aH
+aH
+gk
+gF
+gR
+aH
+fS
+fS
+gb
+gb
+gb
+gb
+fS
+fS
+fS
+fS
+fS
+gb
+gb
+fS
+aa
+aa
+"}
+(12,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aH
+aR
+bm
+bu
+aT
+bV
+bV
+bV
+cZ
+du
+bV
+bV
+ev
+co
+co
+fd
+fw
+fu
+fT
+aH
+gl
+gG
+gl
+aH
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+fS
+fS
+fS
+fS
+fS
+fS
+aa
+aa
+"}
+(13,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aH
+aS
+bn
+bm
+bI
+bV
+bV
+bV
+da
+bV
+bV
+bV
+ew
+bV
+bV
+aT
+fx
+fK
+fU
+aH
+gm
+gG
+gG
+aH
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+fS
+fS
+fS
+fS
+fS
+aa
+"}
+(14,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aH
+aT
+aT
+aT
+aT
+bW
+co
+cH
+bV
+bV
+bV
+bV
+ew
+bV
+eT
+aT
+fy
+fL
+fv
+aH
+aH
+gH
+aH
+aH
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+fS
+fS
+fS
+fS
+aa
+"}
+(15,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aH
+aU
+bo
+bp
+bJ
+bV
+bV
+cI
+db
+dv
+dI
+db
+ex
+bV
+eU
+aT
+fz
+fM
+fM
+gd
+gn
+gI
+fv
+aH
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+hv
+gb
+gb
+gb
+fS
+fS
+fS
+aa
+"}
+(16,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aH
+aV
+bp
+bv
+aT
+aT
+aT
+aT
+aT
+aT
+dJ
+aT
+aT
+bJ
+aT
+aT
+aT
+aT
+aT
+aT
+go
+fI
+fv
+aH
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+fS
+fS
+aa
+"}
+(17,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aH
+aW
+bp
+bv
+aq
+bX
+ce
+ce
+ce
+dw
+dy
+ce
+ce
+ce
+dw
+ce
+ce
+ce
+ce
+aq
+gp
+gI
+gp
+gK
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+fS
+fS
+"}
+(18,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aH
+aV
+bp
+bw
+aq
+bY
+cp
+ce
+ce
+dx
+dK
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+fV
+aq
+gq
+gp
+ft
+gp
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+hw
+gb
+gb
+fS
+fS
+"}
+(19,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aH
+aW
+bp
+bv
+aq
+bZ
+bZ
+bZ
+dc
+dy
+dB
+dB
+dB
+dB
+dB
+dB
+dB
+ce
+ce
+aq
+ft
+gJ
+gp
+aT
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+fS
+"}
+(20,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aH
+aV
+bp
+bv
+aq
+ca
+cq
+cq
+dd
+dy
+dB
+eh
+eh
+eI
+eh
+ej
+dB
+ce
+ce
+aq
+gr
+gI
+fv
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+hw
+gb
+gb
+gb
+gb
+fS
+"}
+(21,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aH
+aX
+bp
+bx
+aq
+cb
+cq
+cJ
+dd
+dy
+dB
+eh
+ey
+eh
+ej
+ej
+dB
+ce
+ce
+aq
+fv
+gp
+gp
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+hw
+gb
+gb
+gb
+fS
+"}
+(22,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aI
+aY
+bq
+aT
+aq
+cc
+cq
+cq
+de
+dy
+dB
+eh
+ej
+ej
+ej
+fe
+dB
+ce
+ce
+aq
+aT
+gK
+aT
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+fS
+"}
+(23,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aq
+ca
+cr
+cq
+dd
+dy
+dB
+ei
+ei
+eJ
+ei
+ff
+dB
+ce
+fW
+aq
+gb
+gb
+gb
+gb
+gb
+gS
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+fS
+"}
+(24,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aq
+cd
+cd
+cd
+df
+dy
+dL
+ej
+ej
+ej
+eV
+ej
+dL
+ce
+ce
+aq
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+fS
+"}
+(25,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aq
+bY
+ce
+ce
+ce
+di
+dM
+dz
+ez
+dz
+dz
+dz
+fA
+ej
+fX
+ge
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+fS
+"}
+(26,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+am
+ap
+aq
+ce
+ce
+ce
+ce
+ce
+ce
+ek
+dy
+ce
+ce
+fg
+ce
+ce
+fW
+fm
+gb
+gb
+gS
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+fS
+"}
+(27,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+aq
+aq
+aq
+aq
+cK
+aq
+aq
+dN
+dz
+eA
+eK
+aq
+aq
+cK
+aq
+aq
+fm
+aq
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+fS
+fS
+"}
+(28,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+am
+aa
+am
+aq
+aZ
+aq
+cf
+cs
+cL
+ce
+ce
+ce
+ce
+dy
+ce
+ce
+ce
+ce
+ce
+ce
+fm
+gs
+aq
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+fS
+fS
+"}
+(29,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+am
+aa
+aa
+am
+aZ
+at
+ba
+aq
+cg
+cs
+cM
+dg
+dz
+dz
+dz
+eB
+dz
+dz
+dz
+dz
+fN
+fV
+fm
+gs
+gs
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+fS
+fS
+aa
+"}
+(30,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+am
+am
+aJ
+aK
+ba
+at
+aq
+ch
+cs
+cN
+dh
+ce
+dO
+ce
+ce
+ce
+ce
+fh
+ce
+dy
+ce
+fm
+at
+gL
+gs
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+fS
+fS
+aa
+"}
+(31,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ap
+aq
+aK
+at
+aK
+by
+aq
+ci
+ct
+cO
+dh
+dA
+dP
+el
+ce
+ce
+dA
+fi
+fB
+dy
+ce
+fm
+gt
+gM
+gT
+gt
+aq
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+fS
+fS
+fS
+aa
+aa
+"}
+(32,1,1) = {"
+ab
+aa
+aa
+aa
+aa
+aa
+aa
+aq
+as
+at
+ba
+at
+bz
+aq
+ce
+ce
+ce
+dh
+dB
+dQ
+dB
+ce
+eL
+dB
+fj
+dB
+dy
+ce
+fm
+gs
+at
+gs
+gL
+gs
+fm
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+fS
+fS
+fS
+fS
+aa
+aa
+"}
+(33,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aq
+at
+at
+bb
+ba
+at
+bK
+ce
+ce
+ce
+dh
+dB
+dP
+dB
+ce
+ce
+dB
+fk
+dB
+dy
+fV
+fm
+gu
+gs
+at
+at
+gL
+fm
+gb
+gb
+gb
+gb
+gb
+gb
+gb
+fS
+fS
+fS
+gb
+gb
+aa
+aa
+"}
+(34,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aq
+au
+at
+at
+at
+at
+bK
+ce
+ce
+ce
+dh
+dB
+dP
+dB
+ce
+ce
+dB
+fk
+dB
+dy
+ce
+fm
+at
+gt
+at
+at
+at
+fm
+gb
+gb
+gb
+gb
+gb
+fS
+fS
+fS
+fS
+fS
+gb
+gb
+gb
+aa
+"}
+(35,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aq
+av
+at
+at
+at
+at
+bK
+ce
+ce
+ce
+dh
+dB
+dP
+dB
+eC
+ce
+dB
+fk
+dB
+dy
+ce
+fm
+gs
+at
+at
+gs
+at
+fm
+fS
+fS
+fS
+fS
+fS
+fS
+fS
+fS
+fS
+gb
+gb
+gb
+gb
+aa
+"}
+(36,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aq
+aw
+at
+as
+at
+bA
+aq
+cj
+cu
+ce
+dh
+dB
+dP
+dB
+ce
+ce
+dB
+fk
+dB
+dh
+ce
+fm
+gt
+at
+at
+at
+hg
+fm
+fS
+fS
+fS
+fS
+aa
+aa
+aa
+aa
+aa
+gb
+gb
+gb
+gb
+aa
+"}
+(37,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aq
+ax
+at
+at
+at
+bB
+aq
+ck
+cu
+ce
+dh
+dB
+dR
+dB
+ce
+ce
+dB
+dR
+dB
+dh
+ce
+fm
+gv
+at
+at
+at
+hh
+fm
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+gb
+gb
+aa
+aa
+"}
+(38,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aq
+ay
+aL
+bc
+at
+bC
+aq
+cl
+ce
+cP
+dh
+dB
+dS
+dB
+ce
+ce
+dB
+dS
+dB
+dh
+fV
+fm
+gw
+at
+at
+ha
+hh
+fm
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(39,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aq
+az
+at
+bd
+at
+bA
+aq
+cj
+cu
+ce
+di
+dz
+dT
+dz
+dz
+eM
+dz
+dT
+dz
+dK
+ce
+fm
+gx
+at
+gU
+at
+hh
+fm
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(40,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aq
+aA
+at
+bd
+at
+bB
+aq
+cm
+ce
+ce
+ce
+ce
+dU
+em
+ce
+dh
+eW
+fl
+ce
+ce
+ce
+fm
+gy
+at
+gV
+at
+hi
+fm
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(41,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aq
+aq
+aq
+be
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+aq
+en
+ce
+dh
+eX
+fm
+fm
+fm
+fm
+fm
+fm
+fm
+gW
+fm
+fm
+fm
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(42,1,1) = {"
+aa
+aa
+aa
+ac
+af
+aj
+an
+ac
+aB
+aM
+bf
+aM
+aM
+bL
+ac
+cv
+cw
+cw
+cw
+cw
+eo
+cw
+eN
+eo
+cw
+cw
+fO
+ac
+cE
+gz
+gg
+gX
+cE
+hj
+ad
+ho
+aj
+hu
+dk
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(43,1,1) = {"
+aa
+aa
+aa
+ad
+ag
+ah
+ag
+ac
+aC
+al
+bg
+br
+bD
+bM
+ac
+cv
+cQ
+dj
+dj
+dj
+ep
+dj
+eO
+ep
+dj
+fC
+cw
+ac
+cE
+cE
+cE
+gX
+cE
+hk
+ad
+ag
+ah
+ag
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(44,1,1) = {"
+aa
+aa
+aa
+ad
+ah
+ah
+ao
+ac
+aD
+al
+al
+al
+bE
+bN
+ac
+cw
+cw
+cw
+cw
+dV
+eq
+eD
+eD
+eq
+fn
+fD
+cw
+fY
+cE
+al
+cE
+gX
+hb
+cE
+ad
+hp
+ah
+ah
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(45,1,1) = {"
+aa
+aa
+aa
+ad
+ac
+ak
+ac
+ac
+aE
+aN
+bh
+al
+bF
+bO
+ac
+cx
+ac
+dk
+cw
+dW
+er
+al
+er
+eY
+fo
+fD
+cw
+ac
+cE
+cE
+gN
+gX
+hc
+al
+ad
+ac
+ak
+ac
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(46,1,1) = {"
+aa
+aa
+aa
+ad
+ai
+al
+al
+ac
+aF
+al
+al
+al
+bF
+bM
+ac
+cy
+cR
+ac
+cw
+dW
+er
+eE
+al
+al
+fo
+fD
+cw
+ac
+gf
+cE
+cE
+gX
+cE
+cE
+ad
+hq
+al
+ai
+ac
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(47,1,1) = {"
+aa
+aa
+aa
+ae
+ad
+al
+al
+ar
+aG
+al
+al
+al
+bG
+bM
+ac
+cz
+cS
+ac
+cw
+dX
+es
+eF
+eF
+eZ
+fp
+fE
+dj
+fZ
+cD
+gA
+gO
+gY
+gN
+cE
+fY
+al
+hs
+ht
+ae
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(48,1,1) = {"
+aa
+aa
+aa
+aa
+ae
+ad
+al
+ac
+aG
+al
+bi
+al
+bF
+bP
+ac
+cA
+cT
+ac
+cw
+cw
+cw
+cw
+cw
+cw
+cw
+cw
+fP
+ac
+gg
+gB
+cE
+cE
+cE
+cE
+ad
+hr
+ht
+ae
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(49,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+ae
+ad
+ad
+aG
+al
+bj
+al
+bF
+bQ
+ac
+cB
+cU
+ac
+dC
+cw
+cw
+cw
+cw
+dC
+cw
+fF
+fQ
+ac
+gh
+gB
+gN
+cE
+gN
+cE
+ad
+ac
+ae
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(50,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+ae
+ad
+aG
+al
+bk
+al
+bF
+bR
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+gi
+gB
+cE
+cE
+cE
+cE
+ad
+ae
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(51,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aG
+al
+al
+al
+bF
+bS
+ac
+cC
+cV
+cV
+dD
+dY
+et
+eG
+eP
+dD
+cV
+cV
+cV
+ac
+gf
+gB
+cE
+ad
+hd
+ad
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(52,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+aG
+aO
+al
+al
+bg
+bT
+cn
+cD
+cD
+dl
+dE
+dZ
+dZ
+dE
+dE
+fa
+dZ
+dE
+fR
+ga
+dE
+gC
+cE
+ad
+he
+hl
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(53,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ae
+ad
+aP
+aP
+bs
+bH
+bU
+ad
+cE
+cC
+dm
+al
+al
+al
+al
+al
+al
+al
+cE
+al
+ac
+gj
+gD
+gP
+ad
+hf
+hm
+ae
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(54,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ae
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+cC
+dn
+br
+ea
+br
+br
+eQ
+al
+fq
+cC
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+ae
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(55,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ae
+ac
+cW
+do
+al
+eb
+al
+al
+eb
+al
+al
+fG
+ad
+ae
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(56,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+cX
+dp
+dF
+ec
+eu
+dF
+eR
+cX
+fr
+fH
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(57,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ac
+ad
+ad
+ak
+ad
+ad
+ac
+ad
+fb
+ad
+ad
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(58,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ae
+ad
+dq
+ah
+ah
+ad
+ad
+eS
+ah
+fs
+ad
+ae
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(59,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ad
+dr
+dr
+dr
+ad
+ad
+dr
+dr
+dr
+ad
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+"}
+(60,1,1) = {"
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+ae
+ds
+ds
+ds
+ae
+ae
+ds
+ds
+ds
+ae
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
+aa
"}
diff --git a/_maps/RandomRuins/SpaceRuins/derelict4.dmm b/_maps/RandomRuins/SpaceRuins/derelict4.dmm
index afb3ab7ce44..16fe5e992bf 100644
--- a/_maps/RandomRuins/SpaceRuins/derelict4.dmm
+++ b/_maps/RandomRuins/SpaceRuins/derelict4.dmm
@@ -43,9 +43,9 @@
/area/ruin/unpowered)
"l" = (
/obj/structure/shuttle/engine/propulsion{
- tag = "icon-propulsion (WEST)";
+ dir = 4;
icon_state = "propulsion";
- dir = 8
+ tag = "icon-propulsion (WEST)"
},
/turf/open/floor/plating/airless,
/area/ruin/unpowered)
diff --git a/_maps/RandomRuins/SpaceRuins/intactemptyship.dmm b/_maps/RandomRuins/SpaceRuins/intactemptyship.dmm
index 7ad88ec5e26..89a377d92ed 100644
--- a/_maps/RandomRuins/SpaceRuins/intactemptyship.dmm
+++ b/_maps/RandomRuins/SpaceRuins/intactemptyship.dmm
@@ -23,9 +23,9 @@
/area/ruin/powered/authorship)
"e" = (
/obj/structure/shuttle/engine/propulsion{
- tag = "icon-propulsion (EAST)";
+ dir = 8;
icon_state = "propulsion";
- dir = 4
+ tag = "icon-propulsion (EAST)"
},
/turf/open/space,
/area/ruin/powered/authorship)
diff --git a/_maps/RandomRuins/SpaceRuins/spacebar.dmm b/_maps/RandomRuins/SpaceRuins/spacebar.dmm
index 5b78a2965fe..a7e927670e8 100644
--- a/_maps/RandomRuins/SpaceRuins/spacebar.dmm
+++ b/_maps/RandomRuins/SpaceRuins/spacebar.dmm
@@ -147,7 +147,9 @@
/turf/closed/wall,
/area/ruin/powered/spacebar/bar)
"aG" = (
-/obj/structure/closet/secure_closet/freezer/kitchen,
+/obj/structure/closet/secure_closet/freezer/kitchen{
+ req_access = null
+ },
/turf/open/floor/wood,
/area/ruin/powered/spacebar/bar)
"aH" = (
diff --git a/_maps/RandomZLevels/centcomAway.dmm b/_maps/RandomZLevels/centcomAway.dmm
index 60e2a511467..7f7a312df9f 100644
--- a/_maps/RandomZLevels/centcomAway.dmm
+++ b/_maps/RandomZLevels/centcomAway.dmm
@@ -342,10 +342,10 @@
/turf/open/floor/plating,
/area/awaymission/centcomAway/maint)
"bc" = (
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plating,
/area/awaymission/centcomAway/hangar)
"bd" = (
/turf/open/floor/plasteel/vault{
@@ -398,8 +398,8 @@
id = "XCCHangar1";
name = "XCC Main Hangar"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
/area/awaymission/centcomAway/hangar)
"bm" = (
/turf/open/floor/plasteel/vault{
@@ -998,23 +998,23 @@
/area/awaymission/centcomAway/hangar)
"dn" = (
/obj/structure/closet/crate,
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 9
},
+/turf/open/floor/plating,
/area/awaymission/centcomAway/hangar)
"do" = (
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plating,
/area/awaymission/centcomAway/hangar)
"dp" = (
/obj/structure/closet/crate/large,
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 5
},
+/turf/open/floor/plating,
/area/awaymission/centcomAway/hangar)
"dq" = (
/obj/structure/dresser,
@@ -1045,10 +1045,10 @@
/area/awaymission/centcomAway/hangar)
"dv" = (
/obj/structure/closet/crate,
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plating,
/area/awaymission/centcomAway/hangar)
"dw" = (
/obj/structure/tank_dispenser,
@@ -1085,10 +1085,10 @@
/area/awaymission/centcomAway/hangar)
"dB" = (
/obj/structure/ore_box,
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plating,
/area/awaymission/centcomAway/hangar)
"dC" = (
/obj/structure/table,
@@ -1147,23 +1147,23 @@
/area/awaymission/centcomAway/hangar)
"dM" = (
/obj/structure/closet/crate/large,
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 10
},
+/turf/open/floor/plating,
/area/awaymission/centcomAway/hangar)
"dN" = (
/obj/structure/closet/crate,
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 2
},
+/turf/open/floor/plating,
/area/awaymission/centcomAway/hangar)
"dO" = (
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 6
},
+/turf/open/floor/plating,
/area/awaymission/centcomAway/hangar)
"dP" = (
/turf/open/floor/plasteel/yellow/side{
@@ -1494,8 +1494,8 @@
/area/awaymission/centcomAway/hangar)
"eS" = (
/obj/machinery/telecomms/relay/preset/ruskie,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
/area/awaymission/centcomAway/general)
"eT" = (
/obj/machinery/door/airlock/engineering{
@@ -1841,16 +1841,16 @@
/turf/open/floor/plasteel/white,
/area/awaymission/centcomAway/general)
"fV" = (
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel,
/area/awaymission/centcomAway/general)
"fW" = (
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plasteel,
/area/awaymission/centcomAway/general)
"fX" = (
/turf/open/floor/plasteel/green/corner,
@@ -1958,17 +1958,17 @@
},
/area/awaymission/centcomAway/hangar)
"gn" = (
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 9
},
+/turf/open/floor/plating,
/area/awaymission/centcomAway/hangar)
"go" = (
/obj/structure/table,
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plating,
/area/awaymission/centcomAway/hangar)
"gp" = (
/obj/machinery/shieldgen,
@@ -2151,7 +2151,7 @@
"gS" = (
/turf/open/floor/plating,
/obj/structure/shuttle/engine/propulsion/burst{
- dir = 4
+ dir = 8
},
/turf/closed/wall/mineral/titanium/interior,
/area/awaymission/centcomAway/hangar)
@@ -2450,10 +2450,10 @@
pixel_y = 7;
req_access_txt = "2"
},
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plating,
/area/awaymission/centcomAway/hangar)
"hL" = (
/obj/structure/reagent_dispensers/watertank,
@@ -2465,10 +2465,10 @@
pixel_x = -3;
pixel_y = -2
},
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plating,
/area/awaymission/centcomAway/hangar)
"hN" = (
/obj/structure/rack,
@@ -2637,8 +2637,8 @@
id = "XCCsec3";
name = "XCC Main Access Shutters"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
/area/awaymission/centcomAway/general)
"iu" = (
/obj/structure/flora/ausbushes,
@@ -2685,12 +2685,12 @@
id = "XCCMechs";
name = "XCC Mech Bay"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
/area/awaymission/centcomAway/hangar)
"iz" = (
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
/area/awaymission/centcomAway/hangar)
"iA" = (
/obj/machinery/mass_driver{
@@ -2698,8 +2698,8 @@
id = "XCCMechs";
name = "gravpult"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
/area/awaymission/centcomAway/hangar)
"iB" = (
/turf/open/floor/plasteel/loadingarea{
@@ -3114,8 +3114,8 @@
id = "XCCFerry";
name = "XCC Ferry Hangar"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
/area/awaymission/centcomAway/hangar)
"jM" = (
/obj/structure/chair,
@@ -3153,16 +3153,16 @@
id = "XCCsec1";
name = "XCC Checkpoint 1 Shutters"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
/area/awaymission/centcomAway/general)
"jS" = (
/obj/machinery/door/poddoor/shutters{
id = "XCCsec2";
name = "XCC Checkpoint 2 Shutters"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
/area/awaymission/centcomAway/general)
"jT" = (
/obj/structure/grille,
@@ -3255,10 +3255,10 @@
pixel_y = 7;
req_access_txt = "2"
},
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plating,
/area/awaymission/centcomAway/hangar)
"kg" = (
/obj/machinery/gateway{
@@ -3277,10 +3277,10 @@
/turf/open/floor/plating,
/area/awaymission/centcomAway/hangar)
"kj" = (
-/turf/open/floor/plasteel{
+/obj/effect/turf_decal/delivery{
dir = 6
},
-/obj/effect/turf_decal/delivery{
+/turf/open/floor/plasteel{
dir = 6
},
/area/awaymission/centcomAway/general)
@@ -3752,8 +3752,8 @@
id = "XCCtdomemelee";
name = "XCC Thunderdome Melee"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
/area/awaymission/centcomAway/thunderdome)
"lB" = (
/obj/item/weapon/reagent_containers/glass/rag,
@@ -3807,8 +3807,8 @@
id = "XCCtdome";
name = "XCC Thunderdome"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
/area/awaymission/centcomAway/thunderdome)
"lK" = (
/obj/machinery/igniter,
@@ -3925,8 +3925,8 @@
id = "XCCtdomeguns";
name = "XCC Thunderdome Guns"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
/area/awaymission/centcomAway/thunderdome)
"mc" = (
/obj/item/weapon/soap/nanotrasen,
@@ -4116,51 +4116,51 @@
/turf/open/floor/plasteel/cafeteria,
/area/awaymission/centcomAway/cafe)
"mE" = (
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 5
},
+/turf/open/floor/plating,
/area/awaymission/centcomAway/cafe)
"mF" = (
/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 9
},
+/turf/open/floor/plating,
/area/awaymission/centcomAway/cafe)
"mG" = (
/obj/machinery/shieldgen,
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plating,
/area/awaymission/centcomAway/cafe)
"mH" = (
/obj/machinery/portable_atmospherics/canister/air,
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plating,
/area/awaymission/centcomAway/cafe)
"mI" = (
/obj/machinery/portable_atmospherics/pump,
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 6
},
+/turf/open/floor/plating,
/area/awaymission/centcomAway/cafe)
"mJ" = (
/obj/machinery/portable_atmospherics/canister/air,
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 10
},
+/turf/open/floor/plating,
/area/awaymission/centcomAway/cafe)
"mK" = (
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 2
},
+/turf/open/floor/plating,
/area/awaymission/centcomAway/cafe)
"mL" = (
/obj/structure/table,
diff --git a/_maps/RandomZLevels/moonoutpost19.dmm b/_maps/RandomZLevels/moonoutpost19.dmm
index 60244ade254..96cb32a4e1b 100644
--- a/_maps/RandomZLevels/moonoutpost19.dmm
+++ b/_maps/RandomZLevels/moonoutpost19.dmm
@@ -995,10 +995,10 @@
/obj/item/device/radio/off{
pixel_x = 2
},
+/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel{
heat_capacity = 1e+006
},
-/obj/effect/turf_decal/stripes/line,
/area/awaycontent/a4{
has_gravity = 1;
name = "Syndicate Outpost"
@@ -1017,12 +1017,12 @@
info = "Log 1:
We got our promised supply drop today. We were only meant to get it, what, a week ago? This bloody gateway keeps desyncing itself, and that means subsisting off recycled water and carb packs. No clue where the damn thing connects to on its off days, and HQ say we are 'not to touch it if it isn't linking to command.' We dumped off the assload of crates Jim filled, got our boxes of oxygen, food and drink, and closed the portal.
Log 2:
Damn thing is acting up again. Three days no contact this time. I thought I heard clanking noises from it yesterday. Jim is going on about the NT base or some shit. We've been over this before - They don't know we're here, that engineer was too drunk to recognise his suit, especially since I had it painted orange. He's starting to get annoying. We're safe.
Log 3:
Gateway synced itself up automatically today. I opened it for an instant to spy through it, got a glimpse of the inside of a transport container. Either HQ's redecorating or something, or there's more than two of these things.";
name = "Personal Log"
},
-/turf/open/floor/plasteel{
- heat_capacity = 1e+006
- },
/obj/effect/turf_decal/stripes/line{
dir = 6
},
+/turf/open/floor/plasteel{
+ heat_capacity = 1e+006
+ },
/area/awaycontent/a4{
has_gravity = 1;
name = "Syndicate Outpost"
@@ -1039,12 +1039,12 @@
icon_state = "1-2";
pixel_y = 0
},
-/turf/open/floor/plasteel{
- heat_capacity = 1e+006
- },
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel{
+ heat_capacity = 1e+006
+ },
/area/awaycontent/a4{
has_gravity = 1;
name = "Syndicate Outpost"
@@ -1056,12 +1056,12 @@
/obj/structure/table,
/obj/item/weapon/storage/firstaid/regular,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel{
- heat_capacity = 1e+006
- },
/obj/effect/turf_decal/stripes/line{
dir = 10
},
+/turf/open/floor/plasteel{
+ heat_capacity = 1e+006
+ },
/area/awaycontent/a4{
has_gravity = 1;
name = "Syndicate Outpost"
@@ -1075,10 +1075,10 @@
pixel_y = 4
},
/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel{
heat_capacity = 1e+006
},
-/obj/effect/turf_decal/stripes/line,
/area/awaycontent/a4{
has_gravity = 1;
name = "Syndicate Outpost"
@@ -1350,12 +1350,12 @@
},
/obj/item/clothing/gloves/color/yellow,
/obj/item/device/multitool,
-/turf/open/floor/plating{
- heat_capacity = 1e+006
- },
/obj/effect/turf_decal/stripes/line{
dir = 9
},
+/turf/open/floor/plating{
+ heat_capacity = 1e+006
+ },
/area/awaycontent/a4{
has_gravity = 1;
name = "Syndicate Outpost"
@@ -1370,12 +1370,12 @@
d2 = 4
},
/obj/machinery/computer/monitor,
-/turf/open/floor/plating{
- heat_capacity = 1e+006
- },
/obj/effect/turf_decal/stripes/line{
dir = 5
},
+/turf/open/floor/plating{
+ heat_capacity = 1e+006
+ },
/area/awaycontent/a4{
has_gravity = 1;
name = "Syndicate Outpost"
@@ -1407,24 +1407,24 @@
pixel_y = 23;
req_access = "150"
},
-/turf/open/floor/plating{
- heat_capacity = 1e+006
- },
/obj/effect/turf_decal/stripes/line{
dir = 9
},
+/turf/open/floor/plating{
+ heat_capacity = 1e+006
+ },
/area/awaycontent/a4{
has_gravity = 1;
name = "Syndicate Outpost"
})
"bV" = (
/obj/machinery/portable_atmospherics/canister/air,
-/turf/open/floor/plating{
- heat_capacity = 1e+006
- },
/obj/effect/turf_decal/stripes/line{
dir = 5
},
+/turf/open/floor/plating{
+ heat_capacity = 1e+006
+ },
/area/awaycontent/a4{
has_gravity = 1;
name = "Syndicate Outpost"
@@ -1450,14 +1450,14 @@
dir = 2;
id = "awaysyndie"
},
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
/turf/open/floor/plating{
initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251";
heat_capacity = 1e+006;
temperature = 251
},
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
/area/awaycontent/a4{
has_gravity = 1;
name = "Syndicate Outpost"
@@ -1562,14 +1562,14 @@
pixel_y = 32
},
/obj/structure/alien/weeds/node,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
/turf/open/floor/plasteel{
initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251";
heat_capacity = 1e+006;
temperature = 251
},
-/obj/effect/turf_decal/stripes/corner{
- dir = 8
- },
/area/awaycontent/a4{
has_gravity = 1;
name = "Syndicate Outpost"
@@ -1582,14 +1582,14 @@
pixel_y = 0
},
/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
/turf/open/floor/plasteel{
initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251";
heat_capacity = 1e+006;
temperature = 251
},
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
/area/awaycontent/a4{
has_gravity = 1;
name = "Syndicate Outpost"
@@ -1599,14 +1599,14 @@
pixel_x = 0;
pixel_y = 32
},
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
/turf/open/floor/plasteel{
initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251";
heat_capacity = 1e+006;
temperature = 251
},
-/obj/effect/turf_decal/stripes/corner{
- dir = 4
- },
/area/awaycontent/a4{
has_gravity = 1;
name = "Syndicate Outpost"
@@ -1646,12 +1646,12 @@
info = "Alright, listen up. If you're reading this, I'm either taking a shit or I've been recalled back to Command. Either way, you'll need to know how to restore power. We've stolen this stuff from Nanotrasen, so all the equipment is jury-rigged. We have generators that work on both plasma and uranium, about 50 sheets should power the outpost for quite a while. If the generators aren't working, which is very likely, take the power cell on the desk and put it into the APC in the hallway. That should get the place running, at least for a little while.";
name = "Engineering Instructions"
},
-/turf/open/floor/plating{
- heat_capacity = 1e+006
- },
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plating{
+ heat_capacity = 1e+006
+ },
/area/awaycontent/a4{
has_gravity = 1;
name = "Syndicate Outpost"
@@ -1676,24 +1676,24 @@
icon_state = "0-2";
d2 = 2
},
-/turf/open/floor/plating{
- heat_capacity = 1e+006
- },
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plating{
+ heat_capacity = 1e+006
+ },
/area/awaycontent/a4{
has_gravity = 1;
name = "Syndicate Outpost"
})
"cl" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- heat_capacity = 1e+006
- },
/obj/effect/turf_decal/stripes/corner{
dir = 4
},
+/turf/open/floor/plating{
+ heat_capacity = 1e+006
+ },
/area/awaycontent/a4{
has_gravity = 1;
name = "Syndicate Outpost"
@@ -1708,12 +1708,12 @@
pixel_y = 0;
serial_number = 10
},
-/turf/open/floor/plating{
- heat_capacity = 1e+006
- },
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plating{
+ heat_capacity = 1e+006
+ },
/area/awaycontent/a4{
has_gravity = 1;
name = "Syndicate Outpost"
@@ -1729,14 +1729,14 @@
name = "Syndicate Outpost"
})
"co" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
/turf/open/floor/plasteel{
initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251";
heat_capacity = 1e+006;
temperature = 251
},
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
/area/awaycontent/a4{
has_gravity = 1;
name = "Syndicate Outpost"
@@ -1933,12 +1933,12 @@
"cB" = (
/obj/machinery/space_heater,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- heat_capacity = 1e+006
- },
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plating{
+ heat_capacity = 1e+006
+ },
/area/awaycontent/a4{
has_gravity = 1;
name = "Syndicate Outpost"
@@ -1948,14 +1948,14 @@
dir = 1;
output_dir = 2
},
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
/turf/open/floor/plating{
initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251";
heat_capacity = 1e+006;
temperature = 251
},
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
/area/awaycontent/a4{
has_gravity = 1;
name = "Syndicate Outpost"
@@ -1971,14 +1971,14 @@
})
"cE" = (
/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
/turf/open/floor/plasteel{
initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251";
heat_capacity = 1e+006;
temperature = 251
},
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
/area/awaycontent/a4{
has_gravity = 1;
name = "Syndicate Outpost"
@@ -2085,12 +2085,12 @@
"cM" = (
/obj/item/weapon/storage/box/lights/mixed,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating{
- heat_capacity = 1e+006
- },
/obj/effect/turf_decal/stripes/line{
dir = 10
},
+/turf/open/floor/plating{
+ heat_capacity = 1e+006
+ },
/area/awaycontent/a4{
has_gravity = 1;
name = "Syndicate Outpost"
@@ -2101,12 +2101,12 @@
desc = "A portable generator for emergency backup power.";
name = "P.A.C.M.A.N.-type portable generator"
},
-/turf/open/floor/plating{
- heat_capacity = 1e+006
- },
/obj/effect/turf_decal/stripes/line{
dir = 2
},
+/turf/open/floor/plating{
+ heat_capacity = 1e+006
+ },
/area/awaycontent/a4{
has_gravity = 1;
name = "Syndicate Outpost"
@@ -2118,24 +2118,24 @@
desc = "A portable generator for emergency backup power.";
name = "S.U.P.E.R.P.A.C.M.A.N.-type portable generator"
},
-/turf/open/floor/plating{
- heat_capacity = 1e+006
- },
/obj/effect/turf_decal/stripes/line{
dir = 2
},
+/turf/open/floor/plating{
+ heat_capacity = 1e+006
+ },
/area/awaycontent/a4{
has_gravity = 1;
name = "Syndicate Outpost"
})
"cP" = (
/obj/machinery/portable_atmospherics/scrubber,
-/turf/open/floor/plating{
- heat_capacity = 1e+006
- },
/obj/effect/turf_decal/stripes/line{
dir = 6
},
+/turf/open/floor/plating{
+ heat_capacity = 1e+006
+ },
/area/awaycontent/a4{
has_gravity = 1;
name = "Syndicate Outpost"
@@ -2146,14 +2146,14 @@
layer = 3.1;
name = "mining conveyor"
},
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
/turf/open/floor/plasteel{
initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251";
heat_capacity = 1e+006;
temperature = 251
},
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
/area/awaycontent/a4{
has_gravity = 1;
name = "Syndicate Outpost"
@@ -2229,14 +2229,14 @@
})
"cV" = (
/obj/structure/alien/weeds/node,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
/turf/open/floor/plasteel{
initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251";
heat_capacity = 1e+006;
temperature = 251
},
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
/area/awaycontent/a4{
has_gravity = 1;
name = "Syndicate Outpost"
@@ -2276,15 +2276,15 @@
/obj/structure/alien/weeds{
icon_state = "weeds2"
},
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
/turf/open/floor/plasteel{
initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251";
dir = 1;
heat_capacity = 1e+006;
temperature = 251
},
-/obj/effect/turf_decal/bot{
- dir = 1
- },
/area/awaycontent/a4{
has_gravity = 1;
name = "Syndicate Outpost"
@@ -2370,14 +2370,14 @@
input_dir = 1;
output_dir = 2
},
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
/turf/open/floor/plating{
initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251";
heat_capacity = 1e+006;
temperature = 251
},
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
/area/awaycontent/a4{
has_gravity = 1;
name = "Syndicate Outpost"
@@ -2397,15 +2397,15 @@
amount = 10
},
/obj/structure/alien/weeds,
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
/turf/open/floor/plasteel{
initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251";
dir = 1;
heat_capacity = 1e+006;
temperature = 251
},
-/obj/effect/turf_decal/bot{
- dir = 1
- },
/area/awaycontent/a4{
has_gravity = 1;
name = "Syndicate Outpost"
@@ -2484,27 +2484,27 @@
})
"dm" = (
/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
/turf/open/floor/plasteel{
initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251";
heat_capacity = 1e+006;
temperature = 251
},
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
/area/awaycontent/a4{
has_gravity = 1;
name = "Syndicate Outpost"
})
"dn" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
/turf/open/floor/plasteel{
initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251";
heat_capacity = 1e+006;
temperature = 251
},
-/obj/effect/turf_decal/stripes/corner{
- dir = 4
- },
/area/awaycontent/a4{
has_gravity = 1;
name = "Syndicate Outpost"
@@ -2658,14 +2658,14 @@
icon_state = "bulb-broken";
status = 2
},
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
/turf/open/floor/plating{
initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251";
heat_capacity = 1e+006;
temperature = 251
},
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
/area/awaycontent/a4{
has_gravity = 1;
name = "Syndicate Outpost"
@@ -2686,14 +2686,14 @@
/obj/item/clothing/mask/gas,
/obj/item/weapon/pickaxe/drill,
/obj/item/clothing/head/helmet/space/syndicate/orange,
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
/turf/open/floor/plating{
initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251";
heat_capacity = 1e+006;
temperature = 251
},
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
/area/awaycontent/a4{
has_gravity = 1;
name = "Syndicate Outpost"
@@ -2737,14 +2737,14 @@
pixel_y = -32
},
/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
/turf/open/floor/plating{
initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251";
heat_capacity = 1e+006;
temperature = 251
},
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
/area/awaycontent/a4{
has_gravity = 1;
name = "Syndicate Outpost"
@@ -2764,14 +2764,14 @@
"dD" = (
/obj/structure/rack,
/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
/turf/open/floor/plating{
initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251";
heat_capacity = 1e+006;
temperature = 251
},
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
/area/awaycontent/a4{
has_gravity = 1;
name = "Syndicate Outpost"
@@ -3275,12 +3275,12 @@
/obj/structure/alien/weeds{
icon_state = "weeds2"
},
-/turf/open/floor/plasteel{
- heat_capacity = 1e+006
- },
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel{
+ heat_capacity = 1e+006
+ },
/area/awaycontent/a2{
has_gravity = 1;
name = "MO19 Research"
@@ -3473,12 +3473,12 @@
name = "xenobiology monitor";
network = list("MO19X")
},
-/turf/open/floor/plasteel{
- heat_capacity = 1e+006
- },
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel{
+ heat_capacity = 1e+006
+ },
/area/awaycontent/a2{
has_gravity = 1;
name = "MO19 Research"
@@ -3667,12 +3667,12 @@
/obj/structure/alien/weeds{
icon_state = "weeds2"
},
-/turf/open/floor/plasteel{
- heat_capacity = 1e+006
- },
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel{
+ heat_capacity = 1e+006
+ },
/area/awaycontent/a2{
has_gravity = 1;
name = "MO19 Research"
@@ -4021,12 +4021,12 @@
"fj" = (
/obj/machinery/door/firedoor,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel{
- heat_capacity = 1e+006
- },
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plasteel{
+ heat_capacity = 1e+006
+ },
/area/awaycontent/a2{
has_gravity = 1;
name = "MO19 Research"
@@ -4056,12 +4056,12 @@
/obj/structure/alien/weeds{
icon_state = "weeds1"
},
-/turf/open/floor/plasteel{
- heat_capacity = 1e+006
- },
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel{
+ heat_capacity = 1e+006
+ },
/area/awaycontent/a2{
has_gravity = 1;
name = "MO19 Research"
@@ -4290,12 +4290,12 @@
pixel_x = 0
},
/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel{
- heat_capacity = 1e+006
- },
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plasteel{
+ heat_capacity = 1e+006
+ },
/area/awaycontent/a2{
has_gravity = 1;
name = "MO19 Research"
@@ -4340,12 +4340,12 @@
/obj/item/weapon/shard{
icon_state = "small"
},
-/turf/open/floor/plasteel{
- heat_capacity = 1e+006
- },
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel{
+ heat_capacity = 1e+006
+ },
/area/awaycontent/a2{
has_gravity = 1;
name = "MO19 Research"
@@ -4681,12 +4681,12 @@
pixel_x = 0;
pixel_y = -29
},
-/turf/open/floor/plasteel{
- heat_capacity = 1e+006
- },
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plasteel{
+ heat_capacity = 1e+006
+ },
/area/awaycontent/a2{
has_gravity = 1;
name = "MO19 Research"
@@ -4697,12 +4697,12 @@
},
/obj/structure/closet/l3closet/scientist,
/obj/structure/alien/weeds,
-/turf/open/floor/plasteel{
- heat_capacity = 1e+006
- },
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel{
+ heat_capacity = 1e+006
+ },
/area/awaycontent/a2{
has_gravity = 1;
name = "MO19 Research"
@@ -4875,35 +4875,35 @@
/obj/structure/alien/weeds{
icon_state = "weeds2"
},
-/turf/open/floor/plasteel/white{
- heat_capacity = 1e+006
- },
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel/white{
+ heat_capacity = 1e+006
+ },
/area/awaycontent/a2{
has_gravity = 1;
name = "MO19 Research"
})
"go" = (
/obj/structure/alien/weeds/node,
-/turf/open/floor/plasteel/white{
- heat_capacity = 1e+006
- },
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel/white{
+ heat_capacity = 1e+006
+ },
/area/awaycontent/a2{
has_gravity = 1;
name = "MO19 Research"
})
"gp" = (
-/turf/open/floor/plasteel/white{
- heat_capacity = 1e+006
- },
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel/white{
+ heat_capacity = 1e+006
+ },
/area/awaycontent/a2{
has_gravity = 1;
name = "MO19 Research"
@@ -4914,12 +4914,12 @@
/obj/item/device/mmi,
/obj/item/device/mmi,
/obj/structure/alien/weeds,
-/turf/open/floor/plasteel/white{
- heat_capacity = 1e+006
- },
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel/white{
+ heat_capacity = 1e+006
+ },
/area/awaycontent/a2{
has_gravity = 1;
name = "MO19 Research"
@@ -4944,12 +4944,12 @@
name = "Acid-Proof disposal pipe"
},
/obj/structure/alien/weeds,
-/turf/open/floor/plasteel{
- heat_capacity = 1e+006
- },
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel{
+ heat_capacity = 1e+006
+ },
/area/awaycontent/a2{
has_gravity = 1;
name = "MO19 Research"
@@ -5231,12 +5231,12 @@
},
/obj/item/weapon/pen,
/obj/item/device/radio/off,
-/turf/open/floor/plasteel{
- heat_capacity = 1e+006
- },
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel{
+ heat_capacity = 1e+006
+ },
/area/awaycontent/a2{
has_gravity = 1;
name = "MO19 Research"
@@ -5446,12 +5446,12 @@
/obj/structure/alien/weeds{
icon_state = "weeds2"
},
-/turf/open/floor/plasteel{
- heat_capacity = 1e+006
- },
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel{
+ heat_capacity = 1e+006
+ },
/area/awaycontent/a2{
has_gravity = 1;
name = "MO19 Research"
@@ -6043,11 +6043,11 @@
layer = 2.9;
name = "Acid-Proof biohazard containment door"
},
+/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel{
heat_capacity = 1e+006;
name = "floor"
},
-/obj/effect/turf_decal/delivery,
/area/awaycontent/a2{
has_gravity = 1;
name = "MO19 Research"
@@ -6237,12 +6237,12 @@
dir = 8
},
/obj/item/weapon/circuitboard/computer/teleporter,
-/turf/open/floor/plasteel/white{
- heat_capacity = 1e+006
- },
/obj/effect/turf_decal/stripes/line{
dir = 9
},
+/turf/open/floor/plasteel/white{
+ heat_capacity = 1e+006
+ },
/area/awaycontent/a2{
has_gravity = 1;
name = "MO19 Research"
@@ -6252,24 +6252,24 @@
/obj/item/device/paicard{
pixel_x = 4
},
-/turf/open/floor/plasteel/white{
- heat_capacity = 1e+006
- },
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel/white{
+ heat_capacity = 1e+006
+ },
/area/awaycontent/a2{
has_gravity = 1;
name = "MO19 Research"
})
"id" = (
/obj/structure/rack,
-/turf/open/floor/plasteel/white{
- heat_capacity = 1e+006
- },
/obj/effect/turf_decal/stripes/line{
dir = 5
},
+/turf/open/floor/plasteel/white{
+ heat_capacity = 1e+006
+ },
/area/awaycontent/a2{
has_gravity = 1;
name = "MO19 Research"
@@ -6462,12 +6462,12 @@
name = "MO19 Research"
})
"ir" = (
-/turf/open/floor/plasteel/white{
- heat_capacity = 1e+006
- },
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel/white{
+ heat_capacity = 1e+006
+ },
/area/awaycontent/a2{
has_gravity = 1;
name = "MO19 Research"
@@ -6496,12 +6496,12 @@
info = "19 06 2554
I fucking knew it. There was a major breach, that idiotic force field failed and the xenomorphs rushed out and took out the scientists. I've managed to make it to my office and closed the blast doors. I can hear them trying to pry open the doors. Probably don't have long. I have no clue what has happened to the rest of the crew, for all I know they've been killed to produce more of the fucks.";
name = "Hastily Written Note"
},
-/turf/open/floor/plasteel/white{
- heat_capacity = 1e+006
- },
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plasteel/white{
+ heat_capacity = 1e+006
+ },
/area/awaycontent/a2{
has_gravity = 1;
name = "MO19 Research"
@@ -6515,24 +6515,24 @@
icon_state = "shower";
name = "emergency shower"
},
-/turf/open/floor/plasteel/white{
- heat_capacity = 1e+006
- },
/obj/effect/turf_decal/stripes/line{
dir = 9
},
+/turf/open/floor/plasteel/white{
+ heat_capacity = 1e+006
+ },
/area/awaycontent/a2{
has_gravity = 1;
name = "MO19 Research"
})
"iv" = (
/obj/structure/closet/firecloset,
-/turf/open/floor/plasteel/white{
- heat_capacity = 1e+006
- },
/obj/effect/turf_decal/stripes/line{
dir = 5
},
+/turf/open/floor/plasteel/white{
+ heat_capacity = 1e+006
+ },
/area/awaycontent/a2{
has_gravity = 1;
name = "MO19 Research"
@@ -6714,24 +6714,24 @@
/obj/structure/window/reinforced{
dir = 8
},
-/turf/open/floor/plasteel/white{
- heat_capacity = 1e+006
- },
/obj/effect/turf_decal/stripes/line{
dir = 10
},
+/turf/open/floor/plasteel/white{
+ heat_capacity = 1e+006
+ },
/area/awaycontent/a2{
has_gravity = 1;
name = "MO19 Research"
})
"iL" = (
/obj/machinery/light/small,
-/turf/open/floor/plasteel/white{
- heat_capacity = 1e+006
- },
/obj/effect/turf_decal/stripes/line{
dir = 2
},
+/turf/open/floor/plasteel/white{
+ heat_capacity = 1e+006
+ },
/area/awaycontent/a2{
has_gravity = 1;
name = "MO19 Research"
@@ -6742,12 +6742,12 @@
/obj/item/device/taperecorder{
pixel_x = -3
},
-/turf/open/floor/plasteel/white{
- heat_capacity = 1e+006
- },
/obj/effect/turf_decal/stripes/line{
dir = 6
},
+/turf/open/floor/plasteel/white{
+ heat_capacity = 1e+006
+ },
/area/awaycontent/a2{
has_gravity = 1;
name = "MO19 Research"
@@ -6760,12 +6760,12 @@
pixel_y = 2
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel/white{
- heat_capacity = 1e+006
- },
/obj/effect/turf_decal/stripes/line{
dir = 10
},
+/turf/open/floor/plasteel/white{
+ heat_capacity = 1e+006
+ },
/area/awaycontent/a2{
has_gravity = 1;
name = "MO19 Research"
@@ -6773,12 +6773,12 @@
"iO" = (
/obj/structure/closet/emcloset,
/obj/machinery/light/small,
-/turf/open/floor/plasteel/white{
- heat_capacity = 1e+006
- },
/obj/effect/turf_decal/stripes/line{
dir = 6
},
+/turf/open/floor/plasteel/white{
+ heat_capacity = 1e+006
+ },
/area/awaycontent/a2{
has_gravity = 1;
name = "MO19 Research"
@@ -8390,12 +8390,12 @@
/obj/structure/chair{
dir = 8
},
-/turf/open/floor/plasteel{
- heat_capacity = 1e+006
- },
/obj/effect/turf_decal/stripes/corner{
dir = 2
},
+/turf/open/floor/plasteel{
+ heat_capacity = 1e+006
+ },
/area/awaycontent/a1{
has_gravity = 1;
name = "MO19 Arrivals"
@@ -8685,8 +8685,8 @@
})
"lE" = (
/obj/structure/shuttle/engine/propulsion{
- icon_state = "burst_r";
- dir = 8
+ dir = 4;
+ icon_state = "burst_r"
},
/turf/open/floor/plating/asteroid{
initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251";
@@ -8697,23 +8697,23 @@
name = "MO19 Arrivals"
})
"lF" = (
-/turf/open/floor/plasteel{
- heat_capacity = 1e+006
- },
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel{
+ heat_capacity = 1e+006
+ },
/area/awaycontent/a1{
has_gravity = 1;
name = "MO19 Arrivals"
})
"lG" = (
-/turf/open/floor/plasteel{
- heat_capacity = 1e+006
- },
/obj/effect/turf_decal/stripes/corner{
dir = 2
},
+/turf/open/floor/plasteel{
+ heat_capacity = 1e+006
+ },
/area/awaycontent/a1{
has_gravity = 1;
name = "MO19 Arrivals"
@@ -8721,12 +8721,12 @@
"lH" = (
/obj/structure/table,
/obj/item/weapon/storage/fancy/cigarettes/dromedaryco,
-/turf/open/floor/plasteel{
- heat_capacity = 1e+006
- },
/obj/effect/turf_decal/stripes/line{
dir = 6
},
+/turf/open/floor/plasteel{
+ heat_capacity = 1e+006
+ },
/area/awaycontent/a1{
has_gravity = 1;
name = "MO19 Arrivals"
@@ -8953,8 +8953,8 @@
})
"mf" = (
/obj/structure/shuttle/engine/propulsion{
- icon_state = "burst_l";
- dir = 8
+ dir = 4;
+ icon_state = "burst_l"
},
/turf/open/floor/plating/asteroid{
initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251";
@@ -8965,12 +8965,12 @@
name = "MO19 Arrivals"
})
"mg" = (
-/turf/open/floor/plasteel{
- heat_capacity = 1e+006
- },
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plasteel{
+ heat_capacity = 1e+006
+ },
/area/awaycontent/a1{
has_gravity = 1;
name = "MO19 Arrivals"
@@ -9159,12 +9159,12 @@
})
"mw" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel{
- heat_capacity = 1e+006
- },
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plasteel{
+ heat_capacity = 1e+006
+ },
/area/awaycontent/a1{
has_gravity = 1;
name = "MO19 Arrivals"
@@ -9366,12 +9366,12 @@
dir = 8;
network = list("MO19")
},
-/turf/open/floor/plasteel{
- heat_capacity = 1e+006
- },
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plasteel{
+ heat_capacity = 1e+006
+ },
/area/awaycontent/a1{
has_gravity = 1;
name = "MO19 Arrivals"
@@ -9699,12 +9699,12 @@
})
"no" = (
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel{
- heat_capacity = 1e+006
- },
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel{
+ heat_capacity = 1e+006
+ },
/area/awaycontent/a1{
has_gravity = 1;
name = "MO19 Arrivals"
diff --git a/_maps/RandomZLevels/research.dmm b/_maps/RandomZLevels/research.dmm
index e81eca35a52..123561932b2 100644
--- a/_maps/RandomZLevels/research.dmm
+++ b/_maps/RandomZLevels/research.dmm
@@ -479,32 +479,32 @@
/obj/machinery/gateway{
dir = 9
},
-/turf/open/floor/plasteel/black{
- tag = "icon-warndark (NORTHWEST)"
- },
/obj/effect/turf_decal/stripes/line{
dir = 9
},
+/turf/open/floor/plasteel/black{
+ tag = "icon-warndark (NORTHWEST)"
+ },
/area/awaymission/research/interior/gateway)
"bB" = (
/obj/machinery/gateway{
dir = 1
},
-/turf/open/floor/plasteel/black,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel/black,
/area/awaymission/research/interior/gateway)
"bC" = (
/obj/machinery/gateway{
dir = 5
},
-/turf/open/floor/plasteel/black{
- tag = "icon-warndark (NORTHEAST)"
- },
/obj/effect/turf_decal/stripes/line{
dir = 5
},
+/turf/open/floor/plasteel/black{
+ tag = "icon-warndark (NORTHEAST)"
+ },
/area/awaymission/research/interior/gateway)
"bD" = (
/obj/structure/cable{
@@ -623,10 +623,10 @@
/obj/machinery/gateway{
dir = 8
},
-/turf/open/floor/plasteel/black,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel/black,
/area/awaymission/research/interior/gateway)
"bT" = (
/obj/machinery/gateway/centeraway{
@@ -638,12 +638,12 @@
/obj/machinery/gateway{
dir = 4
},
-/turf/open/floor/plasteel/black{
- tag = "icon-warndark (EAST)"
- },
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plasteel/black{
+ tag = "icon-warndark (EAST)"
+ },
/area/awaymission/research/interior/gateway)
"bV" = (
/obj/structure/sign/nosmoking_1{
@@ -677,31 +677,31 @@
/obj/machinery/gateway{
dir = 10
},
-/turf/open/floor/plasteel/black{
- tag = "icon-warndark (SOUTHWEST)"
- },
/obj/effect/turf_decal/stripes/line{
dir = 10
},
+/turf/open/floor/plasteel/black{
+ tag = "icon-warndark (SOUTHWEST)"
+ },
/area/awaymission/research/interior/gateway)
"bZ" = (
/obj/machinery/gateway,
/obj/effect/landmark{
name = "awaystart"
},
-/turf/open/floor/plasteel/black,
/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/black,
/area/awaymission/research/interior/gateway)
"ca" = (
/obj/machinery/gateway{
dir = 6
},
-/turf/open/floor/plasteel/black{
- tag = "icon-warndark (SOUTHEAST)"
- },
/obj/effect/turf_decal/stripes/line{
dir = 6
},
+/turf/open/floor/plasteel/black{
+ tag = "icon-warndark (SOUTHEAST)"
+ },
/area/awaymission/research/interior/gateway)
"cb" = (
/obj/machinery/power/apc{
@@ -4575,9 +4575,9 @@
"mf" = (
/turf/open/floor/plating/asteroid/airless,
/obj/structure/shuttle/engine/propulsion/burst{
- tag = "icon-propulsion (WEST)";
+ dir = 4;
icon_state = "propulsion";
- dir = 8
+ tag = "icon-propulsion (WEST)"
},
/turf/closed/wall/mineral/titanium/interior,
/area/awaymission/research/exterior)
diff --git a/_maps/RandomZLevels/spacebattle.dmm b/_maps/RandomZLevels/spacebattle.dmm
index ba08a341422..8fb62f253dc 100644
--- a/_maps/RandomZLevels/spacebattle.dmm
+++ b/_maps/RandomZLevels/spacebattle.dmm
@@ -581,8 +581,8 @@
/area/awaymission/spacebattle/cruiser)
"bX" = (
/obj/structure/shuttle/engine/propulsion{
- icon_state = "burst_l";
- dir = 4
+ dir = 8;
+ icon_state = "burst_l"
},
/turf/open/space,
/area/awaymission/spacebattle/cruiser)
@@ -626,8 +626,8 @@
/area/awaymission/spacebattle/cruiser)
"cf" = (
/obj/structure/shuttle/engine/propulsion{
- icon_state = "propulsion";
- dir = 4
+ dir = 8;
+ icon_state = "propulsion"
},
/turf/open/space,
/area/awaymission/spacebattle/cruiser)
@@ -936,8 +936,8 @@
/area/awaymission/spacebattle/cruiser)
"df" = (
/obj/structure/shuttle/engine/propulsion{
- icon_state = "propulsion_r";
- dir = 4
+ dir = 8;
+ icon_state = "propulsion_r"
},
/turf/open/space,
/area/awaymission/spacebattle/cruiser)
@@ -1067,10 +1067,10 @@
},
/area/awaymission/spacebattle/cruiser)
"dC" = (
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 5
},
+/turf/open/floor/plasteel,
/area/awaymission/spacebattle/cruiser)
"dD" = (
/obj/effect/decal/cleanable/blood,
@@ -1189,10 +1189,10 @@
},
/area/awaymission/spacebattle/cruiser)
"dW" = (
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plasteel,
/area/awaymission/spacebattle/cruiser)
"dX" = (
/obj/effect/mob_spawn/human/engineer/rig{
@@ -1287,10 +1287,10 @@
/area/awaymission/spacebattle/cruiser)
"ej" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 6
},
+/turf/open/floor/plasteel,
/area/awaymission/spacebattle/cruiser)
"ek" = (
/obj/structure/grille,
@@ -2247,8 +2247,8 @@
/area/awaymission/spacebattle/syndicate7)
"hm" = (
/obj/structure/shuttle/engine/propulsion{
- icon_state = "propulsion_r";
- dir = 8
+ dir = 4;
+ icon_state = "propulsion_r"
},
/turf/open/space,
/area/awaymission/spacebattle/syndicate7)
@@ -2273,10 +2273,10 @@
/area/awaymission/spacebattle/cruiser)
"hr" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 5
},
+/turf/open/floor/plasteel,
/area/awaymission/spacebattle/cruiser)
"hs" = (
/obj/structure/girder,
@@ -2297,8 +2297,8 @@
/area/awaymission/spacebattle/syndicate7)
"hv" = (
/obj/structure/shuttle/engine/propulsion{
- icon_state = "propulsion_l";
- dir = 8
+ dir = 4;
+ icon_state = "propulsion_l"
},
/turf/open/space,
/area/awaymission/spacebattle/syndicate7)
@@ -2387,10 +2387,10 @@
/turf/open/floor/plasteel,
/area/awaymission/spacebattle/cruiser)
"hM" = (
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 6
},
+/turf/open/floor/plasteel,
/area/awaymission/spacebattle/cruiser)
"hN" = (
/obj/structure/rack,
@@ -2596,8 +2596,8 @@
/area/awaymission/spacebattle/cruiser)
"iv" = (
/obj/structure/shuttle/engine/propulsion{
- icon_state = "burst_r";
- dir = 4
+ dir = 8;
+ icon_state = "burst_r"
},
/turf/open/space,
/area/awaymission/spacebattle/cruiser)
diff --git a/_maps/map_files/Deltastation/DeltaStation2.dmm b/_maps/map_files/Deltastation/DeltaStation2.dmm
index 3890e02e0c9..e6f01837b63 100644
--- a/_maps/map_files/Deltastation/DeltaStation2.dmm
+++ b/_maps/map_files/Deltastation/DeltaStation2.dmm
@@ -1341,11 +1341,13 @@
/area/mining_construction)
"acy" = (
/obj/effect/decal/cleanable/dirt,
-/obj/structure/mining_shuttle_beacon,
/obj/item/device/radio/intercom{
name = "Station Intercom";
pixel_y = 26
},
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-22"
+ },
/turf/open/floor/plasteel/yellow/side{
dir = 5
},
@@ -1450,7 +1452,7 @@
/turf/open/floor/grass,
/area/shuttle/arrival)
"acK" = (
-/obj/machinery/vending/snack,
+/obj/machinery/vending/snack/random,
/obj/machinery/light{
dir = 1
},
@@ -1567,7 +1569,7 @@
/turf/closed/wall/shuttle/smooth/nodiagonal,
/area/shuttle/arrival)
"acY" = (
-/obj/machinery/vending/cola,
+/obj/machinery/vending/cola/random,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
/area/hallway/secondary/entry{
@@ -1701,9 +1703,7 @@
/turf/open/floor/plasteel/neutral,
/area/mining_construction)
"adl" = (
-/obj/item/weapon/twohanded/required/kirbyplants{
- icon_state = "plant-22"
- },
+/obj/machinery/computer/camera_advanced/base_construction,
/turf/open/floor/plasteel/yellow/side{
dir = 4
},
@@ -1839,9 +1839,10 @@
width = 9
},
/obj/machinery/bluespace_beacon,
-/obj/machinery/computer/shuttle/auxillary_base{
+/obj/docking_port/mobile/auxillary_base{
pixel_y = 0
},
+/obj/machinery/computer/auxillary_base,
/turf/closed/wall,
/area/shuttle/auxillary_base)
"adz" = (
@@ -2600,14 +2601,14 @@
/turf/open/floor/plating,
/area/maintenance/starboard/fore_starboard_maintenance)
"afd" = (
-/obj/machinery/vending/snack,
+/obj/machinery/vending/snack/random,
/obj/effect/decal/cleanable/cobweb,
/turf/open/floor/plasteel/vault{
dir = 4
},
/area/maintenance/starboard/fore_starboard_maintenance)
"afe" = (
-/obj/machinery/vending/cola,
+/obj/machinery/vending/cola/random,
/obj/effect/decal/cleanable/dirt,
/turf/open/floor/plasteel/vault{
dir = 4
@@ -7341,7 +7342,8 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/atmos{
name = "Reflector Access";
- req_access_txt = "24"
+ req_access_txt = "0";
+ req_one_access_txt = "24;10"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/stripes/line{
@@ -7364,7 +7366,8 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/atmos{
name = "Reflector Access";
- req_access_txt = "24"
+ req_access_txt = "0";
+ req_one_access_txt = "24;10"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/stripes/line{
@@ -7565,7 +7568,7 @@
name = "Arrivals"
})
"apg" = (
-/obj/machinery/vending/cola,
+/obj/machinery/vending/cola/random,
/obj/effect/decal/cleanable/dirt,
/obj/machinery/camera{
c_tag = "Arrivals - Aft";
@@ -7578,7 +7581,7 @@
name = "Arrivals"
})
"aph" = (
-/obj/machinery/vending/snack,
+/obj/machinery/vending/snack/random,
/obj/item/device/radio/intercom{
name = "Station Intercom";
pixel_y = 26
@@ -11354,14 +11357,7 @@
name = "Atmospherics Engine"
})
"avQ" = (
-/obj/machinery/power/supermatter_shard{
- anchored = 1;
- base_icon_state = "darkmatter";
- explosion_power = 20;
- gasefficency = 0.15;
- icon_state = "darkmatter";
- name = "supermatter crystal"
- },
+/obj/machinery/power/supermatter_shard/crystal,
/turf/open/floor/engine,
/area/engine/gravity_generator{
name = "Atmospherics Engine"
@@ -12464,8 +12460,10 @@
})
"axR" = (
/obj/machinery/door/airlock/glass_atmos{
+ heat_proof = 1;
name = "Supermatter Chamber";
- req_access_txt = "24"
+ req_access_txt = "0";
+ req_one_access_txt = "24;10"
},
/turf/open/floor/engine,
/area/engine/gravity_generator{
@@ -14283,7 +14281,10 @@
},
/obj/effect/decal/cleanable/dirt,
/obj/machinery/airalarm{
- pixel_y = 23
+ locked = 0;
+ pixel_y = 23;
+ req_access = null;
+ req_one_access_txt = "24;10"
},
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -16799,10 +16800,6 @@
"aFc" = (
/obj/machinery/door/firedoor,
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/airlock/atmos{
- name = "Atmospherics Access";
- req_access_txt = "24"
- },
/obj/structure/cable/white{
tag = "icon-1-2";
icon_state = "1-2"
@@ -16811,6 +16808,11 @@
/obj/effect/turf_decal/stripes/line{
dir = 2
},
+/obj/machinery/door/airlock/atmos{
+ name = "Atmospherics Access";
+ req_access_txt = "0";
+ req_one_access_txt = "24;10"
+ },
/turf/open/floor/plasteel{
tag = "icon-plasteel_warn_side (EAST)"
},
@@ -16836,14 +16838,15 @@
tag = "icon-1-2";
icon_state = "1-2"
},
-/obj/machinery/door/airlock/atmos{
- name = "Atmospherics Engine Access";
- req_access_txt = "24"
- },
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/line{
dir = 2
},
+/obj/machinery/door/airlock/atmos{
+ name = "Atmospherics Engine Access";
+ req_access_txt = "0";
+ req_one_access_txt = "24;10"
+ },
/turf/open/floor/plasteel{
tag = "icon-plasteel_warn_side (EAST)"
},
@@ -16891,7 +16894,8 @@
},
/obj/machinery/door/airlock/glass_atmos{
name = "Power Monitoring";
- req_access_txt = "24"
+ req_access_txt = "0";
+ req_one_access_txt = "24;10"
},
/obj/effect/decal/cleanable/dirt,
/obj/effect/turf_decal/stripes/line{
@@ -19053,13 +19057,14 @@
"aJa" = (
/obj/machinery/door/firedoor,
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/door/airlock/atmos{
- name = "Atmospherics Access";
- req_access_txt = "24"
- },
/obj/effect/turf_decal/stripes/line{
dir = 2
},
+/obj/machinery/door/airlock/atmos{
+ name = "Atmospherics Access";
+ req_access_txt = "0";
+ req_one_access_txt = "24;10"
+ },
/turf/open/floor/plasteel{
tag = "icon-plasteel_warn_side (EAST)"
},
@@ -19075,13 +19080,14 @@
tag = "icon-1-2";
icon_state = "1-2"
},
-/obj/machinery/door/airlock/atmos{
- name = "Atmospherics Engine Access";
- req_access_txt = "24"
- },
/obj/effect/turf_decal/stripes/line{
dir = 2
},
+/obj/machinery/door/airlock/atmos{
+ name = "Atmospherics Engine Access";
+ req_access_txt = "0";
+ req_one_access_txt = "24;10"
+ },
/turf/open/floor/plasteel{
tag = "icon-plasteel_warn_side (EAST)"
},
@@ -24867,7 +24873,8 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_atmos{
name = "Atmospherics Storage";
- req_access_txt = "24"
+ req_access_txt = "0";
+ req_one_access_txt = "24;10"
},
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -26661,7 +26668,7 @@
/area/security/prison)
"aVZ" = (
/obj/structure/shuttle/engine/propulsion/burst{
- dir = 4
+ dir = 8
},
/turf/closed/wall/mineral/titanium,
/area/shuttle/pod_3)
@@ -27534,10 +27541,7 @@
/obj/effect/turf_decal/stripes/end{
dir = 8
},
-/turf/open/floor/plasteel/white{
- tag = "icon-white_warn_end (WEST)";
- icon_state = "white_warn_end"
- },
+/turf/open/space,
/area/shuttle/pod_3)
"aXH" = (
/obj/structure/chair{
@@ -27553,10 +27557,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 2
},
-/turf/open/floor/plasteel/white{
- tag = "icon-white_warn_side (EAST)";
- icon_state = "white_warn_side"
- },
+/turf/open/floor/plasteel/white,
/area/shuttle/pod_3)
"aXI" = (
/obj/structure/chair{
@@ -27576,10 +27577,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 2
},
-/turf/open/floor/plasteel/white{
- tag = "icon-white_warn_side (EAST)";
- icon_state = "white_warn_side"
- },
+/turf/open/floor/plasteel/white,
/area/shuttle/pod_3)
"aXJ" = (
/obj/structure/grille,
@@ -29945,7 +29943,8 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_atmos{
name = "Atmospherics Storage";
- req_access_txt = "24"
+ req_access_txt = "0";
+ req_one_access_txt = "24;10"
},
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -30331,24 +30330,17 @@
icon_state = "manifold";
dir = 4
},
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
/turf/open/floor/plasteel,
/area/quartermaster/miningdock{
name = "\improper Mining Office"
})
"bcW" = (
-/obj/machinery/suit_storage_unit/mining/eva,
-/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
/area/quartermaster/miningdock{
name = "\improper Mining Office"
})
"bcX" = (
/obj/effect/decal/cleanable/dirt,
-/obj/machinery/suit_storage_unit/mining/eva,
-/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
/area/quartermaster/miningdock{
name = "\improper Mining Office"
@@ -30460,7 +30452,7 @@
},
/obj/machinery/door/airlock/shuttle{
name = "Mining Shuttle Airlock";
- req_access_txt = "48"
+ req_access_txt = "0"
},
/obj/effect/turf_decal/stripes/line{
dir = 8
@@ -38774,10 +38766,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 2
},
-/turf/open/floor/plasteel/white{
- tag = "icon-white_warn_side (EAST)";
- icon_state = "white_warn_side"
- },
+/turf/open/floor/plasteel/white,
/area/shuttle/labor)
"brX" = (
/turf/closed/wall/mineral/titanium/nodiagonal,
@@ -38790,10 +38779,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 2
},
-/turf/open/floor/plasteel/white{
- tag = "icon-white_warn_side (EAST)";
- icon_state = "white_warn_side"
- },
+/turf/open/floor/plasteel/white,
/area/shuttle/labor)
"brZ" = (
/obj/structure/closet/emcloset,
@@ -39097,10 +39083,6 @@
/area/atmos)
"bsB" = (
/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/atmos{
- name = "Atmospherics Access";
- req_access_txt = "24"
- },
/obj/structure/cable/white{
tag = "icon-1-2";
icon_state = "1-2"
@@ -39108,6 +39090,11 @@
/obj/effect/turf_decal/stripes/line{
dir = 2
},
+/obj/machinery/door/airlock/atmos{
+ name = "Atmospherics Access";
+ req_access_txt = "0";
+ req_one_access_txt = "24;10"
+ },
/turf/open/floor/plasteel{
tag = "icon-plasteel_warn_side (EAST)"
},
@@ -40716,7 +40703,7 @@
/turf/open/floor/plasteel,
/area/engine/break_room)
"bvp" = (
-/obj/machinery/vending/cola,
+/obj/machinery/vending/cola/random,
/obj/machinery/newscaster{
pixel_x = 32
},
@@ -40729,10 +40716,6 @@
/area/engine/break_room)
"bvr" = (
/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/atmos{
- name = "Atmospherics Access";
- req_access_txt = "24"
- },
/obj/structure/cable/white{
tag = "icon-1-2";
icon_state = "1-2"
@@ -40740,6 +40723,11 @@
/obj/effect/turf_decal/stripes/line{
dir = 2
},
+/obj/machinery/door/airlock/atmos{
+ name = "Atmospherics Access";
+ req_access_txt = "0";
+ req_one_access_txt = "24;10"
+ },
/turf/open/floor/plasteel{
tag = "icon-plasteel_warn_side (EAST)"
},
@@ -41754,7 +41742,7 @@
/turf/open/floor/plasteel/redyellow,
/area/engine/break_room)
"bwW" = (
-/obj/machinery/vending/snack,
+/obj/machinery/vending/snack/random,
/turf/open/floor/plasteel/redyellow,
/area/engine/break_room)
"bwX" = (
@@ -42088,7 +42076,7 @@
},
/area/bridge)
"bxA" = (
-/obj/machinery/vending/cola,
+/obj/machinery/vending/cola/random,
/turf/open/floor/plasteel/darkblue/side{
tag = "icon-darkblue (NORTH)";
icon_state = "darkblue";
@@ -42096,7 +42084,7 @@
},
/area/bridge)
"bxB" = (
-/obj/machinery/vending/snack,
+/obj/machinery/vending/snack/random,
/turf/open/floor/plasteel/darkblue/side{
tag = "icon-darkblue (NORTH)";
icon_state = "darkblue";
@@ -58030,7 +58018,7 @@
/turf/open/floor/plasteel/neutral/corner,
/area/hallway/primary/central)
"bYw" = (
-/obj/machinery/vending/snack,
+/obj/machinery/vending/snack/random,
/obj/machinery/light{
icon_state = "tube1";
dir = 8
@@ -58385,10 +58373,6 @@
/area/engine/engineering)
"bZg" = (
/obj/structure/cable/white,
-/obj/machinery/power/emitter{
- anchored = 1;
- state = 2
- },
/obj/effect/turf_decal/stripes/line{
dir = 1
},
@@ -58447,6 +58431,7 @@
},
/obj/structure/fans/tiny,
/obj/effect/turf_decal/delivery,
+/obj/structure/barricade/wooden,
/turf/open/floor/plasteel,
/area/engine/engineering)
"bZm" = (
@@ -61646,6 +61631,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/obj/structure/barricade/wooden,
/turf/open/floor/plating,
/area/engine/engineering)
"ceF" = (
@@ -61790,7 +61776,7 @@
/turf/open/floor/plasteel/neutral/corner,
/area/hallway/primary/central)
"ceX" = (
-/obj/machinery/vending/cola,
+/obj/machinery/vending/cola/random,
/obj/structure/sign/poster{
icon_state = "poster8_legit";
pixel_y = -32;
@@ -62301,7 +62287,6 @@
/turf/open/space,
/area/space)
"cfU" = (
-/obj/machinery/power/grounding_rod,
/obj/effect/turf_decal/stripes/corner{
dir = 4
},
@@ -62314,7 +62299,6 @@
/turf/open/floor/plating/airless,
/area/space)
"cfW" = (
-/obj/machinery/power/tesla_coil,
/obj/structure/cable,
/obj/effect/turf_decal/stripes/line{
dir = 1
@@ -62322,7 +62306,6 @@
/turf/open/floor/plating/airless,
/area/space)
"cfX" = (
-/obj/machinery/power/grounding_rod,
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -62359,6 +62342,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/obj/structure/barricade/wooden,
/turf/open/floor/plating,
/area/engine/engineering)
"cfZ" = (
@@ -63066,6 +63050,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/obj/structure/barricade/wooden,
/turf/open/floor/plating,
/area/engine/engineering)
"chu" = (
@@ -64053,7 +64038,6 @@
/turf/open/space,
/area/space)
"ciY" = (
-/obj/machinery/power/tesla_coil,
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
@@ -64084,6 +64068,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 2
},
+/obj/structure/barricade/wooden,
/turf/open/floor/plasteel{
tag = "icon-plasteel_warn_side (EAST)"
},
@@ -64807,6 +64792,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 9
},
+/obj/structure/barricade/wooden,
/turf/open/floor/plating,
/area/engine/engineering)
"ckw" = (
@@ -65465,14 +65451,10 @@
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/obj/structure/barricade/wooden,
/turf/open/floor/plating,
/area/engine/engineering)
"clN" = (
-/obj/structure/particle_accelerator/particle_emitter/left{
- tag = "icon-emitter_left (WEST)";
- icon_state = "emitter_left";
- dir = 8
- },
/turf/open/floor/plating,
/area/engine/engineering)
"clO" = (
@@ -65482,7 +65464,6 @@
/turf/open/floor/plating,
/area/engine/engineering)
"clP" = (
-/obj/machinery/particle_accelerator/control_box,
/obj/structure/cable,
/turf/open/floor/plating,
/area/engine/engineering)
@@ -65520,6 +65501,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/obj/structure/barricade/wooden,
/turf/open/floor/plasteel,
/area/engine/engineering)
"clT" = (
@@ -66153,6 +66135,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/obj/structure/barricade/wooden,
/turf/open/floor/plating,
/area/engine/engineering)
"cni" = (
@@ -66221,7 +66204,9 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"cno" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/landmark/start{
+ name = "Station Engineer"
+ },
/turf/open/floor/plasteel/yellow,
/area/engine/engineering)
"cnp" = (
@@ -67971,6 +67956,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 10
},
+/obj/structure/barricade/wooden,
/turf/open/floor/plating,
/area/engine/engineering)
"cqj" = (
@@ -68064,7 +68050,6 @@
/turf/open/floor/plasteel,
/area/engine/engineering)
"cqs" = (
-/obj/machinery/the_singularitygen,
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/machinery/light/small{
@@ -68374,7 +68359,7 @@
name = "\improper Command Hallway"
})
"cqX" = (
-/obj/machinery/vending/cola,
+/obj/machinery/vending/cola/random,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
/area/bridge/meeting_room{
@@ -69480,6 +69465,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/obj/structure/barricade/wooden,
/turf/open/floor/plating,
/area/engine/engineering)
"csX" = (
@@ -70477,7 +70463,6 @@
name = "\improper Recreation Area"
})
"cuI" = (
-/obj/machinery/power/grounding_rod,
/obj/effect/turf_decal/stripes/corner{
dir = 1
},
@@ -70488,7 +70473,6 @@
/turf/open/floor/plating/airless,
/area/space)
"cuK" = (
-/obj/machinery/power/tesla_coil,
/obj/structure/cable{
icon_state = "0-2";
d2 = 2
@@ -70497,7 +70481,6 @@
/turf/open/floor/plating/airless,
/area/space)
"cuL" = (
-/obj/machinery/power/grounding_rod,
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -70531,6 +70514,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/obj/structure/barricade/wooden,
/turf/open/floor/plating,
/area/engine/engineering)
"cuN" = (
@@ -74208,13 +74192,6 @@
tag = "icon-0-2";
icon_state = "0-2"
},
-/obj/machinery/power/emitter{
- tag = "icon-emitter (NORTH)";
- icon_state = "emitter";
- dir = 1;
- anchored = 1;
- state = 2
- },
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating/airless,
/area/engine/engineering)
@@ -74279,6 +74256,7 @@
},
/obj/structure/fans/tiny,
/obj/effect/turf_decal/delivery,
+/obj/structure/barricade/wooden,
/turf/open/floor/plasteel,
/area/engine/engineering)
"cBb" = (
@@ -78563,13 +78541,13 @@
/obj/effect/turf_decal/delivery,
/area/hallway/primary/central)
"cIy" = (
-/obj/machinery/vending/snack,
+/obj/machinery/vending/snack/random,
/obj/machinery/light,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
"cIz" = (
-/obj/machinery/vending/cola,
+/obj/machinery/vending/cola/random,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
@@ -79827,7 +79805,7 @@
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/sleep)
"cKP" = (
-/obj/machinery/vending/cola,
+/obj/machinery/vending/cola/random,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
@@ -80555,7 +80533,7 @@
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/sleep)
"cMn" = (
-/obj/machinery/vending/snack,
+/obj/machinery/vending/snack/random,
/obj/structure/extinguisher_cabinet{
pixel_x = -26
},
@@ -83738,10 +83716,7 @@
/obj/effect/turf_decal/stripes/end{
dir = 8
},
-/turf/open/floor/plasteel/white{
- tag = "icon-white_warn_end (WEST)";
- icon_state = "white_warn_end"
- },
+/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
"cRR" = (
/obj/structure/cable/white{
@@ -83751,10 +83726,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 2
},
-/turf/open/floor/plasteel/white{
- tag = "icon-white_warn_side (EAST)";
- icon_state = "white_warn_side"
- },
+/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
"cRS" = (
/obj/structure/cable/white{
@@ -83775,10 +83747,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 2
},
-/turf/open/floor/plasteel/white{
- tag = "icon-white_warn_side (EAST)";
- icon_state = "white_warn_side"
- },
+/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
"cRT" = (
/obj/structure/cable/white{
@@ -83797,10 +83766,7 @@
/obj/effect/turf_decal/stripes/end{
dir = 4
},
-/turf/open/floor/plasteel/white{
- tag = "icon-white_warn_end (EAST)";
- icon_state = "white_warn_end"
- },
+/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
"cRU" = (
/obj/structure/cable/white{
@@ -86282,7 +86248,7 @@
name = "Medbay Central"
})
"cWl" = (
-/obj/machinery/vending/cola,
+/obj/machinery/vending/cola/random,
/obj/machinery/status_display{
pixel_x = 32
},
@@ -104158,9 +104124,8 @@
/obj/effect/turf_decal/stripes/line{
dir = 2
},
-/turf/open/floor/plasteel/white{
- tag = "icon-white_warn_side (EAST)";
- icon_state = "white_warn_side"
+/turf/open/floor/plasteel{
+ tag = "icon-warning (EAST)"
},
/area/toxins/mixing{
name = "\improper Toxins Lab"
@@ -104175,9 +104140,8 @@
/obj/effect/turf_decal/stripes/line{
dir = 2
},
-/turf/open/floor/plasteel/white{
- tag = "icon-white_warn_side (EAST)";
- icon_state = "white_warn_side"
+/turf/open/floor/plasteel{
+ tag = "icon-warning (EAST)"
},
/area/toxins/mixing{
name = "\improper Toxins Lab"
@@ -104189,9 +104153,8 @@
/obj/effect/turf_decal/stripes/line{
dir = 2
},
-/turf/open/floor/plasteel/white{
- tag = "icon-white_warn_side (EAST)";
- icon_state = "white_warn_side"
+/turf/open/floor/plasteel{
+ tag = "icon-warning (EAST)"
},
/area/toxins/mixing{
name = "\improper Toxins Lab"
@@ -104207,9 +104170,8 @@
/obj/effect/turf_decal/stripes/line{
dir = 2
},
-/turf/open/floor/plasteel/white{
- tag = "icon-white_warn_side (EAST)";
- icon_state = "white_warn_side"
+/turf/open/floor/plasteel{
+ tag = "icon-warning (EAST)"
},
/area/toxins/mixing{
name = "\improper Toxins Lab"
@@ -108455,7 +108417,7 @@
name = "Research Division"
})
"dJP" = (
-/obj/machinery/vending/cola,
+/obj/machinery/vending/cola/random,
/obj/machinery/light,
/obj/machinery/status_display{
pixel_y = -32
@@ -108649,10 +108611,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 9
},
-/turf/open/floor/plasteel/white{
- tag = "icon-white_warn (NORTHWEST)";
- icon_state = "white_warn"
- },
+/turf/open/floor/plasteel/white,
/area/medical/virology)
"dKg" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -109049,10 +109008,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 10
},
-/turf/open/floor/plasteel/white{
- tag = "icon-white_warn (SOUTHWEST)";
- icon_state = "white_warn"
- },
+/turf/open/floor/plasteel/white,
/area/medical/virology)
"dKX" = (
/obj/structure/cable/white{
@@ -109067,10 +109023,7 @@
/obj/effect/turf_decal/stripes/line{
dir = 6
},
-/turf/open/floor/plasteel/white{
- tag = "icon-white_warn (SOUTHEAST)";
- icon_state = "white_warn"
- },
+/turf/open/floor/plasteel/white,
/area/medical/virology)
"dKY" = (
/obj/machinery/door/firedoor,
@@ -113585,7 +113538,7 @@
/area/chapel/main)
"dTt" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/vending/cola,
+/obj/machinery/vending/cola/random,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
/area/hallway/secondary/exit{
@@ -113923,7 +113876,7 @@
dir = 8
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/vending/snack,
+/obj/machinery/vending/snack/random,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
/area/hallway/secondary/exit{
@@ -118593,6 +118546,359 @@
dir = 1
},
/area/maintenance/starboard/fore_starboard_maintenance)
+"edi" = (
+/obj/structure/mining_shuttle_beacon,
+/turf/open/floor/plating,
+/area/shuttle/auxillary_base)
+"edj" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/docking_port/stationary/public_mining_dock{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/shuttle/auxillary_base)
+"edk" = (
+/obj/structure/shuttle/engine/propulsion{
+ tag = "icon-propulsion (NORTH)";
+ icon_state = "propulsion";
+ dir = 1
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/transport)
+"edl" = (
+/obj/structure/shuttle/engine/heater{
+ tag = "icon-heater (NORTH)";
+ icon_state = "heater";
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/turf/open/floor/plating/airless,
+/area/shuttle/transport)
+"edm" = (
+/obj/structure/shuttle/engine/propulsion{
+ tag = "icon-propulsion (NORTH)";
+ icon_state = "propulsion";
+ dir = 1
+ },
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/transport)
+"edn" = (
+/obj/structure/shuttle/engine/propulsion{
+ tag = "icon-propulsion (NORTH)";
+ icon_state = "propulsion";
+ dir = 1
+ },
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/transport)
+"edo" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/transport)
+"edp" = (
+/turf/open/floor/pod/light,
+/area/shuttle/transport)
+"edq" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/transport)
+"edr" = (
+/obj/structure/shuttle/engine/propulsion{
+ tag = "icon-propulsion (NORTH)";
+ icon_state = "propulsion";
+ dir = 1
+ },
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/transport)
+"eds" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/transport)
+"edt" = (
+/obj/structure/closet/crate,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/transport)
+"edu" = (
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/transport)
+"edv" = (
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/transport)
+"edw" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/transport)
+"edx" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/transport)
+"edy" = (
+/obj/structure/closet/crate,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/transport)
+"edz" = (
+/obj/machinery/door/airlock/titanium,
+/turf/open/floor/pod/light,
+/area/shuttle/transport)
+"edA" = (
+/obj/machinery/computer/shuttle/ferry/request,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/transport)
+"edB" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/transport)
+"edC" = (
+/obj/structure/grille,
+/obj/structure/window/shuttle,
+/turf/open/floor/plating,
+/area/shuttle/transport)
+"edD" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/pod/dark,
+/area/shuttle/transport)
+"edE" = (
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/transport)
+"edF" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/pod/dark,
+/area/shuttle/transport)
+"edG" = (
+/obj/structure/grille,
+/obj/structure/window/shuttle,
+/turf/open/floor/plating,
+/area/shuttle/transport)
+"edH" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/transport)
+"edI" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/transport)
+"edJ" = (
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/transport)
+"edK" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/transport)
+"edL" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/transport)
+"edM" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/transport)
+"edN" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/transport)
+"edO" = (
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/transport)
+"edP" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/transport)
+"edQ" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/transport)
+"edR" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/transport)
+"edS" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/transport)
+"edT" = (
+/obj/machinery/computer/shuttle/ferry/request,
+/turf/open/floor/pod/dark,
+/area/shuttle/transport)
+"edU" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/transport)
+"edV" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/transport)
+"edW" = (
+/obj/structure/grille,
+/obj/structure/window/shuttle,
+/turf/open/floor/plating,
+/area/shuttle/transport)
+"edX" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/transport)
+"edY" = (
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/transport)
+"edZ" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/transport)
+"eea" = (
+/obj/structure/grille,
+/obj/structure/window/shuttle,
+/turf/open/floor/plating,
+/area/shuttle/transport)
+"eeb" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/transport)
+"eec" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/transport)
+"eed" = (
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/transport)
+"eee" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/transport)
+"eef" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/transport)
+"eeg" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/transport)
+"eeh" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/transport)
+"eei" = (
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/transport)
+"eej" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/transport)
+"eek" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/transport)
+"eel" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/transport)
+"eem" = (
+/obj/structure/grille,
+/obj/structure/window/shuttle,
+/turf/open/floor/plating,
+/area/shuttle/transport)
+"een" = (
+/obj/docking_port/mobile{
+ dir = 1;
+ dwidth = 2;
+ height = 13;
+ id = "ferry";
+ name = "ferry shuttle";
+ port_angle = 0;
+ preferred_direction = 4;
+ roundstart_move = "ferry_away";
+ width = 5
+ },
+/obj/docking_port/stationary{
+ dir = 1;
+ dwidth = 2;
+ height = 13;
+ id = "ferry_home";
+ name = "port bay 2";
+ turf_type = /turf/open/space;
+ width = 5
+ },
+/obj/machinery/door/airlock/titanium,
+/turf/open/floor/pod/dark,
+/area/shuttle/transport)
+"eeo" = (
+/obj/structure/grille,
+/obj/structure/window/shuttle,
+/turf/open/floor/plating,
+/area/shuttle/transport)
+"eep" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/transport)
+"eeq" = (
+/obj/structure/shuttle/engine/propulsion{
+ tag = "icon-propulsion (NORTH)";
+ icon_state = "propulsion";
+ dir = 1
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/transport)
+"eer" = (
+/turf/open/floor/plasteel/neutral,
+/area/shuttle/transport)
+"ees" = (
+/obj/structure/shuttle/engine/heater{
+ tag = "icon-heater (NORTH)";
+ icon_state = "heater";
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 0
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/transport)
+"eet" = (
+/obj/structure/shuttle/engine/heater{
+ tag = "icon-heater (NORTH)";
+ icon_state = "heater";
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/transport)
+"eeu" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/effect/landmark/latejoin,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/shuttle/transport)
+"eev" = (
+/obj/machinery/door/airlock/external,
+/turf/open/floor/pod/light,
+/area/shuttle/transport)
+"eew" = (
+/obj/machinery/door/airlock/external,
+/turf/open/floor/pod/light,
+/area/shuttle/transport)
+"eex" = (
+/obj/structure/window/shuttle,
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/shuttle/transport)
+"eey" = (
+/obj/structure/window/shuttle,
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/shuttle/transport)
(1,1,1) = {"
aaa
@@ -139032,15 +139338,15 @@ cbd
aaa
cez
cfV
-chp
+clJ
aaf
aaf
-clI
+cho
aaa
aaH
aaf
aaf
-csS
+coI
cuJ
cez
aaa
@@ -139803,7 +140109,7 @@ cbd
aaH
cez
cfV
-chq
+cfV
aaH
aaH
clJ
@@ -140063,9 +140369,9 @@ cfW
aaa
aaf
aaH
-clK
+cfV
cnd
-coJ
+cuJ
aaH
aaf
aaa
@@ -140325,7 +140631,7 @@ cne
coK
aaH
aaH
-csT
+cuJ
cuJ
cez
aaH
@@ -141088,15 +141394,15 @@ cbd
aaa
cez
cfV
-chr
+clL
aaf
aaf
aaH
aaa
-coL
+cne
aaf
aaf
-csU
+coK
cuJ
cez
aaa
@@ -142120,8 +142426,8 @@ ceD
ceC
ckw
clN
-cni
-coM
+clN
+clN
cqj
ceC
csV
@@ -142376,8 +142682,8 @@ cfY
cht
ciZ
ckw
-clO
-cnj
+clN
+clN
coN
cqk
ciZ
@@ -142634,7 +142940,7 @@ chu
cja
ckx
clP
-cnk
+clN
coO
cql
cja
@@ -142891,7 +143197,7 @@ chv
cjb
cky
clQ
-cnl
+clN
coP
cqm
cjb
@@ -152322,7 +152628,7 @@ aaa
aaa
aaa
aaf
-brL
+aax
aaD
agn
agN
@@ -152569,17 +152875,17 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+edo
+edC
+edo
+edo
+eev
+edo
+edo
+eex
+edo
aaf
-ebM
+abT
adr
agl
agN
@@ -152823,20 +153129,20 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-brL
-brL
+eeq
+ees
+edo
+edo
+edD
+edD
+edp
+edp
+edp
+edD
+edD
+edC
+aax
+aax
aax
agl
agN
@@ -153079,21 +153385,21 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ebL
-ebN
+eeq
+edl
+edp
+edp
+edz
+edp
+edp
+edp
+edT
+edp
+edp
+edp
+een
+acj
+aci
acj
agl
agN
@@ -153337,20 +153643,20 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-brL
-brL
+eeq
+eet
+edo
+edo
+edF
+edF
+edp
+edp
+edp
+edF
+edF
+edC
+aax
+aax
aax
agl
agQ
@@ -153597,17 +153903,17 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+edo
+edC
+edo
+edo
+eev
+edo
+edo
+eex
+edo
aaf
-ebO
+abR
adq
ago
agM
@@ -153864,7 +154170,7 @@ aaa
aaa
aaa
aaf
-brL
+aax
aaD
agp
agN
@@ -156533,7 +156839,7 @@ cNo
cPd
cLH
cSo
-cUa
+cTY
cVG
cXw
cYW
@@ -157195,7 +157501,7 @@ aca
acn
acn
acI
-acI
+eeu
acI
acI
adN
@@ -157963,7 +158269,7 @@ abp
abF
abW
abZ
-acn
+eer
acn
acn
acn
@@ -161566,7 +161872,7 @@ acz
acP
acP
acP
-acP
+edj
acP
acP
acP
@@ -162593,7 +162899,7 @@ aaG
acA
acR
acR
-acR
+edi
ady
acR
acR
@@ -164185,7 +164491,7 @@ aNg
aYO
bar
bbF
-bcY
+bcX
bbF
bgl
bii
diff --git a/_maps/map_files/MetaStation/MetaStation.dmm b/_maps/map_files/MetaStation/MetaStation.dmm
index aa8952a4343..af29ede788f 100644
--- a/_maps/map_files/MetaStation/MetaStation.dmm
+++ b/_maps/map_files/MetaStation/MetaStation.dmm
@@ -1,8559 +1,161325 @@
-"aaa" = (/turf/open/space,/area/space)
-"aab" = (/obj/docking_port/stationary{dheight = 9;dir = 2;dwidth = 5;height = 24;id = "syndicate_n";name = "north of station";turf_type = /turf/open/space;width = 18},/turf/open/space,/area/space)
-"aac" = (/obj/effect/landmark{name = "carpspawn"},/turf/open/space,/area/space)
-"aad" = (/turf/open/space,/obj/machinery/porta_turret/syndicate{dir = 9},/turf/closed/wall/mineral/plastitanium{dir = 8;icon_state = "diagonalWall3"},/area/shuttle/syndicate)
-"aae" = (/turf/closed/wall/mineral/plastitanium,/area/shuttle/syndicate)
-"aaf" = (/obj/structure/lattice,/turf/open/space,/area/space)
-"aag" = (/obj/structure/grille,/obj/structure/lattice,/turf/open/space,/area/space)
-"aah" = (/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/power/tracker,/turf/open/floor/plating/airless,/area/solar/auxport)
-"aai" = (/obj/structure/grille/broken,/obj/structure/lattice,/turf/open/space,/area/space)
-"aaj" = (/obj/structure/grille,/turf/open/space,/area/space)
-"aak" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxport)
-"aal" = (/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/power/solar{id = "foreport";name = "Fore-Port Solar Array"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/auxport)
-"aam" = (/obj/structure/cable,/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxport)
-"aan" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxport)
-"aao" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxport)
-"aap" = (/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxport)
-"aaq" = (/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxport)
-"aar" = (/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxport)
-"aas" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxport)
-"aat" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxport)
-"aau" = (/obj/structure/cable,/obj/machinery/power/solar{id = "foreport";name = "Fore-Port Solar Array"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/auxport)
-"aav" = (/obj/effect/landmark{name = "Marauder Entry"},/turf/open/space,/area/space)
-"aaw" = (/obj/item/stack/cable_coil,/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxport)
-"aax" = (/turf/closed/wall/r_wall,/area/security/prison)
-"aay" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/turf/open/floor/plating,/area/security/prison)
-"aaz" = (/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxport)
-"aaA" = (/obj/machinery/seed_extractor,/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/floorgrime,/area/security/prison)
-"aaB" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/item/weapon/twohanded/required/kirbyplants{icon_state = "plant-03";layer = 4.1},/turf/open/floor/plasteel/floorgrime,/area/security/prison)
-"aaC" = (/obj/structure/sink/kitchen{desc = "A sink used for washing one's hands and face. It looks rusty and home-made";name = "old sink";pixel_y = 28},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/security/prison)
-"aaD" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/item/weapon/twohanded/required/kirbyplants{layer = 4.1},/turf/open/floor/plasteel/floorgrime,/area/security/prison)
-"aaE" = (/obj/machinery/biogenerator,/obj/machinery/light/small{dir = 4},/obj/machinery/camera{c_tag = "Prison Hydroponics";network = list("SS13","Prison")},/turf/open/floor/plasteel/floorgrime,/area/security/prison)
-"aaF" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/turf/open/floor/plating,/area/security/prison)
-"aaG" = (/obj/machinery/hydroponics/constructable,/obj/item/seeds/ambrosia,/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/floorgrime,/area/security/prison)
-"aaH" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel/floorgrime,/area/security/prison)
-"aaI" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/floorgrime,/area/security/prison)
-"aaJ" = (/obj/item/weapon/reagent_containers/glass/bucket,/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel/floorgrime,/area/security/prison)
-"aaK" = (/obj/machinery/hydroponics/constructable,/obj/item/seeds/glowshroom,/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/floorgrime,/area/security/prison)
-"aaL" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/turf/open/floor/plating,/area/security/prison)
-"aaM" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/open/floor/plating,/area/shuttle/pod_2)
-"aaN" = (/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/power/tracker,/turf/open/floor/plating/airless,/area/solar/auxstarboard)
-"aaO" = (/obj/machinery/portable_atmospherics/canister/air,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/atmos)
-"aaP" = (/obj/machinery/hydroponics/constructable,/obj/item/weapon/cultivator,/obj/item/seeds/carrot,/turf/open/floor/plasteel/floorgrime,/area/security/prison)
-"aaQ" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/weapon/reagent_containers/glass/bucket,/turf/open/floor/plasteel/floorgrime,/area/security/prison)
-"aaR" = (/turf/open/floor/plasteel,/area/security/prison)
-"aaS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/floorgrime,/area/security/prison)
-"aaT" = (/obj/machinery/hydroponics/constructable,/obj/item/device/plant_analyzer,/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/turf/open/floor/plasteel/floorgrime,/area/security/prison)
-"aaU" = (/turf/open/space,/turf/closed/wall/mineral/plastitanium{dir = 8;icon_state = "diagonalWall3"},/area/space)
-"aaV" = (/turf/closed/wall/mineral/titanium,/area/shuttle/pod_2)
-"aaW" = (/turf/open/space,/obj/machinery/porta_turret/syndicate{dir = 5},/turf/closed/wall/mineral/plastitanium{dir = 1;icon_state = "diagonalWall3"},/area/shuttle/syndicate)
-"aaX" = (/turf/open/space,/turf/closed/wall/mineral/plastitanium{dir = 1;icon_state = "diagonalWall3"},/area/space)
-"aaY" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxstarboard)
-"aaZ" = (/turf/closed/wall/r_wall,/area/prison/solitary{name = "Prisoner Education Chamber"})
-"aba" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/obj/structure/cable/yellow,/turf/open/floor/plating,/area/security/prison)
-"abb" = (/obj/machinery/door/airlock/glass{id_tag = "permahydro";name = "Hydroponics Module"},/turf/open/floor/plasteel/floorgrime,/area/security/prison)
-"abc" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/security/prison)
-"abd" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"abe" = (/turf/closed/wall,/area/security/prison)
-"abf" = (/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxport)
-"abg" = (/obj/machinery/door/poddoor{density = 1;icon_state = "closed";id = "SecJusticeChamber";name = "Justice Vent";opacity = 1},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/prison/solitary{name = "Prisoner Education Chamber"})
-"abh" = (/obj/item/weapon/soap/nanotrasen,/obj/item/weapon/bikehorn/rubberducky,/obj/machinery/shower{dir = 4},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel/freezer,/area/security/prison)
-"abi" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/sink/kitchen{desc = "A sink used for washing one's hands and face. It looks rusty and home-made";name = "old sink";pixel_y = 28},/turf/open/floor/plasteel/freezer,/area/security/prison)
-"abj" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/easel,/obj/item/weapon/canvas/twentythreeXtwentythree,/obj/item/weapon/canvas/twentythreeXtwentythree,/turf/open/floor/plasteel/floorgrime,/area/security/prison)
-"abk" = (/obj/structure/table,/obj/item/weapon/folder,/obj/item/weapon/paper/hydroponics,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/item/weapon/pen,/obj/item/weapon/storage/crayons,/turf/open/floor/plasteel/floorgrime,/area/security/prison)
-"abl" = (/obj/structure/table,/obj/machinery/computer/libraryconsole/bookmanagement,/turf/open/floor/plasteel/floorgrime,/area/security/prison)
-"abm" = (/obj/machinery/computer/arcade,/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 0;pixel_y = 32},/turf/open/floor/plasteel/floorgrime,/area/security/prison)
-"abn" = (/obj/machinery/newscaster{pixel_x = 0;pixel_y = 32},/turf/open/floor/plasteel,/area/security/prison)
-"abo" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel/floorgrime,/area/security/prison)
-"abp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel/floorgrime,/area/security/prison)
-"abq" = (/obj/structure/holohoop{pixel_y = 29},/obj/item/toy/beach_ball/holoball,/turf/open/floor/plating{icon_state = "platingdmg1"},/area/security/prison)
-"abr" = (/obj/machinery/status_display{density = 0;layer = 4;pixel_x = 0;pixel_y = 32},/turf/open/floor/plasteel/barber{dir = 8},/area/security/prison)
-"abs" = (/obj/machinery/washing_machine,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/barber{dir = 8},/area/security/prison)
-"abt" = (/obj/structure/shuttle/engine/propulsion/burst,/turf/closed/wall/mineral/titanium,/area/shuttle/pod_2)
-"abu" = (/obj/machinery/door/airlock/titanium{name = "Escape Pod Airlock"},/obj/docking_port/mobile/pod{id = "pod2";name = "escape pod 2";port_angle = 180},/turf/open/floor/mineral/titanium/blue,/area/shuttle/pod_2)
-"abv" = (/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/power/solar{id = "forestarboard";name = "Fore-Starboard Solar Array"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/auxstarboard)
-"abw" = (/obj/structure/cable,/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxstarboard)
-"abx" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel/black,/area/prison/solitary{name = "Prisoner Education Chamber"})
-"aby" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/black,/area/prison/solitary{name = "Prisoner Education Chamber"})
-"abz" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel/black,/area/prison/solitary{name = "Prisoner Education Chamber"})
-"abA" = (/obj/machinery/shower{dir = 4},/turf/open/floor/plasteel/freezer,/area/security/prison)
-"abB" = (/obj/machinery/door/window/westleft{base_state = "right";dir = 4;icon_state = "right";name = "Unisex Showers";req_access_txt = "0"},/obj/machinery/light/small,/turf/open/floor/plasteel/freezer,/area/security/prison)
-"abC" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/floorgrime,/area/security/prison)
-"abD" = (/obj/structure/chair/stool,/turf/open/floor/plasteel/floorgrime,/area/security/prison)
-"abE" = (/turf/open/floor/plasteel/floorgrime,/area/security/prison)
-"abF" = (/obj/structure/table,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/weapon/reagent_containers/food/condiment/peppermill{pixel_x = 3},/obj/item/weapon/reagent_containers/food/condiment/saltshaker{pixel_x = -3;pixel_y = 5},/turf/open/floor/plasteel,/area/security/prison)
-"abG" = (/obj/structure/table,/obj/item/toy/cards/deck,/obj/item/toy/cards/deck,/turf/open/floor/plasteel,/area/security/prison)
-"abH" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/floorgrime,/area/security/prison)
-"abI" = (/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel/floorgrime,/area/security/prison)
-"abJ" = (/obj/structure/window/reinforced,/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/barber{dir = 8},/area/security/prison)
-"abK" = (/obj/structure/table,/obj/structure/bedsheetbin,/obj/structure/window/reinforced,/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel/barber{dir = 8},/area/security/prison)
-"abL" = (/turf/open/floor/plating,/area/security/prison)
-"abM" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/security/prison)
-"abN" = (/turf/open/floor/plating{icon_state = "platingdmg3"},/area/security/prison)
-"abO" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxstarboard)
-"abP" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxstarboard)
-"abQ" = (/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxstarboard)
-"abR" = (/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxstarboard)
-"abS" = (/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxstarboard)
-"abT" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxstarboard)
-"abU" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxstarboard)
-"abV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light/small{dir = 8},/obj/machinery/sparker{dir = 2;id = "executionburn";pixel_x = -25},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/black,/area/prison/solitary{name = "Prisoner Education Chamber"})
-"abW" = (/obj/structure/bed,/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/glasses/sunglasses/blindfold,/obj/item/clothing/mask/muzzle,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/landmark{name = "revenantspawn"},/obj/item/device/electropack,/turf/open/floor/plasteel/black,/area/prison/solitary{name = "Prisoner Education Chamber"})
-"abX" = (/obj/machinery/flasher{id = "justiceflash";name = "mounted justice flash";pixel_x = 28},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/black,/area/prison/solitary{name = "Prisoner Education Chamber"})
-"abY" = (/obj/machinery/door/airlock{name = "Unisex Restroom";req_access_txt = "0"},/turf/open/floor/plasteel/freezer,/area/security/prison)
-"abZ" = (/obj/structure/table,/obj/item/weapon/book/manual/chef_recipes{pixel_x = 2;pixel_y = 6},/obj/item/clothing/head/chefhat,/turf/open/floor/plasteel/floorgrime,/area/security/prison)
-"aca" = (/obj/structure/table,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/toy/cards/deck,/obj/item/toy/cards/deck,/turf/open/floor/plasteel,/area/security/prison)
-"acb" = (/obj/structure/table,/obj/item/weapon/storage/pill_bottle/dice,/turf/open/floor/plasteel,/area/security/prison)
-"acc" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/security/prison)
-"acd" = (/obj/machinery/vending/coffee,/turf/open/floor/plasteel/floorgrime,/area/security/prison)
-"ace" = (/obj/machinery/vending/sustenance{desc = "A vending machine normally reserved for work camps.";name = "\improper sustenance vendor";product_slogans = "Enjoy your meal.;Enough calories to support any worker."},/turf/open/floor/plasteel/floorgrime,/area/security/prison)
-"acf" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating{icon_plating = "warnplate"},/area/security/prison)
-"acg" = (/obj/machinery/light/small,/turf/open/floor/plating{icon_state = "panelscorched"},/area/security/prison)
-"ach" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/security/prison)
-"aci" = (/obj/machinery/door/airlock/external{name = "Security External Airlock";req_access_txt = "1"},/turf/open/floor/plating,/area/security/prison)
-"acj" = (/obj/machinery/light/small{dir = 1},/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;name = "EXTERNAL AIRLOCK";pixel_x = 0;pixel_y = 32},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/security/prison)
-"ack" = (/obj/structure/lattice/catwalk,/turf/open/space,/area/space)
-"acl" = (/obj/structure/cable,/obj/machinery/power/solar{id = "forestarboard";name = "Fore-Starboard Solar Array"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/auxstarboard)
-"acm" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel/black,/area/prison/solitary{name = "Prisoner Education Chamber"})
-"acn" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4;initialize_directions = 11},/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel/black,/area/prison/solitary{name = "Prisoner Education Chamber"})
-"aco" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 2;name = "justice injector"},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel/black,/area/prison/solitary{name = "Prisoner Education Chamber"})
-"acp" = (/obj/machinery/light/small{dir = 4},/obj/structure/toilet{dir = 4},/turf/open/floor/plasteel/freezer,/area/security/prison)
-"acq" = (/obj/structure/table,/obj/item/weapon/storage/box/donkpockets{pixel_x = 2;pixel_y = 1},/obj/machinery/airalarm{dir = 4;pixel_x = -23;pixel_y = 0},/turf/open/floor/plating{icon_state = "panelscorched"},/area/security/prison)
-"acr" = (/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel/floorgrime,/area/security/prison)
-"acs" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel,/area/security/prison)
-"act" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel/floorgrime,/area/security/prison)
-"acu" = (/obj/machinery/holopad,/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/floorgrime,/area/security/prison)
-"acv" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/floorgrime,/area/security/prison)
-"acw" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel/floorgrime,/area/security/prison)
-"acx" = (/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/turf/open/floor/plasteel/floorgrime,/area/security/prison)
-"acy" = (/obj/machinery/door/airlock/external{name = "Escape Pod Two"},/turf/open/floor/plating,/area/security/prison)
-"acz" = (/obj/item/stack/cable_coil,/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxstarboard)
-"acA" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/poddoor/preopen{id = "executionfireblast";layer = 2.9;name = "blast door"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/darkred{dir = 4},/area/prison/solitary{name = "Prisoner Education Chamber"})
-"acB" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "executionfireblast";layer = 2.9;name = "blast door"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8;initialize_directions = 11},/turf/open/floor/plasteel/darkred{dir = 4},/area/prison/solitary{name = "Prisoner Education Chamber"})
-"acC" = (/obj/machinery/door/window/brigdoor{dir = 2;name = "Justice Chamber";req_access_txt = "3"},/obj/machinery/atmospherics/pipe/simple/general/hidden,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/window/brigdoor{dir = 1;name = "Justice Chamber";req_access_txt = "3"},/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/preopen{id = "executionfireblast";layer = 2.9;name = "blast door"},/turf/open/floor/plasteel/darkred{dir = 4},/area/prison/solitary{name = "Prisoner Education Chamber"})
-"acD" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -3;pixel_y = 6},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/security/prison)
-"acE" = (/turf/open/floor/plating{icon_state = "panelscorched"},/area/security/prison)
-"acF" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/machinery/light,/turf/open/floor/plasteel,/area/security/prison)
-"acG" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1;initialize_directions = 11},/obj/item/weapon/twohanded/required/kirbyplants{icon_state = "plant-13"},/turf/open/floor/plasteel/floorgrime,/area/security/prison)
-"acH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/item/device/radio/intercom{desc = "Talk through this. It looks like it has been modified to not broadcast.";dir = 2;name = "Prison Intercom (General)";pixel_x = 0;pixel_y = -28;prison_radio = 1},/obj/machinery/camera{c_tag = "Prison Chamber";dir = 1;network = list("SS13","Prison")},/turf/open/floor/plasteel/floorgrime,/area/security/prison)
-"acI" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel/floorgrime,/area/security/prison)
-"acJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/prison)
-"acK" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/turf/open/floor/plasteel/floorgrime,/area/security/prison)
-"acL" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/obj/machinery/light,/turf/open/floor/plasteel/floorgrime,/area/security/prison)
-"acM" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3;pixel_y = 7},/obj/item/weapon/pen,/turf/open/floor/plasteel/floorgrime,/area/security/prison)
-"acN" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/syringe,/obj/item/weapon/reagent_containers/glass/bottle/morphine{pixel_y = 6},/turf/open/floor/plasteel/whitered/side{dir = 1},/area/security/prison)
-"acO" = (/obj/machinery/newscaster{pixel_x = 0;pixel_y = 32},/obj/structure/table/glass,/obj/item/weapon/reagent_containers/glass/beaker{pixel_x = 4;pixel_y = 4},/obj/item/weapon/reagent_containers/glass/beaker{pixel_x = -5;pixel_y = 6},/obj/item/weapon/reagent_containers/dropper,/turf/open/floor/plasteel/whitered/side{dir = 1},/area/security/prison)
-"acP" = (/turf/closed/wall,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"acQ" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"acR" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/syringe,/obj/item/weapon/reagent_containers/glass/bottle/morphine{pixel_y = 6},/obj/machinery/camera{c_tag = "Prison Sanitarium";dir = 2;network = list("SS13","Prison");pixel_x = 0;pixel_y = 0},/turf/open/floor/plasteel/whitered/side{dir = 1},/area/security/prison)
-"acS" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxport)
-"acT" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxport)
-"acU" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxport)
-"acV" = (/obj/structure/table,/obj/item/weapon/reagent_containers/glass/bottle/morphine{pixel_x = -4;pixel_y = 1},/obj/item/weapon/reagent_containers/glass/bottle/chloralhydrate{name = "chloral hydrate bottle"},/obj/item/weapon/reagent_containers/glass/bottle/toxin{pixel_x = 6;pixel_y = 8},/obj/item/weapon/reagent_containers/glass/bottle/morphine{pixel_x = 5;pixel_y = 1},/obj/item/weapon/reagent_containers/syringe,/obj/item/weapon/reagent_containers/glass/bottle/facid{name = "fluorosulfuric acid bottle";pixel_x = -3;pixel_y = 6},/obj/item/weapon/reagent_containers/syringe{pixel_y = 5},/obj/item/weapon/reagent_containers/dropper,/obj/machinery/airalarm{desc = "This particular atmos control unit appears to have no access restrictions.";dir = 4;icon_state = "alarm0";locked = 0;name = "all-access air alarm";pixel_x = -24;req_access = "0";req_one_access = "0"},/obj/machinery/button/ignition{id = "executionburn";name = "Justice Ignition Switch";pixel_x = -25;pixel_y = 36},/obj/machinery/button/door{id = "executionfireblast";name = "Justice Area Lockdown";pixel_x = -25;pixel_y = 26;req_access_txt = "2"},/obj/item/device/assembly/signaler{pixel_x = -3;pixel_y = 2},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/machinery/button/flasher{id = "justiceflash";name = "Justice Flash Control";pixel_x = -36;pixel_y = 36;req_access_txt = "1"},/obj/machinery/button/door{dir = 2;id = "SecJusticeChamber";layer = 4;name = "Justice Vent Control";pixel_x = -36;pixel_y = 26;req_access_txt = "3"},/turf/open/floor/plasteel/darkred/side{dir = 1},/area/prison/solitary{name = "Prisoner Education Chamber"})
-"acW" = (/obj/structure/table,/obj/item/weapon/folder/red{pixel_x = 3},/obj/item/device/taperecorder{pixel_x = -3;pixel_y = 0},/obj/item/weapon/storage/fancy/cigarettes,/obj/item/device/assembly/flash/handheld,/obj/item/weapon/reagent_containers/spray/pepper,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/darkred/side{dir = 1},/area/prison/solitary{name = "Prisoner Education Chamber"})
-"acX" = (/obj/machinery/atmospherics/pipe/simple/general/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/darkred/side{dir = 1},/area/prison/solitary{name = "Prisoner Education Chamber"})
-"acY" = (/obj/structure/sink/kitchen{desc = "A sink used for washing one's hands and face. It looks rusty and home-made";name = "old sink";pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/darkred/side{dir = 1},/area/prison/solitary{name = "Prisoner Education Chamber"})
-"acZ" = (/obj/machinery/power/apc{cell_type = 2500;dir = 1;name = "Prisoner Education Chamber APC";pixel_y = 24},/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/obj/structure/closet/secure_closet/injection{name = "educational injections";pixel_x = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/darkred/side{dir = 1},/area/prison/solitary{name = "Prisoner Education Chamber"})
-"ada" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/closed/wall/r_wall,/area/security/prison)
-"adb" = (/obj/machinery/door/poddoor{density = 0;icon_state = "open";id = "permacell3";name = "Cell Shutters";opacity = 0},/obj/machinery/door/airlock/glass{id_tag = "permabolt3";name = "Cell 3"},/turf/open/floor/plasteel/floorgrime,/area/security/prison)
-"adc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/security/prison)
-"add" = (/obj/machinery/door/poddoor{density = 0;icon_state = "open";id = "permacell2";name = "Cell Shutters";opacity = 0},/obj/machinery/door/airlock/glass{id_tag = "permabolt2";name = "Cell 2"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/floorgrime,/area/security/prison)
-"ade" = (/obj/machinery/door/poddoor{density = 0;icon_state = "open";id = "permacell1";name = "Cell Shutters";opacity = 0},/obj/machinery/door/airlock/glass{id_tag = "permabolt1";name = "Cell 1"},/turf/open/floor/plasteel/floorgrime,/area/security/prison)
-"adf" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/security/prison)
-"adg" = (/obj/structure/bed,/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/glasses/sunglasses/blindfold,/obj/item/clothing/mask/muzzle,/obj/effect/landmark{name = "revenantspawn"},/turf/open/floor/plasteel/white,/area/security/prison)
-"adh" = (/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel/white,/area/security/prison)
-"adi" = (/obj/structure/bed,/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/glasses/sunglasses/blindfold,/obj/item/clothing/mask/muzzle,/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/effect/landmark{name = "revenantspawn"},/turf/open/floor/plasteel/white,/area/security/prison)
-"adj" = (/obj/structure/closet/emcloset,/obj/machinery/light/small{dir = 8},/turf/open/floor/plating,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"adk" = (/obj/structure/shuttle/engine/propulsion/burst{dir = 4},/turf/closed/wall/mineral/titanium,/area/shuttle/pod_3)
-"adl" = (/turf/closed/wall/mineral/titanium,/area/shuttle/pod_3)
-"adm" = (/obj/structure/table,/obj/item/device/flashlight/lamp,/obj/structure/reagent_dispensers/peppertank{pixel_x = -29;pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel/black,/area/prison/solitary{name = "Prisoner Education Chamber"})
-"adn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/chair/office/dark{dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel/black,/area/prison/solitary{name = "Prisoner Education Chamber"})
-"ado" = (/obj/machinery/atmospherics/pipe/simple/general/hidden,/turf/open/floor/plasteel/black,/area/prison/solitary{name = "Prisoner Education Chamber"})
-"adp" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel/black,/area/prison/solitary{name = "Prisoner Education Chamber"})
-"adq" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/firealarm{dir = 4;pixel_x = 28},/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/black,/area/prison/solitary{name = "Prisoner Education Chamber"})
-"adr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/prison/solitary{name = "Prisoner Education Chamber"})
-"ads" = (/obj/structure/bed,/obj/machinery/camera{c_tag = "Prison Cell 3";network = list("SS13","Prison")},/turf/open/floor/plasteel/floorgrime,/area/security/prison)
-"adt" = (/obj/structure/chair/stool,/obj/machinery/light/small{dir = 1},/obj/machinery/button/door{id = "permabolt3";name = "Cell Bolt Control";normaldoorcontrol = 1;pixel_x = 0;pixel_y = 25;req_access_txt = "0";specialfunctions = 4},/turf/open/floor/plasteel/floorgrime,/area/security/prison)
-"adu" = (/obj/structure/bed,/obj/machinery/camera{c_tag = "Prison Cell 2";network = list("SS13","Prison")},/turf/open/floor/plasteel/floorgrime,/area/security/prison)
-"adv" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/floorgrime,/area/security/prison)
-"adw" = (/obj/structure/chair/stool,/obj/machinery/light/small{dir = 1},/obj/machinery/button/door{id = "permabolt2";name = "Cell Bolt Control";normaldoorcontrol = 1;pixel_x = 0;pixel_y = 25;req_access_txt = "0";specialfunctions = 4},/turf/open/floor/plating{icon_state = "platingdmg2"},/area/security/prison)
-"adx" = (/obj/structure/bed,/obj/machinery/camera{c_tag = "Prison Cell 1";network = list("SS13","Prison")},/turf/open/floor/plasteel/floorgrime,/area/security/prison)
-"ady" = (/obj/structure/chair/stool,/obj/machinery/light/small{dir = 1},/obj/machinery/button/door{id = "permabolt1";name = "Cell Bolt Control";normaldoorcontrol = 1;pixel_x = 0;pixel_y = 25;req_access_txt = "0";specialfunctions = 4},/turf/open/floor/plasteel/floorgrime,/area/security/prison)
-"adz" = (/turf/open/floor/plating{icon_state = "platingdmg1"},/area/security/prison)
-"adA" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/machinery/light{dir = 8},/obj/machinery/airalarm{dir = 4;pixel_x = -23;pixel_y = 0},/turf/open/floor/plasteel/white,/area/security/prison)
-"adB" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/security/prison)
-"adC" = (/obj/machinery/flasher{id = "insaneflash";pixel_x = 26},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/turf/open/floor/plasteel/white,/area/security/prison)
-"adD" = (/obj/structure/lattice,/obj/machinery/camera/motion{c_tag = "Armory - External";dir = 1;network = list("SS13")},/turf/open/space,/area/space)
-"adE" = (/turf/open/floor/plating,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"adF" = (/obj/machinery/door/airlock/titanium{name = "Escape Pod Airlock"},/obj/docking_port/mobile/pod{dir = 4;id = "pod3";name = "escape pod 3";port_angle = 180;preferred_direction = 4},/turf/open/floor/mineral/titanium/blue,/area/shuttle/pod_3)
-"adG" = (/obj/docking_port/stationary/random{id = "pod_asteroid2";name = "asteroid"},/turf/open/space,/area/space)
-"adH" = (/obj/structure/chair{dir = 1},/obj/machinery/status_display{density = 0;layer = 3;pixel_x = 32;pixel_y = 0},/obj/machinery/computer/shuttle/pod{pixel_x = -32;possible_destinations = "pod_asteroid2";shuttleId = "pod2"},/turf/open/floor/mineral/titanium/blue,/area/shuttle/pod_2)
-"adI" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/open/floor/plating,/area/shuttle/pod_3)
-"adJ" = (/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = -28;pixel_y = 0},/obj/structure/table,/obj/item/weapon/storage/backpack/dufflebag/sec{contents = newlist(/obj/item/weapon/scalpel,/obj/item/weapon/hemostat,/obj/item/weapon/retractor,/obj/item/weapon/cautery,/obj/item/weapon/circular_saw,/obj/item/weapon/surgical_drapes,/obj/item/clothing/mask/surgical);desc = "A large dufflebag for holding extra supplies - this one has a material inlay with space for various sharp-looking tools.";name = "dufflebag";pixel_y = 5},/obj/item/clothing/mask/balaclava,/obj/item/weapon/reagent_containers/spray/cleaner{pixel_x = 5},/turf/open/floor/plasteel/darkred/side{dir = 2},/area/prison/solitary{name = "Prisoner Education Chamber"})
-"adK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel/darkred/side{dir = 2},/area/prison/solitary{name = "Prisoner Education Chamber"})
-"adL" = (/obj/machinery/atmospherics/pipe/simple/general/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/darkred/side{dir = 2},/area/prison/solitary{name = "Prisoner Education Chamber"})
-"adM" = (/obj/machinery/button/door{id = "prisonereducation";name = "Door Bolt Control";normaldoorcontrol = 1;pixel_x = 0;pixel_y = -25;req_access_txt = "0";specialfunctions = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2;initialize_directions = 11},/turf/open/floor/plasteel/darkred/side{dir = 2},/area/prison/solitary{name = "Prisoner Education Chamber"})
-"adN" = (/obj/machinery/light_switch{pixel_x = 26;pixel_y = 0},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/darkred/side{dir = 2},/area/prison/solitary{name = "Prisoner Education Chamber"})
-"adO" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/obj/machinery/flasher{id = "PCell 3";pixel_x = -28},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/security/prison)
-"adP" = (/obj/structure/table,/obj/item/weapon/paper,/obj/item/weapon/pen,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel/floorgrime,/area/security/prison)
-"adQ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4;initialize_directions = 11},/turf/closed/wall,/area/security/prison)
-"adR" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/obj/machinery/flasher{id = "PCell 2";pixel_x = -28},/turf/open/floor/plasteel/floorgrime,/area/security/prison)
-"adS" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/floorgrime,/area/security/prison)
-"adT" = (/obj/structure/table,/obj/item/weapon/paper,/obj/item/weapon/pen,/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel/floorgrime,/area/security/prison)
-"adU" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/obj/machinery/flasher{id = "PCell 1";pixel_x = -28},/turf/open/floor/plasteel/floorgrime,/area/security/prison)
-"adV" = (/obj/item/weapon/folder/red,/obj/item/weapon/pen,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/table/glass,/turf/open/floor/plasteel/whitered/side{dir = 2},/area/security/prison)
-"adW" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/whitered/side{dir = 2},/area/security/prison)
-"adX" = (/obj/structure/bed/roller,/obj/structure/bed/roller,/obj/machinery/iv_drip{density = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/iv_drip{density = 0},/turf/open/floor/plasteel/whitered/side{dir = 2},/area/security/prison)
-"adY" = (/turf/closed/wall/r_wall,/area/security/warden)
-"adZ" = (/turf/closed/wall/r_wall,/area/security/hos)
-"aea" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "hosspace";name = "space shutters"},/turf/open/floor/plating,/area/security/hos)
-"aeb" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "hosspace";name = "space shutters"},/turf/open/floor/plating,/area/security/hos)
-"aec" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "hosspace";name = "space shutters"},/turf/open/floor/plating,/area/security/hos)
-"aed" = (/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plating,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"aee" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/auxsolarport)
-"aef" = (/obj/machinery/door/airlock/external{name = "Solar Maintenance";req_access = null;req_access_txt = "10; 13"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/auxsolarport)
-"aeg" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/structure/window/reinforced{dir = 1},/turf/open/floor/plasteel/black,/area/prison/solitary{name = "Prisoner Education Chamber"})
-"aeh" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/obj/machinery/meter,/obj/machinery/door/window/westleft{base_state = "left";dir = 1;icon_state = "left";name = "gas ports";req_access_txt = "0"},/turf/open/floor/plasteel/black,/area/prison/solitary{name = "Prisoner Education Chamber"})
-"aei" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1;name = "justice gas pump"},/obj/machinery/door/window/westleft{base_state = "right";dir = 1;icon_state = "right";name = "gas ports";req_access_txt = "0"},/turf/open/floor/plasteel/black,/area/prison/solitary{name = "Prisoner Education Chamber"})
-"aej" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{aiControlDisabled = 1;id_tag = "prisonereducation";name = "Prisoner Education Chamber";req_access = null;req_access_txt = "3"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/red/side{dir = 1},/area/prison/solitary{name = "Prisoner Education Chamber"})
-"aek" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/security/prison)
-"ael" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/security/prison)
-"aem" = (/obj/machinery/door/airlock/glass_security{name = "Long-Term Cell 3";req_access_txt = "2"},/turf/open/floor/plasteel/floorgrime,/area/security/prison)
-"aen" = (/obj/machinery/door/airlock/glass_security{name = "Long-Term Cell 2";req_access_txt = "2"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/floorgrime,/area/security/prison)
-"aeo" = (/obj/machinery/door/airlock/glass_security{name = "Long-Term Cell 1";req_access_txt = "2"},/turf/open/floor/plasteel/floorgrime,/area/security/prison)
-"aep" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Prison Sanitarium";req_access_txt = "2"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/red/side{dir = 1},/area/security/prison)
-"aeq" = (/turf/closed/wall/r_wall,/area/ai_monitored/security/armory)
-"aer" = (/obj/structure/rack,/obj/item/weapon/gun/energy/ionrifle{pin = /obj/item/device/firing_pin},/obj/machinery/light{dir = 1},/obj/item/weapon/gun/energy/temperature/security,/obj/item/clothing/suit/armor/laserproof,/turf/open/floor/plasteel/vault{dir = 4},/area/ai_monitored/security/armory)
-"aes" = (/obj/structure/closet/secure_closet{name = "contraband locker";req_access_txt = "3"},/obj/effect/spawner/lootdrop/maintenance{lootcount = 3;name = "3maintenance loot spawner"},/obj/effect/spawner/lootdrop/armory_contraband{loot = list(/obj/item/weapon/gun/ballistic/automatic/pistol = 5, /obj/item/weapon/gun/ballistic/shotgun/automatic/combat = 5, /obj/item/weapon/gun/ballistic/revolver/mateba, /obj/item/weapon/gun/ballistic/automatic/pistol/deagle, /obj/item/weapon/storage/box/syndie_kit/throwing_weapons = 3)},/turf/open/floor/plasteel/vault{dir = 4},/area/ai_monitored/security/armory)
-"aet" = (/obj/structure/table/wood,/obj/machinery/newscaster/security_unit{pixel_x = 0;pixel_y = 32},/obj/item/weapon/folder/red,/obj/item/weapon/folder/red,/obj/machinery/keycard_auth{pixel_x = -26;pixel_y = 23},/obj/machinery/button/door{id = "hosspace";name = "Space Shutters Control";pixel_x = -26;pixel_y = 34},/turf/open/floor/plasteel/black,/area/security/hos)
-"aeu" = (/obj/machinery/computer/prisoner,/turf/open/floor/plasteel/black,/area/security/hos)
-"aev" = (/obj/machinery/computer/security,/turf/open/floor/plasteel/black,/area/security/hos)
-"aew" = (/obj/machinery/computer/secure_data,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/black,/area/security/hos)
-"aex" = (/obj/structure/closet/secure_closet/lethalshots,/turf/open/floor/plasteel/vault{dir = 1},/area/ai_monitored/security/armory)
-"aey" = (/turf/closed/wall,/area/security/range)
-"aez" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/range)
-"aeA" = (/obj/machinery/door/airlock/external{name = "Escape Pod Three"},/turf/open/floor/plating,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"aeB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/closed/wall,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"aeC" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"aeD" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/effect/landmark{name = "Syndicate Breach Area"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"aeE" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"aeF" = (/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/auxstarboard)
-"aeG" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/auxsolarport)
-"aeH" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/turf/open/floor/plasteel/vault,/area/prison/solitary{name = "Prisoner Education Chamber"})
-"aeI" = (/obj/item/weapon/tank/internals/oxygen/red{pixel_x = -4;pixel_y = -1},/obj/item/weapon/tank/internals/oxygen/red{pixel_x = 4;pixel_y = -1},/obj/item/weapon/tank/internals/anesthetic{pixel_x = 2},/obj/item/weapon/storage/toolbox/mechanical,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/structure/closet/crate{icon_state = "crateopen";opened = 1},/obj/machinery/atmospherics/pipe/manifold/general/visible,/obj/item/weapon/wrench,/turf/open/floor/plasteel/vault,/area/prison/solitary{name = "Prisoner Education Chamber"})
-"aeJ" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/obj/machinery/space_heater,/turf/open/floor/plasteel/vault,/area/prison/solitary{name = "Prisoner Education Chamber"})
-"aeK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel/red/corner{dir = 2},/area/security/prison)
-"aeL" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/sign/securearea{desc = "A warning sign which reads 'WARNING: Do Not Enter When Red Light Shows', detailing the penalties that any NanoTrasen employee or silicon will suffer if violating this rule.";name = "WARNING: Do Not Enter When Red Light Shows";pixel_y = 32},/turf/open/floor/plasteel/red/corner{dir = 2},/area/security/prison)
-"aeM" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel/red/corner{dir = 2},/area/security/prison)
-"aeN" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/red/corner{dir = 2},/area/security/prison)
-"aeO" = (/obj/machinery/button/door{id = "permacell3";name = "Cell 3 Lockdown";pixel_x = -4;pixel_y = 25;req_access_txt = "2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/button/flasher{id = "PCell 3";pixel_x = 6;pixel_y = 24},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/red/corner{dir = 2},/area/security/prison)
-"aeP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/computer/security/telescreen{desc = "Used for watching Prison Wing holding areas.";name = "Prison Monitor";network = list("Prison");pixel_x = 0;pixel_y = 30},/obj/machinery/camera{c_tag = "Prison Hallway Port";network = list("SS13","Prison")},/turf/open/floor/plasteel/red/corner{dir = 2},/area/security/prison)
-"aeQ" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/red/corner{dir = 2},/area/security/prison)
-"aeR" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel/red/corner{dir = 2},/area/security/prison)
-"aeS" = (/obj/machinery/button/door{id = "permacell2";name = "Cell 2 Lockdown";pixel_x = -4;pixel_y = 25;req_access_txt = "2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/button/flasher{id = "PCell 2";pixel_x = 6;pixel_y = 24},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/red/corner{dir = 2},/area/security/prison)
-"aeT" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/computer/security/telescreen{desc = "Used for watching Prison Wing holding areas.";name = "Prison Monitor";network = list("Prison");pixel_x = 0;pixel_y = 30},/turf/open/floor/plasteel/red/corner{dir = 2},/area/security/prison)
-"aeU" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/red/corner{dir = 2},/area/security/prison)
-"aeV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/red/corner{dir = 2},/area/security/prison)
-"aeW" = (/obj/machinery/button/door{id = "permacell1";name = "Cell 1 Lockdown";pixel_x = -4;pixel_y = 25;req_access_txt = "2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/button/flasher{id = "PCell 1";pixel_x = 6;pixel_y = 24},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/red/corner{dir = 2},/area/security/prison)
-"aeX" = (/obj/machinery/power/apc{cell_type = 5000;dir = 1;name = "Prison Wing APC";pixel_x = 1;pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/obj/machinery/camera{c_tag = "Prison Hallway Starboard";dir = 2;network = list("SS13","Prison")},/turf/open/floor/plasteel/red/corner{dir = 2},/area/security/prison)
-"aeY" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/red/corner{dir = 2},/area/security/prison)
-"aeZ" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/sign/pods{pixel_y = 30},/turf/open/floor/plasteel/red/corner{dir = 2},/area/security/prison)
-"afa" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/button/flasher{id = "insaneflash";pixel_y = 26},/turf/open/floor/plasteel/red/corner{dir = 2},/area/security/prison)
-"afb" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8";d1 = 4;d2 = 8},/turf/open/floor/plasteel/red/corner{dir = 2},/area/security/prison)
-"afc" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plating,/area/security/prison)
-"afd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9;pixel_y = 0},/obj/item/weapon/twohanded/required/kirbyplants{icon_state = "plant-16";layer = 4.1},/obj/structure/sign/securearea{desc = "A warning sign which reads 'WARNING: Criminally Insane Inmates', describing the possible hazards of those contained within.";name = "WARNING: Criminally Insane Inmates";pixel_y = 32},/obj/structure/cable/yellow{icon_state = "4-8";d1 = 4;d2 = 8},/turf/open/floor/plasteel,/area/security/prison)
-"afe" = (/obj/structure/table/wood,/obj/machinery/requests_console{announcementConsole = 1;department = "Head of Security's Desk";departmentType = 5;name = "Head of Security RC";pixel_x = 0;pixel_y = 30},/obj/machinery/computer/med_data/laptop,/obj/item/weapon/storage/secure/safe/HoS{pixel_x = 36;pixel_y = 28},/obj/machinery/camera{c_tag = "Head of Security's Office";dir = 2;network = list("SS13")},/turf/open/floor/plasteel/black,/area/security/hos)
-"aff" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/obj/item/weapon/storage/secure/safe{name = "armory safe A";pixel_x = 6;pixel_y = 28},/turf/open/floor/plasteel/black,/area/ai_monitored/security/armory)
-"afg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/black,/area/ai_monitored/security/armory)
-"afh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/black,/area/ai_monitored/security/armory)
-"afi" = (/obj/structure/closet/secure_closet/hos,/obj/machinery/light{dir = 8},/obj/machinery/airalarm{dir = 4;icon_state = "alarm0";pixel_x = -22},/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = -29;pixel_y = 23},/turf/open/floor/plasteel/black,/area/security/hos)
-"afj" = (/obj/machinery/status_display{density = 0;layer = 4;pixel_x = -32;pixel_y = 32},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/turf/open/floor/plasteel/black,/area/security/hos)
-"afk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel/black,/area/security/hos)
-"afl" = (/obj/structure/chair/comfy/black,/turf/open/floor/plasteel/black,/area/security/hos)
-"afm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel/black,/area/security/hos)
-"afn" = (/obj/machinery/status_display{density = 0;layer = 4;pixel_x = 32;pixel_y = 32},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel/black,/area/security/hos)
-"afo" = (/obj/machinery/light{dir = 4},/obj/structure/reagent_dispensers/peppertank{pixel_x = 30;pixel_y = 0},/obj/structure/extinguisher_cabinet{pixel_x = 27;pixel_y = 29},/obj/machinery/suit_storage_unit/hos,/turf/open/floor/plasteel/black,/area/security/hos)
-"afp" = (/obj/machinery/light/small{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/security/range)
-"afq" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/security/range)
-"afr" = (/obj/machinery/light/small{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/security/range)
-"afs" = (/obj/machinery/shower{icon_state = "shower";dir = 4},/obj/machinery/door/window/eastright{base_state = "left";dir = 2;icon_state = "left";name = "shower"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"aft" = (/obj/structure/reagent_dispensers/water_cooler,/turf/open/floor/plasteel/vault,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"afu" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/drinks/sillycup{pixel_x = -5;pixel_y = 3},/obj/item/weapon/reagent_containers/food/drinks/sillycup,/obj/item/weapon/reagent_containers/food/drinks/sillycup{pixel_x = 5;pixel_y = 3},/obj/item/weapon/reagent_containers/food/drinks/sillycup{pixel_x = 5;pixel_y = 3},/obj/item/weapon/reagent_containers/food/drinks/sillycup{pixel_x = 5;pixel_y = 3},/turf/open/floor/plasteel/vault,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"afv" = (/obj/structure/easel,/turf/open/floor/plasteel/black,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"afw" = (/obj/structure/closet/masks,/turf/open/floor/plasteel/vault,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"afx" = (/obj/structure/closet/athletic_mixed,/turf/open/floor/plasteel/vault,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"afy" = (/obj/structure/closet/boxinggloves,/turf/open/floor/plasteel/vault,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"afz" = (/obj/structure/closet/emcloset,/obj/structure/sign/pods{pixel_y = 30},/turf/open/floor/plasteel/vault,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"afA" = (/turf/open/floor/plasteel/vault,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"afB" = (/obj/machinery/computer/arcade,/turf/open/floor/plasteel/vault,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"afC" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"afD" = (/turf/open/floor/engine{name = "Holodeck Projector Floor"},/area/holodeck/rec_center)
-"afE" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/airlock/external{name = "Solar Maintenance";req_access = null;req_access_txt = "10; 13"},/turf/open/floor/plating,/area/maintenance/auxsolarport)
-"afF" = (/obj/item/weapon/twohanded/required/kirbyplants{icon_state = "applebush";layer = 4.1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel,/area/security/prison)
-"afG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/red/corner{dir = 1},/area/security/prison)
-"afH" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/red/corner{dir = 1},/area/security/prison)
-"afI" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/red/corner{dir = 1},/area/security/prison)
-"afJ" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/newscaster/security_unit{pixel_x = 0;pixel_y = -30},/turf/open/floor/plasteel/red/corner{dir = 1},/area/security/prison)
-"afK" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2;initialize_directions = 11},/turf/open/floor/plasteel/red/corner{dir = 1},/area/security/prison)
-"afL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/red/corner{dir = 1},/area/security/prison)
-"afM" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2;initialize_directions = 11},/obj/machinery/firealarm{dir = 1;pixel_y = -24},/turf/open/floor/plasteel/red/corner{dir = 1},/area/security/prison)
-"afN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 0;pixel_y = -30},/turf/open/floor/plasteel/red/corner{dir = 1},/area/security/prison)
-"afO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 0;pixel_y = -30},/turf/open/floor/plasteel/red/corner{dir = 1},/area/security/prison)
-"afP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/airalarm{dir = 1;pixel_y = -22},/turf/open/floor/plasteel/red/corner{dir = 1},/area/security/prison)
-"afQ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2;initialize_directions = 11},/obj/effect/landmark{name = "lightsout"},/turf/open/floor/plasteel/red/corner{dir = 1},/area/security/prison)
-"afR" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1;initialize_directions = 11},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/red/corner{dir = 1},/area/security/prison)
-"afS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/red/corner{dir = 1},/area/security/prison)
-"afT" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2;initialize_directions = 11},/obj/machinery/light,/turf/open/floor/plasteel/red/corner{dir = 1},/area/security/prison)
-"afU" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel/red/corner{dir = 1},/area/security/prison)
-"afV" = (/turf/open/floor/plasteel/red/corner{dir = 1},/area/security/prison)
-"afW" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow,/turf/open/floor/plating,/area/security/prison)
-"afX" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/item/weapon/storage/secure/safe{name = "armory safe B";pixel_x = 6;pixel_y = 28},/obj/structure/extinguisher_cabinet{pixel_x = 27;pixel_y = 0},/turf/open/floor/plasteel/black,/area/ai_monitored/security/armory)
-"afY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/black,/area/ai_monitored/security/armory)
-"afZ" = (/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 0;pixel_y = 24},/obj/structure/rack,/obj/item/weapon/grenade/barrier{pixel_x = -3;pixel_y = 1},/obj/item/weapon/grenade/barrier,/obj/item/weapon/grenade/barrier{pixel_x = 3;pixel_y = -1},/obj/item/weapon/grenade/barrier{pixel_x = 6;pixel_y = -2},/turf/open/floor/plasteel/vault{dir = 1},/area/ai_monitored/security/armory)
-"aga" = (/mob/living/simple_animal/bot/secbot{arrest_type = 1;health = 45;icon_state = "secbot1";idcheck = 1;name = "Sergeant-at-Armsky";on = 1;weaponscheck = 1},/turf/open/floor/plasteel/vault{dir = 8},/area/ai_monitored/security/armory)
-"agb" = (/obj/structure/rack,/obj/item/weapon/gun/energy/e_gun/advtaser{pixel_x = -3;pixel_y = 3},/obj/item/weapon/gun/energy/e_gun/advtaser,/obj/item/weapon/gun/energy/e_gun/advtaser{pixel_x = 3;pixel_y = -3},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/vault{dir = 1},/area/ai_monitored/security/armory)
-"agc" = (/turf/open/floor/plasteel/black,/area/ai_monitored/security/armory)
-"agd" = (/obj/structure/rack,/obj/item/weapon/gun/energy/laser{pixel_x = -3;pixel_y = 3},/obj/item/weapon/gun/energy/laser,/obj/item/weapon/gun/energy/laser{pixel_x = 3;pixel_y = -3},/turf/open/floor/plasteel/vault{dir = 4},/area/ai_monitored/security/armory)
-"age" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/obj/machinery/door/poddoor/preopen{id = "hosprivacy";name = "privacy shutters"},/turf/open/floor/plating,/area/security/hos)
-"agf" = (/obj/structure/table/wood,/obj/item/weapon/storage/secure/briefcase{pixel_x = -2},/obj/item/weapon/book/manual/wiki/security_space_law,/obj/item/weapon/cartridge/detective,/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/black,/area/security/hos)
-"agg" = (/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel/black,/area/security/hos)
-"agh" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet,/area/security/hos)
-"agi" = (/obj/structure/table/wood,/obj/item/weapon/stamp/hos,/turf/open/floor/carpet,/area/security/hos)
-"agj" = (/obj/item/weapon/phone{desc = "Supposedly a direct line to NanoTrasen Central Command. It's not even plugged in.";pixel_x = -3;pixel_y = 3},/obj/item/weapon/cigbutt/cigarbutt{pixel_x = 5;pixel_y = -1},/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/security/hos)
-"agk" = (/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/black,/area/security/hos)
-"agl" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin{pixel_x = -3;pixel_y = 7},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/black,/area/security/hos)
-"agm" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/obj/machinery/door/poddoor/preopen{id = "hosprivacy";name = "privacy shutters"},/turf/open/floor/plating,/area/security/hos)
-"agn" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/security/range)
-"ago" = (/obj/structure/target_stake,/obj/item/target/syndicate,/turf/open/floor/plasteel,/area/security/range)
-"agp" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/security/range)
-"agq" = (/turf/closed/wall,/area/maintenance/fore)
-"agr" = (/obj/structure/sink{icon_state = "sink";dir = 8;pixel_x = -12;pixel_y = 2},/obj/machinery/button/door{id = "FitnessShower";name = "Lock Control";normaldoorcontrol = 1;pixel_x = 0;pixel_y = -25;req_access_txt = "0";specialfunctions = 4},/obj/structure/mirror{pixel_x = -28},/obj/machinery/light/small,/turf/open/floor/plasteel/freezer,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"ags" = (/obj/machinery/door/airlock{id_tag = "FitnessShower";name = "Fitness Room Shower"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"agt" = (/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"agu" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"agv" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/camera{c_tag = "Fitness Room - Fore";dir = 2},/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"agw" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"agx" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/neutral/corner{dir = 4},/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"agy" = (/obj/machinery/light{dir = 1},/obj/machinery/power/apc{dir = 1;name = "Recreation Area APC";pixel_x = 0;pixel_y = 24},/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/turf/open/floor/plasteel/neutral/corner{dir = 4},/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"agz" = (/turf/open/floor/plasteel/neutral/corner{dir = 4},/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"agA" = (/turf/closed/wall/r_wall,/area/maintenance/auxsolarport)
-"agB" = (/obj/machinery/power/solar_control{id = "foreport";name = "Fore Port Solar Control";track = 0},/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plating,/area/maintenance/auxsolarport)
-"agC" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/auxsolarport)
-"agD" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;name = "EXTERNAL AIRLOCK";pixel_x = 32;pixel_y = 0},/turf/open/floor/plating{icon_state = "platingdmg2"},/area/maintenance/auxsolarport)
-"agE" = (/obj/structure/table,/obj/item/weapon/folder/red{pixel_x = 3},/obj/item/weapon/folder/white{pixel_x = -4;pixel_y = 2},/turf/open/floor/plasteel/vault,/area/security/prison)
-"agF" = (/obj/structure/rack,/obj/item/weapon/restraints/handcuffs,/obj/item/device/assembly/flash/handheld,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/vault,/area/security/prison)
-"agG" = (/obj/structure/table,/obj/item/weapon/storage/box/bodybags{pixel_x = 4;pixel_y = 2},/obj/item/weapon/pen,/obj/item/weapon/storage/box/prisoner,/turf/open/floor/plasteel/vault,/area/security/prison)
-"agH" = (/obj/structure/closet/secure_closet/brig{anchored = 1},/turf/open/floor/plasteel/vault,/area/security/prison)
-"agI" = (/obj/structure/closet/secure_closet/brig{anchored = 1},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/vault,/area/security/prison)
-"agJ" = (/obj/structure/sign/securearea,/turf/closed/wall,/area/security/prison)
-"agK" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/airlock/glass_security{name = "Prison Wing";req_access_txt = "1"},/turf/open/floor/plasteel,/area/security/prison)
-"agL" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/prison)
-"agM" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/glass_security{name = "Prison Wing";req_access_txt = "1"},/turf/open/floor/plasteel,/area/security/prison)
-"agN" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'WARNING: Dangerous Inmates'.";name = "\improper WARNING: Dangerous Inmates"},/turf/closed/wall,/area/security/prison)
-"agO" = (/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/obj/structure/reagent_dispensers/peppertank{pixel_x = 0;pixel_y = -30},/turf/open/floor/plasteel/vault,/area/security/prison)
-"agP" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3;pixel_y = 7},/turf/open/floor/plasteel/vault,/area/security/prison)
-"agQ" = (/obj/structure/rack,/obj/item/clothing/suit/armor/bulletproof,/obj/item/clothing/head/helmet/alt,/obj/item/clothing/suit/armor/bulletproof,/obj/item/clothing/head/helmet/alt,/obj/item/clothing/suit/armor/bulletproof,/obj/item/clothing/head/helmet/alt,/turf/open/floor/plasteel/vault{dir = 4},/area/ai_monitored/security/armory)
-"agR" = (/obj/machinery/airalarm{dir = 4;locked = 0;pixel_x = -23;pixel_y = 0},/obj/structure/rack,/obj/item/weapon/storage/fancy/donut_box,/obj/item/weapon/gun/energy/e_gun/dragnet,/obj/item/weapon/gun/energy/e_gun/dragnet,/turf/open/floor/plasteel/vault{dir = 1},/area/ai_monitored/security/armory)
-"agS" = (/obj/machinery/holopad,/turf/open/floor/plasteel/vault{dir = 8},/area/ai_monitored/security/armory)
-"agT" = (/obj/structure/rack,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/weapon/storage/box/rubbershot,/obj/item/weapon/storage/box/rubbershot,/obj/item/weapon/storage/box/rubbershot,/obj/item/weapon/storage/box/rubbershot,/obj/item/weapon/storage/box/rubbershot,/obj/item/weapon/storage/box/rubbershot,/obj/item/weapon/gun/ballistic/shotgun/riot{pixel_x = -3;pixel_y = 3},/obj/item/weapon/gun/ballistic/shotgun/riot,/turf/open/floor/plasteel/vault{dir = 1},/area/ai_monitored/security/armory)
-"agU" = (/obj/structure/rack,/obj/item/weapon/gun/energy/e_gun{pixel_x = -3;pixel_y = 3},/obj/item/weapon/gun/energy/e_gun,/obj/item/weapon/gun/energy/e_gun{pixel_x = 3;pixel_y = -3},/turf/open/floor/plasteel/vault{dir = 4},/area/ai_monitored/security/armory)
-"agV" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow,/obj/machinery/door/poddoor/preopen{id = "hosprivacy";name = "privacy shutters"},/turf/open/floor/plating,/area/security/hos)
-"agW" = (/obj/structure/table/wood,/obj/machinery/recharger,/turf/open/floor/plasteel/black,/area/security/hos)
-"agX" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/black,/area/security/hos)
-"agY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet,/area/security/hos)
-"agZ" = (/obj/machinery/holopad,/obj/structure/chair{dir = 1},/obj/effect/landmark/start{name = "Head of Security"},/turf/open/floor/carpet,/area/security/hos)
-"aha" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/mob/living/simple_animal/hostile/retaliate/bat{desc = "A fierce companion for any person of power, this spider has been carefully trained by NanoTrasen specialists. Its beady, staring eyes send shivers down your spine";emote_hear = list("chitters");faction = list("spiders");harm_intent_damage = 3;health = 200;icon_dead = "guard_dead";icon_gib = "guard_dead";icon_living = "guard";icon_state = "guard";max_co2 = 5;max_tox = 2;maxHealth = 250;melee_damage_lower = 15;melee_damage_upper = 20;min_oxy = 5;name = "Sergeant Araneus";real_name = "Sergeant Araneus";response_help = "pets";turns_per_move = 10;voice_name = "unidentifiable voice"},/turf/open/floor/carpet,/area/security/hos)
-"ahb" = (/obj/structure/table/wood,/obj/item/device/taperecorder{pixel_x = -4;pixel_y = 0},/obj/item/device/radio/off{pixel_x = 0;pixel_y = 3},/turf/open/floor/plasteel/black,/area/security/hos)
-"ahc" = (/turf/open/floor/plasteel,/area/security/range)
-"ahd" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating,/area/maintenance/fore)
-"ahe" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating,/area/maintenance/fore)
-"ahf" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"ahg" = (/turf/open/floor/plasteel,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"ahh" = (/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"ahi" = (/obj/structure/chair,/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"ahj" = (/obj/structure/chair,/obj/effect/landmark/start{name = "Assistant"},/turf/open/floor/plasteel,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"ahk" = (/obj/structure/chair,/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"ahl" = (/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"ahm" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/turf/open/floor/plasteel,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"ahn" = (/obj/structure/chair{dir = 4},/turf/open/floor/plasteel/neutral/corner{dir = 4},/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"aho" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = "0"},/turf/closed/wall,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"ahp" = (/turf/closed/wall,/area/maintenance/disposal)
-"ahq" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/disposal)
-"ahr" = (/obj/structure/chair/stool{pixel_y = 8},/obj/machinery/camera/autoname{dir = 4;network = list("SS13")},/turf/open/floor/plating,/area/maintenance/auxsolarport)
-"ahs" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/turf/open/floor/plating,/area/maintenance/auxsolarport)
-"aht" = (/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/power/terminal,/obj/machinery/light/small{dir = 4},/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 29},/turf/open/floor/plating,/area/maintenance/auxsolarport)
-"ahu" = (/obj/machinery/suit_storage_unit/security,/turf/open/floor/plasteel/vault{dir = 1},/area/security/brig)
-"ahv" = (/obj/structure/tank_dispenser/oxygen,/turf/open/floor/plasteel/vault{dir = 8},/area/security/brig)
-"ahw" = (/obj/structure/extinguisher_cabinet{pixel_x = 27;pixel_y = 0},/obj/machinery/suit_storage_unit/security,/turf/open/floor/plasteel/vault{dir = 4},/area/security/brig)
-"ahx" = (/turf/closed/wall,/area/security/brig)
-"ahy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/poddoor{density = 0;icon_state = "open";id = "Prison Gate";name = "Security Blast Door";opacity = 0},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/security/brig)
-"ahz" = (/obj/machinery/door/poddoor{density = 0;icon_state = "open";id = "Prison Gate";name = "Security Blast Door";opacity = 0},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/security/brig)
-"ahA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/poddoor{density = 0;icon_state = "open";id = "Prison Gate";name = "Security Blast Door";opacity = 0},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/security/brig)
-"ahB" = (/turf/closed/wall,/area/security/warden)
-"ahC" = (/obj/structure/rack,/obj/item/clothing/suit/armor/riot,/obj/item/clothing/suit/armor/riot,/obj/item/clothing/suit/armor/riot,/obj/item/clothing/head/helmet/riot,/obj/item/clothing/head/helmet/riot,/obj/item/clothing/head/helmet/riot,/obj/machinery/firealarm{dir = 4;pixel_x = 28;pixel_y = 0},/turf/open/floor/plasteel/vault{dir = 4},/area/ai_monitored/security/armory)
-"ahD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel/black,/area/ai_monitored/security/armory)
-"ahE" = (/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/rack,/obj/item/weapon/storage/box/flashes{pixel_x = 3},/obj/item/weapon/storage/box/teargas{pixel_x = 1;pixel_y = -2},/turf/open/floor/plasteel/vault{dir = 1},/area/ai_monitored/security/armory)
-"ahF" = (/obj/machinery/power/apc{cell_type = 5000;dir = 2;name = "Armory APC";pixel_x = 1;pixel_y = -24},/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/obj/machinery/light,/obj/machinery/camera/motion{c_tag = "Armory - Internal";dir = 1;network = list("SS13")},/turf/open/floor/plasteel/vault,/area/ai_monitored/security/armory)
-"ahG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel/vault{dir = 6},/area/ai_monitored/security/armory)
-"ahH" = (/turf/open/floor/plasteel/vault{dir = 10},/area/ai_monitored/security/armory)
-"ahI" = (/obj/structure/rack,/obj/item/weapon/shield/riot{pixel_x = -3;pixel_y = 3},/obj/item/weapon/shield/riot,/obj/item/weapon/shield/riot{pixel_x = 3;pixel_y = -3},/obj/machinery/button/door{id = "armory";name = "Armory Shutters";pixel_x = 28;pixel_y = 0;req_access_txt = "3"},/turf/open/floor/plasteel/vault{dir = 4},/area/ai_monitored/security/armory)
-"ahJ" = (/obj/machinery/disposal/bin,/obj/machinery/firealarm{dir = 8;pixel_x = -24;pixel_y = 0},/obj/machinery/light_switch{pixel_x = -24;pixel_y = -20},/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/computer/security/telescreen{desc = "Used for watching certain areas.";dir = 1;name = "Head of Security's Monitor";network = list("Prison","MiniSat","tcomm");pixel_x = 0;pixel_y = -30},/turf/open/floor/plasteel/vault,/area/security/hos)
-"ahK" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel/vault,/area/security/hos)
-"ahL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/carpet,/area/security/hos)
-"ahM" = (/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/carpet,/area/security/hos)
-"ahN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/carpet,/area/security/hos)
-"ahO" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel/vault,/area/security/hos)
-"ahP" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Armory";req_access = null;req_access_txt = "3"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/vault{dir = 8},/area/ai_monitored/security/armory)
-"ahQ" = (/obj/item/clothing/head/festive,/obj/effect/decal/cleanable/cobweb/cobweb2,/turf/open/floor/plating,/area/maintenance/fore)
-"ahR" = (/obj/item/weapon/cigbutt,/turf/open/floor/plating,/area/maintenance/fore)
-"ahS" = (/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/fore)
-"ahT" = (/obj/structure/table,/obj/item/weapon/poster/contraband,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fore)
-"ahU" = (/obj/effect/decal/cleanable/cobweb/cobweb2,/obj/structure/table,/obj/item/weapon/stock_parts/manipulator,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fore)
-"ahV" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/firealarm{dir = 8;pixel_x = -24},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"ahW" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/window/eastright{base_state = "right";dir = 8;icon_state = "right";name = "Fitness Ring"},/turf/open/floor/plasteel/black,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"ahX" = (/obj/structure/window/reinforced{dir = 1},/turf/open/floor/plasteel/black,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"ahY" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel/black,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"ahZ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"aia" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/neutral/corner{dir = 4},/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"aib" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Holodeck Door"},/turf/open/floor/plasteel,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"aic" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Holodeck Door"},/turf/open/floor/plasteel,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"aid" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light/small{dir = 1},/obj/machinery/firealarm{pixel_y = 27},/turf/open/floor/plasteel,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"aie" = (/obj/machinery/airalarm{pixel_y = 24},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"aif" = (/obj/machinery/door/poddoor{id = "trash";name = "disposal bay door"},/turf/open/floor/plating,/area/maintenance/disposal)
-"aig" = (/obj/machinery/mass_driver{dir = 8;id = "trash"},/obj/machinery/light/small{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/disposal)
-"aih" = (/obj/machinery/conveyor_switch/oneway{convdir = -1;id = "garbage";name = "disposal coveyor"},/turf/open/floor/plating,/area/maintenance/disposal)
-"aii" = (/obj/structure/easel,/turf/open/floor/plating,/area/maintenance/disposal)
-"aij" = (/obj/item/weapon/vending_refill/coffee,/turf/open/floor/plating{icon_state = "platingdmg2"},/area/maintenance/disposal)
-"aik" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3;name = "3maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/disposal)
-"ail" = (/obj/machinery/power/apc{dir = 8;name = "Fore Port Solar APC";pixel_x = -25;pixel_y = 3},/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/auxsolarport)
-"aim" = (/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plating,/area/maintenance/auxsolarport)
-"ain" = (/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/obj/machinery/power/smes,/turf/open/floor/plating,/area/maintenance/auxsolarport)
-"aio" = (/turf/closed/wall/r_wall,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"aip" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"aiq" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/turf/open/floor/plating,/area/security/brig)
-"air" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/vault{dir = 8},/area/security/brig)
-"ais" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/light/small,/obj/machinery/camera{c_tag = "Security - EVA Storage";dir = 1;network = list("SS13")},/turf/open/floor/plasteel/vault{dir = 8},/area/security/brig)
-"ait" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Security E.V.A. Storage";req_access_txt = "3"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/brig)
-"aiu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel/red/side{dir = 1},/area/security/brig)
-"aiv" = (/turf/open/floor/plasteel/red/side{dir = 1},/area/security/brig)
-"aiw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light/small{dir = 4},/obj/machinery/button/door{id = "Prison Gate";name = "Prison Wing Lockdown";pixel_x = 26;pixel_y = 0;req_access_txt = "2"},/turf/open/floor/plasteel/red/side{dir = 1},/area/security/brig)
-"aix" = (/obj/structure/closet{name = "Evidence Closet 1"},/obj/item/weapon/storage/backpack{name = "Evidence Bag 1"},/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/turf/open/floor/plasteel/vault{dir = 1},/area/security/warden)
-"aiy" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/obj/machinery/light/small{dir = 1},/obj/effect/landmark{name = "blobstart"},/obj/machinery/camera{c_tag = "Evidence Storage";dir = 2;network = list("SS13")},/obj/item/weapon/storage/secure/safe{name = "evidence safe";pixel_x = 6;pixel_y = 28},/turf/open/floor/plasteel/vault{dir = 8},/area/security/warden)
-"aiz" = (/obj/structure/closet/secure_closet{anchored = 1;name = "Secure Evidence Closet";req_access_txt = "0";req_one_access_txt = "3,4"},/obj/item/weapon/storage/secure/briefcase{name = "Secure Evidence Briefcase";pixel_x = 3;pixel_y = -3},/turf/open/floor/plasteel/vault{dir = 4},/area/security/warden)
-"aiA" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow,/turf/open/floor/plating,/area/ai_monitored/security/armory)
-"aiB" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/security/warden)
-"aiC" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/ai_monitored/security/armory)
-"aiD" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/turf/open/floor/plating,/area/security/main)
-"aiE" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "hosprivacy";name = "privacy shutters"},/turf/open/floor/plating,/area/security/hos)
-"aiF" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/poddoor/preopen{id = "hosprivacy";name = "privacy shutters"},/turf/open/floor/plating,/area/security/hos)
-"aiG" = (/obj/machinery/door/firedoor,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/command{name = "Head of Security's Office";req_access = null;req_access_txt = "58"},/turf/open/floor/carpet,/area/security/hos)
-"aiH" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/poddoor/preopen{id = "hosprivacy";name = "privacy shutters"},/turf/open/floor/plating,/area/security/hos)
-"aiI" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "hosprivacy";name = "privacy shutters"},/turf/open/floor/plating,/area/security/hos)
-"aiJ" = (/turf/closed/wall/r_wall,/area/security/range)
-"aiK" = (/obj/structure/window/reinforced,/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/security/range)
-"aiL" = (/obj/machinery/door/window/westleft{base_state = "right";dir = 2;icon_state = "right";name = "Shooting Range";req_access_txt = "0"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/security/range)
-"aiM" = (/obj/structure/window/reinforced,/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/security/range)
-"aiN" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/atmos)
-"aiO" = (/obj/structure/chair/stool{pixel_y = 8},/turf/open/floor/plating,/area/maintenance/fore)
-"aiP" = (/obj/structure/table,/obj/item/weapon/folder,/turf/open/floor/plating,/area/maintenance/fore)
-"aiQ" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/extinguisher_cabinet{pixel_x = -27;pixel_y = 0},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"aiR" = (/obj/structure/table,/obj/item/clothing/under/sl_suit{desc = "Whoever wears this makes the rules.";name = "referee suit"},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"aiS" = (/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel/black,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"aiT" = (/turf/open/floor/plasteel/vault{dir = 5},/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"aiU" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/turf/open/floor/plasteel/vault{dir = 5},/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"aiV" = (/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel/black,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"aiW" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"aiX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"aiY" = (/obj/structure/chair{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"aiZ" = (/obj/machinery/computer/holodeck,/turf/open/floor/plasteel,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"aja" = (/obj/structure/chair{dir = 8},/obj/effect/landmark/start{name = "Assistant"},/turf/open/floor/plasteel,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"ajb" = (/turf/closed/wall/r_wall,/area/engine/gravity_generator)
-"ajc" = (/obj/machinery/conveyor{dir = 2;id = "garbage";layer = 2.7},/obj/machinery/door/poddoor/preopen{id = "Disposal Exit";layer = 3.1;name = "disposal exit vent"},/turf/open/floor/plating,/area/maintenance/disposal)
-"ajd" = (/obj/machinery/button/door{id = "Disposal Exit";name = "Disposal Vent Control";pixel_x = -25;pixel_y = 4;req_access_txt = "12"},/obj/machinery/button/massdriver{id = "trash";pixel_x = -26;pixel_y = -6},/obj/structure/chair/stool,/obj/machinery/light/small{dir = 8},/turf/open/floor/plating,/area/maintenance/disposal)
-"aje" = (/turf/open/floor/plating,/area/maintenance/fore)
-"ajf" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/turf/open/floor/plating,/area/maintenance/disposal)
-"ajg" = (/turf/open/floor/plating{icon_state = "platingdmg2"},/area/maintenance/disposal)
-"ajh" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/engineering{name = "Fore Port Solar Access";req_access_txt = "10"},/turf/open/floor/plating,/area/maintenance/auxsolarport)
-"aji" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'";icon_state = "shock";name = "HIGH VOLTAGE";pixel_y = 0},/turf/closed/wall,/area/maintenance/auxsolarport)
-"ajj" = (/obj/structure/table,/obj/item/stack/medical/ointment{pixel_x = 3;pixel_y = -2},/obj/item/stack/medical/bruise_pack{pixel_x = -3;pixel_y = 2},/obj/item/weapon/reagent_containers/syringe/epinephrine,/obj/item/weapon/storage/secure/safe{pixel_x = 6;pixel_y = 28},/obj/item/weapon/restraints/handcuffs/cable/pink,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"ajk" = (/obj/item/stack/sheet/cardboard,/obj/structure/light_construct/small{dir = 1},/obj/structure/closet/crate,/obj/item/weapon/coin/silver,/obj/item/weapon/grenade/chem_grenade,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/watertank,/obj/item/weapon/storage/box/donkpockets,/obj/item/weapon/poster/contraband,/obj/item/weapon/poster/contraband,/obj/item/weapon/poster/contraband,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"ajl" = (/obj/item/weapon/soap/deluxe,/obj/item/weapon/storage/secure/safe{pixel_x = 6;pixel_y = 28},/obj/item/weapon/kitchen/rollingpin,/obj/structure/closet/crate,/obj/item/clothing/suit/xenos,/obj/item/clothing/suit/monkeysuit,/obj/item/clothing/head/xenos,/obj/item/clothing/mask/gas/monkeymask,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"ajm" = (/turf/closed/wall/r_wall,/area/security/brig)
-"ajn" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Prison Wing";req_access_txt = "1"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/red/side,/area/security/brig)
-"ajo" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/brig)
-"ajp" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/glass_security{name = "Prison Wing";req_access_txt = "1"},/turf/open/floor/plasteel/red/side,/area/security/brig)
-"ajq" = (/obj/structure/closet{name = "Evidence Closet 2"},/obj/item/weapon/storage/backpack{name = "Evidence Bag 2"},/obj/machinery/airalarm{dir = 4;pixel_x = -23;pixel_y = 0},/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/turf/open/floor/plasteel/vault{dir = 1},/area/security/warden)
-"ajr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/vault{dir = 8},/area/security/warden)
-"ajs" = (/obj/machinery/door/poddoor/shutters{id = "armory";name = "armory shutters"},/turf/open/floor/plasteel/vault{dir = 8},/area/ai_monitored/security/armory)
-"ajt" = (/obj/structure/closet{name = "Evidence Closet 5"},/obj/item/weapon/storage/backpack{name = "Evidence Bag 5"},/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/obj/machinery/firealarm{dir = 4;pixel_x = 28},/turf/open/floor/plasteel/vault{dir = 4},/area/security/warden)
-"aju" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/sign/poster{pixel_x = -32;pixel_y = 0},/turf/open/floor/plasteel,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"ajv" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/warden)
-"ajw" = (/obj/structure/closet/bombcloset,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4;initialize_directions = 11},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/security/warden)
-"ajx" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/turf/open/floor/plating,/area/security/warden)
-"ajy" = (/obj/structure/extinguisher_cabinet{pixel_x = 0;pixel_y = 30},/obj/structure/closet/secure_closet/security/sec,/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
-"ajz" = (/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
-"ajA" = (/obj/structure/closet/secure_closet/security/sec,/obj/machinery/airalarm{pixel_y = 28},/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
-"ajB" = (/obj/machinery/computer/secure_data,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/vault,/area/security/main)
-"ajC" = (/obj/machinery/computer/security,/obj/machinery/computer/security/telescreen{desc = "Used for watching Prison Wing holding areas.";name = "Prison Monitor";network = list("Prison");pixel_x = 0;pixel_y = 30},/turf/open/floor/plasteel/vault,/area/security/main)
-"ajD" = (/turf/closed/wall,/area/security/main)
-"ajE" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/obj/effect/landmark{name = "secequipment"},/turf/open/floor/plasteel/vault,/area/security/main)
-"ajF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/landmark{name = "secequipment"},/turf/open/floor/plasteel/vault,/area/security/main)
-"ajG" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/vault,/area/security/main)
-"ajH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/landmark{name = "secequipment"},/turf/open/floor/plasteel/vault,/area/security/main)
-"ajI" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/effect/landmark{name = "secequipment"},/turf/open/floor/plasteel/vault,/area/security/main)
-"ajJ" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -3;pixel_y = 6},/turf/open/floor/plasteel/vault,/area/security/main)
-"ajK" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/vault,/area/security/main)
-"ajL" = (/obj/structure/table,/obj/machinery/light/small{dir = 8},/obj/machinery/magnetic_controller{autolink = 1;pixel_y = 3},/obj/item/clothing/ears/earmuffs,/obj/item/clothing/glasses/sunglasses{pixel_x = 3;pixel_y = 3},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/security/range)
-"ajM" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/turf/open/floor/plasteel,/area/security/range)
-"ajN" = (/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/obj/machinery/light/small{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 27;pixel_y = 0},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/security/range)
-"ajO" = (/obj/structure/closet,/obj/item/clothing/gloves/color/fyellow,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fore)
-"ajP" = (/obj/item/toy/beach_ball/holoball,/turf/open/floor/plating,/area/maintenance/fore)
-"ajQ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/cable/yellow{icon_state = "4-8";d1 = 4;d2 = 8},/turf/open/floor/plasteel/red/corner{dir = 4},/area/security/brig)
-"ajR" = (/obj/structure/chair/stool{pixel_y = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"ajS" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/weapon/storage/firstaid/brute,/turf/open/floor/plasteel,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"ajT" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/black,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"ajU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/vault{dir = 5},/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"ajV" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/vault{dir = 5},/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"ajW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/holopad,/turf/open/floor/plasteel,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"ajX" = (/obj/structure/table,/obj/item/weapon/paper{desc = "";info = "Brusies sustained in the holodeck can be healed simply by sleeping.";name = "Holodeck Disclaimer"},/obj/item/weapon/storage/firstaid/regular{pixel_x = 3;pixel_y = -3},/turf/open/floor/plasteel,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"ajY" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"ajZ" = (/turf/open/floor/plasteel/black,/area/engine/gravity_generator)
-"aka" = (/turf/open/floor/plasteel/vault{dir = 1},/area/engine/gravity_generator)
-"akb" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'";icon_state = "radiation";name = "RADIOACTIVE AREA";pixel_x = 0;pixel_y = 32},/turf/open/floor/plasteel/vault{dir = 8},/area/engine/gravity_generator)
-"akc" = (/turf/open/floor/plasteel/vault{dir = 4},/area/engine/gravity_generator)
-"akd" = (/turf/open/space,/area/maintenance/auxsolarstarboard)
-"ake" = (/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/lattice/catwalk,/turf/open/space,/area/maintenance/auxsolarstarboard)
-"akf" = (/obj/machinery/conveyor{dir = 2;id = "garbage"},/turf/open/floor/plating,/area/maintenance/disposal)
-"akg" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel,/area/security/brig)
-"akh" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plating,/area/maintenance/disposal)
-"aki" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plating,/area/maintenance/disposal)
-"akj" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plating,/area/maintenance/disposal)
-"akk" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plating,/area/maintenance/disposal)
-"akl" = (/obj/machinery/door/airlock/maintenance{name = "Disposal Access";req_access_txt = "12"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"akm" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"akn" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"ako" = (/obj/structure/closet/firecloset,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"akp" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/clothing/gloves/color/yellow,/obj/item/weapon/mop,/obj/item/weapon/bikehorn/rubberducky,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/obj/item/weapon/grenade/empgrenade,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"akq" = (/obj/item/weapon/vending_refill/cola,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"akr" = (/obj/item/weapon/vending_refill/snack,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"aks" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/clothing/neck/tie/red{pixel_x = -5;pixel_y = 3},/obj/item/clothing/neck/tie/horrible,/obj/item/clothing/neck/tie/blue{pixel_x = 5;pixel_y = -2},/obj/item/weapon/dice/d8,/obj/item/device/healthanalyzer,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"akt" = (/obj/structure/table,/obj/item/clothing/gloves/color/latex,/obj/item/clothing/mask/surgical,/obj/item/weapon/reagent_containers/spray/cleaner,/turf/open/floor/plasteel/whitered/side{dir = 9},/area/security/brig)
-"aku" = (/obj/structure/table,/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 0;pixel_y = 26},/obj/machinery/light/small{dir = 1},/obj/item/weapon/folder/red{pixel_x = 3},/obj/item/weapon/folder/white{pixel_x = -4;pixel_y = 2},/obj/item/device/healthanalyzer,/turf/open/floor/plasteel/whitered/side{dir = 1},/area/security/brig)
-"akv" = (/obj/structure/table,/obj/machinery/airalarm{pixel_y = 28},/obj/machinery/computer/med_data/laptop,/turf/open/floor/plasteel/whitered/side{dir = 1},/area/security/brig)
-"akw" = (/obj/structure/table,/obj/structure/window/reinforced{dir = 4},/obj/item/weapon/paper_bin{pixel_x = -3;pixel_y = 7},/obj/item/weapon/pen,/turf/open/floor/plasteel/whitered/side{dir = 5},/area/security/brig)
-"akx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel/red/side{dir = 9},/area/security/brig)
-"aky" = (/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel/red/side{dir = 1},/area/security/brig)
-"akz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/sign/pods{pixel_x = 32;pixel_y = 0},/turf/open/floor/plasteel/red/side{dir = 5},/area/security/brig)
-"akA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8";d1 = 4;d2 = 8},/turf/open/floor/plasteel/vault{dir = 8},/area/security/warden)
-"akB" = (/obj/structure/closet{name = "Evidence Closet 4"},/obj/item/weapon/storage/backpack{name = "Evidence Bag 4"},/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/turf/open/floor/plasteel/vault{dir = 4},/area/security/warden)
-"akC" = (/obj/structure/extinguisher_cabinet{pixel_x = -27;pixel_y = 0},/obj/machinery/camera{c_tag = "Security - Secure Gear Storage";dir = 4;network = list("SS13")},/obj/machinery/flasher/portable,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/security/warden)
-"akD" = (/obj/machinery/flasher/portable,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/security/warden)
-"akE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/warden)
-"akF" = (/obj/structure/closet/l3closet/security,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/security/warden)
-"akG" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/obj/structure/cable/yellow,/turf/open/floor/plating,/area/security/warden)
-"akH" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/closet/secure_closet/security/sec,/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
-"akI" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
-"akJ" = (/obj/structure/closet/secure_closet/security/sec,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
-"akK" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/security/warden)
-"akL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel/red/side{dir = 9},/area/security/main)
-"akM" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/red/side{dir = 1},/area/security/main)
-"akN" = (/obj/machinery/light{dir = 1},/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 0;pixel_y = 26},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/red/side{dir = 1},/area/security/main)
-"akO" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/red/side{dir = 1},/area/security/main)
-"akP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/red/side{dir = 1},/area/security/main)
-"akQ" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/turf/open/floor/plasteel/red/side{dir = 1},/area/security/main)
-"akR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/red/side{dir = 1},/area/security/main)
-"akS" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4;initialize_directions = 11},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/red/side{dir = 1},/area/security/main)
-"akT" = (/obj/machinery/light{dir = 1},/obj/machinery/airalarm{pixel_y = 28},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/red/side{dir = 1},/area/security/main)
-"akU" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel/red/side{dir = 1},/area/security/main)
-"akV" = (/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel/red/side{dir = 5},/area/security/main)
-"akW" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/security/range)
-"akX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/landmark/start{name = "Security Officer"},/turf/open/floor/plasteel/red/corner{dir = 8},/area/security/range)
-"akY" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/range)
-"akZ" = (/obj/structure/rack{pixel_y = 2},/obj/item/weapon/gun/energy/laser/practice{pixel_x = 2;pixel_y = -2},/obj/item/weapon/gun/energy/laser/practice{pixel_x = -3;pixel_y = 3},/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/obj/machinery/camera{c_tag = "Firing Range";dir = 8;network = list("SS13")},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/security/range)
-"ala" = (/obj/structure/closet/firecloset,/turf/open/floor/plating,/area/maintenance/fore)
-"alb" = (/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/fore)
-"alc" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/turf/open/floor/plating,/area/maintenance/fore)
-"ald" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plating,/area/maintenance/fore)
-"ale" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/turf/open/floor/plating,/area/maintenance/fore)
-"alf" = (/obj/structure/closet/firecloset,/turf/open/floor/plasteel/black,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"alg" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"alh" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3;pixel_y = 7},/obj/item/weapon/pen,/turf/open/floor/plasteel/neutral/corner{dir = 4},/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"ali" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel/vault{dir = 5},/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"alj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/vault{dir = 5},/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"alk" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"all" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"alm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Holodeck Door"},/turf/open/floor/plasteel,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"aln" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Holodeck Door"},/turf/open/floor/plasteel,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"alo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera{c_tag = "Holodeck";dir = 1},/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 0;pixel_y = -28},/obj/machinery/light/small,/turf/open/floor/plasteel,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"alp" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"alq" = (/turf/closed/wall,/area/maintenance/starboard)
-"alr" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/starboard)
-"als" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel/black,/area/engine/gravity_generator)
-"alt" = (/turf/open/floor/plasteel/vault{dir = 8},/area/engine/gravity_generator)
-"alu" = (/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/black,/area/engine/gravity_generator)
-"alv" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/auxsolarstarboard)
-"alw" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/airlock/external{name = "Solar Maintenance";req_access = null;req_access_txt = "10; 13"},/turf/open/floor/plating,/area/maintenance/auxsolarstarboard)
-"alx" = (/obj/machinery/conveyor{dir = 2;id = "garbage"},/obj/structure/sign/vacuum{pixel_x = -32},/turf/open/floor/plating,/area/maintenance/disposal)
-"aly" = (/obj/machinery/disposal/deliveryChute{dir = 4},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/window{base_state = "right";dir = 4;icon_state = "right";layer = 3},/obj/structure/disposalpipe/trunk{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/disposal)
-"alz" = (/obj/machinery/conveyor{dir = 4;id = "garbage"},/obj/machinery/door/window/eastright{base_state = "left";dir = 1;icon_state = "left";name = "Danger: Conveyor Access";req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/disposal)
-"alA" = (/obj/machinery/mineral/stacking_machine{input_dir = 2},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/open/floor/plating,/area/maintenance/disposal)
-"alB" = (/obj/machinery/mineral/stacking_unit_console{dir = 2;machinedir = 8;pixel_x = 32;pixel_y = 0},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/disposal)
-"alC" = (/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"alD" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"alE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"alF" = (/obj/machinery/door/airlock/maintenance{name = "Secure Storage Room";req_access_txt = "65"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"alG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"alH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/item/weapon/bucket_sensor,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"alI" = (/obj/item/weapon/grown/log,/obj/effect/landmark{name = "blobstart"},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"alJ" = (/obj/structure/light_construct/small{dir = 4},/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/storage/secure/briefcase,/obj/item/weapon/disk/data,/obj/item/weapon/grenade/flashbang,/obj/effect/spawner/lootdrop/maintenance,/obj/item/weapon/grenade/smokebomb,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"alK" = (/turf/closed/wall,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"alL" = (/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/turf/open/floor/plasteel/black,/area/maintenance/fore)
-"alM" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/reagent_containers/glass/bottle/epinephrine,/obj/item/weapon/reagent_containers/glass/bottle/charcoal,/obj/item/weapon/reagent_containers/syringe,/obj/structure/extinguisher_cabinet{pixel_x = -27;pixel_y = 0},/turf/open/floor/plasteel/whitered/side{dir = 10},/area/security/brig)
-"alN" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel/whitered/corner{dir = 8},/area/security/brig)
-"alO" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/security/brig)
-"alP" = (/obj/machinery/door/window/westleft{base_state = "left";dir = 4;icon_state = "left";name = "Infirmary";req_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/whitered/side{dir = 4},/area/security/brig)
-"alQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/red/corner{dir = 1},/area/security/brig)
-"alR" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Evidence Storage";req_access = null;req_access_txt = "0";req_one_access_txt = "1;4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8";d1 = 4;d2 = 8},/turf/open/floor/plasteel/vault{dir = 8},/area/security/warden)
-"alS" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel/red/corner{dir = 4},/area/security/brig)
-"alT" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/cable/yellow{icon_state = "4-8";d1 = 4;d2 = 8},/turf/open/floor/plasteel/vault{dir = 8},/area/security/warden)
-"alU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8";d1 = 4;d2 = 8},/turf/open/floor/plasteel,/area/security/warden)
-"alV" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/security{name = "Evidence Storage";req_access = null;req_access_txt = "3";req_one_access_txt = "0"},/obj/structure/cable/yellow{icon_state = "4-8";d1 = 4;d2 = 8},/turf/open/floor/plasteel/vault{dir = 8},/area/security/warden)
-"alW" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel,/area/security/warden)
-"alX" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/door/airlock/glass_security{name = "Gear Room";req_access_txt = "0";req_one_access_txt = "1;4"},/obj/structure/cable/yellow{icon_state = "4-8";d1 = 4;d2 = 8},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/security/warden)
-"alY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel/red/side{dir = 9},/area/security/main)
-"alZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/warden)
-"ama" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Secure Gear Storage";req_access_txt = "3"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/security/warden)
-"amb" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
-"amc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
-"amd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/cable/yellow{icon_state = "4-8";d1 = 4;d2 = 8},/turf/open/floor/plasteel/red/side{dir = 8},/area/security/main)
-"ame" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
-"amf" = (/obj/machinery/light{dir = 8},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/power/apc{cell_type = 5000;dir = 8;name = "Brig Control APC";pixel_x = -26;pixel_y = 0},/obj/structure/cable/yellow,/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
-"amg" = (/turf/open/floor/plasteel/red/side{dir = 1},/area/security/main)
-"amh" = (/turf/open/floor/plasteel/red,/area/security/main)
-"ami" = (/obj/machinery/photocopier{pixel_y = 3},/turf/open/floor/plasteel,/area/security/main)
-"amj" = (/obj/structure/chair/comfy/black,/obj/effect/landmark/start{name = "Head of Security"},/turf/open/floor/plasteel,/area/security/main)
-"amk" = (/obj/machinery/computer/card/minor/hos,/turf/open/floor/plasteel,/area/security/main)
-"aml" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8;initialize_directions = 11},/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/turf/open/floor/plasteel/red,/area/security/main)
-"amm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/red/side{dir = 1},/area/security/main)
-"amn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/sortjunction{dir = 4;icon_state = "pipe-j2s";sortType = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/red/side{dir = 5},/area/security/main)
-"amo" = (/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/sortjunction{dir = 4;icon_state = "pipe-j2s";sortType = 7},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/red/side{dir = 4},/area/security/main)
-"amp" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Firing Range";req_access_txt = "0";req_one_access_txt = "1;4"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/range)
-"amq" = (/obj/machinery/firealarm{dir = 1;pixel_y = -24},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/red/side{dir = 10},/area/security/range)
-"amr" = (/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/red/corner{dir = 8},/area/security/range)
-"ams" = (/obj/item/target,/obj/item/target,/obj/item/target/alien,/obj/item/target/alien,/obj/item/target/clown,/obj/item/target/clown,/obj/item/target/syndicate,/obj/item/target/syndicate,/obj/structure/closet/crate/secure{desc = "A secure crate containing various materials for building a customised test-site.";name = "Firing Range Gear Crate";req_access_txt = "1"},/obj/machinery/power/apc{cell_type = 2500;dir = 4;name = "Shooting Range APC";pixel_x = 24;pixel_y = 0},/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/security/range)
-"amt" = (/obj/structure/rack,/obj/item/weapon/storage/box/lights/mixed,/obj/effect/landmark{name = "blobstart"},/turf/open/floor/plating,/area/maintenance/fore)
-"amu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plating,/area/maintenance/fore)
-"amv" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel/vault,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"amw" = (/obj/structure/window/reinforced,/obj/machinery/door/window/eastright{base_state = "left";dir = 8;icon_state = "left";name = "Fitness Ring"},/turf/open/floor/plasteel/black,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"amx" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/black,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"amy" = (/obj/structure/window/reinforced,/turf/open/floor/plasteel/black,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"amz" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/black,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"amA" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/open/floor/plasteel/black,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"amB" = (/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"amC" = (/obj/structure/chair{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"amD" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"amE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"amF" = (/obj/machinery/door/airlock/maintenance{name = "maintenance access";req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/starboard)
-"amG" = (/obj/machinery/light/small{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plating,/area/maintenance/starboard)
-"amH" = (/obj/machinery/door/airlock/external{req_access_txt = "0";req_one_access_txt = "13,8"},/turf/open/floor/plating,/area/maintenance/starboard)
-"amI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel/black,/area/engine/gravity_generator)
-"amJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel/vault{dir = 4},/area/engine/gravity_generator)
-"amK" = (/obj/machinery/gravity_generator/main/station,/turf/open/floor/plasteel/vault{dir = 8},/area/engine/gravity_generator)
-"amL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/vault{dir = 1},/area/engine/gravity_generator)
-"amM" = (/obj/machinery/camera{c_tag = "Gravity Generator Room";dir = 8;network = list("SS13");pixel_x = 0;pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/black,/area/engine/gravity_generator)
-"amN" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/auxsolarstarboard)
-"amO" = (/obj/machinery/light/small{dir = 8},/obj/machinery/conveyor{dir = 9;id = "garbage";verted = -1},/turf/open/floor/plating,/area/maintenance/disposal)
-"amP" = (/obj/machinery/conveyor{dir = 4;id = "garbage"},/turf/open/floor/plating,/area/maintenance/disposal)
-"amQ" = (/obj/machinery/conveyor{dir = 6;id = "garbage"},/obj/machinery/door/window/eastright{base_state = "left";dir = 4;icon_state = "left";name = "Danger: Conveyor Access";req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/disposal)
-"amR" = (/obj/machinery/light/small{dir = 4},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/disposal)
-"amS" = (/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/obj/item/weapon/storage/box/lights/mixed,/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"amT" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"amU" = (/turf/open/floor/plating{icon_state = "platingdmg2"},/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"amV" = (/obj/structure/table/reinforced,/obj/structure/light_construct/small{dir = 8},/obj/item/weapon/paper_bin{pixel_x = -3;pixel_y = 7},/obj/structure/window/reinforced,/obj/item/weapon/poster/legit,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"amW" = (/obj/structure/table/reinforced,/obj/item/weapon/folder,/obj/item/weapon/folder,/obj/machinery/door/window/westleft{base_state = "right";dir = 2;icon_state = "right";name = "windoor";req_access_txt = "0"},/obj/item/weapon/book/manual/wiki/engineering_hacking,/obj/item/device/tape/random,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"amX" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced,/obj/item/weapon/stock_parts/cell/crap,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"amY" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced,/obj/item/weapon/electronics/firealarm,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"amZ" = (/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"ana" = (/obj/structure/rack{dir = 1},/obj/item/clothing/under/rank/mailman,/obj/item/clothing/under/rank/vice{pixel_x = 4;pixel_y = -3},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"anb" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/turf/open/floor/plating,/area/maintenance/fore)
-"anc" = (/obj/machinery/door/airlock/glass_security{name = "N2O Storage";req_access_txt = "3"},/turf/open/floor/plasteel/black,/area/maintenance/fore)
-"and" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/bodycontainer/morgue,/obj/effect/landmark{name = "revenantspawn"},/turf/open/floor/plasteel/black,/area/security/brig)
-"ane" = (/turf/open/floor/plasteel/whitered/side{dir = 8},/area/security/brig)
-"anf" = (/obj/structure/bed/roller,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/security/brig)
-"ang" = (/obj/machinery/door/window/westleft{base_state = "right";dir = 4;icon_state = "right";name = "Infirmary";req_access_txt = "0"},/turf/open/floor/plasteel/whitered/side{dir = 4},/area/security/brig)
-"anh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/red/corner{dir = 1},/area/security/brig)
-"ani" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel,/area/security/brig)
-"anj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light{icon_state = "tube1";dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 27;pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/red/corner{dir = 4},/area/security/brig)
-"ank" = (/obj/structure/table,/obj/item/weapon/storage/box/evidence,/obj/item/weapon/storage/box/evidence,/obj/item/weapon/storage/box/evidence,/obj/item/weapon/hand_labeler,/turf/open/floor/plasteel/vault{dir = 6},/area/security/warden)
-"anl" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel/vault,/area/security/warden)
-"anm" = (/obj/structure/filingcabinet/security{pixel_x = 4},/turf/open/floor/plasteel/vault{dir = 10},/area/security/warden)
-"ann" = (/obj/structure/rack,/obj/item/weapon/storage/box/chemimp{pixel_x = 4;pixel_y = 3},/obj/item/weapon/storage/box/trackimp,/obj/item/weapon/storage/lockbox/loyalty,/obj/item/weapon/reagent_containers/glass/bottle/morphine,/obj/machinery/light/small,/obj/machinery/firealarm{dir = 8;pixel_x = -26;pixel_y = 0},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/security/warden)
-"ano" = (/obj/structure/rack,/obj/item/weapon/storage/box/handcuffs,/obj/item/weapon/storage/box/flashbangs{pixel_x = -2;pixel_y = -2},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/security/warden)
-"anp" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/warden)
-"anq" = (/obj/structure/rack,/obj/item/weapon/storage/box/firingpins{pixel_x = 3;pixel_y = 3},/obj/item/weapon/storage/box/firingpins,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/security/warden)
-"anr" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow,/turf/open/floor/plating,/area/security/warden)
-"ans" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
-"ant" = (/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
-"anu" = (/obj/machinery/vending/security,/obj/machinery/firealarm{dir = 4;pixel_x = 28},/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
-"anv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera{c_tag = "Security - Office - Port";dir = 4;network = list("SS13")},/turf/open/floor/plasteel/red/side{dir = 8},/area/security/main)
-"anw" = (/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/turf/open/floor/plasteel,/area/security/main)
-"anx" = (/obj/structure/table/reinforced,/obj/item/weapon/folder/red{pixel_x = 3},/obj/item/weapon/folder/blue{pixel_x = -2;pixel_y = 3},/turf/open/floor/plasteel,/area/security/main)
-"any" = (/obj/structure/table/reinforced,/obj/item/weapon/paper,/turf/open/floor/plasteel,/area/security/main)
-"anz" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/sign/poster{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/fore)
-"anA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/red,/area/security/main)
-"anB" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3;pixel_y = 7},/turf/open/floor/plasteel,/area/security/main)
-"anC" = (/obj/machinery/power/apc{cell_type = 5000;dir = 4;name = "Security Office APC";pixel_x = 24;pixel_y = 0},/obj/structure/cable/yellow,/turf/open/floor/plasteel/red/side{dir = 4},/area/security/main)
-"anD" = (/obj/machinery/door/airlock/maintenance{name = "Security Maintenance";req_access_txt = "0";req_one_access_txt = "1;4"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/security/range)
-"anE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/maintenance{name = "Storage Room";req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/fore)
-"anF" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/light_switch{pixel_x = -26},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"anG" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"anH" = (/obj/structure/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/neutral/corner{dir = 4},/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"anI" = (/obj/structure/chair{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"anJ" = (/obj/structure/chair{dir = 1},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"anK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"anL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"anM" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/maintenance/starboard)
-"anN" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/starboard)
-"anO" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/turf/open/floor/plasteel/black,/area/engine/gravity_generator)
-"anP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/black,/area/engine/gravity_generator)
-"anQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/black,/area/engine/gravity_generator)
-"anR" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel/black,/area/engine/gravity_generator)
-"anS" = (/turf/open/floor/plating/airless,/area/space)
-"anT" = (/obj/structure/lattice,/obj/structure/grille,/turf/open/space,/area/space)
-"anU" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/conveyor{dir = 8;id = "garbage"},/obj/structure/disposaloutlet{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/disposal)
-"anV" = (/obj/machinery/conveyor{dir = 8;id = "garbage"},/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/disposal)
-"anW" = (/obj/machinery/conveyor{dir = 8;id = "garbage"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/turf/open/floor/plating,/area/maintenance/disposal)
-"anX" = (/obj/machinery/conveyor{dir = 8;id = "garbage"},/obj/machinery/recycler,/turf/open/floor/plating,/area/maintenance/disposal)
-"anY" = (/obj/machinery/door/window/eastright{dir = 4;name = "Danger: Conveyor Access";req_access_txt = "12"},/obj/machinery/conveyor{dir = 10;id = "garbage"},/turf/open/floor/plating,/area/maintenance/disposal)
-"anZ" = (/obj/effect/decal/cleanable/oil,/obj/machinery/light_switch{pixel_x = 25;pixel_y = 0},/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/maintenance/disposal)
-"aoa" = (/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"aob" = (/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"aoc" = (/obj/structure/chair{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"aod" = (/obj/structure/chair{dir = 8},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"aoe" = (/obj/machinery/space_heater,/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"aof" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"aog" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"aoh" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"aoi" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/canister/air,/obj/item/weapon/tank/internals/air,/turf/open/floor/plating,/area/maintenance/fore)
-"aoj" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/fore)
-"aok" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/fore)
-"aol" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/fore)
-"aom" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/airlock/maintenance{name = "Brig Infirmary Maintenance";req_access_txt = "63";req_one_access_txt = "0"},/turf/open/floor/plating,/area/security/brig)
-"aon" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/black,/area/security/brig)
-"aoo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/light/small,/turf/open/floor/plasteel/whitered/side{dir = 10},/area/security/brig)
-"aop" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/iv_drip{density = 0},/turf/open/floor/plasteel/whitered/side,/area/security/brig)
-"aoq" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/rack,/obj/item/weapon/storage/firstaid/regular,/obj/item/device/healthanalyzer{pixel_y = -2},/obj/machinery/camera{c_tag = "Brig - Infirmary";dir = 1;network = list("SS13")},/obj/item/clothing/under/rank/medical/purple{pixel_y = -4},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/whitered/side{dir = 6},/area/security/brig)
-"aor" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4;initialize_directions = 11},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/red/corner{dir = 1},/area/security/brig)
-"aos" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel,/area/security/brig)
-"aot" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/firealarm{dir = 4;pixel_x = 28},/turf/open/floor/plasteel/red/corner{dir = 4},/area/security/brig)
-"aou" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/security{name = "Evidence Storage";req_access = null;req_access_txt = "3";req_one_access_txt = "0"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/security/warden)
-"aov" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/warden)
-"aow" = (/obj/machinery/door/firedoor,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/airlock/glass_security{name = "Secure Gear Storage";req_access_txt = "3"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/security/warden)
-"aox" = (/obj/structure/grille,/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/fore)
-"aoy" = (/obj/machinery/firealarm{dir = 4;pixel_x = 28},/obj/structure/closet/secure_closet/warden,/obj/item/weapon/gun/energy/laser,/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
-"aoz" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/closet/secure_closet/security/sec,/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
-"aoA" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/turf/open/floor/plating,/area/security/warden)
-"aoB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/red/side{dir = 8},/area/security/main)
-"aoC" = (/obj/structure/table,/obj/item/weapon/restraints/handcuffs,/obj/item/device/radio/off,/turf/open/floor/plasteel,/area/security/main)
-"aoD" = (/obj/effect/landmark/start{name = "Security Officer"},/turf/open/floor/plasteel/red,/area/security/main)
-"aoE" = (/obj/machinery/holopad,/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/turf/open/floor/plasteel/red,/area/security/main)
-"aoF" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/red,/area/security/main)
-"aoG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/turf/open/floor/plasteel/red,/area/security/main)
-"aoH" = (/obj/structure/table,/obj/item/weapon/folder/red,/obj/item/weapon/book/manual/wiki/security_space_law{pixel_x = -3;pixel_y = 5},/obj/item/clothing/mask/gas/sechailer,/turf/open/floor/plasteel,/area/security/main)
-"aoI" = (/turf/open/floor/plasteel/red/side{dir = 4},/area/security/main)
-"aoJ" = (/obj/machinery/door/window/eastright{base_state = "left";dir = 8;icon_state = "left";name = "Security Delivery";req_access_txt = "1"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/security/main)
-"aoK" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=8";dir = 8;freq = 1400;location = "Security"},/obj/structure/plasticflaps{opacity = 1},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/security/main)
-"aoL" = (/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plating,/area/maintenance/fore)
-"aoM" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/fore)
-"aoN" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg2"},/area/maintenance/fore)
-"aoO" = (/obj/machinery/power/apc{dir = 2;name = "Disposal APC";pixel_x = 0;pixel_y = -24},/obj/structure/cable/yellow,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/disposal)
-"aoP" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fore)
-"aoQ" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/fore)
-"aoR" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg2"},/area/maintenance/fore)
-"aoS" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "0";req_one_access_txt = "1;4;38;12"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fore)
-"aoT" = (/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"aoU" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"aoV" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"aoW" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2;initialize_directions = 11},/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"aoX" = (/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1;initialize_directions = 11},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=14.8-Dorms-Lockers";location = "14.5-Recreation"},/turf/open/floor/plasteel,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"aoY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"aoZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"apa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"apb" = (/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/starboard)
-"apc" = (/turf/open/floor/plating,/area/maintenance/starboard)
-"apd" = (/obj/structure/table,/obj/item/weapon/tank/internals/emergency_oxygen{pixel_x = -8;pixel_y = 0},/obj/item/weapon/tank/internals/emergency_oxygen{pixel_x = -8;pixel_y = 0},/obj/item/clothing/mask/breath{pixel_x = 4;pixel_y = 0},/obj/item/clothing/mask/breath{pixel_x = 4;pixel_y = 0},/obj/effect/decal/cleanable/cobweb,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;name = "EXTERNAL AIRLOCK";pixel_x = 0;pixel_y = 32},/turf/open/floor/plating,/area/maintenance/starboard)
-"ape" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/storage/belt{desc = "Can hold quite a lot of stuff.";name = "multi-belt"},/obj/item/clothing/gloves/color/fyellow,/obj/effect/spawner/lootdrop/maintenance,/obj/structure/sink/kitchen{desc = "A sink used for washing one's hands and face. It looks rusty and home-made";name = "old sink";pixel_y = 28},/turf/open/floor/plating,/area/maintenance/starboard)
-"apf" = (/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/starboard)
-"apg" = (/obj/structure/closet,/obj/effect/decal/cleanable/cobweb/cobweb2,/obj/item/weapon/reagent_containers/food/drinks/beer{desc = "Takes you to a whole new level of thinking.";name = "Meta-Cider"},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/starboard)
-"aph" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plating,/area/engine/gravity_generator)
-"api" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/open/floor/plating,/area/engine/gravity_generator)
-"apj" = (/obj/machinery/door/airlock/glass_command{name = "Gravity Generator Area";req_access_txt = "19; 61"},/turf/open/floor/plasteel/black,/area/engine/gravity_generator)
-"apk" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plating,/area/engine/gravity_generator)
-"apl" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/open/floor/plating,/area/engine/gravity_generator)
-"apm" = (/turf/closed/wall,/area/maintenance/auxsolarstarboard)
-"apn" = (/obj/machinery/power/solar_control{id = "forestarboard";name = "Fore Starboard Solar Control";track = 0},/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plating,/area/maintenance/auxsolarstarboard)
-"apo" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/auxsolarstarboard)
-"app" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;name = "EXTERNAL AIRLOCK";pixel_x = 32;pixel_y = 0},/obj/effect/decal/cleanable/cobweb/cobweb2,/turf/open/floor/plating,/area/maintenance/auxsolarstarboard)
-"apq" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating/airless,/area/space)
-"apr" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=1";freq = 1400;location = "Disposals"},/obj/structure/plasticflaps{opacity = 0},/obj/machinery/conveyor{dir = 2;id = "garbage"},/obj/machinery/door/window/northright{dir = 2;name = "delivery door";pixel_y = 0;req_access_txt = "31"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/disposal)
-"aps" = (/obj/machinery/door/airlock/maintenance{name = "Disposal Conveyor Access";req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/disposal)
-"apt" = (/obj/structure/sign/securearea{name = "\improper STAY CLEAR HEAVY MACHINERY";pixel_y = 0},/turf/closed/wall,/area/maintenance/disposal)
-"apu" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"apv" = (/obj/machinery/door/airlock/maintenance{name = "Storage Room";req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"apw" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"apx" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/circuitboard/computer/secure_data{pixel_x = -2;pixel_y = 2},/obj/item/weapon/circuitboard/computer/security{pixel_x = 1;pixel_y = -1},/turf/open/floor/plasteel/black,/area/storage/tech)
-"apy" = (/obj/structure/light_construct/small{dir = 4},/obj/structure/chair{dir = 8},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"apz" = (/obj/item/weapon/cigbutt,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"apA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/sign/kiddieplaque{desc = "A long list of rules to be followed when in the library, extolling the virtues of being quiet at all times and threatening those who would dare eat hot food inside.";name = "Library Rules Sign";pixel_y = -32},/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/hallway/primary/port)
-"apB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/fore)
-"apC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/fore)
-"apD" = (/obj/item/weapon/storage/box/lights/mixed,/obj/item/device/flashlight{pixel_x = 1;pixel_y = 5},/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/maintenance/fore)
-"apE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/extinguisher_cabinet{pixel_x = -27;pixel_y = 0},/turf/open/floor/plasteel/red/corner{dir = 1},/area/security/brig)
-"apF" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/security/brig)
-"apG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/red/corner{dir = 4},/area/security/brig)
-"apH" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/turf/open/floor/plating,/area/security/warden)
-"apI" = (/obj/machinery/computer/prisoner,/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
-"apJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
-"apK" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/photocopier{pixel_y = 3},/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
-"apL" = (/obj/machinery/requests_console{department = "Security";departmentType = 5;pixel_y = 30},/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Warden's Office";dir = 2;network = list("SS13")},/obj/structure/rack,/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -4;pixel_y = 4},/obj/item/weapon/storage/toolbox/emergency{pixel_x = 2;pixel_y = -3},/obj/item/weapon/wirecutters{pixel_y = 2},/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
-"apM" = (/obj/structure/table,/obj/machinery/recharger,/obj/machinery/airalarm{pixel_y = 28},/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
-"apN" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
-"apO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
-"apP" = (/obj/structure/rack,/obj/item/clothing/under/color/blue,/obj/item/clothing/ears/earmuffs,/obj/item/clothing/neck/tie/blue,/obj/item/clothing/head/soft/blue,/obj/structure/sign/poster{pixel_y = -32},/turf/open/floor/plasteel/vault,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"apQ" = (/obj/structure/reagent_dispensers/peppertank{pixel_x = 32;pixel_y = 0},/obj/structure/closet/wardrobe/red,/obj/machinery/camera{c_tag = "Security - Gear Room";dir = 8;network = list("SS13")},/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
-"apR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/reagent_dispensers/peppertank{pixel_x = -32;pixel_y = 0},/turf/open/floor/plasteel/red/side{dir = 8},/area/security/main)
-"apS" = (/obj/structure/table,/obj/item/weapon/folder/red,/obj/item/weapon/storage/fancy/cigarettes,/obj/item/clothing/mask/gas/sechailer,/turf/open/floor/plasteel,/area/security/main)
-"apT" = (/obj/structure/table,/obj/item/weapon/folder/red,/obj/item/weapon/restraints/handcuffs,/turf/open/floor/plasteel,/area/security/main)
-"apU" = (/obj/structure/table,/obj/item/weapon/folder/red,/obj/item/weapon/storage/secure/briefcase,/turf/open/floor/plasteel,/area/security/main)
-"apV" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/red,/area/security/main)
-"apW" = (/obj/structure/table,/obj/item/weapon/folder/red,/obj/item/device/assembly/flash/handheld,/turf/open/floor/plasteel,/area/security/main)
-"apX" = (/obj/item/weapon/cigbutt,/obj/structure/sign/poster{pixel_x = -32;pixel_y = 0},/turf/open/floor/plating,/area/maintenance/starboard)
-"apY" = (/obj/structure/table,/obj/item/weapon/folder/red,/obj/item/weapon/pen,/obj/item/weapon/storage/box/donkpockets,/turf/open/floor/plasteel,/area/security/main)
-"apZ" = (/obj/structure/extinguisher_cabinet{pixel_x = 27;pixel_y = 0},/obj/machinery/camera{c_tag = "Security - Office - Starboard";dir = 8;network = list("SS13")},/turf/open/floor/plasteel/red/side{dir = 4},/area/security/main)
-"aqa" = (/turf/closed/wall/r_wall,/area/security/main)
-"aqb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/fore)
-"aqc" = (/obj/structure/closet/lasertag/red,/turf/open/floor/plasteel/vault,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"aqd" = (/obj/structure/rack,/obj/item/clothing/under/color/red,/obj/item/clothing/ears/earmuffs,/obj/item/clothing/neck/tie/red,/obj/item/clothing/head/soft/red,/turf/open/floor/plasteel/vault,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"aqe" = (/obj/structure/reagent_dispensers/fueltank,/obj/structure/sign/poster{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"aqf" = (/obj/structure/closet/lasertag/blue,/turf/open/floor/plasteel/vault,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"aqg" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"aqh" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"aqi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"aqj" = (/obj/machinery/disposal/bin,/obj/machinery/light_switch{pixel_x = 0;pixel_y = -26},/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/camera{c_tag = "Fitness Room - Aft";dir = 1},/turf/open/floor/plasteel/vault,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"aqk" = (/obj/machinery/vending/coffee,/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 0;pixel_y = -28},/turf/open/floor/plasteel/vault,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"aql" = (/obj/machinery/light,/obj/machinery/vending/cola,/turf/open/floor/plasteel/vault,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"aqm" = (/obj/machinery/vending/cigarette,/obj/structure/extinguisher_cabinet{pixel_x = 27;pixel_y = 0},/turf/open/floor/plasteel/vault,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"aqn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/closed/wall,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"aqo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"aqp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/closed/wall,/area/crew_quarters/fitness{name = "\improper Recreation Area"})
-"aqq" = (/obj/item/weapon/cigbutt,/turf/open/floor/plating,/area/maintenance/starboard)
-"aqr" = (/turf/open/floor/plating{icon_state = "platingdmg2"},/area/maintenance/starboard)
-"aqs" = (/obj/item/device/mmi{name = "man-machine interface"},/obj/structure/rack{dir = 8;layer = 2.9},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/starboard)
-"aqt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/power/apc{dir = 8;name = "Gravity Generator APC";pixel_x = -25;pixel_y = 1},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/engine/gravity_generator)
-"aqu" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4;initialize_directions = 11},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/gravity_generator)
-"aqv" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/gravity_generator)
-"aqw" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4;initialize_directions = 11},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/gravity_generator)
-"aqx" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/power/port_gen/pacman,/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/engine/gravity_generator)
-"aqy" = (/obj/structure/chair/stool{pixel_y = 8},/obj/machinery/camera/autoname{dir = 4;network = list("SS13")},/turf/open/floor/plating,/area/maintenance/auxsolarstarboard)
-"aqz" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/turf/open/floor/plating,/area/maintenance/auxsolarstarboard)
-"aqA" = (/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/power/terminal,/obj/machinery/light/small{dir = 4},/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 29},/turf/open/floor/plating,/area/maintenance/auxsolarstarboard)
-"aqB" = (/obj/structure/lattice,/obj/structure/grille/broken,/turf/open/space,/area/space)
-"aqC" = (/obj/machinery/space_heater,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;name = "EXTERNAL AIRLOCK";pixel_x = 0;pixel_y = 32},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"aqD" = (/obj/machinery/space_heater,/turf/open/floor/plating{icon_state = "platingdmg2"},/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"aqE" = (/obj/machinery/door/poddoor/shutters{id = "supplybridge"},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"aqF" = (/obj/machinery/door/poddoor/shutters{id = "supplybridge"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"aqG" = (/obj/machinery/door/poddoor/shutters{id = "supplybridge"},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"aqH" = (/obj/machinery/space_heater,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;name = "EXTERNAL AIRLOCK";pixel_x = 0;pixel_y = 32},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"aqI" = (/obj/structure/disposalpipe/segment,/obj/machinery/light/small{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"aqJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"aqK" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"aqL" = (/obj/structure/rack,/obj/effect/decal/cleanable/cobweb/cobweb2,/obj/item/weapon/storage/toolbox/emergency,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"aqM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"aqN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"aqO" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"aqP" = (/obj/structure/light_construct/small,/obj/item/weapon/toolbox_tiles_sensor,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"aqQ" = (/obj/item/weapon/vending_refill/cigarette,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"aqR" = (/obj/structure/chair{dir = 8},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"aqS" = (/obj/structure/closet/crate,/obj/item/clothing/gloves/color/fyellow,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"aqT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating{icon_plating = "warnplate"},/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"aqU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating{icon_plating = "warnplate"},/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"aqV" = (/obj/structure/reagent_dispensers/watertank,/obj/item/weapon/extinguisher,/turf/open/floor/plating,/area/maintenance/fore)
-"aqW" = (/obj/structure/closet/crate,/obj/item/weapon/restraints/handcuffs,/obj/item/bodybag,/obj/item/device/radio,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3;name = "3maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fore)
-"aqX" = (/obj/structure/chair,/obj/item/weapon/restraints/handcuffs,/obj/effect/decal/remains/human,/obj/item/clothing/under/soviet,/obj/effect/decal/cleanable/blood/old,/turf/open/floor/plating,/area/maintenance/fore)
-"aqY" = (/obj/machinery/computer/security{name = "Labor Camp Monitoring";network = list("Labor")},/turf/open/floor/plasteel/black,/area/security/brig)
-"aqZ" = (/obj/machinery/computer/shuttle/labor,/turf/open/floor/plasteel/black,/area/security/brig)
-"ara" = (/obj/machinery/computer/secure_data,/obj/machinery/computer/security/telescreen{desc = "Used for watching Prison Wing holding areas.";dir = 2;name = "Prison Monitor";network = list("Prison");pixel_x = -30;pixel_y = 0},/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
-"arb" = (/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8;initialize_directions = 11},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
-"arc" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
-"ard" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
-"are" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
-"arf" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
-"arg" = (/obj/structure/chair/office/dark{dir = 4},/obj/effect/landmark/start{name = "Warden"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
-"arh" = (/obj/structure/table/reinforced,/obj/machinery/door/window/westleft{base_state = "right";dir = 4;icon_state = "right";name = "Outer Window";req_access_txt = "0"},/obj/machinery/door/window/brigdoor{dir = 8;name = "Brig Control Desk";req_access_txt = "3"},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/item/weapon/folder/red,/obj/item/weapon/folder/red,/obj/item/weapon/poster/legit,/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
-"ari" = (/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
-"arj" = (/obj/structure/closet/secure_closet/security/sec,/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
-"ark" = (/obj/machinery/newscaster/security_unit,/turf/closed/wall,/area/security/warden)
-"arl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/effect/landmark/start{name = "Security Officer"},/turf/open/floor/plasteel/red/side{dir = 8},/area/security/main)
-"arm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel/red/side{dir = 10},/area/security/main)
-"arn" = (/obj/structure/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/effect/landmark/start{name = "Security Officer"},/turf/open/floor/plasteel/red/side,/area/security/main)
-"aro" = (/obj/structure/chair{dir = 1},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1;initialize_directions = 11},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/effect/landmark/start{name = "Security Officer"},/turf/open/floor/plasteel/red/side,/area/security/main)
-"arp" = (/obj/structure/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/landmark/start{name = "Security Officer"},/turf/open/floor/plasteel/red/side,/area/security/main)
-"arq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/red,/area/security/main)
-"arr" = (/obj/structure/chair{dir = 1},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2;initialize_directions = 11},/obj/effect/landmark/start{name = "Security Officer"},/turf/open/floor/plasteel/red/side,/area/security/main)
-"ars" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/red/side{dir = 6},/area/security/main)
-"art" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/red/side{dir = 4},/area/security/main)
-"aru" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Interrogation Monitoring";req_access = null;req_access_txt = "0";req_one_access_txt = "1;4"},/turf/open/floor/plasteel/grimy,/area/security/main)
-"arv" = (/turf/open/floor/plasteel/grimy,/area/security/main)
-"arw" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/grimy,/area/security/main)
-"arx" = (/obj/item/weapon/phone{desc = "Supposedly a direct line to NanoTrasen Central Command. It's not even plugged in.";pixel_x = -3;pixel_y = 3},/obj/item/weapon/cigbutt/cigarbutt{pixel_x = 5;pixel_y = -1},/obj/structure/table/wood,/obj/machinery/firealarm{dir = 4;pixel_x = 28},/turf/open/floor/plasteel/grimy,/area/security/main)
-"ary" = (/obj/structure/rack,/obj/item/clothing/suit/hazardvest,/turf/open/floor/plating,/area/maintenance/fore)
-"arz" = (/obj/machinery/space_heater,/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/fore)
-"arA" = (/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/maintenance/fore)
-"arB" = (/turf/closed/wall,/area/crew_quarters/sleep)
-"arC" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Recreation Area";req_access_txt = "0"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/crew_quarters/sleep)
-"arD" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted/fulltile,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/crew_quarters/sleep)
-"arE" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Recreation Area";req_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/neutral/corner{dir = 4},/area/crew_quarters/sleep)
-"arF" = (/obj/structure/closet,/obj/item/weapon/poster/contraband,/obj/item/weapon/poster/contraband,/obj/item/weapon/poster/contraband,/obj/item/weapon/poster/contraband,/obj/item/weapon/poster/contraband,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/starboard)
-"arG" = (/obj/structure/closet,/obj/item/weapon/storage/box/lights/mixed,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/starboard)
-"arH" = (/obj/structure/rack,/obj/item/weapon/extinguisher,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/starboard)
-"arI" = (/obj/structure/rack,/obj/effect/landmark/costume,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/starboard)
-"arJ" = (/obj/structure/rack,/obj/item/clothing/suit/poncho,/obj/item/clothing/head/sombrero,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/starboard)
-"arK" = (/obj/effect/landmark{name = "blobstart"},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/starboard)
-"arL" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/turf/open/floor/plating,/area/maintenance/starboard)
-"arM" = (/obj/structure/rack,/obj/item/weapon/book/manual/wiki/engineering_guide{pixel_x = 3;pixel_y = 4},/obj/effect/spawner/lootdrop/maintenance,/obj/item/weapon/storage/box/lights/mixed,/turf/open/floor/plating,/area/maintenance/starboard)
-"arN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/closed/wall/r_wall,/area/engine/gravity_generator)
-"arO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/engine/gravity_generator)
-"arP" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel,/area/engine/gravity_generator)
-"arQ" = (/obj/machinery/airalarm{dir = 1;icon_state = "alarm0";pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/machinery/holopad,/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel,/area/engine/gravity_generator)
-"arR" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/machinery/power/terminal,/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel,/area/engine/gravity_generator)
-"arS" = (/obj/machinery/firealarm{dir = 4;pixel_x = 28},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/structure/chair/office/light,/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/engine/gravity_generator)
-"arT" = (/obj/machinery/power/apc{dir = 8;name = "Fore Starboard Solar APC";pixel_x = -25;pixel_y = 3},/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/auxsolarstarboard)
-"arU" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plating,/area/maintenance/auxsolarstarboard)
-"arV" = (/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/obj/machinery/power/smes,/turf/open/floor/plating,/area/maintenance/auxsolarstarboard)
-"arW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"arX" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/obj/machinery/light,/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"arY" = (/obj/machinery/door/airlock/glass{name = "space-bridge access"},/obj/machinery/button/door{id = "supplybridge";name = "Shuttle Bay Space Bridge Control";pixel_x = 0;pixel_y = 27;req_access_txt = "0"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"arZ" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"asa" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"asb" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"asc" = (/obj/machinery/door/airlock/glass{name = "space-bridge access"},/obj/machinery/button/door{id = "supplybridge";name = "Shuttle Bay Space Bridge Control";pixel_x = 0;pixel_y = 27;req_access_txt = "0"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"asd" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/obj/machinery/light,/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"ase" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"asf" = (/obj/machinery/door/airlock/maintenance_hatch{name = "Cargo Bay Bridge Access";req_access_txt = "0";req_one_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"asg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"ash" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"asi" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"asj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"ask" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"asl" = (/obj/machinery/door/airlock/maintenance{name = "Storage Room";req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fore)
-"asm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/maintenance{name = "Brig Maintenance";req_access_txt = "0";req_one_access_txt = "63;12"},/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fore)
-"asn" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/obj/machinery/camera{c_tag = "Labor Shuttle Control Desk";dir = 4},/obj/machinery/light{dir = 8},/obj/structure/table,/obj/item/weapon/storage/box/prisoner,/obj/item/weapon/razor{pixel_x = -6},/obj/item/weapon/paper{desc = "";info = "Labor Camp Facility Operation Guide
Hello there, proud operator of an NT-Sec Prisoner Rehabilitation Center. A solution to rising crime rates and falling productivity, these facilities are specifically designed for the safe, productive imprisonment of your most dangerous criminals.
To press a long-term prisoner into the service of the station, replace his equipment with prisoners' garb at one of the prison lockers, as per normal operating procedure. Before assigning a prisoner his ID, insert the ID into a prisoner management console and assign the prisoner a quota, based on the severity of his crime.
A single sheet of most materials produces five points for the prisoner, and points can be expected to be produced at a rate of about 100 per minute, though punishments as severe as forced labor should be reserved for serious crimes of sentences not less than five minutes long.
Once you have prepared the prisoner, place him in the secure northern half of the labor shuttle, and send him to the station. Once he meets his quota by feeding sheets to the stacker, he will be allowed to return to the station, and will be able to open the secure door to the prisoner release area.
In the case of dangerous prisoners, surveilance may be needed. To that end, there is a prisoner monitoring room on the mining station, equipped with a remote flasher and a lockdown button. The mine itself is patrolled by a securibot, so the nearby security records console can also be used to secure hostile prisoners on the mine.";name = "Labor Camp Operating Guide"},/obj/item/weapon/pen,/turf/open/floor/plasteel/black,/area/security/brig)
-"aso" = (/obj/structure/chair/office/dark{dir = 8},/turf/open/floor/plasteel/black,/area/security/brig)
-"asp" = (/obj/machinery/computer/security,/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
-"asq" = (/obj/effect/landmark/start{name = "Warden"},/obj/structure/chair/office/dark,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
-"asr" = (/obj/machinery/computer/crew,/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
-"ass" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/newscaster/security_unit{pixel_x = 0;pixel_y = -30},/obj/item/weapon/folder/red,/obj/item/weapon/folder/red,/obj/structure/table,/obj/item/weapon/book/manual/wiki/security_space_law{pixel_x = -3;pixel_y = 5},/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
-"ast" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3;pixel_y = 7},/obj/item/weapon/pen,/obj/structure/reagent_dispensers/peppertank{pixel_x = 0;pixel_y = -32},/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
-"asu" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/filingcabinet/chestdrawer{pixel_y = 2},/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
-"asv" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = "0"},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
-"asw" = (/obj/structure/table,/obj/machinery/button/door{id = "Prison Gate";name = "Prison Wing Lockdown";pixel_x = 0;pixel_y = 7;req_access_txt = "2"},/obj/machinery/button/door{id = "Secure Gate";name = "Cell Window Control";normaldoorcontrol = 0;pixel_x = -5;pixel_y = -3;req_access_txt = "0";specialfunctions = 4},/obj/machinery/button/door{id = "briglockdown";name = "Brig Lockdown Control";pixel_x = 5;pixel_y = -3;req_access_txt = "0"},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/item/device/radio/intercom{dir = 4;name = "Station Intercom (General)";pixel_x = 29;pixel_y = -28},/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
-"asx" = (/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
-"asy" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/obj/vehicle/secway,/obj/item/key/security,/turf/open/floor/plasteel/red/side{dir = 10},/area/security/main)
-"asz" = (/obj/structure/table,/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/item/weapon/folder/red,/obj/item/weapon/restraints/handcuffs,/obj/item/clothing/head/cone{pixel_x = -4;pixel_y = 4},/obj/item/clothing/head/cone{pixel_x = -4;pixel_y = 4},/obj/item/clothing/head/cone{pixel_x = -4;pixel_y = 4},/obj/item/clothing/head/cone{pixel_x = -4;pixel_y = 4},/obj/item/clothing/head/cone{pixel_x = -4;pixel_y = 4},/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
-"asA" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/turf/open/floor/plating,/area/security/warden)
-"asB" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plating,/area/maintenance/starboard)
-"asC" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel/red/side,/area/security/main)
-"asD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/red/side,/area/security/main)
-"asE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel/red/side,/area/security/main)
-"asF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel/red/side,/area/security/main)
-"asG" = (/obj/machinery/light,/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 0;pixel_y = -32},/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/red/side,/area/security/main)
-"asH" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel/red/side,/area/security/main)
-"asI" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/red/side,/area/security/main)
-"asJ" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/firealarm{dir = 1;pixel_y = -24},/turf/open/floor/plasteel/red/side,/area/security/main)
-"asK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel/red/side,/area/security/main)
-"asL" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel/red/side{dir = 6},/area/security/main)
-"asM" = (/obj/structure/chair,/turf/open/floor/plasteel/grimy,/area/security/main)
-"asN" = (/obj/structure/chair,/obj/machinery/computer/security/telescreen{desc = "Used for watching proceedings in the interrogation room.";dir = 1;layer = 4;name = "interrogation monitor";network = list("interrogation");pixel_x = 0;pixel_y = -30},/turf/open/floor/plasteel/grimy,/area/security/main)
-"asO" = (/obj/item/weapon/paper_bin{pixel_x = -3;pixel_y = 7},/obj/structure/table/wood,/obj/item/device/radio/intercom{anyai = 1;broadcasting = 0;freerange = 1;frequency = 1424;listening = 1;name = "Interrogation Intercom";pixel_x = 0;pixel_y = -31},/turf/open/floor/plasteel/grimy,/area/security/main)
-"asP" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/fore)
-"asQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{name = "Storage Room";req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/fore)
-"asR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/fore)
-"asS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/fore)
-"asT" = (/obj/machinery/light/small{dir = 1},/obj/structure/table/wood,/obj/machinery/newscaster{pixel_x = 0;pixel_y = 32},/obj/item/weapon/lighter,/turf/open/floor/wood,/area/crew_quarters/sleep)
-"asU" = (/obj/structure/closet/secure_closet/personal/cabinet,/obj/machinery/airalarm{pixel_y = 23},/obj/item/clothing/under/assistantformal,/turf/open/floor/wood,/area/crew_quarters/sleep)
-"asV" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/machinery/button/door{id = "Cabin3";name = "Cabin Bolt Control";normaldoorcontrol = 1;pixel_x = 25;pixel_y = 0;req_access_txt = "0";specialfunctions = 4},/obj/effect/decal/cleanable/cobweb/cobweb2,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/wood,/area/crew_quarters/sleep)
-"asW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/sleep)
-"asX" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/crew_quarters/sleep)
-"asY" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"asZ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/crew_quarters/sleep)
-"ata" = (/obj/machinery/light/small{dir = 1},/obj/effect/decal/cleanable/cobweb,/obj/machinery/button/door{id = "Cabin4";name = "Cabin Bolt Control";normaldoorcontrol = 1;pixel_x = -25;pixel_y = 0;req_access_txt = "0";specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/bed,/obj/item/weapon/bedsheet,/turf/open/floor/carpet,/area/crew_quarters/sleep)
-"atb" = (/obj/structure/closet/secure_closet/personal/cabinet,/obj/machinery/airalarm{pixel_y = 23},/obj/item/clothing/under/suit_jacket/burgundy,/turf/open/floor/carpet,/area/crew_quarters/sleep)
-"atc" = (/obj/structure/dresser,/obj/machinery/newscaster{pixel_x = 0;pixel_y = 32},/turf/open/floor/carpet,/area/crew_quarters/sleep)
-"atd" = (/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/starboard)
-"ate" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plating,/area/maintenance/starboard)
-"atf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/engine/gravity_generator)
-"atg" = (/obj/machinery/door/airlock/highsecurity{name = "Gravity Generator Room";req_access_txt = "19;23"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/engine/gravity_generator)
-"ath" = (/obj/machinery/power/smes{charge = 5e+006},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/engine/gravity_generator)
-"ati" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/table,/obj/item/weapon/paper/gravity_gen{layer = 3},/obj/item/weapon/pen/blue,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/engine/gravity_generator)
-"atj" = (/obj/machinery/space_heater,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/starboard)
-"atk" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/engineering{name = "Fore Starboard Solar Access";req_access_txt = "10"},/turf/open/floor/plating,/area/maintenance/auxsolarstarboard)
-"atl" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'";icon_state = "shock";name = "HIGH VOLTAGE";pixel_y = 0},/turf/closed/wall,/area/maintenance/auxsolarstarboard)
-"atm" = (/turf/closed/wall/r_wall,/area/maintenance/starboard)
-"atn" = (/obj/machinery/door/airlock/external{req_access_txt = "13"},/turf/open/floor/plating,/area/maintenance/starboard)
-"ato" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/maintenance_hatch{name = "Cargo Bay Bridge Access";req_access_txt = "0";req_one_access_txt = "0"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"atp" = (/obj/machinery/door/poddoor/shutters{id = "supplybridge"},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"atq" = (/obj/machinery/door/poddoor/shutters{id = "supplybridge"},/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"atr" = (/obj/machinery/door/poddoor/shutters{id = "supplybridge"},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"ats" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"att" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"atu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"atv" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"atw" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"atx" = (/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/fore)
-"aty" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/sortjunction{dir = 4;icon_state = "pipe-j1s";sortType = 2},/turf/open/floor/plating,/area/maintenance/fore)
-"atz" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plating,/area/maintenance/fore)
-"atA" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/fore)
-"atB" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{req_access_txt = "0";req_one_access_txt = "12;63"},/turf/open/floor/plating,/area/maintenance/fore)
-"atC" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/fore)
-"atD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"atE" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fore)
-"atF" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/sign/poster{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/fore)
-"atG" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/fore)
-"atH" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fore)
-"atI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/fore)
-"atJ" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/open/floor/plating,/area/shuttle/labor)
-"atK" = (/obj/machinery/computer/gulag_teleporter_computer,/turf/open/floor/plasteel/black,/area/security/brig)
-"atL" = (/obj/machinery/gulag_teleporter,/turf/open/floor/plasteel/black,/area/security/brig)
-"atM" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/security/brig)
-"atN" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/red/corner{dir = 4},/area/security/brig)
-"atO" = (/obj/structure/sign/pods,/turf/closed/wall/r_wall,/area/security/warden)
-"atP" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fore)
-"atQ" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/security/warden)
-"atR" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Brig Control";req_access_txt = "3"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = "0"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/security/warden)
-"atS" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Gear Room";req_access_txt = "0";req_one_access_txt = "1;4"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/security/warden)
-"atT" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow,/turf/open/floor/plating,/area/security/main)
-"atU" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/glass_security{name = "Security Office";req_access_txt = "0";req_one_access_txt = "1;4"},/turf/open/floor/plasteel,/area/security/main)
-"atV" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Security Office";req_access_txt = "0";req_one_access_txt = "1;4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/main)
-"atW" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow,/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/turf/open/floor/plating,/area/security/main)
-"atX" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/turf/open/floor/plating,/area/security/main)
-"atY" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/security/main)
-"atZ" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted/fulltile,/turf/open/floor/plating,/area/security/main)
-"aua" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/fore)
-"aub" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/turf/open/floor/plating,/area/maintenance/fore)
-"auc" = (/turf/open/floor/plating{icon_state = "platingdmg2"},/area/maintenance/fore)
-"aud" = (/obj/structure/chair/wood/normal{dir = 1},/turf/open/floor/wood,/area/crew_quarters/sleep)
-"aue" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/wood,/area/crew_quarters/sleep)
-"auf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/turf/open/floor/wood,/area/crew_quarters/sleep)
-"aug" = (/obj/machinery/door/airlock{id_tag = "Cabin3";name = "Cabin 6"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/sleep)
-"auh" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1;initialize_directions = 11},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/crew_quarters/sleep)
-"aui" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4;initialize_directions = 11},/obj/effect/landmark{name = "lightsout"},/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"auj" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/crew_quarters/sleep)
-"auk" = (/obj/machinery/door/airlock{id_tag = "Cabin4";name = "Cabin 5"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/sleep)
-"aul" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/crew_quarters/sleep)
-"aum" = (/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/carpet,/area/crew_quarters/sleep)
-"aun" = (/turf/open/floor/carpet,/area/crew_quarters/sleep)
-"auo" = (/obj/structure/mopbucket,/obj/item/weapon/mop,/obj/effect/landmark{name = "blobstart"},/turf/open/floor/plating{icon_state = "platingdmg2"},/area/maintenance/starboard)
-"aup" = (/obj/structure/closet/crate/hydroponics,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/starboard)
-"auq" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/turf/open/floor/plating,/area/maintenance/starboard)
-"aur" = (/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/fore)
-"aus" = (/obj/structure/closet,/obj/item/weapon/stock_parts/matter_bin,/turf/open/floor/plating,/area/maintenance/starboard)
-"aut" = (/obj/machinery/door/airlock/maintenance{name = "Storage Room";req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/starboard)
-"auu" = (/obj/structure/closet/radiation,/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'";dir = 1;icon_state = "radiation";name = "RADIOACTIVE AREA";pixel_x = 0;pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/engine/gravity_generator)
-"auv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/gravity_generator)
-"auw" = (/obj/machinery/camera{c_tag = "Gravity Generator Foyer"},/obj/structure/closet/radiation,/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'";dir = 1;icon_state = "radiation";name = "RADIOACTIVE AREA";pixel_x = 0;pixel_y = 32},/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/engine/gravity_generator)
-"aux" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/starboard)
-"auy" = (/obj/item/stack/sheet/cardboard,/obj/item/device/flashlight,/obj/effect/decal/cleanable/cobweb/cobweb2,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/starboard)
-"auz" = (/obj/structure/rack,/obj/item/clothing/mask/gas,/obj/item/clothing/glasses/sunglasses,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/starboard)
-"auA" = (/obj/structure/closet/crate/medical,/obj/item/stack/cable_coil,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/starboard)
-"auB" = (/obj/structure/closet/emcloset,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;name = "EXTERNAL AIRLOCK";pixel_x = 32;pixel_y = 0},/turf/open/floor/plating,/area/maintenance/starboard)
-"auC" = (/obj/structure/closet/crate{icon_state = "crateopen";opened = 1},/turf/open/floor/plating/airless,/area/space)
-"auD" = (/obj/structure/closet/crate{icon_state = "crateopen";opened = 1},/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;name = "EXTERNAL AIRLOCK";pixel_x = 0;pixel_y = 32},/obj/effect/decal/cleanable/cobweb,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3;name = "3maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"auE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"auF" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"auG" = (/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"auH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"auI" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"auJ" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced/tinted/fulltile,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"auK" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-j2";dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"auL" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"auM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"auN" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow,/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/turf/open/floor/plating,/area/maintenance/fore)
-"auO" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/turf/open/floor/plating,/area/maintenance/fore)
-"auP" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow,/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/turf/open/floor/plating,/area/maintenance/fore)
-"auQ" = (/turf/closed/wall/mineral/titanium,/area/shuttle/labor)
-"auR" = (/obj/machinery/computer/shuttle/labor,/obj/structure/reagent_dispensers/peppertank{pixel_x = -31;pixel_y = 0},/turf/open/floor/mineral/plastitanium/brig,/area/shuttle/labor)
-"auS" = (/obj/structure/chair/office/dark{dir = 1},/turf/open/floor/mineral/plastitanium/brig,/area/shuttle/labor)
-"auT" = (/obj/structure/table,/obj/item/weapon/folder/red,/obj/item/weapon/restraints/handcuffs,/turf/open/floor/mineral/plastitanium/brig,/area/shuttle/labor)
-"auU" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;name = "EXTERNAL AIRLOCK";pixel_x = -32;pixel_y = 0},/turf/open/floor/plasteel/red/corner{dir = 8},/area/security/brig)
-"auV" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/junction,/turf/open/floor/plasteel,/area/security/brig)
-"auW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/red/corner{dir = 4},/area/security/brig)
-"auX" = (/obj/machinery/photocopier,/obj/machinery/power/apc{dir = 4;name = "Head of Security's Office APC";pixel_x = 24},/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/obj/machinery/button/door{id = "hosprivacy";name = "Privacy Shutters Control";pixel_x = 26;pixel_y = -26},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 0;pixel_y = -32},/turf/open/floor/plasteel/vault,/area/security/hos)
-"auY" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/red/corner{dir = 4},/area/security/brig)
-"auZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/red/corner{dir = 4},/area/security/brig)
-"ava" = (/obj/structure/table/reinforced,/obj/machinery/door/window/westleft{base_state = "right";dir = 2;icon_state = "right";name = "Reception Window";req_access_txt = "0"},/obj/machinery/door/window/brigdoor{dir = 1;name = "Brig Control Desk";req_access_txt = "3"},/obj/item/weapon/paper,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/showroomfloor,/area/security/warden)
-"avb" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Brig - Hallway - Entrance";dir = 2;network = list("SS13")},/turf/open/floor/plasteel/red/corner{dir = 4},/area/security/brig)
-"avc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/red/corner{dir = 4},/area/security/brig)
-"avd" = (/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 0;pixel_y = 26},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/red/corner{dir = 4},/area/security/brig)
-"ave" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/extinguisher_cabinet{pixel_x = 0;pixel_y = 30},/turf/open/floor/plasteel/red/corner{dir = 4},/area/security/brig)
-"avf" = (/obj/machinery/firealarm{pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/red/corner{dir = 4},/area/security/brig)
-"avg" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/red/corner{dir = 4},/area/security/brig)
-"avh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/red/corner{dir = 4},/area/security/brig)
-"avi" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/red/side{dir = 5},/area/security/brig)
-"avj" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/turf/open/floor/plasteel/black,/area/security/brig)
-"avk" = (/turf/open/floor/plasteel/black,/area/security/brig)
-"avl" = (/obj/structure/disposalpipe/segment,/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/machinery/firealarm{dir = 8;pixel_x = -26;pixel_y = 0},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/crew_quarters/sleep)
-"avm" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8;initialize_directions = 11},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"avn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 27;pixel_y = 0},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/crew_quarters/sleep)
-"avo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/sleep)
-"avp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/closed/wall,/area/crew_quarters/sleep)
-"avq" = (/obj/item/weapon/cigbutt,/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plating,/area/maintenance/starboard)
-"avr" = (/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/starboard)
-"avs" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating,/area/maintenance/starboard)
-"avt" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/starboard)
-"avu" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'";dir = 1;icon_state = "radiation";name = "RADIOACTIVE AREA";pixel_x = 0;pixel_y = 32},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard)
-"avv" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/starboard)
-"avw" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/engine/gravity_generator)
-"avx" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel,/area/engine/gravity_generator)
-"avy" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/engine/gravity_generator)
-"avz" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/starboard)
-"avA" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'";dir = 1;icon_state = "radiation";name = "RADIOACTIVE AREA";pixel_x = 0;pixel_y = 32},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/starboard)
-"avB" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard)
-"avC" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/starboard)
-"avD" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg2"},/area/maintenance/starboard)
-"avE" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/starboard)
-"avF" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/starboard)
-"avG" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard)
-"avH" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1;initialize_directions = 11},/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/hallway/primary/port)
-"avI" = (/obj/structure/closet/crate,/obj/item/stack/sheet/metal{amount = 50;pixel_x = 2;pixel_y = 2},/obj/item/stack/sheet/metal{amount = 50;pixel_x = 2;pixel_y = 2},/obj/item/stack/sheet/metal{amount = 50;pixel_x = 2;pixel_y = 2},/turf/open/floor/plating/airless,/area/space)
-"avJ" = (/obj/machinery/door/airlock/external,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"avK" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;name = "EXTERNAL AIRLOCK";pixel_x = 0;pixel_y = 32},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"avL" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"avM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"avN" = (/obj/item/hand_labeler_refill,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"avO" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"avP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"avQ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{req_access_txt = "0";req_one_access_txt = "12;50"},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"avR" = (/obj/structure/disposalpipe/sortjunction{dir = 1;icon_state = "pipe-j2s";sortType = 1},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"avS" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plating{icon_state = "platingdmg2"},/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"avT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"avU" = (/turf/open/floor/mineral/plastitanium/brig,/area/shuttle/labor)
-"avV" = (/obj/machinery/button/flasher{id = "gulagshuttleflasher";name = "Flash Control";pixel_x = 0;pixel_y = -26;req_access_txt = "1"},/turf/open/floor/mineral/plastitanium/brig,/area/shuttle/labor)
-"avW" = (/obj/machinery/mineral/labor_claim_console{machinedir = 2;pixel_x = 30;pixel_y = 30},/turf/open/floor/mineral/plastitanium/brig,/area/shuttle/labor)
-"avX" = (/obj/machinery/door/airlock/titanium{name = "Labor Shuttle Airlock";req_access_txt = "2"},/turf/open/floor/mineral/plastitanium/brig,/area/shuttle/labor)
-"avY" = (/obj/machinery/door/airlock/external{name = "Labor Camp Shuttle Airlock";req_access_txt = "2"},/turf/open/floor/plasteel/black,/area/security/brig)
-"avZ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Labor Camp Shuttle Airlock";req_access_txt = "2"},/obj/machinery/button/door{id = "prison release";name = "Labor Camp Shuttle Lockdown";pixel_x = 0;pixel_y = -25;req_access_txt = "2"},/turf/open/floor/plasteel/black,/area/security/brig)
-"awa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/red/corner{dir = 8},/area/security/brig)
-"awb" = (/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/turf/open/floor/plasteel,/area/security/brig)
-"awc" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = "0"},/turf/open/floor/plasteel,/area/security/brig)
-"awd" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
-"awe" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
-"awf" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/disposalpipe/junction{dir = 4;icon_state = "pipe-j2"},/turf/open/floor/plasteel,/area/security/brig)
-"awg" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
-"awh" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
-"awi" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/mob/living/simple_animal/bot/secbot/beepsky{desc = "It's Officer Beepsky! Powered by a potato and a shot of whiskey, and with a sturdier reinforced chassis, too. ";health = 45;maxHealth = 45;name = "Officer Beepsky"},/turf/open/floor/plasteel,/area/security/brig)
-"awj" = (/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/security/brig)
-"awk" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
-"awl" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
-"awm" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/effect/landmark{name = "lightsout"},/turf/open/floor/plasteel,/area/security/brig)
-"awn" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/turf/open/floor/plasteel,/area/security/brig)
-"awo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/brig)
-"awp" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/brig)
-"awq" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/brig)
-"awr" = (/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plasteel,/area/security/brig)
-"aws" = (/turf/open/floor/plasteel,/area/security/brig)
-"awt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel/red/side{dir = 4},/area/security/brig)
-"awu" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Interrogation";req_access = null;req_access_txt = "63";req_one_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/black,/area/security/brig)
-"awv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/black,/area/security/brig)
-"aww" = (/obj/structure/chair{dir = 4},/turf/open/floor/plasteel/black,/area/security/brig)
-"awx" = (/obj/structure/table,/obj/item/device/flashlight/lamp,/turf/open/floor/plasteel/black,/area/security/brig)
-"awy" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel/black,/area/security/brig)
-"awz" = (/obj/machinery/camera{c_tag = "Interrogation";dir = 8;network = list("interrogation")},/turf/open/floor/plasteel/black,/area/security/brig)
-"awA" = (/obj/structure/closet/crate{icon_state = "crateopen";opened = 1},/obj/item/weapon/storage/box/donkpockets,/turf/open/floor/plating,/area/maintenance/fore)
-"awB" = (/obj/structure/reagent_dispensers/watertank,/obj/item/weapon/storage/box/lights/mixed,/turf/open/floor/plating,/area/maintenance/fore)
-"awC" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/obj/machinery/light/small{dir = 1},/obj/machinery/newscaster{pixel_x = 0;pixel_y = 32},/obj/structure/dresser,/turf/open/floor/carpet,/area/crew_quarters/sleep)
-"awD" = (/obj/structure/closet/secure_closet/personal/cabinet,/obj/machinery/airalarm{pixel_y = 23},/obj/item/clothing/under/suit_jacket/tan,/turf/open/floor/carpet,/area/crew_quarters/sleep)
-"awE" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/machinery/button/door{id = "Cabin2";name = "Cabin Bolt Control";normaldoorcontrol = 1;pixel_x = 25;pixel_y = 0;req_access_txt = "0";specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/carpet,/area/crew_quarters/sleep)
-"awF" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/machinery/camera{c_tag = "Dormitories - Fore";dir = 8},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/crew_quarters/sleep)
-"awG" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/machinery/button/door{id = "Cabin5";name = "Dorm Bolt Control";normaldoorcontrol = 1;pixel_x = -25;pixel_y = 0;req_access_txt = "0";specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/wood,/area/crew_quarters/sleep)
-"awH" = (/obj/machinery/newscaster{pixel_x = 0;pixel_y = 32},/obj/structure/table/wood,/obj/item/weapon/paper,/turf/open/floor/wood,/area/crew_quarters/sleep)
-"awI" = (/obj/machinery/door/airlock/maintenance{name = "Storage Room";req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/starboard)
-"awJ" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/starboard)
-"awK" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/highsecurity{name = "Gravity Generator Foyer";req_access_txt = "10"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/engine/gravity_generator)
-"awL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/firealarm{dir = 1;pixel_y = -24},/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/hallway/primary/port)
-"awM" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"awN" = (/turf/closed/wall/mineral/titanium,/area/shuttle/mining)
-"awO" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/open/floor/plating,/area/shuttle/mining)
-"awP" = (/obj/item/clothing/gloves/color/rainbow,/obj/item/clothing/shoes/sneakers/rainbow,/obj/item/clothing/under/color/rainbow,/obj/item/clothing/head/soft/rainbow,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"awQ" = (/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"awR" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"awS" = (/obj/structure/closet/crate,/obj/item/weapon/coin/silver,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"awT" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"awU" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"awV" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fore)
-"awW" = (/turf/closed/wall/r_wall,/area/security/nuke_storage)
-"awX" = (/obj/machinery/door/airlock/titanium{name = "Labor Shuttle Airlock";req_access_txt = "2"},/turf/open/floor/plasteel/black,/area/shuttle/labor)
-"awY" = (/obj/machinery/mineral/stacking_machine/laborstacker{input_dir = 2;output_dir = 1},/turf/open/floor/plasteel/black,/area/shuttle/labor)
-"awZ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8;initialize_directions = 11},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel/red/corner{dir = 8},/area/security/brig)
-"axa" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig)
-"axb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = "0"},/turf/open/floor/plasteel/red/corner{dir = 2},/area/security/brig)
-"axc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light,/obj/machinery/camera{c_tag = "Brig - Hallway - Port";dir = 1;network = list("SS13")},/obj/machinery/door_timer{id = "Cell 1";name = "Cell 1";pixel_y = -32},/turf/open/floor/plasteel/red/side,/area/security/brig)
-"axd" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1;initialize_directions = 11},/turf/open/floor/plasteel/red/corner{dir = 8},/area/security/brig)
-"axe" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2;initialize_directions = 11},/turf/open/floor/plasteel,/area/security/brig)
-"axf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door_timer{id = "Cell 2";name = "Cell 2";pixel_y = -32},/turf/open/floor/plasteel/red/side,/area/security/brig)
-"axg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = "0"},/turf/open/floor/plasteel/red/side,/area/security/brig)
-"axh" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2;initialize_directions = 11},/obj/machinery/door_timer{id = "Cell 3";name = "Cell 3";pixel_y = -32},/turf/open/floor/plasteel/red/corner{dir = 2},/area/security/brig)
-"axi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plasteel/red/side{dir = 9},/area/security/brig)
-"axj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/red/side{dir = 1},/area/security/brig)
-"axk" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/open/floor/plasteel/red/side{dir = 5},/area/security/brig)
-"axl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/power/apc{cell_type = 10000;dir = 2;name = "Brig APC";pixel_x = 1;pixel_y = -24},/obj/structure/cable/yellow,/obj/machinery/button/flasher{id = "secentranceflasher";name = "Brig Entrance Flasher";pixel_x = -3;pixel_y = -38;req_access_txt = "1"},/turf/open/floor/plasteel/red/side,/area/security/brig)
-"axm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/red/corner{dir = 8},/area/security/brig)
-"axn" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1;initialize_directions = 11},/turf/open/floor/plasteel,/area/security/brig)
-"axo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/brig)
-"axp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/red/corner{dir = 2},/area/security/brig)
-"axq" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2;initialize_directions = 11},/turf/open/floor/plasteel/red/corner{dir = 2},/area/security/brig)
-"axr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/button/flasher{id = "holdingflash";pixel_x = 0;pixel_y = -26;req_access_txt = "1"},/turf/open/floor/plasteel/red/corner{dir = 2},/area/security/brig)
-"axs" = (/obj/machinery/airalarm{dir = 1;pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light,/obj/machinery/camera{c_tag = "Brig - Hallway - Starboard";dir = 1;network = list("SS13")},/turf/open/floor/plasteel/red/corner{dir = 2},/area/security/brig)
-"axt" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/red/corner{dir = 2},/area/security/brig)
-"axu" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1;initialize_directions = 11},/turf/open/floor/plasteel/red/corner{dir = 2},/area/security/brig)
-"axv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 27;pixel_y = 0},/turf/open/floor/plasteel/red/side{dir = 6},/area/security/brig)
-"axw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/security/brig)
-"axx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/black,/area/security/brig)
-"axy" = (/obj/structure/chair{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/black,/area/security/brig)
-"axz" = (/obj/structure/table,/obj/item/weapon/folder/red,/obj/item/device/taperecorder{pixel_y = 0},/obj/item/device/radio/intercom{anyai = 1;broadcasting = 1;freerange = 1;frequency = 1424;listening = 0;name = "Interrogation Intercom";pixel_x = 0;pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/black,/area/security/brig)
-"axA" = (/obj/structure/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/black,/area/security/brig)
-"axB" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel/black,/area/security/brig)
-"axC" = (/turf/closed/wall,/area/crew_quarters/locker/locker_toilet{name = "\improper Restrooms"})
-"axD" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/carpet,/area/crew_quarters/sleep)
-"axE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/turf/open/floor/carpet,/area/crew_quarters/sleep)
-"axF" = (/obj/machinery/door/airlock{id_tag = "Cabin2";name = "Cabin 4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/sleep)
-"axG" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/crew_quarters/sleep)
-"axH" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4;initialize_directions = 11},/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"axI" = (/obj/machinery/door/airlock{id_tag = "Cabin5";name = "Cabin 3"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/sleep)
-"axJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/crew_quarters/sleep)
-"axK" = (/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/obj/machinery/light/small,/turf/open/floor/wood,/area/crew_quarters/sleep)
-"axL" = (/obj/item/weapon/caution,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/starboard)
-"axM" = (/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/starboard)
-"axN" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/starboard)
-"axO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard)
-"axP" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/starboard)
-"axQ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/starboard)
-"axR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/holopad,/turf/open/floor/plasteel/red/corner{dir = 4},/area/security/brig)
-"axS" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/starboard)
-"axT" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=4";dir = 4;freq = 1400;location = "Engineering"},/obj/structure/plasticflaps{opacity = 1},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/maintenance/starboard)
-"axU" = (/obj/machinery/door/window/southright{dir = 4;name = "Engineering Deliveries";req_access_txt = "10";req_one_access_txt = "0"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/engine/engineering)
-"axV" = (/obj/structure/sign/securearea{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/engine/engineering)
-"axW" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering)
-"axX" = (/obj/machinery/light_switch{pixel_x = 23},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/machinery/shower{dir = 8;icon_state = "shower";name = "emergency shower"},/obj/structure/sign/securearea{pixel_y = 32},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/engine/engineering)
-"axY" = (/turf/closed/wall/r_wall,/area/engine/engineering)
-"axZ" = (/obj/structure/closet/emcloset{anchored = 1;desc = "It's a storage unit for emergency breath masks and O2 tanks, and is securely bolted in place.";name = "anchored emergency closet"},/turf/open/floor/plating,/area/engine/engineering)
-"aya" = (/obj/structure/grille,/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plating/airless,/area/engine/engineering)
-"ayb" = (/obj/structure/grille,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plating/airless,/area/engine/engineering)
-"ayc" = (/obj/structure/grille,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plating/airless,/area/engine/engineering)
-"ayd" = (/obj/structure/grille,/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plating/airless,/area/engine/engineering)
-"aye" = (/obj/structure/grille,/turf/open/floor/plating/airless,/area/engine/engineering)
-"ayf" = (/obj/structure/closet/crate,/obj/item/stack/sheet/glass{amount = 10},/obj/item/stack/rods,/turf/open/floor/plating/airless,/area/space)
-"ayg" = (/obj/structure/table,/turf/open/floor/mineral/titanium/blue,/area/shuttle/mining)
-"ayh" = (/obj/machinery/computer/shuttle/mining,/turf/open/floor/mineral/titanium/blue,/area/shuttle/mining)
-"ayi" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"ayj" = (/turf/closed/wall,/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"ayk" = (/obj/machinery/door/airlock/maintenance{name = "Mining Dock Maintenance";req_access_txt = "48"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"ayl" = (/turf/closed/wall,/area/quartermaster/sorting{name = "\improper Warehouse"})
-"aym" = (/obj/machinery/door/airlock/maintenance{name = "Cargo Bay Warehouse Maintenance";req_access_txt = "0";req_one_access_txt = "48;50"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/quartermaster/sorting{name = "\improper Warehouse"})
-"ayn" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fore)
-"ayo" = (/obj/machinery/computer/bank_machine,/turf/open/floor/plasteel/vault{dir = 8},/area/security/nuke_storage)
-"ayp" = (/obj/machinery/light_switch{pixel_y = 28},/turf/open/floor/plasteel/circuit/gcircuit{luminosity = 2},/area/security/nuke_storage)
-"ayq" = (/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/circuit/gcircuit{luminosity = 2},/area/security/nuke_storage)
-"ayr" = (/obj/machinery/power/apc{dir = 1;name = "Vault APC";pixel_x = 0;pixel_y = 25},/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/turf/open/floor/plasteel/circuit/gcircuit{luminosity = 2},/area/security/nuke_storage)
-"ays" = (/obj/structure/filingcabinet,/obj/item/weapon/folder/documents,/turf/open/floor/plasteel/vault{dir = 8},/area/security/nuke_storage)
-"ayt" = (/turf/open/floor/mineral/titanium/blue,/area/shuttle/labor)
-"ayu" = (/obj/machinery/mineral/labor_claim_console{machinedir = 1;pixel_x = 30;pixel_y = 0},/turf/open/floor/mineral/titanium/blue,/area/shuttle/labor)
-"ayv" = (/turf/closed/wall,/area/prison/solitary{name = "Prisoner Education Chamber"})
-"ayw" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/security/brig)
-"ayx" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/door/window/brigdoor{id = "Cell 1";name = "Cell 1";req_access_txt = "2"},/turf/open/floor/plasteel/red/side,/area/security/brig)
-"ayy" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = "0"},/turf/open/floor/plating,/area/security/brig)
-"ayz" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/door/window/brigdoor{id = "Cell 2";name = "Cell 2";req_access_txt = "2"},/turf/open/floor/plasteel/red/side,/area/security/brig)
-"ayA" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/door/window/brigdoor{id = "Cell 3";name = "Cell 3";req_access_txt = "2"},/turf/open/floor/plasteel/red/side,/area/security/brig)
-"ayB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{cyclelinkeddir = 2;id_tag = "innerbrig";name = "Brig";req_access_txt = "63"},/turf/open/floor/plasteel/red/side,/area/security/brig)
-"ayC" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/glass_security{cyclelinkeddir = 2;id_tag = "innerbrig";name = "Brig";req_access_txt = "63"},/turf/open/floor/plasteel/red/side,/area/security/brig)
-"ayD" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/security/brig)
-"ayE" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/door/window/brigdoor{id = "Holding Cell";name = "Holding Cell";req_access_txt = "2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/red/side,/area/security/brig)
-"ayF" = (/turf/closed/wall/r_wall,/area/security/detectives_office)
-"ayG" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/shutters/preopen{id = "detective_shutters";name = "detective's office shutters"},/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/turf/open/floor/plating,/area/security/detectives_office)
-"ayH" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Detective's Office";req_access = null;req_access_txt = "4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plasteel,/area/security/detectives_office)
-"ayI" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/shutters/preopen{id = "detective_shutters";name = "detective's office shutters"},/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/security/detectives_office)
-"ayJ" = (/turf/closed/wall,/area/security/detectives_office)
-"ayK" = (/obj/machinery/shower{icon_state = "shower";dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/freezer,/area/crew_quarters/locker/locker_toilet{name = "\improper Restrooms"})
-"ayL" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/machinery/airalarm{pixel_y = 26},/turf/open/floor/plasteel/freezer,/area/crew_quarters/locker/locker_toilet{name = "\improper Restrooms"})
-"ayM" = (/obj/machinery/shower{icon_state = "shower";dir = 8},/obj/effect/landmark/start{name = "Assistant"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/locker/locker_toilet{name = "\improper Restrooms"})
-"ayN" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/crew_quarters/sleep)
-"ayO" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8;initialize_directions = 11},/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"ayP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/crew_quarters/sleep)
-"ayQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/starboard)
-"ayR" = (/obj/item/weapon/wrench,/turf/open/floor/plating,/area/maintenance/starboard)
-"ayS" = (/obj/structure/table,/obj/item/stack/packageWrap,/obj/item/weapon/wrench,/obj/machinery/light{dir = 8},/obj/item/weapon/hand_labeler,/obj/structure/window/reinforced{dir = 1},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/engine/engineering)
-"ayT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering)
-"ayU" = (/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel,/area/engine/engineering)
-"ayV" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering)
-"ayW" = (/obj/machinery/door/airlock/external{name = "Engineering External Access";req_access = null;req_access_txt = "10;13"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plating,/area/engine/engineering)
-"ayX" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;name = "EXTERNAL AIRLOCK";pixel_x = 0;pixel_y = -32},/obj/machinery/light/small{dir = 2},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/engine/engineering)
-"ayY" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plating/airless,/area/engine/engineering)
-"ayZ" = (/turf/open/floor/plating/airless,/area/engine/engineering)
-"aza" = (/obj/structure/cable,/obj/machinery/power/emitter{anchored = 1;state = 2},/turf/open/floor/plating/airless,/area/engine/engineering)
-"azb" = (/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/red/corner{dir = 4},/area/security/brig)
-"azc" = (/obj/structure/grille,/obj/machinery/light{dir = 1},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plating/airless,/area/engine/engineering)
-"azd" = (/obj/structure/grille,/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plating/airless,/area/engine/engineering)
-"aze" = (/obj/item/weapon/twohanded/required/kirbyplants{icon_state = "plant-22"},/obj/effect/decal/cleanable/cobweb/cobweb2,/turf/open/floor/wood,/area/library)
-"azf" = (/obj/structure/grille,/turf/open/floor/plating/airless,/area/space)
-"azg" = (/obj/item/stack/cable_coil,/turf/open/floor/plating/airless,/area/space)
-"azh" = (/turf/open/floor/mineral/titanium/blue,/area/shuttle/mining)
-"azi" = (/obj/structure/chair{dir = 1},/turf/open/floor/mineral/titanium/blue,/area/shuttle/mining)
-"azj" = (/obj/item/weapon/ore/iron,/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"azk" = (/obj/structure/closet/crate,/obj/machinery/light/small{dir = 4},/obj/item/device/radio/intercom{dir = 4;name = "Station Intercom (General)";pixel_x = 27},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"azl" = (/obj/structure/closet/emcloset,/obj/machinery/status_display{density = 0;pixel_x = 0;pixel_y = 32;supply_display = 1},/turf/open/floor/plasteel/brown{dir = 9},/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"azm" = (/obj/structure/closet/crate,/obj/item/device/flashlight{pixel_x = 1;pixel_y = 5},/obj/item/device/flashlight{pixel_x = 1;pixel_y = 5},/obj/item/weapon/stock_parts/cell/high{charge = 100;maxcharge = 15000},/obj/item/stack/cable_coil{pixel_x = 3;pixel_y = -7},/turf/open/floor/plasteel/brown{dir = 1},/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"azn" = (/obj/machinery/power/apc{dir = 1;name = "Mining APC";pixel_y = 24},/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/obj/machinery/light_switch{pixel_x = 0;pixel_y = 38},/obj/structure/closet/wardrobe/miner,/turf/open/floor/plasteel/brown{dir = 1},/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"azo" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel/brown{dir = 1},/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"azp" = (/obj/structure/rack{dir = 1},/obj/item/weapon/storage/toolbox/emergency{pixel_x = 2;pixel_y = -3},/obj/item/weapon/storage/toolbox/emergency,/turf/open/floor/plasteel/brown{dir = 5},/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"azq" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = "0"},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel,/area/security/brig)
-"azr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/weapon/cigbutt,/turf/open/floor/plating,/area/maintenance/starboard)
-"azs" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/sink/kitchen{desc = "A sink used for washing one's hands and face. It looks rusty and home-made";name = "old sink";pixel_y = 28},/turf/open/floor/plasteel/floorgrime,/area/quartermaster/sorting{name = "\improper Warehouse"})
-"azt" = (/obj/machinery/airalarm{pixel_y = 28},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel/floorgrime,/area/quartermaster/sorting{name = "\improper Warehouse"})
-"azu" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel/floorgrime,/area/quartermaster/sorting{name = "\improper Warehouse"})
-"azv" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel/vault{dir = 1},/area/security/nuke_storage)
-"azw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/circuit/gcircuit{luminosity = 2},/area/security/nuke_storage)
-"azx" = (/obj/machinery/nuclearbomb/selfdestruct,/turf/open/floor/plasteel/vault{dir = 8},/area/security/nuke_storage)
-"azy" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel/circuit/gcircuit{luminosity = 2},/area/security/nuke_storage)
-"azz" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel/vault{dir = 4},/area/security/nuke_storage)
-"azA" = (/obj/structure/chair{dir = 4},/turf/open/floor/mineral/titanium/blue,/area/shuttle/labor)
-"azB" = (/obj/structure/chair{dir = 8},/obj/machinery/flasher{id = "gulagshuttleflasher";pixel_x = 25},/turf/open/floor/mineral/titanium/blue,/area/shuttle/labor)
-"azC" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/hallway/primary/fore)
-"azD" = (/obj/machinery/flasher{id = "Cell 1";pixel_x = -28},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel/floorgrime,/area/security/brig)
-"azE" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/floorgrime,/area/security/brig)
-"azF" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/floorgrime,/area/security/brig)
-"azG" = (/obj/machinery/flasher{id = "Cell 2";pixel_x = -28},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel/floorgrime,/area/security/brig)
-"azH" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/machinery/flasher{id = "Cell 3";pixel_x = -28},/turf/open/floor/plasteel/floorgrime,/area/security/brig)
-"azI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/red/side{dir = 9},/area/security/brig)
-"azJ" = (/obj/machinery/holopad,/turf/open/floor/plasteel/red/side{dir = 1},/area/security/brig)
-"azK" = (/obj/machinery/light/small{dir = 4},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/red/side{dir = 5},/area/security/brig)
-"azL" = (/obj/structure/chair,/obj/machinery/flasher{id = "holdingflash";pixel_x = -25},/turf/open/floor/plasteel/floorgrime,/area/security/brig)
-"azM" = (/obj/structure/chair,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/floorgrime,/area/security/brig)
-"azN" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/floorgrime,/area/security/brig)
-"azO" = (/obj/structure/chair,/turf/open/floor/plasteel/floorgrime,/area/security/brig)
-"azP" = (/obj/structure/rack,/obj/machinery/flasher{id = "holdingflash";pixel_x = 25},/obj/item/clothing/under/color/orange{pixel_x = 1;pixel_y = -1},/obj/item/clothing/under/color/orange{pixel_x = 1;pixel_y = -1},/obj/item/clothing/under/color/orange{pixel_x = 1;pixel_y = -1},/obj/item/clothing/under/color/orange{pixel_x = 1;pixel_y = -1},/obj/item/clothing/under/color/orange{pixel_x = 1;pixel_y = -1},/obj/item/clothing/shoes/sneakers/orange,/obj/item/clothing/shoes/sneakers/orange,/obj/item/clothing/shoes/sneakers/orange,/obj/item/clothing/shoes/sneakers/orange,/obj/item/clothing/shoes/sneakers/orange,/obj/item/weapon/restraints/handcuffs,/obj/item/weapon/restraints/handcuffs,/obj/item/weapon/restraints/handcuffs,/obj/item/weapon/restraints/handcuffs,/obj/item/weapon/restraints/handcuffs,/turf/open/floor/plasteel/floorgrime,/area/security/brig)
-"azQ" = (/obj/machinery/firealarm{dir = 8;pixel_x = -24},/obj/structure/filingcabinet,/obj/machinery/light/small{dir = 1},/obj/machinery/light_switch{pixel_y = 25},/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
-"azR" = (/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
-"azS" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/carpet,/area/security/detectives_office)
-"azT" = (/obj/structure/table/wood,/obj/item/weapon/storage/fancy/cigarettes,/obj/item/clothing/glasses/sunglasses,/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/carpet,/area/security/detectives_office)
-"azU" = (/obj/machinery/computer/security/wooden_tv{density = 0;pixel_x = 3;pixel_y = 2},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/table/wood,/obj/machinery/computer/security/telescreen{desc = "Used for watching Prison Wing holding areas.";name = "Prison Monitor";network = list("Prison");pixel_x = 0;pixel_y = 30},/turf/open/floor/carpet,/area/security/detectives_office)
-"azV" = (/obj/structure/table/wood,/obj/item/weapon/storage/secure/safe{pixel_x = 32},/obj/item/device/flashlight/lamp/green{pixel_x = 1;pixel_y = 5},/obj/item/weapon/restraints/handcuffs,/obj/machinery/button/door{id = "detective_shutters";name = "detective's office shutters control";pixel_x = 0;pixel_y = 26;req_access_txt = "4"},/turf/open/floor/carpet,/area/security/detectives_office)
-"azW" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plating,/area/maintenance/fore)
-"azX" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/fore)
-"azY" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg2"},/area/maintenance/fore)
-"azZ" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/fore)
-"aAa" = (/obj/structure/mirror{pixel_x = -28},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/shower{icon_state = "shower";dir = 4},/turf/open/floor/plasteel/freezer,/area/crew_quarters/locker/locker_toilet{name = "\improper Restrooms"})
-"aAb" = (/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/obj/item/weapon/bikehorn/rubberducky,/turf/open/floor/plasteel/freezer,/area/crew_quarters/locker/locker_toilet{name = "\improper Restrooms"})
-"aAc" = (/obj/structure/mirror{pixel_x = 28},/obj/machinery/shower{icon_state = "shower";dir = 8},/turf/open/floor/plasteel/freezer,/area/crew_quarters/locker/locker_toilet{name = "\improper Restrooms"})
-"aAd" = (/obj/machinery/washing_machine,/turf/open/floor/plasteel/barber,/area/crew_quarters/sleep)
-"aAe" = (/obj/structure/table,/obj/item/clothing/under/suit_jacket/female{pixel_x = 3;pixel_y = 1},/obj/item/clothing/under/suit_jacket/really_black{pixel_x = -2;pixel_y = 0},/obj/machinery/light/small{dir = 1},/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 0;pixel_y = 28},/obj/item/clothing/tie/waistcoat,/obj/item/clothing/suit/toggle/lawyer/black,/obj/item/clothing/under/suit_jacket/red,/obj/item/clothing/neck/tie/black,/obj/item/clothing/under/lawyer/blacksuit,/turf/open/floor/plasteel/barber,/area/crew_quarters/sleep)
-"aAf" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/crew_quarters/sleep)
-"aAg" = (/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/junction{dir = 4;icon_state = "pipe-j2"},/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"aAh" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/crew_quarters/sleep)
-"aAi" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard)
-"aAj" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/starboard)
-"aAk" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/starboard)
-"aAl" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard)
-"aAm" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/starboard)
-"aAn" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/starboard)
-"aAo" = (/obj/structure/closet/secure_closet/engineering_personal,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/engine/engineering)
-"aAp" = (/obj/structure/closet/secure_closet/engineering_personal,/obj/item/clothing/suit/hooded/wintercoat/engineering,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/engine/engineering)
-"aAq" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/clothing/gloves/color/yellow,/obj/item/clothing/gloves/color/yellow,/obj/item/clothing/gloves/color/yellow,/obj/item/clothing/suit/hazardvest,/obj/item/clothing/suit/hazardvest,/obj/item/weapon/tank/internals/emergency_oxygen/engi,/obj/item/weapon/tank/internals/emergency_oxygen/engi,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/engine/engineering)
-"aAr" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/clothing/mask/gas{pixel_x = 3;pixel_y = 3},/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas{pixel_x = -3;pixel_y = -3},/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 0;pixel_y = 21},/obj/machinery/camera{c_tag = "Engineering - Fore";dir = 2;network = list("SS13")},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/engine/engineering)
-"aAs" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/engine/engineering)
-"aAt" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering)
-"aAu" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/sortjunction{sortType = 4},/obj/effect/landmark/start{name = "Station Engineer"},/turf/open/floor/plasteel,/area/engine/engineering)
-"aAv" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'";icon_state = "radiation";name = "RADIOACTIVE AREA";pixel_x = 32;pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering)
-"aAw" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating/airless,/area/engine/engineering)
-"aAx" = (/obj/item/device/multitool,/turf/open/floor/plating/airless,/area/engine/engineering)
-"aAy" = (/obj/item/device/radio/off,/turf/open/floor/plating/airless,/area/engine/engineering)
-"aAz" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green{pixel_x = 1;pixel_y = 5},/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 30},/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plasteel/cult{dir = 2},/area/library)
-"aAA" = (/obj/machinery/door/airlock/titanium{name = "Mining Shuttle Airlock";req_access_txt = "0"},/obj/docking_port/mobile{dir = 8;dwidth = 3;height = 5;id = "mining";name = "mining shuttle";port_angle = 90;width = 7},/obj/docking_port/stationary{dir = 8;dwidth = 3;height = 5;id = "mining_home";name = "mining shuttle bay";width = 7},/turf/open/floor/plating,/area/shuttle/mining)
-"aAB" = (/obj/machinery/door/airlock/external{name = "Mining Dock Airlock";req_access = null;req_access_txt = "0"},/turf/open/floor/plating,/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"aAC" = (/turf/open/floor/plasteel,/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"aAD" = (/obj/machinery/door/airlock/glass_mining{name = "Mining Dock";req_access_txt = "48"},/turf/open/floor/plasteel,/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"aAE" = (/turf/open/floor/plasteel/brown{dir = 8},/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"aAF" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"aAG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"aAH" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/effect/landmark/start{name = "Shaft Miner"},/turf/open/floor/plasteel,/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"aAI" = (/obj/machinery/button/door{id = "qm_mine_warehouse";name = "Warehouse Door Control";pixel_x = 24;pixel_y = 28;req_access_txt = "48"},/turf/open/floor/plasteel/brown{dir = 4},/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"aAJ" = (/obj/machinery/door/poddoor/shutters{id = "qm_mine_warehouse";name = "Warehouse Shutters"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"aAK" = (/obj/structure/disposalpipe/segment,/obj/machinery/button/door{id = "qm_mine_warehouse";name = "Warehouse Door Control";pixel_x = -24;pixel_y = 28;req_access_txt = "48"},/turf/open/floor/plasteel/loadingarea{dir = 4},/area/quartermaster/sorting{name = "\improper Warehouse"})
-"aAL" = (/turf/open/floor/plasteel/floorgrime,/area/quartermaster/sorting{name = "\improper Warehouse"})
-"aAM" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3;name = "3maintenance loot spawner"},/turf/open/floor/plasteel/floorgrime,/area/quartermaster/sorting{name = "\improper Warehouse"})
-"aAN" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/floorgrime,/area/quartermaster/sorting{name = "\improper Warehouse"})
-"aAO" = (/obj/structure/closet/crate,/obj/structure/extinguisher_cabinet{pixel_x = 27;pixel_y = 0},/obj/effect/spawner/lootdrop/maintenance{lootcount = 3;name = "3maintenance loot spawner"},/turf/open/floor/plasteel/floorgrime,/area/quartermaster/sorting{name = "\improper Warehouse"})
-"aAP" = (/obj/structure/closet/crate{name = "Gold Crate"},/obj/item/stack/sheet/mineral/gold{pixel_x = -1;pixel_y = 5},/obj/item/stack/sheet/mineral/gold{pixel_y = 2},/obj/item/stack/sheet/mineral/gold{pixel_x = 1;pixel_y = -2},/obj/item/weapon/storage/belt/champion,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel/vault{dir = 1},/area/security/nuke_storage)
-"aAQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/circuit/gcircuit{luminosity = 2},/area/security/nuke_storage)
-"aAR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/circuit/gcircuit{luminosity = 2},/area/security/nuke_storage)
-"aAS" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9;pixel_y = 0},/turf/open/floor/plasteel/circuit/gcircuit{luminosity = 2},/area/security/nuke_storage)
-"aAT" = (/obj/item/weapon/coin/silver{pixel_x = 7;pixel_y = 12},/obj/item/weapon/coin/silver{pixel_x = 12;pixel_y = 7},/obj/item/weapon/coin/silver{pixel_x = 4;pixel_y = 8},/obj/item/weapon/coin/silver{pixel_x = -6;pixel_y = 5},/obj/item/weapon/coin/silver{pixel_x = 5;pixel_y = -8},/obj/structure/closet/crate{name = "Silver Crate"},/turf/open/floor/plasteel/vault{dir = 4},/area/security/nuke_storage)
-"aAU" = (/obj/structure/closet/crate,/turf/open/floor/mineral/titanium/blue,/area/shuttle/labor)
-"aAV" = (/obj/machinery/door/airlock/titanium{id_tag = "prisonshuttle";name = "Labor Shuttle Airlock"},/obj/docking_port/mobile{dir = 8;dwidth = 2;height = 5;id = "laborcamp";name = "labor camp shuttle";port_angle = 90;width = 9},/obj/docking_port/stationary{dir = 8;dwidth = 2;height = 5;id = "laborcamp_home";name = "fore bay 1";width = 9},/turf/open/floor/mineral/titanium/blue,/area/shuttle/labor)
-"aAW" = (/obj/machinery/door/airlock/external{name = "Labor Camp Shuttle Airlock"},/turf/open/floor/plasteel/black,/area/hallway/primary/fore)
-"aAX" = (/obj/machinery/firealarm{dir = 4;pixel_x = 28},/obj/machinery/light/small{dir = 4},/obj/machinery/camera{c_tag = "Labor Shuttle Dock";dir = 8;network = list("SS13")},/obj/machinery/flasher{id = "PRelease";pixel_x = 24;pixel_y = 20},/obj/machinery/gulag_item_reclaimer{pixel_y = 24},/turf/open/floor/plasteel/black,/area/hallway/primary/fore)
-"aAY" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/turf/open/floor/plasteel/floorgrime,/area/security/brig)
-"aAZ" = (/obj/structure/closet/secure_closet/brig{id = "Cell 1";name = "Cell 1 Locker"},/turf/open/floor/plasteel/floorgrime,/area/security/brig)
-"aBa" = (/obj/structure/closet/secure_closet/brig{id = "Cell 2";name = "Cell 2 Locker"},/turf/open/floor/plasteel/floorgrime,/area/security/brig)
-"aBb" = (/obj/structure/closet/secure_closet/brig{id = "Cell 3";name = "Cell 3 Locker"},/turf/open/floor/plasteel/floorgrime,/area/security/brig)
-"aBc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/firealarm{dir = 8;pixel_x = -26;pixel_y = 0},/turf/open/floor/plasteel/red/side{dir = 10},/area/security/brig)
-"aBd" = (/turf/open/floor/plasteel/red/side,/area/security/brig)
-"aBe" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/extinguisher_cabinet{pixel_x = 27;pixel_y = 0},/turf/open/floor/plasteel/red/side{dir = 6},/area/security/brig)
-"aBf" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/floorgrime,/area/security/brig)
-"aBg" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4;initialize_directions = 11},/turf/open/floor/plasteel/floorgrime,/area/security/brig)
-"aBh" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel/floorgrime,/area/security/brig)
-"aBi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/airalarm{dir = 1;pixel_y = -22},/turf/open/floor/plasteel/floorgrime,/area/security/brig)
-"aBj" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/floorgrime,/area/security/brig)
-"aBk" = (/obj/structure/closet/secure_closet/detective,/obj/effect/landmark{name = "blobstart"},/obj/machinery/camera{c_tag = "Detective's Office";dir = 4;network = list("SS13")},/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
-"aBl" = (/obj/machinery/holopad,/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
-"aBm" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/carpet,/area/security/detectives_office)
-"aBn" = (/obj/structure/table/wood,/obj/item/weapon/folder/red,/obj/item/weapon/hand_labeler,/turf/open/floor/carpet,/area/security/detectives_office)
-"aBo" = (/obj/effect/landmark/start{name = "Detective"},/obj/structure/chair/office/dark{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/security/detectives_office)
-"aBp" = (/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/obj/machinery/computer/secure_data,/turf/open/floor/carpet,/area/security/detectives_office)
-"aBq" = (/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/fore)
-"aBr" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plating,/area/maintenance/fore)
-"aBs" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/effect/landmark{name = "blobstart"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/fore)
-"aBt" = (/obj/machinery/shower{icon_state = "shower";dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/locker/locker_toilet{name = "\improper Restrooms"})
-"aBu" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/turf/open/floor/plasteel/freezer,/area/crew_quarters/locker/locker_toilet{name = "\improper Restrooms"})
-"aBv" = (/obj/machinery/shower{icon_state = "shower";dir = 8},/turf/open/floor/plasteel/freezer,/area/crew_quarters/locker/locker_toilet{name = "\improper Restrooms"})
-"aBw" = (/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/extinguisher_cabinet{pixel_x = -27;pixel_y = 0},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/crew_quarters/sleep)
-"aBx" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/crew_quarters/sleep)
-"aBy" = (/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/obj/machinery/light/small{dir = 1},/obj/machinery/power/apc{dir = 1;name = "Dormitories APC";pixel_x = 0;pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/crew_quarters/sleep)
-"aBz" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/crew_quarters/sleep)
-"aBA" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4;initialize_directions = 11},/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"aBB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/sign/pods{pixel_x = 30;pixel_y = 0},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/crew_quarters/sleep)
-"aBC" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/starboard)
-"aBD" = (/obj/effect/decal/cleanable/cobweb,/obj/item/weapon/twohanded/required/kirbyplants{icon_state = "plant-20";layer = 4.1;pixel_y = 3},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/engine/engineering)
-"aBE" = (/obj/machinery/suit_storage_unit/engine,/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/engine/engineering)
-"aBF" = (/obj/structure/tank_dispenser,/obj/machinery/light{dir = 1},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/engine/engineering)
-"aBG" = (/obj/machinery/camera{c_tag = "Engineering - Storage";dir = 2;network = list("SS13")},/obj/machinery/suit_storage_unit/engine,/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/engine/engineering)
-"aBH" = (/obj/item/stack/sheet/plasteel{amount = 10;pixel_x = -2;pixel_y = 2},/obj/structure/table,/obj/item/stack/sheet/rglass{amount = 30;pixel_x = 2;pixel_y = -2},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/engine/engineering)
-"aBI" = (/turf/closed/wall,/area/engine/engineering)
-"aBJ" = (/obj/machinery/airalarm{dir = 4;icon_state = "alarm0";pixel_x = -22},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/engine/engineering)
-"aBK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering)
-"aBL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering)
-"aBM" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/engineering)
-"aBN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering)
-"aBO" = (/obj/machinery/door/poddoor/shutters/preopen{id = "Singularity";name = "radiation shutters"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/engine/engineering)
-"aBP" = (/obj/structure/reagent_dispensers/watertank,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/engine/engineering)
-"aBQ" = (/obj/machinery/camera/emp_proof{c_tag = "Fore Arm - Near";dir = 4;network = list("Singulo")},/obj/structure/lattice,/turf/open/space,/area/space)
-"aBR" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/closet/cardboard,/obj/structure/sign/poster{pixel_y = 32},/turf/open/floor/plasteel/floorgrime,/area/quartermaster/sorting{name = "\improper Warehouse"})
-"aBS" = (/obj/item/weapon/ore/silver,/obj/item/weapon/ore/silver,/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"aBT" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/camera{c_tag = "Mining Dock";dir = 8;network = list("SS13")},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"aBU" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;name = "EXTERNAL AIRLOCK";pixel_x = 0},/turf/closed/wall,/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"aBV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/holopad,/turf/open/floor/plasteel,/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"aBW" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"aBX" = (/obj/item/device/radio/intercom{dir = 4;name = "Station Intercom (General)";pixel_x = 27},/obj/machinery/camera{c_tag = "Mining Office";dir = 8;network = list("SS13")},/obj/machinery/mineral/equipment_vendor,/turf/open/floor/plasteel/brown{dir = 4},/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"aBY" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/item/weapon/storage/box/donkpockets,/turf/open/floor/plasteel/floorgrime,/area/quartermaster/sorting{name = "\improper Warehouse"})
-"aBZ" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel/floorgrime,/area/quartermaster/sorting{name = "\improper Warehouse"})
-"aCa" = (/obj/structure/closet/crate/freezer,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3;name = "3maintenance loot spawner"},/turf/open/floor/plasteel/floorgrime,/area/quartermaster/sorting{name = "\improper Warehouse"})
-"aCb" = (/obj/structure/closet/crate,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/item/weapon/ore/glass,/turf/open/floor/plasteel/floorgrime,/area/quartermaster/sorting{name = "\improper Warehouse"})
-"aCc" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/electronics/apc,/obj/item/weapon/stock_parts/cell{maxcharge = 2000},/obj/machinery/firealarm{dir = 4;pixel_x = 24},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plasteel/floorgrime,/area/quartermaster/sorting{name = "\improper Warehouse"})
-"aCd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/vault{dir = 1},/area/security/nuke_storage)
-"aCe" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel/vault{dir = 6},/area/security/nuke_storage)
-"aCf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel/vault,/area/security/nuke_storage)
-"aCg" = (/obj/machinery/camera/motion{c_tag = "Vault";dir = 1;network = list("SS13")},/obj/machinery/light,/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel/vault{dir = 10},/area/security/nuke_storage)
-"aCh" = (/obj/structure/safe,/obj/item/weapon/storage/secure/briefcase{contents = newlist(/obj/item/clothing/suit/armor/vest,/obj/item/weapon/gun/ballistic/automatic/pistol,/obj/item/weapon/suppressor,/obj/item/weapon/melee/classic_baton/telescopic,/obj/item/clothing/mask/balaclava,/obj/item/bodybag,/obj/item/weapon/soap/nanotrasen)},/obj/item/weapon/storage/backpack/dufflebag{contents = newlist(/obj/item/clothing/under/lawyer/blacksuit,/obj/item/clothing/tie/waistcoat,/obj/item/clothing/suit/toggle/lawyer/black,/obj/item/clothing/shoes/laceup,/obj/item/clothing/gloves/color/black,/obj/item/clothing/glasses/sunglasses,/obj/item/clothing/head/fedora);desc = "A large dufflebag for holding extra things. There is a NanoTrasen logo on the back.";icon_state = "duffle-syndieammo";item_state = "duffle-syndieammo"},/obj/item/weapon/card/id/silver{access = list(12);assignment = "Reaper";name = "Thirteen's ID Card (Reaper)";registered_name = "Thirteen"},/obj/item/weapon/lazarus_injector,/obj/item/weapon/gun/energy/e_gun/advtaser,/obj/item/weapon/gun/ballistic/revolver/russian,/obj/item/ammo_box/a357,/obj/item/clothing/neck/stethoscope,/obj/item/weapon/book{desc = "An undeniably handy book.";icon_state = "bookknock";name = "A Simpleton's Guide to Safe-cracking with Stethoscopes"},/turf/open/floor/plasteel/vault{dir = 4},/area/security/nuke_storage)
-"aCi" = (/obj/structure/shuttle/engine/heater,/obj/structure/window/reinforced{dir = 1;layer = 2.9},/turf/open/floor/plating,/area/shuttle/labor)
-"aCj" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Labor Camp Shuttle Airlock";req_access_txt = "0"},/turf/open/floor/plasteel/black,/area/hallway/primary/fore)
-"aCk" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "Secure Gate";name = "brig shutters"},/turf/open/floor/plating,/area/security/brig)
-"aCl" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow,/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "Secure Gate";name = "brig shutters"},/turf/open/floor/plating,/area/security/brig)
-"aCm" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "Secure Gate";name = "brig shutters"},/turf/open/floor/plating,/area/security/brig)
-"aCn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{cyclelinkeddir = 1;id_tag = "outerbrig";name = "Brig";req_access_txt = "63"},/turf/open/floor/plasteel/red/side{dir = 1},/area/security/brig)
-"aCo" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "Secure Gate";name = "brig shutters"},/turf/open/floor/plating,/area/security/brig)
-"aCp" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/machinery/flasher{id = "secentranceflasher";pixel_x = 25},/obj/machinery/door/airlock/glass_security{cyclelinkeddir = 1;id_tag = "outerbrig";name = "Brig";req_access_txt = "63"},/turf/open/floor/plasteel/red/side{dir = 1},/area/security/brig)
-"aCq" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Security Desk";req_access_txt = "63"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel/black,/area/security/brig)
-"aCr" = (/obj/machinery/door/airlock/security{name = "Court Cell";req_access = null;req_access_txt = "63"},/turf/open/floor/plasteel/black,/area/security/brig)
-"aCs" = (/obj/structure/table/wood,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/machinery/power/apc{dir = 8;name = "Detective APC";pixel_x = -24;pixel_y = 0},/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/obj/item/device/taperecorder{pixel_x = 3;pixel_y = 0},/obj/item/weapon/storage/box/evidence,/obj/item/device/flashlight/seclite,/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
-"aCt" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
-"aCu" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/security/detectives_office)
-"aCv" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin{pixel_x = -3;pixel_y = 7},/obj/item/weapon/pen,/turf/open/floor/carpet,/area/security/detectives_office)
-"aCw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/security/detectives_office)
-"aCx" = (/obj/machinery/computer/med_data,/obj/machinery/newscaster{pixel_x = 28},/turf/open/floor/carpet,/area/security/detectives_office)
-"aCy" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/fore)
-"aCz" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fore)
-"aCA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/crew_quarters/locker/locker_toilet{name = "\improper Restrooms"})
-"aCB" = (/obj/machinery/door/airlock{name = "Unisex Showers";req_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/locker/locker_toilet{name = "\improper Restrooms"})
-"aCC" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/crew_quarters/sleep)
-"aCD" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"aCE" = (/obj/structure/chair/stool{pixel_y = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"aCF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/holopad,/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"aCG" = (/obj/structure/chair/stool{pixel_y = 8},/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/turf/open/floor/plasteel/floorgrime,/area/crew_quarters/sleep)
-"aCH" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8;initialize_directions = 11},/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"aCI" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/crew_quarters/sleep)
-"aCJ" = (/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/machinery/button/door{id = "Cabin6";name = "Dorm Bolt Control";normaldoorcontrol = 1;pixel_x = -25;pixel_y = 0;req_access_txt = "0";specialfunctions = 4},/obj/effect/decal/cleanable/cobweb,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/carpet,/area/crew_quarters/sleep)
-"aCK" = (/obj/structure/closet/secure_closet/personal/cabinet,/obj/machinery/airalarm{pixel_y = 23},/obj/item/clothing/under/suit_jacket/navy,/turf/open/floor/carpet,/area/crew_quarters/sleep)
-"aCL" = (/obj/item/clothing/glasses/meson,/obj/structure/closet/crate,/obj/item/weapon/poster/contraband,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/starboard)
-"aCM" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/starboard)
-"aCN" = (/obj/structure/reagent_dispensers/fueltank,/obj/item/device/radio/intercom{name = "Station Intercom (General)";pixel_x = -30;pixel_y = 0},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/engine/engineering)
-"aCO" = (/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/engine/engineering)
-"aCP" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering)
-"aCQ" = (/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/engine/engineering)
-"aCR" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/turf/open/floor/plating,/area/engine/engineering)
-"aCS" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/engine/engineering)
-"aCT" = (/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/turf/open/floor/plasteel,/area/engine/engineering)
-"aCU" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering)
-"aCV" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/turf/open/floor/plasteel,/area/engine/engineering)
-"aCW" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering)
-"aCX" = (/obj/machinery/door/poddoor/shutters/preopen{id = "Singularity";name = "radiation shutters"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/engine/engineering)
-"aCY" = (/obj/machinery/power/rad_collector{anchored = 1},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/engine/engineering)
-"aCZ" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/engine/engineering)
-"aDa" = (/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plating,/area/shuttle/auxillary_base)
-"aDb" = (/turf/closed/wall,/area/mining_construction)
-"aDc" = (/obj/structure/closet/crate,/obj/item/weapon/coin/silver,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"aDd" = (/obj/structure/closet,/obj/item/weapon/poster/contraband,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"aDe" = (/obj/structure/closet/crate,/turf/open/floor/mineral/titanium/blue,/area/shuttle/mining)
-"aDf" = (/obj/structure/shuttle/engine/heater,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plating/airless,/area/shuttle/mining)
-"aDg" = (/obj/structure/ore_box,/turf/open/floor/mineral/titanium/blue,/area/shuttle/mining)
-"aDh" = (/obj/machinery/firealarm{dir = 8;pixel_x = -24},/obj/machinery/light{dir = 8},/obj/machinery/computer/shuttle/mining{req_access = "0";req_one_access = "0"},/turf/open/floor/plasteel/brown{dir = 9},/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"aDi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/landmark/start{name = "Shaft Miner"},/turf/open/floor/plasteel,/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"aDj" = (/obj/structure/closet/secure_closet/miner,/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/turf/open/floor/plasteel/brown{dir = 4},/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"aDk" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plasteel/floorgrime,/area/quartermaster/sorting{name = "\improper Warehouse"})
-"aDl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3;name = "3maintenance loot spawner"},/turf/open/floor/plasteel/floorgrime,/area/quartermaster/sorting{name = "\improper Warehouse"})
-"aDm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/landmark/start{name = "Cargo Technician"},/turf/open/floor/plasteel/floorgrime,/area/quartermaster/sorting{name = "\improper Warehouse"})
-"aDn" = (/obj/item/stack/sheet/cardboard,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/floorgrime,/area/quartermaster/sorting{name = "\improper Warehouse"})
-"aDo" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/light_construct/small{dir = 4},/turf/open/floor/plasteel/floorgrime,/area/quartermaster/sorting{name = "\improper Warehouse"})
-"aDp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/closed/wall/r_wall,/area/security/nuke_storage)
-"aDq" = (/obj/structure/sign/securearea,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/closed/wall/r_wall,/area/security/nuke_storage)
-"aDr" = (/obj/machinery/door/airlock/vault{icon_state = "door_locked";locked = 1;req_access_txt = "53"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/vault{dir = 5},/area/security/nuke_storage)
-"aDs" = (/obj/structure/sign/securearea,/turf/closed/wall/r_wall,/area/security/nuke_storage)
-"aDt" = (/obj/structure/shuttle/engine/propulsion,/turf/open/floor/plating,/area/shuttle/labor)
-"aDu" = (/turf/closed/wall,/area/hallway/primary/fore)
-"aDv" = (/obj/machinery/door/poddoor/preopen{id = "prison release";name = "prisoner processing blast door"},/obj/machinery/button/door{id = "prison release";name = "Labor Camp Shuttle Lockdown";pixel_x = -25;pixel_y = 0;req_access_txt = "2"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/hallway/primary/fore)
-"aDw" = (/turf/open/floor/plasteel/red/corner{dir = 1},/area/hallway/primary/fore)
-"aDx" = (/obj/structure/chair/stool,/turf/open/floor/plasteel/red/corner{dir = 1},/area/hallway/primary/fore)
-"aDy" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'";icon_state = "shock";name = "HIGH VOLTAGE";pixel_x = 0;pixel_y = 32},/turf/open/floor/plasteel/red/corner{dir = 1},/area/hallway/primary/fore)
-"aDz" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'";icon_state = "shock";name = "HIGH VOLTAGE";pixel_x = 0;pixel_y = 32},/obj/machinery/camera{c_tag = "Fore Primary Hallway Cells";dir = 2;network = list("SS13")},/turf/open/floor/plasteel/red/corner{dir = 1},/area/hallway/primary/fore)
-"aDA" = (/obj/machinery/light{dir = 1},/obj/machinery/status_display{density = 0;layer = 4;pixel_x = 0;pixel_y = 32},/turf/open/floor/plasteel/red/corner{dir = 1},/area/hallway/primary/fore)
-"aDB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plasteel/red/corner{dir = 1},/area/hallway/primary/fore)
-"aDC" = (/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"aDD" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/red/corner{dir = 4},/area/hallway/primary/fore)
-"aDE" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/obj/machinery/door/poddoor/preopen{id = "briglockdown";name = "brig shutters"},/turf/open/floor/plating,/area/security/brig)
-"aDF" = (/obj/machinery/computer/secure_data,/obj/machinery/button/flasher{id = "secentranceflasher";name = "Brig Entrance Flash Control";pixel_x = -24;pixel_y = 24;req_access_txt = "1"},/obj/machinery/button/door{id = "Secure Gate";name = "Cell Window Control";normaldoorcontrol = 0;pixel_x = 5;pixel_y = 27;req_access_txt = "0";specialfunctions = 4},/obj/machinery/button/door{id = "briglockdown";name = "Brig Lockdown Control";pixel_x = 5;pixel_y = 37;req_access_txt = "0"},/obj/machinery/light/small{dir = 1},/obj/machinery/button/door{desc = "A remote control switch for the medbay foyer.";id = "innerbrig";name = "Brig Interior Doors Control";normaldoorcontrol = 1;pixel_x = -5;pixel_y = 37;req_access_txt = "63"},/obj/machinery/button/door{desc = "A remote control switch for the medbay foyer.";id = "outerbrig";name = "Brig Exterior Doors Control";normaldoorcontrol = 1;pixel_x = -5;pixel_y = 27;req_access_txt = "63"},/turf/open/floor/plasteel/black,/area/security/brig)
-"aDG" = (/obj/structure/filingcabinet/chestdrawer{pixel_y = 3},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/black,/area/security/brig)
-"aDH" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/obj/machinery/button/flasher{id = "holdingflash";name = "holding cell flasher button";pixel_x = 23;pixel_y = 23;req_access_txt = "1"},/obj/machinery/camera{c_tag = "Brig - Desk";dir = 8;network = list("SS13")},/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 29;pixel_y = -2},/turf/open/floor/plasteel/black,/area/security/brig)
-"aDI" = (/obj/machinery/requests_console{department = "Detective's office";pixel_x = -30;pixel_y = 0},/obj/structure/table/wood,/obj/machinery/light/small{dir = 8},/obj/item/weapon/book/manual/wiki/security_space_law,/obj/item/device/camera/detective,/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
-"aDJ" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
-"aDK" = (/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
-"aDL" = (/obj/machinery/light/small,/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 0;pixel_y = -26},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
-"aDM" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
-"aDN" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/storage/briefcase{pixel_x = -3;pixel_y = 2},/obj/item/weapon/storage/secure/briefcase{pixel_x = 2;pixel_y = -2},/turf/open/floor/plasteel/grimy,/area/security/detectives_office)
-"aDO" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/fore)
-"aDP" = (/obj/structure/toilet{pixel_y = 8},/obj/machinery/light/small{dir = 8},/obj/machinery/newscaster{pixel_x = 0;pixel_y = -32},/obj/machinery/button/door{id = "Toilet3";name = "Lock Control";normaldoorcontrol = 1;pixel_x = -25;pixel_y = 0;req_access_txt = "0";specialfunctions = 4},/obj/effect/landmark/start{name = "Assistant"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/locker/locker_toilet{name = "\improper Restrooms"})
-"aDQ" = (/obj/machinery/door/airlock{id_tag = "Toilet3";name = "Unit 3"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/locker/locker_toilet{name = "\improper Restrooms"})
-"aDR" = (/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/freezer,/area/crew_quarters/locker/locker_toilet{name = "\improper Restrooms"})
-"aDS" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/urinal{pixel_y = 29},/turf/open/floor/plasteel/freezer,/area/crew_quarters/locker/locker_toilet{name = "\improper Restrooms"})
-"aDT" = (/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2;initialize_directions = 11},/obj/structure/urinal{pixel_y = 29},/turf/open/floor/plasteel/freezer,/area/crew_quarters/locker/locker_toilet{name = "\improper Restrooms"})
-"aDU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/locker/locker_toilet{name = "\improper Restrooms"})
-"aDV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/obj/machinery/newscaster{pixel_x = 0;pixel_y = 32},/turf/open/floor/plasteel/freezer,/area/crew_quarters/locker/locker_toilet{name = "\improper Restrooms"})
-"aDW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/locker/locker_toilet{name = "\improper Restrooms"})
-"aDX" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/light{icon_state = "tube1";dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/crew_quarters/sleep)
-"aDY" = (/obj/structure/chair/stool{pixel_y = 8},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"aDZ" = (/obj/structure/table,/obj/item/weapon/storage/pill_bottle/dice,/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"aEa" = (/obj/structure/table,/obj/item/weapon/storage/crayons,/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"aEb" = (/obj/structure/table,/obj/item/toy/cards/deck,/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"aEc" = (/obj/structure/chair/stool{pixel_y = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"aEd" = (/obj/machinery/door/airlock{id_tag = "Cabin6";name = "Cabin 2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/sleep)
-"aEe" = (/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/sleep)
-"aEf" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/carpet,/area/crew_quarters/sleep)
-"aEg" = (/obj/machinery/light/small,/turf/open/floor/carpet,/area/crew_quarters/sleep)
-"aEh" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/airalarm{dir = 4;icon_state = "alarm0";pixel_x = -22},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/engine/engineering)
-"aEi" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering)
-"aEj" = (/obj/effect/landmark/start{name = "Station Engineer"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel,/area/engine/engineering)
-"aEk" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering)
-"aEl" = (/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering)
-"aEm" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_engineering{name = "Engineering Storage";req_access_txt = "32"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/engine/engineering)
-"aEn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering)
-"aEo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/engineering)
-"aEp" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/effect/turf_decal/stripes/corner{dir = 2},/turf/open/floor/plasteel,/area/engine/engineering)
-"aEq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel,/area/engine/engineering)
-"aEr" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel,/area/engine/engineering)
-"aEs" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9;pixel_y = 0},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/engine/engineering)
-"aEt" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -3;pixel_y = 6},/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/machinery/light_switch{pixel_y = 28},/turf/open/floor/plasteel/floorgrime,/area/quartermaster/sorting{name = "\improper Warehouse"})
-"aEu" = (/obj/structure/shuttle/engine/propulsion/burst,/obj/structure/window/reinforced{dir = 1;layer = 2.9},/turf/open/floor/plating/airless,/area/shuttle/mining)
-"aEv" = (/obj/machinery/computer/security/mining{network = list("MINE","AuxBase")},/turf/open/floor/plasteel,/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"aEw" = (/obj/structure/chair/office/dark{dir = 8},/obj/effect/landmark/start{name = "Shaft Miner"},/turf/open/floor/plasteel,/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"aEx" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"aEy" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel,/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"aEz" = (/obj/structure/closet/secure_closet/miner,/obj/structure/extinguisher_cabinet{pixel_x = 27;pixel_y = 0},/obj/item/clothing/suit/hooded/wintercoat/miner,/turf/open/floor/plasteel/brown{dir = 4},/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"aEA" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plasteel/loadingarea{dir = 1},/area/quartermaster/sorting{name = "\improper Warehouse"})
-"aEB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/button/door{id = "qm_warehouse";name = "Warehouse Door Control";pixel_x = 0;pixel_y = -24;req_access_txt = "50"},/turf/open/floor/plasteel/floorgrime,/area/quartermaster/sorting{name = "\improper Warehouse"})
-"aEC" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/sign/poster{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/fore)
-"aED" = (/obj/structure/closet/crate/internals,/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/effect/spawner/lootdrop/maintenance{lootcount = 3;name = "3maintenance loot spawner"},/turf/open/floor/plasteel/floorgrime,/area/quartermaster/sorting{name = "\improper Warehouse"})
-"aEE" = (/obj/machinery/power/apc{dir = 4;name = "Warehouse APC";pixel_x = 27;pixel_y = 0},/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/obj/effect/landmark{name = "blobstart"},/turf/open/floor/plasteel/floorgrime,/area/quartermaster/sorting{name = "\improper Warehouse"})
-"aEF" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/construction/Storage{name = "Storage Wing"})
-"aEG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/vault{dir = 5},/area/construction/Storage{name = "Storage Wing"})
-"aEH" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/turf/open/floor/plating,/area/construction/Storage{name = "Storage Wing"})
-"aEI" = (/obj/machinery/airalarm{dir = 4;icon_state = "alarm0";pixel_x = -22},/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"aEJ" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;name = "EXTERNAL AIRLOCK";pixel_x = 0;pixel_y = 32},/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"aEK" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=1.5-Fore-Central";location = "1-BrigCells"},/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"aEL" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"aEM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"aEN" = (/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"aEO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"aEP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"aEQ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1;initialize_directions = 11},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"aER" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"aES" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"aET" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=1-BrigCells";location = "0-SecurityDesk"},/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"aEU" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"aEV" = (/obj/structure/table/reinforced,/obj/machinery/door/window/westleft{base_state = "right";dir = 8;icon_state = "right";name = "Outer Window";req_access_txt = "0"},/obj/machinery/door/window/brigdoor{dir = 4;name = "Security Desk";req_access_txt = "1"},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/item/device/radio/off,/obj/machinery/door/poddoor/shutters/preopen{id = "briglockdown";name = "brig shutters"},/turf/open/floor/plasteel/black,/area/security/brig)
-"aEW" = (/obj/structure/chair/office/dark{dir = 8},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/black,/area/security/brig)
-"aEX" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel/black,/area/security/brig)
-"aEY" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/black,/area/security/brig)
-"aEZ" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/table,/obj/item/bodybag,/obj/item/clothing/gloves/color/latex,/obj/item/clothing/mask/surgical,/turf/open/floor/plasteel/black,/area/security/detectives_office)
-"aFa" = (/obj/machinery/door/window{dir = 1;name = "glass door";pixel_y = 0;req_access_txt = "0"},/turf/open/floor/plasteel/black,/area/security/detectives_office)
-"aFb" = (/obj/machinery/door/airlock/maintenance{name = "Detective Maintenance";req_access_txt = "4"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/security/detectives_office)
-"aFc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/firealarm{dir = 8;pixel_x = -24},/obj/machinery/camera{c_tag = "Restrooms";dir = 4;network = list("SS13")},/turf/open/floor/plasteel/freezer,/area/crew_quarters/locker/locker_toilet{name = "\improper Restrooms"})
-"aFd" = (/turf/open/floor/plasteel/freezer,/area/crew_quarters/locker/locker_toilet{name = "\improper Restrooms"})
-"aFe" = (/obj/machinery/light/small,/obj/machinery/power/apc{dir = 2;name = "Restrooms APC";pixel_x = 0;pixel_y = -26},/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/locker/locker_toilet{name = "\improper Restrooms"})
-"aFf" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/locker/locker_toilet{name = "\improper Restrooms"})
-"aFg" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/locker/locker_toilet{name = "\improper Restrooms"})
-"aFh" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/freezer,/area/crew_quarters/locker/locker_toilet{name = "\improper Restrooms"})
-"aFi" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Unisex Restrooms";req_access_txt = "0"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/freezer,/area/crew_quarters/locker/locker_toilet{name = "\improper Restrooms"})
-"aFj" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/crew_quarters/sleep)
-"aFk" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/floorgrime,/area/crew_quarters/sleep)
-"aFl" = (/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"aFm" = (/obj/structure/chair/stool{pixel_y = 8},/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"aFn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"aFo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/firealarm{dir = 4;pixel_x = 28},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/crew_quarters/sleep)
-"aFp" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/firealarm{dir = 8;pixel_x = -24},/obj/machinery/light_switch{pixel_x = -38},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/engine/engineering)
-"aFq" = (/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/engine/engineering)
-"aFr" = (/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel,/area/engine/engineering)
-"aFs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel,/area/engine/engineering)
-"aFt" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/item/clothing/head/cone{pixel_x = -4;pixel_y = 4},/obj/item/clothing/head/cone{pixel_x = -4;pixel_y = 4},/obj/item/clothing/head/cone{pixel_x = -4;pixel_y = 4},/obj/item/clothing/head/cone{pixel_x = -4;pixel_y = 4},/obj/item/clothing/head/cone{pixel_x = -4;pixel_y = 4},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/engine/engineering)
-"aFu" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/engine/engineering)
-"aFv" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2;initialize_directions = 11},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering)
-"aFw" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4;initialize_directions = 11},/turf/open/floor/plasteel,/area/engine/engineering)
-"aFx" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering)
-"aFy" = (/obj/structure/closet/secure_closet/engineering_electrical,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/engine/engineering)
-"aFz" = (/obj/structure/closet/wardrobe/engineering_yellow,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/engine/engineering)
-"aFA" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/storage/belt/utility,/obj/item/weapon/wrench,/obj/item/weapon/weldingtool,/obj/item/clothing/head/welding{pixel_x = -3;pixel_y = 5},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/engine/engineering)
-"aFB" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/engine/engineering)
-"aFC" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/crowbar,/obj/item/weapon/wirecutters,/obj/item/stack/cable_coil,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/engine/engineering)
-"aFD" = (/obj/machinery/field/generator{anchored = 1;state = 2},/turf/open/floor/plating/airless,/area/space)
-"aFE" = (/obj/structure/table/wood,/obj/machinery/newscaster{pixel_x = 0;pixel_y = 32},/obj/item/weapon/folder,/obj/item/weapon/folder,/obj/effect/decal/cleanable/cobweb/cobweb2,/turf/open/floor/plasteel/cult{dir = 2},/area/library)
-"aFF" = (/obj/structure/table,/obj/item/weapon/folder/yellow,/obj/item/weapon/pen,/obj/machinery/requests_console{department = "Mining";departmentType = 0;pixel_x = 0;pixel_y = -30},/turf/open/floor/plasteel/brown{dir = 10},/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"aFG" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3;pixel_y = 7},/turf/open/floor/plasteel/brown{dir = 2},/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"aFH" = (/obj/structure/rack{dir = 1},/obj/item/weapon/pickaxe{pixel_x = 5},/obj/item/weapon/shovel{pixel_x = -5},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/brown{dir = 2},/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"aFI" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plasteel/brown{dir = 2},/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"aFJ" = (/obj/structure/closet/secure_closet/miner,/turf/open/floor/plasteel/brown{dir = 6},/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"aFK" = (/obj/machinery/door/poddoor/shutters{id = "qm_warehouse";name = "Warehouse Shutters"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/quartermaster/sorting{name = "\improper Warehouse"})
-"aFL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/quartermaster/sorting{name = "\improper Warehouse"})
-"aFM" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "0";req_one_access_txt = "12;63;48;50"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fore)
-"aFN" = (/turf/closed/wall,/area/construction/Storage{name = "Storage Wing"})
-"aFO" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/turf/open/floor/plating,/area/construction/Storage{name = "Storage Wing"})
-"aFP" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/turf/open/floor/plating,/area/construction/Storage{name = "Storage Wing"})
-"aFQ" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/obj/structure/cable/yellow,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/construction/Storage{name = "Storage Wing"})
-"aFR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Vault Storage"},/turf/open/floor/plasteel/vault{dir = 5},/area/construction/Storage{name = "Storage Wing"})
-"aFS" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/obj/structure/cable/yellow,/turf/open/floor/plating,/area/construction/Storage{name = "Storage Wing"})
-"aFT" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/turf/open/floor/plating,/area/construction/Storage{name = "Storage Wing"})
-"aFU" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/turf/open/floor/plating,/area/construction/Storage{name = "Storage Wing"})
-"aFV" = (/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/firealarm{dir = 8;pixel_x = -26;pixel_y = 0},/obj/machinery/camera{c_tag = "Storage Wing - Security Access Door";dir = 4;network = list("SS13")},/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/black,/area/hallway/primary/fore)
-"aFW" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/black,/area/hallway/primary/fore)
-"aFX" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/black,/area/hallway/primary/fore)
-"aFY" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Security-Storage Backroom";req_access = null;req_access_txt = "63"},/turf/open/floor/plasteel/black,/area/hallway/primary/fore)
-"aFZ" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel/red/corner{dir = 8},/area/hallway/primary/fore)
-"aGa" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/red/corner{dir = 8},/area/hallway/primary/fore)
-"aGb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/extinguisher_cabinet{pixel_x = 0;pixel_y = -30},/turf/open/floor/plasteel/red/corner{dir = 8},/area/hallway/primary/fore)
-"aGc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/red/corner{dir = 8},/area/hallway/primary/fore)
-"aGd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/firealarm{dir = 1;pixel_y = -24},/turf/open/floor/plasteel/red/corner{dir = 8},/area/hallway/primary/fore)
-"aGe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel/red/corner{dir = 8},/area/hallway/primary/fore)
-"aGf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/power/apc{cell_type = 5000;dir = 2;name = "Fore Primary Hallway APC";pixel_x = 0;pixel_y = -27},/obj/structure/cable/yellow,/obj/machinery/light,/turf/open/floor/plasteel/red/corner{dir = 8},/area/hallway/primary/fore)
-"aGg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/red/corner{dir = 8},/area/hallway/primary/fore)
-"aGh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 0;pixel_y = -26},/turf/open/floor/plasteel/red/corner{dir = 8},/area/hallway/primary/fore)
-"aGi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/red/corner{dir = 8},/area/hallway/primary/fore)
-"aGj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/red/corner{dir = 8},/area/hallway/primary/fore)
-"aGk" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"aGl" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/red/corner{dir = 2},/area/hallway/primary/fore)
-"aGm" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/turf/open/floor/plasteel/red/corner{dir = 2},/area/hallway/primary/fore)
-"aGn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/red/corner{dir = 2},/area/hallway/primary/fore)
-"aGo" = (/obj/item/device/radio/beacon,/turf/open/floor/plasteel/red/corner{dir = 2},/area/hallway/primary/fore)
-"aGp" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow,/obj/machinery/door/poddoor/preopen{id = "briglockdown";name = "brig shutters"},/turf/open/floor/plating,/area/security/brig)
-"aGq" = (/obj/machinery/computer/security,/obj/machinery/newscaster/security_unit{pixel_x = 0;pixel_y = -30},/turf/open/floor/plasteel/black,/area/security/brig)
-"aGr" = (/obj/structure/table,/obj/item/weapon/folder/red{pixel_x = 3},/obj/item/weapon/folder/white{pixel_x = -4;pixel_y = 2},/obj/machinery/computer/security/telescreen{desc = "Used for watching Prison Wing holding areas.";dir = 1;name = "Prison Monitor";network = list("Prison");pixel_x = 0;pixel_y = -30},/obj/item/weapon/restraints/handcuffs,/turf/open/floor/plasteel/black,/area/security/brig)
-"aGs" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3;pixel_y = 7},/obj/item/weapon/pen,/obj/machinery/firealarm{dir = 4;pixel_x = 24},/obj/structure/reagent_dispensers/peppertank{pixel_x = 0;pixel_y = -30},/turf/open/floor/plasteel/black,/area/security/brig)
-"aGt" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/black,/area/security/brig)
-"aGu" = (/obj/structure/bodycontainer/morgue,/obj/effect/landmark{name = "revenantspawn"},/turf/open/floor/plasteel/black,/area/security/detectives_office)
-"aGv" = (/obj/machinery/light/small,/turf/open/floor/plasteel/black,/area/security/detectives_office)
-"aGw" = (/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/fore)
-"aGx" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/maintenance/fore)
-"aGy" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fore)
-"aGz" = (/obj/structure/toilet{pixel_y = 8},/obj/machinery/light/small{dir = 8},/obj/machinery/newscaster{pixel_x = 0;pixel_y = -32},/obj/effect/landmark{name = "blobstart"},/obj/machinery/button/door{id = "Toilet2";name = "Lock Control";normaldoorcontrol = 1;pixel_x = -25;pixel_y = 0;req_access_txt = "0";specialfunctions = 4},/turf/open/floor/plasteel/freezer,/area/crew_quarters/locker/locker_toilet{name = "\improper Restrooms"})
-"aGA" = (/obj/machinery/door/airlock{id_tag = "Toilet2";name = "Unit 2"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/locker/locker_toilet{name = "\improper Restrooms"})
-"aGB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/locker/locker_toilet{name = "\improper Restrooms"})
-"aGC" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/freezer,/area/crew_quarters/locker/locker_toilet{name = "\improper Restrooms"})
-"aGD" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/freezer,/area/crew_quarters/locker/locker_toilet{name = "\improper Restrooms"})
-"aGE" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/fore)
-"aGF" = (/obj/structure/extinguisher_cabinet{pixel_x = 27;pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9;pixel_y = 0},/turf/open/floor/plasteel/freezer,/area/crew_quarters/locker/locker_toilet{name = "\improper Restrooms"})
-"aGG" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/machinery/camera{c_tag = "Dormitories - Aft";dir = 4},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/crew_quarters/sleep)
-"aGH" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"aGI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/crew_quarters/sleep)
-"aGJ" = (/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/airalarm{dir = 1;icon_state = "alarm0";pixel_y = -22},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/crew_quarters/sleep)
-"aGK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/crew_quarters/sleep)
-"aGL" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/crew_quarters/sleep)
-"aGM" = (/obj/machinery/door/airlock{id_tag = "Cabin7";name = "Cabin 1"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/sleep)
-"aGN" = (/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"aGO" = (/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/wood,/area/crew_quarters/sleep)
-"aGP" = (/obj/structure/closet/secure_closet/personal/cabinet,/obj/item/clothing/under/assistantformal,/turf/open/floor/wood,/area/crew_quarters/sleep)
-"aGQ" = (/obj/structure/table,/obj/item/stack/rods{amount = 50},/obj/item/weapon/wrench,/obj/item/weapon/storage/box/lights/mixed,/obj/effect/turf_decal/bot{dir = 1},/obj/item/drone_shell,/obj/item/drone_shell,/turf/open/floor/plasteel{dir = 1},/area/engine/engineering)
-"aGR" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/glass{amount = 50},/obj/item/stack/sheet/glass{amount = 50},/obj/item/stack/sheet/glass{amount = 50},/obj/item/weapon/crowbar,/obj/item/weapon/grenade/chem_grenade/metalfoam,/obj/item/weapon/grenade/chem_grenade/metalfoam,/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/engine/engineering)
-"aGS" = (/obj/structure/table,/obj/item/stack/cable_coil{pixel_x = 3;pixel_y = -7},/obj/item/stack/cable_coil,/obj/item/weapon/electronics/airlock,/obj/item/weapon/electronics/airlock,/obj/item/clothing/ears/earmuffs{pixel_x = -3;pixel_y = -2},/obj/item/clothing/ears/earmuffs{pixel_x = -5;pixel_y = 6},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/engine/engineering)
-"aGT" = (/obj/structure/closet/crate{name = "solar pack crate"},/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/solar_assembly,/obj/item/weapon/circuitboard/computer/solar_control,/obj/item/weapon/electronics/tracker,/obj/item/weapon/paper/solar,/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/engine/engineering)
-"aGU" = (/obj/machinery/power/port_gen/pacman,/obj/structure/cable/yellow,/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/engine/engineering)
-"aGV" = (/obj/structure/extinguisher_cabinet{pixel_x = -27;pixel_y = 0},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering)
-"aGW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/landmark/start{name = "Station Engineer"},/turf/open/floor/plasteel,/area/engine/engineering)
-"aGX" = (/obj/structure/table,/obj/machinery/light_switch{pixel_x = 23},/obj/machinery/light{dir = 4;icon_state = "tube1"},/obj/item/weapon/storage/toolbox/mechanical{pixel_y = 5},/obj/item/device/flashlight{pixel_x = 1;pixel_y = 5},/obj/item/device/flashlight{pixel_x = 1;pixel_y = 5},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/engine/engineering)
-"aGY" = (/obj/machinery/door/poddoor/shutters/preopen{id = "Singularity";name = "radiation shutters"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/engine/engineering)
-"aGZ" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'";icon_state = "radiation";name = "RADIOACTIVE AREA";pixel_x = 0;pixel_y = 0},/turf/closed/wall/r_wall,/area/engine/engineering)
-"aHa" = (/obj/item/weapon/wirecutters,/obj/structure/lattice,/turf/open/space,/area/space)
-"aHb" = (/obj/machinery/camera{c_tag = "Auxillary Mining Base";dir = 1},/obj/structure/mining_shuttle_beacon,/turf/open/floor/plating,/area/shuttle/auxillary_base)
-"aHc" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"aHd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/mining{name = "Mining Office";req_access_txt = "48"},/turf/open/floor/plasteel,/area/quartermaster/miningdock{name = "\improper Mining Office"})
-"aHe" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aHf" = (/obj/machinery/button/door{id = "qm_warehouse";name = "Warehouse Door Control";pixel_x = 0;pixel_y = 24;req_access_txt = "50"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aHg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aHh" = (/obj/machinery/firealarm{pixel_y = 27},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aHi" = (/obj/machinery/light_switch{pixel_y = 28},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aHj" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_mining{glass = 0;name = "Cargo Bay";opacity = 1;req_access_txt = "0";req_one_access_txt = "48;50"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/construction/Storage{name = "Storage Wing"})
-"aHk" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/construction/Storage{name = "Storage Wing"})
-"aHl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light/small{dir = 1},/obj/structure/sign/securearea{pixel_y = 30},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/construction/Storage{name = "Storage Wing"})
-"aHm" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_mining{glass = 0;name = "Cargo Bay";opacity = 1;req_access_txt = "0";req_one_access_txt = "48;50"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/construction/Storage{name = "Storage Wing"})
-"aHn" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/construction/Storage{name = "Storage Wing"})
-"aHo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/brown/corner{dir = 8},/area/construction/Storage{name = "Storage Wing"})
-"aHp" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/turf/open/floor/plasteel/brown/corner{dir = 8},/area/construction/Storage{name = "Storage Wing"})
-"aHq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/brown/corner{dir = 8},/area/construction/Storage{name = "Storage Wing"})
-"aHr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/brown/corner{dir = 8},/area/construction/Storage{name = "Storage Wing"})
-"aHs" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel/brown/corner{dir = 8},/area/construction/Storage{name = "Storage Wing"})
-"aHt" = (/obj/machinery/vending/cigarette,/obj/machinery/newscaster{pixel_x = 0;pixel_y = 32},/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/turf/open/floor/plasteel,/area/construction/Storage{name = "Storage Wing"})
-"aHu" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/black,/area/hallway/primary/fore)
-"aHv" = (/obj/structure/chair/office/dark,/turf/open/floor/plasteel/black,/area/hallway/primary/fore)
-"aHw" = (/obj/structure/table,/obj/machinery/recharger,/turf/open/floor/plasteel/black,/area/hallway/primary/fore)
-"aHx" = (/turf/closed/wall/r_wall,/area/hallway/primary/fore)
-"aHy" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow,/turf/open/floor/plating,/area/hallway/primary/fore)
-"aHz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/red/corner{dir = 8},/area/hallway/primary/fore)
-"aHA" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"aHB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plasteel/red/corner{dir = 2},/area/hallway/primary/fore)
-"aHC" = (/obj/structure/sign/directions/security{desc = "A direction sign, pointing out which way the security department is.";dir = 1;icon_state = "direction_sec";pixel_x = 0;pixel_y = 8},/turf/closed/wall,/area/crew_quarters/courtroom)
-"aHD" = (/turf/closed/wall,/area/crew_quarters/courtroom)
-"aHE" = (/turf/closed/wall/r_wall,/area/crew_quarters/courtroom)
-"aHF" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Court Cell";req_access = null;req_access_txt = "63"},/turf/open/floor/plasteel/black,/area/crew_quarters/courtroom)
-"aHG" = (/turf/closed/wall,/area/lawoffice)
-"aHH" = (/obj/machinery/door/airlock/maintenance{name = "Law Office Maintenance";req_access_txt = "38"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/lawoffice)
-"aHI" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/machinery/light_switch{pixel_x = -26},/turf/open/floor/plasteel/freezer,/area/crew_quarters/locker/locker_toilet{name = "\improper Restrooms"})
-"aHJ" = (/obj/structure/sink{dir = 4;icon_state = "sink";pixel_x = 11;pixel_y = 0},/obj/structure/mirror{pixel_x = 28},/turf/open/floor/plasteel/freezer,/area/crew_quarters/locker/locker_toilet{name = "\improper Restrooms"})
-"aHK" = (/obj/machinery/door/airlock{id_tag = "Toilet4";name = "Unit 4"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/locker/locker_toilet{name = "\improper Restrooms"})
-"aHL" = (/obj/machinery/door/airlock{name = "Unit B"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/locker/locker_toilet{name = "\improper Restrooms"})
-"aHM" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light/small{dir = 8},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=14.9-CrewQuarters-Central";location = "14.8-Dorms-Lockers"},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/crew_quarters/sleep)
-"aHN" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"aHO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/crew_quarters/sleep)
-"aHP" = (/obj/machinery/washing_machine,/obj/structure/sign/poster{pixel_y = 32},/turf/open/floor/plasteel/barber,/area/crew_quarters/sleep)
-"aHQ" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/starboard)
-"aHR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/closet/wardrobe/pjs,/turf/open/floor/plasteel/vault,/area/crew_quarters/sleep)
-"aHS" = (/obj/machinery/button/door{id = "Cabin7";name = "Door Bolt Control";normaldoorcontrol = 1;pixel_x = -25;pixel_y = 0;req_access_txt = "0";specialfunctions = 4},/obj/structure/bed,/obj/item/weapon/bedsheet,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/wood,/area/crew_quarters/sleep)
-"aHT" = (/obj/structure/chair/wood/normal{dir = 4},/turf/open/floor/wood,/area/crew_quarters/sleep)
-"aHU" = (/obj/structure/table/wood,/obj/machinery/newscaster{pixel_x = 29;pixel_y = 1},/obj/item/weapon/paper,/turf/open/floor/wood,/area/crew_quarters/sleep)
-"aHV" = (/obj/structure/closet,/obj/item/weapon/storage/box/donkpockets,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/starboard)
-"aHW" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/starboard)
-"aHX" = (/obj/machinery/firealarm{dir = 8;pixel_x = -24},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering)
-"aHY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/engineering)
-"aHZ" = (/obj/structure/table,/obj/machinery/button/door{id = "Singularity";name = "Shutters Control";pixel_x = 25;pixel_y = 0;req_access_txt = "11"},/obj/item/weapon/storage/toolbox/electrical{pixel_y = 5},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/engine/engineering)
-"aIa" = (/obj/machinery/button/door{id = "Singularity";name = "Shutters Control";pixel_x = -25;pixel_y = 0;req_access_txt = "11"},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plating,/area/engine/engineering)
-"aIb" = (/obj/machinery/power/grounding_rod,/turf/open/floor/plating/airless,/area/space)
-"aIc" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plating/airless,/area/space)
-"aId" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4";tag = ""},/turf/open/floor/plating/airless,/area/space)
-"aIe" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4";tag = ""},/turf/open/floor/plating/airless,/area/space)
-"aIf" = (/obj/machinery/camera{c_tag = "Auxillary Base Construction";dir = 1},/obj/machinery/button/door{id = "aux_base_shutters";name = "Public Shutters Control";pixel_x = 0;pixel_y = -24;req_access_txt = "0";req_one_access_txt = "32;47;48"},/turf/open/floor/plasteel/yellow/side,/area/mining_construction)
-"aIg" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/quartermaster/storage)
-"aIh" = (/obj/item/device/radio/intercom{dir = 4;name = "Station Intercom (General)";pixel_x = -28;pixel_y = 23},/obj/machinery/status_display{density = 0;pixel_x = 0;pixel_y = 32;supply_display = 1},/obj/machinery/conveyor{dir = 1;id = "QMLoad2";movedir = 2},/turf/open/floor/plating,/area/quartermaster/storage)
-"aIi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/loadingarea{dir = 4},/area/quartermaster/storage)
-"aIj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aIk" = (/obj/structure/sign/map/left{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";icon_state = "map-left-MS";pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aIl" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/machinery/camera{c_tag = "Cargo Bay - Fore";dir = 2;network = list("SS13")},/obj/structure/sign/map/right{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";icon_state = "map-right-MS";pixel_y = 32},/obj/effect/turf_decal/stripes/corner{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aIm" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aIn" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aIo" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/effect/turf_decal/stripes/corner{dir = 2},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aIp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aIq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aIr" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/glass_mining{glass = 0;name = "Cargo Bay";opacity = 1;req_access_txt = "0";req_one_access_txt = "48;50"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/construction/Storage{name = "Storage Wing"})
-"aIs" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/construction/Storage{name = "Storage Wing"})
-"aIt" = (/obj/machinery/camera{c_tag = "Cargo Bay - Storage Wing Entrance";dir = 1;network = list("SS13")},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/construction/Storage{name = "Storage Wing"})
-"aIu" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/machinery/power/apc{dir = 2;name = "Storage Wing APC";pixel_x = 0;pixel_y = -27},/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel/brown/corner{dir = 4},/area/construction/Storage{name = "Storage Wing"})
-"aIv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/starboard)
-"aIw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel/brown/corner{dir = 4},/area/construction/Storage{name = "Storage Wing"})
-"aIx" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2;initialize_directions = 11},/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 0;pixel_y = -26},/obj/machinery/camera{c_tag = "Storage Wing";dir = 1;network = list("SS13")},/obj/machinery/light,/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/brown/corner{dir = 4},/area/construction/Storage{name = "Storage Wing"})
-"aIy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/brown/corner{dir = 4},/area/construction/Storage{name = "Storage Wing"})
-"aIz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=2.2-Leaving-Storage";location = "2.1-Storage"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel/brown/corner{dir = 4},/area/construction/Storage{name = "Storage Wing"})
-"aIA" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1;initialize_directions = 11},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/construction/Storage{name = "Storage Wing"})
-"aIB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/construction/Storage{name = "Storage Wing"})
-"aIC" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/airlock/security{name = "Security-Storage Backroom";req_access = null;req_access_txt = "63"},/turf/open/floor/plasteel/black,/area/hallway/primary/fore)
-"aID" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/black,/area/hallway/primary/fore)
-"aIE" = (/obj/structure/table,/obj/item/weapon/folder/red,/obj/item/weapon/restraints/handcuffs,/obj/machinery/newscaster/security_unit{pixel_x = 0;pixel_y = -30},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/black,/area/hallway/primary/fore)
-"aIF" = (/obj/machinery/light/small,/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3;pixel_y = 7},/obj/machinery/airalarm{dir = 1;pixel_y = -22},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/black,/area/hallway/primary/fore)
-"aIG" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/turf/open/floor/plating,/area/hallway/primary/fore)
-"aIH" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/turf/open/floor/plating,/area/hallway/primary/fore)
-"aII" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/red/corner{dir = 8},/area/hallway/primary/fore)
-"aIJ" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"aIK" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/red/corner{dir = 2},/area/hallway/primary/fore)
-"aIL" = (/obj/structure/closet/secure_closet/courtroom,/obj/machinery/light_switch{pixel_y = 28},/obj/item/weapon/gavelblock,/obj/item/weapon/gavelhammer,/turf/open/floor/plasteel,/area/crew_quarters/courtroom)
-"aIM" = (/obj/structure/chair{name = "Bailiff"},/turf/open/floor/plasteel,/area/crew_quarters/courtroom)
-"aIN" = (/obj/item/device/radio/intercom{broadcasting = 0;listening = 1;name = "Station Intercom (General)";pixel_y = 20},/turf/open/floor/plasteel,/area/crew_quarters/courtroom)
-"aIO" = (/obj/structure/chair{name = "Judge"},/turf/open/floor/plasteel/blue/side{dir = 9},/area/crew_quarters/courtroom)
-"aIP" = (/obj/structure/chair{name = "Judge"},/obj/machinery/status_display{density = 0;layer = 4;pixel_x = 0;pixel_y = 32},/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Courtroom";dir = 2;network = list("SS13")},/turf/open/floor/plasteel/blue/side{dir = 1},/area/crew_quarters/courtroom)
-"aIQ" = (/obj/structure/chair{name = "Judge"},/turf/open/floor/plasteel/blue/side{dir = 5},/area/crew_quarters/courtroom)
-"aIR" = (/turf/open/floor/plasteel,/area/crew_quarters/courtroom)
-"aIS" = (/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel/black,/area/crew_quarters/courtroom)
-"aIT" = (/turf/open/floor/plasteel/black,/area/crew_quarters/courtroom)
-"aIU" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green{pixel_x = 1;pixel_y = 5},/obj/machinery/requests_console{department = "Law office";pixel_x = 0;pixel_y = 32},/obj/machinery/newscaster{pixel_x = -31;pixel_y = 0},/turf/open/floor/wood,/area/lawoffice)
-"aIV" = (/obj/structure/table/wood,/obj/item/weapon/book/manual/wiki/security_space_law,/obj/item/weapon/book/manual/wiki/security_space_law,/obj/item/weapon/pen/red,/obj/machinery/computer/security/telescreen{desc = "Used for watching Prison Wing holding areas.";name = "Prison Monitor";network = list("Prison");pixel_x = 0;pixel_y = 30},/turf/open/floor/wood,/area/lawoffice)
-"aIW" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/storage/briefcase{pixel_x = -3;pixel_y = 2},/obj/item/weapon/storage/secure/briefcase{pixel_x = 2;pixel_y = -2},/obj/item/clothing/glasses/sunglasses,/turf/open/floor/wood,/area/lawoffice)
-"aIX" = (/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/obj/machinery/power/apc{dir = 1;name = "Law Office APC";pixel_y = 24},/obj/item/weapon/twohanded/required/kirbyplants{icon_state = "plant-21";layer = 4.1},/turf/open/floor/wood,/area/lawoffice)
-"aIY" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/wood,/area/lawoffice)
-"aIZ" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plating,/area/maintenance/fore)
-"aJa" = (/obj/structure/toilet{pixel_y = 8},/obj/machinery/light/small{dir = 8},/obj/machinery/newscaster{pixel_x = 0;pixel_y = -32},/obj/effect/landmark{name = "blobstart"},/obj/machinery/button/door{id = "Toilet1";name = "Lock Control";normaldoorcontrol = 1;pixel_x = -25;pixel_y = 0;req_access_txt = "0";specialfunctions = 4},/turf/open/floor/plasteel/freezer,/area/crew_quarters/locker/locker_toilet{name = "\improper Restrooms"})
-"aJb" = (/obj/machinery/door/airlock{id_tag = "Toilet1";name = "Unit 1"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/locker/locker_toilet{name = "\improper Restrooms"})
-"aJc" = (/obj/structure/toilet{dir = 4},/obj/machinery/light/small{dir = 4},/obj/machinery/newscaster{pixel_x = 32},/obj/machinery/button/door{id = "Toilet4";name = "Lock Control";normaldoorcontrol = 1;pixel_x = 0;pixel_y = -25;req_access_txt = "0";specialfunctions = 4},/obj/effect/landmark/start{name = "Assistant"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/locker/locker_toilet{name = "\improper Restrooms"})
-"aJd" = (/obj/machinery/light/small,/obj/machinery/recharge_station,/turf/open/floor/plasteel/freezer,/area/crew_quarters/locker/locker_toilet{name = "\improper Restrooms"})
-"aJe" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/crew_quarters/sleep)
-"aJf" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/crew_quarters/sleep)
-"aJg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/crew_quarters/sleep)
-"aJh" = (/turf/closed/wall,/area/hallway/secondary/construction{name = "\improper Garden"})
-"aJi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"aJj" = (/obj/effect/decal/cleanable/cobweb,/obj/machinery/field/generator,/turf/open/floor/plating,/area/engine/engineering)
-"aJk" = (/obj/machinery/field/generator,/turf/open/floor/plating,/area/engine/engineering)
-"aJl" = (/obj/machinery/shieldgen,/obj/machinery/light/small{dir = 1},/obj/machinery/camera{c_tag = "Engineering - Secure Storage";dir = 2;network = list("SS13")},/turf/open/floor/plating,/area/engine/engineering)
-"aJm" = (/obj/machinery/shieldgen,/turf/open/floor/plating,/area/engine/engineering)
-"aJn" = (/obj/structure/table,/obj/item/weapon/airlock_painter,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/engine/engineering)
-"aJo" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/stripes/corner{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering)
-"aJp" = (/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/engine/engineering)
-"aJq" = (/obj/machinery/door/poddoor/shutters/preopen{id = "Singularity";name = "radiation shutters"},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/engine/engineering)
-"aJr" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/engine/engineering)
-"aJs" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plating,/area/engine/engineering)
-"aJt" = (/obj/effect/landmark/start{name = "Station Engineer"},/turf/open/floor/plating,/area/engine/engineering)
-"aJu" = (/turf/open/floor/plating,/area/engine/engineering)
-"aJv" = (/obj/structure/particle_accelerator/particle_emitter/right{dir = 4},/turf/open/floor/plating,/area/engine/engineering)
-"aJw" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/engine/engineering)
-"aJx" = (/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plating/airless,/area/space)
-"aJy" = (/obj/machinery/the_singularitygen,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating/airless,/area/space)
-"aJz" = (/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plating/airless,/area/space)
-"aJA" = (/obj/item/weapon/crowbar,/turf/open/space,/area/space)
-"aJB" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;name = "EXTERNAL AIRLOCK";pixel_x = 0},/turf/open/floor/plating,/area/quartermaster/storage)
-"aJC" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/obj/machinery/conveyor{dir = 1;id = "QMLoad2";movedir = 2},/turf/open/floor/plating,/area/quartermaster/storage)
-"aJD" = (/obj/machinery/conveyor_switch/oneway{convdir = 1;id = "QMLoad2";pixel_x = 6},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aJE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aJF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aJG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aJH" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aJI" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8;initialize_directions = 11},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/stripes/corner{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aJJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/window/reinforced{dir = 1;pixel_y = 1},/turf/open/floor/plasteel/loadingarea{dir = 8},/area/quartermaster/storage)
-"aJK" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=8";dir = 8;freq = 1400;location = "QM #1"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/window/northleft,/obj/machinery/light{dir = 4},/obj/effect/turf_decal/delivery,/mob/living/simple_animal/bot/mulebot{beacon_freq = 1400;home_destination = "QM #1";suffix = "#1"},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aJL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/airlock/maintenance{req_access_txt = "0";req_one_access_txt = "12;63;48;50"},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"aJM" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/airlock/maintenance{req_access_txt = "0";req_one_access_txt = "12;63;48;50"},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"aJN" = (/turf/closed/wall,/area/storage/primary)
-"aJO" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/storage/primary)
-"aJP" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Primary Tool Storage"},/turf/open/floor/plasteel/brown{dir = 2},/area/storage/primary)
-"aJQ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Primary Tool Storage"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/brown{dir = 2},/area/storage/primary)
-"aJR" = (/turf/closed/wall/r_wall,/area/storage/primary)
-"aJS" = (/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai_upload)
-"aJT" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8;initialize_directions = 11},/turf/open/floor/plasteel/red/corner{dir = 8},/area/hallway/primary/fore)
-"aJU" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"aJV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/red/corner{dir = 2},/area/hallway/primary/fore)
-"aJW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Brig";req_access = null;req_access_txt = "63; 42"},/turf/open/floor/plasteel,/area/crew_quarters/courtroom)
-"aJX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/crew_quarters/courtroom)
-"aJY" = (/turf/open/floor/plasteel/neutral/side{dir = 9},/area/crew_quarters/courtroom)
-"aJZ" = (/obj/structure/table/wood,/obj/item/device/radio/intercom{broadcasting = 1;dir = 8;listening = 0;name = "Station Intercom (Court)";pixel_x = 0},/turf/open/floor/plasteel/neutral/side{dir = 1},/area/crew_quarters/courtroom)
-"aKa" = (/obj/structure/table/wood,/obj/item/weapon/gavelblock,/obj/item/weapon/gavelhammer,/turf/open/floor/plasteel/neutral/side{dir = 1},/area/crew_quarters/courtroom)
-"aKb" = (/obj/structure/table/wood,/obj/item/weapon/book/manual/wiki/security_space_law,/turf/open/floor/plasteel/neutral/side{dir = 1},/area/crew_quarters/courtroom)
-"aKc" = (/turf/open/floor/plasteel/neutral/side{dir = 5},/area/crew_quarters/courtroom)
-"aKd" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/chair{dir = 8},/turf/open/floor/plasteel/vault{dir = 8},/area/crew_quarters/courtroom)
-"aKe" = (/obj/machinery/door/window/southleft{name = "Court Cell";req_access_txt = "2"},/turf/open/floor/plasteel/black,/area/crew_quarters/courtroom)
-"aKf" = (/obj/effect/landmark/start{name = "Lawyer"},/obj/structure/chair/office/dark{dir = 4},/obj/item/device/radio/intercom{dir = 8;name = "Station Intercom (General)";pixel_x = -28},/turf/open/floor/wood,/area/lawoffice)
-"aKg" = (/obj/structure/table/wood,/obj/item/weapon/folder/blue,/obj/item/weapon/folder/blue,/obj/item/weapon/folder/blue,/obj/item/weapon/folder/blue,/obj/item/weapon/stamp/law,/turf/open/floor/wood,/area/lawoffice)
-"aKh" = (/obj/structure/chair{dir = 8},/turf/open/floor/wood,/area/lawoffice)
-"aKi" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/wood,/area/lawoffice)
-"aKj" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/firealarm{dir = 4;pixel_x = 24},/turf/open/floor/wood,/area/lawoffice)
-"aKk" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/maintenance{req_access_txt = "0";req_one_access_txt = "1;4;38;12"},/turf/open/floor/plating,/area/maintenance/fore)
-"aKl" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Unisex Restrooms";req_access_txt = "0"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/locker/locker_toilet{name = "\improper Restrooms"})
-"aKm" = (/obj/machinery/door/firedoor,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock{name = "Dormitories";req_access_txt = "0"},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/crew_quarters/sleep)
-"aKn" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted/fulltile,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/crew_quarters/sleep)
-"aKo" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock{name = "Dormitories";req_access_txt = "0"},/turf/open/floor/plasteel/neutral/corner{dir = 4},/area/crew_quarters/sleep)
-"aKp" = (/obj/item/weapon/reagent_containers/spray/plantbgone,/obj/item/weapon/reagent_containers/spray/pestspray{pixel_x = 3;pixel_y = 4},/obj/item/weapon/reagent_containers/glass/bottle/nutrient/ez,/obj/item/weapon/reagent_containers/glass/bottle/nutrient/rh{pixel_x = 2;pixel_y = 1},/obj/structure/table,/obj/structure/extinguisher_cabinet{pixel_x = -27;pixel_y = 0},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"})
-"aKq" = (/obj/machinery/biogenerator,/obj/machinery/firealarm{pixel_y = 27},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"})
-"aKr" = (/obj/structure/table,/obj/item/weapon/cultivator,/obj/item/weapon/hatchet,/obj/item/weapon/crowbar,/obj/machinery/light{dir = 1},/obj/item/device/plant_analyzer,/obj/item/weapon/reagent_containers/glass/bucket,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"})
-"aKs" = (/obj/machinery/seed_extractor,/obj/machinery/airalarm{pixel_y = 23},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"})
-"aKt" = (/obj/item/seeds/apple,/obj/item/seeds/banana,/obj/item/seeds/cocoapod,/obj/item/seeds/grape,/obj/item/seeds/orange,/obj/item/seeds/sugarcane,/obj/item/seeds/wheat,/obj/item/seeds/watermelon,/obj/structure/table,/obj/item/seeds/tower,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"})
-"aKu" = (/obj/structure/window/reinforced{dir = 8},/turf/open/floor/grass,/area/hallway/secondary/construction{name = "\improper Garden"})
-"aKv" = (/mob/living/simple_animal/chicken{name = "Featherbottom";real_name = "Featherbottom"},/turf/open/floor/grass,/area/hallway/secondary/construction{name = "\improper Garden"})
-"aKw" = (/obj/effect/decal/cleanable/cobweb,/obj/structure/closet/crate{icon_state = "crateopen";opened = 1},/obj/item/weapon/wirecutters,/obj/item/weapon/weldingtool,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/starboard)
-"aKx" = (/obj/machinery/portable_atmospherics/canister/toxins,/turf/open/floor/plating,/area/engine/engineering)
-"aKy" = (/obj/effect/landmark{name = "revenantspawn"},/turf/open/floor/plating,/area/engine/engineering)
-"aKz" = (/obj/machinery/door/poddoor{id = "Secure Storage";name = "Secure Storage"},/turf/open/floor/plating,/area/engine/engineering)
-"aKA" = (/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering)
-"aKB" = (/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/engineering)
-"aKC" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/engineering)
-"aKD" = (/obj/machinery/computer/security/telescreen{desc = "Used for monitoring the singularity engine safely.";dir = 8;name = "Singularity Monitor";network = list("Singulo");pixel_x = 32;pixel_y = 0},/obj/machinery/camera{c_tag = "Engineering - Central";dir = 8;network = list("SS13")},/obj/effect/landmark{name = "lightsout"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering)
-"aKE" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/light{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/engine/engineering)
-"aKF" = (/obj/structure/particle_accelerator/end_cap{dir = 4},/turf/open/floor/plating,/area/engine/engineering)
-"aKG" = (/obj/structure/particle_accelerator/fuel_chamber{dir = 4},/turf/open/floor/plating,/area/engine/engineering)
-"aKH" = (/obj/structure/particle_accelerator/power_box{dir = 4},/turf/open/floor/plating,/area/engine/engineering)
-"aKI" = (/obj/structure/particle_accelerator/particle_emitter/center{dir = 4},/turf/open/floor/plating,/area/engine/engineering)
-"aKJ" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8";tag = ""},/turf/open/floor/plating/airless,/area/space)
-"aKK" = (/obj/item/weapon/wrench,/turf/open/floor/plating/airless,/area/space)
-"aKL" = (/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/floor/plating/airless,/area/space)
-"aKM" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating/airless,/area/space)
-"aKN" = (/obj/machinery/door/poddoor{density = 1;icon_state = "closed";id = "QMLoaddoor2";name = "Supply Dock Loading Door";opacity = 1},/obj/machinery/conveyor{dir = 4;id = "QMLoad2";movedir = 8},/turf/open/floor/plating,/area/quartermaster/storage)
-"aKO" = (/obj/structure/plasticflaps,/obj/machinery/conveyor{dir = 4;id = "QMLoad2";movedir = 8},/turf/open/floor/plating,/area/quartermaster/storage)
-"aKP" = (/obj/machinery/conveyor{dir = 1;id = "QMLoad2";movedir = 2},/turf/open/floor/plating,/area/quartermaster/storage)
-"aKQ" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aKR" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aKS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/quartermaster/storage)
-"aKT" = (/obj/structure/closet/crate,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/item/weapon/ore/glass,/obj/item/weapon/ore/iron,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aKU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/effect/spawner/lootdrop/maintenance,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aKV" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/spawner/lootdrop/maintenance,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aKW" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4;initialize_directions = 11},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aKX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/loadingarea{dir = 8},/area/quartermaster/storage)
-"aKY" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=8";dir = 8;freq = 1400;location = "QM #2"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aKZ" = (/obj/machinery/door/window/northleft{dir = 8;name = "MuleBot Supply Access";req_access_txt = "50"},/obj/structure/plasticflaps{opacity = 1},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"aLa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"aLb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/effect/landmark{name = "blobstart"},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"aLc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"aLd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"aLe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"aLf" = (/obj/structure/table,/obj/item/clothing/gloves/color/fyellow,/obj/item/device/gps{gpstag = "AUX0"},/turf/open/floor/plasteel/brown{dir = 9},/area/storage/primary)
-"aLg" = (/turf/open/floor/plasteel/brown{dir = 1},/area/storage/primary)
-"aLh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/brown{dir = 1},/area/storage/primary)
-"aLi" = (/obj/structure/table,/obj/item/stack/cable_coil{pixel_x = 2;pixel_y = -2},/obj/item/stack/cable_coil{pixel_x = 3;pixel_y = 5},/obj/item/weapon/screwdriver{pixel_y = 16},/obj/item/weapon/stock_parts/cell/high{charge = 100;maxcharge = 15000},/turf/open/floor/plasteel/brown{dir = 1},/area/storage/primary)
-"aLj" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/weapon/stock_parts/cell/high{charge = 100;maxcharge = 15000},/obj/machinery/light_switch{pixel_y = 28},/turf/open/floor/plasteel/brown{dir = 1},/area/storage/primary)
-"aLk" = (/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/item/weapon/cigbutt,/turf/open/floor/plating,/area/maintenance/starboard)
-"aLl" = (/obj/machinery/vending/tool,/turf/open/floor/plasteel/brown{dir = 1},/area/storage/primary)
-"aLm" = (/obj/structure/table,/obj/item/device/assembly/signaler,/obj/item/device/assembly/signaler,/obj/item/device/multitool,/obj/item/device/multitool{pixel_x = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/brown{dir = 5},/area/storage/primary)
-"aLn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/storage/primary)
-"aLo" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/space,/area/space)
-"aLp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai_upload)
-"aLq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/porta_turret/ai,/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai_upload)
-"aLr" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/machinery/flasher{pixel_x = 0;pixel_y = 24;id = "AI"},/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai_upload)
-"aLs" = (/obj/structure/sign/kiddieplaque{pixel_y = 32},/obj/structure/table,/obj/machinery/camera/motion{c_tag = "AI Upload Chamber - Fore";network = list("SS13","RD","AIUpload")},/obj/item/weapon/twohanded/required/kirbyplants{icon_state = "plant-07";name = "Photosynthetic Potted plant";pixel_y = 10},/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai_upload)
-"aLt" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/obj/machinery/airalarm{pixel_y = 23},/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai_upload)
-"aLu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/porta_turret/ai,/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai_upload)
-"aLv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai_upload)
-"aLw" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/space,/area/space)
-"aLx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/hallway/primary/fore)
-"aLy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/airalarm{dir = 4;icon_state = "alarm0";pixel_x = -22},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/red/corner{dir = 8},/area/hallway/primary/fore)
-"aLz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/courtroom)
-"aLA" = (/turf/open/floor/plasteel/neutral/side{dir = 8},/area/crew_quarters/courtroom)
-"aLB" = (/obj/effect/landmark/start{name = "Lawyer"},/turf/open/floor/plasteel,/area/crew_quarters/courtroom)
-"aLC" = (/turf/open/floor/plasteel/neutral/side{dir = 4},/area/crew_quarters/courtroom)
-"aLD" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/wood,/area/lawoffice)
-"aLE" = (/obj/structure/table/wood,/obj/item/weapon/folder/red,/obj/item/weapon/folder/red,/obj/item/weapon/folder/red,/obj/item/clothing/glasses/sunglasses/big,/turf/open/floor/wood,/area/lawoffice)
-"aLF" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/wood,/area/lawoffice)
-"aLG" = (/obj/machinery/photocopier,/obj/machinery/camera{c_tag = "Law Office";dir = 8;network = list("SS13")},/turf/open/floor/wood,/area/lawoffice)
-"aLH" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/vault,/area/crew_quarters/locker)
-"aLI" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/stack/sheet/cardboard,/obj/item/stack/rods{amount = 50},/obj/item/weapon/paper,/obj/item/weapon/storage/box/lights/mixed,/obj/structure/sign/poster{pixel_y = -32},/turf/open/floor/plasteel/floorgrime,/area/quartermaster/sorting{name = "\improper Warehouse"})
-"aLJ" = (/obj/structure/rack,/obj/item/weapon/stock_parts/matter_bin,/turf/open/floor/plating{icon_state = "platingdmg2"},/area/maintenance/starboard)
-"aLK" = (/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/crew_quarters/locker)
-"aLL" = (/turf/open/floor/plasteel/neutral/corner{dir = 4},/area/crew_quarters/locker)
-"aLM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/sign/poster{pixel_y = -32},/turf/open/floor/plasteel/freezer,/area/crew_quarters/locker/locker_toilet{name = "\improper Restrooms"})
-"aLN" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/machinery/portable_atmospherics/pump,/obj/machinery/light/small{dir = 1},/obj/machinery/firealarm{pixel_y = 27},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"aLO" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/machinery/portable_atmospherics/scrubber,/obj/machinery/status_display{density = 0;layer = 4;pixel_x = 0;pixel_y = 30},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"aLP" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/machinery/portable_atmospherics/scrubber,/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 0;pixel_y = 26},/obj/machinery/light/small{dir = 1},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"aLQ" = (/obj/machinery/disposal/bin{pixel_x = 0;pixel_y = 0},/obj/structure/disposalpipe/trunk,/obj/machinery/camera{c_tag = "Locker Room Starboard";dir = 2;network = list("SS13")},/obj/structure/sign/pods{pixel_y = 30},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"aLR" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/crew_quarters/locker)
-"aLS" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/floorgrime,/area/crew_quarters/locker)
-"aLT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/neutral/corner{dir = 4},/area/crew_quarters/locker)
-"aLU" = (/obj/structure/sink{icon_state = "sink";dir = 8;pixel_x = -12;pixel_y = 2},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/machinery/light_switch{pixel_x = -26},/turf/open/floor/plasteel/neutral/side{dir = 9},/area/hallway/secondary/construction{name = "\improper Garden"})
-"aLV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/neutral/side{dir = 1},/area/hallway/secondary/construction{name = "\improper Garden"})
-"aLW" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel/neutral/side{dir = 5},/area/hallway/secondary/construction{name = "\improper Garden"})
-"aLX" = (/obj/machinery/door/firedoor/border_only{density = 1;dir = 8;icon_state = "door_closed";name = "Animal Pen A";opacity = 1},/turf/open/floor/grass,/area/hallway/secondary/construction{name = "\improper Garden"})
-"aLY" = (/turf/open/floor/grass,/area/hallway/secondary/construction{name = "\improper Garden"})
-"aLZ" = (/obj/effect/landmark{name = "blobstart"},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/starboard)
-"aMa" = (/obj/machinery/power/emitter,/turf/open/floor/plating,/area/engine/engineering)
-"aMb" = (/obj/effect/landmark{name = "blobstart"},/turf/open/floor/plating,/area/engine/engineering)
-"aMc" = (/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering)
-"aMd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel,/area/engine/engineering)
-"aMe" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/stripes/corner{dir = 2},/turf/open/floor/plasteel,/area/engine/engineering)
-"aMf" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/engine/engineering)
-"aMg" = (/obj/machinery/door/poddoor/shutters/preopen{id = "Singularity";name = "radiation shutters"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/engine/engineering)
-"aMh" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/engine/engineering)
-"aMi" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plating,/area/engine/engineering)
-"aMj" = (/obj/machinery/particle_accelerator/control_box,/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/open/floor/plating,/area/engine/engineering)
-"aMk" = (/obj/structure/chair/stool{pixel_y = 8},/turf/open/floor/plating,/area/engine/engineering)
-"aMl" = (/obj/structure/particle_accelerator/particle_emitter/left{dir = 4},/turf/open/floor/plating,/area/engine/engineering)
-"aMm" = (/obj/item/weapon/weldingtool,/turf/open/space,/area/space)
-"aMn" = (/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plating/airless,/area/space)
-"aMo" = (/obj/machinery/the_singularitygen/tesla,/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plating/airless,/area/space)
-"aMp" = (/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plating/airless,/area/space)
-"aMq" = (/obj/structure/window/reinforced,/turf/open/space,/area/space)
-"aMr" = (/obj/structure/window/reinforced,/obj/structure/lattice,/turf/open/space,/area/space)
-"aMs" = (/obj/machinery/door/airlock/external{name = "Supply Dock Airlock";req_access_txt = "31"},/turf/open/floor/plating,/area/quartermaster/storage)
-"aMt" = (/obj/machinery/light/small,/turf/open/floor/plating,/area/quartermaster/storage)
-"aMu" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/quartermaster/storage)
-"aMv" = (/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aMw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aMx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/landmark/start{name = "Cargo Technician"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aMy" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel/loadingarea{dir = 8},/area/quartermaster/storage)
-"aMz" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=8";dir = 8;freq = 1400;location = "QM #3"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/effect/turf_decal/delivery,/mob/living/simple_animal/bot/mulebot{home_destination = "QM #3";suffix = "#3"},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aMA" = (/obj/machinery/camera/autoname{dir = 4;network = list("SS13")},/obj/structure/rack,/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1;pixel_y = -1},/turf/open/floor/plasteel/brown{dir = 8},/area/storage/primary)
-"aMB" = (/turf/open/floor/plasteel,/area/storage/primary)
-"aMC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel,/area/storage/primary)
-"aMD" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1;initialize_directions = 11},/turf/open/floor/plasteel,/area/storage/primary)
-"aME" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/storage/primary)
-"aMF" = (/obj/machinery/firealarm{dir = 4;pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel/brown{dir = 4},/area/storage/primary)
-"aMG" = (/obj/structure/table,/obj/item/weapon/aiModule/core/full/asimov,/obj/item/weapon/aiModule/core/freeformcore,/obj/machinery/door/window{base_state = "right";dir = 4;icon_state = "right";name = "Core Modules";req_access_txt = "20"},/obj/structure/window/reinforced,/obj/item/weapon/aiModule/core/full/corp,/obj/item/weapon/aiModule/core/full/custom,/obj/machinery/flasher{pixel_x = 0;pixel_y = 24;id = "AI"},/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai_upload)
-"aMH" = (/turf/open/floor/bluegrid,/area/ai_monitored/turret_protected/ai_upload)
-"aMI" = (/obj/structure/table,/obj/machinery/door/window{base_state = "left";dir = 8;icon_state = "left";name = "High-Risk Modules";req_access_txt = "20"},/obj/structure/window/reinforced,/obj/machinery/flasher{pixel_x = 0;pixel_y = 24;id = "AI"},/obj/item/weapon/aiModule/core/full/antimov,/obj/item/weapon/aiModule/supplied/oxygen,/obj/item/weapon/aiModule/supplied/protectStation,/obj/item/weapon/aiModule/zeroth/oneHuman,/obj/item/weapon/aiModule/reset/purge,/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai_upload)
-"aMJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = -29},/turf/open/floor/plasteel/red/corner{dir = 8},/area/hallway/primary/fore)
-"aMK" = (/obj/machinery/firealarm{dir = 8;pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/crew_quarters/courtroom)
-"aML" = (/obj/structure/chair{dir = 4;name = "Prosecution"},/turf/open/floor/plasteel/red/side{dir = 9},/area/crew_quarters/courtroom)
-"aMM" = (/obj/structure/table/wood,/obj/item/weapon/folder/red,/turf/open/floor/plasteel/neutral/side{dir = 8},/area/crew_quarters/courtroom)
-"aMN" = (/obj/machinery/holopad,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/crew_quarters/courtroom)
-"aMO" = (/obj/structure/table/wood,/obj/item/weapon/folder/blue,/turf/open/floor/plasteel/neutral/side{dir = 4},/area/crew_quarters/courtroom)
-"aMP" = (/obj/structure/chair{dir = 8;name = "Defense"},/turf/open/floor/plasteel/green/side{dir = 5},/area/crew_quarters/courtroom)
-"aMQ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Law Office";req_access_txt = "38"},/turf/open/floor/wood,/area/crew_quarters/courtroom)
-"aMR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/wood,/area/lawoffice)
-"aMS" = (/obj/effect/landmark/start{name = "Lawyer"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/wood,/area/lawoffice)
-"aMT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/wood,/area/lawoffice)
-"aMU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9;pixel_y = 0},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/wood,/area/lawoffice)
-"aMV" = (/obj/structure/filingcabinet/employment,/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/turf/open/floor/wood,/area/lawoffice)
-"aMW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/crew_quarters/locker)
-"aMX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/crew_quarters/locker)
-"aMY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/crew_quarters/locker)
-"aMZ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/neutral/corner{dir = 4},/area/crew_quarters/locker)
-"aNa" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/neutral/corner{dir = 4},/area/crew_quarters/locker)
-"aNb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/crew_quarters/locker)
-"aNc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/junction{dir = 4;icon_state = "pipe-j2"},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/crew_quarters/locker)
-"aNd" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9;pixel_y = 0},/obj/structure/disposalpipe/junction{icon_state = "pipe-j1";dir = 4},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/crew_quarters/locker)
-"aNe" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"aNf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=14.5-Recreation";location = "14.3-Lockers-Dorms"},/turf/open/floor/plasteel/neutral/corner{dir = 4},/area/crew_quarters/locker)
-"aNg" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted/fulltile,/turf/open/floor/plating,/area/hallway/secondary/construction{name = "\improper Garden"})
-"aNh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/neutral/side{dir = 8},/area/hallway/secondary/construction{name = "\improper Garden"})
-"aNi" = (/obj/machinery/hydroponics/constructable,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"})
-"aNj" = (/turf/open/floor/plasteel/neutral/side{dir = 4},/area/hallway/secondary/construction{name = "\improper Garden"})
-"aNk" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/mob/living/simple_animal/chicken{name = "Kentucky";real_name = "Kentucky"},/turf/open/floor/grass,/area/hallway/secondary/construction{name = "\improper Garden"})
-"aNl" = (/obj/structure/window/reinforced,/turf/open/floor/grass,/area/hallway/secondary/construction{name = "\improper Garden"})
-"aNm" = (/obj/structure/rack,/obj/item/clothing/suit/hazardvest,/turf/open/floor/plating,/area/maintenance/starboard)
-"aNn" = (/obj/machinery/power/emitter,/obj/machinery/light/small,/turf/open/floor/plating,/area/engine/engineering)
-"aNo" = (/obj/structure/closet/crate,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/rods{amount = 50},/obj/item/stack/sheet/glass{amount = 50},/obj/item/weapon/electronics/airlock,/obj/item/weapon/electronics/airlock,/obj/item/weapon/stock_parts/cell/high{charge = 100;maxcharge = 15000},/obj/item/stack/sheet/mineral/plasma{amount = 30},/obj/item/device/gps,/turf/open/floor/plating,/area/engine/engineering)
-"aNp" = (/obj/machinery/the_singularitygen{anchored = 0},/turf/open/floor/plating,/area/engine/engineering)
-"aNq" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/weapon/stock_parts/cell/high{charge = 100;maxcharge = 15000},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/engine/engineering)
-"aNr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/engineering)
-"aNs" = (/obj/structure/table,/obj/item/weapon/book/manual/wiki/engineering_guide{pixel_x = 3;pixel_y = 4},/obj/item/weapon/book/manual/engineering_particle_accelerator{pixel_x = -2;pixel_y = 3},/obj/machinery/button/door{id = "Singularity";name = "Shutters Control";pixel_x = 25;pixel_y = 0;req_access_txt = "11"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/engine/engineering)
-"aNt" = (/obj/machinery/button/door{id = "Singularity";name = "Shutters Control";pixel_x = -25;pixel_y = 0;req_access_txt = "11"},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plating,/area/engine/engineering)
-"aNu" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating{icon_plating = "warnplate"},/area/engine/engineering)
-"aNv" = (/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plating,/area/engine/engineering)
-"aNw" = (/obj/structure/window/reinforced{dir = 4},/turf/open/space,/area/space)
-"aNx" = (/obj/structure/window/reinforced{dir = 1;layer = 2.9},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel/black,/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"aNy" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1;layer = 2.9},/turf/open/floor/plasteel/black,/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"aNz" = (/obj/structure/window/reinforced{dir = 1;pixel_y = 1},/obj/structure/window/reinforced,/turf/open/floor/plasteel/black,/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"aNA" = (/obj/structure/closet{name = "Evidence Closet 3"},/obj/item/weapon/storage/backpack{name = "Evidence Bag 3"},/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/turf/open/floor/plasteel/vault{dir = 4},/area/security/warden)
-"aNB" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1;pixel_y = 1},/turf/open/floor/plasteel/black,/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"aNC" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/lattice,/turf/open/space,/area/space)
-"aND" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/open/floor/plating,/area/shuttle/pod_1)
-"aNE" = (/obj/machinery/button/door{id = "QMLoaddoor";layer = 4;name = "Loading Doors";pixel_x = -27;pixel_y = -5},/obj/machinery/button/door{dir = 2;id = "QMLoaddoor2";layer = 4;name = "Loading Doors";pixel_x = -27;pixel_y = 5},/obj/machinery/computer/cargo,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aNF" = (/obj/effect/landmark/start{name = "Cargo Technician"},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aNG" = (/obj/effect/spawner/lootdrop/maintenance,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/quartermaster/storage)
-"aNH" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aNI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/spawner/lootdrop/maintenance,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aNJ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aNK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/stripes/corner{dir = 2},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aNL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/window/reinforced,/turf/open/floor/plasteel/loadingarea{dir = 8},/area/quartermaster/storage)
-"aNM" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=8";dir = 8;freq = 1400;location = "QM #4"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/window/southleft,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aNN" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/quartermaster/qm)
-"aNO" = (/obj/structure/closet/secure_closet/quartermaster,/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/brown{dir = 9},/area/quartermaster/qm)
-"aNP" = (/obj/machinery/camera/autoname{dir = 2;network = list("SS13")},/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/machinery/power/apc{dir = 1;name = "Quartermaster's Office APC";pixel_x = 0;pixel_y = 30},/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/turf/open/floor/plasteel/brown{dir = 1},/area/quartermaster/qm)
-"aNQ" = (/obj/structure/filingcabinet/chestdrawer,/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/brown{dir = 1},/area/quartermaster/qm)
-"aNR" = (/obj/structure/table,/obj/machinery/computer/stockexchange,/turf/open/floor/plasteel/brown{dir = 1},/area/quartermaster/qm)
-"aNS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/starboard)
-"aNT" = (/obj/structure/window/reinforced{dir = 1;pixel_y = 1},/obj/structure/closet/crate/internals,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/storage/primary)
-"aNU" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel,/area/storage/primary)
-"aNV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/storage/primary)
-"aNW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/storage/primary)
-"aNX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel,/area/storage/primary)
-"aNY" = (/obj/structure/table,/obj/item/device/assembly/igniter{pixel_x = -4;pixel_y = -4},/obj/item/device/assembly/igniter,/obj/item/weapon/screwdriver{pixel_y = 16},/turf/open/floor/plasteel/brown{dir = 4},/area/storage/primary)
-"aNZ" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai_upload)
-"aOa" = (/obj/machinery/porta_turret/ai{dir = 4},/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai_upload)
-"aOb" = (/obj/machinery/computer/upload/borg,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/window/westleft{base_state = "left";dir = 2;icon_state = "left";layer = 3.1;name = "Cyborg Upload Console Window";req_access_txt = "16"},/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai_upload)
-"aOc" = (/obj/machinery/holopad,/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai_upload)
-"aOd" = (/obj/machinery/computer/upload/ai,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/window/westleft{base_state = "right";dir = 2;icon_state = "right";layer = 3.1;name = "Upload Console Window";req_access_txt = "16"},/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai_upload)
-"aOe" = (/obj/machinery/porta_turret/ai{dir = 8},/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai_upload)
-"aOf" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/crew_quarters/courtroom)
-"aOg" = (/obj/structure/chair{dir = 4;name = "Prosecution"},/turf/open/floor/plasteel/red/side{dir = 10},/area/crew_quarters/courtroom)
-"aOh" = (/obj/structure/table/wood,/obj/item/weapon/paper,/turf/open/floor/plasteel/neutral/side{dir = 10},/area/crew_quarters/courtroom)
-"aOi" = (/turf/open/floor/plasteel/neutral/side,/area/crew_quarters/courtroom)
-"aOj" = (/obj/item/device/radio/beacon,/turf/open/floor/plasteel/neutral/side,/area/crew_quarters/courtroom)
-"aOk" = (/obj/structure/table/wood,/turf/open/floor/plasteel/neutral/side{dir = 6},/area/crew_quarters/courtroom)
-"aOl" = (/obj/structure/chair{dir = 8;name = "Defense"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel/green/side{dir = 6},/area/crew_quarters/courtroom)
-"aOm" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/obj/structure/extinguisher_cabinet{pixel_x = 27;pixel_y = 0},/turf/open/floor/plasteel,/area/crew_quarters/courtroom)
-"aOn" = (/obj/item/device/taperecorder{pixel_y = 0},/obj/item/weapon/cartridge/lawyer,/obj/structure/table/wood,/obj/machinery/button/door{id = "lawyer_shutters";name = "law office shutters control";pixel_x = 0;pixel_y = -26;req_access_txt = "38"},/turf/open/floor/wood,/area/lawoffice)
-"aOo" = (/obj/item/weapon/paper_bin{pixel_x = -3;pixel_y = 7},/obj/item/weapon/pen,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/table/wood,/turf/open/floor/wood,/area/lawoffice)
-"aOp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/wood,/area/lawoffice)
-"aOq" = (/obj/machinery/holopad,/turf/open/floor/wood,/area/lawoffice)
-"aOr" = (/obj/structure/closet/lawcloset,/obj/machinery/light_switch{pixel_x = 0;pixel_y = -28},/turf/open/floor/wood,/area/lawoffice)
-"aOs" = (/obj/machinery/firealarm{dir = 8;pixel_x = -24},/obj/structure/table,/obj/item/weapon/folder,/obj/item/weapon/storage/firstaid/regular,/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/crew_quarters/locker)
-"aOt" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"aOu" = (/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"aOv" = (/turf/open/floor/plasteel/floorgrime,/area/crew_quarters/locker)
-"aOw" = (/obj/structure/chair/stool{pixel_y = 8},/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"aOx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"aOy" = (/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"aOz" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/effect/landmark{name = "lightsout"},/turf/open/floor/plasteel/floorgrime,/area/crew_quarters/locker)
-"aOA" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"aOB" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2;initialize_directions = 11},/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"aOC" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"aOD" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"aOE" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8;initialize_directions = 11},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"aOF" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2;initialize_directions = 11},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/neutral/corner{dir = 4},/area/crew_quarters/locker)
-"aOG" = (/obj/machinery/door/firedoor,/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock{name = "Garden";req_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"})
-"aOH" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel/neutral/side{dir = 8},/area/hallway/secondary/construction{name = "\improper Garden"})
-"aOI" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/floorgrime,/area/hallway/secondary/construction{name = "\improper Garden"})
-"aOJ" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/holopad,/turf/open/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"})
-"aOK" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"})
-"aOL" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/neutral/side{dir = 4},/area/hallway/secondary/construction{name = "\improper Garden"})
-"aOM" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"})
-"aON" = (/obj/machinery/power/apc{dir = 4;name = "Garden APC";pixel_x = 27;pixel_y = 2},/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/obj/machinery/disposal/bin,/obj/machinery/camera{c_tag = "Garden";dir = 8;network = list("SS13")},/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel/neutral/side{dir = 4},/area/hallway/secondary/construction{name = "\improper Garden"})
-"aOO" = (/obj/machinery/power/apc{cell_type = 10000;dir = 8;name = "Engine Room APC";pixel_x = -26;pixel_y = 0},/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering)
-"aOP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/engineering)
-"aOQ" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering)
-"aOR" = (/obj/structure/table,/obj/item/weapon/book/manual/wiki/engineering_hacking{pixel_x = 4;pixel_y = 5},/obj/item/weapon/book/manual/wiki/engineering_construction{pixel_x = 0;pixel_y = 3},/obj/structure/extinguisher_cabinet{pixel_x = 27;pixel_y = 0},/obj/machinery/light{dir = 4;icon_state = "tube1"},/obj/item/weapon/book/manual/engineering_singularity_safety{pixel_x = -4},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/engine/engineering)
-"aOS" = (/obj/structure/cable,/obj/machinery/power/tesla_coil,/turf/open/floor/plating/airless,/area/space)
-"aOT" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel/black,/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"aOU" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1;pixel_y = 1},/turf/open/space,/area/space)
-"aOV" = (/obj/structure/window/reinforced{dir = 1;pixel_y = 1},/turf/open/space,/area/space)
-"aOW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/lattice/catwalk,/turf/open/space,/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"aOX" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1;pixel_y = 1},/turf/open/space,/area/space)
-"aOY" = (/obj/structure/window/reinforced{dir = 8},/turf/open/space,/area/space)
-"aOZ" = (/turf/closed/wall/mineral/titanium,/area/shuttle/pod_1)
-"aPa" = (/obj/structure/chair{dir = 1},/obj/item/device/radio/intercom{pixel_x = 25},/obj/item/weapon/storage/pod{pixel_x = -26},/turf/open/floor/mineral/titanium/blue,/area/shuttle/pod_2)
-"aPb" = (/obj/structure/closet/secure_closet/miner{locked = 0},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plating,/area/shuttle/auxillary_base)
-"aPc" = (/obj/structure/grille,/obj/machinery/door/poddoor/shutters{id = "syndieshutters";name = "blast shutters"},/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/shuttle/syndicate)
-"aPd" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/quartermaster/storage)
-"aPe" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aPf" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aPg" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_mining{name = "Quartermaster";req_access_txt = "41"},/turf/open/floor/plasteel,/area/quartermaster/qm)
-"aPh" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel/brown{dir = 8},/area/quartermaster/qm)
-"aPi" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel,/area/quartermaster/qm)
-"aPj" = (/obj/effect/landmark/start{name = "Quartermaster"},/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/structure/chair/office/dark{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/qm)
-"aPk" = (/obj/structure/table,/obj/item/weapon/folder/yellow,/obj/item/weapon/pen{pixel_x = 4;pixel_y = 4},/obj/item/weapon/pen/red,/obj/machinery/requests_console{department = "Cargo Bay";departmentType = 2;pixel_x = 32;pixel_y = 0},/turf/open/floor/plasteel,/area/quartermaster/qm)
-"aPl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"aPm" = (/obj/structure/plasticflaps{opacity = 1},/obj/machinery/navbeacon{codes_txt = "delivery;dir=4";dir = 4;freq = 1400;location = "Tool Storage"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/storage/primary)
-"aPn" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/storage/primary)
-"aPo" = (/obj/structure/table,/obj/item/weapon/weldingtool,/obj/item/weapon/crowbar,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/brown/corner{dir = 2},/area/storage/primary)
-"aPp" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2;pixel_y = -1},/turf/open/floor/plasteel/brown/corner{dir = 8},/area/storage/primary)
-"aPq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/storage/primary)
-"aPr" = (/obj/structure/table,/obj/item/weapon/wirecutters,/obj/item/device/flashlight{pixel_x = 1;pixel_y = 5},/obj/machinery/requests_console{department = "Tool Storage";departmentType = 0;pixel_x = 30;pixel_y = 0},/obj/machinery/light{icon_state = "tube1";dir = 4},/obj/machinery/camera{c_tag = "Tool Storage";dir = 8;network = list("SS13")},/turf/open/floor/plasteel/brown{dir = 4},/area/storage/primary)
-"aPs" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/obj/structure/cable/yellow,/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai_upload)
-"aPt" = (/obj/structure/table,/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/item/weapon/aiModule/supplied/quarantine,/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai_upload)
-"aPu" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/bluegrid,/area/ai_monitored/turret_protected/ai_upload)
-"aPv" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai_upload)
-"aPw" = (/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/ai_slipper{uses = 8},/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai_upload)
-"aPx" = (/obj/structure/table,/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/item/weapon/aiModule/supplied/freeform,/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai_upload)
-"aPy" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/obj/structure/cable/yellow,/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai_upload)
-"aPz" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=0-SecurityDesk";location = "16-Fore"},/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"aPA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/firealarm{dir = 4;pixel_x = 24},/obj/machinery/camera{c_tag = "Fore Primary Hallway Aft";dir = 8;network = list("SS13")},/turf/open/floor/plasteel/red/corner{dir = 2},/area/hallway/primary/fore)
-"aPB" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/crew_quarters/courtroom)
-"aPC" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Courtroom";req_access_txt = "42"},/turf/open/floor/plasteel/black,/area/crew_quarters/courtroom)
-"aPD" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plating,/area/crew_quarters/courtroom)
-"aPE" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/poddoor/shutters/preopen{id = "lawyer_shutters";name = "law office shutters"},/turf/open/floor/plating,/area/lawoffice)
-"aPF" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Law Office";req_access_txt = "38"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/lawoffice)
-"aPG" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/shutters/preopen{id = "lawyer_shutters";name = "law office shutters"},/turf/open/floor/plating,/area/lawoffice)
-"aPH" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3;pixel_y = 7},/obj/item/weapon/pen,/obj/machinery/light/small{dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = -27;pixel_y = 0},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/crew_quarters/locker)
-"aPI" = (/obj/structure/table,/obj/item/weapon/storage/pill_bottle/dice,/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"aPJ" = (/obj/structure/chair/stool{pixel_y = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"aPK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel/floorgrime,/area/crew_quarters/locker)
-"aPL" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4;initialize_directions = 11},/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"aPM" = (/obj/structure/rack,/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2;pixel_y = -1},/obj/item/weapon/storage/toolbox/mechanical{pixel_x = 4;pixel_y = -4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/crew_quarters/locker)
-"aPN" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/hallway/secondary/construction{name = "\improper Garden"})
-"aPO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel/neutral/side{dir = 8},/area/hallway/secondary/construction{name = "\improper Garden"})
-"aPP" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/hydroponics/constructable,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"})
-"aPQ" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/grass,/area/hallway/secondary/construction{name = "\improper Garden"})
-"aPR" = (/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 29},/obj/structure/window/reinforced{dir = 1},/turf/open/floor/grass,/area/hallway/secondary/construction{name = "\improper Garden"})
-"aPS" = (/obj/structure/rack,/obj/item/clothing/gloves/color/fyellow,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/starboard)
-"aPT" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/starboard)
-"aPU" = (/obj/machinery/computer/atmos_alert,/obj/structure/sign/map/left{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";icon_state = "map-left-MS";pixel_y = 32},/obj/machinery/firealarm{dir = 8;pixel_x = -26;pixel_y = 0},/turf/open/floor/plasteel/vault,/area/engine/engineering)
-"aPV" = (/obj/machinery/computer/station_alert,/obj/structure/sign/map/right{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";icon_state = "map-right-MS";pixel_y = 32},/turf/open/floor/plasteel/vault,/area/engine/engineering)
-"aPW" = (/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/obj/machinery/computer/monitor{name = "Engineering Power Monitoring Console"},/obj/machinery/status_display{density = 0;layer = 4;pixel_x = 0;pixel_y = 32},/obj/machinery/camera{c_tag = "Engineering - Power Monitoring";dir = 2;network = list("SS13")},/turf/open/floor/plasteel/vault,/area/engine/engineering)
-"aPX" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/engine/engineering)
-"aPY" = (/obj/machinery/vending/engivend,/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/engine/engineering)
-"aPZ" = (/obj/machinery/vending/tool,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/engine/engineering)
-"aQa" = (/obj/structure/closet/secure_closet/engineering_welding,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/engine/engineering)
-"aQb" = (/obj/structure/closet/radiation,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/engine/engineering)
-"aQc" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/clothing/gloves/color/black,/obj/item/weapon/extinguisher{pixel_x = 8},/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 0;pixel_y = 21},/obj/item/clothing/glasses/meson,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/engine/engineering)
-"aQd" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/engine/engineering)
-"aQe" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/crowbar,/obj/item/stack/cable_coil,/obj/item/weapon/screwdriver,/obj/item/weapon/weldingtool,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/engine/engineering)
-"aQf" = (/obj/structure/chair{dir = 4},/obj/machinery/status_display{density = 0;layer = 3;pixel_x = 0;pixel_y = 32},/obj/machinery/computer/shuttle/pod{pixel_y = -32;possible_destinations = "pod_asteroid3";shuttleId = "pod3"},/turf/open/floor/mineral/titanium/blue,/area/shuttle/pod_3)
-"aQg" = (/obj/machinery/door/poddoor{density = 1;icon_state = "closed";id = "QMLoaddoor";name = "Supply Dock Loading Door";opacity = 1},/obj/machinery/conveyor{dir = 8;id = "QMLoad"},/turf/open/floor/plating,/area/quartermaster/storage)
-"aQh" = (/obj/structure/plasticflaps,/obj/machinery/conveyor{dir = 8;id = "QMLoad"},/turf/open/floor/plating,/area/quartermaster/storage)
-"aQi" = (/obj/machinery/conveyor{dir = 8;id = "QMLoad"},/turf/open/floor/plating,/area/quartermaster/storage)
-"aQj" = (/obj/effect/landmark/start{name = "Cargo Technician"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/quartermaster/storage)
-"aQk" = (/obj/structure/closet/crate{icon_state = "crateopen";opened = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aQl" = (/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aQm" = (/obj/structure/disposalpipe/segment,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aQn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aQo" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/table,/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/obj/machinery/camera{c_tag = "Cargo Bay - Starboard";dir = 8;network = list("SS13")},/obj/item/weapon/paper_bin{pixel_x = -1;pixel_y = 6},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aQp" = (/turf/closed/wall,/area/quartermaster/qm)
-"aQq" = (/obj/machinery/computer/security/mining{network = list("MINE","AuxBase")},/obj/machinery/light_switch{pixel_x = -23;pixel_y = 0},/turf/open/floor/plasteel/brown{dir = 8},/area/quartermaster/qm)
-"aQr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/qm)
-"aQs" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/quartermaster/qm)
-"aQt" = (/obj/structure/table,/obj/item/weapon/clipboard,/obj/item/weapon/stamp/qm{pixel_x = 0;pixel_y = 0},/obj/machinery/status_display{density = 0;pixel_x = 32;pixel_y = 0;supply_display = 1},/obj/item/weapon/cartridge/quartermaster{pixel_x = 6;pixel_y = 5},/obj/item/weapon/cartridge/quartermaster,/obj/item/weapon/cartridge/quartermaster{pixel_x = -4;pixel_y = 7},/obj/item/device/gps{gpstag = "QM0"},/turf/open/floor/plasteel,/area/quartermaster/qm)
-"aQu" = (/obj/structure/closet/crate{icon_state = "crateopen";opened = 1},/obj/machinery/light{icon_state = "tube1";dir = 8},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/storage/primary)
-"aQv" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2;pixel_y = -1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/brown/corner{dir = 4},/area/storage/primary)
-"aQw" = (/obj/structure/table,/obj/item/weapon/folder/yellow,/obj/item/weapon/folder/yellow,/obj/item/weapon/storage/firstaid/regular,/turf/open/floor/plasteel/brown/corner{dir = 1},/area/storage/primary)
-"aQx" = (/obj/machinery/holopad,/turf/open/floor/plasteel,/area/storage/primary)
-"aQy" = (/obj/structure/table,/obj/item/device/radio/intercom{dir = 4;name = "Station Intercom (General)";pixel_x = 27},/obj/item/clothing/gloves/color/yellow,/obj/item/device/t_scanner,/turf/open/floor/plasteel/brown{dir = 4},/area/storage/primary)
-"aQz" = (/obj/structure/table,/obj/item/weapon/aiModule/reset,/obj/machinery/light{icon_state = "tube1";dir = 8},/obj/machinery/ai_status_display{pixel_x = -32;pixel_y = 0},/obj/machinery/flasher{id = "AI";pixel_x = 0;pixel_y = -24},/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai_upload)
-"aQA" = (/obj/machinery/power/apc{cell_type = 5000;dir = 2;name = "Upload APC";pixel_y = -24},/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/obj/machinery/camera/motion{c_tag = "AI Upload Chamber - Port";dir = 1;network = list("SS13","RD","AIUpload")},/turf/open/floor/bluegrid,/area/ai_monitored/turret_protected/ai_upload)
-"aQB" = (/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai_upload)
-"aQC" = (/obj/item/device/radio/intercom{broadcasting = 1;frequency = 1447;name = "Private AI Channel";pixel_y = -25},/obj/machinery/camera/motion{c_tag = "AI Upload Chamber - Starboard";dir = 1;network = list("SS13","RD","AIUpload")},/turf/open/floor/bluegrid,/area/ai_monitored/turret_protected/ai_upload)
-"aQD" = (/obj/structure/table,/obj/machinery/light{dir = 4},/obj/machinery/status_display{density = 0;layer = 4;pixel_x = 32;pixel_y = 0},/obj/machinery/flasher{id = "AI";pixel_x = 0;pixel_y = -24},/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai_upload)
-"aQE" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = -27;pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8;initialize_directions = 11},/turf/open/floor/plasteel/red/corner{dir = 8},/area/hallway/primary/fore)
-"aQF" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/window/reinforced/tinted/fulltile,/turf/open/floor/plating,/area/crew_quarters/courtroom)
-"aQG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/machinery/vending/cigarette,/turf/open/floor/plasteel/black,/area/crew_quarters/courtroom)
-"aQH" = (/obj/structure/chair{dir = 1},/turf/open/floor/plasteel/black,/area/crew_quarters/courtroom)
-"aQI" = (/obj/structure/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plasteel/black,/area/crew_quarters/courtroom)
-"aQJ" = (/obj/machinery/vending/coffee,/turf/open/floor/plasteel/black,/area/crew_quarters/courtroom)
-"aQK" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = -27;pixel_y = 0},/obj/item/weapon/twohanded/required/kirbyplants{icon_state = "plant-03";layer = 4.1},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/crew_quarters/locker)
-"aQL" = (/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/crew_quarters/locker)
-"aQM" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/crew_quarters/locker)
-"aQN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/crew_quarters/locker)
-"aQO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/camera{c_tag = "Crew Quarters Entrance";dir = 2;network = list("SS13")},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/crew_quarters/locker)
-"aQP" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/airlock{name = "Locker Room";req_access_txt = "0"},/turf/open/floor/plasteel/floorgrime,/area/crew_quarters/locker)
-"aQQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"aQR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"aQS" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/chair/stool{pixel_y = 8},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"aQT" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/turf/open/floor/plasteel/floorgrime,/area/crew_quarters/locker)
-"aQU" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"aQV" = (/obj/structure/chair/stool{pixel_y = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"aQW" = (/obj/structure/table,/obj/item/clothing/head/soft/grey{pixel_x = -2;pixel_y = 3},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"aQX" = (/obj/structure/table,/obj/item/weapon/razor{pixel_y = 5},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"aQY" = (/obj/structure/table,/obj/item/device/paicard,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"aQZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"aRa" = (/obj/structure/rack,/obj/effect/landmark/costume,/obj/effect/landmark/costume,/obj/item/clothing/mask/balaclava,/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/crew_quarters/locker)
-"aRb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/sink{icon_state = "sink";dir = 8;pixel_x = -12;pixel_y = 2},/turf/open/floor/plasteel/neutral/side{dir = 10},/area/hallway/secondary/construction{name = "\improper Garden"})
-"aRc" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel/neutral/side,/area/hallway/secondary/construction{name = "\improper Garden"})
-"aRd" = (/turf/open/floor/plasteel/neutral/side,/area/hallway/secondary/construction{name = "\improper Garden"})
-"aRe" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/neutral/side,/area/hallway/secondary/construction{name = "\improper Garden"})
-"aRf" = (/turf/open/floor/plasteel/neutral/side{dir = 6},/area/hallway/secondary/construction{name = "\improper Garden"})
-"aRg" = (/obj/machinery/door/firedoor/border_only{density = 1;dir = 8;icon_state = "door_closed";name = "Animal Pen B";opacity = 1},/turf/open/floor/grass,/area/hallway/secondary/construction{name = "\improper Garden"})
-"aRh" = (/mob/living/simple_animal/cow{name = "Betsy";real_name = "Betsy"},/turf/open/floor/grass,/area/hallway/secondary/construction{name = "\improper Garden"})
-"aRi" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/weapon/cigbutt,/turf/open/floor/plating,/area/maintenance/starboard)
-"aRj" = (/obj/effect/landmark/start{name = "Station Engineer"},/obj/machinery/light{dir = 8},/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'";icon_state = "shock";name = "HIGH VOLTAGE";pixel_x = -31},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/engine/engineering)
-"aRk" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering)
-"aRl" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/engine/engineering)
-"aRm" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/turf/open/floor/plating,/area/engine/engineering)
-"aRn" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/engine/engineering)
-"aRo" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering)
-"aRp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering)
-"aRq" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/landmark/start{name = "Station Engineer"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel,/area/engine/engineering)
-"aRr" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/obj/structure/disposalpipe/sortjunction{sortType = 5},/obj/effect/turf_decal/stripes/corner{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering)
-"aRs" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering)
-"aRt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering)
-"aRu" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering)
-"aRv" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/engine/engineering)
-"aRw" = (/obj/machinery/power/rad_collector{anchored = 1},/obj/item/weapon/tank/internals/plasma,/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/engine/engineering)
-"aRx" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating/airless,/area/space)
-"aRy" = (/turf/closed/wall/r_wall,/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"aRz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"aRA" = (/turf/closed/wall,/area/hallway/secondary/entry{name = "Arrivals"})
-"aRB" = (/obj/structure/shuttle/engine/propulsion/burst,/turf/closed/wall/mineral/titanium,/area/shuttle/pod_1)
-"aRC" = (/obj/machinery/door/airlock/titanium{name = "Escape Pod Airlock"},/obj/docking_port/mobile/pod{id = "pod1";name = "escape pod 1";port_angle = 180},/turf/open/floor/mineral/titanium/blue,/area/shuttle/pod_1)
-"aRD" = (/obj/structure/closet/toolcloset,/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/yellow/side{dir = 9},/area/mining_construction)
-"aRE" = (/turf/open/floor/plasteel/yellow/side{dir = 1},/area/mining_construction)
-"aRF" = (/obj/machinery/light{icon_state = "tube1";dir = 4},/obj/machinery/computer/camera_advanced/base_construction,/turf/open/floor/plasteel/yellow/side{dir = 5},/area/mining_construction)
-"aRG" = (/obj/effect/landmark{name = "revenantspawn"},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"aRH" = (/obj/machinery/conveyor{dir = 1;id = "QMLoad";movedir = 2},/turf/open/floor/plating,/area/quartermaster/storage)
-"aRI" = (/obj/structure/disposalpipe/segment,/obj/structure/chair/office/dark{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aRJ" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/item/device/radio/intercom{dir = 4;name = "Station Intercom (General)";pixel_x = 27},/obj/structure/table,/obj/item/weapon/folder/yellow,/obj/item/weapon/folder/yellow,/obj/item/weapon/paper,/obj/item/weapon/paper,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aRK" = (/obj/machinery/computer/cargo,/turf/open/floor/plasteel/brown{dir = 10},/area/quartermaster/qm)
-"aRL" = (/obj/structure/chair/office/dark{dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/obj/item/device/radio/intercom{broadcasting = 0;listening = 1;name = "Station Intercom (General)";pixel_y = -28},/turf/open/floor/plasteel/brown{dir = 2},/area/quartermaster/qm)
-"aRM" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel/brown{dir = 2},/area/quartermaster/qm)
-"aRN" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3;pixel_y = 7},/turf/open/floor/plasteel/brown{dir = 2},/area/quartermaster/qm)
-"aRO" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1;pixel_y = 2},/obj/machinery/disposal/deliveryChute{dir = 4;name = "Crate Disposal Chute";pixel_x = -5;pixel_y = 2},/obj/machinery/door/window/westleft{base_state = "right";dir = 4;icon_state = "right";name = "Crate Disposal Chute";req_access_txt = "0"},/obj/structure/disposalpipe/trunk{dir = 4},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/storage/primary)
-"aRP" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/storage/primary)
-"aRQ" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-j1";dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/storage/primary)
-"aRR" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/turf/open/floor/plasteel,/area/storage/primary)
-"aRS" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel/brown{dir = 4},/area/storage/primary)
-"aRT" = (/obj/machinery/flasher{id = "AI";pixel_x = 0;pixel_y = -24},/obj/machinery/porta_turret/ai{dir = 1},/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai_upload)
-"aRU" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai_upload)
-"aRV" = (/obj/machinery/porta_turret/ai{dir = 1},/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai_upload)
-"aRW" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1},/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"aRX" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/centcom{name = "Courtroom";opacity = 1},/turf/open/floor/plasteel/black,/area/crew_quarters/courtroom)
-"aRY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/black,/area/crew_quarters/courtroom)
-"aRZ" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=16-Fore";location = "15-Court"},/turf/open/floor/plasteel/black,/area/crew_quarters/courtroom)
-"aSa" = (/obj/structure/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/black,/area/crew_quarters/courtroom)
-"aSb" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8;initialize_directions = 11},/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"aSc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/floorgrime,/area/crew_quarters/locker)
-"aSd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"aSe" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/crew_quarters/locker)
-"aSf" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"aSg" = (/obj/machinery/holopad,/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"aSh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/floorgrime,/area/crew_quarters/locker)
-"aSi" = (/obj/structure/rack,/obj/item/weapon/storage/briefcase,/obj/item/weapon/storage/briefcase{pixel_x = 4;pixel_y = -2},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/crew_quarters/locker)
-"aSj" = (/obj/structure/table,/obj/item/weapon/cultivator,/obj/item/weapon/hatchet,/obj/structure/extinguisher_cabinet{pixel_x = -27;pixel_y = 0},/obj/item/weapon/paper/hydroponics,/obj/item/weapon/coin/silver,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"})
-"aSk" = (/obj/structure/table,/obj/item/weapon/hatchet,/obj/item/weapon/cultivator,/obj/item/weapon/crowbar,/obj/item/weapon/reagent_containers/glass/bucket,/obj/item/device/plant_analyzer,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"})
-"aSl" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/snacks/grown/wheat,/obj/item/weapon/reagent_containers/food/snacks/grown/watermelon,/obj/item/weapon/reagent_containers/food/snacks/grown/citrus/orange,/obj/item/weapon/reagent_containers/food/snacks/grown/grapes,/obj/item/weapon/reagent_containers/food/snacks/grown/cocoapod,/obj/item/weapon/reagent_containers/food/snacks/grown/apple,/obj/item/weapon/reagent_containers/food/snacks/grown/chili,/obj/item/weapon/reagent_containers/food/snacks/grown/cherries,/obj/item/weapon/reagent_containers/food/snacks/grown/soybeans,/obj/item/weapon/reagent_containers/food/snacks/grown/citrus/lime,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"})
-"aSm" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"})
-"aSn" = (/obj/item/weapon/storage/bag/plants/portaseeder,/obj/structure/table,/obj/machinery/light,/obj/item/device/plant_analyzer,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/construction{name = "\improper Garden"})
-"aSo" = (/obj/item/weapon/book/manual/wiki/engineering_hacking{pixel_x = 4;pixel_y = 5},/obj/item/weapon/book/manual/wiki/engineering_construction{pixel_x = 0;pixel_y = 3},/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/starboard)
-"aSp" = (/obj/machinery/power/terminal,/obj/structure/cable,/obj/structure/extinguisher_cabinet{pixel_x = -27;pixel_y = 0},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/engine/engineering)
-"aSq" = (/obj/machinery/power/terminal,/obj/structure/cable,/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel,/area/engine/engineering)
-"aSr" = (/obj/machinery/power/terminal,/obj/structure/cable,/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/engine/engineering)
-"aSs" = (/obj/machinery/door/firedoor,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/door/airlock/glass_engineering{name = "Power Monitoring";req_access_txt = "32"},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/engine/engineering)
-"aSt" = (/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering)
-"aSu" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel,/area/engine/engineering)
-"aSv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering)
-"aSw" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4;initialize_directions = 11},/turf/open/floor/plasteel,/area/engine/engineering)
-"aSx" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel,/area/engine/engineering)
-"aSy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/engineering)
-"aSz" = (/turf/open/floor/plasteel,/area/engine/engineering)
-"aSA" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/engineering)
-"aSB" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering)
-"aSC" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8";tag = ""},/turf/open/floor/plating/airless,/area/space)
-"aSD" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/turf/open/space,/area/space)
-"aSE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/closed/wall/r_wall,/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"aSF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/closed/wall/r_wall,/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"aSG" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/open/space,/area/space)
-"aSH" = (/obj/structure/chair{dir = 4},/obj/machinery/light/small{dir = 8},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/hallway/secondary/entry{name = "Arrivals"})
-"aSI" = (/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/hallway/secondary/entry{name = "Arrivals"})
-"aSJ" = (/obj/structure/closet/toolcloset,/turf/open/floor/plasteel/yellow/side{dir = 10},/area/mining_construction)
-"aSK" = (/turf/open/floor/plasteel/yellow/side,/area/mining_construction)
-"aSL" = (/obj/structure/rack{dir = 4},/obj/item/weapon/electronics/airlock,/obj/item/weapon/electronics/airlock,/obj/item/weapon/electronics/airlock,/obj/item/weapon/electronics/airlock,/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/obj/item/wallframe/camera,/obj/item/wallframe/camera,/obj/item/wallframe/camera,/obj/item/wallframe/camera,/obj/item/device/assault_pod/mining,/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/obj/machinery/power/apc{dir = 2;name = "Auxillary Base Construction APC";pixel_x = 0;pixel_y = -24},/turf/open/floor/plasteel/yellow/side,/area/mining_construction)
-"aSM" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/glass{amount = 50},/obj/item/weapon/pipe_dispenser,/obj/machinery/airalarm{dir = 1;icon_state = "alarm0";pixel_y = -22},/turf/open/floor/plasteel/yellow/side,/area/mining_construction)
-"aSN" = (/obj/structure/table,/obj/item/stack/sheet/plasteel{amount = 10},/obj/item/stack/rods{amount = 50},/obj/item/weapon/storage/box/lights/mixed,/turf/open/floor/plasteel/yellow/side{dir = 6},/area/mining_construction)
-"aSO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"aSP" = (/obj/structure/closet/crate{icon_state = "crateopen";opened = 1},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"aSQ" = (/obj/machinery/conveyor_switch/oneway{convdir = 1;id = "QMLoad";pixel_x = 6},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aSR" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/spawner/lootdrop/maintenance,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aSS" = (/obj/effect/spawner/lootdrop/maintenance,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aST" = (/obj/structure/closet/crate,/obj/structure/disposalpipe/segment,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3;name = "3maintenance loot spawner"},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aSU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aSV" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aSW" = (/obj/machinery/light{dir = 4},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/status_display{density = 0;pixel_x = 32;pixel_y = 0;supply_display = 1},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aSX" = (/turf/closed/wall,/area/security/checkpoint/supply{name = "Security Post - Cargo"})
-"aSY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"aSZ" = (/obj/machinery/door/airlock/maintenance{name = "Tool Storage Maintenance";req_access_txt = "12"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"aTa" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel/brown{dir = 8},/area/storage/primary)
-"aTb" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/storage/primary)
-"aTc" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/storage/primary)
-"aTd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/storage/primary)
-"aTe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/storage/primary)
-"aTf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/storage/primary)
-"aTg" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/brown{dir = 4},/area/storage/primary)
-"aTh" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/turf/open/floor/plating,/area/storage/primary)
-"aTi" = (/obj/machinery/door/airlock/highsecurity{icon_state = "door_closed";locked = 0;name = "AI Upload";req_access_txt = "16"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai_upload)
-"aTj" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"aTk" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted/fulltile,/turf/open/floor/plating,/area/crew_quarters/courtroom)
-"aTl" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel/black,/area/crew_quarters/courtroom)
-"aTm" = (/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 0;pixel_y = -26},/turf/open/floor/plasteel/black,/area/crew_quarters/courtroom)
-"aTn" = (/obj/machinery/newscaster{pixel_x = 0;pixel_y = -32},/obj/machinery/light,/obj/machinery/camera{c_tag = "Courtroom - Gallery";dir = 1;network = list("SS13")},/turf/open/floor/plasteel/black,/area/crew_quarters/courtroom)
-"aTo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel/black,/area/crew_quarters/courtroom)
-"aTp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9;pixel_y = 0},/turf/open/floor/plasteel/black,/area/crew_quarters/courtroom)
-"aTq" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"aTr" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"aTs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=14.3-Lockers-Dorms";location = "14.2-Central-CrewQuarters"},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/crew_quarters/locker)
-"aTt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/crew_quarters/locker)
-"aTu" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock{name = "Locker Room";req_access_txt = "0"},/turf/open/floor/plasteel/floorgrime,/area/crew_quarters/locker)
-"aTv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/power/apc{dir = 2;name = "Locker Room APC";pixel_x = -1;pixel_y = -26},/obj/structure/cable/yellow,/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/crew_quarters/locker)
-"aTw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 0;pixel_y = -26},/obj/machinery/camera{c_tag = "Locker Room Port";dir = 1;network = list("SS13")},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/crew_quarters/locker)
-"aTx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light,/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/crew_quarters/locker)
-"aTy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/firealarm{dir = 1;pixel_y = -24},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/crew_quarters/locker)
-"aTz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light,/obj/machinery/newscaster{pixel_x = 0;pixel_y = -32},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/crew_quarters/locker)
-"aTA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/crew_quarters/locker)
-"aTB" = (/obj/structure/extinguisher_cabinet{pixel_x = 27;pixel_y = 0},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/crew_quarters/locker)
-"aTC" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/hallway/secondary/construction{name = "\improper Garden"})
-"aTD" = (/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/obj/machinery/light_switch{pixel_x = -24},/obj/machinery/power/smes/engineering,/turf/open/floor/plasteel/vault,/area/engine/engineering)
-"aTE" = (/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/obj/machinery/power/smes/engineering,/turf/open/floor/plasteel/vault,/area/engine/engineering)
-"aTF" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/engine/engineering)
-"aTG" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel,/area/engine/engineering)
-"aTH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel,/area/engine/engineering)
-"aTI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel,/area/engine/engineering)
-"aTJ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel,/area/engine/engineering)
-"aTK" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9;pixel_y = 0},/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel,/area/engine/engineering)
-"aTL" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/light,/obj/machinery/camera{c_tag = "Engineering - Aft";dir = 1;network = list("SS13")},/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel,/area/engine/engineering)
-"aTM" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering)
-"aTN" = (/obj/effect/landmark/start{name = "Station Engineer"},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/engineering)
-"aTO" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering)
-"aTP" = (/obj/structure/reagent_dispensers/fueltank,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/engine/engineering)
-"aTQ" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/lattice,/turf/open/space,/area/space)
-"aTR" = (/obj/structure/window/reinforced{dir = 1;layer = 2.9},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/window{dir = 2;name = "MiniSat Walkway Access";req_access_txt = "0"},/turf/open/floor/plasteel/black,/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"aTS" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/machinery/light/small{dir = 4},/obj/machinery/camera{c_tag = "MiniSat Exterior - Fore Port";dir = 8;network = list("MiniSat")},/turf/open/floor/plasteel/black,/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"aTT" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/lattice,/turf/open/space,/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"aTU" = (/obj/structure/lattice,/turf/open/space,/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"aTV" = (/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai)
-"aTW" = (/obj/machinery/power/smes{charge = 5e+006},/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai)
-"aTX" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai)
-"aTY" = (/obj/structure/lattice,/obj/structure/window/reinforced{dir = 4},/turf/open/space,/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"aTZ" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/light/small{dir = 8},/obj/machinery/camera{c_tag = "MiniSat Exterior - Fore Starboard";dir = 4;network = list("MiniSat")},/turf/open/floor/plasteel/black,/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"aUa" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1;pixel_y = 1},/obj/machinery/door/window{base_state = "right";dir = 2;icon_state = "right";name = "MiniSat Walkway Access";req_access_txt = "0"},/turf/open/floor/plasteel/black,/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"aUb" = (/obj/structure/sign/pods,/turf/closed/wall,/area/hallway/secondary/entry{name = "Arrivals"})
-"aUc" = (/obj/machinery/door/airlock/external{name = "Escape Pod One"},/turf/open/floor/plating,/area/hallway/secondary/entry{name = "Arrivals"})
-"aUd" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"aUe" = (/turf/closed/wall,/area/quartermaster/storage)
-"aUf" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/obj/machinery/camera{c_tag = "Cargo Bay - Port";dir = 4;network = list("SS13")},/obj/machinery/conveyor{dir = 1;id = "QMLoad";movedir = 2},/turf/open/floor/plating,/area/quartermaster/storage)
-"aUg" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8;initialize_directions = 11},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aUh" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aUi" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/firealarm{dir = 4;pixel_x = 24},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aUj" = (/obj/structure/closet/secure_closet/security/cargo,/obj/machinery/light_switch{pixel_x = -25;pixel_y = 0},/obj/machinery/airalarm{pixel_y = 23},/turf/open/floor/plasteel/red/side{dir = 9},/area/security/checkpoint/supply{name = "Security Post - Cargo"})
-"aUk" = (/obj/machinery/power/apc{dir = 1;name = "Security Post - Cargo APC";pixel_x = 1;pixel_y = 24},/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/turf/open/floor/plasteel/red/side{dir = 1},/area/security/checkpoint/supply{name = "Security Post - Cargo"})
-"aUl" = (/obj/item/weapon/screwdriver{pixel_y = 10},/obj/item/device/radio/off,/obj/machinery/light{dir = 1},/obj/machinery/requests_console{department = "Security";departmentType = 5;pixel_y = 30},/turf/open/floor/plasteel/red/side{dir = 1},/area/security/checkpoint/supply{name = "Security Post - Cargo"})
-"aUm" = (/obj/structure/filingcabinet,/obj/structure/reagent_dispensers/peppertank{pixel_x = 30;pixel_y = 0},/turf/open/floor/plasteel/red/side{dir = 5},/area/security/checkpoint/supply{name = "Security Post - Cargo"})
-"aUn" = (/obj/structure/closet/wardrobe/pjs,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/sign/poster{pixel_y = -32},/turf/open/floor/plasteel/vault,/area/crew_quarters/sleep)
-"aUo" = (/obj/structure/table,/obj/item/weapon/storage/belt/utility,/obj/machinery/airalarm{dir = 1;pixel_y = -22},/obj/item/weapon/storage/box/lights/mixed,/turf/open/floor/plasteel/brown{dir = 2},/area/storage/primary)
-"aUp" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plasteel/brown{dir = 2},/area/storage/primary)
-"aUq" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel/brown{dir = 2},/area/storage/primary)
-"aUr" = (/obj/structure/reagent_dispensers/fueltank,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/brown{dir = 2},/area/storage/primary)
-"aUs" = (/obj/structure/table,/obj/item/weapon/crowbar,/obj/item/device/assembly/prox_sensor{pixel_x = -8;pixel_y = 4},/obj/item/clothing/gloves/color/fyellow,/obj/machinery/light/small,/turf/open/floor/plasteel/brown{dir = 2},/area/storage/primary)
-"aUt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/brown{dir = 2},/area/storage/primary)
-"aUu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light_switch{pixel_x = 28;pixel_y = 0},/turf/open/floor/plasteel/brown{dir = 6},/area/storage/primary)
-"aUv" = (/turf/closed/wall/r_wall,/area/hallway/primary/central)
-"aUw" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/turf/open/floor/plating,/area/hallway/primary/central)
-"aUx" = (/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai_upload_foyer)
-"aUy" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/machinery/turretid{control_area = "AI Upload Chamber";icon_state = "control_stun";name = "AI Upload turret control";pixel_x = 0;pixel_y = 28},/obj/item/device/radio/intercom{broadcasting = 1;frequency = 1447;name = "Private AI Channel";pixel_x = -24;pixel_y = 24},/obj/effect/landmark/start{name = "Cyborg"},/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/obj/machinery/power/apc{dir = 2;name = "AI Upload Access APC";pixel_x = 0;pixel_y = -27},/obj/machinery/light/small{dir = 8},/obj/machinery/computer/security/telescreen{desc = "Used for watching the AI Upload.";dir = 4;name = "AI Upload Monitor";network = list("AIUpload");pixel_x = -29;pixel_y = 0},/turf/open/floor/plasteel/vault{dir = 6},/area/ai_monitored/turret_protected/ai_upload_foyer)
-"aUz" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel/vault,/area/ai_monitored/turret_protected/ai_upload_foyer)
-"aUA" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/obj/effect/landmark/start{name = "Cyborg"},/obj/machinery/light/small{dir = 4},/obj/machinery/computer/security/telescreen{desc = "Used for watching areas on the MiniSat.";dir = 8;name = "MiniSat Monitor";network = list("MiniSat","tcomm");pixel_x = 29;pixel_y = 0},/obj/machinery/camera/motion{c_tag = "AI Upload Foyer";network = list("SS13","RD","AIUpload")},/obj/machinery/airalarm{pixel_y = 26},/turf/open/floor/plasteel/vault{dir = 10},/area/ai_monitored/turret_protected/ai_upload_foyer)
-"aUB" = (/obj/structure/sign/directions/security{desc = "A direction sign, pointing out which way the security department is.";dir = 1;icon_state = "direction_sec";pixel_x = 0;pixel_y = 8},/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the engineering department is.";dir = 4;icon_state = "direction_eng";pixel_y = 0},/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the bridge is.";dir = 2;icon_state = "direction_bridge";name = "bridge";pixel_y = -8},/turf/closed/wall/r_wall,/area/hallway/primary/fore)
-"aUC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Fore Primary Hallway"},/turf/open/floor/plasteel/red/corner{dir = 8},/area/hallway/primary/fore)
-"aUD" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Fore Primary Hallway"},/turf/open/floor/plasteel,/area/hallway/primary/fore)
-"aUE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Fore Primary Hallway"},/turf/open/floor/plasteel/red/corner{dir = 2},/area/hallway/primary/fore)
-"aUF" = (/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the escape arm is.";icon_state = "direction_evac";name = "escape arm"},/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the medical department is.";icon_state = "direction_med";name = "medical department";pixel_y = 8},/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the research department is.";icon_state = "direction_sci";name = "research department";pixel_y = -8},/turf/closed/wall,/area/crew_quarters/courtroom)
-"aUG" = (/obj/machinery/power/apc{cell_type = 2500;dir = 2;name = "Courtroom APC";pixel_x = 1;pixel_y = -24},/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/obj/structure/table,/obj/item/weapon/storage/fancy/donut_box,/turf/open/floor/plasteel/black,/area/crew_quarters/courtroom)
-"aUH" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel/black,/area/crew_quarters/courtroom)
-"aUI" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel/black,/area/crew_quarters/courtroom)
-"aUJ" = (/obj/structure/table,/obj/item/weapon/book/manual/wiki/security_space_law{pixel_x = -3;pixel_y = 5},/obj/machinery/firealarm{dir = 1;pixel_y = -24},/obj/item/weapon/book/manual/wiki/security_space_law{pixel_x = -3;pixel_y = 5},/obj/item/weapon/book/manual/wiki/security_space_law{pixel_x = -3;pixel_y = 5},/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/turf/open/floor/plasteel/black,/area/crew_quarters/courtroom)
-"aUK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"aUL" = (/obj/machinery/firealarm{dir = 4;pixel_x = 24},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/crew_quarters/locker)
-"aUM" = (/turf/closed/wall,/area/crew_quarters/locker)
-"aUN" = (/obj/structure/closet/wardrobe/black,/turf/open/floor/plasteel/vault,/area/crew_quarters/locker)
-"aUO" = (/obj/structure/closet/wardrobe/grey,/turf/open/floor/plasteel/vault,/area/crew_quarters/locker)
-"aUP" = (/obj/structure/closet/wardrobe/white,/turf/open/floor/plasteel/vault,/area/crew_quarters/locker)
-"aUQ" = (/turf/open/floor/plasteel/vault,/area/crew_quarters/locker)
-"aUR" = (/obj/structure/closet/wardrobe/green,/turf/open/floor/plasteel/vault,/area/crew_quarters/locker)
-"aUS" = (/obj/machinery/vending/clothing,/turf/open/floor/plasteel/vault,/area/crew_quarters/locker)
-"aUT" = (/obj/structure/closet/wardrobe/mixed,/turf/open/floor/plasteel/vault,/area/crew_quarters/locker)
-"aUU" = (/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/starboard)
-"aUV" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/starboard)
-"aUW" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/starboard)
-"aUX" = (/obj/structure/closet/secure_closet/personal,/obj/item/clothing/under/assistantformal,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2;initialize_directions = 11},/obj/item/clothing/suit/hooded/wintercoat,/obj/item/clothing/shoes/winterboots,/turf/open/floor/plasteel/vault,/area/crew_quarters/sleep)
-"aUY" = (/obj/structure/closet/firecloset,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/engine/engineering)
-"aUZ" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/engine/engineering)
-"aVa" = (/obj/machinery/requests_console{announcementConsole = 0;department = "Engineering";departmentType = 4;name = "Engineering RC";pixel_y = 0},/turf/closed/wall,/area/engine/engineering)
-"aVb" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3;pixel_y = 7},/obj/item/weapon/pen,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/engine/engineering)
-"aVc" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/engine/engineering)
-"aVd" = (/obj/structure/table,/obj/item/weapon/folder/yellow,/obj/item/weapon/folder/yellow,/obj/item/weapon/storage/firstaid/fire,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/engine/engineering)
-"aVe" = (/obj/machinery/light_switch,/turf/closed/wall,/area/engine/engineering)
-"aVf" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/turf/open/floor/plasteel,/area/engine/engineering)
-"aVg" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'";icon_state = "radiation";name = "RADIOACTIVE AREA";pixel_x = 32;pixel_y = 0},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering)
-"aVh" = (/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plating/airless,/area/engine/engineering)
-"aVi" = (/obj/item/weapon/wrench,/turf/open/floor/plating/airless,/area/engine/engineering)
-"aVj" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating/airless,/area/engine/engineering)
-"aVk" = (/obj/structure/window/reinforced{dir = 1;layer = 2.9},/obj/structure/window/reinforced{dir = 8},/turf/open/space,/area/space)
-"aVl" = (/obj/machinery/porta_turret/ai{dir = 4},/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai)
-"aVm" = (/obj/machinery/status_display{density = 0;layer = 4;pixel_x = 0;pixel_y = 32},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai)
-"aVn" = (/obj/structure/showcase{density = 0;desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze.";dir = 2;icon = 'icons/mob/robots.dmi';icon_state = "robot_old";name = "Cyborg Statue";pixel_x = 0;pixel_y = 20},/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai)
-"aVo" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/sign/poster{pixel_y = -32},/turf/open/floor/plasteel/brown/corner{dir = 4},/area/construction/Storage{name = "Storage Wing"})
-"aVp" = (/obj/machinery/camera{c_tag = "AI Chamber - Fore";dir = 2;network = list("RD")},/obj/structure/showcase{density = 0;desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze.";dir = 2;icon = 'icons/mob/robots.dmi';icon_state = "robot_old";name = "Cyborg Statue";pixel_x = 0;pixel_y = 20},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai)
-"aVq" = (/obj/machinery/status_display{density = 0;layer = 4;pixel_x = 0;pixel_y = 32},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai)
-"aVr" = (/obj/machinery/porta_turret/ai{dir = 8},/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai)
-"aVs" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/hallway/secondary/entry)
-"aVt" = (/obj/item/weapon/twohanded/required/kirbyplants{icon_state = "plant-13";layer = 4.1},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"aVu" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"aVv" = (/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 0;pixel_y = 21},/obj/structure/chair,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"aVw" = (/obj/structure/chair,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"aVx" = (/obj/structure/chair,/obj/machinery/camera{c_tag = "Arrivals - Fore Arm - Far";dir = 2;network = list("SS13")},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"aVy" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/obj/machinery/status_display{density = 0;layer = 4;pixel_x = 0;pixel_y = 32},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"aVz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"aVA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "1-4";d1 = 1;d2 = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/yellow/side{dir = 1},/area/hallway/secondary/entry{name = "Arrivals"})
-"aVB" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/obj/structure/cable/yellow{icon_state = "4-8";d1 = 4;d2 = 8},/turf/open/floor/plasteel/yellow/corner{dir = 1},/area/hallway/secondary/entry{name = "Arrivals"})
-"aVC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/sign/map/left{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";icon_state = "map-left-MS";pixel_y = 32},/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"aVD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/sign/map/right{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";icon_state = "map-right-MS";pixel_y = 32},/turf/open/floor/plasteel/white/corner{dir = 4},/area/hallway/secondary/entry{name = "Arrivals"})
-"aVE" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/arrival{dir = 1},/area/hallway/secondary/entry{name = "Arrivals"})
-"aVF" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/spawner/lootdrop/maintenance,/obj/structure/sign/poster{pixel_x = -32;pixel_y = 0},/turf/open/floor/plating,/area/maintenance/starboard)
-"aVG" = (/obj/machinery/status_display{density = 0;pixel_x = 0;pixel_y = 0;supply_display = 1},/turf/closed/wall,/area/quartermaster/storage)
-"aVH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/item/weapon/storage/firstaid/regular{pixel_x = 0;pixel_y = 0},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/quartermaster/storage)
-"aVI" = (/obj/effect/landmark{name = "lightsout"},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aVJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/effect/landmark/start{name = "Cargo Technician"},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aVK" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aVL" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aVM" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Security Post - Cargo";req_access_txt = "63"},/turf/open/floor/plasteel,/area/security/checkpoint/supply{name = "Security Post - Cargo"})
-"aVN" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/red/side{dir = 8},/area/security/checkpoint/supply{name = "Security Post - Cargo"})
-"aVO" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel,/area/security/checkpoint/supply{name = "Security Post - Cargo"})
-"aVP" = (/obj/structure/chair/office/dark,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/obj/effect/landmark/start/depsec/supply,/turf/open/floor/plasteel,/area/security/checkpoint/supply{name = "Security Post - Cargo"})
-"aVQ" = (/obj/item/device/radio/intercom{dir = 4;name = "Station Intercom (General)";pixel_x = 27},/obj/machinery/computer/security/mining{network = list("MINE","AuxBase")},/turf/open/floor/plasteel/red/side{dir = 4},/area/security/checkpoint/supply{name = "Security Post - Cargo"})
-"aVR" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/storage/primary)
-"aVS" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Primary Tool Storage"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/brown{dir = 1},/area/storage/primary)
-"aVT" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Primary Tool Storage"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/brown{dir = 1},/area/storage/primary)
-"aVU" = (/obj/structure/closet/firecloset,/turf/open/floor/plasteel/vault,/area/hallway/primary/central)
-"aVV" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/closet/emcloset,/turf/open/floor/plasteel/vault,/area/hallway/primary/central)
-"aVW" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel/vault,/area/hallway/primary/central)
-"aVX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai_upload_foyer)
-"aVY" = (/obj/machinery/door/airlock/highsecurity{name = "Secure Network Access";req_access_txt = "19"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/vault,/area/ai_monitored/turret_protected/ai_upload_foyer)
-"aVZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai_upload_foyer)
-"aWa" = (/obj/machinery/airalarm{pixel_y = 23},/obj/item/weapon/twohanded/required/kirbyplants{icon_state = "applebush";layer = 4.1},/turf/open/floor/plasteel/neutral/side{dir = 9},/area/hallway/primary/central)
-"aWb" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/neutral/side{dir = 1},/area/hallway/primary/central)
-"aWc" = (/obj/machinery/light{dir = 1},/obj/machinery/status_display{density = 0;layer = 4;pixel_x = 0;pixel_y = 32},/turf/open/floor/plasteel/neutral/side{dir = 1},/area/hallway/primary/central)
-"aWd" = (/obj/machinery/camera{c_tag = "Central Primary Hallway - Fore";dir = 2;network = list("SS13")},/turf/open/floor/plasteel/red/corner{dir = 1},/area/hallway/primary/central)
-"aWe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/red/corner{dir = 1},/area/hallway/primary/central)
-"aWf" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"aWg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plasteel/red/corner{dir = 4},/area/hallway/primary/central)
-"aWh" = (/turf/open/floor/plasteel/red/corner{dir = 4},/area/hallway/primary/central)
-"aWi" = (/obj/structure/sign/map/left{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";icon_state = "map-left-MS";pixel_y = 32},/turf/open/floor/plasteel/neutral/side{dir = 1},/area/hallway/primary/central)
-"aWj" = (/obj/machinery/light{dir = 1},/obj/structure/sign/map/right{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";icon_state = "map-right-MS";pixel_y = 32},/turf/open/floor/plasteel/neutral/side{dir = 1},/area/hallway/primary/central)
-"aWk" = (/obj/structure/extinguisher_cabinet{pixel_x = 27;pixel_y = 0},/obj/item/weapon/twohanded/required/kirbyplants{icon_state = "plant-16";layer = 4.1},/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 0;pixel_y = 21},/turf/open/floor/plasteel/neutral/side{dir = 5},/area/hallway/primary/central)
-"aWl" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/centcom{name = "Courtroom";opacity = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/black,/area/crew_quarters/courtroom)
-"aWm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Crew Quarters Access"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"aWn" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Crew Quarters Access"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"aWo" = (/obj/structure/sign/pods,/turf/closed/wall,/area/crew_quarters/locker)
-"aWp" = (/obj/machinery/vending/snack,/turf/open/floor/plasteel/vault,/area/hallway/primary/central)
-"aWq" = (/obj/machinery/newscaster{pixel_x = 0;pixel_y = 32},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel/vault,/area/hallway/primary/central)
-"aWr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel/vault,/area/hallway/primary/central)
-"aWs" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/starboard)
-"aWt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/starboard)
-"aWu" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/starboard)
-"aWv" = (/turf/closed/wall,/area/storage/tech)
-"aWw" = (/turf/closed/wall/r_wall,/area/engine/chiefs_office)
-"aWx" = (/obj/machinery/keycard_auth{pixel_x = -25;pixel_y = 25},/obj/machinery/status_display{density = 0;layer = 4;pixel_x = 0;pixel_y = 32},/obj/structure/extinguisher_cabinet{pixel_x = -27;pixel_y = 0},/obj/machinery/modular_computer/console/preset/engineering,/turf/open/floor/plasteel/vault,/area/engine/chiefs_office)
-"aWy" = (/obj/machinery/requests_console{announcementConsole = 1;department = "Chief Engineer's Desk";departmentType = 3;name = "Chief Engineer RC";pixel_x = 0;pixel_y = 32},/obj/machinery/computer/card/minor/ce,/turf/open/floor/plasteel/vault,/area/engine/chiefs_office)
-"aWz" = (/obj/machinery/ai_status_display{pixel_y = 32},/obj/machinery/computer/station_alert,/turf/open/floor/plasteel/vault,/area/engine/chiefs_office)
-"aWA" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/engine/chiefs_office)
-"aWB" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/command{name = "Chief Engineer's Office";req_access_txt = "56";req_one_access_txt = "0"},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/engine/chiefs_office)
-"aWC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/engine/engineering)
-"aWD" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Engine Room";req_access_txt = "10"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/engine/engineering)
-"aWE" = (/obj/machinery/airalarm{dir = 4;icon_state = "alarm0";pixel_x = -22},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/engine/engineering)
-"aWF" = (/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/light/small,/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel,/area/engine/engineering)
-"aWG" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;name = "EXTERNAL AIRLOCK";pixel_x = 0;pixel_y = -32},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/engine/engineering)
-"aWH" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;name = "EXTERNAL AIRLOCK";pixel_x = 0;pixel_y = 32},/obj/machinery/light/small{dir = 1},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/engine/engineering)
-"aWI" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plating/airless,/area/engine/engineering)
-"aWJ" = (/obj/structure/cable{icon_state = "0-2";pixel_y = 1;d2 = 2},/obj/machinery/power/emitter{anchored = 1;dir = 1;state = 2},/turf/open/floor/plating/airless,/area/engine/engineering)
-"aWK" = (/obj/machinery/light,/obj/structure/grille,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plating/airless,/area/engine/engineering)
-"aWL" = (/obj/machinery/ai_status_display{pixel_x = -32;pixel_y = 0},/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/bluegrid,/area/ai_monitored/turret_protected/ai)
-"aWM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/bluegrid,/area/ai_monitored/turret_protected/ai)
-"aWN" = (/turf/open/floor/bluegrid,/area/ai_monitored/turret_protected/ai)
-"aWO" = (/obj/machinery/ai_slipper{uses = 10},/turf/open/floor/bluegrid,/area/ai_monitored/turret_protected/ai)
-"aWP" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/bluegrid,/area/ai_monitored/turret_protected/ai)
-"aWQ" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/bluegrid,/area/ai_monitored/turret_protected/ai)
-"aWR" = (/obj/machinery/light{icon_state = "tube1";dir = 4},/obj/machinery/ai_status_display{pixel_x = 32;pixel_y = 0},/turf/open/floor/bluegrid,/area/ai_monitored/turret_protected/ai)
-"aWS" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/hallway/secondary/entry{name = "Arrivals"})
-"aWT" = (/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"aWU" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"aWV" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;name = "EXTERNAL AIRLOCK";pixel_x = 0;pixel_y = -32},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"aWW" = (/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"aWX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"aWY" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8;initialize_directions = 11},/obj/effect/turf_decal/stripes/corner{dir = 2},/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"aWZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"aXa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"aXb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"aXc" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"aXd" = (/obj/structure/extinguisher_cabinet{pixel_x = 27;pixel_y = 0},/obj/machinery/camera{c_tag = "Arrivals - Fore Arm";dir = 8;network = list("SS13")},/obj/machinery/light{dir = 4;icon_state = "tube1"},/turf/open/floor/plasteel/arrival{dir = 4},/area/hallway/secondary/entry{name = "Arrivals"})
-"aXe" = (/obj/machinery/conveyor{dir = 4;id = "QMLoad"},/turf/open/floor/plating,/area/quartermaster/storage)
-"aXf" = (/obj/machinery/holopad,/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aXg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/effect/spawner/lootdrop/maintenance,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aXh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/quartermaster/storage)
-"aXi" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aXj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aXk" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aXl" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/extinguisher_cabinet{pixel_x = 27;pixel_y = 0},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aXm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/security/checkpoint/supply{name = "Security Post - Cargo"})
-"aXn" = (/obj/machinery/recharger{pixel_y = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/table/reinforced,/turf/open/floor/plasteel/red/side{dir = 10},/area/security/checkpoint/supply{name = "Security Post - Cargo"})
-"aXo" = (/obj/item/weapon/paper_bin{pixel_x = 1;pixel_y = 9},/obj/item/weapon/pen,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/table/reinforced,/obj/machinery/camera{c_tag = "Security Post - Cargo";dir = 1;network = list("SS13")},/turf/open/floor/plasteel/red/side,/area/security/checkpoint/supply{name = "Security Post - Cargo"})
-"aXp" = (/obj/item/weapon/book/manual/wiki/security_space_law,/obj/machinery/newscaster{pixel_x = 0;pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9;pixel_y = 0},/obj/structure/table/reinforced,/turf/open/floor/plasteel/red/side,/area/security/checkpoint/supply{name = "Security Post - Cargo"})
-"aXq" = (/obj/machinery/computer/secure_data,/turf/open/floor/plasteel/red/side{dir = 6},/area/security/checkpoint/supply{name = "Security Post - Cargo"})
-"aXr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/effect/landmark{name = "blobstart"},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"aXs" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/item/trash/popcorn,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"aXt" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"aXu" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{req_access_txt = "0";req_one_access_txt = "12;63;48;50"},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"aXv" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/hallway/primary/central)
-"aXw" = (/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/hallway/primary/central)
-"aXx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/hallway/primary/central)
-"aXy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/firealarm{pixel_y = 32},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/hallway/primary/central)
-"aXz" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/hallway/primary/central)
-"aXA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/hallway/primary/central)
-"aXB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/hallway/primary/central)
-"aXC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/hallway/primary/central)
-"aXD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/hallway/primary/central)
-"aXE" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/machinery/camera{c_tag = "Central Primary Hallway - Fore - AI Upload";dir = 2;network = list("SS13")},/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH-POWER TURRETS AHEAD'.";name = "\improper HIGH-POWER TURRETS AHEAD";pixel_y = 32},/obj/effect/turf_decal/stripes/corner{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"aXF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 0;pixel_y = 21},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"aXG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"aXH" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/obj/machinery/ai_status_display{pixel_x = 0;pixel_y = 32},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"aXI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light/small{dir = 1},/obj/structure/sign/securearea{pixel_y = 32},/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"aXJ" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"aXK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "L1"},/area/hallway/primary/central)
-"aXL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "L3"},/area/hallway/primary/central)
-"aXM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "L5"},/area/hallway/primary/central)
-"aXN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/effect/landmark{name = "lightsout"},/turf/open/floor/plasteel{icon_state = "L7"},/area/hallway/primary/central)
-"aXO" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/turf/open/floor/plasteel{icon_state = "L9"},/area/hallway/primary/central)
-"aXP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "L11"},/area/hallway/primary/central)
-"aXQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{desc = "";icon_state = "L13";name = "floor"},/area/hallway/primary/central)
-"aXR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"aXS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/neutral/corner{dir = 4},/area/hallway/primary/central)
-"aXT" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/neutral/corner{dir = 4},/area/hallway/primary/central)
-"aXU" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/neutral/corner{dir = 4},/area/hallway/primary/central)
-"aXV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/neutral/corner{dir = 4},/area/hallway/primary/central)
-"aXW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/neutral/corner{dir = 4},/area/hallway/primary/central)
-"aXX" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/turf/open/floor/plasteel/neutral/corner{dir = 4},/area/hallway/primary/central)
-"aXY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/neutral/corner{dir = 4},/area/hallway/primary/central)
-"aXZ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/neutral/corner{dir = 4},/area/hallway/primary/central)
-"aYa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/effect/landmark{name = "blobstart"},/turf/open/floor/plating,/area/maintenance/starboard)
-"aYb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/starboard)
-"aYc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating{icon_plating = "warnplate"},/area/maintenance/starboard)
-"aYd" = (/obj/structure/window/reinforced{dir = 1;pixel_y = 1},/obj/machinery/holopad,/turf/open/floor/plasteel/black,/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"aYe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/starboard)
-"aYf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/starboard)
-"aYg" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating{icon_plating = "warnplate"},/area/maintenance/starboard)
-"aYh" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/starboard)
-"aYi" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1;pixel_y = -1},/obj/item/clothing/gloves/color/yellow,/obj/item/device/t_scanner,/obj/item/device/multitool,/turf/open/floor/plasteel/black,/area/storage/tech)
-"aYj" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/circuitboard/computer/pandemic{pixel_x = -3;pixel_y = 3},/obj/item/weapon/circuitboard/computer/rdconsole,/obj/item/weapon/circuitboard/machine/rdserver{pixel_x = 3;pixel_y = -3},/obj/item/weapon/circuitboard/machine/destructive_analyzer,/obj/item/weapon/circuitboard/machine/protolathe,/obj/item/weapon/circuitboard/computer/aifixer,/obj/item/weapon/circuitboard/computer/teleporter,/obj/item/weapon/circuitboard/machine/circuit_imprinter,/obj/item/weapon/circuitboard/machine/mechfab,/turf/open/floor/plasteel/black,/area/storage/tech)
-"aYk" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/circuitboard/computer/mining,/obj/item/weapon/circuitboard/machine/autolathe{pixel_x = 3;pixel_y = -3},/obj/item/weapon/circuitboard/computer/arcade/battle,/obj/machinery/ai_status_display{pixel_x = 0;pixel_y = 31},/turf/open/floor/plasteel/black,/area/storage/tech)
-"aYl" = (/obj/structure/rack,/obj/item/weapon/circuitboard/machine/telecomms/processor,/obj/item/weapon/circuitboard/machine/telecomms/receiver,/obj/item/weapon/circuitboard/machine/telecomms/server,/obj/item/weapon/circuitboard/machine/telecomms/bus,/obj/item/weapon/circuitboard/machine/telecomms/broadcaster,/obj/item/weapon/circuitboard/computer/message_monitor{pixel_y = -5},/turf/open/floor/plasteel/black,/area/storage/tech)
-"aYm" = (/obj/structure/table,/obj/item/device/flashlight{pixel_x = 1;pixel_y = 5},/obj/item/device/flashlight{pixel_x = 1;pixel_y = 5},/obj/machinery/light/small{dir = 1},/obj/item/device/assembly/flash/handheld,/obj/item/device/assembly/flash/handheld,/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 0;pixel_y = 28},/turf/open/floor/plasteel/black,/area/storage/tech)
-"aYn" = (/obj/structure/table,/obj/item/device/aicard,/obj/item/weapon/aiModule/reset,/turf/open/floor/plasteel/black,/area/storage/tech)
-"aYo" = (/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = -29},/turf/open/floor/plasteel/vault{dir = 5},/area/engine/chiefs_office)
-"aYp" = (/turf/open/floor/plasteel/vault{dir = 5},/area/engine/chiefs_office)
-"aYq" = (/obj/item/weapon/storage/secure/safe{pixel_x = 6;pixel_y = 30},/obj/machinery/camera{c_tag = "Chief Engineer's Office";dir = 2;network = list("SS13")},/turf/open/floor/plasteel/vault{dir = 5},/area/engine/chiefs_office)
-"aYr" = (/obj/structure/disposalpipe/segment,/obj/machinery/power/apc{dir = 4;name = "CE Office APC";pixel_x = 28;pixel_y = 0},/obj/structure/cable/yellow,/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/obj/machinery/light_switch{pixel_x = 26;pixel_y = 26},/turf/open/floor/plasteel/vault{dir = 5},/area/engine/chiefs_office)
-"aYs" = (/obj/structure/sign/securearea{pixel_y = 32},/obj/structure/closet/radiation,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/engine/engineering)
-"aYt" = (/obj/structure/closet/radiation,/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'";icon_state = "radiation";name = "RADIOACTIVE AREA";pixel_x = 0;pixel_y = 32},/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 29},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/engine/engineering)
-"aYu" = (/turf/closed/wall,/area/security/checkpoint/engineering)
-"aYv" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;name = "EXTERNAL AIRLOCK";pixel_x = 32;pixel_y = 0},/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plating,/area/maintenance/starboard)
-"aYw" = (/obj/structure/grille,/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plating/airless,/area/engine/engineering)
-"aYx" = (/obj/structure/grille,/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plating/airless,/area/engine/engineering)
-"aYy" = (/obj/machinery/camera{c_tag = "AI Chamber - Port";dir = 4;network = list("RD")},/obj/structure/showcase{density = 0;desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze.";dir = 4;icon = 'icons/mob/robots.dmi';icon_state = "robot_old";name = "Cyborg Statue";pixel_x = -9;pixel_y = 2},/turf/open/floor/plasteel/vault{dir = 1},/area/ai_monitored/turret_protected/ai)
-"aYz" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/shutters/preopen{id = "AI Core shutters";name = "AI core shutters"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai)
-"aYA" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/bluegrid,/area/ai_monitored/turret_protected/ai)
-"aYB" = (/obj/structure/showcase{density = 0;desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze.";dir = 8;icon = 'icons/mob/robots.dmi';icon_state = "robot_old";name = "Cyborg Statue";pixel_x = 9;pixel_y = 2},/turf/open/floor/plasteel/vault{dir = 4},/area/ai_monitored/turret_protected/ai)
-"aYC" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";name = "KEEP CLEAR: DOCKING AREA";pixel_y = 0},/turf/closed/wall,/area/hallway/secondary/entry{name = "Arrivals"})
-"aYD" = (/obj/machinery/door/airlock/external{name = "Arrival Airlock"},/turf/open/floor/plating,/area/hallway/secondary/entry{name = "Arrivals"})
-"aYE" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"aYF" = (/obj/item/weapon/twohanded/required/kirbyplants{icon_state = "plant-05";layer = 4.1},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"aYG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;name = "EXTERNAL AIRLOCK";pixel_x = 0;pixel_y = -32},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"aYH" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"aYI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/turf/open/floor/plasteel/arrival{dir = 4},/area/hallway/secondary/entry{name = "Arrivals"})
-"aYJ" = (/obj/machinery/light_switch{pixel_x = -38},/obj/machinery/firealarm{dir = 8;pixel_x = -24},/turf/open/floor/plasteel/loadingarea{dir = 1},/area/quartermaster/storage)
-"aYK" = (/turf/open/floor/plasteel/loadingarea{dir = 1},/area/quartermaster/storage)
-"aYL" = (/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aYM" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aYN" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aYO" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/stripes/corner{dir = 2},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aYP" = (/obj/machinery/camera{c_tag = "Cargo Bay - Aft";dir = 1;network = list("SS13")},/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aYQ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aYR" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light_switch{pixel_x = 27},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"aYS" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/checkpoint/supply{name = "Security Post - Cargo"})
-"aYT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/maintenance{req_access_txt = "0";req_one_access_txt = "12;63;48;50"},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"aYU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/hallway/primary/central)
-"aYV" = (/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/obj/structure/disposalpipe/junction{dir = 1;icon_state = "pipe-j1"},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"aYW" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"aYX" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"aYY" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=3-Central-Port";location = "2.2-Leaving-Storage"},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"aYZ" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"aZa" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"aZb" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"aZc" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;on = 1;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"aZd" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"aZe" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/holopad,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"aZf" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable/yellow{icon_state = "4-8";d1 = 4;d2 = 8},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"aZg" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel{icon_state = "L2"},/area/hallway/primary/central)
-"aZh" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel{icon_state = "L4"},/area/hallway/primary/central)
-"aZi" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=2.1-Storage";location = "1.5-Fore-Central"},/turf/open/floor/plasteel{icon_state = "L6"},/area/hallway/primary/central)
-"aZj" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable/yellow{icon_state = "1-4";d1 = 1;d2 = 4},/turf/open/floor/plasteel{icon_state = "L8"},/area/hallway/primary/central)
-"aZk" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel{icon_state = "L10"},/area/hallway/primary/central)
-"aZl" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel{icon_state = "L12"},/area/hallway/primary/central)
-"aZm" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel{desc = "";icon_state = "L14"},/area/hallway/primary/central)
-"aZn" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"aZo" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"aZp" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=15-Court";location = "14.9-CrewQuarters-Central"},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"aZq" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"aZr" = (/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;on = 1;scrub_Toxins = 0},/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"aZs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/light{dir = 4;icon_state = "tube1"},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel/neutral/corner{dir = 4},/area/hallway/primary/central)
-"aZt" = (/turf/closed/wall,/area/storage/tools)
-"aZu" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/storage/tools)
-"aZv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/maintenance{name = "Storage Room";req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/starboard)
-"aZw" = (/turf/closed/wall/r_wall,/area/storage/tech)
-"aZx" = (/obj/machinery/power/apc{dir = 8;name = "Tech Storage APC";pixel_x = -27;pixel_y = 0},/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/obj/effect/landmark{name = "revenantspawn"},/turf/open/floor/plasteel/vault{dir = 8},/area/storage/tech)
-"aZy" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/vault{dir = 8},/area/storage/tech)
-"aZz" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/vault{dir = 8},/area/storage/tech)
-"aZA" = (/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel/vault{dir = 8},/area/storage/tech)
-"aZB" = (/obj/structure/table,/obj/item/stack/cable_coil{pixel_x = -3;pixel_y = 3},/obj/item/stack/cable_coil,/obj/item/weapon/stock_parts/cell/high{charge = 100;maxcharge = 15000},/obj/structure/extinguisher_cabinet{pixel_x = 27;pixel_y = 0},/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/black,/area/storage/tech)
-"aZC" = (/obj/machinery/button/door{desc = "A remote control-switch for the engineering security doors.";id = "Engineering";name = "Engineering Lockdown";pixel_x = -24;pixel_y = -5;req_access_txt = "10"},/obj/machinery/button/door{id = "atmos";name = "Atmospherics Lockdown";pixel_x = -24;pixel_y = 5;req_access_txt = "24"},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/vault{dir = 5},/area/engine/chiefs_office)
-"aZD" = (/obj/structure/table/reinforced,/obj/item/device/flashlight/lamp,/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/engine/chiefs_office)
-"aZE" = (/obj/structure/table/reinforced,/obj/item/weapon/folder/yellow,/obj/item/weapon/stamp/ce,/obj/item/weapon/reagent_containers/pill/patch/silver_sulf,/turf/open/floor/plasteel/neutral/side,/area/engine/chiefs_office)
-"aZF" = (/obj/structure/table/reinforced,/obj/item/weapon/clipboard,/obj/item/weapon/paper/monitorkey,/turf/open/floor/plasteel/neutral/side,/area/engine/chiefs_office)
-"aZG" = (/obj/structure/table/reinforced,/obj/machinery/cell_charger,/obj/item/weapon/stock_parts/cell/high{charge = 100;maxcharge = 15000},/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/engine/chiefs_office)
-"aZH" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/vault{dir = 5},/area/engine/chiefs_office)
-"aZI" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/shower{icon_state = "shower";dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = -27;pixel_y = 0},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/engine/engineering)
-"aZJ" = (/obj/effect/landmark{name = "lightsout"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9;pixel_y = 0},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/engineering)
-"aZK" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/machinery/shower{icon_state = "shower";dir = 8},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/engine/engineering)
-"aZL" = (/obj/structure/filingcabinet,/obj/structure/reagent_dispensers/peppertank{pixel_x = 0;pixel_y = 30},/obj/machinery/airalarm{dir = 4;pixel_x = -23;pixel_y = 0},/turf/open/floor/plasteel/red/side{dir = 9},/area/security/checkpoint/engineering)
-"aZM" = (/obj/structure/table,/obj/item/device/radio/intercom{dir = 4;name = "Station Intercom (General)";pixel_x = 0;pixel_y = 29},/obj/machinery/recharger{pixel_y = 4},/turf/open/floor/plasteel/red/side{dir = 1},/area/security/checkpoint/engineering)
-"aZN" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -1;pixel_y = 5},/obj/item/weapon/pen,/obj/machinery/newscaster/security_unit{pixel_x = 30;pixel_y = 0},/turf/open/floor/plasteel/red/side{dir = 5},/area/security/checkpoint/engineering)
-"aZO" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Library"},/turf/open/floor/wood,/area/library)
-"aZP" = (/obj/machinery/space_heater,/obj/effect/decal/cleanable/cobweb/cobweb2,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/starboard)
-"aZQ" = (/obj/effect/landmark{name = "tripai"},/obj/item/device/radio/intercom{anyai = 1;freerange = 1;listening = 0;name = "Custom Channel";pixel_x = -10;pixel_y = 22},/obj/item/device/radio/intercom{broadcasting = 0;freerange = 1;listening = 1;name = "Common Channel";pixel_x = -27;pixel_y = 0},/obj/item/device/radio/intercom{anyai = 1;broadcasting = 0;freerange = 1;frequency = 1447;name = "Private Channel";pixel_x = -10;pixel_y = -25},/obj/machinery/door/window{base_state = "rightsecure";dir = 4;obj_integrity = 300;icon_state = "rightsecure";layer = 4.1;name = "Secondary AI Core Access";pixel_x = 4;req_access_txt = "16"},/turf/open/floor/greengrid,/area/ai_monitored/turret_protected/ai)
-"aZR" = (/obj/machinery/holopad,/obj/machinery/flasher{id = "AI";pixel_x = -25;pixel_y = -25},/turf/open/floor/plasteel/vault{dir = 1},/area/ai_monitored/turret_protected/ai)
-"aZS" = (/obj/machinery/ai_slipper{uses = 10},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/bluegrid,/area/ai_monitored/turret_protected/ai)
-"aZT" = (/obj/machinery/vending/assist,/obj/machinery/light/small{dir = 1},/obj/structure/sign/poster{pixel_y = 32},/turf/open/floor/plasteel/brown{dir = 1},/area/storage/primary)
-"aZU" = (/obj/structure/closet/secure_closet/personal,/obj/item/clothing/under/assistantformal,/obj/item/clothing/suit/hooded/wintercoat,/obj/item/clothing/shoes/winterboots,/turf/open/floor/plasteel/vault,/area/crew_quarters/locker)
-"aZV" = (/obj/machinery/door/window{base_state = "rightsecure";dir = 4;obj_integrity = 300;icon_state = "rightsecure";name = "Primary AI Core Access";req_access_txt = "16"},/obj/machinery/camera{c_tag = "AI Chamber - Core";dir = 2;network = list("RD")},/turf/open/floor/plasteel/vault{dir = 10},/area/ai_monitored/turret_protected/ai)
-"aZW" = (/obj/machinery/ai_slipper{uses = 10},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/bluegrid,/area/ai_monitored/turret_protected/ai)
-"aZX" = (/obj/machinery/holopad,/obj/machinery/flasher{id = "AI";pixel_x = 25;pixel_y = 25},/turf/open/floor/plasteel/vault{dir = 4},/area/ai_monitored/turret_protected/ai)
-"aZY" = (/obj/effect/landmark{name = "tripai"},/obj/item/device/radio/intercom{anyai = 1;freerange = 1;listening = 0;name = "Custom Channel";pixel_x = 10;pixel_y = 22},/obj/item/device/radio/intercom{broadcasting = 0;freerange = 1;listening = 1;name = "Common Channel";pixel_x = 27;pixel_y = 0},/obj/item/device/radio/intercom{anyai = 1;broadcasting = 0;freerange = 1;frequency = 1447;name = "Private Channel";pixel_x = 10;pixel_y = -25},/obj/machinery/door/window{base_state = "leftsecure";dir = 8;obj_integrity = 300;icon_state = "leftsecure";layer = 4.1;name = "Tertiary AI Core Access";pixel_x = -3;req_access_txt = "16"},/turf/open/floor/greengrid,/area/ai_monitored/turret_protected/ai)
-"aZZ" = (/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plating,/area/hallway/secondary/entry{name = "Arrivals"})
-"baa" = (/obj/structure/closet/emcloset,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"bab" = (/obj/machinery/vending/cigarette,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"bac" = (/obj/machinery/vending/coffee,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"bad" = (/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"bae" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel/arrival{dir = 4},/area/hallway/secondary/entry{name = "Arrivals"})
-"baf" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/airlock/maintenance{req_access_txt = "0";req_one_access_txt = "12;48;50;1"},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bag" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bah" = (/obj/structure/closet/secure_closet/personal,/obj/item/clothing/under/assistantformal,/obj/structure/sign/map/right{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";icon_state = "map-right-MS";pixel_y = 32},/obj/item/clothing/suit/hooded/wintercoat,/obj/item/clothing/shoes/winterboots,/turf/open/floor/plasteel/vault,/area/crew_quarters/locker)
-"bai" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/starboard)
-"baj" = (/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bak" = (/obj/machinery/door/airlock/maintenance{name = "Cargo Bay Maintenance";req_access_txt = "0";req_one_access_txt = "48;50"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/quartermaster/storage)
-"bal" = (/obj/item/device/radio/intercom{broadcasting = 0;listening = 1;name = "Station Intercom (General)";pixel_y = -28},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/quartermaster/storage)
-"bam" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/quartermaster/storage)
-"ban" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"bao" = (/obj/machinery/conveyor_switch/oneway{id = "packageSort2";pixel_x = -8;pixel_y = -2},/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"bap" = (/obj/structure/rack,/obj/item/stack/packageWrap{pixel_x = 2;pixel_y = -3},/obj/item/stack/packageWrap{pixel_x = 2;pixel_y = -3},/obj/item/stack/packageWrap{pixel_x = 2;pixel_y = -3},/obj/item/stack/packageWrap{pixel_x = 2;pixel_y = -3},/obj/item/stack/packageWrap{pixel_x = 2;pixel_y = -3},/obj/item/stack/wrapping_paper,/obj/item/stack/wrapping_paper,/obj/item/device/destTagger{pixel_x = 4;pixel_y = 3},/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"baq" = (/obj/structure/rack,/obj/machinery/power/apc{dir = 2;name = "Cargo Bay APC";pixel_x = 1;pixel_y = -24},/obj/structure/cable/yellow,/obj/machinery/light,/obj/item/weapon/hand_labeler,/obj/item/weapon/hand_labeler,/obj/item/weapon/screwdriver{pixel_y = 10},/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"bar" = (/obj/structure/closet/wardrobe/cargotech,/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"bas" = (/obj/structure/closet/wardrobe/cargotech,/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/quartermaster/storage)
-"bat" = (/turf/closed/wall,/area/quartermaster/office{name = "\improper Cargo Office"})
-"bau" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_mining{glass = 0;name = "Cargo Bay";opacity = 1;req_access_txt = "0";req_one_access_txt = "48;50"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/quartermaster/office{name = "\improper Cargo Office"})
-"bav" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_mining{glass = 0;name = "Cargo Bay";opacity = 1;req_access_txt = "0";req_one_access_txt = "48;50"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/quartermaster/office{name = "\improper Cargo Office"})
-"baw" = (/obj/item/weapon/stamp{pixel_x = -3;pixel_y = 3},/obj/item/weapon/stamp/denied{pixel_x = 4;pixel_y = -2},/obj/structure/table/reinforced,/obj/structure/noticeboard{desc = "A board for pinning important notices upon. Probably helpful for keeping track of requests.";name = "requests board";pixel_x = 32;pixel_y = 32},/obj/machinery/requests_console{department = "Cargo Bay";departmentType = 2;pixel_x = 0;pixel_y = 30},/obj/item/weapon/pen/red,/turf/open/floor/plasteel/brown{dir = 9},/area/quartermaster/office{name = "\improper Cargo Office"})
-"bax" = (/obj/structure/table/reinforced,/obj/machinery/computer/stockexchange,/turf/open/floor/plasteel/brown{dir = 5},/area/quartermaster/office{name = "\improper Cargo Office"})
-"bay" = (/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the Cargo department is.";icon_state = "direction_supply";name = "cargo department";pixel_y = -5},/turf/closed/wall,/area/quartermaster/office{name = "\improper Cargo Office"})
-"baz" = (/obj/machinery/computer/cargo/request,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/primary/port)
-"baA" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/machinery/status_display{density = 0;pixel_x = 0;pixel_y = 32;supply_display = 1},/obj/structure/table,/obj/item/weapon/folder/yellow,/turf/open/floor/plasteel/brown{dir = 1},/area/hallway/primary/port)
-"baB" = (/obj/machinery/firealarm{dir = 2;pixel_y = 24},/turf/open/floor/plasteel/brown{dir = 1},/area/hallway/primary/port)
-"baC" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/brown{dir = 1},/area/hallway/primary/port)
-"baD" = (/obj/machinery/airalarm{pixel_y = 23},/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3;pixel_y = 7},/turf/open/floor/plasteel/brown{dir = 5},/area/hallway/primary/port)
-"baE" = (/turf/closed/wall,/area/hallway/primary/port)
-"baF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/extinguisher_cabinet{pixel_x = -27;pixel_y = 0},/obj/machinery/light{dir = 8},/obj/machinery/camera{c_tag = "Central Primary Hallway - Fore - Port Corner";dir = 4;network = list("SS13")},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/hallway/primary/central)
-"baG" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"baH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/hallway/primary/central)
-"baI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/hallway/primary/central)
-"baJ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2;initialize_directions = 11},/obj/structure/disposalpipe/segment{dir = 4},/mob/living/simple_animal/bot/cleanbot{auto_patrol = 1;icon_state = "cleanbot1";mode = 0;name = "Mopficcer Sweepsky"},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/hallway/primary/central)
-"baK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/hallway/primary/central)
-"baL" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1;initialize_directions = 11},/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 0;pixel_y = -30},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/hallway/primary/central)
-"baM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/airalarm{dir = 1;pixel_y = -22},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/hallway/primary/central)
-"baN" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2;initialize_directions = 11},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/hallway/primary/central)
-"baO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/hallway/primary/central)
-"baP" = (/obj/machinery/firealarm{dir = 1;pixel_y = -24},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2;initialize_directions = 11},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/hallway/primary/central)
-"baQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/hallway/primary/central)
-"baR" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2;initialize_directions = 11},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/hallway/primary/central)
-"baS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/holopad,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"baT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/hallway/primary/central)
-"baU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/firealarm{dir = 1;pixel_y = -24},/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/hallway/primary/central)
-"baV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera{c_tag = "Central Primary Hallway - Fore - Courtroom";dir = 1;network = list("SS13")},/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/hallway/primary/central)
-"baW" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1;initialize_directions = 11},/obj/machinery/light,/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/hallway/primary/central)
-"baX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/airalarm{dir = 1;pixel_y = -22},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/hallway/primary/central)
-"baY" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2;initialize_directions = 11},/obj/structure/extinguisher_cabinet{pixel_x = 0;pixel_y = -30},/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/hallway/primary/central)
-"baZ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1;initialize_directions = 11},/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = -27;pixel_y = -29},/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/hallway/primary/central)
-"bba" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bbb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/camera{c_tag = "Central Primary Hallway - Fore - Starboard Corner";dir = 8;network = list("SS13")},/turf/open/floor/plasteel/neutral/corner{dir = 4},/area/hallway/primary/central)
-"bbc" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plasteel/yellow/side{dir = 9},/area/storage/tools)
-"bbd" = (/obj/machinery/power/apc{dir = 1;name = "Auxiliary Tool Storage APC";pixel_y = 24},/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/yellow/side{dir = 1},/area/storage/tools)
-"bbe" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel/yellow/side{dir = 1},/area/storage/tools)
-"bbf" = (/obj/structure/closet/toolcloset,/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 0;pixel_y = 28},/turf/open/floor/plasteel/yellow/side{dir = 1},/area/storage/tools)
-"bbg" = (/obj/structure/closet/toolcloset,/turf/open/floor/plasteel/yellow/side{dir = 5},/area/storage/tools)
-"bbh" = (/obj/effect/decal/cleanable/cobweb,/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard)
-"bbi" = (/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/obj/item/weapon/cigbutt,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/starboard)
-"bbj" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/starboard)
-"bbk" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/circuitboard/computer/borgupload{pixel_x = -1;pixel_y = 1},/obj/item/weapon/circuitboard/computer/aiupload{pixel_x = 2;pixel_y = -2},/turf/open/floor/plasteel/black,/area/storage/tech)
-"bbl" = (/obj/machinery/camera{c_tag = "Secure Tech Storage";dir = 8},/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 29},/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/vault{dir = 8},/area/storage/tech)
-"bbm" = (/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/vault{dir = 8},/area/storage/tech)
-"bbn" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/circuitboard/computer/cloning{pixel_x = 0},/obj/item/weapon/circuitboard/computer/med_data{pixel_x = 3;pixel_y = -3},/obj/item/weapon/circuitboard/machine/clonescanner,/obj/item/weapon/circuitboard/machine/clonepod,/obj/item/weapon/circuitboard/computer/scan_consolenew,/turf/open/floor/plasteel/black,/area/storage/tech)
-"bbo" = (/turf/closed/wall,/area/maintenance/auxsolarport)
-"bbp" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/circuitboard/computer/powermonitor{pixel_x = -2;pixel_y = 2},/obj/item/weapon/circuitboard/computer/stationalert{pixel_x = 1;pixel_y = -1},/obj/item/weapon/circuitboard/computer/atmos_alert{pixel_x = 3;pixel_y = -3},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/black,/area/storage/tech)
-"bbq" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/vault{dir = 8},/area/storage/tech)
-"bbr" = (/obj/structure/table,/obj/item/weapon/electronics/apc,/obj/item/weapon/electronics/airlock,/turf/open/floor/plasteel/black,/area/storage/tech)
-"bbs" = (/obj/machinery/button/door{id = "transittube";name = "Transit Tube Lockdown";pixel_x = -24;pixel_y = -5;req_access_txt = "24"},/obj/machinery/button/door{desc = "A remote control-switch for secure storage.";id = "Secure Storage";name = "Engineering Secure Storage";pixel_x = -24;pixel_y = 5;req_access_txt = "11"},/turf/open/floor/plasteel/vault{dir = 5},/area/engine/chiefs_office)
-"bbt" = (/obj/item/weapon/cartridge/engineering{pixel_x = 4;pixel_y = 5},/obj/item/weapon/cartridge/engineering{pixel_x = -3;pixel_y = 2},/obj/item/weapon/cartridge/engineering{pixel_x = 3},/obj/structure/table/reinforced,/obj/item/weapon/cartridge/atmos,/turf/open/floor/plasteel/neutral/side{dir = 4},/area/engine/chiefs_office)
-"bbu" = (/obj/effect/landmark/start{name = "Chief Engineer"},/obj/structure/chair/office/light{dir = 1;pixel_y = 3},/turf/open/floor/plasteel/neutral{dir = 8},/area/engine/chiefs_office)
-"bbv" = (/obj/machinery/holopad,/turf/open/floor/plasteel/neutral{dir = 8},/area/engine/chiefs_office)
-"bbw" = (/obj/structure/table/reinforced,/obj/item/weapon/paper_bin{pixel_x = -3;pixel_y = 7},/obj/item/weapon/pen,/turf/open/floor/plasteel/neutral/side{dir = 8},/area/engine/chiefs_office)
-"bbx" = (/obj/machinery/computer/security/telescreen{desc = "Used for monitoring the singularity engine safely.";dir = 8;name = "Singularity Monitor";network = list("Singulo");pixel_x = 29;pixel_y = 0},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/light{dir = 4;icon_state = "tube1"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/vault{dir = 5},/area/engine/chiefs_office)
-"bby" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/machinery/light/small{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/engine/engineering)
-"bbz" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1;initialize_directions = 11},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/engineering)
-"bbA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/machinery/light/small{dir = 4},/obj/machinery/camera{c_tag = "Engineering - Entrance";dir = 8;network = list("SS13")},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/engine/engineering)
-"bbB" = (/obj/item/weapon/screwdriver{pixel_y = 10},/obj/item/device/radio/off,/obj/machinery/computer/security/telescreen{dir = 4;name = "MiniSat Monitor";network = list("MiniSat","tcomm");pixel_x = -29;pixel_y = 0},/turf/open/floor/plasteel/red/side{dir = 8},/area/security/checkpoint/engineering)
-"bbC" = (/obj/structure/chair/office/dark{dir = 4},/obj/effect/landmark/start/depsec/engineering,/turf/open/floor/plasteel,/area/security/checkpoint/engineering)
-"bbD" = (/obj/structure/table,/obj/item/weapon/book/manual/wiki/security_space_law,/obj/machinery/light{dir = 4},/obj/machinery/requests_console{department = "Security";departmentType = 5;pixel_x = 30;pixel_y = 0},/turf/open/floor/plasteel/red/side{dir = 4},/area/security/checkpoint/engineering)
-"bbE" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;name = "EXTERNAL AIRLOCK";pixel_x = 32;pixel_y = -32},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard)
-"bbF" = (/obj/structure/showcase{density = 0;desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze.";dir = 4;icon = 'icons/mob/robots.dmi';icon_state = "robot_old";name = "Cyborg Statue";pixel_x = -9;pixel_y = 2},/turf/open/floor/plasteel/vault{dir = 1},/area/ai_monitored/turret_protected/ai)
-"bbG" = (/obj/structure/closet/secure_closet/personal,/obj/machinery/light/small{dir = 1},/obj/item/clothing/under/assistantformal,/obj/structure/sign/map/left{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";icon_state = "map-left-MS";pixel_y = 32},/obj/item/clothing/suit/hooded/wintercoat,/obj/item/clothing/shoes/winterboots,/turf/open/floor/plasteel/vault,/area/crew_quarters/locker)
-"bbH" = (/obj/machinery/camera{c_tag = "AI Chamber - Starboard";dir = 8;network = list("RD")},/obj/structure/showcase{density = 0;desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze.";dir = 8;icon = 'icons/mob/robots.dmi';icon_state = "robot_old";name = "Cyborg Statue";pixel_x = 9;pixel_y = 2},/turf/open/floor/plasteel/vault{dir = 4},/area/ai_monitored/turret_protected/ai)
-"bbI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"bbJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/arrival{dir = 4},/area/hallway/secondary/entry{name = "Arrivals"})
-"bbK" = (/turf/closed/wall,/area/security/checkpoint2{name = "Customs"})
-"bbL" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bbM" = (/obj/item/stack/sheet/cardboard,/obj/item/weapon/storage/box/lights/mixed,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bbN" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/quartermaster/office{name = "\improper Cargo Office"})
-"bbO" = (/obj/structure/plasticflaps{opacity = 1},/obj/machinery/conveyor{backwards = 1;dir = 2;forwards = 2;id = "packageSort2"},/turf/open/floor/plasteel/loadingarea,/area/quartermaster/office{name = "\improper Cargo Office"})
-"bbP" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/quartermaster/office{name = "\improper Cargo Office"})
-"bbQ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/power/apc{dir = 8;name = "Cargo Office APC";pixel_x = -24;pixel_y = 0},/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/turf/open/floor/plasteel/brown{dir = 9},/area/quartermaster/office{name = "\improper Cargo Office"})
-"bbR" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8";tag = ""},/turf/open/floor/plasteel/brown{dir = 1},/area/quartermaster/office{name = "\improper Cargo Office"})
-"bbS" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/machinery/status_display{density = 0;pixel_x = 0;pixel_y = 32;supply_display = 1},/turf/open/floor/plasteel/brown{dir = 1},/area/quartermaster/office{name = "\improper Cargo Office"})
-"bbT" = (/turf/open/floor/plasteel/brown/corner{dir = 1},/area/quartermaster/office{name = "\improper Cargo Office"})
-"bbU" = (/obj/effect/landmark/start{name = "Cargo Technician"},/obj/structure/chair/office/dark{dir = 4},/turf/open/floor/plasteel/brown{dir = 4},/area/quartermaster/office{name = "\improper Cargo Office"})
-"bbV" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/westleft{dir = 8;name = "Cargo Desk";req_access_txt = "50"},/obj/item/weapon/paper_bin{pixel_x = -3;pixel_y = 7},/obj/item/weapon/pen,/turf/open/floor/plasteel,/area/quartermaster/office{name = "\improper Cargo Office"})
-"bbW" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/primary/port)
-"bbX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port)
-"bbY" = (/turf/open/floor/plasteel,/area/hallway/primary/port)
-"bbZ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/landmark{name = "lightsout"},/turf/open/floor/plasteel,/area/hallway/primary/port)
-"bca" = (/obj/structure/chair{dir = 8},/obj/machinery/light{dir = 4},/obj/machinery/camera{c_tag = "Cargo - Foyer";dir = 8;network = list("SS13")},/turf/open/floor/plasteel/brown{dir = 4},/area/hallway/primary/port)
-"bcb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = -29},/obj/machinery/status_display{density = 0;layer = 4;pixel_x = -32;pixel_y = 0},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/hallway/primary/central)
-"bcc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/hallway/primary/central)
-"bcd" = (/turf/closed/wall,/area/janitor)
-"bce" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Custodial Closet";req_access_txt = "26"},/turf/open/floor/plasteel,/area/janitor)
-"bcf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/janitor)
-"bcg" = (/turf/closed/wall,/area/maintenance/maintcentral{name = "Central Maintenance"})
-"bch" = (/obj/machinery/door/airlock{name = "Central Emergency Storage";req_access_txt = "0"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"})
-"bci" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/hallway/primary/central)
-"bcj" = (/turf/closed/wall/r_wall,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"bck" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"bcl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/hallway/primary/central)
-"bcm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plasteel/neutral/corner{dir = 4},/area/hallway/primary/central)
-"bcn" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/machinery/firealarm{dir = 8;pixel_x = -26;pixel_y = 0},/obj/item/clothing/gloves/color/fyellow,/obj/item/clothing/suit/hazardvest,/obj/item/device/multitool,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plasteel/yellow/side{dir = 8},/area/storage/tools)
-"bco" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/turf/open/floor/plasteel,/area/storage/tools)
-"bcp" = (/obj/machinery/holopad,/turf/open/floor/plasteel,/area/storage/tools)
-"bcq" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/storage/tools)
-"bcr" = (/obj/machinery/camera{c_tag = "Auxiliary Tool Storage";dir = 8;network = list("SS13")},/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/yellow/side{dir = 4},/area/storage/tools)
-"bcs" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating,/area/maintenance/starboard)
-"bct" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/turf/open/floor/plating,/area/maintenance/starboard)
-"bcu" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/storage/tech)
-"bcv" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/circuitboard/computer/crew{pixel_x = -1;pixel_y = 1},/obj/item/weapon/circuitboard/computer/card{pixel_x = 2;pixel_y = -2},/obj/item/weapon/circuitboard/computer/communications{pixel_x = 5;pixel_y = -5},/turf/open/floor/plasteel/black,/area/storage/tech)
-"bcw" = (/turf/open/floor/plasteel/vault{dir = 8},/area/storage/tech)
-"bcx" = (/obj/machinery/door/airlock/highsecurity{name = "Secure Tech Storage";req_access_txt = "19;23"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/vault{dir = 8},/area/storage/tech)
-"bcy" = (/obj/machinery/holopad,/turf/open/floor/plasteel/vault{dir = 8},/area/storage/tech)
-"bcz" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/turf/open/floor/plasteel/vault{dir = 8},/area/storage/tech)
-"bcA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/vault{dir = 8},/area/storage/tech)
-"bcB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/vault{dir = 8},/area/storage/tech)
-"bcC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/vault{dir = 8},/area/storage/tech)
-"bcD" = (/obj/structure/table,/obj/item/weapon/screwdriver{pixel_y = 16},/obj/item/weapon/wirecutters,/obj/item/device/multitool,/turf/open/floor/plasteel/vault{dir = 8},/area/storage/tech)
-"bcE" = (/obj/machinery/firealarm{dir = 8;pixel_x = -26;pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel/vault{dir = 5},/area/engine/chiefs_office)
-"bcF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/neutral/corner{dir = 4},/area/engine/chiefs_office)
-"bcG" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/neutral/side{dir = 1},/area/engine/chiefs_office)
-"bcH" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/engine/chiefs_office)
-"bcI" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/newscaster{pixel_x = 30;pixel_y = 0},/turf/open/floor/plasteel/vault{dir = 5},/area/engine/chiefs_office)
-"bcJ" = (/obj/structure/closet/toolcloset,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/engine/engineering)
-"bcK" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/engine/engineering)
-"bcL" = (/obj/machinery/power/apc{dir = 8;name = "Engineering Security APC";pixel_x = -24},/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/turf/open/floor/plasteel/red/side{dir = 8},/area/security/checkpoint/engineering)
-"bcM" = (/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel,/area/security/checkpoint/engineering)
-"bcN" = (/obj/machinery/computer/secure_data,/obj/machinery/computer/security/telescreen{desc = "Used for monitoring the singularity engine safely.";dir = 8;name = "Singularity Monitor";network = list("Singulo");pixel_x = 32;pixel_y = 0},/turf/open/floor/plasteel/red/side{dir = 4},/area/security/checkpoint/engineering)
-"bcO" = (/obj/structure/easel,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/starboard)
-"bcP" = (/obj/machinery/light{dir = 8},/obj/machinery/ai_status_display{pixel_x = -32;pixel_y = 0},/turf/open/floor/bluegrid,/area/ai_monitored/turret_protected/ai)
-"bcQ" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/open/space,/area/space)
-"bcR" = (/turf/closed/wall/mineral/titanium/overspace,/area/shuttle/arrival)
-"bcS" = (/turf/closed/wall/mineral/titanium,/area/shuttle/arrival)
-"bcT" = (/obj/machinery/door/airlock/titanium{name = "Arrivals Shuttle Airlock"},/turf/open/floor/mineral/titanium/blue,/area/shuttle/arrival)
-"bcU" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/open/floor/plating,/area/shuttle/arrival)
-"bcV" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/firealarm{dir = 4;pixel_x = 24},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/arrival{dir = 4},/area/hallway/secondary/entry{name = "Arrivals"})
-"bcW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/security/checkpoint2{name = "Customs"})
-"bcX" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1;initialize_directions = 11},/obj/structure/table/reinforced,/obj/item/weapon/book/manual/wiki/security_space_law{pixel_x = -3;pixel_y = 5},/turf/open/floor/plasteel/red/side{dir = 9},/area/security/checkpoint2{name = "Customs"})
-"bcY" = (/obj/machinery/power/apc{dir = 1;name = "Customs APC";pixel_y = 24},/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel/red/side{dir = 1},/area/security/checkpoint2{name = "Customs"})
-"bcZ" = (/obj/item/device/radio/intercom{broadcasting = 0;name = "Station Intercom (General)";pixel_y = 20},/obj/machinery/computer/security,/turf/open/floor/plasteel/red/side{dir = 1},/area/security/checkpoint2{name = "Customs"})
-"bda" = (/obj/machinery/computer/card,/obj/machinery/light{dir = 1},/obj/machinery/requests_console{department = "Security";departmentType = 5;pixel_y = 30},/obj/machinery/camera{c_tag = "Customs Checkpoint";dir = 2;network = list("SS13")},/turf/open/floor/plasteel/red/side{dir = 1},/area/security/checkpoint2{name = "Customs"})
-"bdb" = (/obj/machinery/computer/secure_data,/obj/machinery/newscaster/security_unit{pixel_x = 0;pixel_y = 30},/turf/open/floor/plasteel/red/side{dir = 1},/area/security/checkpoint2{name = "Customs"})
-"bdc" = (/obj/machinery/light_switch{pixel_x = 27},/obj/structure/reagent_dispensers/peppertank{pixel_x = 0;pixel_y = 30},/obj/structure/closet/secure_closet/security,/turf/open/floor/plasteel/red/side{dir = 5},/area/security/checkpoint2{name = "Customs"})
-"bdd" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bde" = (/obj/machinery/light/small{dir = 4},/obj/machinery/space_heater,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bdf" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/turf/closed/wall,/area/quartermaster/office{name = "\improper Cargo Office"})
-"bdg" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/conveyor{dir = 4;id = "packageSort2"},/obj/structure/disposaloutlet{dir = 4},/turf/open/floor/plating,/area/quartermaster/office{name = "\improper Cargo Office"})
-"bdh" = (/obj/machinery/conveyor{dir = 4;id = "packageSort2"},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/quartermaster/office{name = "\improper Cargo Office"})
-"bdi" = (/obj/machinery/conveyor{dir = 4;id = "packageSort2"},/turf/open/floor/plating,/area/quartermaster/office{name = "\improper Cargo Office"})
-"bdj" = (/obj/machinery/conveyor{dir = 4;id = "packageSort2"},/obj/structure/plasticflaps{opacity = 0},/turf/open/floor/plating,/area/quartermaster/office{name = "\improper Cargo Office"})
-"bdk" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal/deliveryChute{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/quartermaster/office{name = "\improper Cargo Office"})
-"bdl" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/extinguisher_cabinet{pixel_x = -27;pixel_y = 0},/turf/open/floor/plasteel/brown{dir = 8},/area/quartermaster/office{name = "\improper Cargo Office"})
-"bdm" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/quartermaster/office{name = "\improper Cargo Office"})
-"bdn" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8;initialize_directions = 11},/turf/open/floor/plasteel,/area/quartermaster/office{name = "\improper Cargo Office"})
-"bdo" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office{name = "\improper Cargo Office"})
-"bdp" = (/obj/machinery/computer/cargo,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/brown{dir = 4},/area/quartermaster/office{name = "\improper Cargo Office"})
-"bdq" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/quartermaster/office{name = "\improper Cargo Office"})
-"bdr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/hallway/primary/port)
-"bds" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4;initialize_directions = 11},/turf/open/floor/plasteel,/area/hallway/primary/port)
-"bdt" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel,/area/hallway/primary/port)
-"bdu" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port)
-"bdv" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel/brown{dir = 4},/area/hallway/primary/port)
-"bdw" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/hallway/primary/port)
-"bdx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/brown/corner{dir = 8},/area/hallway/primary/central)
-"bdy" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/sortjunction{dir = 1;icon_state = "pipe-j1s";sortType = 22},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bdz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/machinery/firealarm{dir = 4;pixel_x = 24},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/hallway/primary/central)
-"bdA" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/light_switch{pixel_x = 8;pixel_y = 30},/turf/open/floor/plasteel/floorgrime,/area/janitor)
-"bdB" = (/turf/open/floor/plasteel/floorgrime,/area/janitor)
-"bdC" = (/obj/structure/closet/l3closet/janitor,/obj/machinery/airalarm{pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/floorgrime,/area/janitor)
-"bdD" = (/obj/structure/closet/jcloset,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel/floorgrime,/area/janitor)
-"bdE" = (/obj/structure/closet/firecloset,/turf/open/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"})
-"bdF" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"})
-"bdG" = (/turf/closed/wall/r_wall,/area/maintenance/maintcentral{name = "Central Maintenance"})
-"bdH" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green{pixel_x = 1;pixel_y = 5},/obj/item/device/radio/intercom{dir = 0;name = "Station Intercom (General)";pixel_x = -27;pixel_y = 0},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 0;pixel_y = 32},/turf/open/floor/carpet,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"bdI" = (/obj/machinery/status_display{density = 0;layer = 4;pixel_x = 0;pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/table/wood,/obj/item/weapon/pinpointer,/obj/item/weapon/disk/nuclear,/turf/open/floor/carpet,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"bdJ" = (/obj/machinery/light{dir = 1},/obj/machinery/computer/security/wooden_tv,/turf/open/floor/carpet,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"bdK" = (/obj/machinery/ai_status_display{pixel_y = 32},/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/turf/open/floor/carpet,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"bdL" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/carpet,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"bdM" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/filingcabinet{pixel_x = 4},/turf/open/floor/wood,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"bdN" = (/obj/machinery/light_switch{pixel_x = 28;pixel_y = 0},/obj/structure/dresser,/obj/item/weapon/storage/secure/safe{pixel_x = 6;pixel_y = 28},/turf/open/floor/wood,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"bdO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/hallway/primary/central)
-"bdP" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bdQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/neutral/corner{dir = 4},/area/hallway/primary/central)
-"bdR" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/emergency,/obj/machinery/light_switch{pixel_x = -26},/turf/open/floor/plasteel/yellow/side{dir = 10},/area/storage/tools)
-"bdS" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/weapon/storage/box/lights/mixed,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/yellow/side{dir = 2},/area/storage/tools)
-"bdT" = (/turf/open/floor/plasteel/yellow/side{dir = 2},/area/storage/tools)
-"bdU" = (/obj/structure/rack,/obj/item/weapon/electronics/apc,/obj/item/weapon/electronics/airlock,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plasteel/yellow/side{dir = 2},/area/storage/tools)
-"bdV" = (/obj/structure/table,/obj/item/stack/sheet/glass{amount = 50},/obj/item/stack/rods{amount = 50},/turf/open/floor/plasteel/yellow/side{dir = 6},/area/storage/tools)
-"bdW" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating{icon_plating = "warnplate"},/area/maintenance/starboard)
-"bdX" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/circuitboard/computer/robotics{pixel_x = -2;pixel_y = 2},/obj/item/weapon/circuitboard/computer/mecha_control{pixel_x = 1;pixel_y = -1},/turf/open/floor/plasteel/black,/area/storage/tech)
-"bdY" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/vault{dir = 8},/area/storage/tech)
-"bdZ" = (/obj/machinery/vending/assist,/turf/open/floor/plasteel/black,/area/storage/tech)
-"bea" = (/obj/structure/table,/obj/item/device/plant_analyzer,/obj/machinery/firealarm{dir = 1;pixel_y = -24},/turf/open/floor/plasteel/black,/area/storage/tech)
-"beb" = (/obj/structure/table,/obj/item/device/analyzer,/obj/item/device/healthanalyzer,/obj/machinery/camera/autoname{dir = 1},/turf/open/floor/plasteel/black,/area/storage/tech)
-"bec" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1;pixel_y = -1},/obj/item/device/multitool,/obj/item/clothing/glasses/meson,/obj/machinery/light_switch{pixel_x = 0;pixel_y = -28},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/black,/area/storage/tech)
-"bed" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/vault{dir = 8},/area/storage/tech)
-"bee" = (/obj/structure/table,/obj/machinery/cell_charger{pixel_y = 0},/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/obj/item/weapon/stock_parts/cell/high{charge = 100;maxcharge = 15000},/turf/open/floor/plasteel/black,/area/storage/tech)
-"bef" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 0;pixel_y = -28},/turf/open/floor/plasteel/vault{dir = 5},/area/engine/chiefs_office)
-"beg" = (/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 0;pixel_y = -29},/obj/machinery/suit_storage_unit/ce,/turf/open/floor/plasteel/vault{dir = 5},/area/engine/chiefs_office)
-"beh" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/storage/secure/briefcase,/obj/item/clothing/mask/cigarette/cigar,/obj/machinery/computer/security/telescreen{dir = 1;name = "MiniSat Monitor";network = list("MiniSat","tcomm");pixel_x = 0;pixel_y = -30},/turf/open/floor/plasteel/vault{dir = 5},/area/engine/chiefs_office)
-"bei" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/lighter,/obj/item/clothing/glasses/meson,/obj/machinery/button/door{id = "ceprivacy";name = "Privacy Shutters Control";pixel_x = 0;pixel_y = -26},/turf/open/floor/plasteel/vault{dir = 5},/area/engine/chiefs_office)
-"bej" = (/obj/structure/filingcabinet/chestdrawer,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/mob/living/simple_animal/parrot/Poly,/turf/open/floor/plasteel/vault{dir = 5},/area/engine/chiefs_office)
-"bek" = (/obj/structure/closet/secure_closet/engineering_chief{req_access_txt = "0"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/turf/open/floor/plasteel/vault{dir = 5},/area/engine/chiefs_office)
-"bel" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Engine Room";req_access_txt = "10"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/engine/engineering)
-"bem" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/obj/machinery/camera/autoname{dir = 4;network = list("SS13")},/obj/machinery/button/door{desc = "A remote control-switch for the engineering security doors.";id = "Engineering";name = "Engineering Lockdown";pixel_x = -24;pixel_y = -6;req_access_txt = "1"},/obj/machinery/button/door{id = "atmos";name = "Atmospherics Lockdown";pixel_x = -24;pixel_y = 5;req_access_txt = "1"},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel/red/side{dir = 10},/area/security/checkpoint/engineering)
-"ben" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel/red/side,/area/security/checkpoint/engineering)
-"beo" = (/obj/structure/closet/secure_closet/security/engine,/obj/machinery/firealarm{dir = 4;pixel_x = 24},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel/red/side{dir = 6},/area/security/checkpoint/engineering)
-"bep" = (/turf/closed/wall,/area/engine/break_room)
-"beq" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;name = "EXTERNAL AIRLOCK";pixel_x = 0;pixel_y = 0},/turf/closed/wall/r_wall,/area/space)
-"ber" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/turf/open/space,/area/space)
-"bes" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel/black,/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"bet" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/machinery/light/small{dir = 4},/obj/machinery/camera{c_tag = "MiniSat Exterior - Port Fore";dir = 8;network = list("MiniSat")},/turf/open/floor/plasteel/black,/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"beu" = (/obj/machinery/airalarm{pixel_y = 23},/turf/open/floor/bluegrid,/area/ai_monitored/turret_protected/ai)
-"bev" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/machinery/portable_atmospherics/pump,/obj/structure/sign/poster{pixel_y = 32},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/crew_quarters/locker)
-"bew" = (/obj/machinery/power/apc{aidisabled = 0;dir = 1;name = "AI Chamber APC";pixel_y = 24},/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/bluegrid,/area/ai_monitored/turret_protected/ai)
-"bex" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/bluegrid,/area/ai_monitored/turret_protected/ai)
-"bey" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/light/small{dir = 8},/obj/machinery/camera{c_tag = "MiniSat Exterior - Starboard Fore";dir = 4;network = list("MiniSat")},/turf/open/floor/plasteel/black,/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"bez" = (/obj/structure/window/reinforced{dir = 1;layer = 2.9},/obj/structure/window/reinforced,/turf/open/floor/plasteel/black,/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"beA" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1;layer = 2.9},/turf/open/floor/plasteel/black,/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"beB" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular{pixel_x = 3;pixel_y = -3},/turf/open/floor/mineral/titanium/blue,/area/shuttle/arrival)
-"beC" = (/turf/open/floor/mineral/titanium/blue,/area/shuttle/arrival)
-"beD" = (/obj/machinery/computer/arcade,/turf/open/floor/mineral/titanium/blue,/area/shuttle/arrival)
-"beE" = (/obj/structure/closet/wardrobe/green,/turf/open/floor/mineral/titanium/blue,/area/shuttle/arrival)
-"beF" = (/obj/structure/closet/wardrobe/black,/obj/structure/sign/map/left{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";icon_state = "map-left-MS";pixel_y = 32},/turf/open/floor/mineral/titanium/blue,/area/shuttle/arrival)
-"beG" = (/obj/structure/closet/wardrobe/mixed,/obj/structure/sign/map/right{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";icon_state = "map-right-MS";pixel_y = 32},/turf/open/floor/mineral/titanium/blue,/area/shuttle/arrival)
-"beH" = (/obj/structure/closet/wardrobe/grey,/turf/open/floor/mineral/titanium/blue,/area/shuttle/arrival)
-"beI" = (/obj/machinery/camera{c_tag = "Arrivals Shuttle";dir = 2;network = list("SS13")},/turf/open/floor/mineral/titanium/blue,/area/shuttle/arrival)
-"beJ" = (/obj/structure/shuttle/engine/propulsion{icon_state = "burst_r";dir = 8},/turf/open/floor/plating,/area/shuttle/arrival)
-"beK" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/turf/open/floor/plating,/area/security/checkpoint2{name = "Customs"})
-"beL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/table/reinforced,/obj/item/weapon/folder/red,/obj/item/weapon/folder/red,/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/red/side{dir = 8},/area/security/checkpoint2{name = "Customs"})
-"beM" = (/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/checkpoint2{name = "Customs"})
-"beN" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel,/area/security/checkpoint2{name = "Customs"})
-"beO" = (/obj/structure/chair/office/dark,/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/checkpoint2{name = "Customs"})
-"beP" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel,/area/security/checkpoint2{name = "Customs"})
-"beQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/red/side{dir = 4},/area/security/checkpoint2{name = "Customs"})
-"beR" = (/obj/machinery/door/airlock/maintenance{name = "Security Maintenance";req_access_txt = "1"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/security/checkpoint2{name = "Customs"})
-"beS" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"beT" = (/obj/effect/landmark{name = "blobstart"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"beU" = (/obj/machinery/door/airlock/maintenance{name = "Mailroom Maintenance";req_access_txt = "50"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/quartermaster/office{name = "\improper Cargo Office"})
-"beV" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/office{name = "\improper Cargo Office"})
-"beW" = (/obj/structure/chair/stool,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/office{name = "\improper Cargo Office"})
-"beX" = (/obj/machinery/conveyor_switch/oneway{id = "packageSort2";pixel_x = -2;pixel_y = 12},/obj/machinery/light{icon_state = "tube1";dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/office{name = "\improper Cargo Office"})
-"beY" = (/obj/machinery/airalarm{dir = 4;icon_state = "alarm0";pixel_x = -22},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/light{dir = 8},/obj/machinery/camera{c_tag = "Cargo - Office";dir = 4;network = list("SS13")},/turf/open/floor/plasteel/brown{dir = 8},/area/quartermaster/office{name = "\improper Cargo Office"})
-"beZ" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel,/area/quartermaster/office{name = "\improper Cargo Office"})
-"bfa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel,/area/quartermaster/office{name = "\improper Cargo Office"})
-"bfb" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/quartermaster/office{name = "\improper Cargo Office"})
-"bfc" = (/obj/structure/filingcabinet/filingcabinet,/turf/open/floor/plasteel/brown{dir = 4},/area/quartermaster/office{name = "\improper Cargo Office"})
-"bfd" = (/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/hallway/primary/port)
-"bfe" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port)
-"bff" = (/turf/open/floor/plasteel/brown/corner{dir = 4},/area/hallway/primary/port)
-"bfg" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel/brown{dir = 1},/area/hallway/primary/port)
-"bfh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/brown/corner{dir = 1},/area/hallway/primary/central)
-"bfi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/hallway/primary/central)
-"bfj" = (/obj/item/weapon/restraints/legcuffs/beartrap,/obj/item/weapon/restraints/legcuffs/beartrap,/obj/structure/table,/obj/machinery/requests_console{department = "Janitorial";departmentType = 1;pixel_x = -29;pixel_y = 0},/obj/item/weapon/reagent_containers/spray/cleaner,/obj/machinery/camera{c_tag = "Custodial Closet";dir = 4;network = list("SS13")},/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/floorgrime,/area/janitor)
-"bfk" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plating,/area/janitor)
-"bfl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel/floorgrime,/area/janitor)
-"bfm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/turf/open/floor/plasteel/floorgrime,/area/janitor)
-"bfn" = (/obj/machinery/door/airlock/maintenance{name = "Custodial Maintenance";req_access_txt = "26"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/janitor)
-"bfo" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"})
-"bfp" = (/obj/item/device/flashlight{pixel_x = 1;pixel_y = 5},/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"})
-"bfq" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"})
-"bfr" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "bridge blast";layer = 2.9;name = "bridge blast door"},/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/turf/open/floor/plating,/area/bridge)
-"bfs" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "bridge blast";layer = 2.9;name = "bridge blast door"},/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/turf/open/floor/plating,/area/bridge)
-"bft" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "bridge blast";layer = 2.9;name = "bridge blast door"},/turf/open/floor/plating,/area/bridge)
-"bfu" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "bridge blast";layer = 2.9;name = "bridge blast door"},/turf/open/floor/plating,/area/bridge)
-"bfv" = (/turf/closed/wall/r_wall,/area/bridge)
-"bfw" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "bridge blast";layer = 2.9;name = "bridge blast door"},/turf/open/floor/plating,/area/bridge)
-"bfx" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "bridge blast";layer = 2.9;name = "bridge blast door"},/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/turf/open/floor/plating,/area/bridge)
-"bfy" = (/obj/structure/table/wood,/obj/machinery/newscaster/security_unit{pixel_x = -30;pixel_y = 1},/turf/open/floor/carpet,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"bfz" = (/obj/effect/landmark/start{name = "Captain"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/chair/comfy/brown{icon_state = "comfychair";dir = 8},/turf/open/floor/carpet,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"bfA" = (/turf/open/floor/carpet,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"bfB" = (/obj/structure/disposalpipe/segment,/turf/open/floor/carpet,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"bfC" = (/obj/machinery/door/window/westright,/turf/open/floor/wood,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"bfD" = (/obj/structure/bed,/obj/item/weapon/bedsheet/captain,/obj/effect/landmark/start{name = "Captain"},/obj/machinery/camera{c_tag = "Captain's Quarters";dir = 8;network = list("SS13")},/turf/open/floor/wood,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"bfE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/airalarm{dir = 4;icon_state = "alarm0";pixel_x = -22},/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/hallway/primary/central)
-"bfF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plasteel/yellow/corner{dir = 4},/area/hallway/primary/central)
-"bfG" = (/obj/structure/sign/directions/security{desc = "A direction sign, pointing out which way the security department is.";dir = 1;icon_state = "direction_sec";pixel_x = 0;pixel_y = 8},/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the engineering department is.";dir = 4;icon_state = "direction_eng";pixel_y = 0},/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the bridge is.";dir = 2;icon_state = "direction_bridge";name = "bridge";pixel_y = -8},/turf/closed/wall/r_wall,/area/storage/tools)
-"bfH" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/storage/tools)
-"bfI" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Auxiliary Tool Storage";req_access_txt = "12"},/turf/open/floor/plasteel,/area/storage/tools)
-"bfJ" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/storage/tools)
-"bfK" = (/obj/structure/closet/emcloset,/obj/structure/sign/map/left{icon_state = "map-left-MS";pixel_y = 32},/turf/open/floor/plasteel/vault,/area/hallway/primary/starboard)
-"bfL" = (/obj/structure/sign/map/right{desc = "A framed picture of the station. Clockwise from security in red at the top, you see engineering in yellow, science in purple, escape in checkered red-and-white, medbay in green, arrivals in checkered red-and-blue, and then cargo in brown.";icon_state = "map-right-MS";pixel_y = 32},/obj/structure/closet/firecloset,/turf/open/floor/plasteel/vault,/area/hallway/primary/starboard)
-"bfM" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/starboard)
-"bfN" = (/turf/closed/wall,/area/hallway/primary/starboard)
-"bfO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/storage/tech)
-"bfP" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Tech Storage";req_access_txt = "0";req_one_access_txt = "23;30"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/vault{dir = 8},/area/storage/tech)
-"bfQ" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "ceprivacy";name = "privacy shutter"},/turf/open/floor/plating,/area/engine/chiefs_office)
-"bfR" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow,/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "ceprivacy";name = "privacy shutter"},/turf/open/floor/plating,/area/engine/chiefs_office)
-"bfS" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/turf/open/floor/plasteel/black,/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"bfT" = (/obj/machinery/door/poddoor{density = 0;icon_state = "open";id = "Engineering";name = "Engineering Security Doors";opacity = 0},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/engine/break_room)
-"bfU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bfV" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow,/turf/open/floor/plating,/area/security/checkpoint/engineering)
-"bfW" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Engineering Security Post";req_access_txt = "63"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/checkpoint/engineering)
-"bfX" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow,/turf/open/floor/plating,/area/security/checkpoint/engineering)
-"bfY" = (/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/engine/break_room)
-"bfZ" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/engine/break_room)
-"bga" = (/obj/structure/shuttle/engine/propulsion/burst{dir = 4},/turf/closed/wall/mineral/titanium,/area/shuttle/pod_4)
-"bgb" = (/turf/closed/wall/mineral/titanium,/area/shuttle/pod_4)
-"bgc" = (/obj/machinery/door/airlock/hatch{icon_state = "door_closed";name = "MiniSat Space Access Airlock";req_one_access_txt = "32;19"},/turf/open/floor/plating,/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"bgd" = (/turf/open/floor/plasteel/vault{dir = 8},/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"bge" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel/vault{dir = 8},/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"bgf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/vault{dir = 8},/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"bgg" = (/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/obj/machinery/door/window{base_state = "right";dir = 8;icon_state = "right";name = "MiniSat Airlock Access";req_access_txt = "0"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/black,/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"bgh" = (/obj/structure/table/reinforced,/obj/item/weapon/paper_bin{pixel_x = -3;pixel_y = 7},/obj/machinery/firealarm{dir = 8;pixel_x = -26;pixel_y = 0},/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai)
-"bgi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai)
-"bgj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/machinery/ai_slipper{uses = 10},/turf/open/floor/bluegrid,/area/ai_monitored/turret_protected/ai)
-"bgk" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/bluegrid,/area/ai_monitored/turret_protected/ai)
-"bgl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9;pixel_y = 0},/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai)
-"bgm" = (/obj/structure/table/reinforced,/obj/item/weapon/phone{pixel_x = -3;pixel_y = 3},/obj/item/weapon/cigbutt/cigarbutt{pixel_x = 5;pixel_y = -1},/obj/item/device/radio/intercom{broadcasting = 1;frequency = 1447;listening = 0;name = "Station Intercom (AI Private)";pixel_x = 28;pixel_y = 0},/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai)
-"bgn" = (/obj/structure/window/reinforced{dir = 1;layer = 2.9},/turf/open/space,/area/space)
-"bgo" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1;layer = 2.9},/turf/open/space,/area/space)
-"bgp" = (/obj/structure/table,/obj/item/device/analyzer,/obj/machinery/power/apc{dir = 2;name = "Tool Storage APC";pixel_x = 0;pixel_y = -27},/obj/structure/cable/yellow,/obj/item/weapon/wrench,/obj/structure/sign/poster{pixel_x = -32},/turf/open/floor/plasteel/brown{dir = 10},/area/storage/primary)
-"bgq" = (/obj/structure/chair,/turf/open/floor/mineral/titanium/blue,/area/shuttle/arrival)
-"bgr" = (/obj/structure/chair{dir = 8},/obj/effect/landmark{name = "JoinLate"},/turf/open/floor/mineral/titanium/blue,/area/shuttle/arrival)
-"bgs" = (/obj/effect/landmark{name = "JoinLate"},/turf/open/floor/mineral/titanium/blue,/area/shuttle/arrival)
-"bgt" = (/obj/structure/shuttle/engine/heater{icon_state = "heater";dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plating,/area/shuttle/arrival)
-"bgu" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion";dir = 8},/turf/open/floor/plating,/area/shuttle/arrival)
-"bgv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light{icon_state = "tube1";dir = 4},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/arrival{dir = 4},/area/hallway/secondary/entry{name = "Arrivals"})
-"bgw" = (/obj/machinery/airalarm{dir = 4;icon_state = "alarm0";pixel_x = -22},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/closet,/obj/item/weapon/crowbar,/obj/item/device/assembly/flash/handheld,/obj/item/device/radio,/turf/open/floor/plasteel/red/side{dir = 10},/area/security/checkpoint2{name = "Customs"})
-"bgx" = (/turf/open/floor/plasteel/red/side,/area/security/checkpoint2{name = "Customs"})
-"bgy" = (/obj/item/weapon/paper_bin{pixel_x = 1;pixel_y = 9},/obj/item/weapon/pen,/obj/structure/table/reinforced,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/red/side,/area/security/checkpoint2{name = "Customs"})
-"bgz" = (/obj/item/weapon/paper,/obj/structure/table/reinforced,/obj/machinery/door/window/brigdoor{dir = 2;name = "Arrivals Security Checkpoint";pixel_y = -8;req_access_txt = "1"},/turf/open/floor/plasteel/red/side,/area/security/checkpoint2{name = "Customs"})
-"bgA" = (/obj/machinery/recharger{pixel_y = 4},/obj/structure/table/reinforced,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/red/side,/area/security/checkpoint2{name = "Customs"})
-"bgB" = (/obj/machinery/light/small{dir = 1},/obj/machinery/airalarm{pixel_y = 28},/obj/structure/closet/crate/secure/weapon{desc = "A secure clothing crate.";name = "formal uniform crate";req_access_txt = "3"},/obj/item/clothing/under/rank/security/navyblue,/obj/item/clothing/under/rank/security/navyblue,/obj/item/clothing/under/rank/security/navyblue,/obj/item/clothing/under/rank/security/navyblue,/obj/item/clothing/under/rank/security/navyblue,/obj/item/clothing/under/rank/security/navyblue,/obj/item/clothing/suit/security/officer,/obj/item/clothing/suit/security/officer,/obj/item/clothing/suit/security/officer,/obj/item/clothing/suit/security/officer,/obj/item/clothing/suit/security/officer,/obj/item/clothing/suit/security/officer,/obj/item/clothing/under/rank/warden/navyblue,/obj/item/clothing/suit/security/warden,/obj/item/clothing/under/rank/head_of_security/navyblue,/obj/item/clothing/suit/security/hos,/obj/item/clothing/head/beret/sec/navyofficer,/obj/item/clothing/head/beret/sec/navyofficer,/obj/item/clothing/head/beret/sec/navyofficer,/obj/item/clothing/head/beret/sec/navyofficer,/obj/item/clothing/head/beret/sec/navyofficer,/obj/item/clothing/head/beret/sec/navyofficer,/obj/item/clothing/head/beret/sec/navywarden,/obj/item/clothing/head/beret/sec/navyhos,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/security/warden)
-"bgC" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bgD" = (/obj/machinery/space_heater,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bgE" = (/obj/structure/disposalpipe/wrapsortjunction{dir = 1},/turf/closed/wall,/area/quartermaster/office{name = "\improper Cargo Office"})
-"bgF" = (/obj/structure/disposaloutlet{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plating,/area/quartermaster/office{name = "\improper Cargo Office"})
-"bgG" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced,/obj/machinery/door/window/eastleft{name = "Mail";req_access_txt = "50"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/quartermaster/office{name = "\improper Cargo Office"})
-"bgH" = (/turf/open/floor/plasteel/loadingarea{dir = 4},/area/quartermaster/office{name = "\improper Cargo Office"})
-"bgI" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/quartermaster/office{name = "\improper Cargo Office"})
-"bgJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel,/area/quartermaster/office{name = "\improper Cargo Office"})
-"bgK" = (/obj/machinery/firealarm{dir = 2;pixel_y = 24},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/office{name = "\improper Cargo Office"})
-"bgL" = (/obj/machinery/status_display{density = 0;pixel_x = 0;pixel_y = 32;supply_display = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office{name = "\improper Cargo Office"})
-"bgM" = (/obj/machinery/light_switch{pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office{name = "\improper Cargo Office"})
-"bgN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_mining{name = "Mailroom";req_access_txt = "0";req_one_access_txt = "48;50"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/quartermaster/office{name = "\improper Cargo Office"})
-"bgO" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/turf/open/floor/plasteel/brown{dir = 8},/area/quartermaster/office{name = "\improper Cargo Office"})
-"bgP" = (/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office{name = "\improper Cargo Office"})
-"bgQ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/quartermaster/office{name = "\improper Cargo Office"})
-"bgR" = (/obj/structure/disposalpipe/segment,/obj/effect/landmark/start{name = "Cargo Technician"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/quartermaster/office{name = "\improper Cargo Office"})
-"bgS" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/brown{dir = 4},/area/quartermaster/office{name = "\improper Cargo Office"})
-"bgT" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_mining{name = "Cargo Office";req_access_txt = "0";req_one_access_txt = "48;50"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/quartermaster/office{name = "\improper Cargo Office"})
-"bgU" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/brown{dir = 8},/area/hallway/primary/port)
-"bgV" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/primary/port)
-"bgW" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port)
-"bgX" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/disposalpipe/junction{dir = 2;icon_state = "pipe-j1"},/turf/open/floor/plasteel,/area/hallway/primary/port)
-"bgY" = (/turf/open/floor/plasteel/brown/corner{dir = 2},/area/hallway/primary/port)
-"bgZ" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel/brown{dir = 2},/area/hallway/primary/port)
-"bha" = (/obj/machinery/power/apc{dir = 8;name = "Custodial Closet APC";pixel_x = -24},/obj/structure/table,/obj/item/clothing/gloves/color/orange,/obj/item/weapon/storage/box/mousetraps,/obj/item/weapon/storage/box/mousetraps,/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/turf/open/floor/plasteel/floorgrime,/area/janitor)
-"bhb" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/portable_atmospherics/canister/water_vapor,/mob/living/simple_animal/hostile/lizard{name = "Wags-His-Tail";real_name = "Wags-His-Tail"},/turf/open/floor/plasteel/floorgrime,/area/janitor)
-"bhc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/effect/landmark/start{name = "Janitor"},/turf/open/floor/plasteel/floorgrime,/area/janitor)
-"bhd" = (/obj/structure/sink{dir = 4;icon_state = "sink";pixel_x = 11;pixel_y = 0},/obj/item/weapon/reagent_containers/glass/bucket,/obj/item/weapon/mop,/obj/structure/disposalpipe/segment,/obj/machinery/firealarm{dir = 4;pixel_x = 24},/turf/open/floor/plasteel/floorgrime,/area/janitor)
-"bhe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"})
-"bhf" = (/obj/effect/landmark{name = "blobstart"},/obj/machinery/power/apc{cell_type = 2500;dir = 4;name = "Central Maintenance APC";pixel_x = 26;pixel_y = 0},/obj/structure/cable/yellow,/turf/open/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"})
-"bhg" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "bridge blast";layer = 2.9;name = "bridge blast door"},/obj/structure/cable/yellow,/turf/open/floor/plating,/area/bridge)
-"bhh" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/computer/card,/turf/open/floor/plasteel/darkgreen/side{dir = 9},/area/bridge)
-"bhi" = (/obj/machinery/computer/med_data,/turf/open/floor/plasteel/darkgreen/side{dir = 1},/area/bridge)
-"bhj" = (/obj/machinery/computer/crew,/turf/open/floor/plasteel/darkgreen/side{dir = 1},/area/bridge)
-"bhk" = (/obj/machinery/status_display{density = 0;layer = 4;pixel_x = 0;pixel_y = 32},/obj/item/weapon/folder/yellow{pixel_y = 4},/obj/machinery/camera{c_tag = "Bridge - Central";dir = 2;network = list("SS13")},/obj/structure/table/glass,/turf/open/floor/plasteel/darkbrown/side{dir = 1},/area/bridge)
-"bhl" = (/obj/machinery/computer/station_alert,/turf/open/floor/plasteel/darkbrown/side{dir = 1},/area/bridge)
-"bhm" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/computer/monitor{name = "Bridge Power Monitoring Console"},/turf/open/floor/plasteel/darkbrown/side{dir = 1},/area/bridge)
-"bhn" = (/obj/machinery/computer/atmos_alert,/turf/open/floor/plasteel/darkbrown/side{dir = 1},/area/bridge)
-"bho" = (/obj/machinery/ai_status_display{pixel_y = 32},/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -1;pixel_y = 4},/obj/structure/table/glass,/turf/open/floor/plasteel/darkbrown/side{dir = 1},/area/bridge)
-"bhp" = (/obj/machinery/computer/security,/turf/open/floor/plasteel/darkred/side{dir = 1},/area/bridge)
-"bhq" = (/obj/machinery/computer/secure_data,/turf/open/floor/plasteel/darkred/side{dir = 1},/area/bridge)
-"bhr" = (/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/computer/prisoner,/turf/open/floor/plasteel/darkred/side{dir = 5},/area/bridge)
-"bhs" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "bridge blast";layer = 2.9;name = "bridge blast door"},/obj/structure/cable/yellow,/turf/open/floor/plating,/area/bridge)
-"bht" = (/obj/structure/table/wood,/obj/item/weapon/storage/photo_album{pixel_y = -4},/obj/item/device/camera{pixel_y = 4},/obj/item/device/radio/intercom{dir = 8;freerange = 1;name = "Station Intercom (Captain)";pixel_x = -28},/turf/open/floor/carpet,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"bhu" = (/obj/machinery/light_switch{pixel_y = -25},/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/item/weapon/razor{pixel_x = -4;pixel_y = 2},/obj/item/clothing/mask/cigarette/cigar,/obj/item/weapon/reagent_containers/food/drinks/flask/gold,/turf/open/floor/carpet,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"bhv" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 1;scrub_Toxins = 1},/turf/open/floor/carpet,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"bhw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/disposalpipe/segment,/turf/open/floor/carpet,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"bhx" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/carpet,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"bhy" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/holopad,/turf/open/floor/wood,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"bhz" = (/obj/structure/table/wood,/obj/machinery/recharger{pixel_y = 4},/turf/open/floor/wood,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"bhA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/hallway/primary/central)
-"bhB" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=14.2-Central-CrewQuarters";location = "14-Starboard-Central"},/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bhC" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel/yellow/corner{dir = 4},/area/hallway/primary/central)
-"bhD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Starboard Primary Hallway"},/turf/open/floor/plasteel/yellow/corner{dir = 1},/area/hallway/primary/starboard)
-"bhE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/yellow/corner{dir = 1},/area/hallway/primary/starboard)
-"bhF" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/turf/open/floor/plasteel/yellow/corner{dir = 1},/area/hallway/primary/starboard)
-"bhG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/yellow/corner{dir = 1},/area/hallway/primary/starboard)
-"bhH" = (/obj/machinery/firealarm{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/yellow/corner{dir = 1},/area/hallway/primary/starboard)
-"bhI" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/machinery/camera{c_tag = "Starboard Primary Hallway - Tech Storage";dir = 2;network = list("SS13")},/turf/open/floor/plasteel/yellow/corner{dir = 1},/area/hallway/primary/starboard)
-"bhJ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/yellow/corner{dir = 1},/area/hallway/primary/starboard)
-"bhK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/yellow/corner{dir = 1},/area/hallway/primary/starboard)
-"bhL" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/yellow/corner{dir = 1},/area/hallway/primary/starboard)
-"bhM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/turf/open/floor/plasteel/yellow/corner{dir = 1},/area/hallway/primary/starboard)
-"bhN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/yellow/corner{dir = 1},/area/hallway/primary/starboard)
-"bhO" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/yellow/corner{dir = 1},/area/hallway/primary/starboard)
-"bhP" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/sign/securearea{pixel_y = 32},/turf/open/floor/plasteel/yellow/corner{dir = 1},/area/hallway/primary/starboard)
-"bhQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/power/apc{dir = 1;name = "Starboard Hallway APC";pixel_x = 0;pixel_y = 26},/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/turf/open/floor/plasteel/yellow/corner{dir = 1},/area/hallway/primary/starboard)
-"bhR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/caution/corner{dir = 4},/area/hallway/primary/starboard)
-"bhS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=14-Starboard-Central";location = "13.3-Engineering-Central"},/turf/open/floor/plasteel/caution/corner{dir = 4},/area/hallway/primary/starboard)
-"bhT" = (/turf/closed/wall/r_wall,/area/engine/break_room)
-"bhU" = (/obj/item/weapon/paper_bin{pixel_x = -3;pixel_y = 7},/obj/item/weapon/pen,/obj/machinery/airalarm{dir = 4;pixel_x = -23;pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/table/glass,/turf/open/floor/plasteel/yellow/side{dir = 1},/area/engine/break_room)
-"bhV" = (/obj/item/weapon/book/manual/wiki/engineering_hacking{pixel_x = 4;pixel_y = 5},/obj/item/weapon/book/manual/wiki/engineering_construction{pixel_y = 3},/obj/item/weapon/book/manual/wiki/engineering_guide{pixel_x = -4;pixel_y = 0},/obj/structure/table/glass,/turf/open/floor/plasteel/yellow/side{dir = 1},/area/engine/break_room)
-"bhW" = (/obj/item/weapon/folder/yellow,/obj/item/weapon/folder/yellow,/obj/machinery/light{dir = 1},/obj/structure/sign/securearea{pixel_y = 32},/obj/structure/table/glass,/turf/open/floor/plasteel/yellow/side{dir = 1},/area/engine/break_room)
-"bhX" = (/turf/open/floor/plasteel/yellow/side{dir = 1},/area/engine/break_room)
-"bhY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/junction{icon_state = "pipe-j2";dir = 2},/turf/open/floor/plasteel/yellow/side{dir = 1},/area/engine/break_room)
-"bhZ" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/yellow/side{dir = 1},/area/engine/break_room)
-"bia" = (/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 0;pixel_y = 21},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/yellow/side{dir = 1},/area/engine/break_room)
-"bib" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/yellow/side{dir = 1},/area/engine/break_room)
-"bic" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/yellow/side{dir = 1},/area/engine/break_room)
-"bid" = (/obj/machinery/disposal/bin{pixel_x = 2;pixel_y = 2},/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel/yellow/side{dir = 1},/area/engine/break_room)
-"bie" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/engine/break_room)
-"bif" = (/turf/open/floor/plating,/area/engine/break_room)
-"big" = (/obj/machinery/door/airlock/titanium{name = "Escape Pod Airlock"},/obj/docking_port/mobile/pod{dir = 4;id = "pod4";name = "escape pod 4";port_angle = 180;preferred_direction = 4},/turf/open/floor/mineral/titanium/blue,/area/shuttle/pod_4)
-"bih" = (/obj/structure/chair{dir = 4},/obj/item/device/radio/intercom{pixel_y = 25},/obj/item/weapon/storage/pod{pixel_x = 6;pixel_y = -32},/turf/open/floor/mineral/titanium/blue,/area/shuttle/pod_3)
-"bii" = (/obj/docking_port/stationary/random{dir = 4;id = "pod_asteroid3";name = "asteroid"},/turf/open/space,/area/space)
-"bij" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/open/floor/plating,/area/shuttle/pod_4)
-"bik" = (/obj/machinery/light/small,/obj/machinery/camera{c_tag = "MiniSat Exterior - Space Access";dir = 1;network = list("MiniSat")},/turf/open/floor/plasteel/vault{dir = 8},/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"bil" = (/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/obj/machinery/door/window{dir = 8;name = "MiniSat Airlock Access";req_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/black,/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"bim" = (/obj/structure/table/reinforced,/obj/item/weapon/folder/blue{pixel_y = 2},/obj/item/weapon/pen,/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai)
-"bin" = (/obj/structure/chair/office/dark{dir = 8},/obj/machinery/ai_status_display{pixel_x = 0;pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai)
-"bio" = (/obj/machinery/camera{c_tag = "AI Chamber - Aft";dir = 1;network = list("RD")},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai)
-"bip" = (/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai)
-"biq" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/starboard)
-"bir" = (/obj/structure/chair/office/dark{dir = 4},/obj/machinery/status_display{density = 0;layer = 4;pixel_x = 0;pixel_y = -32},/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai)
-"bis" = (/obj/structure/table/reinforced,/obj/item/weapon/folder/blue{pixel_y = 2},/obj/item/weapon/pen,/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai)
-"bit" = (/obj/effect/landmark{name = "Observer-Start"},/turf/open/floor/mineral/titanium/blue,/area/shuttle/arrival)
-"biu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/door/firedoor,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"biv" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/arrival{dir = 4},/area/hallway/secondary/entry{name = "Arrivals"})
-"biw" = (/obj/structure/sign/pods,/turf/closed/wall,/area/security/checkpoint2{name = "Customs"})
-"bix" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/closed/wall,/area/security/checkpoint2{name = "Customs"})
-"biy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/security{name = "Customs Desk";req_access = null;req_access_txt = "1"},/turf/open/floor/plasteel,/area/security/checkpoint2{name = "Customs"})
-"biz" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/security/checkpoint2)
-"biA" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/primary/port)
-"biB" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/machinery/door/airlock/maintenance{req_access_txt = "0";req_one_access_txt = "12;48;50;1"},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"biC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"biD" = (/obj/machinery/door/window/eastleft{base_state = "right";icon_state = "right";name = "Deliveries";req_access_txt = "50"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/quartermaster/office{name = "\improper Cargo Office"})
-"biE" = (/obj/machinery/conveyor_switch/oneway{convdir = -1;id = "packageExternal";pixel_y = 18},/turf/open/floor/plasteel/loadingarea{dir = 4},/area/quartermaster/office{name = "\improper Cargo Office"})
-"biF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/quartermaster/office{name = "\improper Cargo Office"})
-"biG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/quartermaster/office{name = "\improper Cargo Office"})
-"biH" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/turf/open/floor/plasteel,/area/quartermaster/office{name = "\improper Cargo Office"})
-"biI" = (/obj/structure/chair/office/dark{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office{name = "\improper Cargo Office"})
-"biJ" = (/obj/structure/table,/obj/item/device/destTagger{pixel_x = 4;pixel_y = 3},/obj/machinery/light_switch{pixel_x = 27},/turf/open/floor/plasteel/arrival{dir = 4},/area/quartermaster/office{name = "\improper Cargo Office"})
-"biK" = (/obj/structure/table,/obj/item/weapon/clipboard,/obj/item/weapon/folder/yellow,/obj/item/weapon/folder/yellow,/obj/item/device/multitool,/obj/item/weapon/pen/red,/turf/open/floor/plasteel/brown{dir = 8},/area/quartermaster/office{name = "\improper Cargo Office"})
-"biL" = (/obj/structure/chair/office/dark{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/office{name = "\improper Cargo Office"})
-"biM" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/light_switch{pixel_x = 27;pixel_y = 0},/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/brown{dir = 4},/area/quartermaster/office{name = "\improper Cargo Office"})
-"biN" = (/turf/open/floor/plasteel/brown{dir = 8},/area/hallway/primary/port)
-"biO" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8;initialize_directions = 11},/turf/open/floor/plasteel,/area/hallway/primary/port)
-"biP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port)
-"biQ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/port)
-"biR" = (/obj/structure/chair{dir = 8},/obj/effect/landmark/start{name = "Assistant"},/turf/open/floor/plasteel/brown{dir = 4},/area/hallway/primary/port)
-"biS" = (/obj/structure/table,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/grenade/chem_grenade/cleaner,/obj/item/weapon/grenade/chem_grenade/cleaner,/obj/item/weapon/grenade/chem_grenade/cleaner,/turf/open/floor/plasteel/floorgrime,/area/janitor)
-"biT" = (/obj/structure/janitorialcart,/turf/open/floor/plasteel/floorgrime,/area/janitor)
-"biU" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1},/obj/machinery/light/small,/obj/item/device/radio/intercom{dir = 0;name = "Station Intercom (General)";pixel_x = 0;pixel_y = -28},/obj/vehicle/janicart,/obj/item/key/janitor,/turf/open/floor/plating,/area/janitor)
-"biV" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal/bin,/turf/open/floor/plasteel/floorgrime,/area/janitor)
-"biW" = (/obj/item/weapon/storage/box/lights/mixed,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"})
-"biX" = (/obj/item/clothing/mask/gas,/turf/open/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"})
-"biY" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/obj/machinery/door/poddoor/preopen{id = "bridge blast";layer = 2.9;name = "bridge blast door"},/turf/open/floor/plating,/area/bridge)
-"biZ" = (/obj/item/weapon/folder/white{pixel_x = 4;pixel_y = -3},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/light{dir = 8},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/table/glass,/turf/open/floor/plasteel/darkgreen/side{dir = 8},/area/bridge)
-"bja" = (/obj/structure/chair/office/dark{dir = 8},/turf/open/floor/plasteel/black,/area/bridge)
-"bjb" = (/obj/structure/chair/office/dark{dir = 1},/turf/open/floor/plasteel/black,/area/bridge)
-"bjc" = (/turf/open/floor/plasteel/black,/area/bridge)
-"bjd" = (/obj/structure/chair/office/dark{dir = 1},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/black,/area/bridge)
-"bje" = (/obj/structure/chair/office/dark{dir = 4},/turf/open/floor/plasteel/black,/area/bridge)
-"bjf" = (/obj/item/weapon/folder/red{pixel_y = 3},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/light{dir = 4},/obj/structure/table/glass,/obj/item/weapon/folder/red{pixel_y = 3},/turf/open/floor/plasteel/darkred/side{dir = 4},/area/bridge)
-"bjg" = (/turf/closed/wall,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"bjh" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green{pixel_x = 1;pixel_y = 5},/obj/structure/window/reinforced{dir = 1;pixel_y = 2},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/weapon/bikehorn/rubberducky,/obj/machinery/light_switch{pixel_x = -28;pixel_y = 0},/obj/item/weapon/card/id/captains_spare,/turf/open/floor/wood,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"bji" = (/obj/machinery/door/window{dir = 1;name = "Captain's Bedroom";req_access_txt = "20"},/turf/open/floor/wood,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"bjj" = (/obj/structure/closet/secure_closet/captains,/obj/structure/window/reinforced{dir = 1;pixel_y = 2},/turf/open/floor/wood,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"bjk" = (/obj/structure/window/reinforced{dir = 1;pixel_y = 2},/obj/machinery/suit_storage_unit/captain,/turf/open/floor/wood,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"bjl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/extinguisher_cabinet{pixel_x = -27;pixel_y = 0},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/hallway/primary/central)
-"bjm" = (/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bjn" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bjo" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Starboard Primary Hallway"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
-"bjp" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
-"bjq" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
-"bjr" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
-"bjs" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
-"bjt" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
-"bju" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
-"bjv" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/junction{dir = 2;icon_state = "pipe-j1"},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
-"bjw" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
-"bjx" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
-"bjy" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/starboard)
-"bjz" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/starboard)
-"bjA" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/starboard)
-"bjB" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
-"bjC" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
-"bjD" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
-"bjE" = (/obj/machinery/firealarm{dir = 4;pixel_x = 28},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/caution/corner{dir = 4},/area/hallway/primary/starboard)
-"bjF" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8;initialize_directions = 11},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/light_switch{pixel_x = -22;pixel_y = 0},/turf/open/floor/plasteel,/area/engine/break_room)
-"bjG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/break_room)
-"bjH" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/break_room)
-"bjI" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2;initialize_directions = 11},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel,/area/engine/break_room)
-"bjJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/break_room)
-"bjK" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4;initialize_directions = 11},/obj/machinery/holopad,/turf/open/floor/plasteel,/area/engine/break_room)
-"bjL" = (/turf/open/floor/plasteel,/area/engine/break_room)
-"bjM" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/external{name = "Escape Pod Four";req_access = null;req_access_txt = "32"},/turf/open/floor/plasteel,/area/engine/break_room)
-"bjN" = (/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/obj/structure/window/reinforced{dir = 1;pixel_y = 1},/turf/open/space,/area/space)
-"bjO" = (/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/black,/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"bjP" = (/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/tcomfoyer{name = "\improper MiniSat Foyer"})
-"bjQ" = (/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/aisat_interior)
-"bjR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/aisat_interior)
-"bjS" = (/obj/machinery/power/terminal{icon_state = "term";dir = 1},/obj/machinery/flasher{id = "AI";pixel_x = -24;pixel_y = 28},/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai)
-"bjT" = (/turf/closed/wall/r_wall,/area/ai_monitored/storage/secure{name = "MiniSat Maintenance"})
-"bjU" = (/obj/structure/chair{dir = 1},/turf/open/floor/mineral/titanium/blue,/area/shuttle/arrival)
-"bjV" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"bjW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white/corner{dir = 4},/area/hallway/secondary/entry{name = "Arrivals"})
-"bjX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/arrival{dir = 5},/area/hallway/secondary/entry{name = "Arrivals"})
-"bjY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/port)
-"bjZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/neutral/side{dir = 9},/area/hallway/primary/port)
-"bka" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/hallway/primary/port)
-"bkb" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/hallway/primary/port)
-"bkc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 0;pixel_y = 21},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/neutral/side{dir = 5},/area/hallway/primary/port)
-"bkd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/neutral/side{dir = 9},/area/hallway/primary/port)
-"bke" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/obj/structure/sign/map/left{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";icon_state = "map-left-MS";pixel_y = 32},/turf/open/floor/plasteel/neutral/side{dir = 1},/area/hallway/primary/port)
-"bkf" = (/obj/structure/extinguisher_cabinet{pixel_x = 30;pixel_y = 0},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/sign/map/right{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";icon_state = "map-right-MS";pixel_y = 32},/turf/open/floor/plasteel/neutral/side{dir = 5},/area/hallway/primary/port)
-"bkg" = (/obj/machinery/conveyor{dir = 1;id = "packageExternal"},/obj/structure/plasticflaps{opacity = 1},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plating,/area/quartermaster/office{name = "\improper Cargo Office"})
-"bkh" = (/obj/structure/table/reinforced,/obj/item/weapon/folder/yellow,/obj/item/weapon/pen{pixel_x = 4;pixel_y = 4},/obj/machinery/computer/stockexchange,/turf/open/floor/plasteel/arrival{dir = 2},/area/quartermaster/office{name = "\improper Cargo Office"})
-"bki" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/chair/office/dark,/obj/effect/landmark/start{name = "Cargo Technician"},/turf/open/floor/plasteel/arrival{dir = 2},/area/quartermaster/office{name = "\improper Cargo Office"})
-"bkj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/arrival{dir = 2},/area/quartermaster/office{name = "\improper Cargo Office"})
-"bkk" = (/obj/structure/filingcabinet/filingcabinet,/obj/item/device/radio/intercom{broadcasting = 0;listening = 1;name = "Station Intercom (General)";pixel_y = -28},/obj/machinery/camera{c_tag = "Cargo - Mailroom";dir = 1;network = list("SS13")},/turf/open/floor/plasteel/arrival{dir = 2},/area/quartermaster/office{name = "\improper Cargo Office"})
-"bkl" = (/obj/structure/table,/obj/item/stack/wrapping_paper,/obj/item/stack/wrapping_paper,/obj/machinery/requests_console{department = "Cargo Bay";departmentType = 2;pixel_y = -30},/obj/item/stack/packageWrap{pixel_x = 2;pixel_y = -3},/obj/item/stack/packageWrap{pixel_x = 2;pixel_y = -3},/obj/item/stack/packageWrap{pixel_x = 2;pixel_y = -3},/obj/item/stack/packageWrap{pixel_x = 2;pixel_y = -3},/obj/item/stack/packageWrap{pixel_x = 2;pixel_y = -3},/obj/item/stack/packageWrap{pixel_x = 2;pixel_y = -3},/obj/item/stack/packageWrap{pixel_x = 2;pixel_y = -3},/obj/item/stack/packageWrap{pixel_x = 2;pixel_y = -3},/obj/item/weapon/storage/box/lights/mixed,/turf/open/floor/plasteel/arrival{dir = 2},/area/quartermaster/office{name = "\improper Cargo Office"})
-"bkm" = (/obj/item/weapon/storage/box,/obj/structure/table,/obj/item/weapon/storage/box,/obj/item/weapon/storage/box,/obj/machinery/airalarm{dir = 1;pixel_y = -22},/obj/item/weapon/hand_labeler,/turf/open/floor/plasteel/arrival{dir = 6},/area/quartermaster/office{name = "\improper Cargo Office"})
-"bkn" = (/obj/structure/table,/obj/machinery/computer/stockexchange,/obj/machinery/firealarm{dir = 8;pixel_x = -26;pixel_y = 0},/turf/open/floor/plasteel/brown{dir = 10},/area/quartermaster/office{name = "\improper Cargo Office"})
-"bko" = (/obj/machinery/photocopier,/turf/open/floor/plasteel/brown{dir = 2},/area/quartermaster/office{name = "\improper Cargo Office"})
-"bkp" = (/turf/open/floor/plasteel/brown{dir = 2},/area/quartermaster/office{name = "\improper Cargo Office"})
-"bkq" = (/obj/structure/disposalpipe/segment,/obj/machinery/holopad,/turf/open/floor/plasteel/brown{dir = 2},/area/quartermaster/office{name = "\improper Cargo Office"})
-"bkr" = (/obj/machinery/autolathe,/obj/machinery/newscaster{pixel_x = 28;pixel_y = 0},/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 0;pixel_y = -28},/turf/open/floor/plasteel/brown{dir = 6},/area/quartermaster/office{name = "\improper Cargo Office"})
-"bks" = (/obj/structure/closet/crate{icon_state = "crateopen";opened = 1},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plasteel/brown{dir = 10},/area/hallway/primary/port)
-"bkt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/holopad,/turf/open/floor/plasteel/brown/corner{dir = 8},/area/hallway/primary/port)
-"bku" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel/brown/corner{dir = 2},/area/hallway/primary/port)
-"bkv" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9;pixel_y = 0},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/storage/box,/obj/item/weapon/storage/box,/obj/item/weapon/storage/box,/obj/item/stack/packageWrap{pixel_x = 2;pixel_y = -3},/obj/item/stack/packageWrap{pixel_x = 2;pixel_y = -3},/obj/item/stack/packageWrap{pixel_x = 2;pixel_y = -3},/obj/item/weapon/hand_labeler,/turf/open/floor/plasteel/brown{dir = 2},/area/hallway/primary/port)
-"bkw" = (/obj/structure/table,/obj/item/device/toner,/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 30},/turf/open/floor/plasteel/brown{dir = 6},/area/hallway/primary/port)
-"bkx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/hallway/primary/central)
-"bky" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/hallway/primary/central)
-"bkz" = (/turf/closed/wall/r_wall,/area/crew_quarters/heads)
-"bkA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/weapon/tank/internals/air,/turf/open/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"})
-"bkB" = (/obj/item/weapon/extinguisher,/turf/open/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"})
-"bkC" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/airalarm{dir = 4;pixel_x = -23;pixel_y = 0},/obj/machinery/modular_computer/console/preset/command,/turf/open/floor/plasteel/darkblue/side{dir = 9},/area/bridge)
-"bkD" = (/obj/item/device/radio/intercom{dir = 0;name = "Station Intercom (General)";pixel_x = 0;pixel_y = 29},/obj/machinery/computer/teleporter,/turf/open/floor/plasteel/darkblue/side{dir = 1},/area/bridge)
-"bkE" = (/obj/item/weapon/storage/firstaid/regular{pixel_x = 3;pixel_y = 3},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/table/glass,/turf/open/floor/plasteel/darkgreen/corner{dir = 1},/area/bridge)
-"bkF" = (/obj/item/device/radio/beacon,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/black,/area/bridge)
-"bkG" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/recharger{pixel_y = 3},/obj/item/weapon/restraints/handcuffs{pixel_y = 3},/obj/structure/table/glass,/turf/open/floor/plasteel/darkred/corner{dir = 4},/area/bridge)
-"bkH" = (/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/computer/security/mining{network = list("MINE","AuxBase")},/obj/machinery/keycard_auth{pixel_x = 0;pixel_y = 24},/turf/open/floor/plasteel/darkblue/side{dir = 1},/area/bridge)
-"bkI" = (/obj/machinery/requests_console{announcementConsole = 1;department = "Bridge";departmentType = 5;name = "Bridge RC";pixel_x = 32;pixel_y = 0},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/computer/cargo/request,/turf/open/floor/plasteel/darkblue/side{dir = 5},/area/bridge)
-"bkJ" = (/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/obj/item/weapon/soap/deluxe,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/obj/machinery/shower{pixel_y = 12},/obj/structure/curtain,/turf/open/floor/plasteel/white,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"bkK" = (/obj/structure/mirror{pixel_y = 28},/obj/structure/sink{pixel_y = 17},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/landmark{name = "revenantspawn"},/turf/open/floor/plasteel/white,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"bkL" = (/obj/structure/toilet{pixel_y = 13},/obj/machinery/light{dir = 2;icon_state = "tube1"},/obj/effect/landmark/start{name = "Captain"},/obj/machinery/light_switch{pixel_y = -25},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"bkM" = (/obj/machinery/door/airlock/silver{name = "Bathroom"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"bkN" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"bkO" = (/turf/open/floor/wood,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"bkP" = (/obj/effect/landmark/start{name = "Captain"},/obj/machinery/airalarm{dir = 1;pixel_y = -22},/turf/open/floor/wood,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"bkQ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8;initialize_directions = 11},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/hallway/primary/central)
-"bkR" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=13.1-Engineering-Enter";location = "12-Central-Starboard"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bkS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/yellow/corner{dir = 2},/area/hallway/primary/central)
-"bkT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Starboard Primary Hallway"},/turf/open/floor/plasteel/caution/corner{dir = 8},/area/hallway/primary/starboard)
-"bkU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/caution/corner{dir = 8},/area/hallway/primary/starboard)
-"bkV" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1;initialize_directions = 11},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/caution/corner{dir = 8},/area/hallway/primary/starboard)
-"bkW" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2;initialize_directions = 11},/turf/open/floor/plasteel/caution/corner{dir = 8},/area/hallway/primary/starboard)
-"bkX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/device/radio/intercom{name = "Station Intercom (General)";pixel_y = -29},/obj/machinery/light,/turf/open/floor/plasteel/caution/corner{dir = 8},/area/hallway/primary/starboard)
-"bkY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 0;pixel_y = -30},/turf/open/floor/plasteel/caution/corner{dir = 8},/area/hallway/primary/starboard)
-"bkZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/caution/corner{dir = 8},/area/hallway/primary/starboard)
-"bla" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/caution/corner{dir = 8},/area/hallway/primary/starboard)
-"blb" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2;initialize_directions = 11},/obj/machinery/firealarm{dir = 1;pixel_y = -24},/obj/machinery/camera{c_tag = "Starboard Primary Hallway - Auxiliary Tool Storage";dir = 1;network = list("SS13")},/turf/open/floor/plasteel/caution/corner{dir = 8},/area/hallway/primary/starboard)
-"blc" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1;initialize_directions = 11},/turf/open/floor/plasteel/caution/corner{dir = 8},/area/hallway/primary/starboard)
-"bld" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/caution/corner{dir = 8},/area/hallway/primary/starboard)
-"ble" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/caution/corner{dir = 8},/area/hallway/primary/starboard)
-"blf" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera{c_tag = "Starboard Primary Hallway - Engineering";dir = 1;network = list("SS13")},/turf/open/floor/plasteel/caution/corner{dir = 8},/area/hallway/primary/starboard)
-"blg" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1;initialize_directions = 11},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=13.2-Tcommstore";location = "13.1-Engineering-Enter"},/turf/open/floor/plasteel/caution/corner{dir = 8},/area/hallway/primary/starboard)
-"blh" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
-"bli" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/caution/corner{dir = 4},/area/hallway/primary/starboard)
-"blj" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/engine/break_room)
-"blk" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel,/area/engine/break_room)
-"bll" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/turf/open/floor/plasteel,/area/engine/break_room)
-"blm" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/turf/open/floor/plasteel,/area/engine/break_room)
-"bln" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/turf/open/floor/plasteel,/area/engine/break_room)
-"blo" = (/obj/structure/chair/stool{pixel_y = 8},/turf/open/floor/plasteel,/area/engine/break_room)
-"blp" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/break_room)
-"blq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/engine/break_room)
-"blr" = (/obj/machinery/light{dir = 4;icon_state = "tube1"},/turf/open/floor/plasteel,/area/engine/break_room)
-"bls" = (/obj/structure/sign/pods,/turf/closed/wall/r_wall,/area/engine/break_room)
-"blt" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/maintenance/disposal)
-"blu" = (/obj/structure/lattice,/obj/structure/transit_tube/curved/flipped{dir = 4},/turf/open/space,/area/space)
-"blv" = (/obj/structure/lattice,/obj/structure/transit_tube/crossing/horizontal,/turf/open/space,/area/space)
-"blw" = (/obj/structure/transit_tube/curved{dir = 8},/turf/open/space,/area/space)
-"blx" = (/turf/closed/wall,/area/space)
-"bly" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/open/space,/area/space)
-"blz" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/black,/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"blA" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on,/obj/structure/window/reinforced,/turf/open/floor/plating/airless,/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"blB" = (/obj/machinery/computer/teleporter,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/obj/machinery/firealarm{dir = 8;pixel_x = -26;pixel_y = 0},/turf/open/floor/plasteel/vault{dir = 8},/area/ai_monitored/turret_protected/tcomfoyer{name = "\improper MiniSat Foyer"})
-"blC" = (/obj/machinery/teleport/station,/obj/machinery/status_display{density = 0;layer = 4;pixel_x = 0;pixel_y = 32},/turf/open/floor/plasteel/vault{dir = 8},/area/ai_monitored/turret_protected/tcomfoyer{name = "\improper MiniSat Foyer"})
-"blD" = (/obj/machinery/teleport/hub,/turf/open/floor/plasteel/vault{dir = 8},/area/ai_monitored/turret_protected/tcomfoyer{name = "\improper MiniSat Foyer"})
-"blE" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/ai)
-"blF" = (/obj/structure/showcase{density = 0;desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze.";dir = 2;icon = 'icons/mob/robots.dmi';icon_state = "robot_old";name = "Cyborg Statue";pixel_x = 0;pixel_y = 20},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/darkblue/corner{dir = 1},/area/ai_monitored/turret_protected/aisat_interior)
-"blG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/aisat_interior)
-"blH" = (/obj/structure/showcase{density = 0;desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze.";dir = 2;icon = 'icons/mob/robots.dmi';icon_state = "robot_old";name = "Cyborg Statue";pixel_x = 0;pixel_y = 20},/turf/open/floor/plasteel/darkblue/corner{dir = 4},/area/ai_monitored/turret_protected/aisat_interior)
-"blI" = (/obj/machinery/door/airlock/highsecurity{icon_state = "door_closed";locked = 0;name = "AI Chamber";req_access_txt = "16"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/poddoor/shutters/preopen{id = "AI Chamber entrance shutters";name = "AI Chamber entrance shutters"},/obj/machinery/flasher{id = "AI";pixel_x = -26;pixel_y = 3},/obj/item/device/radio/intercom{broadcasting = 1;frequency = 1447;listening = 0;name = "Station Intercom (AI Private)";pixel_x = 28;pixel_y = 0},/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/aisat_interior)
-"blJ" = (/obj/machinery/power/smes{charge = 5e+006},/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/turf/open/floor/plasteel/vault{dir = 8},/area/ai_monitored/storage/secure{name = "MiniSat Maintenance"})
-"blK" = (/obj/machinery/recharge_station,/obj/machinery/status_display{density = 0;layer = 4;pixel_x = 0;pixel_y = 32},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel/vault{dir = 8},/area/ai_monitored/storage/secure{name = "MiniSat Maintenance"})
-"blL" = (/obj/machinery/airalarm{pixel_y = 26},/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 2;name = "Auxiliary MiniSat Distribution Port"},/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plasteel/vault{dir = 8},/area/ai_monitored/storage/secure{name = "MiniSat Maintenance"})
-"blM" = (/obj/machinery/power/port_gen/pacman,/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/floor/plasteel/vault{dir = 8},/area/ai_monitored/storage/secure{name = "MiniSat Maintenance"})
-"blN" = (/obj/structure/closet/emcloset,/turf/open/floor/mineral/titanium/blue,/area/shuttle/arrival)
-"blO" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)";pixel_y = -29},/turf/open/floor/mineral/titanium/blue,/area/shuttle/arrival)
-"blP" = (/obj/structure/sign/map/left{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";icon_state = "map-left-MS";pixel_y = -32},/turf/open/floor/mineral/titanium/blue,/area/shuttle/arrival)
-"blQ" = (/obj/structure/sign/map/right{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";icon_state = "map-right-MS";pixel_y = -32},/turf/open/floor/mineral/titanium/blue,/area/shuttle/arrival)
-"blR" = (/obj/machinery/requests_console{department = "Arrival shuttle";pixel_y = -30},/turf/open/floor/mineral/titanium/blue,/area/shuttle/arrival)
-"blS" = (/obj/structure/shuttle/engine/propulsion{icon_state = "burst_l";dir = 8},/turf/open/floor/plating,/area/shuttle/arrival)
-"blT" = (/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"blU" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/arrival{dir = 4},/area/hallway/secondary/entry{name = "Arrivals"})
-"blV" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/port)
-"blW" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/neutral/side{dir = 10},/area/hallway/primary/port)
-"blX" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/neutral/side,/area/hallway/primary/port)
-"blY" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=5-Customs";location = "4-Customs"},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel/neutral/side,/area/hallway/primary/port)
-"blZ" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/turf/open/floor/plasteel/neutral/side,/area/hallway/primary/port)
-"bma" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/neutral/side{dir = 6},/area/hallway/primary/port)
-"bmb" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel/neutral/side{dir = 10},/area/hallway/primary/port)
-"bmc" = (/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/hallway/primary/port)
-"bmd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/neutral/side{dir = 4},/area/hallway/primary/port)
-"bme" = (/obj/machinery/conveyor{dir = 1;id = "packageExternal"},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plating,/area/quartermaster/office{name = "\improper Cargo Office"})
-"bmf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/structure/table/reinforced,/obj/machinery/door/window/westleft{dir = 1;name = "Delivery Desk";req_access_txt = "50"},/obj/effect/spawner/lootdrop/maintenance,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/office{name = "\improper Cargo Office"})
-"bmg" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/quartermaster/office{name = "\improper Cargo Office"})
-"bmh" = (/obj/machinery/door/firedoor,/obj/machinery/mineral/ore_redemption,/turf/open/floor/plasteel/black,/area/quartermaster/office{name = "\improper Cargo Office"})
-"bmi" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/quartermaster/office{name = "\improper Cargo Office"})
-"bmj" = (/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the Suuply department is.";dir = 1;icon_state = "direction_supply";name = "cargo department";pixel_y = 8},/turf/closed/wall,/area/quartermaster/office{name = "\improper Cargo Office"})
-"bmk" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/brown{dir = 8},/area/hallway/primary/port)
-"bml" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/brown{dir = 4},/area/hallway/primary/port)
-"bmm" = (/obj/structure/sign/directions/security{desc = "A direction sign, pointing out which way the security department is.";dir = 1;icon_state = "direction_sec";pixel_x = 0;pixel_y = 8},/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the engineering department is.";dir = 4;icon_state = "direction_eng";pixel_y = 0},/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the bridge is.";dir = 2;icon_state = "direction_bridge";name = "bridge";pixel_y = -8},/turf/closed/wall/r_wall,/area/hallway/primary/port)
-"bmn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light{dir = 4},/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/hallway/primary/central)
-"bmo" = (/obj/item/device/flashlight/lamp/green{pixel_x = 1;pixel_y = 5},/obj/machinery/button/door{id = "hop";name = "Privacy Shutters Control";pixel_x = 0;pixel_y = 25;req_access_txt = "28"},/obj/structure/table/wood,/turf/open/floor/wood,/area/crew_quarters/heads)
-"bmp" = (/obj/machinery/light{dir = 1},/obj/item/weapon/storage/secure/briefcase,/obj/structure/table/wood,/obj/machinery/computer/security/telescreen{desc = "Used for watching Prison Wing holding areas.";name = "Prison Monitor";network = list("Prison");pixel_x = 0;pixel_y = 30},/turf/open/floor/wood,/area/crew_quarters/heads)
-"bmq" = (/obj/machinery/recharger,/obj/item/weapon/storage/secure/safe{pixel_x = 34;pixel_y = 0},/obj/structure/table/wood,/turf/open/floor/wood,/area/crew_quarters/heads)
-"bmr" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"})
-"bms" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"})
-"bmt" = (/obj/item/device/radio/off,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"})
-"bmu" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=4";dir = 4;freq = 1400;location = "Bridge"},/obj/structure/plasticflaps{opacity = 1},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/maintenance/maintcentral{name = "Central Maintenance"})
-"bmv" = (/obj/machinery/door/window/westleft{dir = 4;name = "Bridge Deliveries";req_access_txt = "19"},/obj/machinery/door/poddoor/preopen{id = "bridge blast";name = "bridge blast door"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/bridge)
-"bmw" = (/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel/darkblue/side{dir = 8},/area/bridge)
-"bmx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/black,/area/bridge)
-"bmy" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 1;scrub_Toxins = 1},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/black,/area/bridge)
-"bmz" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/black,/area/bridge)
-"bmA" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/darkblue/corner,/area/bridge)
-"bmB" = (/obj/structure/window/reinforced,/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/darkblue/side{dir = 2},/area/bridge)
-"bmC" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/window/brigdoor{dir = 2;name = "Command Desk";req_access_txt = "19"},/turf/open/floor/plasteel/darkblue/side{dir = 2},/area/bridge)
-"bmD" = (/obj/structure/window/reinforced,/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel/darkblue/side{dir = 2},/area/bridge)
-"bmE" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/darkblue/corner{dir = 8},/area/bridge)
-"bmF" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel/black,/area/bridge)
-"bmG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/black,/area/bridge)
-"bmH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/chair/office/dark{dir = 1},/obj/structure/extinguisher_cabinet{pixel_x = 27;pixel_y = 0},/obj/machinery/camera{c_tag = "Bridge - Starboard";dir = 8;network = list("SS13")},/turf/open/floor/plasteel/darkblue/side{dir = 4},/area/bridge)
-"bmI" = (/obj/machinery/door/airlock/command{name = "Captain's Quarters";req_access = null;req_access_txt = "20"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/carpet,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"bmJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/status_display{density = 0;layer = 4;pixel_x = -32;pixel_y = 0},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/hallway/primary/central)
-"bmK" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/yellow/corner{dir = 2},/area/hallway/primary/central)
-"bmL" = (/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the escape arm is.";icon_state = "direction_evac";name = "escape arm"},/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the medical department is.";icon_state = "direction_med";name = "medical department";pixel_y = 8},/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the research department is.";icon_state = "direction_sci";name = "research department";pixel_y = -8},/turf/closed/wall,/area/storage/art)
-"bmM" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/storage/art)
-"bmN" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Art Storage"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/storage/art)
-"bmO" = (/turf/closed/wall,/area/storage/art)
-"bmP" = (/turf/closed/wall,/area/crew_quarters/bar)
-"bmQ" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "0";req_one_access_txt = "12;25;46"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/starboard)
-"bmR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/maintenance/starboard)
-"bmS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock{name = "Starboard Emergency Storage";req_access_txt = "0"},/turf/open/floor/plating,/area/maintenance/starboard)
-"bmT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/airlock/maintenance{req_access_txt = "0";req_one_access_txt = "12;25;46"},/turf/open/floor/plating,/area/maintenance/starboard)
-"bmU" = (/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the engineering department is.";dir = 4;icon_state = "direction_eng";pixel_y = 8},/turf/closed/wall,/area/maintenance/starboard)
-"bmV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/caution/corner{dir = 8},/area/hallway/primary/starboard)
-"bmW" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
-"bmX" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/sortjunction{dir = 8;icon_state = "pipe-j2s";sortType = 6},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel/caution/corner{dir = 4},/area/hallway/primary/starboard)
-"bmY" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_engineering{name = "Engineering Foyer";req_access_txt = "0";req_one_access_txt = "32;19"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel,/area/engine/break_room)
-"bmZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room)
-"bna" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/turf/open/floor/plasteel,/area/engine/break_room)
-"bnb" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room)
-"bnc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel,/area/engine/break_room)
-"bnd" = (/obj/structure/table/glass,/obj/item/device/lightreplacer{pixel_y = 7},/turf/open/floor/plasteel,/area/engine/break_room)
-"bne" = (/obj/item/weapon/reagent_containers/food/drinks/soda_cans/thirteenloko{pixel_y = 4},/obj/structure/table/glass,/turf/open/floor/plasteel,/area/engine/break_room)
-"bnf" = (/obj/structure/chair/stool{pixel_y = 8},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/engine/break_room)
-"bng" = (/obj/structure/extinguisher_cabinet{pixel_x = 27;pixel_y = 0},/obj/machinery/camera{c_tag = "Engineering - Foyer - Starboard";dir = 8;network = list("SS13")},/turf/open/floor/plasteel,/area/engine/break_room)
-"bnh" = (/obj/structure/table/reinforced,/obj/item/weapon/book/manual/wiki/security_space_law{pixel_x = -3;pixel_y = 5},/obj/item/device/taperecorder{pixel_x = -4;pixel_y = 0},/turf/open/floor/plasteel,/area/security/main)
-"bni" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/syndicatebomb/training,/turf/open/floor/plasteel,/area/security/main)
-"bnj" = (/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 0;pixel_y = 21},/obj/structure/sign/poster{pixel_x = 32;pixel_y = 0},/turf/open/floor/plasteel/arrival{dir = 5},/area/hallway/secondary/entry{name = "Arrivals"})
-"bnk" = (/obj/structure/window/reinforced{dir = 1;pixel_y = 1},/turf/open/floor/plasteel/black,/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"bnl" = (/obj/structure/window/reinforced{dir = 1;pixel_y = 1},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel/black,/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"bnm" = (/obj/structure/window/reinforced{dir = 1;pixel_y = 1},/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel/black,/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"bnn" = (/obj/structure/chair{dir = 1},/turf/open/floor/plasteel/black,/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"bno" = (/obj/structure/transit_tube/diagonal,/turf/open/space,/area/space)
-"bnp" = (/obj/structure/window/reinforced{dir = 1;pixel_y = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/transit_tube/curved/flipped,/turf/open/floor/plasteel/darkblue/corner{dir = 1},/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"bnq" = (/obj/structure/window/reinforced{dir = 1;pixel_y = 1},/obj/machinery/light/small{dir = 1},/obj/machinery/airalarm{pixel_y = 28},/turf/open/floor/plasteel/darkblue/corner{dir = 1},/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"bnr" = (/obj/structure/window/reinforced{dir = 1;pixel_y = 1},/turf/open/floor/plasteel/darkblue/corner{dir = 1},/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"bns" = (/obj/machinery/door/window{dir = 1;name = "MiniSat Walkway Access";req_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/darkblue/corner{dir = 1},/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"bnt" = (/obj/structure/window/reinforced{dir = 1;pixel_y = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/darkblue/corner{dir = 1},/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"bnu" = (/obj/structure/window/reinforced{dir = 1;pixel_y = 1},/obj/structure/showcase{density = 0;desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze.";dir = 8;icon = 'icons/mob/robots.dmi';icon_state = "robot_old";name = "Cyborg Statue";pixel_x = 9;pixel_y = 2},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,/turf/open/floor/plasteel/darkblue/corner{dir = 1},/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"bnv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"bnw" = (/obj/structure/showcase{density = 0;desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze.";dir = 4;icon = 'icons/mob/robots.dmi';icon_state = "robot_old";name = "Cyborg Statue";pixel_x = -9;pixel_y = 2},/obj/machinery/airalarm{dir = 4;icon_state = "alarm0";pixel_x = -22},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/darkblue/corner{dir = 1},/area/ai_monitored/turret_protected/tcomfoyer{name = "\improper MiniSat Foyer"})
-"bnx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/darkblue/corner{dir = 1},/area/ai_monitored/turret_protected/tcomfoyer{name = "\improper MiniSat Foyer"})
-"bny" = (/obj/machinery/turretid{control_area = "AI Satellite Antechamber";enabled = 1;icon_state = "control_standby";name = "Antechamber Turret Control";pixel_x = 30;pixel_y = 0;req_access = list(65)},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/machinery/ai_slipper{uses = 10},/turf/open/floor/plasteel/darkblue/corner{dir = 1},/area/ai_monitored/turret_protected/tcomfoyer{name = "\improper MiniSat Foyer"})
-"bnz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/aisat_interior)
-"bnA" = (/obj/machinery/light/small{dir = 8},/obj/machinery/camera{c_tag = "MiniSat - Antechamber";dir = 4;network = list("MiniSat")},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel/darkblue/corner{dir = 1},/area/ai_monitored/turret_protected/aisat_interior)
-"bnB" = (/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,/turf/open/floor/plasteel/darkblue/corner{dir = 1},/area/ai_monitored/turret_protected/aisat_interior)
-"bnC" = (/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/landmark/start{name = "Cyborg"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/aisat_interior)
-"bnD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/darkblue/corner{dir = 4},/area/ai_monitored/turret_protected/aisat_interior)
-"bnE" = (/obj/machinery/power/apc{aidisabled = 0;cell_type = 2500;dir = 4;name = "MiniSat Antechamber APC";pixel_x = 29;pixel_y = 0},/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/darkblue/corner{dir = 4},/area/ai_monitored/turret_protected/aisat_interior)
-"bnF" = (/obj/machinery/power/terminal{icon_state = "term";dir = 1},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/ai_slipper{uses = 10},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/black,/area/ai_monitored/storage/secure{name = "MiniSat Maintenance"})
-"bnG" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/black,/area/ai_monitored/storage/secure{name = "MiniSat Maintenance"})
-"bnH" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/black,/area/ai_monitored/storage/secure{name = "MiniSat Maintenance"})
-"bnI" = (/obj/structure/showcase{density = 0;desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze.";dir = 8;icon = 'icons/mob/robots.dmi';icon_state = "robot_old";name = "Cyborg Statue";pixel_x = 9;pixel_y = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/black,/area/ai_monitored/storage/secure{name = "MiniSat Maintenance"})
-"bnJ" = (/obj/machinery/door/airlock/titanium{name = "Arrivals Shuttle Airlock"},/obj/docking_port/mobile{dwidth = 5;height = 7;id = "arrival";name = "arrival shuttle";port_angle = -90;preferred_direction = 8;width = 15},/obj/docking_port/stationary{dwidth = 5;height = 7;id = "arrival_home";name = "port bay 1";width = 15},/turf/open/floor/plating,/area/shuttle/arrival)
-"bnK" = (/obj/machinery/firealarm{dir = 8;pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/camera{c_tag = "Arrivals - Station Entrance";dir = 4;network = list("SS13")},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"bnL" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"bnM" = (/turf/open/floor/plasteel/arrival{dir = 4},/area/hallway/secondary/entry{name = "Arrivals"})
-"bnN" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green{pixel_x = 1;pixel_y = 5},/turf/open/floor/plasteel/grimy,/area/hallway/primary/port)
-"bnO" = (/obj/structure/chair/comfy/beige,/turf/open/floor/plasteel/grimy,/area/hallway/primary/port)
-"bnP" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/grimy,/area/hallway/primary/port)
-"bnQ" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/snacks/chips,/turf/open/floor/plasteel/grimy,/area/hallway/primary/port)
-"bnR" = (/obj/machinery/vending/coffee,/turf/open/floor/plasteel/black,/area/hallway/primary/port)
-"bnS" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/turf/open/floor/plasteel/neutral/side{dir = 8},/area/hallway/primary/port)
-"bnT" = (/obj/structure/disposalpipe/junction{dir = 1;icon_state = "pipe-j2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel/neutral/corner{dir = 4},/area/hallway/primary/port)
-"bnU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/firealarm{pixel_y = 32},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/hallway/primary/port)
-"bnV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/hallway/primary/port)
-"bnW" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/hallway/primary/port)
-"bnX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/hallway/primary/port)
-"bnY" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/hallway/primary/port)
-"bnZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Port Primary Hallway - Middle";dir = 2;network = list("SS13")},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/hallway/primary/port)
-"boa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/hallway/primary/port)
-"bob" = (/obj/machinery/power/apc{dir = 1;name = "Port Hallway APC";pixel_x = -1;pixel_y = 26},/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/hallway/primary/port)
-"boc" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/hallway/primary/port)
-"bod" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 0;pixel_y = 21},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/hallway/primary/port)
-"boe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/brown/corner{dir = 4},/area/hallway/primary/port)
-"bof" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/brown/corner{dir = 1},/area/hallway/primary/port)
-"bog" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/turf/open/floor/plasteel/brown/corner{dir = 4},/area/hallway/primary/port)
-"boh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/brown/corner{dir = 1},/area/hallway/primary/port)
-"boi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Port Primary Hallway"},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/hallway/primary/port)
-"boj" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/hallway/primary/central)
-"bok" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=4-Customs";location = "3-Central-Port"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bol" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "hop";name = "privacy shutters"},/turf/open/floor/plating,/area/crew_quarters/heads)
-"bom" = (/obj/item/weapon/folder/blue,/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/table/wood,/obj/item/device/assembly/flash/handheld,/turf/open/floor/wood,/area/crew_quarters/heads)
-"bon" = (/obj/effect/landmark/start{name = "Head of Personnel"},/obj/structure/chair/office/dark{dir = 8},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/wood,/area/crew_quarters/heads)
-"boo" = (/obj/machinery/newscaster/security_unit{pixel_x = 32;pixel_y = 0},/obj/machinery/computer/security/mining,/turf/open/floor/wood,/area/crew_quarters/heads)
-"bop" = (/obj/machinery/power/apc{cell_type = 10000;dir = 8;name = "Bridge APC";pixel_x = -27;pixel_y = 0},/obj/structure/cable/yellow,/obj/machinery/camera{c_tag = "Bridge - Port";dir = 4;network = list("SS13")},/turf/open/floor/plasteel/darkblue/side{dir = 8},/area/bridge)
-"boq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/black,/area/bridge)
-"bor" = (/turf/open/floor/plasteel/darkblue/corner,/area/bridge)
-"bos" = (/turf/open/floor/plasteel/darkblue/side{dir = 2},/area/bridge)
-"bot" = (/turf/open/floor/plasteel/darkblue/side{dir = 6},/area/bridge)
-"bou" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/recharger,/obj/item/weapon/restraints/handcuffs,/obj/structure/table/glass,/turf/open/floor/plasteel/black,/area/bridge)
-"bov" = (/obj/machinery/computer/communications,/turf/open/floor/plasteel/black,/area/bridge)
-"bow" = (/obj/machinery/computer/security/wooden_tv{pixel_x = 1;pixel_y = 6},/obj/structure/table/glass,/turf/open/floor/plasteel/black,/area/bridge)
-"box" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/table/glass,/obj/item/weapon/folder/blue{pixel_y = 2},/obj/item/weapon/folder/blue{pixel_y = 2},/turf/open/floor/plasteel/black,/area/bridge)
-"boy" = (/turf/open/floor/plasteel/darkblue/side{dir = 10},/area/bridge)
-"boz" = (/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel/darkblue/corner{dir = 8},/area/bridge)
-"boA" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel/black,/area/bridge)
-"boB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/darkblue/side{dir = 4},/area/bridge)
-"boC" = (/obj/machinery/firealarm{dir = 4;pixel_x = 24},/obj/item/weapon/storage/fancy/donut_box,/obj/structure/table/glass,/turf/open/floor/plasteel/black,/area/bridge)
-"boD" = (/obj/structure/displaycase/captain{pixel_y = 5},/obj/machinery/status_display{density = 0;layer = 4;pixel_x = 0;pixel_y = 32},/turf/open/floor/wood,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"boE" = (/obj/structure/sign/map/left{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";icon_state = "map-left-MS";pixel_y = 32},/turf/open/floor/wood,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"boF" = (/obj/structure/sign/map/right{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";icon_state = "map-right-MS";pixel_y = 32},/turf/open/floor/wood,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"boG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/wood,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"boH" = (/obj/machinery/computer/communications,/obj/item/device/radio/intercom{dir = 8;freerange = 1;name = "Station Intercom (Captain)";pixel_x = 28},/obj/machinery/ai_status_display{pixel_y = 32},/obj/machinery/keycard_auth{pixel_x = 24;pixel_y = 24},/turf/open/floor/wood,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"boI" = (/obj/structure/rack,/obj/item/weapon/cane,/obj/item/weapon/reagent_containers/food/snacks/grown/mushroom/glowshroom,/turf/open/floor/plating,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"boJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/device/radio/intercom{dir = 8;name = "Station Intercom (General)";pixel_x = -28},/obj/machinery/camera{c_tag = "Central Primary Hallway - Starboard - Art Storage";dir = 4;network = list("SS13")},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/hallway/primary/central)
-"boK" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/neutral/corner{dir = 4},/area/hallway/primary/central)
-"boL" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/storage/art)
-"boM" = (/obj/structure/table,/obj/item/weapon/hand_labeler,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/storage/art)
-"boN" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/storage/art)
-"boO" = (/obj/machinery/light_switch{pixel_x = 27},/obj/machinery/photocopier,/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel,/area/storage/art)
-"boP" = (/obj/structure/closet/secure_closet/bar{req_access_txt = "25"},/turf/open/floor/wood,/area/crew_quarters/bar)
-"boQ" = (/obj/machinery/reagentgrinder,/obj/structure/table/wood,/turf/open/floor/wood,/area/crew_quarters/bar)
-"boR" = (/obj/structure/table/wood,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/weapon/gun/ballistic/revolver/doublebarrel,/obj/machinery/camera{c_tag = "Bar - Backroom";dir = 2;network = list("SS13")},/turf/open/floor/wood,/area/crew_quarters/bar)
-"boS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/sleep)
-"boT" = (/obj/machinery/door/window/southleft{base_state = "left";dir = 2;icon_state = "left";name = "Bar Delivery";req_access_txt = "25"},/obj/structure/window/reinforced{dir = 8},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/crew_quarters/bar)
-"boU" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=1";dir = 8;freq = 1400;location = "Bar"},/obj/structure/plasticflaps{opacity = 1},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/crew_quarters/bar)
-"boV" = (/obj/item/weapon/storage/box/lights/mixed,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/starboard)
-"boW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/starboard)
-"boX" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/starboard)
-"boY" = (/obj/structure/closet/firecloset,/turf/open/floor/plating,/area/maintenance/starboard)
-"boZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/space_heater,/turf/open/floor/plating,/area/maintenance/starboard)
-"bpa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/starboard)
-"bpb" = (/obj/structure/closet/emcloset,/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/starboard)
-"bpc" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/starboard)
-"bpd" = (/obj/structure/extinguisher_cabinet{pixel_x = -27;pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/caution/corner{dir = 8},/area/hallway/primary/starboard)
-"bpe" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
-"bpf" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/caution/corner{dir = 4},/area/hallway/primary/starboard)
-"bpg" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/break_room)
-"bph" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/break_room)
-"bpi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plasteel,/area/engine/break_room)
-"bpj" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel,/area/engine/break_room)
-"bpk" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8;initialize_directions = 11},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/turf/open/floor/plasteel,/area/engine/break_room)
-"bpl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/cable{icon_state = "0-4";d2 = 4},/turf/open/floor/plasteel,/area/engine/break_room)
-"bpm" = (/obj/machinery/door/poddoor{density = 0;icon_state = "open";id = "transittube";name = "Transit Tube Blast Door";opacity = 0},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/engine/break_room)
-"bpn" = (/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel/black,/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"bpo" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/sign/poster{pixel_y = 32},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/starboard)
-"bpp" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plasteel/black,/area/engine/break_room)
-"bpq" = (/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel/black,/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"bpr" = (/obj/structure/window/reinforced,/turf/open/floor/plasteel/black,/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"bps" = (/obj/structure/window/reinforced,/obj/machinery/light/small,/obj/machinery/camera{c_tag = "MiniSat Exterior - Fore";dir = 1;network = list("MiniSat")},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/black,/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"bpt" = (/obj/machinery/firealarm{dir = 4;pixel_x = 24},/obj/structure/closet/wardrobe/red,/turf/open/floor/plasteel/red/side{dir = 6},/area/security/checkpoint2{name = "Customs"})
-"bpu" = (/turf/closed/wall/r_wall,/area/space)
-"bpv" = (/obj/structure/sign/securearea{pixel_y = 32},/obj/structure/transit_tube/station/reverse/flipped{dir = 1},/obj/structure/transit_tube_pod{dir = 4},/turf/open/floor/plasteel/darkblue/corner{dir = 4},/area/engine/break_room)
-"bpw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/lattice/catwalk,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/structure/transit_tube/horizontal,/turf/open/space,/area/space)
-"bpx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/lattice/catwalk,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/structure/transit_tube/crossing/horizontal,/turf/open/space,/area/space)
-"bpy" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/structure/transit_tube/horizontal,/turf/open/space,/area/space)
-"bpz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/lattice/catwalk,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/structure/transit_tube/junction/flipped{dir = 8},/turf/open/space,/area/space)
-"bpA" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/space,/area/space)
-"bpB" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/space,/area/space)
-"bpC" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/structure/transit_tube/station{dir = 4},/turf/open/floor/plasteel/black,/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"bpD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/open/floor/plasteel/black,/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"bpE" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/turf/open/floor/plasteel/black,/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"bpF" = (/obj/machinery/holopad,/obj/structure/cable/yellow{icon_state = "4-8";d1 = 4;d2 = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/black,/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"bpG" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/cable/yellow{icon_state = "4-8";d1 = 4;d2 = 8},/turf/open/floor/plasteel/black,/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"bpH" = (/obj/structure/cable/yellow{icon_state = "4-8";d1 = 4;d2 = 8},/obj/machinery/ai_slipper{uses = 10},/turf/open/floor/plasteel/black,/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"bpI" = (/obj/structure/cable/yellow{icon_state = "4-8";d1 = 4;d2 = 8},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/hatch{icon_state = "door_closed";name = "MiniSat Foyer";req_one_access_txt = "32;19"},/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/tcomfoyer{name = "\improper MiniSat Foyer"})
-"bpJ" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/obj/structure/cable/yellow{icon_state = "4-8";d1 = 4;d2 = 8},/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/tcomfoyer{name = "\improper MiniSat Foyer"})
-"bpK" = (/obj/structure/cable/yellow{icon_state = "4-8";d1 = 4;d2 = 8},/obj/machinery/holopad,/obj/item/device/radio/beacon,/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/tcomfoyer{name = "\improper MiniSat Foyer"})
-"bpL" = (/obj/structure/cable/yellow{icon_state = "4-8";d1 = 4;d2 = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/tcomfoyer{name = "\improper MiniSat Foyer"})
-"bpM" = (/obj/structure/cable/yellow{icon_state = "4-8";d1 = 4;d2 = 8},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/hatch{icon_state = "door_closed";name = "MiniSat Antechamber";req_one_access_txt = "32;19"},/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/aisat_interior)
-"bpN" = (/obj/structure/cable/yellow{icon_state = "4-8";d1 = 4;d2 = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/aisat_interior)
-"bpO" = (/obj/structure/cable/yellow{icon_state = "4-8";d1 = 4;d2 = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/aisat_interior)
-"bpP" = (/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable/yellow{icon_state = "4-8";d1 = 4;d2 = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/ai_slipper{uses = 10},/mob/living/simple_animal/bot/secbot/pingsky,/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/aisat_interior)
-"bpQ" = (/obj/structure/cable/yellow{icon_state = "4-8";d1 = 4;d2 = 8},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/aisat_interior)
-"bpR" = (/obj/structure/cable/yellow{icon_state = "4-8";d1 = 4;d2 = 8},/obj/structure/cable/yellow{icon_state = "1-4";d1 = 1;d2 = 4},/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/aisat_interior)
-"bpS" = (/obj/structure/cable/yellow{icon_state = "4-8";d1 = 4;d2 = 8},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance_hatch{name = "MiniSat Maintenance";req_access_txt = "32"},/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/aisat_interior)
-"bpT" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel/black,/area/ai_monitored/storage/secure{name = "MiniSat Maintenance"})
-"bpU" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/black,/area/ai_monitored/storage/secure{name = "MiniSat Maintenance"})
-"bpV" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel/black,/area/ai_monitored/storage/secure{name = "MiniSat Maintenance"})
-"bpW" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel/black,/area/ai_monitored/storage/secure{name = "MiniSat Maintenance"})
-"bpX" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance_hatch{name = "MiniSat Maintenance";req_access_txt = "32"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/black,/area/ai_monitored/storage/secure{name = "MiniSat Maintenance"})
-"bpY" = (/obj/structure/window/reinforced{dir = 1;pixel_y = 0},/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/ai_slipper{uses = 10},/turf/open/floor/plasteel/black,/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"bpZ" = (/obj/structure/window/reinforced{dir = 1;pixel_y = 0},/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/black,/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"bqa" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel/black,/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"bqb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/airalarm{dir = 4;pixel_x = -23;pixel_y = 0},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"bqc" = (/obj/machinery/holopad,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"bqd" = (/obj/machinery/power/apc{dir = 4;name = "Arrivals APC";pixel_x = 24;pixel_y = 0},/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/turf/open/floor/plasteel/arrival{dir = 4},/area/hallway/secondary/entry{name = "Arrivals"})
-"bqe" = (/obj/structure/chair/comfy/beige{dir = 4},/obj/machinery/camera{c_tag = "Arrivals - Lounge";dir = 4;network = list("SS13")},/obj/effect/landmark/start{name = "Assistant"},/turf/open/floor/plasteel/grimy,/area/hallway/primary/port)
-"bqf" = (/turf/open/floor/carpet,/area/hallway/primary/port)
-"bqg" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/holopad{pixel_y = -16},/turf/open/floor/carpet,/area/hallway/primary/port)
-"bqh" = (/obj/structure/chair/comfy/beige{dir = 8},/turf/open/floor/plasteel/grimy,/area/hallway/primary/port)
-"bqi" = (/obj/machinery/vending/cola,/obj/machinery/newscaster{pixel_x = -28;pixel_y = 1},/turf/open/floor/plasteel/black,/area/hallway/primary/port)
-"bqj" = (/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/neutral/side{dir = 8},/area/hallway/primary/port)
-"bqk" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/turf/open/floor/plasteel,/area/hallway/primary/port)
-"bql" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port)
-"bqm" = (/obj/machinery/turretid{icon_state = "control_stun";name = "AI Chamber turret control";pixel_x = 3;pixel_y = -23},/obj/machinery/door/window{base_state = "leftsecure";dir = 8;obj_integrity = 300;icon_state = "leftsecure";name = "Primary AI Core Access";req_access_txt = "16"},/obj/machinery/newscaster/security_unit{pixel_x = 4;pixel_y = 33},/turf/open/floor/plasteel/vault{dir = 6},/area/ai_monitored/turret_protected/ai)
-"bqn" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port)
-"bqo" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port)
-"bqp" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port)
-"bqq" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/port)
-"bqr" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port)
-"bqs" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/turf/open/floor/plasteel,/area/hallway/primary/port)
-"bqt" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/disposalpipe/sortjunction{dir = 8;icon_state = "pipe-j1s";sortType = 3},/turf/open/floor/plasteel,/area/hallway/primary/port)
-"bqu" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port)
-"bqv" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/turf/open/floor/plasteel,/area/hallway/primary/port)
-"bqw" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/primary/port)
-"bqx" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Port Primary Hallway"},/turf/open/floor/plasteel,/area/hallway/primary/port)
-"bqy" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bqz" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_Toxins = 0},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bqA" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4;initialize_directions = 11},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/hallway/primary/central)
-"bqB" = (/obj/item/weapon/paper_bin{pixel_x = -2;pixel_y = 4},/obj/item/weapon/pen,/obj/structure/window/reinforced,/obj/structure/table/wood,/turf/open/floor/wood,/area/crew_quarters/heads)
-"bqC" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/window{dir = 2;name = "HoP's Desk";pixel_y = 0;req_access_txt = "57"},/turf/open/floor/wood,/area/crew_quarters/heads)
-"bqD" = (/obj/structure/window/reinforced,/obj/machinery/computer/cargo/request,/turf/open/floor/wood,/area/crew_quarters/heads)
-"bqE" = (/obj/machinery/vending/cart{req_access_txt = "57"},/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 0;pixel_y = 21},/turf/open/floor/wood,/area/crew_quarters/heads)
-"bqF" = (/obj/machinery/status_display{density = 0;layer = 4;pixel_x = 0;pixel_y = 32},/turf/open/floor/plasteel/darkblue/corner{dir = 4},/area/engine/break_room)
-"bqG" = (/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 0;pixel_y = 32},/obj/structure/filingcabinet/chestdrawer{pixel_y = 2},/turf/open/floor/wood,/area/crew_quarters/heads)
-"bqH" = (/turf/closed/wall,/area/crew_quarters/heads)
-"bqI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/darkblue/side{dir = 2},/area/bridge)
-"bqJ" = (/obj/machinery/light,/obj/machinery/firealarm{dir = 1;pixel_y = -24},/obj/structure/rack,/obj/item/weapon/storage/secure/briefcase,/obj/item/clothing/mask/cigarette/cigar,/turf/open/floor/plasteel/darkblue/side{dir = 1},/area/bridge)
-"bqK" = (/obj/structure/rack,/obj/item/device/aicard,/obj/item/device/radio/off,/obj/machinery/computer/security/telescreen{dir = 1;name = "MiniSat Monitor";network = list("MiniSat","tcomm");pixel_x = 0;pixel_y = -29},/turf/open/floor/plasteel/darkblue/side{dir = 1},/area/bridge)
-"bqL" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/cell_charger{pixel_y = 4},/obj/structure/table/glass,/obj/item/weapon/stock_parts/cell/high{charge = 100;maxcharge = 15000},/turf/open/floor/plasteel/black,/area/bridge)
-"bqM" = (/turf/open/floor/carpet,/area/bridge)
-"bqN" = (/obj/structure/chair/comfy/black{dir = 1},/turf/open/floor/carpet,/area/bridge)
-"bqO" = (/obj/structure/window/reinforced{dir = 4},/obj/item/weapon/paper_bin{pixel_x = -2;pixel_y = 8},/obj/structure/table/glass,/turf/open/floor/plasteel/black,/area/bridge)
-"bqP" = (/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 0;pixel_y = -29},/obj/structure/rack,/obj/item/device/assembly/signaler,/obj/item/device/assembly/signaler,/obj/item/device/assembly/timer,/turf/open/floor/plasteel/darkblue/side{dir = 1},/area/bridge)
-"bqQ" = (/obj/machinery/light,/obj/structure/rack,/obj/item/weapon/storage/toolbox/emergency,/obj/item/weapon/storage/toolbox/emergency{pixel_x = -2;pixel_y = -3},/obj/item/weapon/wrench,/obj/item/device/multitool,/obj/machinery/newscaster{pixel_x = 0;pixel_y = -30},/turf/open/floor/plasteel/darkblue/side{dir = 1},/area/bridge)
-"bqR" = (/obj/machinery/light_switch{pixel_x = 8;pixel_y = -26},/turf/open/floor/plasteel/darkblue/side{dir = 10},/area/bridge)
-"bqS" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/darkblue/side{dir = 2},/area/bridge)
-"bqT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/darkblue/side{dir = 6},/area/bridge)
-"bqU" = (/obj/structure/fireaxecabinet{pixel_y = -32},/obj/item/weapon/paper_bin{pixel_x = -2;pixel_y = 7},/obj/item/weapon/pen{pixel_y = 3},/obj/machinery/light_switch{pixel_x = 28;pixel_y = 0},/obj/structure/table/glass,/turf/open/floor/plasteel/black,/area/bridge)
-"bqV" = (/obj/structure/table/wood,/obj/item/weapon/book/manual/wiki/security_space_law,/obj/machinery/power/apc{dir = 8;name = "Captain's Quarters APC";pixel_x = -24;pixel_y = 0},/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/obj/machinery/light/small{dir = 8},/obj/item/weapon/paper{info = "Congratulations,
Your station has been selected to carry out the Gateway Project.
The equipment will be shipped to you at the start of the next quarter.
You are to prepare a secure location to house the equipment as outlined in the attached documents.
--Nanotrasen Blue Space Research";name = "Confidential Correspondence, Pg 1";pixel_x = 0;pixel_y = 0},/obj/item/weapon/coin/plasma,/obj/item/weapon/melee/chainofcommand,/turf/open/floor/wood,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"bqW" = (/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/wood,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"bqX" = (/obj/structure/table/wood,/obj/item/weapon/stamp/captain,/obj/machinery/computer/security/wooden_tv,/turf/open/floor/wood,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"bqY" = (/obj/effect/landmark/start{name = "Captain"},/obj/structure/chair/comfy/brown,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/wood,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"bqZ" = (/obj/machinery/computer/card,/obj/machinery/light/small{dir = 4},/obj/machinery/requests_console{announcementConsole = 1;department = "Captain's Desk";departmentType = 5;name = "Captain RC";pixel_x = 32;pixel_y = 0},/turf/open/floor/wood,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"bra" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/hallway/primary/central)
-"brb" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"brc" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/neutral/corner{dir = 4},/area/hallway/primary/central)
-"brd" = (/obj/structure/table,/obj/machinery/power/apc{cell_type = 2500;dir = 8;name = "Art Storage APC";pixel_x = -25;pixel_y = 0},/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/obj/item/stack/cable_coil/random,/obj/item/stack/cable_coil/random,/obj/item/stack/cable_coil/random,/obj/item/stack/cable_coil/random,/obj/item/stack/cable_coil/random,/turf/open/floor/plasteel,/area/storage/art)
-"bre" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel,/area/storage/art)
-"brf" = (/obj/structure/table,/obj/item/weapon/airlock_painter,/turf/open/floor/plasteel,/area/storage/art)
-"brg" = (/obj/machinery/light/small{dir = 8},/obj/item/weapon/vending_refill/cigarette,/turf/open/floor/wood,/area/crew_quarters/bar)
-"brh" = (/obj/effect/landmark/start{name = "Bartender"},/turf/open/floor/wood,/area/crew_quarters/bar)
-"bri" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/turf/open/floor/wood,/area/crew_quarters/bar)
-"brj" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/wood,/area/crew_quarters/bar)
-"brk" = (/obj/machinery/light/small,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_Toxins = 0},/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 0;pixel_y = -30},/turf/open/floor/wood,/area/crew_quarters/bar)
-"brl" = (/obj/machinery/door/airlock/maintenance{name = "Bar Maintenance";req_access_txt = "25"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/crew_quarters/bar)
-"brm" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/starboard)
-"brn" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard)
-"bro" = (/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/disposalpipe/sortjunction{dir = 2;icon_state = "pipe-j1s";sortType = 19},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1;initialize_directions = 11},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard)
-"brp" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{req_access_txt = "0";req_one_access_txt = "12;25;46"},/turf/open/floor/plating,/area/maintenance/starboard)
-"brq" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/starboard)
-"brr" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/starboard)
-"brs" = (/obj/item/device/assembly/prox_sensor,/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2;initialize_directions = 11},/turf/open/floor/plating,/area/maintenance/starboard)
-"brt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/item/weapon/storage/box/lights/mixed,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/starboard)
-"bru" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard)
-"brv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/airlock/maintenance{req_access_txt = "0";req_one_access_txt = "12;25;46"},/turf/open/floor/plating,/area/maintenance/starboard)
-"brw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/starboard)
-"brx" = (/obj/machinery/requests_console{department = "AI";departmentType = 5;pixel_x = 30;pixel_y = 30},/obj/machinery/ai_slipper{uses = 10},/obj/machinery/flasher{id = "AI";pixel_x = 23;pixel_y = -23},/turf/open/floor/plasteel/vault,/area/ai_monitored/turret_protected/ai)
-"bry" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
-"brz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/sign/securearea{pixel_x = 32;pixel_y = 0},/turf/open/floor/plasteel/black/corner{dir = 2},/area/hallway/primary/starboard)
-"brA" = (/obj/machinery/vending/coffee,/turf/open/floor/plasteel/cafeteria{dir = 5},/area/engine/break_room)
-"brB" = (/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 0;pixel_y = -30},/obj/machinery/vending/cigarette,/turf/open/floor/plasteel/cafeteria{dir = 5},/area/engine/break_room)
-"brC" = (/obj/machinery/microwave{pixel_x = 0;pixel_y = 4},/obj/machinery/camera{c_tag = "Engineering - Foyer - Port";dir = 1;network = list("SS13")},/obj/structure/table/glass,/turf/open/floor/plasteel/cafeteria{dir = 5},/area/engine/break_room)
-"brD" = (/obj/machinery/newscaster{pixel_x = 0;pixel_y = -32},/obj/item/weapon/storage/box/donkpockets,/obj/structure/table/glass,/turf/open/floor/plasteel/cafeteria{dir = 5},/area/engine/break_room)
-"brE" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/engine/break_room)
-"brF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/power/apc{dir = 2;name = "Engineering Foyer APC";pixel_x = -1;pixel_y = -26},/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/obj/machinery/light,/turf/open/floor/plasteel,/area/engine/break_room)
-"brG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/firealarm{dir = 1;pixel_y = -24},/turf/open/floor/plasteel,/area/engine/break_room)
-"brH" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room)
-"brI" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/break_room)
-"brJ" = (/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/obj/machinery/ai_status_display{pixel_y = 32},/obj/structure/transit_tube/curved{dir = 8},/turf/open/floor/plasteel/darkblue/corner{dir = 4},/area/engine/break_room)
-"brK" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/hatch{name = "MiniSat Access";req_one_access_txt = "32;19"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plasteel/black,/area/engine/break_room)
-"brL" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel/black,/area/engine/break_room)
-"brM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/lattice/catwalk,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/structure/window/reinforced{dir = 8},/obj/structure/transit_tube/curved{dir = 4},/turf/open/space,/area/space)
-"brN" = (/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/structure/table/glass,/obj/item/weapon/phone{pixel_x = -3;pixel_y = 3},/obj/item/weapon/cigbutt/cigarbutt{pixel_x = 5;pixel_y = -1},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/black,/area/engine/break_room)
-"brO" = (/obj/structure/transit_tube/diagonal/topleft,/turf/open/space,/area/space)
-"brP" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/transit_tube/curved{dir = 1},/turf/open/floor/plasteel/darkblue/corner{dir = 8},/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"brQ" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/machinery/light/small,/obj/machinery/camera{c_tag = "MiniSat Exterior Access";dir = 1;network = list("MiniSat")},/obj/machinery/power/apc{aidisabled = 0;dir = 2;name = "MiniSat Exterior APC";pixel_y = -24},/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/turf/open/floor/plasteel/darkblue/corner{dir = 8},/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"brR" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel/darkblue/corner{dir = 8},/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"brS" = (/obj/machinery/door/window{dir = 2;name = "MiniSat Walkway Access";req_access_txt = "0"},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel/darkblue/corner{dir = 8},/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"brT" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/darkblue/corner{dir = 8},/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"brU" = (/obj/structure/window/reinforced,/obj/structure/showcase{density = 0;desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze.";dir = 8;icon = 'icons/mob/robots.dmi';icon_state = "robot_old";name = "Cyborg Statue";pixel_x = 9;pixel_y = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/firealarm{dir = 4;pixel_x = 24},/turf/open/floor/plasteel/darkblue/corner{dir = 8},/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"brV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"brW" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/item/device/radio/intercom{name = "Station Intercom (General)";pixel_x = 0;pixel_y = -28},/turf/open/floor/plasteel/darkblue/corner{dir = 8},/area/ai_monitored/turret_protected/tcomfoyer{name = "\improper MiniSat Foyer"})
-"brX" = (/obj/machinery/ai_status_display{pixel_x = 0;pixel_y = 32},/obj/machinery/porta_turret/ai{dir = 2},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/machinery/computer/security/telescreen{desc = "Used for watching the RD's goons from the safety of his office.";dir = 4;name = "Research Monitor";network = list("RD");pixel_x = -28;pixel_y = 0},/turf/open/floor/plasteel/vault{dir = 1},/area/ai_monitored/turret_protected/aisat_interior)
-"brY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/power/apc{aidisabled = 0;cell_type = 5000;dir = 2;name = "MiniSat Foyer APC";pixel_x = 0;pixel_y = -29},/obj/structure/cable/yellow,/obj/machinery/camera/motion{c_tag = "MiniSat Foyer";dir = 8;network = list("MiniSat")},/turf/open/floor/plasteel/darkblue/corner{dir = 8},/area/ai_monitored/turret_protected/tcomfoyer{name = "\improper MiniSat Foyer"})
-"brZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/aisat_interior)
-"bsa" = (/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/airalarm{dir = 4;icon_state = "alarm0";pixel_x = -22},/mob/living/simple_animal/bot/floorbot,/turf/open/floor/plasteel/darkblue/corner{dir = 8},/area/ai_monitored/turret_protected/aisat_interior)
-"bsb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/darkblue/corner{dir = 8},/area/ai_monitored/turret_protected/aisat_interior)
-"bsc" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,/turf/open/floor/plasteel/black,/area/ai_monitored/turret_protected/aisat_interior)
-"bsd" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel/darkblue/corner,/area/ai_monitored/turret_protected/aisat_interior)
-"bse" = (/obj/machinery/status_display{density = 0;layer = 4;pixel_x = 0;pixel_y = 32},/obj/machinery/porta_turret/ai{dir = 2},/obj/machinery/computer/security/telescreen{dir = 8;name = "MiniSat Monitor";network = list("MiniSat","tcomm");pixel_x = 28;pixel_y = 0},/turf/open/floor/plasteel/vault{dir = 4},/area/ai_monitored/turret_protected/aisat_interior)
-"bsf" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/darkblue/corner{dir = 8},/area/ai_monitored/turret_protected/tcomfoyer{name = "\improper MiniSat Foyer"})
-"bsg" = (/obj/machinery/computer/station_alert,/obj/machinery/light,/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/obj/machinery/computer/security/telescreen{dir = 1;name = "MiniSat Monitor";network = list("MiniSat","tcomm");pixel_x = 0;pixel_y = -29},/turf/open/floor/plasteel/black,/area/ai_monitored/storage/secure{name = "MiniSat Maintenance"})
-"bsh" = (/obj/structure/table,/obj/item/device/radio/intercom{name = "Station Intercom (General)";pixel_x = 0;pixel_y = -28},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/computer/monitor,/obj/structure/cable/yellow,/turf/open/floor/plasteel/black,/area/ai_monitored/storage/secure{name = "MiniSat Maintenance"})
-"bsi" = (/obj/machinery/camera/motion{c_tag = "MiniSat Maintenance";dir = 8;network = list("MiniSat")},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9;pixel_y = 0},/obj/structure/rack,/obj/item/weapon/storage/toolbox/electrical{pixel_x = -3;pixel_y = 3},/obj/item/weapon/storage/toolbox/mechanical,/obj/item/device/multitool,/turf/open/floor/plasteel/black,/area/ai_monitored/storage/secure{name = "MiniSat Maintenance"})
-"bsj" = (/obj/structure/window/reinforced{dir = 1;layer = 2.9},/obj/structure/window/reinforced{dir = 4},/turf/open/space,/area/space)
-"bsk" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/hallway/secondary/entry{name = "Arrivals"})
-"bsl" = (/obj/machinery/vending/cola,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"bsm" = (/obj/item/device/radio/beacon,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"bsn" = (/obj/structure/closet/firecloset,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"bso" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/effect/landmark{name = "lightsout"},/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"bsp" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/newscaster{pixel_x = 28;pixel_y = 1},/obj/machinery/light{dir = 4;icon_state = "tube1"},/turf/open/floor/plasteel/arrival{dir = 4},/area/hallway/secondary/entry{name = "Arrivals"})
-"bsq" = (/obj/structure/chair/comfy/beige{dir = 4},/turf/open/floor/plasteel/grimy,/area/hallway/primary/port)
-"bsr" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/carpet,/area/hallway/primary/port)
-"bss" = (/obj/structure/chair/comfy/beige{dir = 8},/obj/machinery/light{dir = 4;icon_state = "tube1"},/obj/effect/landmark/start{name = "Assistant"},/turf/open/floor/plasteel/grimy,/area/hallway/primary/port)
-"bst" = (/obj/machinery/vending/snack,/turf/open/floor/plasteel/black,/area/hallway/primary/port)
-"bsu" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8;initialize_directions = 11},/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/neutral/side{dir = 8},/area/hallway/primary/port)
-"bsv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/hallway/primary/port)
-"bsw" = (/obj/item/device/radio/intercom{broadcasting = 0;listening = 1;name = "Station Intercom (General)";pixel_y = -28},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/hallway/primary/port)
-"bsx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/hallway/primary/port)
-"bsy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/hallway/primary/port)
-"bsz" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2;initialize_directions = 11},/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/hallway/primary/port)
-"bsA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 0;pixel_y = -30},/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/hallway/primary/port)
-"bsB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/airalarm{dir = 1;pixel_y = -22},/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/hallway/primary/port)
-"bsC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/hallway/primary/port)
-"bsD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/hallway/primary/port)
-"bsE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/status_display{density = 0;layer = 4;pixel_x = 0;pixel_y = -32},/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/hallway/primary/port)
-"bsF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/hallway/primary/port)
-"bsG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light,/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/hallway/primary/port)
-"bsH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera{c_tag = "Port Primary Hallway - Starboard";dir = 1;network = list("SS13")},/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/hallway/primary/port)
-"bsI" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2;initialize_directions = 11},/obj/structure/extinguisher_cabinet{pixel_x = 0;pixel_y = -30},/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/hallway/primary/port)
-"bsJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Port Primary Hallway"},/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/hallway/primary/port)
-"bsK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/hallway/primary/central)
-"bsL" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=7-Command-Starboard";location = "6-Port-Central"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bsM" = (/obj/machinery/button/door{id = "hop";name = "Privacy Shutters Control";pixel_x = -24;pixel_y = -6;req_access_txt = "28"},/obj/machinery/light_switch{pixel_x = -25;pixel_y = 5},/turf/open/floor/carpet,/area/crew_quarters/heads)
-"bsN" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;on = 1;scrub_N2O = 1;scrub_Toxins = 1},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/carpet,/area/crew_quarters/heads)
-"bsO" = (/mob/living/simple_animal/pet/dog/corgi/Ian,/turf/open/floor/carpet,/area/crew_quarters/heads)
-"bsP" = (/obj/machinery/status_display{density = 0;layer = 4;pixel_x = 0;pixel_y = 32},/obj/structure/bed/dogbed{anchored = 1;desc = "Ian's bed! Looks comfy.";name = "Ian's bed";pixel_y = 2},/turf/open/floor/wood,/area/crew_quarters/heads)
-"bsQ" = (/turf/open/floor/carpet,/area/crew_quarters/heads)
-"bsR" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/turf/open/floor/carpet,/area/crew_quarters/heads)
-"bsS" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_command{name = "Bridge";req_access_txt = "19"},/turf/open/floor/plasteel/darkblue/side{dir = 1},/area/bridge)
-"bsT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_command{name = "Bridge";req_access_txt = "19"},/turf/open/floor/plasteel/darkblue/side{dir = 1},/area/bridge)
-"bsU" = (/turf/closed/wall,/area/bridge)
-"bsV" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/light_switch{pixel_y = -25},/obj/machinery/vending/cola{pixel_x = 2},/turf/open/floor/plasteel/black,/area/bridge)
-"bsW" = (/obj/machinery/button/door{id = "bridge blast";name = "Bridge Access Blast Door Control";pixel_x = -1;pixel_y = -24;req_access_txt = "19"},/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 1;scrub_Toxins = 1},/obj/machinery/button/door{id = "council blast";name = "Council Chamber Blast Door Control";pixel_x = -1;pixel_y = -34;req_access_txt = "19"},/obj/machinery/camera{c_tag = "Bridge - Command Chair";dir = 1;network = list("SS13")},/turf/open/floor/carpet,/area/bridge)
-"bsX" = (/obj/machinery/holopad,/turf/open/floor/carpet,/area/bridge)
-"bsY" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/obj/machinery/button/door{id = "evashutter";name = "E.V.A. Storage Shutter Control";pixel_x = 0;pixel_y = -24;req_access_txt = "19"},/obj/machinery/button/door{id = "gateshutter";name = "Gateway Shutter Control";pixel_x = 0;pixel_y = -34;req_access_txt = "19"},/turf/open/floor/carpet,/area/bridge)
-"bsZ" = (/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/obj/machinery/vending/snack{pixel_x = -2},/turf/open/floor/plasteel/black,/area/bridge)
-"bta" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_command{name = "Bridge";req_access_txt = "19"},/turf/open/floor/plasteel/darkblue/side{dir = 1},/area/bridge)
-"btb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_command{name = "Bridge";req_access_txt = "19"},/turf/open/floor/plasteel/darkblue/side{dir = 1},/area/bridge)
-"btc" = (/obj/structure/table/wood,/obj/structure/window/reinforced,/obj/machinery/light_switch{pixel_x = -28;pixel_y = 0},/obj/item/weapon/storage/secure/briefcase{pixel_x = -2;pixel_y = 4},/obj/item/weapon/storage/lockbox/medal{pixel_y = 0},/turf/open/floor/wood,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"btd" = (/obj/machinery/door/window{name = "Captain's Desk";req_access_txt = "20"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/wood,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"bte" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin{pixel_x = 1;pixel_y = 9},/obj/item/weapon/pen,/obj/structure/window/reinforced,/turf/open/floor/wood,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"btf" = (/obj/structure/table/wood,/obj/item/weapon/folder/blue,/obj/machinery/door/window{base_state = "right";icon_state = "right";name = "Captain's Desk";req_access_txt = "20"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/disposalpipe/segment,/obj/item/weapon/stamp/captain,/turf/open/floor/wood,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"btg" = (/obj/structure/table/wood,/obj/item/weapon/hand_tele,/obj/structure/window/reinforced,/obj/item/device/radio/intercom{dir = 0;name = "Station Intercom (General)";pixel_x = 27;pixel_y = 0},/turf/open/floor/wood,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"bth" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/effect/landmark{name = "blobstart"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"})
-"bti" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/airlock/maintenance{req_access_txt = "0";req_one_access_txt = "20;12"},/turf/open/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"})
-"btj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/hallway/primary/central)
-"btk" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"btl" = (/obj/structure/table,/obj/item/weapon/canvas/twentythreeXtwentythree,/obj/item/weapon/canvas/twentythreeXtwentythree,/obj/item/weapon/canvas/twentythreeXnineteen,/obj/item/weapon/canvas/twentythreeXnineteen,/obj/item/weapon/canvas/nineteenXnineteen,/obj/item/weapon/canvas/nineteenXnineteen,/obj/item/weapon/storage/crayons,/obj/item/weapon/storage/crayons,/obj/item/weapon/storage/crayons,/turf/open/floor/plasteel,/area/storage/art)
-"btm" = (/obj/structure/table,/obj/item/device/camera,/turf/open/floor/plasteel,/area/storage/art)
-"btn" = (/obj/structure/table,/obj/item/device/camera_film,/obj/machinery/firealarm{dir = 4;pixel_x = 28},/turf/open/floor/plasteel,/area/storage/art)
-"bto" = (/obj/structure/reagent_dispensers/beerkeg,/turf/open/floor/wood,/area/crew_quarters/bar)
-"btp" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/turf/open/floor/wood,/area/crew_quarters/bar)
-"btq" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/structure/closet/gmcloset,/obj/item/weapon/wrench,/obj/item/stack/sheet/glass{amount = 30},/obj/item/stack/sheet/metal{amount = 30},/obj/item/stack/cable_coil/random,/obj/item/stack/cable_coil/random,/turf/open/floor/wood,/area/crew_quarters/bar)
-"btr" = (/obj/machinery/chem_master/condimaster{desc = "Looks like a knock-off chem-master. Perhaps useful for separating liquids when mixing drinks precisely. Also dispenses condiments.";name = "HoochMaster Deluxe";pixel_x = -4},/turf/open/floor/wood,/area/crew_quarters/bar)
-"bts" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/starboard)
-"btt" = (/obj/item/weapon/stock_parts/cell/high{charge = 100;maxcharge = 15000},/turf/open/floor/plating{icon_state = "platingdmg2"},/area/maintenance/starboard)
-"btu" = (/obj/item/weapon/storage/toolbox/emergency,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/starboard)
-"btv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/weapon/cigbutt,/turf/open/floor/plating,/area/maintenance/starboard)
-"btw" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/starboard)
-"btx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/caution{dir = 8},/area/hallway/primary/starboard)
-"bty" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/caution{dir = 4},/area/hallway/primary/starboard)
-"btz" = (/obj/machinery/door/airlock/maintenance{name = "Engineering Foyer Maintenance";req_access_txt = "0";req_one_access_txt = "32;19"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/engine/break_room)
-"btA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel/caution{dir = 2},/area/engine/break_room)
-"btB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/caution{dir = 2},/area/engine/break_room)
-"btC" = (/obj/machinery/requests_console{announcementConsole = 1;department = "Head of Personnel's Desk";departmentType = 5;name = "Head of Personnel RC";pixel_y = 30},/obj/machinery/pdapainter{pixel_y = 2},/turf/open/floor/wood,/area/crew_quarters/heads)
-"btD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/sign/securearea{pixel_x = 32;pixel_y = 0},/turf/open/floor/plasteel,/area/engine/break_room)
-"btE" = (/obj/effect/landmark{name = "revenantspawn"},/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 0;pixel_y = -28},/obj/structure/chair/office/dark{dir = 4},/turf/open/floor/plasteel/darkblue/corner,/area/engine/break_room)
-"btF" = (/obj/machinery/airalarm{dir = 4;locked = 0;pixel_x = -23;pixel_y = 0},/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel/black,/area/engine/break_room)
-"btG" = (/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/obj/structure/table/glass,/obj/item/weapon/folder/blue{pixel_y = 3},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/weapon/pen,/obj/machinery/computer/security/telescreen{dir = 1;name = "MiniSat Monitor";network = list("MiniSat","tcomm");pixel_x = 0;pixel_y = -28},/turf/open/floor/plasteel/darkblue/corner,/area/engine/break_room)
-"btH" = (/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/obj/machinery/power/apc{dir = 1;name = "Head of Personnel APC";pixel_y = 24},/turf/open/floor/carpet,/area/crew_quarters/heads)
-"btI" = (/obj/structure/lattice,/obj/structure/transit_tube/curved{dir = 4},/turf/open/space,/area/space)
-"btJ" = (/obj/structure/lattice,/obj/structure/transit_tube/curved/flipped{dir = 8},/turf/open/space,/area/space)
-"btK" = (/obj/structure/window/reinforced{dir = 1;pixel_y = 1},/obj/structure/lattice,/turf/open/space,/area/space)
-"btL" = (/turf/closed/wall/r_wall,/area/tcommsat/computer{name = "\improper Telecoms Control Room"})
-"btM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/tcommsat/computer{name = "\improper Telecoms Control Room"})
-"btN" = (/obj/machinery/door/airlock/hatch{name = "Telecoms Control Room";req_one_access_txt = "19; 61"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/vault{dir = 8},/area/tcommsat/computer{name = "\improper Telecoms Control Room"})
-"btO" = (/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"btP" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"btQ" = (/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"btR" = (/obj/item/weapon/twohanded/required/kirbyplants{icon_state = "plant-18";layer = 4.1},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"btS" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;name = "EXTERNAL AIRLOCK";pixel_x = 0;pixel_y = 32},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"btT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"btU" = (/obj/item/weapon/twohanded/required/kirbyplants{icon_state = "plant-08";layer = 4.1},/turf/open/floor/plasteel/grimy,/area/hallway/primary/port)
-"btV" = (/obj/structure/chair/comfy/beige{dir = 1},/turf/open/floor/plasteel/grimy,/area/hallway/primary/port)
-"btW" = (/obj/item/weapon/twohanded/required/kirbyplants{icon_state = "plant-03";layer = 4.1},/turf/open/floor/plasteel/grimy,/area/hallway/primary/port)
-"btX" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/camera{c_tag = "Port Primary Hallway - Port";dir = 4;network = list("SS13")},/turf/open/floor/plasteel/black,/area/hallway/primary/port)
-"btY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/neutral/side{dir = 8},/area/hallway/primary/port)
-"btZ" = (/obj/machinery/light{dir = 4;icon_state = "tube1"},/turf/open/floor/plasteel/neutral/side{dir = 4},/area/hallway/primary/port)
-"bua" = (/obj/structure/closet/firecloset,/turf/open/floor/plasteel/vault,/area/hallway/primary/port)
-"bub" = (/obj/structure/closet/emcloset,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/vault,/area/hallway/primary/port)
-"buc" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel/vault,/area/hallway/primary/port)
-"bud" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "0";req_one_access_txt = "12;27;37"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bue" = (/turf/closed/wall,/area/library)
-"buf" = (/obj/structure/closet/firecloset,/turf/open/floor/plasteel/black,/area/hallway/primary/central)
-"bug" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/glass{name = "Library"},/turf/open/floor/wood,/area/library)
-"buh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Library"},/turf/open/floor/wood,/area/library)
-"bui" = (/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the escape arm is.";icon_state = "direction_evac";name = "escape arm"},/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the medical department is.";icon_state = "direction_med";name = "medical department";pixel_y = 8},/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the research department is.";icon_state = "direction_sci";name = "research department";pixel_y = -8},/turf/closed/wall,/area/library)
-"buj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/hallway/primary/central)
-"buk" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/sortjunction{dir = 1;icon_state = "pipe-j1s";sortType = 15},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bul" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8;initialize_directions = 11},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/hallway/primary/central)
-"bum" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Head of Personnel";req_access = null;req_access_txt = "57"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/wood,/area/crew_quarters/heads)
-"bun" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/turf/open/floor/carpet,/area/crew_quarters/heads)
-"buo" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/carpet,/area/crew_quarters/heads)
-"bup" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/carpet,/area/crew_quarters/heads)
-"buq" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/holopad,/turf/open/floor/carpet,/area/crew_quarters/heads)
-"bur" = (/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/carpet,/area/crew_quarters/heads)
-"bus" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/carpet,/area/crew_quarters/heads)
-"but" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/heads)
-"buu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Head of Personnel";req_access = null;req_access_txt = "57"},/turf/open/floor/plasteel/black,/area/crew_quarters/heads)
-"buv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel/darkblue/corner,/area/bridge)
-"buw" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8;initialize_directions = 11},/turf/open/floor/plasteel/black,/area/bridge)
-"bux" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/bridge)
-"buy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/bookcase,/turf/open/floor/wood,/area/bridge)
-"buz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/closed/wall,/area/bridge)
-"buA" = (/obj/machinery/door/airlock/command{name = "Command Desk";req_access = null;req_access_txt = "19"},/turf/open/floor/plasteel/vault,/area/bridge)
-"buB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/bridge)
-"buC" = (/obj/structure/bookcase,/turf/open/floor/wood,/area/bridge)
-"buD" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/item/device/radio/intercom{dir = 0;name = "Station Intercom (General)";pixel_x = -26;pixel_y = 0},/turf/open/floor/plasteel/darkblue/corner,/area/bridge)
-"buE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/black,/area/bridge)
-"buF" = (/obj/machinery/vending/boozeomat,/obj/machinery/light/small{dir = 8},/turf/open/floor/wood,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"buG" = (/obj/machinery/holopad{pixel_x = 9;pixel_y = -9},/turf/open/floor/carpet,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"buH" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/carpet,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"buI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/disposalpipe/segment,/turf/open/floor/carpet,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"buJ" = (/obj/machinery/camera{c_tag = "Captain's Office";dir = 8;network = list("SS13")},/turf/open/floor/carpet,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"buK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/camera{c_tag = "Captain's Office - Emergency Escape";dir = 4;network = list("SS13")},/turf/open/floor/plating{icon_state = "platingdmg2"},/area/maintenance/maintcentral{name = "Central Maintenance"})
-"buL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/airalarm{dir = 4;pixel_x = -23;pixel_y = 0},/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/hallway/primary/central)
-"buM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/extinguisher_cabinet{pixel_x = 27;pixel_y = 0},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/neutral/corner{dir = 4},/area/hallway/primary/central)
-"buN" = (/obj/machinery/vending/boozeomat,/turf/closed/wall,/area/crew_quarters/bar)
-"buO" = (/obj/machinery/door/airlock{name = "Bar Storage";req_access_txt = "25"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel{icon_state = "wood"},/area/crew_quarters/bar)
-"buP" = (/obj/machinery/computer/slot_machine{pixel_y = 2},/obj/structure/sign/barsign{pixel_y = 32},/turf/open/floor/carpet,/area/crew_quarters/bar)
-"buQ" = (/obj/machinery/computer/slot_machine{pixel_y = 2},/turf/open/floor/carpet,/area/crew_quarters/bar)
-"buR" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/wood,/area/crew_quarters/bar)
-"buS" = (/obj/machinery/disposal/bin{pixel_x = 2;pixel_y = 2},/obj/structure/disposalpipe/trunk,/turf/open/floor/wood,/area/crew_quarters/bar)
-"buT" = (/obj/machinery/computer/arcade,/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 0;pixel_y = 32},/turf/open/floor/wood,/area/crew_quarters/bar)
-"buU" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plating,/area/maintenance/starboard)
-"buV" = (/obj/structure/closet/firecloset,/turf/open/floor/plating{icon_state = "platingdmg2"},/area/maintenance/starboard)
-"buW" = (/obj/machinery/camera/emp_proof{c_tag = "Engineering - Particle Accelerator";dir = 2;network = list("Singulo","SS13")},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/engine/engineering)
-"buX" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard)
-"buY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{req_access_txt = "0";req_one_access_txt = "12;25;46"},/turf/open/floor/plating,/area/maintenance/starboard)
-"buZ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2;initialize_directions = 11},/turf/open/floor/plasteel/caution{dir = 8},/area/hallway/primary/starboard)
-"bva" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
-"bvb" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel/caution{dir = 4},/area/hallway/primary/starboard)
-"bvc" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard)
-"bvd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard)
-"bve" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg2"},/area/maintenance/starboard)
-"bvf" = (/obj/item/device/radio/intercom{broadcasting = 0;freerange = 1;listening = 1;name = "Common Channel";pixel_x = -27;pixel_y = -7},/obj/item/device/radio/intercom{anyai = 1;freerange = 1;listening = 0;name = "Custom Channel";pixel_x = 0;pixel_y = -27},/obj/item/device/radio/intercom{anyai = 1;broadcasting = 0;freerange = 1;frequency = 1447;name = "Private Channel";pixel_x = 27;pixel_y = -7},/obj/effect/landmark/start{name = "AI"},/obj/machinery/button/door{id = "AI Core shutters";name = "AI Core shutters control";pixel_x = 24;pixel_y = -22;req_access_txt = "16"},/obj/machinery/button/door{id = "AI Chamber entrance shutters";name = "AI Chamber entrance shutters control";pixel_x = -23;pixel_y = -23;req_access_txt = "16"},/turf/open/floor/greengrid,/area/ai_monitored/turret_protected/ai)
-"bvg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/landmark{name = "blobstart"},/turf/open/floor/plating,/area/maintenance/starboard)
-"bvh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/starboard)
-"bvi" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating,/area/engine/break_room)
-"bvj" = (/obj/machinery/door/poddoor{density = 0;icon_state = "open";id = "atmos";name = "Atmos Blast Door";opacity = 0},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/engine/break_room)
-"bvk" = (/obj/machinery/door/poddoor{density = 0;icon_state = "open";id = "atmos";name = "Atmos Blast Door";opacity = 0},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/engine/break_room)
-"bvl" = (/obj/machinery/door/poddoor{density = 0;icon_state = "open";id = "atmos";name = "Atmos Blast Door";opacity = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/engine/break_room)
-"bvm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/engine/break_room)
-"bvn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/caution{dir = 2},/area/engine/break_room)
-"bvo" = (/obj/structure/table/glass,/obj/item/weapon/wrench,/obj/item/weapon/crowbar,/obj/item/device/flashlight{pixel_x = 1;pixel_y = 5},/turf/open/floor/plasteel/black,/area/engine/break_room)
-"bvp" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/machinery/camera{c_tag = "Engineering - Transit Tube Access";dir = 8;network = list("SS13")},/obj/effect/turf_decal/stripes/corner{dir = 2},/turf/open/floor/plasteel/black,/area/engine/break_room)
-"bvq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/engine/break_room)
-"bvr" = (/obj/structure/table/glass,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/weapon/tank/internals/emergency_oxygen{pixel_x = -8;pixel_y = 0},/obj/item/clothing/mask/breath{pixel_x = 4;pixel_y = 0},/obj/machinery/firealarm{dir = 8;pixel_x = -26;pixel_y = 0},/turf/open/floor/plasteel/black,/area/engine/break_room)
-"bvs" = (/obj/machinery/door/airlock/hatch{icon_state = "door_closed";name = "MiniSat Space Access Airlock";req_one_access_txt = "32;19"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/black,/area/engine/break_room)
-"bvt" = (/turf/closed/wall,/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"bvu" = (/obj/structure/table/wood,/obj/machinery/light/small{dir = 8},/obj/item/device/radio/off{pixel_y = 4},/obj/item/weapon/screwdriver{pixel_y = 10},/turf/open/floor/plasteel/grimy,/area/tcommsat/computer{name = "\improper Telecoms Control Room"})
-"bvv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/black,/area/engine/break_room)
-"bvw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/showcase{density = 0;desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze.";dir = 2;icon = 'icons/mob/robots.dmi';icon_state = "robot_old";name = "Cyborg Statue";pixel_x = 0;pixel_y = 20},/turf/open/floor/plasteel/grimy,/area/tcommsat/computer{name = "\improper Telecoms Control Room"})
-"bvx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/grimy,/area/tcommsat/computer{name = "\improper Telecoms Control Room"})
-"bvy" = (/obj/machinery/light_switch{pixel_x = 0;pixel_y = 28},/obj/structure/showcase{density = 0;desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze.";dir = 2;icon = 'icons/mob/robots.dmi';icon_state = "robot_old";name = "Cyborg Statue";pixel_x = 0;pixel_y = 20},/turf/open/floor/plasteel/grimy,/area/tcommsat/computer{name = "\improper Telecoms Control Room"})
-"bvz" = (/obj/structure/table/wood,/obj/machinery/ai_status_display{pixel_x = 0;pixel_y = 31},/obj/item/device/flashlight/lamp,/turf/open/floor/plasteel/grimy,/area/tcommsat/computer{name = "\improper Telecoms Control Room"})
-"bvA" = (/obj/machinery/light/small{dir = 4},/obj/item/device/radio/intercom{dir = 8;freerange = 1;name = "Station Intercom (Telecoms)";pixel_x = 0;pixel_y = 30},/obj/structure/table/wood,/obj/item/weapon/phone{pixel_x = -3;pixel_y = 3},/obj/item/weapon/cigbutt/cigarbutt{pixel_x = 5;pixel_y = -1},/turf/open/floor/plasteel/grimy,/area/tcommsat/computer{name = "\improper Telecoms Control Room"})
-"bvB" = (/obj/item/weapon/twohanded/required/kirbyplants{icon_state = "plant-20";layer = 4.1},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"bvC" = (/obj/structure/chair,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;name = "EXTERNAL AIRLOCK";pixel_x = 0;pixel_y = 32},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"bvD" = (/obj/structure/chair,/obj/effect/landmark/start{name = "Assistant"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"bvE" = (/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"bvF" = (/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"bvG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/corner{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"bvH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"bvI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"bvJ" = (/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"bvK" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"bvL" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2;initialize_directions = 11},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"bvM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/arrival{dir = 4},/area/hallway/secondary/entry{name = "Arrivals"})
-"bvN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/port)
-"bvO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/neutral/side{dir = 9},/area/hallway/primary/port)
-"bvP" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1;initialize_directions = 11},/turf/open/floor/plasteel/neutral/side{dir = 1},/area/hallway/primary/port)
-"bvQ" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=6-Port-Central";location = "5-Customs"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1;initialize_directions = 11},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/neutral/side{dir = 1},/area/hallway/primary/port)
-"bvR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/neutral/side{dir = 1},/area/hallway/primary/port)
-"bvS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/neutral/side{dir = 5},/area/hallway/primary/port)
-"bvT" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plating,/area/toxins/xenobiology)
-"bvU" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4;initialize_directions = 11},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/hallway/primary/port)
-"bvV" = (/obj/structure/extinguisher_cabinet{pixel_x = 27;pixel_y = 0},/turf/open/floor/plasteel/neutral/side{dir = 4},/area/hallway/primary/port)
-"bvW" = (/turf/closed/wall,/area/crew_quarters/toilet{name = "\improper Auxiliary Restrooms"})
-"bvX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/crew_quarters/toilet{name = "\improper Auxiliary Restrooms"})
-"bvY" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bvZ" = (/obj/structure/closet,/obj/effect/decal/cleanable/cobweb/cobweb2,/obj/item/weapon/poster/contraband,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bwa" = (/obj/structure/table/wood,/obj/machinery/computer/security/telescreen/entertainment{pixel_x = -32;pixel_y = 0},/obj/effect/decal/cleanable/cobweb,/obj/item/device/flashlight/lamp/green{pixel_x = 1;pixel_y = 5},/turf/open/floor/wood,/area/library)
-"bwb" = (/obj/structure/table/wood,/obj/machinery/computer/libraryconsole,/turf/open/floor/wood,/area/library)
-"bwc" = (/turf/open/floor/carpet,/area/library)
-"bwd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/carpet,/area/library)
-"bwe" = (/obj/structure/chair/comfy/black{dir = 8},/turf/open/floor/wood,/area/library)
-"bwf" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green{pixel_x = 1;pixel_y = 5},/obj/machinery/computer/security/telescreen/entertainment{pixel_y = 30},/turf/open/floor/plasteel/cult{dir = 2},/area/library)
-"bwg" = (/obj/structure/table/wood,/obj/machinery/newscaster{pixel_x = 0;pixel_y = 32},/obj/item/weapon/folder,/obj/item/weapon/folder,/turf/open/floor/plasteel/cult{dir = 2},/area/library)
-"bwh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/extinguisher_cabinet{pixel_x = -27;pixel_y = 0},/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/hallway/primary/central)
-"bwi" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/wood,/area/crew_quarters/heads)
-"bwj" = (/obj/item/weapon/hand_labeler,/obj/item/stack/packageWrap,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/table/wood,/turf/open/floor/wood,/area/crew_quarters/heads)
-"bwk" = (/obj/structure/closet/secure_closet/hop,/turf/open/floor/wood,/area/crew_quarters/heads)
-"bwl" = (/obj/machinery/door/airlock/hatch{icon_state = "door_closed";name = "MiniSat Space Access Airlock";req_one_access_txt = "32;19"},/turf/open/floor/plasteel/black,/area/engine/break_room)
-"bwm" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/computer/secure_data,/turf/open/floor/wood,/area/crew_quarters/heads)
-"bwn" = (/obj/machinery/computer/card,/turf/open/floor/wood,/area/crew_quarters/heads)
-"bwo" = (/obj/structure/chair/office/dark,/obj/effect/landmark/start{name = "Head of Personnel"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/light_switch{pixel_x = 38;pixel_y = -35},/obj/machinery/button/door{id = "hopqueue";name = "Queue Shutters Control";pixel_x = 25;pixel_y = -36;req_access_txt = "28"},/obj/machinery/button/door{id = "hop";name = "Privacy Shutters Control";pixel_x = 25;pixel_y = -26;req_access_txt = "28"},/obj/machinery/button/flasher{id = "hopflash";pixel_x = 38;pixel_y = -25},/turf/open/floor/wood,/area/crew_quarters/heads)
-"bwp" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin{pixel_x = -2;pixel_y = 4},/obj/item/weapon/stamp/hop{pixel_x = -4;pixel_y = 4},/turf/open/floor/wood,/area/crew_quarters/heads)
-"bwq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/darkblue/corner,/area/bridge)
-"bwr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/firealarm{dir = 4;pixel_x = 24},/obj/machinery/camera{c_tag = "Bridge - Port Access";dir = 8;network = list("SS13")},/turf/open/floor/plasteel/darkblue/corner{dir = 1},/area/bridge)
-"bws" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green{pixel_x = 1;pixel_y = 5},/turf/open/floor/plasteel/black,/area/bridge)
-"bwt" = (/obj/structure/table/wood,/obj/item/weapon/book/manual/wiki/security_space_law{pixel_y = 3},/obj/item/device/radio/intercom{dir = 0;name = "Station Intercom (General)";pixel_x = 0;pixel_y = 28},/turf/open/floor/plasteel/black,/area/bridge)
-"bwu" = (/obj/machinery/holopad,/obj/machinery/status_display{density = 0;layer = 4;pixel_x = 0;pixel_y = 32},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/black,/area/bridge)
-"bwv" = (/obj/machinery/camera{c_tag = "Council Chamber";dir = 2;network = list("SS13")},/obj/machinery/light{dir = 1},/obj/machinery/ai_status_display{pixel_y = 32},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/turf/open/floor/plasteel/black,/area/bridge)
-"bww" = (/obj/structure/table/wood,/obj/item/weapon/folder/yellow,/obj/machinery/firealarm{pixel_y = 28},/turf/open/floor/plasteel/black,/area/bridge)
-"bwx" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin{pixel_x = -3;pixel_y = 7},/obj/item/weapon/pen,/obj/machinery/light_switch{pixel_x = 28;pixel_y = 0},/turf/open/floor/plasteel/black,/area/bridge)
-"bwy" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/camera{c_tag = "Bridge - Starboard Access";dir = 4;network = list("SS13")},/turf/open/floor/plasteel/darkblue/corner,/area/bridge)
-"bwz" = (/obj/machinery/light{dir = 4;icon_state = "tube1"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/firealarm{dir = 4;pixel_x = 24},/turf/open/floor/plasteel/darkblue/corner{dir = 1},/area/bridge)
-"bwA" = (/obj/machinery/vending/cigarette{pixel_y = 2;products = list(/obj/item/weapon/storage/fancy/cigarettes/cigpack_syndicate = 7, /obj/item/weapon/storage/fancy/cigarettes/cigpack_uplift = 3, /obj/item/weapon/storage/fancy/cigarettes/cigpack_robust = 2, /obj/item/weapon/storage/fancy/cigarettes/cigpack_carp = 3, /obj/item/weapon/storage/fancy/cigarettes/cigpack_midori = 1, /obj/item/weapon/storage/box/matches = 10, /obj/item/weapon/lighter/greyscale = 4, /obj/item/weapon/storage/fancy/rollingpapers = 5)},/turf/open/floor/wood,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"bwB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/carpet,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"bwC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/chair/comfy/brown{icon_state = "comfychair";dir = 4},/turf/open/floor/carpet,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"bwD" = (/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/item/weapon/storage/fancy/donut_box,/turf/open/floor/carpet,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"bwE" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/structure/chair/comfy/brown{icon_state = "comfychair";dir = 8},/turf/open/floor/carpet,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"bwF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"bwG" = (/obj/machinery/door/airlock/command{name = "Emergency Escape";req_access = null;req_access_txt = "20"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"bwH" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/junction,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"})
-"bwI" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bwJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/neutral/corner{dir = 4},/area/hallway/primary/central)
-"bwK" = (/obj/structure/table,/obj/machinery/firealarm{dir = 8;pixel_x = -26;pixel_y = 0},/obj/machinery/chem_dispenser/drinks,/obj/structure/sign/barsign{pixel_y = 32},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"bwL" = (/obj/structure/table,/obj/machinery/chem_dispenser/drinks/beer,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"bwM" = (/obj/machinery/camera{c_tag = "Bar";dir = 2;network = list("SS13")},/obj/machinery/requests_console{department = "Bar";departmentType = 2;pixel_x = 0;pixel_y = 30},/obj/structure/table,/obj/item/weapon/book/manual/barman_recipes{pixel_y = 5},/obj/item/weapon/reagent_containers/food/drinks/shaker,/obj/item/weapon/reagent_containers/glass/rag{pixel_y = 5},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"bwN" = (/obj/machinery/light{dir = 1},/obj/machinery/newscaster{pixel_x = 0;pixel_y = 32},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"bwO" = (/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"bwP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"bwQ" = (/obj/structure/sign/securearea{desc = "Under the painting a plaque reads: 'While the meat grinder may not have spared you, fear not. Not one part of you has gone to waste... You were delicious.'";icon_state = "monkey_painting";name = "Mr. Deempisi portrait";pixel_x = 0;pixel_y = 28},/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/disposal/bin,/obj/machinery/light_switch{pixel_x = 25;pixel_y = 0},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"bwR" = (/obj/machinery/power/apc{cell_type = 5000;dir = 1;name = "Bar APC";pixel_x = 0;pixel_y = 25},/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/obj/structure/extinguisher_cabinet{pixel_x = -27;pixel_y = 0},/turf/open/floor/wood,/area/crew_quarters/bar)
-"bwS" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/wood,/area/crew_quarters/bar)
-"bwT" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/wood,/area/crew_quarters/bar)
-"bwU" = (/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 0;pixel_y = 21},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Club - Fore";dir = 2;network = list("SS13")},/turf/open/floor/wood,/area/crew_quarters/bar)
-"bwV" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/wood,/area/crew_quarters/bar)
-"bwW" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;on = 1;scrub_Toxins = 0},/obj/structure/disposalpipe/segment,/turf/open/floor/wood,/area/crew_quarters/bar)
-"bwX" = (/obj/structure/chair/stool{pixel_y = 8},/turf/open/floor/wood,/area/crew_quarters/bar)
-"bwY" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plating,/area/maintenance/starboard)
-"bwZ" = (/obj/machinery/airalarm{dir = 4;pixel_x = -23;pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel/caution{dir = 8},/area/hallway/primary/starboard)
-"bxa" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
-"bxb" = (/obj/structure/extinguisher_cabinet{pixel_x = 27;pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/machinery/light{dir = 4;icon_state = "tube1"},/turf/open/floor/plasteel/caution{dir = 4},/area/hallway/primary/starboard)
-"bxc" = (/turf/closed/wall/r_wall,/area/atmos)
-"bxd" = (/turf/closed/wall,/area/atmos)
-"bxe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/atmos{name = "Atmospherics";req_access_txt = "24"},/turf/open/floor/plasteel,/area/atmos)
-"bxf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/closed/wall,/area/atmos)
-"bxg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/atmos)
-"bxh" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1;initialize_directions = 11},/turf/closed/wall/r_wall,/area/atmos)
-"bxi" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4;initialize_directions = 11},/turf/closed/wall/r_wall,/area/atmos)
-"bxj" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/closed/wall/r_wall,/area/atmos)
-"bxk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/atmos)
-"bxl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/closed/wall/r_wall,/area/atmos)
-"bxm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9;pixel_y = 0},/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;name = "EXTERNAL AIRLOCK";pixel_x = 0;pixel_y = -32},/obj/machinery/light/small{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/black,/area/engine/break_room)
-"bxn" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/obj/structure/chair/office/dark{dir = 1},/turf/open/floor/plasteel/grimy,/area/tcommsat/computer{name = "\improper Telecoms Control Room"})
-"bxo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/grimy,/area/tcommsat/computer{name = "\improper Telecoms Control Room"})
-"bxp" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/tcommsat/computer{name = "\improper Telecoms Control Room"})
-"bxq" = (/turf/open/floor/plasteel/grimy,/area/tcommsat/computer{name = "\improper Telecoms Control Room"})
-"bxr" = (/obj/structure/chair/office/dark{dir = 4},/turf/open/floor/plasteel/grimy,/area/tcommsat/computer{name = "\improper Telecoms Control Room"})
-"bxs" = (/obj/machinery/computer/security/telescreen{dir = 8;name = "Telecoms Camera Monitor";network = list("tcomm");pixel_x = 26;pixel_y = 0},/obj/machinery/computer/telecomms/monitor{network = "tcommsat"},/turf/open/floor/plasteel/grimy,/area/tcommsat/computer{name = "\improper Telecoms Control Room"})
-"bxt" = (/obj/machinery/light,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"bxu" = (/obj/machinery/camera{c_tag = "Arrivals - Middle Arm - Far";dir = 1;network = list("SS13")},/obj/machinery/status_display{density = 0;layer = 4;pixel_x = 0;pixel_y = -32},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"bxv" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"bxw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"bxx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;name = "EXTERNAL AIRLOCK";pixel_x = 0;pixel_y = -32},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"bxy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"bxz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/camera{c_tag = "Arrivals - Middle Arm";dir = 1;network = list("SS13")},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"bxA" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"bxB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/blue/corner{dir = 2},/area/hallway/secondary/entry{name = "Arrivals"})
-"bxC" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/obj/machinery/firealarm{dir = 1;pixel_y = -24},/turf/open/floor/plasteel/arrival{dir = 2},/area/hallway/secondary/entry{name = "Arrivals"})
-"bxD" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/arrival{dir = 2},/area/hallway/secondary/entry{name = "Arrivals"})
-"bxE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 0;pixel_y = -25},/turf/open/floor/plasteel/arrival{dir = 6},/area/hallway/secondary/entry{name = "Arrivals"})
-"bxF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/airalarm{dir = 1;pixel_y = -22},/turf/open/floor/plasteel/neutral/side{dir = 10},/area/hallway/primary/port)
-"bxG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/firealarm{dir = 2;pixel_y = -24},/turf/open/floor/plasteel/neutral/side,/area/hallway/primary/port)
-"bxH" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/status_display{density = 0;layer = 4;pixel_x = 0;pixel_y = -32},/turf/open/floor/plasteel/neutral/side,/area/hallway/primary/port)
-"bxI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel/neutral/side,/area/hallway/primary/port)
-"bxJ" = (/obj/machinery/airalarm{dir = 1;icon_state = "alarm0";pixel_y = -22},/turf/open/floor/plasteel/neutral/side{dir = 6},/area/hallway/primary/port)
-"bxK" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/port)
-"bxL" = (/obj/structure/sign/map/left{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";icon_state = "map-left-MS";pixel_y = -32},/turf/open/floor/plasteel/neutral/side{dir = 10},/area/hallway/primary/port)
-"bxM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/sign/map/right{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";icon_state = "map-right-MS";pixel_y = -32},/turf/open/floor/plasteel/neutral/side,/area/hallway/primary/port)
-"bxN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/neutral/side{dir = 6},/area/hallway/primary/port)
-"bxO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Auxiliary Bathrooms";req_access_txt = "0"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/floorgrime,/area/crew_quarters/toilet{name = "\improper Auxiliary Restrooms"})
-"bxP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/sink/kitchen{desc = "A sink used for washing one's hands and face. It looks rusty and home-made";name = "old sink";pixel_y = 28},/turf/open/floor/plasteel/floorgrime,/area/crew_quarters/toilet{name = "\improper Auxiliary Restrooms"})
-"bxQ" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/obj/structure/sink/kitchen{desc = "A sink used for washing one's hands and face. It looks rusty and home-made";name = "old sink";pixel_y = 28},/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/turf/open/floor/plating,/area/crew_quarters/toilet{name = "\improper Auxiliary Restrooms"})
-"bxR" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/sign/poster{pixel_x = -32},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bxS" = (/obj/item/weapon/cigbutt,/obj/machinery/power/apc{cell_type = 5000;dir = 2;name = "Port Maintenance APC";pixel_y = -24},/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bxT" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bxU" = (/obj/structure/table/wood,/obj/machinery/newscaster{pixel_x = -32;pixel_y = 0},/turf/open/floor/wood,/area/library)
-"bxV" = (/obj/structure/chair/office/dark{dir = 1},/obj/effect/landmark/start{name = "Librarian"},/turf/open/floor/wood,/area/library)
-"bxW" = (/turf/open/floor/plasteel/cult{dir = 2},/area/library)
-"bxX" = (/obj/structure/chair/comfy/brown{dir = 1},/turf/open/floor/plasteel/cult{dir = 2},/area/library)
-"bxY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/hallway/primary/central)
-"bxZ" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow,/obj/machinery/door/poddoor/preopen{id = "hop";name = "privacy shutters"},/turf/open/floor/plating,/area/crew_quarters/heads)
-"bya" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow,/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "hop";name = "privacy shutters"},/turf/open/floor/plating,/area/crew_quarters/heads)
-"byb" = (/obj/structure/table/reinforced,/obj/machinery/door/window/brigdoor{base_state = "rightsecure";dir = 1;icon_state = "rightsecure";name = "Head of Personnel's Desk";req_access_txt = "57"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/window/northleft{dir = 2;icon_state = "left";name = "Reception Window";req_access_txt = "0"},/obj/machinery/door/poddoor{density = 0;icon_state = "open";id = "hop";layer = 3.1;name = "privacy shutters";opacity = 0},/turf/open/floor/plasteel,/area/crew_quarters/heads)
-"byc" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/device/radio/intercom{dir = 0;name = "Station Intercom (General)";pixel_x = -26;pixel_y = 0},/turf/open/floor/plasteel/darkblue/corner,/area/bridge)
-"byd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/darkblue/corner{dir = 1},/area/bridge)
-"bye" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Council Chamber";req_access = null;req_access_txt = "19"},/turf/open/floor/plasteel/black,/area/bridge)
-"byf" = (/obj/structure/chair/comfy/beige,/turf/open/floor/carpet,/area/bridge)
-"byg" = (/obj/structure/chair/comfy/black,/turf/open/floor/carpet,/area/bridge)
-"byh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/chair/comfy/beige,/turf/open/floor/carpet,/area/bridge)
-"byi" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/carpet,/area/bridge)
-"byj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/carpet,/area/bridge)
-"byk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/black,/area/bridge)
-"byl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Council Chamber";req_access = null;req_access_txt = "19"},/turf/open/floor/plasteel/black,/area/bridge)
-"bym" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/darkblue/corner,/area/bridge)
-"byn" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/darkblue/corner{dir = 1},/area/bridge)
-"byo" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Captain's Quarters";req_access = null;req_access_txt = "20"},/turf/open/floor/plasteel/black,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"byp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"byq" = (/obj/structure/chair/comfy/brown{icon_state = "comfychair";dir = 4},/turf/open/floor/carpet,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"byr" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/drinks/shaker,/turf/open/floor/carpet,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"bys" = (/obj/structure/chair/comfy/brown{icon_state = "comfychair";dir = 8},/turf/open/floor/carpet,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"byt" = (/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/obj/machinery/light{icon_state = "tube1";dir = 4},/turf/open/floor/carpet,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"byu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/light/small{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/maintcentral{name = "Central Maintenance"})
-"byv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/firealarm{dir = 8;pixel_x = -24},/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/hallway/primary/central)
-"byw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/neutral/corner{dir = 4},/area/hallway/primary/central)
-"byx" = (/obj/machinery/porta_turret/ai{dir = 2},/obj/machinery/flasher{id = "AI";pixel_x = 0;pixel_y = 24},/turf/open/floor/plasteel/vault{dir = 8},/area/ai_monitored/turret_protected/ai)
-"byy" = (/obj/effect/landmark/start{name = "Bartender"},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"byz" = (/mob/living/carbon/monkey/punpun,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"byA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/landmark/start{name = "Bartender"},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"byB" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Bar Access";req_access_txt = "25"},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"byC" = (/turf/open/floor/wood,/area/crew_quarters/bar)
-"byD" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/table/wood/poker,/obj/item/clothing/head/fedora,/turf/open/floor/wood,/area/crew_quarters/bar)
-"byE" = (/obj/structure/table/wood/poker,/obj/item/toy/cards/deck{pixel_y = 4},/turf/open/floor/wood,/area/crew_quarters/bar)
-"byF" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/chair/stool{pixel_y = 8},/turf/open/floor/wood,/area/crew_quarters/bar)
-"byG" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2;initialize_directions = 11},/obj/structure/disposalpipe/junction{icon_state = "pipe-j2";dir = 4},/turf/open/floor/wood,/area/crew_quarters/bar)
-"byH" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/wood,/area/crew_quarters/bar)
-"byI" = (/obj/structure/window/reinforced{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/office{name = "\improper Cargo Office"})
-"byJ" = (/obj/structure/chair/wood/wings{dir = 8},/turf/open/floor/carpet,/area/crew_quarters/theatre)
-"byK" = (/obj/machinery/door/poddoor{density = 0;icon_state = "open";id = "Engineering";name = "Engineering Security Doors";opacity = 0},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/engine/break_room)
-"byL" = (/obj/machinery/power/apc{dir = 1;name = "Theatre APC";pixel_x = 0;pixel_y = 25},/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/obj/structure/table/wood,/obj/item/clothing/glasses/monocle,/turf/open/floor/wood,/area/crew_quarters/theatre)
-"byM" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/firealarm{dir = 4;pixel_x = 24},/mob/living/simple_animal/bot/cleanbot,/turf/open/floor/plasteel/darkblue/corner,/area/ai_monitored/turret_protected/aisat_interior)
-"byN" = (/turf/closed/wall,/area/crew_quarters/theatre)
-"byO" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/glass{amount = 50},/obj/machinery/power/apc{dir = 2;name = "MiniSat Maint APC";pixel_x = 0;pixel_y = -26},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow,/obj/item/stack/sheet/mineral/plasma{amount = 35;layer = 3.1},/turf/open/floor/plasteel/black,/area/ai_monitored/storage/secure{name = "MiniSat Maintenance"})
-"byP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/device/radio/beacon,/turf/open/floor/plasteel/caution{dir = 8},/area/hallway/primary/starboard)
-"byQ" = (/turf/open/floor/plasteel/caution{dir = 4},/area/hallway/primary/starboard)
-"byR" = (/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = -30},/obj/item/weapon/crowbar/red,/obj/item/weapon/wrench,/obj/item/clothing/mask/gas,/obj/machinery/airalarm{pixel_y = 23},/obj/structure/table,/obj/item/weapon/storage/box,/obj/item/weapon/storage/box,/turf/open/floor/plasteel/caution{dir = 9},/area/atmos)
-"byS" = (/obj/machinery/status_display{density = 0;layer = 4;pixel_x = 0;pixel_y = 32},/obj/machinery/light{dir = 1},/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3;pixel_y = 7},/obj/item/weapon/pen,/turf/open/floor/plasteel/caution{dir = 1},/area/atmos)
-"byT" = (/obj/machinery/computer/atmos_alert,/obj/structure/sign/map/left{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";icon_state = "map-left-MS";pixel_y = 32},/obj/machinery/camera{c_tag = "Atmospherics - Control Room";network = list("SS13")},/turf/open/floor/plasteel/caution{dir = 1},/area/atmos)
-"byU" = (/obj/structure/sign/map/right{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";icon_state = "map-right-MS";pixel_y = 32},/obj/machinery/computer/station_alert,/turf/open/floor/plasteel/caution{dir = 1},/area/atmos)
-"byV" = (/obj/structure/sign/atmosplaque{pixel_x = 0;pixel_y = 32},/obj/item/weapon/phone{pixel_x = -3;pixel_y = 3},/obj/item/weapon/cigbutt/cigarbutt{pixel_x = 5;pixel_y = -1},/obj/structure/table,/obj/machinery/light_switch{pixel_x = 26;pixel_y = 0},/turf/open/floor/plasteel/caution{dir = 5},/area/atmos)
-"byW" = (/obj/structure/table,/obj/item/clothing/head/welding{pixel_x = -3;pixel_y = 7},/obj/item/clothing/head/welding{pixel_x = -5;pixel_y = 3},/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/light_switch{pixel_x = -26;pixel_y = 0},/turf/open/floor/plasteel/caution{dir = 8},/area/atmos)
-"byX" = (/obj/machinery/power/apc{cell_type = 10000;dir = 1;name = "Atmospherics APC";pixel_x = 0;pixel_y = 28},/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/obj/machinery/camera{c_tag = "Atmospherics - Entrance";network = list("SS13")},/turf/open/floor/plasteel,/area/atmos)
-"byY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/atmos)
-"byZ" = (/obj/machinery/space_heater,/obj/machinery/firealarm{dir = 2;pixel_y = 24},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/atmos)
-"bza" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos)
-"bzb" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 8},/obj/machinery/meter{frequency = 1441;id_tag = "waste_meter";name = "Waste Loop"},/turf/open/floor/plasteel/caution{dir = 1},/area/atmos)
-"bzc" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8;name = "Distro to Waste";on = 0},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel/caution{dir = 1},/area/atmos)
-"bzd" = (/obj/machinery/meter{frequency = 1441;id_tag = "distro_meter";name = "Distribution Loop"},/obj/machinery/atmospherics/pipe/manifold4w/supply/visible,/turf/open/floor/plasteel/caution{dir = 1},/area/atmos)
-"bze" = (/obj/machinery/atmospherics/pipe/manifold/supply/visible{dir = 1},/turf/open/floor/plasteel/caution{dir = 1},/area/atmos)
-"bzf" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8;name = "Air to Distro";on = 1;target_pressure = 101},/obj/machinery/airalarm{pixel_y = 25},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/camera{c_tag = "Atmospherics - Distro Loop";network = list("SS13")},/turf/open/floor/plasteel/caution{dir = 1},/area/atmos)
-"bzg" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 10;initialize_directions = 10},/turf/open/floor/plasteel/caution{dir = 1},/area/atmos)
-"bzh" = (/obj/machinery/atmospherics/components/unary/thermomachine/heater{dir = 2;on = 1},/turf/open/floor/plasteel/caution{dir = 1},/area/atmos)
-"bzi" = (/obj/structure/lattice,/obj/structure/grille,/turf/closed/wall/r_wall,/area/space)
-"bzj" = (/obj/structure/grille,/obj/structure/lattice,/turf/closed/wall/r_wall,/area/space)
-"bzk" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel/black,/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"bzl" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/window/reinforced{dir = 1;layer = 2.9},/turf/open/floor/plasteel/black,/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"bzm" = (/obj/structure/window/reinforced{dir = 1;layer = 2.9},/obj/structure/window/reinforced{dir = 4},/obj/machinery/light/small{dir = 4},/obj/machinery/camera{c_tag = "MiniSat Exterior - Port Aft";dir = 8;network = list("MiniSat")},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel/black,/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"bzn" = (/obj/machinery/computer/message_monitor,/obj/machinery/airalarm{dir = 4;pixel_x = -23;pixel_y = 0},/turf/open/floor/plasteel/grimy,/area/tcommsat/computer{name = "\improper Telecoms Control Room"})
-"bzo" = (/obj/structure/chair/office/dark{dir = 8},/turf/open/floor/plasteel/grimy,/area/tcommsat/computer{name = "\improper Telecoms Control Room"})
-"bzp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel/grimy,/area/tcommsat/computer{name = "\improper Telecoms Control Room"})
-"bzq" = (/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/grimy,/area/tcommsat/computer{name = "\improper Telecoms Control Room"})
-"bzr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/grimy,/area/tcommsat/computer{name = "\improper Telecoms Control Room"})
-"bzs" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/chair/office/dark,/turf/open/floor/plasteel/grimy,/area/tcommsat/computer{name = "\improper Telecoms Control Room"})
-"bzt" = (/obj/machinery/power/apc{cell_type = 5000;dir = 4;name = "Telecoms Control Room APC";pixel_x = 26;pixel_y = 0},/obj/machinery/computer/telecomms/server{network = "tcommsat"},/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/turf/open/floor/plasteel/grimy,/area/tcommsat/computer{name = "\improper Telecoms Control Room"})
-"bzu" = (/obj/structure/window/reinforced{dir = 1;layer = 2.9},/obj/structure/window/reinforced{dir = 8},/obj/machinery/light/small{dir = 8},/obj/machinery/camera{c_tag = "MiniSat Exterior - Starboard Aft";dir = 4;network = list("MiniSat")},/turf/open/floor/plasteel/black,/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"bzv" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/open/floor/plasteel/black,/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"bzw" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock{name = "Port Emergency Storage";req_access_txt = "0"},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bzx" = (/turf/closed/wall,/area/security/vacantoffice)
-"bzy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/security/vacantoffice)
-"bzz" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/centcom{name = "Vacant Office";opacity = 1;req_access_txt = "32"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/security/vacantoffice)
-"bzA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/floorgrime,/area/crew_quarters/toilet{name = "\improper Auxiliary Restrooms"})
-"bzB" = (/obj/structure/mirror{pixel_x = 28},/turf/open/floor/plating,/area/crew_quarters/toilet{name = "\improper Auxiliary Restrooms"})
-"bzC" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bzD" = (/obj/machinery/photocopier{pixel_y = 3},/turf/open/floor/wood,/area/library)
-"bzE" = (/turf/open/floor/wood,/area/library)
-"bzF" = (/obj/machinery/light{dir = 4},/obj/machinery/camera/autoname{dir = 8;network = list("SS13")},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/carpet,/area/library)
-"bzG" = (/obj/machinery/door/morgue{name = "Study #1";req_access_txt = "0"},/turf/open/floor/plasteel/cult{dir = 2},/area/library)
-"bzH" = (/obj/machinery/door/morgue{name = "Study #2";req_access_txt = "0"},/turf/open/floor/plasteel/cult{dir = 2},/area/library)
-"bzI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/hallway/primary/central)
-"bzJ" = (/turf/closed/wall,/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bzK" = (/obj/machinery/vending/cola,/turf/open/floor/plasteel/black,/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bzL" = (/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bzM" = (/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 0;pixel_y = 21},/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'";icon_state = "shock";name = "HIGH VOLTAGE";pixel_x = 0;pixel_y = 32},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bzN" = (/obj/machinery/status_display{density = 0;layer = 4;pixel_x = 0;pixel_y = 32},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bzO" = (/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 0;pixel_y = 21},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bzP" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/flasher{id = "hopflash";pixel_x = 28;pixel_y = -28},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bzQ" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -2;pixel_y = 4},/obj/item/weapon/pen,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bzR" = (/turf/closed/wall/r_wall,/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bzS" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8;initialize_directions = 11},/obj/machinery/button/door{id = "bridge blast";name = "Bridge Access Blast Door Control";pixel_x = 24;pixel_y = -24;req_access_txt = "19"},/turf/open/floor/plasteel/darkblue/corner{dir = 1},/area/bridge)
-"bzT" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 1;scrub_Toxins = 1},/obj/machinery/vending/coffee{pixel_x = -3},/obj/machinery/button/door{id = "council blast";name = "Council Chamber Blast Door Control";pixel_x = -28;pixel_y = 0;req_access_txt = "19"},/turf/open/floor/plasteel/black,/area/bridge)
-"bzU" = (/obj/structure/chair/comfy/teal{icon_state = "comfychair";dir = 4},/obj/structure/chair/comfy/black{dir = 4},/turf/open/floor/carpet,/area/bridge)
-"bzV" = (/obj/structure/table/wood,/obj/item/weapon/folder/white{pixel_x = 4;pixel_y = -3},/turf/open/floor/carpet,/area/bridge)
-"bzW" = (/obj/structure/table/wood,/obj/item/weapon/folder/blue,/obj/item/weapon/lighter,/turf/open/floor/carpet,/area/bridge)
-"bzX" = (/obj/structure/table/wood,/obj/item/weapon/folder/red,/turf/open/floor/carpet,/area/bridge)
-"bzY" = (/obj/structure/chair/comfy/black{dir = 8},/turf/open/floor/carpet,/area/bridge)
-"bzZ" = (/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/obj/machinery/vending/cigarette{pixel_x = 2},/turf/open/floor/plasteel/black,/area/bridge)
-"bAa" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/button/door{id = "bridge blast";name = "Bridge Access Blast Door Control";pixel_x = -24;pixel_y = -24;req_access_txt = "19"},/turf/open/floor/plasteel/black,/area/bridge)
-"bAb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/darkblue/corner{dir = 1},/area/bridge)
-"bAc" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/obj/machinery/firealarm{dir = 8;pixel_x = -24},/turf/open/floor/carpet,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"bAd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9;pixel_y = 0},/turf/open/floor/carpet,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"bAe" = (/obj/machinery/light,/obj/machinery/computer/security/telescreen{dir = 1;name = "MiniSat Monitor";network = list("MiniSat","tcomm");pixel_x = 0;pixel_y = -29},/mob/living/simple_animal/pet/fox/Renault,/turf/open/floor/carpet,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"bAf" = (/obj/item/device/radio/intercom{dir = 0;name = "Station Intercom (General)";pixel_x = 0;pixel_y = -26},/turf/open/floor/carpet,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"bAg" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;on = 1;scrub_N2O = 1;scrub_Toxins = 1},/obj/structure/extinguisher_cabinet{pixel_x = 27;pixel_y = 0},/turf/open/floor/carpet,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"bAh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"})
-"bAi" = (/obj/structure/table/reinforced,/obj/item/weapon/lighter,/obj/machinery/computer/security/telescreen/entertainment{pixel_x = -31;pixel_y = 0},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"bAj" = (/obj/structure/table/reinforced,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"bAk" = (/obj/structure/table/reinforced,/obj/item/clothing/head/that{throwforce = 1;throwing = 1},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"bAl" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/box/matches{pixel_y = 5},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"bAm" = (/obj/structure/table/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"bAn" = (/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/food/condiment/saltshaker{pixel_x = -3;pixel_y = 0},/obj/item/weapon/reagent_containers/food/condiment/peppermill{pixel_x = 3},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"bAo" = (/obj/machinery/smartfridge/drinks{icon_state = "boozeomat"},/turf/closed/wall,/area/crew_quarters/bar)
-"bAp" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/table/wood/poker,/obj/item/toy/cards/deck{pixel_y = 4},/turf/open/floor/wood,/area/crew_quarters/bar)
-"bAq" = (/obj/structure/table/wood/poker,/obj/effect/spawner/lootdrop{loot = list(/obj/item/weapon/gun/ballistic/revolver/russian = 5, /obj/item/weapon/storage/box/syndie_kit/throwing_weapons, /obj/item/toy/cards/deck/syndicate = 2);name = "gambling valuables spawner"},/turf/open/floor/wood,/area/crew_quarters/bar)
-"bAr" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/chair/stool{pixel_y = 8},/turf/open/floor/wood,/area/crew_quarters/bar)
-"bAs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/carpet,/area/crew_quarters/theatre)
-"bAt" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1;initialize_directions = 11},/turf/open/floor/carpet,/area/crew_quarters/theatre)
-"bAu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/theatre)
-"bAv" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/carpet,/area/crew_quarters/theatre)
-"bAw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/structure/sign/poster{pixel_y = 32},/turf/open/floor/plasteel,/area/hallway/primary/port)
-"bAx" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/pump,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/window/reinforced{dir = 1},/obj/machinery/camera{c_tag = "Starboard Primary Hallway - Atmospherics";dir = 4;network = list("SS13")},/turf/open/floor/plasteel/arrival{dir = 8},/area/hallway/primary/starboard)
-"bAy" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/starboard)
-"bAz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel/caution{dir = 4},/area/hallway/primary/starboard)
-"bAA" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor{density = 0;icon_state = "open";id = "atmos";name = "Atmos Blast Door";opacity = 0},/turf/open/floor/plating,/area/atmos)
-"bAB" = (/obj/item/clothing/mask/breath{pixel_x = 4;pixel_y = 0},/obj/item/weapon/tank/internals/emergency_oxygen{pixel_x = -8;pixel_y = 0},/obj/structure/table,/turf/open/floor/plasteel/caution{dir = 8},/area/atmos)
-"bAC" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/atmos)
-"bAD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/atmos)
-"bAE" = (/obj/structure/chair/office/dark{dir = 4},/obj/effect/landmark/start{name = "Atmospheric Technician"},/turf/open/floor/plasteel,/area/atmos)
-"bAF" = (/obj/machinery/computer/atmos_control,/obj/machinery/requests_console{department = "Atmospherics";departmentType = 4;name = "Atmos RC";pixel_x = 30;pixel_y = 0},/turf/open/floor/plasteel/caution{dir = 4},/area/atmos)
-"bAG" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/obj/structure/table,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/weapon/grenade/chem_grenade/metalfoam,/obj/item/weapon/grenade/chem_grenade/metalfoam,/turf/open/floor/plasteel/caution{dir = 8},/area/atmos)
-"bAH" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel,/area/atmos)
-"bAI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel,/area/atmos)
-"bAJ" = (/obj/machinery/space_heater,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/atmos)
-"bAK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/open/floor/plasteel,/area/atmos)
-"bAL" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer,/turf/open/floor/plasteel,/area/atmos)
-"bAM" = (/obj/machinery/atmospherics/components/unary/thermomachine/heater{dir = 1;on = 1},/turf/open/floor/plasteel,/area/atmos)
-"bAN" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1;name = "Mix to Distro";on = 0},/turf/open/floor/plasteel,/area/atmos)
-"bAO" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/turf/open/floor/plasteel,/area/atmos)
-"bAP" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 8;initialize_directions = 11},/obj/machinery/meter,/turf/open/floor/plasteel,/area/atmos)
-"bAQ" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4},/turf/open/floor/plasteel,/area/atmos)
-"bAR" = (/obj/structure/grille,/turf/closed/wall/r_wall,/area/atmos)
-"bAS" = (/obj/structure/window/reinforced{dir = 1;pixel_y = 2},/obj/structure/lattice,/turf/open/space,/area/space)
-"bAT" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1;pixel_y = 2},/turf/open/space,/area/space)
-"bAU" = (/obj/machinery/microwave{pixel_x = 0;pixel_y = 4},/obj/structure/table/wood,/turf/open/floor/plasteel/grimy,/area/tcommsat/computer{name = "\improper Telecoms Control Room"})
-"bAV" = (/obj/machinery/light/small,/obj/item/weapon/storage/box/donkpockets,/obj/structure/table/wood,/turf/open/floor/plasteel/grimy,/area/tcommsat/computer{name = "\improper Telecoms Control Room"})
-"bAW" = (/obj/structure/table/wood,/obj/item/weapon/folder/blue,/obj/machinery/status_display{density = 0;layer = 4;pixel_x = 0;pixel_y = 31},/obj/item/weapon/folder/blue,/obj/item/weapon/pen,/turf/open/floor/plasteel/grimy,/area/tcommsat/computer{name = "\improper Telecoms Control Room"})
-"bAX" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/grimy,/area/tcommsat/computer{name = "\improper Telecoms Control Room"})
-"bAY" = (/obj/structure/filingcabinet{pixel_x = 3},/turf/open/floor/plasteel/grimy,/area/tcommsat/computer{name = "\improper Telecoms Control Room"})
-"bAZ" = (/obj/machinery/camera{c_tag = "Head of Personnel's Office";dir = 1;network = list("SS13")},/obj/structure/table/wood,/obj/item/weapon/storage/box/PDAs{pixel_x = 4;pixel_y = 4},/obj/item/weapon/storage/box/silver_ids,/obj/item/weapon/storage/box/ids,/obj/machinery/light,/turf/open/floor/wood,/area/crew_quarters/heads)
-"bBa" = (/obj/machinery/requests_console{announcementConsole = 1;department = "Telecoms Admin";departmentType = 5;name = "Telecoms RC";pixel_x = 0;pixel_y = -30},/obj/machinery/firealarm{dir = 4;pixel_x = 24},/obj/item/weapon/paper_bin{pixel_x = -1;pixel_y = 6},/obj/structure/table/wood,/turf/open/floor/plasteel/grimy,/area/tcommsat/computer{name = "\improper Telecoms Control Room"})
-"bBb" = (/obj/structure/window/reinforced{dir = 1;layer = 2.9},/obj/structure/lattice,/turf/open/space,/area/space)
-"bBc" = (/obj/structure/closet/emcloset,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"bBd" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/arrival{dir = 4},/area/hallway/secondary/entry{name = "Arrivals"})
-"bBe" = (/obj/effect/decal/cleanable/cobweb/cobweb2,/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bBf" = (/obj/structure/table/wood,/obj/machinery/light_switch{pixel_x = -28;pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/weapon/folder,/turf/open/floor/wood,/area/security/vacantoffice)
-"bBg" = (/turf/open/floor/wood,/area/security/vacantoffice)
-"bBh" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/security/vacantoffice)
-"bBi" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp,/turf/open/floor/wood,/area/security/vacantoffice)
-"bBj" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/starboard)
-"bBk" = (/obj/structure/table/wood,/obj/item/device/camera_film{pixel_y = 9},/obj/item/device/camera_film{pixel_x = -3;pixel_y = 5},/turf/open/floor/wood,/area/security/vacantoffice)
-"bBl" = (/obj/structure/urinal{pixel_y = 29},/turf/open/floor/plating,/area/crew_quarters/toilet{name = "\improper Auxiliary Restrooms"})
-"bBm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/floorgrime,/area/crew_quarters/toilet{name = "\improper Auxiliary Restrooms"})
-"bBn" = (/turf/open/floor/plasteel/floorgrime,/area/crew_quarters/toilet{name = "\improper Auxiliary Restrooms"})
-"bBo" = (/obj/machinery/door/airlock{id_tag = "AuxToilet1";name = "Unit 1"},/turf/open/floor/plasteel,/area/crew_quarters/toilet{name = "\improper Auxiliary Restrooms"})
-"bBp" = (/obj/structure/toilet{pixel_y = 8},/obj/machinery/light/small{dir = 4},/obj/machinery/button/door{id = "AuxToilet1";name = "Lock Control";normaldoorcontrol = 1;pixel_x = 25;pixel_y = 0;req_access_txt = "0";specialfunctions = 4},/obj/machinery/newscaster{pixel_x = 0;pixel_y = -32},/turf/open/floor/plasteel,/area/crew_quarters/toilet{name = "\improper Auxiliary Restrooms"})
-"bBq" = (/obj/structure/rack,/obj/item/device/flashlight,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bBr" = (/obj/structure/table/wood,/obj/machinery/airalarm{dir = 4;pixel_x = -23;pixel_y = 0},/turf/open/floor/wood,/area/library)
-"bBs" = (/obj/structure/chair/office/dark{dir = 8},/turf/open/floor/wood,/area/library)
-"bBt" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/atmos)
-"bBu" = (/obj/machinery/vending/coffee,/obj/machinery/newscaster{pixel_x = 0;pixel_y = 32},/turf/open/floor/wood,/area/library)
-"bBv" = (/obj/structure/chair/comfy/black,/obj/effect/landmark/start{name = "Assistant"},/turf/open/floor/wood,/area/library)
-"bBw" = (/obj/machinery/bookbinder,/turf/open/floor/wood,/area/library)
-"bBx" = (/obj/item/weapon/twohanded/required/kirbyplants{icon_state = "plant-22"},/turf/open/floor/wood,/area/library)
-"bBy" = (/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the bridge is.";dir = 4;icon_state = "direction_bridge";name = "bridge";pixel_y = -8},/obj/structure/sign/directions/security{desc = "A direction sign, pointing out which way the security department is.";dir = 1;icon_state = "direction_sec";pixel_x = 0;pixel_y = 8},/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the engineering department is.";dir = 4;icon_state = "direction_eng";pixel_y = 0},/turf/closed/wall,/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bBz" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/turf/open/floor/plating,/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bBA" = (/obj/machinery/door/poddoor/shutters/preopen{id = "hopqueue";name = "HoP Queue Shutters"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/loadingarea{dir = 1},/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bBB" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/turf/open/floor/plating,/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bBC" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/poddoor/shutters/preopen{id = "hopqueue";name = "HoP Queue Shutters"},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel/loadingarea,/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bBD" = (/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the bridge is.";dir = 1;icon_state = "direction_bridge";name = "bridge";pixel_y = -8},/turf/closed/wall/r_wall,/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bBE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/poddoor/preopen{id = "bridge blast";name = "bridge blast door"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_command{name = "Bridge Access";req_access_txt = "19"},/turf/open/floor/plasteel/vault,/area/bridge)
-"bBF" = (/obj/machinery/door/poddoor/preopen{id = "bridge blast";name = "bridge blast door"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/glass_command{name = "Bridge Access";req_access_txt = "19"},/turf/open/floor/plasteel/vault,/area/bridge)
-"bBG" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/goonplaque{desc = "\"This is a plaque in honour of our comrades on the G4407 Stations. Hopefully TG4407 model can live up to your fame and fortune.\" Scratched in beneath that is a crude image of sentient postcards in a realm of darkness. The station model number is MSv42A-160516"},/area/hallway/primary/port)
-"bBH" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor{density = 0;icon_state = "open";id = "council blast";layer = 2.9;name = "Council Blast Doors";opacity = 0},/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/turf/open/floor/plating,/area/bridge)
-"bBI" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor{density = 0;icon_state = "open";id = "council blast";layer = 2.9;name = "Council Blast Doors";opacity = 0},/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/turf/open/floor/plating,/area/bridge)
-"bBJ" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor{density = 0;icon_state = "open";id = "council blast";layer = 2.9;name = "Council Blast Doors";opacity = 0},/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/turf/open/floor/plating,/area/bridge)
-"bBK" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor{density = 0;icon_state = "open";id = "council blast";layer = 2.9;name = "Council Blast Doors";opacity = 0},/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/turf/open/floor/plating,/area/bridge)
-"bBL" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor{density = 0;icon_state = "open";id = "council blast";layer = 2.9;name = "Council Blast Doors";opacity = 0},/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/turf/open/floor/plating,/area/bridge)
-"bBM" = (/obj/machinery/door/poddoor/preopen{id = "bridge blast";name = "bridge blast door"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_command{name = "Bridge Access";req_access_txt = "19"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/vault,/area/bridge)
-"bBN" = (/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the bridge is.";dir = 1;icon_state = "direction_bridge";name = "bridge";pixel_y = -8},/turf/closed/wall/r_wall,/area/crew_quarters/captain{name = "\improper Captain's Quarters"})
-"bBO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/airlock/maintenance{req_access_txt = "0";req_one_access_txt = "20;12"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"})
-"bBP" = (/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the engineering department is.";dir = 4;icon_state = "direction_eng";pixel_y = 0},/obj/structure/sign/directions/security{desc = "A direction sign, pointing out which way the security department is.";dir = 1;icon_state = "direction_sec";pixel_x = 0;pixel_y = 8},/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the bridge is.";dir = 8;icon_state = "direction_bridge";name = "bridge";pixel_y = -8},/turf/closed/wall,/area/maintenance/maintcentral{name = "Central Maintenance"})
-"bBQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/hallway/primary/central)
-"bBR" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=12-Central-Starboard";location = "11.1-Command-Starboard"},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bBS" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/crew_quarters/bar)
-"bBT" = (/obj/structure/chair/stool/bar,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"bBU" = (/obj/machinery/holopad,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"bBV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/landmark/start{name = "Assistant"},/obj/structure/chair/stool/bar,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"bBW" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/sign/poster{pixel_x = 32;pixel_y = 0},/turf/open/floor/plating,/area/maintenance/starboard)
-"bBX" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/wood,/area/crew_quarters/bar)
-"bBY" = (/obj/structure/disposalpipe/segment,/obj/structure/table/wood/poker,/obj/item/toy/cards/deck{pixel_y = 4},/turf/open/floor/wood,/area/crew_quarters/bar)
-"bBZ" = (/obj/structure/window/reinforced{dir = 8},/turf/open/floor/carpet,/area/crew_quarters/theatre)
-"bCa" = (/obj/structure/chair/wood/wings,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/landmark/start{name = "Mime"},/turf/open/floor/carpet,/area/crew_quarters/theatre)
-"bCb" = (/turf/open/floor/carpet,/area/crew_quarters/theatre)
-"bCc" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/carpet,/area/crew_quarters/theatre)
-"bCd" = (/obj/machinery/firealarm{dir = 4;pixel_x = 24},/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/snacks/pie/cream,/turf/open/floor/wood,/area/crew_quarters/theatre)
-"bCe" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/pump,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/arrival{dir = 8},/area/hallway/primary/starboard)
-"bCf" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/caution{dir = 4},/area/hallway/primary/starboard)
-"bCg" = (/obj/structure/table/reinforced,/obj/machinery/door/poddoor{density = 0;icon_state = "pdoor0";id = "atmos";name = "Atmos Blast Door";opacity = 0},/obj/machinery/door/window/northleft{dir = 4;icon_state = "left";name = "Atmospherics Desk";req_access_txt = "24"},/obj/item/weapon/folder/yellow,/obj/item/weapon/folder/yellow,/obj/item/weapon/pen,/obj/machinery/door/firedoor,/obj/machinery/door/poddoor{density = 0;icon_state = "open";id = "atmos";name = "Atmos Blast Door";opacity = 0},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/atmos)
-"bCh" = (/obj/structure/chair{dir = 8},/obj/effect/landmark/start{name = "Atmospheric Technician"},/turf/open/floor/plasteel/caution{dir = 8},/area/atmos)
-"bCi" = (/turf/open/floor/plasteel,/area/atmos)
-"bCj" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8;initialize_directions = 11},/turf/open/floor/plasteel,/area/atmos)
-"bCk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/atmos)
-"bCl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/computer/atmos_control,/turf/open/floor/plasteel/caution{dir = 4},/area/atmos)
-"bCm" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/atmos)
-"bCn" = (/obj/structure/table,/obj/item/weapon/storage/belt/utility,/obj/item/device/t_scanner,/obj/item/device/t_scanner,/obj/item/device/t_scanner,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/caution{dir = 8},/area/atmos)
-"bCo" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/atmos)
-"bCp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/atmos)
-"bCq" = (/obj/machinery/space_heater,/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/atmos)
-"bCr" = (/obj/machinery/atmospherics/components/binary/pump{dir = 0;name = "Waste to Filter";on = 1},/turf/open/floor/plasteel,/area/atmos)
-"bCs" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{color = "purple";dir = 5;icon_state = "intact"},/turf/open/floor/plasteel,/area/atmos)
-"bCt" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold/yellow/visible{color = "purple";dir = 1},/turf/open/floor/plasteel,/area/atmos)
-"bCu" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{color = "purple"},/turf/open/floor/plasteel,/area/atmos)
-"bCv" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{color = "purple";dir = 4},/turf/open/floor/plasteel,/area/atmos)
-"bCw" = (/obj/machinery/atmospherics/components/binary/pump{dir = 0;name = "Air to Mix";on = 0},/obj/machinery/atmospherics/pipe/simple/yellow/visible{color = "purple";dir = 4},/turf/open/floor/plasteel,/area/atmos)
-"bCx" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/atmospherics/pipe/simple/yellow/visible{color = "purple";dir = 4},/turf/open/floor/plasteel/green/side{dir = 5},/area/atmos)
-"bCy" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/yellow/visible{color = "purple";dir = 4},/turf/open/floor/plating,/area/atmos)
-"bCz" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/yellow/visible{color = "purple";dir = 4},/turf/open/space,/area/space)
-"bCA" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/obj/structure/grille,/turf/closed/wall/r_wall,/area/atmos)
-"bCB" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;external_pressure_bound = 0;frequency = 1441;id_tag = "mix_in";initialize_directions = 1;internal_pressure_bound = 4000;on = 1;pressure_checks = 2;pump_direction = 0},/turf/open/floor/engine/vacuum,/area/atmos)
-"bCC" = (/turf/open/floor/engine{name = "vacuum floor";initial_gas_mix = "o2=0.01;n2=0.01"},/area/atmos)
-"bCD" = (/turf/closed/wall/r_wall,/area/tcommsat/server)
-"bCE" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/tcommsat/server)
-"bCF" = (/obj/machinery/door/airlock/hatch{name = "Telecoms Server Room"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/black,/area/tcommsat/server)
-"bCG" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;name = "EXTERNAL AIRLOCK";pixel_x = 0},/turf/open/floor/plating,/area/hallway/secondary/entry{name = "Arrivals"})
-"bCH" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/extinguisher_cabinet{pixel_x = 27;pixel_y = 0},/turf/open/floor/plasteel/arrival{dir = 4},/area/hallway/secondary/entry{name = "Arrivals"})
-"bCI" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bCJ" = (/obj/item/weapon/storage/toolbox/emergency,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bCK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/starboard)
-"bCL" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/wood,/area/security/vacantoffice)
-"bCM" = (/obj/structure/table/wood,/turf/open/floor/wood,/area/security/vacantoffice)
-"bCN" = (/obj/structure/chair/office/dark{dir = 8},/turf/open/floor/wood,/area/security/vacantoffice)
-"bCO" = (/obj/machinery/vending/cigarette,/obj/structure/sign/poster{pixel_x = 32;pixel_y = 0},/turf/open/floor/plating,/area/crew_quarters/toilet{name = "\improper Auxiliary Restrooms"})
-"bCP" = (/obj/machinery/light/small,/turf/open/floor/plating,/area/crew_quarters/toilet{name = "\improper Auxiliary Restrooms"})
-"bCQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/floorgrime,/area/crew_quarters/toilet{name = "\improper Auxiliary Restrooms"})
-"bCR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/machinery/power/apc{cell_type = 5000;dir = 2;name = "Auxiliary Restrooms APC";pixel_y = -24},/obj/structure/cable/yellow,/turf/open/floor/plasteel/floorgrime,/area/crew_quarters/toilet{name = "\improper Auxiliary Restrooms"})
-"bCS" = (/obj/machinery/firealarm{dir = 4;pixel_x = 24},/turf/open/floor/plasteel/floorgrime,/area/crew_quarters/toilet{name = "\improper Auxiliary Restrooms"})
-"bCT" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green{pixel_x = 1;pixel_y = 5},/obj/machinery/newscaster{pixel_x = -32;pixel_y = 0},/turf/open/floor/wood,/area/library)
-"bCU" = (/obj/structure/table/wood,/obj/item/weapon/folder,/obj/item/weapon/pen/blue{pixel_x = 5;pixel_y = 5},/turf/open/floor/wood,/area/library)
-"bCV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/library)
-"bCW" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/hallway/primary/central)
-"bCX" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/junction{dir = 1;icon_state = "pipe-j1"},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bCY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/neutral/corner{dir = 4},/area/hallway/primary/central)
-"bCZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/glass{name = "Command Hallway"},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bDa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bDb" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bDc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/landmark{name = "lightsout"},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bDd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bDe" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bDf" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bDg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bDh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 0;pixel_y = 21},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bDi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/status_display{density = 0;layer = 4;pixel_x = 0;pixel_y = 32},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;on = 1;scrub_N2O = 1;scrub_Toxins = 1},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bDj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/neutral/corner{dir = 4},/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bDk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/neutral/side{dir = 1},/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bDl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/neutral/side{dir = 1},/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bDm" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/neutral/side{dir = 1},/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bDn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bDo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/ai_status_display{pixel_y = 32},/turf/open/floor/plasteel/neutral/corner{dir = 4},/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bDp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/power/apc{cell_type = 10000;dir = 1;name = "Command Hallway APC";pixel_x = 0;pixel_y = 25},/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/turf/open/floor/plasteel/neutral/corner{dir = 4},/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bDq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/neutral/corner{dir = 4},/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bDr" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plasteel/neutral/corner{dir = 4},/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bDs" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/neutral/corner{dir = 4},/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bDt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/landmark{name = "lightsout"},/turf/open/floor/plasteel/neutral/corner{dir = 4},/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bDu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 0;pixel_y = 21},/obj/machinery/camera{c_tag = "Command Hallway - Starboard";dir = 2;network = list("SS13")},/turf/open/floor/plasteel/neutral/corner{dir = 4},/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bDv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/status_display{density = 0;layer = 4;pixel_x = 0;pixel_y = 32},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;on = 1;scrub_N2O = 1;scrub_Toxins = 1},/turf/open/floor/plasteel/neutral/corner{dir = 4},/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bDw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/airalarm{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/neutral/corner{dir = 4},/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bDx" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/turf/open/floor/plasteel/neutral/corner{dir = 4},/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bDy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Command Hallway"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/neutral/corner{dir = 4},/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bDz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/hallway/primary/central)
-"bDA" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bDB" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/turf/open/floor/plasteel/neutral/corner{dir = 4},/area/hallway/primary/central)
-"bDC" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Bar"},/turf/open/floor/plasteel,/area/crew_quarters/bar)
-"bDD" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;on = 1;scrub_Toxins = 0},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"bDE" = (/obj/effect/landmark{name = "lightsout"},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"bDF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"bDG" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/centcom{name = "Club";opacity = 1},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"bDH" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/chair/stool{pixel_y = 8},/turf/open/floor/wood,/area/crew_quarters/bar)
-"bDI" = (/obj/structure/chair/stool{pixel_y = 8},/obj/effect/landmark/start{name = "Assistant"},/turf/open/floor/wood,/area/crew_quarters/bar)
-"bDJ" = (/obj/structure/disposalpipe/segment,/obj/structure/table/wood/poker,/obj/item/clothing/mask/cigarette/cigar,/turf/open/floor/wood,/area/crew_quarters/bar)
-"bDK" = (/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/crew_quarters/theatre)
-"bDL" = (/obj/structure/sign/poster,/turf/closed/wall,/area/crew_quarters/bar)
-"bDM" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/scrubber,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/window/reinforced{dir = 1},/turf/open/floor/plasteel/escape{dir = 8},/area/hallway/primary/starboard)
-"bDN" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
-"bDO" = (/obj/structure/tank_dispenser{pixel_x = -1},/turf/open/floor/plasteel/black/corner{dir = 1},/area/atmos)
-"bDP" = (/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/atmos)
-"bDQ" = (/turf/open/floor/plasteel/caution{dir = 4},/area/atmos)
-"bDR" = (/obj/machinery/door/airlock/glass_atmos{name = "Atmospherics Monitoring";req_access_txt = "24"},/turf/open/floor/plasteel,/area/atmos)
-"bDS" = (/turf/open/floor/plasteel/caution{dir = 8},/area/atmos)
-"bDT" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/atmos)
-"bDU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/atmos)
-"bDV" = (/obj/structure/closet/crate,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/atmos)
-"bDW" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 8},/turf/open/floor/plasteel,/area/atmos)
-"bDX" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8;name = "Mix to Filter";on = 1},/turf/open/floor/plasteel,/area/atmos)
-"bDY" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{color = "purple";dir = 4},/turf/open/floor/plasteel,/area/atmos)
-"bDZ" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 6},/obj/effect/landmark/start{name = "Atmospheric Technician"},/turf/open/floor/plasteel,/area/atmos)
-"bEa" = (/obj/machinery/atmospherics/pipe/manifold/green/visible{dir = 1},/obj/machinery/meter,/turf/open/floor/plasteel,/area/atmos)
-"bEb" = (/obj/machinery/atmospherics/pipe/manifold/green/visible{dir = 4},/turf/open/floor/plasteel,/area/atmos)
-"bEc" = (/obj/machinery/computer/atmos_control/tank{frequency = 1441;input_tag = "mix_in";name = "Gas Mix Tank Control";output_tag = "mix_in";sensors = list("mix_sensor" = "Tank")},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/open/floor/plasteel/green/side{dir = 4},/area/atmos)
-"bEd" = (/obj/machinery/air_sensor{frequency = 1441;id_tag = "mix_sensor"},/turf/open/floor/engine/vacuum,/area/atmos)
-"bEe" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/engine/vacuum,/area/atmos)
-"bEf" = (/obj/machinery/telecomms/processor/preset_one,/obj/machinery/camera{c_tag = "Telecoms - Server Room - Fore-Port";dir = 2;network = list("SS13","tcomm")},/turf/open/floor/plasteel/circuit/gcircuit{name = "Mainframe Base";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server)
-"bEg" = (/obj/structure/showcase{density = 0;desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze.";dir = 2;icon = 'icons/mob/robots.dmi';icon_state = "robot_old";name = "Cyborg Statue";pixel_x = 0;pixel_y = 20},/turf/open/floor/plasteel/black{name = "Mainframe Floor";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server)
-"bEh" = (/obj/machinery/telecomms/receiver/preset_left,/turf/open/floor/plasteel/circuit/gcircuit{name = "Mainframe Base";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server)
-"bEi" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/black,/area/tcommsat/server)
-"bEj" = (/obj/machinery/telecomms/receiver/preset_right,/turf/open/floor/plasteel/circuit/gcircuit{name = "Mainframe Base";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server)
-"bEk" = (/obj/machinery/telecomms/processor/preset_three,/obj/machinery/camera{c_tag = "Telecoms - Server Room - Fore-Starboard";dir = 2;network = list("SS13","tcomm")},/turf/open/floor/plasteel/circuit/gcircuit{name = "Mainframe Base";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server)
-"bEl" = (/obj/machinery/door/airlock/external{name = "Transport Airlock"},/turf/open/floor/plating,/area/hallway/secondary/entry{name = "Arrivals"})
-"bEm" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/hallway/secondary/entry{name = "Arrivals"})
-"bEn" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/status_display{density = 0;layer = 4;pixel_x = 32;pixel_y = 0},/turf/open/floor/plasteel/arrival{dir = 4},/area/hallway/secondary/entry{name = "Arrivals"})
-"bEo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/item/weapon/storage/box/lights/mixed,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bEp" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bEq" = (/obj/structure/light_construct{dir = 8},/turf/open/floor/wood,/area/security/vacantoffice)
-"bEr" = (/obj/effect/landmark{name = "lightsout"},/turf/open/floor/wood,/area/security/vacantoffice)
-"bEs" = (/obj/item/weapon/paper_bin{pixel_x = -2;pixel_y = 6},/obj/structure/table/wood,/turf/open/floor/carpet,/area/security/vacantoffice)
-"bEt" = (/obj/machinery/door/airlock{id_tag = "AuxShower";name = "Shower"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/floorgrime,/area/crew_quarters/toilet{name = "\improper Auxiliary Restrooms"})
-"bEu" = (/obj/machinery/door/airlock{id_tag = "AuxToilet2";name = "Unit 2"},/turf/open/floor/plasteel,/area/crew_quarters/toilet{name = "\improper Auxiliary Restrooms"})
-"bEv" = (/obj/structure/toilet{pixel_y = 8},/obj/machinery/light/small{dir = 4},/obj/machinery/button/door{id = "AuxToilet2";name = "Lock Control";normaldoorcontrol = 1;pixel_x = 25;pixel_y = 0;req_access_txt = "0";specialfunctions = 4},/obj/machinery/newscaster{pixel_x = 0;pixel_y = -32},/turf/open/floor/plasteel,/area/crew_quarters/toilet{name = "\improper Auxiliary Restrooms"})
-"bEw" = (/obj/structure/table/wood,/obj/machinery/computer/security/telescreen/entertainment{pixel_x = -32;pixel_y = 0},/obj/machinery/camera/autoname{dir = 4;network = list("SS13")},/turf/open/floor/wood,/area/library)
-"bEx" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8;initialize_directions = 11},/turf/open/floor/carpet,/area/library)
-"bEy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/carpet,/area/library)
-"bEz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/library)
-"bEA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/carpet,/area/library)
-"bEB" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=11.1-Command-Starboard";location = "11-Command-Port"},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bEC" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8;initialize_directions = 11},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/hallway/primary/central)
-"bED" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/airlock/glass{name = "Command Hallway"},/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bEE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bEF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bEG" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1;initialize_directions = 11},/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bEH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/light,/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bEI" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/extinguisher_cabinet{pixel_x = 0;pixel_y = -30},/obj/machinery/camera{c_tag = "Command Hallway - Port";dir = 1;network = list("SS13")},/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bEJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bEK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bEL" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1;initialize_directions = 11},/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bEM" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2;initialize_directions = 11},/obj/machinery/newscaster{pixel_y = -29},/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bEN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bEO" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/light,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2;initialize_directions = 11},/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bEP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bEQ" = (/obj/machinery/holopad,/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel,/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bER" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bES" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bET" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/light,/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bEU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bEV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/newscaster{pixel_y = -29},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bEW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bEX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bEY" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1;initialize_directions = 11},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bEZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/extinguisher_cabinet{pixel_x = 0;pixel_y = -30},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bFa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/light,/obj/machinery/firealarm{dir = 1;pixel_y = -24},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bFb" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bFc" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2;initialize_directions = 11},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bFd" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2;initialize_directions = 11},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bFe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bFf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Command Hallway"},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bFg" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4;initialize_directions = 11},/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/hallway/primary/central)
-"bFh" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=7.5-Starboard-Aft-Corner";location = "7-Command-Starboard"},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bFi" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/hallway/primary/central)
-"bFj" = (/obj/machinery/door/firedoor,/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/glass{name = "Bar"},/turf/open/floor/plasteel,/area/crew_quarters/bar)
-"bFk" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"bFl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"bFm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"bFn" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"bFo" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"bFp" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/centcom{name = "Club";opacity = 1},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"bFq" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/wood,/area/crew_quarters/bar)
-"bFr" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/chair/stool{pixel_y = 8},/turf/open/floor/wood,/area/crew_quarters/bar)
-"bFs" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/table/wood/poker,/obj/item/weapon/storage/pill_bottle/dice,/turf/open/floor/wood,/area/crew_quarters/bar)
-"bFt" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/turf/open/floor/wood,/area/crew_quarters/bar)
-"bFu" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/item/toy/cards/deck{pixel_y = 4},/obj/structure/table/wood/poker,/turf/open/floor/wood,/area/crew_quarters/bar)
-"bFv" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/carpet,/area/crew_quarters/theatre)
-"bFw" = (/obj/structure/chair/wood/wings{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/landmark/start{name = "Clown"},/turf/open/floor/carpet,/area/crew_quarters/theatre)
-"bFx" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/carpet,/area/crew_quarters/theatre)
-"bFy" = (/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/carpet,/area/crew_quarters/theatre)
-"bFz" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/theatre)
-"bFA" = (/obj/machinery/door/airlock{name = "Theatre Stage";req_access_txt = "0";req_one_access_txt = "12;46"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/crew_quarters/theatre)
-"bFB" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/starboard)
-"bFC" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/scrubber,/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/window/reinforced,/turf/open/floor/plasteel/escape{dir = 8},/area/hallway/primary/starboard)
-"bFD" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4;initialize_directions = 11},/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/turf/open/floor/plasteel,/area/hallway/primary/starboard)
-"bFE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/caution{dir = 4},/area/hallway/primary/starboard)
-"bFF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/plasticflaps{opacity = 1},/obj/machinery/navbeacon{codes_txt = "delivery;dir=4";dir = 4;freq = 1400;location = "Atmospherics"},/obj/machinery/door/poddoor{density = 0;icon_state = "open";id = "atmos";name = "Atmos Blast Door";opacity = 0},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/atmos)
-"bFG" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/loadingarea{dir = 4},/area/atmos)
-"bFH" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/atmos)
-"bFI" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/atmos)
-"bFJ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/turf/open/floor/plasteel/black/corner{dir = 2},/area/atmos)
-"bFK" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/firealarm{dir = 1;pixel_y = -24},/obj/machinery/button/door{id = "atmos";name = "Atmospherics Lockdown";pixel_x = 26;pixel_y = -26;req_access_txt = "24"},/turf/open/floor/plasteel/caution{dir = 6},/area/atmos)
-"bFL" = (/obj/machinery/holopad,/turf/open/floor/plasteel/caution{dir = 8},/area/atmos)
-"bFM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 6},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/atmos)
-"bFN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/atmos)
-"bFO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/atmos)
-"bFP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/machinery/door/airlock/glass_atmos{name = "Distribution Loop";req_access_txt = "24"},/turf/open/floor/plasteel,/area/atmos)
-"bFQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/turf/open/floor/plasteel,/area/atmos)
-"bFR" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{color = "purple";dir = 6},/turf/open/floor/plasteel,/area/atmos)
-"bFS" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{color = "purple";dir = 9},/turf/open/floor/plasteel,/area/atmos)
-"bFT" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1;name = "Pure to Mix";on = 0},/turf/open/floor/plasteel,/area/atmos)
-"bFU" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 5;initialize_directions = 12},/turf/open/floor/plasteel,/area/atmos)
-"bFV" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/atmospherics/components/binary/pump{dir = 4;name = "Unfiltered & Air to Mix";on = 1},/turf/open/floor/plasteel,/area/atmos)
-"bFW" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/open/floor/plasteel/green/side{dir = 6},/area/atmos)
-"bFX" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/floor/plating,/area/atmos)
-"bFY" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/space,/area/space)
-"bFZ" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/structure/grille,/turf/closed/wall/r_wall,/area/atmos)
-"bGa" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8;frequency = 1441;id = "mix_in";pixel_y = 1},/turf/open/floor/engine/vacuum,/area/atmos)
-"bGb" = (/obj/machinery/camera{c_tag = "Atmospherics Tank - Mix";dir = 8;network = list("SS13");pixel_x = 0;pixel_y = 0},/turf/open/floor/engine/vacuum,/area/atmos)
-"bGc" = (/obj/machinery/telecomms/bus/preset_one,/turf/open/floor/plasteel/circuit/gcircuit{name = "Mainframe Base";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server)
-"bGd" = (/turf/open/floor/plasteel/black{name = "Mainframe Floor";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server)
-"bGe" = (/turf/open/floor/plasteel/circuit/gcircuit{name = "Mainframe Base";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server)
-"bGf" = (/obj/machinery/telecomms/bus/preset_three,/turf/open/floor/plasteel/circuit/gcircuit{name = "Mainframe Base";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server)
-"bGg" = (/obj/structure/chair/wood/wings{dir = 8},/obj/machinery/light_switch{pixel_y = 28},/turf/open/floor/carpet,/area/crew_quarters/theatre)
-"bGh" = (/obj/machinery/announcement_system,/turf/open/floor/plasteel/grimy,/area/tcommsat/computer{name = "\improper Telecoms Control Room"})
-"bGi" = (/obj/structure/piano,/obj/structure/window/reinforced{dir = 8},/obj/structure/sign/poster{pixel_y = 32},/turf/open/floor/carpet,/area/crew_quarters/theatre)
-"bGj" = (/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/wood,/area/security/vacantoffice)
-"bGk" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9;pixel_y = 0},/turf/open/floor/wood,/area/security/vacantoffice)
-"bGl" = (/obj/machinery/shower{icon_state = "shower";dir = 4},/obj/machinery/button/door{id = "AuxShower";name = "Lock Control";normaldoorcontrol = 1;pixel_x = 0;pixel_y = 25;req_access_txt = "0";specialfunctions = 4},/obj/item/weapon/soap/nanotrasen,/turf/open/floor/plasteel/floorgrime,/area/crew_quarters/toilet{name = "\improper Auxiliary Restrooms"})
-"bGm" = (/obj/machinery/shower{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/floorgrime,/area/crew_quarters/toilet{name = "\improper Auxiliary Restrooms"})
-"bGn" = (/obj/machinery/light/small{dir = 1},/obj/structure/sign/poster{pixel_y = 32},/turf/open/floor/carpet,/area/crew_quarters/theatre)
-"bGo" = (/obj/structure/table/wood,/obj/item/weapon/staff/broom,/obj/item/weapon/wrench,/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/obj/structure/sign/poster{pixel_y = 32},/turf/open/floor/wood,/area/crew_quarters/theatre)
-"bGp" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/starboard)
-"bGq" = (/obj/machinery/door/airlock/maintenance{name = "Library Maintenance";req_access_txt = "0";req_one_access_txt = "12;37"},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bGr" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/carpet,/area/library)
-"bGs" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/wood,/area/library)
-"bGt" = (/turf/open/floor/wood{icon_state = "wood-broken7"},/area/library)
-"bGu" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/wood,/area/library)
-"bGv" = (/obj/item/device/radio/intercom{dir = 4;name = "Station Intercom (General)";pixel_x = 0},/turf/closed/wall,/area/library)
-"bGw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera{c_tag = "Central Primary Hallway - Port";dir = 8;network = list("SS13")},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/hallway/primary/central)
-"bGx" = (/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the research department is.";icon_state = "direction_sci";name = "research department";pixel_y = -8},/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the medical department is.";icon_state = "direction_med";name = "medical department";pixel_y = 8},/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the escape arm is.";icon_state = "direction_evac";name = "escape arm"},/turf/closed/wall/r_wall,/area/ai_monitored/storage/eva{name = "E.V.A. Storage"})
-"bGy" = (/turf/closed/wall/r_wall,/area/ai_monitored/storage/eva{name = "E.V.A. Storage"})
-"bGz" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/command{name = "E.V.A. Storage";req_access_txt = "18"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/ai_monitored/storage/eva{name = "E.V.A. Storage"})
-"bGA" = (/obj/structure/sign/securearea,/turf/closed/wall/r_wall,/area/ai_monitored/storage/eva{name = "E.V.A. Storage"})
-"bGB" = (/obj/machinery/door/firedoor,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/door/airlock/command{name = "E.V.A. Storage";req_access_txt = "18"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/ai_monitored/storage/eva{name = "E.V.A. Storage"})
-"bGC" = (/turf/closed/wall/r_wall,/area/teleporter{name = "\improper Teleporter Room"})
-"bGD" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Teleport Access";req_access_txt = "0";req_one_access_txt = "17;19"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/teleporter{name = "\improper Teleporter Room"})
-"bGE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/sign/securearea,/turf/closed/wall/r_wall,/area/teleporter{name = "\improper Teleporter Room"})
-"bGF" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow,/turf/open/floor/plating,/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bGG" = (/obj/structure/chair{dir = 1},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bGH" = (/obj/structure/chair{dir = 1},/turf/open/floor/plasteel,/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bGI" = (/turf/open/floor/plasteel,/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bGJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bGK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel,/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bGL" = (/obj/structure/chair{dir = 1},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/extinguisher_cabinet{pixel_x = 27;pixel_y = 0},/obj/machinery/camera{c_tag = "Command Hallway - Central";dir = 8;network = list("SS13")},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bGM" = (/turf/closed/wall/r_wall,/area/gateway)
-"bGN" = (/obj/structure/sign/securearea,/turf/closed/wall/r_wall,/area/gateway)
-"bGO" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Gateway Atrium";req_access_txt = "62"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/gateway)
-"bGP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/gateway)
-"bGQ" = (/obj/machinery/vending/cola,/turf/open/floor/plasteel/vault,/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bGR" = (/obj/machinery/vending/cigarette,/obj/machinery/newscaster{pixel_x = 0;pixel_y = -29},/turf/open/floor/plasteel/vault,/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bGS" = (/obj/machinery/vending/coffee,/turf/open/floor/plasteel/vault,/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bGT" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "0";req_one_access_txt = "12;17"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"})
-"bGU" = (/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the escape arm is.";icon_state = "direction_evac";name = "escape arm"},/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the medical department is.";icon_state = "direction_med";name = "medical department";pixel_y = 8},/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the research department is.";icon_state = "direction_sci";name = "research department";pixel_y = -8},/turf/closed/wall,/area/maintenance/maintcentral{name = "Central Maintenance"})
-"bGV" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8;initialize_directions = 11},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/hallway/primary/central)
-"bGW" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bGX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/hallway/primary/central)
-"bGY" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/crew_quarters/bar)
-"bGZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"bHa" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2;initialize_directions = 11},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"bHb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"bHc" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"bHd" = (/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/chair/stool{pixel_y = 8},/turf/open/floor/wood,/area/crew_quarters/bar)
-"bHe" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/bar)
-"bHf" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/turf/open/floor/wood,/area/crew_quarters/bar)
-"bHg" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/carpet,/area/crew_quarters/theatre)
-"bHh" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet,/area/crew_quarters/theatre)
-"bHi" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/carpet,/area/crew_quarters/theatre)
-"bHj" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/turf/open/floor/carpet,/area/crew_quarters/theatre)
-"bHk" = (/obj/structure/table/wood,/obj/machinery/light/small{dir = 4},/obj/item/clothing/head/sombrero,/obj/structure/sign/poster{pixel_x = 32;pixel_y = 0},/turf/open/floor/wood,/area/crew_quarters/theatre)
-"bHl" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plating,/area/maintenance/starboard)
-"bHm" = (/obj/item/weapon/crowbar,/obj/item/weapon/wrench,/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/caution/corner{dir = 8},/area/hallway/primary/starboard)
-"bHn" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=13.3-Engineering-Central";location = "13.2-Tcommstore"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/starboard)
-"bHo" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/machinery/firealarm{dir = 4;pixel_x = 24},/turf/open/floor/plasteel/caution{dir = 4},/area/hallway/primary/starboard)
-"bHp" = (/obj/machinery/portable_atmospherics/canister/air,/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/atmos)
-"bHq" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/atmos)
-"bHr" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/atmos)
-"bHs" = (/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/atmos)
-"bHt" = (/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/caution{dir = 8},/area/atmos)
-"bHu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/atmos)
-"bHv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/atmos)
-"bHw" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 6;initialize_directions = 6},/turf/open/floor/plating,/area/atmos)
-"bHx" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/yellow/visible{color = "purple"},/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plating,/area/atmos)
-"bHy" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plating,/area/atmos)
-"bHz" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plating,/area/atmos)
-"bHA" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plating,/area/atmos)
-"bHB" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 4;initialize_directions = 11},/turf/open/floor/plating,/area/atmos)
-"bHC" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/black{name = "Mainframe Floor";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server)
-"bHD" = (/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/black{name = "Mainframe Floor";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server)
-"bHE" = (/obj/machinery/holopad,/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel/black{name = "Mainframe Floor";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server)
-"bHF" = (/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/black{name = "Mainframe Floor";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server)
-"bHG" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/black{name = "Mainframe Floor";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server)
-"bHH" = (/obj/structure/closet/firecloset,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"bHI" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/turf/open/floor/plasteel/arrival{dir = 4},/area/hallway/secondary/entry{name = "Arrivals"})
-"bHJ" = (/obj/structure/closet/emcloset,/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bHK" = (/obj/item/weapon/book/manual/wiki/security_space_law{pixel_x = -3;pixel_y = 5},/obj/structure/table/wood,/turf/open/floor/wood,/area/security/vacantoffice)
-"bHL" = (/obj/structure/chair/comfy/black{dir = 4},/turf/open/floor/carpet,/area/security/vacantoffice)
-"bHM" = (/obj/item/weapon/folder/white{pixel_x = 4;pixel_y = -3},/obj/structure/table/wood,/turf/open/floor/carpet,/area/security/vacantoffice)
-"bHN" = (/obj/machinery/shower{icon_state = "shower";dir = 4},/obj/machinery/light/small,/obj/effect/landmark{name = "revenantspawn"},/obj/effect/decal/cleanable/blood/old,/obj/effect/decal/cleanable/blood/gibs/old,/turf/open/floor/plasteel/floorgrime,/area/crew_quarters/toilet{name = "\improper Auxiliary Restrooms"})
-"bHO" = (/obj/machinery/shower{dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plating,/area/crew_quarters/toilet{name = "\improper Auxiliary Restrooms"})
-"bHP" = (/obj/machinery/door/airlock{id_tag = "AuxToilet3";name = "Unit 3"},/turf/open/floor/plating,/area/crew_quarters/toilet{name = "\improper Auxiliary Restrooms"})
-"bHQ" = (/obj/structure/toilet{pixel_y = 8},/obj/machinery/light/small{dir = 4},/obj/machinery/button/door{id = "AuxToilet3";name = "Lock Control";normaldoorcontrol = 1;pixel_x = 25;pixel_y = 0;req_access_txt = "0";specialfunctions = 4},/obj/machinery/newscaster{pixel_x = 0;pixel_y = -32},/obj/effect/landmark{name = "blobstart"},/turf/open/floor/plating,/area/crew_quarters/toilet{name = "\improper Auxiliary Restrooms"})
-"bHR" = (/obj/structure/bookcase/random/nonfiction,/turf/open/floor/wood,/area/library)
-"bHS" = (/obj/structure/bookcase/random/fiction,/turf/open/floor/wood,/area/library)
-"bHT" = (/obj/structure/table/wood,/obj/item/device/flashlight/lamp/green{pixel_x = 1;pixel_y = 5},/turf/open/floor/wood,/area/library)
-"bHU" = (/obj/machinery/holopad,/turf/open/floor/wood,/area/library)
-"bHV" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin{pixel_x = -3;pixel_y = 7},/turf/open/floor/wood,/area/library)
-"bHW" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bHX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/neutral/corner{dir = 4},/area/hallway/primary/central)
-"bHY" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/structure/extinguisher_cabinet{pixel_x = -27;pixel_y = 0},/turf/open/floor/plasteel/vault{dir = 8},/area/ai_monitored/storage/eva{name = "E.V.A. Storage"})
-"bHZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva{name = "E.V.A. Storage"})
-"bIa" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva{name = "E.V.A. Storage"})
-"bIb" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva{name = "E.V.A. Storage"})
-"bIc" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/machinery/light_switch{pixel_x = -8;pixel_y = 30},/turf/open/floor/plasteel/vault{dir = 8},/area/ai_monitored/storage/eva{name = "E.V.A. Storage"})
-"bId" = (/turf/closed/wall,/area/ai_monitored/storage/eva{name = "E.V.A. Storage"})
-"bIe" = (/obj/structure/table,/obj/item/weapon/hand_tele,/obj/item/device/radio/beacon,/obj/machinery/airalarm{dir = 4;pixel_x = -23;pixel_y = 0},/turf/open/floor/plasteel/vault{dir = 4},/area/teleporter{name = "\improper Teleporter Room"})
-"bIf" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/weapon/stock_parts/cell/high{charge = 100;maxcharge = 15000},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/vault{dir = 4},/area/teleporter{name = "\improper Teleporter Room"})
-"bIg" = (/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/vault{dir = 8},/area/teleporter{name = "\improper Teleporter Room"})
-"bIh" = (/obj/structure/closet/crate{icon_state = "crate";opened = 0},/obj/item/stack/cable_coil,/obj/item/weapon/crowbar,/obj/item/weapon/screwdriver{pixel_y = 16},/obj/machinery/power/apc{dir = 4;name = "Teleporter APC";pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/turf/open/floor/plasteel/vault{dir = 1},/area/teleporter{name = "\improper Teleporter Room"})
-"bIi" = (/obj/structure/chair{dir = 1},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bIj" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bIk" = (/obj/structure/chair{dir = 1},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bIl" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/turf/open/floor/plating,/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bIm" = (/obj/structure/closet/secure_closet/exile,/obj/structure/extinguisher_cabinet{pixel_x = -27;pixel_y = 0},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/gateway)
-"bIn" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/gateway)
-"bIo" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/gateway)
-"bIp" = (/obj/structure/closet/crate{icon_state = "crateopen";opened = 1},/obj/item/stack/sheet/rglass{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/rods{amount = 50},/obj/item/weapon/storage/toolbox/emergency,/obj/item/device/flashlight,/obj/machinery/power/apc{cell_type = 5000;dir = 4;name = "Gateway APC";pixel_x = 28;pixel_y = 0},/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/gateway)
-"bIq" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"})
-"bIr" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bIs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/hallway/primary/central)
-"bIt" = (/obj/structure/table,/obj/item/clothing/head/hardhat/cakehat,/obj/machinery/newscaster{pixel_x = -30;pixel_y = 0},/obj/machinery/airalarm{dir = 1;pixel_y = -22},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"bIu" = (/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 0;pixel_y = -28},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"bIv" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 10;initialize_directions = 10},/turf/open/floor/plating,/area/toxins/xenobiology)
-"bIw" = (/obj/machinery/light,/obj/machinery/camera{c_tag = "Kitchen Hatch";dir = 1;network = list("SS13")},/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"bIx" = (/obj/structure/rack,/obj/item/clothing/shoes/winterboots,/obj/item/clothing/suit/hooded/wintercoat,/turf/open/floor/plating,/area/toxins/xenobiology)
-"bIy" = (/obj/machinery/firealarm{dir = 1;pixel_y = -24},/obj/machinery/light,/turf/open/floor/wood,/area/crew_quarters/bar)
-"bIz" = (/obj/structure/table/wood,/obj/item/weapon/clipboard,/obj/item/weapon/paper,/obj/structure/sign/poster{pixel_y = 32},/turf/open/floor/wood,/area/security/vacantoffice)
-"bIA" = (/obj/machinery/light_switch{pixel_y = -28},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/machinery/light,/turf/open/floor/carpet,/area/crew_quarters/theatre)
-"bIB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/carpet,/area/crew_quarters/theatre)
-"bIC" = (/obj/structure/table/wood,/obj/machinery/light/small,/obj/item/clothing/glasses/regular/hipster{name = "Hipster Glasses"},/turf/open/floor/wood,/area/crew_quarters/theatre)
-"bID" = (/obj/structure/urinal{pixel_y = 29},/obj/structure/sign/poster{pixel_x = -32;pixel_y = 0},/turf/open/floor/plating,/area/crew_quarters/toilet{name = "\improper Auxiliary Restrooms"})
-"bIE" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plating{icon_state = "platingdmg2"},/area/maintenance/starboard)
-"bIF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/yellow/side{dir = 10},/area/hallway/primary/starboard)
-"bIG" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8;initialize_directions = 11},/turf/open/floor/plasteel/yellow/side{dir = 2},/area/hallway/primary/starboard)
-"bIH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/weapon/twohanded/required/kirbyplants{icon_state = "plant-22"},/turf/open/floor/plasteel/yellow/side{dir = 6},/area/hallway/primary/starboard)
-"bII" = (/obj/machinery/portable_atmospherics/canister/air,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/atmos)
-"bIJ" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/atmos)
-"bIK" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2;initialize_directions = 11},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/atmos)
-"bIL" = (/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/atmos)
-"bIM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/closed/wall/r_wall,/area/atmos)
-"bIN" = (/obj/structure/table,/obj/item/stack/sheet/glass{amount = 50},/obj/item/stack/sheet/glass{amount = 50},/obj/item/stack/rods{amount = 50},/obj/item/stack/rods{amount = 50},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/atmos)
-"bIO" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8;name = "Air to External Air Ports";on = 1},/turf/open/floor/plasteel/caution{dir = 8},/area/atmos)
-"bIP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/atmos)
-"bIQ" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 1;initialize_directions = 11},/turf/open/floor/plasteel,/area/atmos)
-"bIR" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/atmos)
-"bIS" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plasteel,/area/atmos)
-"bIT" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 4;initialize_directions = 11},/obj/machinery/meter,/turf/open/floor/plasteel,/area/atmos)
-"bIU" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{color = "purple"},/obj/machinery/meter,/turf/open/floor/plasteel,/area/atmos)
-"bIV" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 6},/obj/machinery/meter,/turf/open/floor/plasteel,/area/atmos)
-"bIW" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible,/turf/open/floor/plasteel,/area/atmos)
-"bIX" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 1},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel,/area/atmos)
-"bIY" = (/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/obj/machinery/atmospherics/components/binary/pump{dir = 8;name = "N2O to Pure";on = 0},/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/plasteel/escape{dir = 5},/area/atmos)
-"bIZ" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/open/floor/plasteel/black,/area/atmos)
-"bJa" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/open/floor/plating,/area/atmos)
-"bJb" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/open/space,/area/space)
-"bJc" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;external_pressure_bound = 0;frequency = 1441;id_tag = "n2o_out";initialize_directions = 1;internal_pressure_bound = 4000;on = 1;pressure_checks = 2;pump_direction = 0},/turf/open/floor/engine/n2o,/area/atmos)
-"bJd" = (/turf/open/floor/engine/n2o,/area/atmos)
-"bJe" = (/obj/structure/lattice,/obj/structure/grille,/obj/structure/lattice,/obj/structure/lattice,/turf/closed/wall/r_wall,/area/space)
-"bJf" = (/obj/structure/lattice,/obj/structure/grille,/obj/structure/lattice,/turf/closed/wall/r_wall,/area/space)
-"bJg" = (/obj/machinery/message_server,/turf/open/floor/bluegrid{name = "Mainframe Base";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server)
-"bJh" = (/obj/item/weapon/twohanded/required/kirbyplants{icon_state = "plant-21";layer = 4.1},/turf/open/floor/plasteel/grimy,/area/tcommsat/computer{name = "\improper Telecoms Control Room"})
-"bJi" = (/obj/machinery/light/small,/obj/item/weapon/folder,/obj/item/weapon/folder,/obj/machinery/camera{c_tag = "Telecoms - Control Room";dir = 1;network = list("SS13","tcomm")},/obj/structure/table/wood,/obj/item/weapon/pen,/turf/open/floor/plasteel/grimy,/area/tcommsat/computer{name = "\improper Telecoms Control Room"})
-"bJj" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "0";req_one_access_txt = "12;27;37"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bJk" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/black{name = "Mainframe Floor";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server)
-"bJl" = (/obj/structure/lattice,/obj/structure/window/reinforced{dir = 4},/turf/open/space,/area/space)
-"bJm" = (/obj/machinery/telecomms/bus/preset_two,/turf/open/floor/bluegrid{name = "Mainframe Base";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server)
-"bJn" = (/obj/machinery/blackbox_recorder,/turf/open/floor/bluegrid{name = "Mainframe Base";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server)
-"bJo" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/arrival{dir = 4},/area/hallway/secondary/entry{name = "Arrivals"})
-"bJp" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "0";req_one_access_txt = "12;27;37"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bJq" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bJr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bJs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bJt" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = -29},/turf/open/floor/wood,/area/security/vacantoffice)
-"bJu" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9;pixel_y = 0},/turf/open/floor/wood,/area/security/vacantoffice)
-"bJv" = (/obj/item/weapon/folder/blue,/obj/structure/table/wood,/turf/open/floor/carpet,/area/security/vacantoffice)
-"bJw" = (/obj/structure/chair/office/dark{dir = 8},/turf/open/floor/carpet,/area/security/vacantoffice)
-"bJx" = (/obj/machinery/firealarm{dir = 4;pixel_x = 24},/turf/open/floor/wood,/area/security/vacantoffice)
-"bJy" = (/obj/machinery/light/small{dir = 8},/obj/machinery/firealarm{dir = 8;pixel_x = -24},/obj/effect/decal/cleanable/cobweb,/turf/open/floor/wood,/area/library)
-"bJz" = (/turf/open/floor/wood{icon_state = "wood-broken5"},/area/library)
-"bJA" = (/obj/machinery/door/window/northright{base_state = "left";dir = 8;icon_state = "left";name = "Library Desk Door";pixel_x = 3;req_access_txt = "37"},/turf/open/floor/wood,/area/library)
-"bJB" = (/obj/effect/landmark/start{name = "Librarian"},/obj/structure/chair/office/dark{dir = 1},/turf/open/floor/wood,/area/library)
-"bJC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/extinguisher_cabinet{pixel_x = 27;pixel_y = 0},/turf/open/floor/plasteel/neutral/corner{dir = 4},/area/hallway/primary/central)
-"bJD" = (/obj/machinery/suit_storage_unit/standard_unit,/turf/open/floor/plasteel/vault{dir = 8},/area/ai_monitored/storage/eva{name = "E.V.A. Storage"})
-"bJE" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva{name = "E.V.A. Storage"})
-"bJF" = (/obj/structure/table,/obj/item/weapon/storage/belt/utility,/obj/item/weapon/storage/belt/utility,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/device/multitool,/turf/open/floor/plasteel,/area/ai_monitored/storage/eva{name = "E.V.A. Storage"})
-"bJG" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva{name = "E.V.A. Storage"})
-"bJH" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/machinery/firealarm{dir = 4;pixel_x = 24},/turf/open/floor/plasteel/vault{dir = 8},/area/ai_monitored/storage/eva{name = "E.V.A. Storage"})
-"bJI" = (/obj/structure/window/reinforced,/obj/structure/table,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/weapon/hand_labeler,/turf/open/floor/plasteel/vault{dir = 4},/area/teleporter{name = "\improper Teleporter Room"})
-"bJJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/teleporter{name = "\improper Teleporter Room"})
-"bJK" = (/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/teleporter{name = "\improper Teleporter Room"})
-"bJL" = (/obj/structure/closet/crate{icon_state = "crate";opened = 0},/obj/item/stack/sheet/rglass{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/weapon/storage/toolbox/emergency,/obj/item/device/flashlight,/obj/structure/window/reinforced,/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel/vault{dir = 1},/area/teleporter{name = "\improper Teleporter Room"})
-"bJM" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/turf/open/floor/plating,/area/teleporter{name = "\improper Teleporter Room"})
-"bJN" = (/obj/structure/chair{dir = 1},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bJO" = (/obj/structure/chair{dir = 1},/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bJP" = (/obj/structure/chair{dir = 1},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bJQ" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/item/device/radio/beacon,/turf/open/floor/plasteel/neutral/side{dir = 2},/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bJR" = (/obj/structure/chair{dir = 1},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/bridge/meeting_room{name = "\improper Command Hallway"})
-"bJS" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/turf/open/floor/plating,/area/gateway)
-"bJT" = (/obj/structure/closet/l3closet/scientist,/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/gateway)
-"bJU" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/gateway)
-"bJV" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/gateway)
-"bJW" = (/obj/structure/table,/obj/item/weapon/folder/yellow,/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/item/weapon/storage/firstaid/regular{pixel_x = 3;pixel_y = -3},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/gateway)
-"bJX" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/turf/open/floor/plating,/area/gateway)
-"bJY" = (/obj/machinery/gateway{dir = 9},/turf/open/floor/plasteel/vault{dir = 1},/area/gateway)
-"bJZ" = (/obj/machinery/gateway{dir = 1},/obj/machinery/status_display{density = 0;layer = 4;pixel_x = 0;pixel_y = 32},/turf/open/floor/plasteel/vault{dir = 8},/area/gateway)
-"bKa" = (/obj/machinery/gateway{dir = 5},/turf/open/floor/plasteel/vault{dir = 4},/area/gateway)
-"bKb" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/maintcentral{name = "Central Maintenance"})
-"bKc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/hallway/primary/central)
-"bKd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/hallway/primary/central)
-"bKe" = (/turf/closed/wall,/area/crew_quarters/kitchen)
-"bKf" = (/obj/machinery/door/poddoor/shutters/preopen{id = "kitchen";name = "Serving Hatch"},/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/kitchen)
-"bKg" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters/preopen{id = "kitchen";name = "Serving Hatch"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/weapon/reagent_containers/food/snacks/pie/cream,/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/kitchen)
-"bKh" = (/obj/machinery/computer/security/telescreen/entertainment,/turf/closed/wall,/area/crew_quarters/kitchen)
-"bKi" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters/preopen{id = "kitchen";name = "Serving Hatch"},/obj/item/weapon/reagent_containers/food/condiment/saltshaker{pixel_x = -3;pixel_y = 0},/obj/item/weapon/reagent_containers/food/condiment/peppermill{pixel_x = 3},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/kitchen)
-"bKj" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters/preopen{id = "kitchen";name = "Serving Hatch"},/obj/item/weapon/storage/fancy/donut_box,/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/kitchen)
-"bKk" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Kitchen";req_access_txt = "28"},/turf/open/floor/plasteel/cafeteria{dir = 2},/area/crew_quarters/kitchen)
-"bKl" = (/obj/machinery/vending/snack,/obj/machinery/newscaster{pixel_y = -29},/turf/open/floor/carpet,/area/crew_quarters/bar)
-"bKm" = (/obj/machinery/vending/coffee,/turf/open/floor/carpet,/area/crew_quarters/bar)
-"bKn" = (/obj/machinery/camera{c_tag = "Club - Aft";dir = 1;network = list("SS13")},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 0;pixel_y = -29},/obj/item/clothing/mask/cigarette/pipe,/obj/structure/table/wood,/turf/open/floor/carpet,/area/crew_quarters/bar)
-"bKo" = (/obj/machinery/vending/cigarette{pixel_y = 1},/turf/open/floor/carpet,/area/crew_quarters/bar)
-"bKp" = (/obj/machinery/vending/cola,/turf/open/floor/carpet,/area/crew_quarters/bar)
-"bKq" = (/obj/machinery/door/airlock{name = "Theatre Backstage";req_access_txt = "46"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/crew_quarters/theatre)
-"bKr" = (/turf/closed/wall/r_wall,/area/maintenance/atmos_control{name = "Telecoms Storage"})
-"bKs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/maintenance/atmos_control{name = "Telecoms Storage"})
-"bKt" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/engineering{name = "Telecoms Storage";req_access_txt = "61"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/maintenance/atmos_control{name = "Telecoms Storage"})
-"bKu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/closed/wall/r_wall,/area/atmos)
-"bKv" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4;name = "External Waste Ports to Filter";on = 1},/obj/machinery/airalarm{dir = 4;pixel_x = -23;pixel_y = 0},/turf/open/floor/plasteel/caution{dir = 8},/area/atmos)
-"bKw" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 4},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/atmos)
-"bKx" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 2},/turf/open/floor/plasteel,/area/atmos)
-"bKy" = (/obj/item/device/radio/beacon,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8;initialize_directions = 11},/turf/open/floor/plasteel,/area/atmos)
-"bKz" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 1;scrub_Toxins = 1},/turf/open/floor/plasteel,/area/atmos)
-"bKA" = (/obj/machinery/atmospherics/components/binary/pump{dir = 0;name = "Air to Ports";on = 0},/turf/open/floor/plasteel,/area/atmos)
-"bKB" = (/obj/machinery/atmospherics/components/binary/pump{dir = 0;name = "Mix to Ports";on = 0},/turf/open/floor/plasteel,/area/atmos)
-"bKC" = (/obj/machinery/atmospherics/components/binary/pump{dir = 0;name = "Pure to Ports";on = 0},/turf/open/floor/plasteel,/area/atmos)
-"bKD" = (/obj/effect/landmark/start{name = "Atmospheric Technician"},/turf/open/floor/plasteel,/area/atmos)
-"bKE" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/open/floor/plasteel,/area/atmos)
-"bKF" = (/obj/machinery/computer/atmos_control/tank{frequency = 1441;input_tag = "n2o_in";name = "Nitrous Oxide Supply Control";output_tag = "n2o_out";sensors = list("n2o_sensor" = "Tank")},/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/turf/open/floor/plasteel/escape{dir = 4},/area/atmos)
-"bKG" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/open/floor/plasteel/black,/area/atmos)
-"bKH" = (/obj/machinery/air_sensor{frequency = 1441;id_tag = "n2o_sensor"},/turf/open/floor/engine/n2o,/area/atmos)
-"bKI" = (/obj/machinery/portable_atmospherics/canister/nitrous_oxide{valve_open = 1},/turf/open/floor/engine/n2o,/area/atmos)
-"bKJ" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/engine/n2o,/area/atmos)
-"bKK" = (/obj/structure/grille,/obj/structure/lattice,/obj/structure/lattice,/turf/closed/wall/r_wall,/area/space)
-"bKL" = (/obj/machinery/telecomms/processor/preset_two,/turf/open/floor/bluegrid{name = "Mainframe Base";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server)
-"bKM" = (/obj/structure/table/glass,/obj/item/weapon/folder{pixel_y = 2},/obj/item/weapon/folder{pixel_y = 2},/obj/item/weapon/pen,/turf/open/floor/plasteel/circuit/gcircuit{name = "Mainframe Base";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server)
-"bKN" = (/obj/machinery/telecomms/bus/preset_four,/turf/open/floor/bluegrid{name = "Mainframe Base";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server)
-"bKO" = (/obj/machinery/telecomms/hub/preset,/turf/open/floor/plasteel/circuit/gcircuit{name = "Mainframe Base";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server)
-"bKP" = (/obj/machinery/telecomms/processor/preset_four,/turf/open/floor/bluegrid{name = "Mainframe Base";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server)
-"bKQ" = (/obj/structure/lattice,/obj/structure/window/reinforced{dir = 8},/turf/open/space,/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"bKR" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/light/small{dir = 8},/obj/machinery/door/window{base_state = "right";dir = 2;icon_state = "right";name = "MiniSat Walkway Access";req_access_txt = "0"},/obj/machinery/camera{c_tag = "MiniSat Exterior - Aft Starboard";dir = 4;network = list("MiniSat")},/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel/black,/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"bKS" = (/obj/item/weapon/twohanded/required/kirbyplants{icon_state = "plant-06";level = 4.1},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"bKT" = (/obj/structure/chair,/obj/effect/landmark/start{name = "Assistant"},/obj/machinery/light{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"bKU" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"bKV" = (/obj/machinery/light{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"bKW" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/firealarm{dir = 4;pixel_x = 24},/obj/machinery/camera{c_tag = "Arrivals - Aft Arm";dir = 8;network = list("SS13")},/turf/open/floor/plasteel/arrival{dir = 4},/area/hallway/secondary/entry{name = "Arrivals"})
-"bKX" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating{icon_state = "platingdmg2"},/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bKY" = (/obj/machinery/power/apc{dir = 8;name = "Vacant Office APC";pixel_x = -25},/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/turf/open/floor/wood,/area/security/vacantoffice)
-"bKZ" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/wood,/area/security/vacantoffice)
-"bLa" = (/obj/structure/light_construct{dir = 4},/turf/open/floor/wood,/area/security/vacantoffice)
-"bLb" = (/obj/structure/table,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bLc" = (/obj/structure/closet/crate{icon_state = "crateopen";opened = 1},/obj/effect/spawner/lootdrop/maintenance{lootcount = 3;name = "3maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bLd" = (/obj/structure/closet,/obj/item/clothing/shoes/jackboots,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bLe" = (/obj/machinery/vending/autodrobe{req_access_txt = "0"},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bLf" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/effect/landmark/costume,/obj/effect/landmark/costume,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bLg" = (/obj/effect/decal/cleanable/cobweb/cobweb2,/obj/structure/rack{dir = 8;layer = 2.9},/obj/effect/landmark/costume,/obj/effect/landmark/costume,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bLh" = (/obj/structure/bookcase/random/religion,/turf/open/floor/wood,/area/library)
-"bLi" = (/obj/structure/bookcase/random/adult,/turf/open/floor/wood,/area/library)
-"bLj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/effect/landmark{name = "lightsout"},/turf/open/floor/carpet,/area/library)
-"bLk" = (/obj/structure/bookcase/random/reference,/turf/open/floor/wood,/area/library)
-"bLl" = (/obj/structure/table/wood,/obj/item/weapon/pen/red,/obj/item/weapon/pen/blue{pixel_x = 5;pixel_y = 5},/turf/open/floor/wood,/area/library)
-"bLm" = (/obj/item/stack/sheet/rglass{amount = 50},/obj/item/stack/sheet/rglass{amount = 50},/obj/item/stack/rods{amount = 50},/obj/item/stack/rods{amount = 50},/obj/structure/table,/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2;pixel_y = -1},/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2;pixel_y = -1},/obj/machinery/power/apc{dir = 8;name = "E.V.A. Storage APC";pixel_x = -24},/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/turf/open/floor/plasteel/vault{dir = 8},/area/ai_monitored/storage/eva{name = "E.V.A. Storage"})
-"bLn" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva{name = "E.V.A. Storage"})
-"bLo" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva{name = "E.V.A. Storage"})
-"bLp" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva{name = "E.V.A. Storage"})
-"bLq" = (/obj/machinery/door/window/northleft{dir = 8;name = "Magboot Storage";pixel_x = -1;pixel_y = 0;req_access_txt = "19"},/obj/structure/window/reinforced{dir = 1;pixel_y = 1},/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/clothing/shoes/magboots{pixel_x = -4;pixel_y = 3},/obj/item/clothing/shoes/magboots{pixel_x = 0;pixel_y = 0},/obj/item/clothing/shoes/magboots{pixel_x = 4;pixel_y = -3},/turf/open/floor/plasteel/vault{dir = 8},/area/ai_monitored/storage/eva{name = "E.V.A. Storage"})
-"bLr" = (/obj/machinery/teleport/hub,/turf/open/floor/plating,/area/teleporter{name = "\improper Teleporter Room"})
-"bLs" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 1;scrub_Toxins = 1},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/teleporter{name = "\improper Teleporter Room"})
-"bLt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/teleporter{name = "\improper Teleporter Room"})
-"bLu" = (/obj/machinery/door/window/northleft{dir = 8;name = "Disposals Chute";pixel_x = -1;pixel_y = 0;req_access_txt = "0"},/obj/machinery/disposal/deliveryChute{dir = 8;name = "disposals chute";pixel_x = 5},/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel/vault{dir = 1},/area/teleporter{name = "\improper Teleporter Room"})
-"bLv" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/obj/machinery/door/poddoor/shutters/preopen{id = "corporate_privacy";name = "showroom shutters"},/turf/open/floor/plating,/area/assembly/showroom{name = "\improper Corporate Showroom"})
-"bLw" = (/turf/closed/wall/r_wall,/area/assembly/showroom{name = "\improper Corporate Showroom"})
-"bLx" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Corporate Showroom";req_access_txt = "19"},/turf/open/floor/wood,/area/assembly/showroom{name = "\improper Corporate Showroom"})
-"bLy" = (/obj/structure/closet/secure_closet/medical1{pixel_x = 0},/obj/machinery/airalarm{dir = 4;icon_state = "alarm0";pixel_x = -22},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/gateway)
-"bLz" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/gateway)
-"bLA" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/gateway)
-"bLB" = (/obj/structure/table,/obj/item/weapon/paper/pamphlet,/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/gateway)
-"bLC" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow,/turf/open/floor/plating,/area/gateway)
-"bLD" = (/obj/machinery/gateway{dir = 8},/turf/open/floor/plasteel/vault{dir = 8},/area/gateway)
-"bLE" = (/obj/machinery/gateway/centerstation,/turf/open/floor/plasteel/black,/area/gateway)
-"bLF" = (/obj/machinery/gateway{dir = 4},/turf/open/floor/plasteel/vault{dir = 8},/area/gateway)
-"bLG" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/item/weapon/cigbutt,/obj/effect/landmark{name = "blobstart"},/turf/open/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"})
-"bLH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/status_display{density = 0;layer = 4;pixel_x = -32;pixel_y = 0},/obj/machinery/camera{c_tag = "Central Primary Hallway - Starboard - Kitchen";dir = 4;network = list("SS13")},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/hallway/primary/central)
-"bLI" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -3;pixel_y = 6},/obj/machinery/button/door{id = "kitchenwindow";name = "Window Shutter Control";pixel_x = -26;pixel_y = 0;req_access_txt = "28"},/turf/open/floor/plasteel/cafeteria{dir = 2},/area/crew_quarters/kitchen)
-"bLJ" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -3;pixel_y = 6},/obj/machinery/button/door{id = "kitchen";name = "Kitchen Shutters Control";pixel_x = -4;pixel_y = 26;req_access_txt = "28"},/obj/machinery/light_switch{pixel_x = 6;pixel_y = 26},/turf/open/floor/plasteel/cafeteria{dir = 2},/area/crew_quarters/kitchen)
-"bLK" = (/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/kitchen)
-"bLL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/kitchen)
-"bLM" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/kitchen)
-"bLN" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/kitchen)
-"bLO" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/structure/sink/kitchen{pixel_y = 28},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/kitchen)
-"bLP" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/kitchen)
-"bLQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light_switch{pixel_x = -26;pixel_y = 0},/turf/open/floor/wood,/area/crew_quarters/theatre)
-"bLR" = (/obj/structure/dresser,/obj/machinery/newscaster{pixel_x = 0;pixel_y = 32},/turf/open/floor/wood,/area/crew_quarters/theatre)
-"bLS" = (/obj/machinery/vending/autodrobe,/turf/open/floor/wood,/area/crew_quarters/theatre)
-"bLT" = (/obj/structure/sign/securearea,/turf/closed/wall/r_wall,/area/bridge)
-"bLU" = (/obj/structure/rack,/obj/item/weapon/circuitboard/machine/telecomms/bus,/obj/item/weapon/circuitboard/machine/telecomms/broadcaster,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/obj/machinery/camera{c_tag = "Telecoms - Storage";dir = 4;network = list("SS13")},/turf/open/floor/plasteel/black,/area/maintenance/atmos_control{name = "Telecoms Storage"})
-"bLV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/holopad,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/black,/area/maintenance/atmos_control{name = "Telecoms Storage"})
-"bLW" = (/obj/structure/table,/obj/item/weapon/stock_parts/subspace/analyzer,/obj/item/weapon/stock_parts/subspace/analyzer,/obj/item/weapon/stock_parts/subspace/analyzer,/obj/machinery/light_switch{pixel_x = 0;pixel_y = 26},/turf/open/floor/plasteel/black,/area/maintenance/atmos_control{name = "Telecoms Storage"})
-"bLX" = (/obj/structure/closet,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/starboard)
-"bLY" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/open/floor/plating,/area/maintenance/starboard)
-"bLZ" = (/obj/structure/closet/cardboard,/turf/open/floor/plating,/area/maintenance/starboard)
-"bMa" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/pump,/turf/open/floor/plasteel/barber{dir = 8},/area/atmos)
-"bMb" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 1;initialize_directions = 11},/turf/open/floor/plasteel/arrival{dir = 8},/area/atmos)
-"bMc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plasteel,/area/atmos)
-"bMd" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 9},/turf/open/floor/plasteel,/area/atmos)
-"bMe" = (/obj/structure/reagent_dispensers/fueltank,/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 0;pixel_y = -26},/obj/machinery/camera{c_tag = "Atmospherics - Central";dir = 1;network = list("SS13")},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/atmos)
-"bMf" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/clothing/suit/hazardvest,/obj/item/clothing/suit/hazardvest,/obj/item/clothing/suit/hazardvest,/obj/item/clothing/suit/hazardvest,/obj/item/clothing/gloves/color/black,/obj/item/clothing/gloves/color/black,/obj/item/clothing/gloves/color/black,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/turf/open/floor/plasteel,/area/atmos)
-"bMg" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/turf/open/floor/plasteel,/area/atmos)
-"bMh" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/obj/machinery/meter,/turf/open/floor/plasteel,/area/atmos)
-"bMi" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4;initialize_directions = 11},/turf/open/floor/plasteel,/area/atmos)
-"bMj" = (/obj/machinery/holopad,/turf/open/floor/plasteel,/area/atmos)
-"bMk" = (/obj/machinery/atmospherics/components/trinary/filter{dir = 1;filter_type = "n2o";on = 1},/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/obj/structure/window/reinforced,/turf/open/floor/plasteel/escape{dir = 6},/area/atmos)
-"bMl" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/open/floor/plasteel/black,/area/atmos)
-"bMm" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8;frequency = 1441;id = "n2o_in";pixel_y = 1},/turf/open/floor/engine/n2o,/area/atmos)
-"bMn" = (/obj/machinery/camera{c_tag = "Atmospherics Tank - N2O";dir = 8;network = list("SS13");pixel_x = 0;pixel_y = 0},/turf/open/floor/engine/n2o,/area/atmos)
-"bMo" = (/obj/machinery/airalarm/server{dir = 4;pixel_x = -22;pixel_y = 0},/obj/machinery/light/small{dir = 8},/obj/machinery/camera{c_tag = "Telecoms - Server Room - Aft-Port";dir = 4;network = list("SS13","tcomm")},/turf/open/floor/plasteel/black{name = "Mainframe Floor";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server)
-"bMp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel/black{name = "Mainframe Floor";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server)
-"bMq" = (/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/black{name = "Mainframe Floor";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server)
-"bMr" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/black{name = "Mainframe Floor";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server)
-"bMs" = (/obj/machinery/power/apc{cell_type = 5000;dir = 4;name = "Telecoms Server Room APC";pixel_x = 25;pixel_y = 0},/obj/machinery/light/small{dir = 4},/obj/machinery/camera{c_tag = "Telecoms - Server Room - Aft-Starboard";dir = 8;network = list("SS13","tcomm")},/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/turf/open/floor/plasteel/black{name = "Mainframe Floor";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server)
-"bMt" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel/black,/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"bMu" = (/obj/machinery/camera{c_tag = "Arrivals - Aft Arm - Far";dir = 1;network = list("SS13")},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"bMv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"bMw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 0;pixel_y = -25},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"bMx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"bMy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/blue/corner{dir = 2},/area/hallway/secondary/entry{name = "Arrivals"})
-"bMz" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel/arrival{dir = 2},/area/hallway/secondary/entry{name = "Arrivals"})
-"bMA" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/sign/map/left{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";icon_state = "map-left-MS";pixel_y = -32},/turf/open/floor/plasteel/arrival{dir = 2},/area/hallway/secondary/entry{name = "Arrivals"})
-"bMB" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/sign/map/right{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";icon_state = "map-right-MS";pixel_y = -32},/obj/item/weapon/twohanded/required/kirbyplants{icon_state = "plant-03";layer = 4.1},/turf/open/floor/plasteel/arrival{dir = 6},/area/hallway/secondary/entry{name = "Arrivals"})
-"bMC" = (/obj/structure/chair/office/dark,/turf/open/floor/wood,/area/security/vacantoffice)
-"bMD" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin{pixel_x = 1;pixel_y = 9},/turf/open/floor/wood,/area/security/vacantoffice)
-"bME" = (/obj/structure/mirror{pixel_x = -28},/obj/item/weapon/lipstick/black,/obj/item/weapon/lipstick/jade{pixel_x = 2;pixel_y = 2},/obj/item/weapon/lipstick/purple{pixel_x = -2;pixel_y = -2},/obj/structure/table,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bMF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bMG" = (/obj/structure/closet/crate{icon_state = "crateopen";opened = 1},/obj/item/weapon/rack_parts,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bMH" = (/obj/machinery/light/small,/obj/machinery/power/apc{dir = 8;name = "Library APC";pixel_x = -25},/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/obj/effect/decal/cleanable/cobweb,/turf/open/floor/wood,/area/library)
-"bMI" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/wood,/area/library)
-"bMJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/carpet,/area/library)
-"bMK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/carpet,/area/library)
-"bML" = (/obj/machinery/light/small,/obj/machinery/airalarm{dir = 1;pixel_y = -22},/turf/open/floor/wood,/area/library)
-"bMM" = (/obj/item/weapon/folder,/obj/item/weapon/folder,/obj/machinery/camera/autoname{dir = 1;network = list("SS13")},/obj/structure/table/wood,/obj/item/device/taperecorder,/obj/item/device/tape,/turf/open/floor/wood,/area/library)
-"bMN" = (/obj/machinery/light/small,/obj/machinery/libraryscanner,/turf/open/floor/wood,/area/library)
-"bMO" = (/obj/machinery/newscaster{pixel_x = -1;pixel_y = -29},/turf/open/floor/wood,/area/library)
-"bMP" = (/obj/structure/chair/stool/bar,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/bar,/area/crew_quarters/bar)
-"bMQ" = (/obj/structure/easel,/obj/item/weapon/canvas/twentythreeXtwentythree,/obj/item/weapon/canvas/twentythreeXtwentythree,/turf/open/floor/wood,/area/library)
-"bMR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/neutral/corner{dir = 4},/area/hallway/primary/central)
-"bMS" = (/obj/structure/closet/crate/rcd{pixel_y = 4},/obj/machinery/door/window/northleft{dir = 4;name = "RCD Storage";pixel_x = 1;pixel_y = 0;req_access_txt = "19"},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1;pixel_y = 1},/turf/open/floor/plasteel/vault{dir = 8},/area/ai_monitored/storage/eva{name = "E.V.A. Storage"})
-"bMT" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva{name = "E.V.A. Storage"})
-"bMU" = (/obj/structure/tank_dispenser/oxygen{layer = 2.9;pixel_x = -1;pixel_y = 2},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva{name = "E.V.A. Storage"})
-"bMV" = (/obj/machinery/camera/motion{c_tag = "E.V.A. Storage";dir = 8},/obj/machinery/requests_console{department = "EVA";pixel_x = 32;pixel_y = 0},/obj/machinery/light{dir = 4;icon_state = "tube1"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva{name = "E.V.A. Storage"})
-"bMW" = (/obj/machinery/teleport/station,/obj/machinery/firealarm{dir = 8;pixel_x = -24;pixel_y = 0},/turf/open/floor/plating,/area/teleporter{name = "\improper Teleporter Room"})
-"bMX" = (/obj/machinery/bluespace_beacon,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/teleporter{name = "\improper Teleporter Room"})
-"bMY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/teleporter{name = "\improper Teleporter Room"})
-"bMZ" = (/obj/machinery/camera{c_tag = "Teleporter Room";dir = 8;network = list("SS13")},/obj/structure/rack,/obj/structure/window/reinforced{dir = 1;layer = 2.9},/obj/item/clothing/suit/hazardvest,/obj/item/clothing/suit/hazardvest,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/turf/open/floor/plasteel/vault{dir = 1},/area/teleporter{name = "\improper Teleporter Room"})
-"bNa" = (/obj/structure/window/reinforced,/obj/structure/showcase{desc = "A stand with an retired construction mech bolted to it. The clamps are rated at 9300PSI. It seems to be falling apart.";icon = 'icons/mecha/mecha.dmi';icon_state = "firefighter";name = "construction mech exhibit"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/effect/decal/cleanable/cobweb,/turf/open/floor/carpet,/area/assembly/showroom{name = "\improper Corporate Showroom"})
-"bNb" = (/obj/structure/sign/atmosplaque{desc = "A guide to the exhibit, detailing the constructive and destructive applications of modern repair drones, as well as the development of the uncorruptable cyborg servants of tomorrow, available today.";icon_state = "kiddieplaque";name = "\improper 'Perfect Drone' sign";pixel_x = 0;pixel_y = 32},/obj/machinery/droneDispenser,/obj/machinery/door/window/southleft,/turf/open/floor/carpet,/area/assembly/showroom{name = "\improper Corporate Showroom"})
-"bNc" = (/obj/structure/showcase{desc = "A stand with an empty old NanoTrasen Corporation combat mech bolted to it. It is described as the premier unit used to defend corporate interests and employees.";icon = 'icons/mecha/mecha.dmi';icon_state = "marauder";name = "combat mech exhibit"},/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/carpet,/area/assembly/showroom{name = "\improper Corporate Showroom"})
-"bNd" = (/obj/item/weapon/tank/internals/air,/obj/item/weapon/tank/internals/air,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bNe" = (/obj/structure/table/wood,/obj/item/weapon/phone{desc = "Supposedly a direct line to NanoTrasen Central Command. It's not even plugged in.";pixel_x = -3;pixel_y = 3},/obj/item/weapon/cigbutt/cigarbutt{pixel_x = 5;pixel_y = -1},/obj/machinery/light{dir = 1},/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 0;pixel_y = 21},/turf/open/floor/wood,/area/assembly/showroom{name = "\improper Corporate Showroom"})
-"bNf" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/wood,/area/assembly/showroom{name = "\improper Corporate Showroom"})
-"bNg" = (/obj/machinery/light_switch{pixel_x = 0;pixel_y = 24},/obj/machinery/light/small{dir = 1},/obj/structure/table/wood,/obj/item/clothing/shoes/laceup,/obj/item/clothing/under/suit_jacket/really_black,/obj/item/clothing/glasses/sunglasses,/obj/machinery/camera{c_tag = "Corporate Showroom";dir = 2;network = list("SS13")},/turf/open/floor/wood,/area/assembly/showroom{name = "\improper Corporate Showroom"})
-"bNh" = (/obj/structure/table/wood,/obj/item/weapon/folder/red,/obj/item/weapon/pen/red,/obj/machinery/newscaster{pixel_x = 30;pixel_y = 2},/turf/open/floor/wood,/area/security/vacantoffice)
-"bNi" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/window/reinforced,/obj/structure/showcase{desc = "Signs describe how cloning pods like these ensure that every NanoTrasen employee can carry out their contracts in full, even in the unlikely event of their catastrophic death. Hopefully they aren't all made of cardboard, like this one.";icon = 'icons/obj/cloning.dmi';icon_state = "pod_0";layer = 4;name = "cloning pod exhibit";pixel_x = 2;pixel_y = 5},/turf/open/floor/carpet,/area/assembly/showroom{name = "\improper Corporate Showroom"})
-"bNj" = (/obj/structure/showcase{desc = "A stand with a model of the perfect Nanotrasen Employee bolted to it. Signs indicate it is robustly genetically engineered, as well as being ruthlessly loyal.";name = "'Perfect Man' employee exhibit"},/obj/structure/sign/atmosplaque{desc = "A guide to the exhibit, explaining how recent developments in loyalty implant and cloning technologies by NanoTrasen Corporation have led to the development and the effective immortality of the 'perfect man', the loyal Nanotrasen Employee.";icon_state = "kiddieplaque";name = "\improper 'Perfect Man' sign";pixel_x = 0;pixel_y = 32},/obj/structure/window/reinforced,/turf/open/floor/carpet,/area/assembly/showroom{name = "\improper Corporate Showroom"})
-"bNk" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/window/reinforced,/obj/effect/decal/cleanable/cobweb/cobweb2,/obj/structure/showcase{desc = "A flimsy model of a standard NanoTrasen automated loyalty implant machine. With secure positioning harnesses and a robotic surgical injector, brain damage and other serious medical anomalies are now up to 60% less likely!";icon = 'icons/obj/machines/implantchair.dmi';icon_state = "implantchair";layer = 2.7;name = "NanoTrasen automated loyalty implanter exhibit";pixel_x = 0;pixel_y = 4},/turf/open/floor/carpet,/area/assembly/showroom{name = "\improper Corporate Showroom"})
-"bNl" = (/turf/closed/wall,/area/gateway)
-"bNm" = (/obj/structure/bed/roller,/obj/machinery/vending/wallmed{pixel_x = -28;pixel_y = 0},/obj/machinery/camera{c_tag = "Gateway - Atrium";dir = 4;network = list("SS13")},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/gateway)
-"bNn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/gateway)
-"bNo" = (/obj/structure/tank_dispenser/oxygen{pixel_x = -1;pixel_y = 2},/obj/machinery/light{dir = 4},/obj/item/device/radio/intercom{dir = 0;name = "Station Intercom (General)";pixel_x = 29;pixel_y = 0},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/gateway)
-"bNp" = (/obj/machinery/gateway{dir = 10},/turf/open/floor/plasteel/vault{dir = 4},/area/gateway)
-"bNq" = (/obj/machinery/gateway,/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/turf/open/floor/plasteel/vault{dir = 8},/area/gateway)
-"bNr" = (/obj/machinery/gateway{dir = 6},/turf/open/floor/plasteel/vault{dir = 1},/area/gateway)
-"bNs" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"})
-"bNt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/device/radio/intercom{dir = 8;name = "Station Intercom (General)";pixel_x = -28},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/hallway/primary/central)
-"bNu" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/hallway/primary/central)
-"bNv" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/poddoor/preopen{id = "kitchenwindow";name = "kitchen shutters"},/turf/open/floor/plating,/area/crew_quarters/kitchen)
-"bNw" = (/obj/structure/rack,/obj/item/weapon/book/manual/chef_recipes{pixel_x = 2;pixel_y = 6},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/stack/packageWrap,/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/kitchen)
-"bNx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/kitchen)
-"bNy" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/kitchen)
-"bNz" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8;initialize_directions = 11},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/kitchen)
-"bNA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/kitchen)
-"bNB" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/kitchen)
-"bNC" = (/obj/machinery/firealarm{dir = 4;pixel_x = 24},/obj/machinery/vending/dinnerware,/turf/open/floor/plasteel/cafeteria{dir = 2},/area/crew_quarters/kitchen)
-"bND" = (/obj/structure/extinguisher_cabinet{pixel_x = -27;pixel_y = 0},/obj/structure/closet/secure_closet/freezer/meat,/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen)
-"bNE" = (/obj/structure/sink/kitchen{desc = "A sink used for washing one's hands and face. It looks rusty and home-made";name = "old sink";pixel_y = 28},/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen)
-"bNF" = (/obj/machinery/gibber,/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen)
-"bNG" = (/obj/structure/kitchenspike,/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen)
-"bNH" = (/obj/structure/table/wood,/obj/item/weapon/lipstick{pixel_y = 5},/obj/machinery/camera{c_tag = "Theatre - Stage";dir = 8;network = list("SS13")},/obj/machinery/light/small{dir = 4},/obj/item/device/instrument/guitar,/obj/structure/sign/poster{pixel_x = 32;pixel_y = 0},/turf/open/floor/wood,/area/crew_quarters/theatre)
-"bNI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/wood,/area/crew_quarters/theatre)
-"bNJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/landmark/start{name = "Mime"},/turf/open/floor/wood,/area/crew_quarters/theatre)
-"bNK" = (/obj/item/weapon/paper_bin{pixel_x = -2;pixel_y = 6},/obj/structure/table/wood,/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/turf/open/floor/wood,/area/security/vacantoffice)
-"bNL" = (/obj/structure/table,/obj/item/weapon/stock_parts/subspace/transmitter,/obj/item/weapon/stock_parts/subspace/transmitter,/obj/item/weapon/stock_parts/subspace/amplifier,/obj/item/weapon/stock_parts/subspace/amplifier,/obj/item/weapon/stock_parts/subspace/amplifier,/obj/machinery/light/small{dir = 8},/obj/machinery/power/apc{dir = 8;name = "Telecoms Storage APC";pixel_x = -28;pixel_y = 0},/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/turf/open/floor/plasteel/black,/area/maintenance/atmos_control{name = "Telecoms Storage"})
-"bNM" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel/black,/area/maintenance/atmos_control{name = "Telecoms Storage"})
-"bNN" = (/obj/structure/table,/obj/item/weapon/stock_parts/subspace/treatment,/obj/item/weapon/stock_parts/subspace/treatment,/obj/item/weapon/stock_parts/subspace/treatment,/obj/machinery/light/small{dir = 4},/obj/machinery/firealarm{dir = 4;pixel_x = 24},/turf/open/floor/plasteel/black,/area/maintenance/atmos_control{name = "Telecoms Storage"})
-"bNO" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/turf/open/floor/plating,/area/maintenance/starboard)
-"bNP" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 9},/turf/open/floor/plasteel/arrival{dir = 8},/area/atmos)
-"bNQ" = (/obj/structure/extinguisher_cabinet{pixel_x = 27;pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/atmos)
-"bNR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/atmos)
-"bNS" = (/obj/structure/extinguisher_cabinet{pixel_x = -27;pixel_y = 0},/obj/machinery/atmospherics/components/binary/pump{dir = 0;name = "Port Mix to West Ports";on = 0},/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel,/area/atmos)
-"bNT" = (/obj/effect/landmark{name = "lightsout"},/turf/open/floor/plasteel,/area/atmos)
-"bNU" = (/obj/machinery/atmospherics/components/binary/pump{dir = 0;name = "Port Mix to East Ports";on = 0},/obj/item/weapon/crowbar,/turf/open/floor/plasteel,/area/atmos)
-"bNV" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/door/window/northleft{dir = 8;icon_state = "left";name = "Inner Pipe Access";req_access_txt = "24"},/turf/open/floor/plasteel/black,/area/atmos)
-"bNW" = (/obj/machinery/light/small{dir = 4},/obj/machinery/door/window{dir = 2;name = "MiniSat Walkway Access";req_access_txt = "0"},/obj/machinery/camera{c_tag = "MiniSat Exterior - Aft Port";dir = 8;network = list("MiniSat")},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel/black,/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"bNX" = (/obj/machinery/telecomms/server/presets/common,/turf/open/floor/bluegrid{name = "Mainframe Base";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server)
-"bNY" = (/obj/machinery/telecomms/server/presets/engineering,/turf/open/floor/bluegrid{name = "Mainframe Base";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server)
-"bNZ" = (/obj/machinery/light/small,/obj/machinery/camera{c_tag = "Telecoms - Server Room - Aft";dir = 1;network = list("SS13","tcomm")},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/ntnet_relay,/turf/open/floor/plasteel/black{name = "Mainframe Floor";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server)
-"bOa" = (/obj/machinery/telecomms/server/presets/medical,/turf/open/floor/bluegrid{name = "Mainframe Base";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server)
-"bOb" = (/obj/machinery/telecomms/server/presets/science,/turf/open/floor/bluegrid{name = "Mainframe Base";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server)
-"bOc" = (/obj/machinery/telecomms/broadcaster/preset_left,/turf/open/floor/bluegrid{name = "Mainframe Base";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server)
-"bOd" = (/obj/machinery/door/airlock/external{name = "Auxiliary Airlock"},/turf/open/floor/plating,/area/hallway/secondary/entry{name = "Arrivals"})
-"bOe" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "0";req_one_access_txt = "12;27"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bOf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bOg" = (/obj/structure/table/wood,/obj/item/weapon/folder/white{pixel_x = 4;pixel_y = -3},/turf/open/floor/wood,/area/security/vacantoffice)
-"bOh" = (/obj/item/toy/cards/deck,/obj/structure/table/wood,/turf/open/floor/wood,/area/security/vacantoffice)
-"bOi" = (/obj/structure/table,/obj/item/clothing/mask/cigarette/pipe,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bOj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bOk" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/centcom{name = "Quiet Room";opacity = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/library)
-"bOl" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/centcom{name = "Quiet Room";opacity = 1},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/wood,/area/library)
-"bOm" = (/obj/machinery/door/morgue{name = "Private Study";req_access_txt = "37"},/turf/open/floor/engine/cult,/area/library)
-"bOn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/neutral/corner{dir = 4},/area/hallway/primary/central)
-"bOo" = (/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/structure/table,/obj/item/stack/sheet/plasteel{amount = 10},/obj/machinery/airalarm{dir = 4;icon_state = "alarm0";pixel_x = -22},/obj/item/stack/sheet/glass{amount = 50},/obj/item/stack/sheet/glass{amount = 50},/obj/item/weapon/crowbar,/obj/item/weapon/wrench,/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1;pixel_y = -1},/turf/open/floor/plasteel/vault{dir = 8},/area/ai_monitored/storage/eva{name = "E.V.A. Storage"})
-"bOp" = (/obj/machinery/holopad,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva{name = "E.V.A. Storage"})
-"bOq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bOr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva{name = "E.V.A. Storage"})
-"bOs" = (/obj/machinery/door/window/northleft{dir = 8;name = "Jetpack Storage";pixel_x = -1;pixel_y = 0;req_access_txt = "19"},/obj/structure/window/reinforced,/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/tank/jetpack/carbondioxide{pixel_x = 4;pixel_y = -1},/obj/item/weapon/tank/jetpack/carbondioxide{pixel_x = 0;pixel_y = 0},/obj/item/weapon/tank/jetpack/carbondioxide{pixel_x = -4;pixel_y = 1},/turf/open/floor/plasteel/vault{dir = 8},/area/ai_monitored/storage/eva{name = "E.V.A. Storage"})
-"bOt" = (/obj/machinery/computer/teleporter,/turf/open/floor/plating,/area/teleporter{name = "\improper Teleporter Room"})
-"bOu" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/teleporter{name = "\improper Teleporter Room"})
-"bOv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bOw" = (/turf/closed/wall,/area/teleporter{name = "\improper Teleporter Room"})
-"bOx" = (/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/effect/decal/cleanable/dirt,/obj/machinery/light/small{dir = 8},/turf/open/floor/wood,/area/assembly/showroom{name = "\improper Corporate Showroom"})
-"bOy" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/effect/decal/cleanable/oil,/turf/open/floor/wood,/area/assembly/showroom{name = "\improper Corporate Showroom"})
-"bOz" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/wood,/area/assembly/showroom{name = "\improper Corporate Showroom"})
-"bOA" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/wood,/area/assembly/showroom{name = "\improper Corporate Showroom"})
-"bOB" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/wood,/area/assembly/showroom{name = "\improper Corporate Showroom"})
-"bOC" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/wood,/area/assembly/showroom{name = "\improper Corporate Showroom"})
-"bOD" = (/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/wood{icon_state = "wood-broken6"},/area/assembly/showroom{name = "\improper Corporate Showroom"})
-"bOE" = (/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/wood,/area/assembly/showroom{name = "\improper Corporate Showroom"})
-"bOF" = (/obj/machinery/power/apc{cell_type = 5000;dir = 4;name = "Nanotrasen Corporate Showroom APC";pixel_x = 28;pixel_y = 0},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/obj/item/weapon/cigbutt,/obj/machinery/light/small{dir = 4},/turf/open/floor/wood,/area/assembly/showroom{name = "\improper Corporate Showroom"})
-"bOG" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/stack/medical/ointment,/obj/item/stack/medical/bruise_pack,/obj/item/weapon/reagent_containers/syringe/charcoal,/obj/item/weapon/reagent_containers/syringe/epinephrine{pixel_x = -1;pixel_y = 2},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/gateway)
-"bOH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/corner{dir = 8},/turf/open/floor/plasteel,/area/gateway)
-"bOI" = (/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/gateway)
-"bOJ" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/turf/open/floor/plating,/area/gateway)
-"bOK" = (/turf/open/floor/plasteel/vault,/area/gateway)
-"bOL" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/vault,/area/gateway)
-"bOM" = (/obj/machinery/light{icon_state = "tube1";dir = 4},/turf/open/floor/plasteel/vault,/area/gateway)
-"bON" = (/obj/structure/sign/securearea{pixel_x = -32;pixel_y = 0},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating{icon_state = "platingdmg2"},/area/maintenance/maintcentral{name = "Central Maintenance"})
-"bOO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/hallway/primary/central)
-"bOP" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/door/poddoor/preopen{id = "kitchenwindow";name = "kitchen shutters"},/turf/open/floor/plating,/area/crew_quarters/kitchen)
-"bOQ" = (/obj/machinery/food_cart,/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/kitchen)
-"bOR" = (/obj/effect/landmark/start{name = "Cook"},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"bOS" = (/obj/structure/table,/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/kitchen)
-"bOT" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/weapon/storage/box/donkpockets,/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/kitchen)
-"bOU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/table,/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/kitchen)
-"bOV" = (/obj/machinery/deepfryer,/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/kitchen)
-"bOW" = (/obj/structure/extinguisher_cabinet{pixel_x = 27;pixel_y = 0},/obj/structure/closet/secure_closet/freezer/fridge,/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/kitchen)
-"bOX" = (/obj/structure/closet/secure_closet/freezer/kitchen,/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen)
-"bOY" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;name = "EXTERNAL AIRLOCK";pixel_x = 32;pixel_y = 0},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/starboard)
-"bOZ" = (/obj/machinery/chem_master/condimaster{name = "CondiMaster Neo";pixel_x = -4},/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen)
-"bPa" = (/mob/living/simple_animal/hostile/retaliate/goat{name = "Pete"},/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen)
-"bPb" = (/obj/structure/table/wood,/obj/structure/mirror{pixel_x = -28},/obj/item/weapon/lipstick/black,/obj/item/weapon/lipstick/jade{pixel_x = 2;pixel_y = 2},/obj/item/weapon/lipstick/purple{pixel_x = -2;pixel_y = -2},/turf/open/floor/wood,/area/crew_quarters/theatre)
-"bPc" = (/obj/structure/chair/wood/wings{dir = 8},/turf/open/floor/wood,/area/crew_quarters/theatre)
-"bPd" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/obj/effect/landmark/start{name = "Clown"},/turf/open/floor/wood,/area/crew_quarters/theatre)
-"bPe" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/theatre)
-"bPf" = (/obj/machinery/door/airlock{name = "Theatre Backstage";req_access_txt = "46"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/crew_quarters/theatre)
-"bPg" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/sortjunction{dir = 2;icon_state = "pipe-j1s";sortType = 18},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/starboard)
-"bPh" = (/obj/structure/table,/obj/item/weapon/stock_parts/subspace/ansible,/obj/item/weapon/stock_parts/subspace/ansible,/obj/item/weapon/stock_parts/subspace/ansible,/obj/item/weapon/stock_parts/subspace/crystal,/obj/item/weapon/stock_parts/subspace/crystal,/obj/item/weapon/stock_parts/subspace/crystal,/turf/open/floor/plasteel/black,/area/maintenance/atmos_control{name = "Telecoms Storage"})
-"bPi" = (/obj/structure/table,/obj/item/weapon/stock_parts/micro_laser,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/capacitor,/obj/item/weapon/stock_parts/micro_laser/high,/obj/item/weapon/stock_parts/micro_laser/high,/obj/item/weapon/stock_parts/micro_laser/high,/obj/item/weapon/stock_parts/micro_laser/high,/obj/machinery/airalarm{dir = 1;pixel_y = -22},/turf/open/floor/plasteel/black,/area/maintenance/atmos_control{name = "Telecoms Storage"})
-"bPj" = (/obj/structure/table,/obj/item/weapon/stock_parts/subspace/filter,/obj/item/weapon/stock_parts/subspace/filter,/obj/item/weapon/stock_parts/subspace/filter,/obj/item/weapon/stock_parts/subspace/filter,/obj/item/weapon/stock_parts/subspace/filter,/turf/open/floor/plasteel/black,/area/maintenance/atmos_control{name = "Telecoms Storage"})
-"bPk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/starboard)
-"bPl" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/turf/open/floor/plating,/area/maintenance/starboard)
-"bPm" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard)
-"bPn" = (/obj/machinery/atmospherics/components/trinary/filter{req_access = "0"},/turf/open/floor/plating,/area/maintenance/starboard)
-"bPo" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/scrubber,/turf/open/floor/plasteel/red,/area/atmos)
-"bPp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/open/floor/plasteel/escape{dir = 8},/area/atmos)
-"bPq" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 4},/turf/open/floor/plasteel,/area/atmos)
-"bPr" = (/obj/structure/closet/secure_closet/atmospherics,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/atmos)
-"bPs" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/canister,/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/atmos)
-"bPt" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4;initialize_directions = 11},/obj/machinery/meter,/turf/open/floor/plasteel,/area/atmos)
-"bPu" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/machinery/portable_atmospherics/canister,/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/atmos)
-"bPv" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 8},/turf/open/floor/plasteel,/area/atmos)
-"bPw" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/atmospherics/components/binary/pump{dir = 8;name = "Plasma to Pure";on = 0},/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/obj/structure/window/reinforced{dir = 1;pixel_y = 1},/turf/open/floor/plasteel/purple,/area/atmos)
-"bPx" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;external_pressure_bound = 0;frequency = 1441;id_tag = "tox_out";initialize_directions = 1;internal_pressure_bound = 4000;on = 1;pressure_checks = 2;pump_direction = 0},/turf/open/floor/engine/plasma,/area/atmos)
-"bPy" = (/turf/open/floor/engine/plasma,/area/atmos)
-"bPz" = (/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/turf/open/floor/engine/plasma,/area/atmos)
-"bPA" = (/obj/machinery/light/small{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plating,/area/hallway/secondary/entry{name = "Arrivals"})
-"bPB" = (/obj/structure/chair/comfy/beige{dir = 1;icon_state = "comfychair"},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"bPC" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bPD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/weapon/storage/box/lights/mixed,/turf/open/floor/plating{icon_state = "platingdmg2"},/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bPE" = (/obj/structure/closet/crate,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/weapon/poster/legit,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bPF" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bPG" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bPH" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/item/trash/candy,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bPI" = (/obj/machinery/door/airlock/maintenance{name = "Vacant Office Maintenance";req_access_txt = "32";req_one_access_txt = "0"},/turf/open/floor/plating,/area/security/vacantoffice)
-"bPJ" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/clothing/mask/horsehead,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bPK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating{icon_plating = "warnplate"},/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bPL" = (/obj/structure/rack,/obj/item/weapon/storage/box,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bPM" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating{icon_state = "platingdmg2"},/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bPN" = (/obj/effect/decal/cleanable/cobweb/cobweb2,/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bPO" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin{pixel_x = -2;pixel_y = 4},/obj/item/weapon/pen,/obj/effect/decal/cleanable/cobweb,/turf/open/floor/wood,/area/library)
-"bPP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/wood,/area/library)
-"bPQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/wood,/area/library)
-"bPR" = (/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/wood,/area/library)
-"bPS" = (/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/wood,/area/library)
-"bPT" = (/obj/structure/table/wood,/obj/item/device/paicard,/turf/open/floor/wood,/area/library)
-"bPU" = (/obj/structure/table/wood,/obj/item/weapon/dice/d20,/obj/item/weapon/dice,/obj/effect/decal/cleanable/cobweb/cobweb2,/turf/open/floor/wood,/area/library)
-"bPV" = (/obj/structure/destructible/cult/tome,/obj/machinery/newscaster{pixel_x = -30;pixel_y = 0},/obj/item/clothing/under/suit_jacket/red,/obj/effect/decal/cleanable/cobweb,/obj/item/weapon/book/codex_gigas,/turf/open/floor/engine/cult,/area/library)
-"bPW" = (/obj/structure/chair/comfy/brown,/turf/open/floor/engine/cult,/area/library)
-"bPX" = (/obj/effect/landmark{name = "blobstart"},/obj/machinery/light/small{dir = 1},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 30;pixel_y = 0},/turf/open/floor/engine/cult,/area/library)
-"bPY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/turf/open/floor/plasteel/neutral/corner{dir = 4},/area/hallway/primary/central)
-"bPZ" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/weapon/stock_parts/cell/high{charge = 100;maxcharge = 15000},/obj/item/weapon/stock_parts/cell/high{charge = 100;maxcharge = 15000},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva{name = "E.V.A. Storage"})
-"bQa" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 1;scrub_Toxins = 1},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva{name = "E.V.A. Storage"})
-"bQb" = (/obj/structure/cable/yellow,/obj/machinery/shieldwallgen,/obj/structure/window/reinforced{dir = 1;pixel_y = 2},/obj/structure/extinguisher_cabinet{pixel_x = -27;pixel_y = 0},/turf/open/floor/plasteel/vault{dir = 4},/area/teleporter{name = "\improper Teleporter Room"})
-"bQc" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/teleporter{name = "\improper Teleporter Room"})
-"bQd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/teleporter{name = "\improper Teleporter Room"})
-"bQe" = (/obj/structure/cable/yellow,/obj/machinery/shieldwallgen,/obj/structure/window/reinforced{dir = 1;pixel_y = 2},/obj/machinery/light{icon_state = "tube1";dir = 4},/turf/open/floor/plasteel/vault{dir = 1},/area/teleporter{name = "\improper Teleporter Room"})
-"bQf" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/item/bodypart/chest/robot{name = "cyborg torso";pixel_x = -2;pixel_y = 2},/obj/item/bodypart/head/robot{name = "cyborg head";pixel_x = 3;pixel_y = 2},/obj/structure/table/wood,/obj/machinery/airalarm{dir = 4;pixel_x = -23;pixel_y = 0},/turf/open/floor/carpet,/area/assembly/showroom{name = "\improper Corporate Showroom"})
-"bQg" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/wood,/area/assembly/showroom{name = "\improper Corporate Showroom"})
-"bQh" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/wood,/area/assembly/showroom{name = "\improper Corporate Showroom"})
-"bQi" = (/turf/open/floor/wood{icon_state = "wood-broken3"},/area/assembly/showroom{name = "\improper Corporate Showroom"})
-"bQj" = (/obj/machinery/cell_charger,/obj/item/weapon/stock_parts/cell/crap{name = "\improper NanoTrasen-brand rechargable AA battery"},/obj/structure/table/wood,/turf/open/floor/carpet,/area/assembly/showroom{name = "\improper Corporate Showroom"})
-"bQk" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/holopad,/turf/open/floor/carpet,/area/assembly/showroom{name = "\improper Corporate Showroom"})
-"bQl" = (/obj/structure/table/wood,/obj/item/toy/carpplushie{color = "red";name = "NanoTrasen wildlife department space carp plushie"},/turf/open/floor/carpet,/area/assembly/showroom{name = "\improper Corporate Showroom"})
-"bQm" = (/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;on = 1;scrub_N2O = 1;scrub_Toxins = 1},/turf/open/floor/wood,/area/assembly/showroom{name = "\improper Corporate Showroom"})
-"bQn" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/wood,/area/assembly/showroom{name = "\improper Corporate Showroom"})
-"bQo" = (/obj/structure/table/wood,/obj/machinery/button/door{id = "corporate_privacy";name = "corporate showroom shutters control";pixel_x = 28;pixel_y = 0;req_access_txt = "19"},/obj/item/weapon/poster/legit,/obj/item/weapon/poster/legit,/obj/item/weapon/poster/legit,/obj/item/weapon/poster/legit,/obj/item/weapon/poster/legit,/obj/item/device/paicard{desc = "A real NanoTrasen success, these personal AIs provide all of the companionship of an AI without any law related red-tape.";name = "NanoTrasen-brand personal AI device exhibit"},/turf/open/floor/carpet,/area/assembly/showroom{name = "\improper Corporate Showroom"})
-"bQp" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/clothing/suit/hazardvest,/obj/item/clothing/suit/hazardvest,/obj/item/clothing/head/hardhat/orange{name = "protective hat"},/obj/item/clothing/head/hardhat/orange{name = "protective hat"},/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/gateway)
-"bQq" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 1;scrub_Toxins = 1},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/gateway)
-"bQr" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2;initialize_directions = 11},/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel,/area/gateway)
-"bQs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/gateway)
-"bQt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Gateway Chamber"},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel,/area/gateway)
-"bQu" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 1;scrub_Toxins = 1},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/gateway)
-"bQv" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel,/area/gateway)
-"bQw" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/gateway)
-"bQx" = (/obj/machinery/door/airlock/maintenance{name = "Gateway Maintenance";req_access_txt = "17"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/gateway)
-"bQy" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"})
-"bQz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/extinguisher_cabinet{pixel_x = -27;pixel_y = 0},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/hallway/primary/central)
-"bQA" = (/obj/structure/rack,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3;pixel_y = 3},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/kitchen)
-"bQB" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/kitchen)
-"bQC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/kitchen)
-"bQD" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/kitchen)
-"bQE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/kitchen)
-"bQF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/kitchen)
-"bQG" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/kitchen)
-"bQH" = (/obj/machinery/requests_console{department = "Kitchen";departmentType = 2;pixel_x = 30;pixel_y = 0},/obj/machinery/processor,/turf/open/floor/plasteel/cafeteria{dir = 2},/area/crew_quarters/kitchen)
-"bQI" = (/obj/structure/closet/chefcloset,/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen)
-"bQJ" = (/obj/effect/landmark/start{name = "Chef"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen)
-"bQK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen)
-"bQL" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/light{dir = 4;icon_state = "tube1"},/obj/structure/sign/poster{pixel_x = 32;pixel_y = 0},/turf/open/floor/plasteel/arrival{dir = 4},/area/hallway/secondary/entry{name = "Arrivals"})
-"bQM" = (/obj/structure/table/wood,/obj/item/weapon/folder,/obj/structure/sign/poster{pixel_x = -32;pixel_y = 0},/turf/open/floor/wood,/area/security/vacantoffice)
-"bQN" = (/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/turf/open/floor/plating,/area/crew_quarters/toilet{name = "\improper Auxiliary Restrooms"})
-"bQO" = (/obj/item/weapon/soap/nanotrasen,/obj/machinery/light/small{dir = 4},/obj/structure/table/wood,/obj/structure/sign/poster{pixel_x = 32;pixel_y = 0},/turf/open/floor/wood,/area/crew_quarters/theatre)
-"bQP" = (/obj/structure/sign/poster{pixel_x = 32;pixel_y = 0},/turf/open/floor/wood,/area/security/vacantoffice)
-"bQQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/weapon/wrench,/turf/open/floor/plating,/area/maintenance/starboard)
-"bQR" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/obj/machinery/portable_atmospherics/canister,/turf/open/floor/plating,/area/maintenance/starboard)
-"bQS" = (/obj/machinery/suit_storage_unit/atmos,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/atmos)
-"bQT" = (/obj/structure/sign/nosmoking_2,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/atmos)
-"bQU" = (/obj/machinery/atmospherics/components/trinary/filter{filter_type = -1;on = 1},/turf/open/floor/plasteel,/area/atmos)
-"bQV" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/obj/machinery/meter,/turf/open/floor/plasteel,/area/atmos)
-"bQW" = (/obj/machinery/computer/atmos_control/tank{frequency = 1441;input_tag = "tox_in";name = "Plasma Supply Control";output_tag = "tox_out";sensors = list("tox_sensor" = "Tank")},/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/turf/open/floor/plasteel/purple,/area/atmos)
-"bQX" = (/obj/machinery/air_sensor{frequency = 1441;id_tag = "tox_sensor"},/turf/open/floor/engine/plasma,/area/atmos)
-"bQY" = (/obj/machinery/portable_atmospherics/canister/toxins,/turf/open/floor/engine/plasma,/area/atmos)
-"bQZ" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/engine/plasma,/area/atmos)
-"bRa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"bRb" = (/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"bRc" = (/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bRd" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bRe" = (/obj/item/trash/cheesie,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bRf" = (/obj/machinery/door/airlock/maintenance{name = "Storage Room";req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bRg" = (/obj/machinery/holopad,/obj/structure/extinguisher_cabinet{pixel_x = -27;pixel_y = 0},/turf/open/floor/wood,/area/library)
-"bRh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/library)
-"bRi" = (/obj/structure/chair/office/dark,/turf/open/floor/wood,/area/library)
-"bRj" = (/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/wood{icon_state = "wood-broken"},/area/library)
-"bRk" = (/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 30;pixel_y = 0},/obj/machinery/photocopier,/obj/machinery/light{dir = 4;icon_state = "tube1"},/turf/open/floor/wood,/area/library)
-"bRl" = (/obj/structure/table/wood,/obj/item/weapon/paper_bin{pixel_x = -3;pixel_y = 7},/obj/item/weapon/pen/invisible,/turf/open/floor/engine/cult,/area/library)
-"bRm" = (/obj/item/device/taperecorder{pixel_y = 0},/obj/item/device/camera,/obj/item/device/radio/intercom{pixel_y = -25},/obj/structure/table/wood,/turf/open/floor/engine/cult,/area/library)
-"bRn" = (/obj/structure/bookcase{name = "Forbidden Knowledge"},/turf/open/floor/engine/cult,/area/library)
-"bRo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/device/radio/intercom{dir = 4;name = "Station Intercom (General)";pixel_x = 27},/turf/open/floor/plasteel/neutral/corner{dir = 4},/area/hallway/primary/central)
-"bRp" = (/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva{name = "E.V.A. Storage"})
-"bRq" = (/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva{name = "E.V.A. Storage"})
-"bRr" = (/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva{name = "E.V.A. Storage"})
-"bRs" = (/obj/structure/cable/yellow,/obj/machinery/shieldwallgen,/turf/open/floor/plasteel/vault{dir = 4},/area/teleporter{name = "\improper Teleporter Room"})
-"bRt" = (/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/teleporter{name = "\improper Teleporter Room"})
-"bRu" = (/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/teleporter{name = "\improper Teleporter Room"})
-"bRv" = (/obj/structure/cable/yellow,/obj/machinery/shieldwallgen,/turf/open/floor/plasteel/vault{dir = 1},/area/teleporter{name = "\improper Teleporter Room"})
-"bRw" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/table/wood,/obj/structure/extinguisher_cabinet{pixel_x = -27;pixel_y = 0},/obj/item/weapon/folder/blue,/obj/item/clothing/head/collectable/HoP{name = "novelty HoP hat"},/obj/machinery/light/small{dir = 8},/turf/open/floor/carpet,/area/assembly/showroom{name = "\improper Corporate Showroom"})
-"bRx" = (/obj/structure/table/wood,/obj/item/weapon/storage/secure/briefcase{desc = "A large briefcase with a digital locking system, and the NanoTrasen logo emblazoned on the sides.";name = "NanoTrasen-brand secure briefcase exhibit";pixel_y = 2},/turf/open/floor/carpet,/area/assembly/showroom{name = "\improper Corporate Showroom"})
-"bRy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/wood,/area/assembly/showroom{name = "\improper Corporate Showroom"})
-"bRz" = (/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/showcase{desc = "The famous NanoTrasen-brand microwave, the multi-purpose cooking appliance every station needs! This one appears to be drawn onto a cardboard box.";dir = 1;icon = 'icons/obj/kitchen.dmi';icon_state = "mw";name = "NanoTrasen-brand microwave";pixel_x = 0;pixel_y = 2},/obj/structure/table/wood,/turf/open/floor/carpet,/area/assembly/showroom{name = "\improper Corporate Showroom"})
-"bRA" = (/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/item/toy/beach_ball{desc = "The simple beach ball is one of Nanotrasen's most popular products. 'Why do we make beach balls? Because we can! (TM)' - Nanotrasen";item_state = "beachball";name = "NanoTrasen-brand beach ball";pixel_y = 7},/obj/structure/table/wood,/turf/open/floor/carpet,/area/assembly/showroom{name = "\improper Corporate Showroom"})
-"bRB" = (/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/reagent_dispensers/beerkeg{desc = "One of the more successful achievements of the NanoTrasen Corporate Warfare Division, their nuclear fission explosives are renowned for being cheap to produce and devastatingly effective. Signs explain that though this particular device has been decommissioned, every NanoTrasen station is equipped with an equivalent one, just in case. All Captains carefully guard the disk needed to detonate them - at least, the sign says they do. There seems to be a tap on the back.";icon = 'icons/obj/machines/nuke.dmi';icon_state = "nuclearbomb_base";name = "NanoTrasen-brand nuclear fission explosive";pixel_x = 2;pixel_y = 6},/obj/structure/table/wood,/turf/open/floor/carpet,/area/assembly/showroom{name = "\improper Corporate Showroom"})
-"bRC" = (/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/item/weapon/storage/box/matches{pixel_x = -2;pixel_y = 3},/obj/item/clothing/mask/cigarette/cigar{name = "premium cigar";pixel_x = 4;pixel_y = 1},/obj/item/clothing/mask/cigarette/cigar{name = "premium cigar";pixel_x = -4;pixel_y = 1},/obj/item/clothing/mask/cigarette/cigar/cohiba{name = "cohiba robusto cigar"},/obj/structure/table/wood,/turf/open/floor/carpet,/area/assembly/showroom{name = "\improper Corporate Showroom"})
-"bRD" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/showcase{desc = "A slightly battered looking TV. Vaious Nanotrasen infomercials play on a loop, accompanied by a jaunty tune.";dir = 1;icon = 'icons/obj/computer.dmi';icon_state = "television";name = "NanoTrasen corporate newsfeed";pixel_x = 2;pixel_y = 3},/obj/structure/table/wood,/turf/open/floor/carpet,/area/assembly/showroom{name = "\improper Corporate Showroom"})
-"bRE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/wood,/area/assembly/showroom{name = "\improper Corporate Showroom"})
-"bRF" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/item/weapon/disk/data{pixel_x = 9;pixel_y = -1},/obj/item/weapon/disk/tech_disk{name = "technology disk";pixel_x = -2;pixel_y = -3},/obj/item/weapon/disk/design_disk{name = "component design disk";pixel_x = 0;pixel_y = 6},/obj/structure/table/wood,/obj/item/toy/talking/AI{name = "NanoTrasen-brand toy AI";pixel_y = 6},/turf/open/floor/carpet,/area/assembly/showroom{name = "\improper Corporate Showroom"})
-"bRG" = (/obj/item/weapon/book/manual/wiki/security_space_law{name = "space law";pixel_y = 2},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/item/toy/gun{name = "cap gun"},/obj/item/weapon/restraints/handcuffs{name = "handcuffs"},/obj/structure/table/wood,/obj/item/clothing/head/collectable/HoS{name = "novelty HoS hat"},/obj/machinery/firealarm{dir = 4;pixel_x = 24},/obj/machinery/light/small{dir = 4},/turf/open/floor/carpet,/area/assembly/showroom{name = "\improper Corporate Showroom"})
-"bRH" = (/obj/structure/table,/obj/item/weapon/storage/fancy/donut_box,/obj/machinery/firealarm{dir = 1;pixel_y = -24},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/gateway)
-"bRI" = (/obj/structure/table,/obj/machinery/recharger,/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/gateway)
-"bRJ" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/weapon/stock_parts/cell/high{charge = 100;maxcharge = 15000},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/gateway)
-"bRK" = (/obj/item/weapon/storage/belt/utility,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/structure/rack{dir = 8;layer = 2.9},/obj/machinery/button/door{id = "gateshutter";name = "Gateway Shutter Control";pixel_x = 0;pixel_y = -26;req_access_txt = "19"},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/gateway)
-"bRL" = (/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel,/area/gateway)
-"bRM" = (/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/obj/machinery/camera{c_tag = "Gateway - Access";dir = 8;network = list("SS13")},/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel,/area/gateway)
-"bRN" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"})
-"bRO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/firealarm{dir = 8;pixel_x = -24},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/hallway/primary/central)
-"bRP" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/snacks/mint,/obj/machinery/airalarm{dir = 4;pixel_x = -23;pixel_y = 0},/obj/machinery/power/apc{dir = 2;name = "Kitchen APC";pixel_y = -24},/obj/structure/cable/yellow,/turf/open/floor/plasteel/cafeteria{dir = 2},/area/crew_quarters/kitchen)
-"bRQ" = (/obj/structure/table,/obj/item/weapon/reagent_containers/glass/beaker{pixel_x = 5},/obj/item/weapon/reagent_containers/food/condiment/enzyme{layer = 5},/turf/open/floor/plasteel/cafeteria{dir = 2},/area/crew_quarters/kitchen)
-"bRR" = (/obj/structure/table,/obj/item/stack/packageWrap,/obj/item/weapon/hand_labeler,/obj/machinery/button/door{id = "kitchenhydro";name = "Service Shutter Control";pixel_x = 0;pixel_y = -24;req_access_txt = "28"},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/kitchen)
-"bRS" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/condiment/saltshaker{pixel_x = -3;pixel_y = 0},/obj/item/weapon/reagent_containers/food/condiment/peppermill{pixel_x = 3},/obj/item/device/radio/intercom{pixel_y = -25},/obj/item/weapon/kitchen/rollingpin,/obj/machinery/camera{c_tag = "Kitchen";dir = 1;network = list("SS13")},/turf/open/floor/plasteel/cafeteria{dir = 2},/area/crew_quarters/kitchen)
-"bRT" = (/obj/structure/extinguisher_cabinet{pixel_x = 0;pixel_y = -30},/obj/structure/table,/obj/machinery/reagentgrinder,/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/kitchen)
-"bRU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/kitchen)
-"bRV" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/kitchen)
-"bRW" = (/obj/machinery/door/airlock{name = "Kitchen Cold Room";req_access_txt = "28"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen)
-"bRX" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/item/device/radio/intercom{name = "Station Intercom (General)";pixel_y = -29},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen)
-"bRY" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/airalarm{dir = 1;pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/camera{c_tag = "Kitchen - Coldroom";dir = 1;network = list("SS13")},/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen)
-"bRZ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light_switch{pixel_y = -26},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen)
-"bSa" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen)
-"bSb" = (/obj/machinery/light/small,/obj/structure/sign/poster{pixel_y = -32},/turf/open/floor/plating,/area/crew_quarters/toilet{name = "\improper Auxiliary Restrooms"})
-"bSc" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/starboard)
-"bSd" = (/obj/machinery/portable_atmospherics/canister,/turf/open/floor/plating,/area/maintenance/starboard)
-"bSe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/landmark{name = "blobstart"},/turf/open/floor/plating,/area/maintenance/starboard)
-"bSf" = (/obj/item/weapon/crowbar,/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/starboard)
-"bSg" = (/obj/structure/fireaxecabinet{pixel_x = -32;pixel_y = 0},/obj/machinery/camera{c_tag = "Atmospherics - Port";dir = 4;network = list("SS13")},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/caution{dir = 8},/area/atmos)
-"bSh" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/canister,/obj/machinery/airalarm{dir = 4;pixel_x = -23;pixel_y = 0},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/atmos)
-"bSi" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4;initialize_directions = 11},/obj/machinery/meter,/obj/item/weapon/wrench,/turf/open/floor/plasteel,/area/atmos)
-"bSj" = (/obj/machinery/atmospherics/components/trinary/filter{dir = 1;filter_type = "plasma";on = 1},/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/obj/structure/window/reinforced,/turf/open/floor/plasteel/purple,/area/atmos)
-"bSk" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8;frequency = 1441;id = "tox_in";pixel_y = 1},/turf/open/floor/engine/plasma,/area/atmos)
-"bSl" = (/obj/machinery/camera{c_tag = "Atmospherics Tank - Toxins";dir = 8;network = list("SS13");pixel_x = 0;pixel_y = 0},/turf/open/floor/engine/plasma,/area/atmos)
-"bSm" = (/obj/structure/table,/obj/machinery/microwave,/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"bSn" = (/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating{icon_plating = "warnplate"},/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bSo" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bSp" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9;pixel_y = 0},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bSq" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating{icon_plating = "warnplate"},/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bSr" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bSs" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bSt" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bSu" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bSv" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bSw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bSx" = (/obj/machinery/newscaster{pixel_x = -32;pixel_y = 0},/turf/open/floor/wood,/area/library)
-"bSy" = (/obj/structure/chair/office/dark{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/library)
-"bSz" = (/obj/structure/table/wood,/obj/item/weapon/folder,/obj/item/weapon/folder,/obj/item/weapon/pen,/turf/open/floor/wood,/area/library)
-"bSA" = (/obj/structure/table/wood,/obj/item/weapon/storage/crayons,/turf/open/floor/wood,/area/library)
-"bSB" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/library)
-"bSC" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/item/device/radio/intercom{dir = 4;name = "Station Intercom (General)";pixel_x = 27},/turf/open/floor/wood,/area/library)
-"bSD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/firealarm{dir = 8;pixel_x = -24},/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/hallway/primary/central)
-"bSE" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters{id = "evashutter";name = "E.V.A. Storage Shutter"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/ai_monitored/storage/eva{name = "E.V.A. Storage"})
-"bSF" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters{id = "evashutter";name = "E.V.A. Storage Shutter"},/obj/machinery/button/door{id = "evashutter";name = "E.V.A. Storage Shutter Control";pixel_x = 30;pixel_y = 0;req_access_txt = "19"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/ai_monitored/storage/eva{name = "E.V.A. Storage"})
-"bSG" = (/obj/machinery/door/poddoor/shutters{id = "teleshutter";name = "Teleporter Access Shutter"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/teleporter{name = "\improper Teleporter Room"})
-"bSH" = (/obj/machinery/door/poddoor/shutters{id = "teleshutter";name = "Teleporter Access Shutter"},/obj/machinery/button/door{id = "teleshutter";name = "Teleporter Shutter Control";pixel_x = 30;pixel_y = 5;req_access_txt = "19"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/teleporter{name = "\improper Teleporter Room"})
-"bSI" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow,/obj/machinery/door/poddoor/shutters/preopen{id = "corporate_privacy";name = "showroom shutters"},/turf/open/floor/plating,/area/assembly/showroom{name = "\improper Corporate Showroom"})
-"bSJ" = (/obj/machinery/door/window{base_state = "right";dir = 8;icon_state = "right";name = "Theatre Stage";req_access_txt = "0"},/obj/structure/sign/poster{pixel_y = -32},/turf/open/floor/carpet,/area/crew_quarters/theatre)
-"bSK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Corporate Showroom";req_access_txt = "19"},/turf/open/floor/wood,/area/assembly/showroom{name = "\improper Corporate Showroom"})
-"bSL" = (/obj/item/device/instrument/violin,/obj/structure/table/wood,/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 29},/obj/structure/sign/poster{pixel_y = -32},/turf/open/floor/wood,/area/crew_quarters/theatre)
-"bSM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Corporate Showroom";req_access_txt = "19"},/turf/open/floor/wood,/area/assembly/showroom{name = "\improper Corporate Showroom"})
-"bSN" = (/obj/structure/sign/poster,/turf/closed/wall,/area/crew_quarters/kitchen)
-"bSO" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters{id = "gateshutter";name = "Gateway Access Shutter"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/gateway)
-"bSP" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/airlock/maintenance{req_access_txt = "0";req_one_access_txt = "12;17"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/maintcentral{name = "Central Maintenance"})
-"bSQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/hallway/primary/central)
-"bSR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plasteel/green/corner{dir = 2},/area/hallway/primary/central)
-"bSS" = (/turf/closed/wall,/area/hallway/primary/central)
-"bST" = (/turf/closed/wall,/area/hydroponics)
-"bSU" = (/obj/machinery/door/poddoor/shutters/preopen{id = "kitchenhydro";name = "Service Shutter"},/obj/machinery/door/airlock/glass_medical{id_tag = "";name = "Service Door";req_access_txt = "0";req_one_access_txt = "35;28"},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/hydroponics)
-"bSV" = (/obj/structure/table/reinforced,/obj/machinery/door/window/eastleft{dir = 1;name = "Kitchen Window";req_access_txt = "28";req_one_access_txt = "0"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/weapon/paper,/obj/machinery/door/window/eastleft{dir = 2;name = "Hydroponics Window";req_access_txt = "0";req_one_access_txt = "30;35"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/hydroponics)
-"bSW" = (/obj/machinery/smartfridge,/turf/closed/wall,/area/hydroponics)
-"bSX" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8;initialize_directions = 11},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/kitchen)
-"bSY" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/kitchen)
-"bSZ" = (/obj/machinery/door/airlock/maintenance{name = "Kitchen Maintenance";req_access_txt = "28"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/crew_quarters/kitchen)
-"bTa" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/effect/landmark{name = "blobstart"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/starboard)
-"bTb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/starboard)
-"bTc" = (/obj/machinery/power/apc{cell_type = 2500;dir = 1;name = "Starboard Maintenance APC";pixel_x = -1;pixel_y = 26},/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/starboard)
-"bTd" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/starboard)
-"bTe" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9;pixel_y = 0},/turf/open/floor/plating,/area/maintenance/starboard)
-"bTf" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 2},/obj/machinery/meter,/turf/open/floor/plating,/area/maintenance/starboard)
-"bTg" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/turf/open/floor/plating,/area/maintenance/starboard)
-"bTh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/starboard)
-"bTi" = (/obj/structure/closet/wardrobe/atmospherics_yellow,/turf/open/floor/plasteel/black,/area/atmos)
-"bTj" = (/obj/machinery/requests_console{department = "Atmospherics";departmentType = 4;name = "Atmos RC";pixel_x = 30;pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/shower{dir = 8;icon_state = "shower";name = "emergency shower"},/turf/open/floor/plasteel,/area/atmos)
-"bTk" = (/obj/machinery/atmospherics/components/binary/pump{dir = 0;name = "Port to Filter";on = 0},/obj/machinery/light/small{dir = 8},/obj/machinery/camera{c_tag = "Atmospherics - Starboard";dir = 4;network = list("SS13")},/turf/open/floor/plasteel,/area/atmos)
-"bTl" = (/obj/machinery/atmospherics/components/unary/thermomachine/heater{dir = 8},/turf/open/floor/plasteel,/area/atmos)
-"bTm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/lattice/catwalk,/obj/structure/window/reinforced,/turf/open/space,/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"bTn" = (/turf/closed/wall,/area/maintenance/portsolar)
-"bTo" = (/obj/machinery/door/airlock/engineering{name = "Aft Port Solar Access";req_access_txt = "10"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/portsolar)
-"bTp" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'";icon_state = "shock";name = "HIGH VOLTAGE";pixel_y = 0},/turf/closed/wall,/area/maintenance/portsolar)
-"bTq" = (/obj/machinery/power/grounding_rod,/turf/open/floor/plating/airless,/area/engine/engineering)
-"bTr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/maintenance{name = "Storage Room";req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bTs" = (/turf/closed/wall,/area/maintenance/aft{name = "Aft Maintenance"})
-"bTt" = (/obj/item/weapon/storage/box,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bTu" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bTv" = (/obj/structure/rack,/obj/item/weapon/paper,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bTw" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/wood,/area/library)
-"bTx" = (/obj/structure/chair/office/dark{dir = 4},/obj/machinery/airalarm{dir = 1;pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/wood,/area/library)
-"bTy" = (/obj/machinery/firealarm{dir = 1;pixel_y = -24},/obj/machinery/camera/autoname{dir = 1;network = list("SS13")},/obj/item/weapon/storage/pill_bottle/dice,/obj/structure/table/wood,/turf/open/floor/wood,/area/library)
-"bTz" = (/obj/structure/table/wood,/obj/machinery/light,/obj/item/toy/cards/deck/cas/black{pixel_x = -2;pixel_y = 6},/obj/item/toy/cards/deck{pixel_x = 2;pixel_y = 7},/obj/item/toy/cards/deck/cas{pixel_x = -1;pixel_y = 2},/turf/open/floor/wood,/area/library)
-"bTA" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/wood,/area/library)
-"bTB" = (/obj/machinery/door/airlock/maintenance{name = "Library Maintenance";req_access_txt = "0";req_one_access_txt = "12;37"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bTC" = (/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bTD" = (/obj/machinery/vending/snack,/obj/machinery/newscaster{pixel_x = -30;pixel_y = 0},/turf/open/floor/plasteel/black,/area/hallway/primary/central)
-"bTE" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=11-Command-Port";location = "10.2-Aft-Port-Corner"},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bTF" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8;initialize_directions = 11},/turf/open/floor/plasteel/neutral/corner{dir = 4},/area/hallway/primary/central)
-"bTG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/neutral/corner{dir = 4},/area/hallway/primary/central)
-"bTH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/firealarm{dir = 2;pixel_y = 24},/obj/effect/turf_decal/stripes/corner{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bTI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bTJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bTK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/neutral/corner{dir = 4},/area/hallway/primary/central)
-"bTL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/firealarm{pixel_y = 28},/obj/effect/turf_decal/stripes/corner{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bTM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 0;pixel_y = 21},/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bTN" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1;initialize_directions = 11},/obj/machinery/status_display{density = 0;layer = 4;pixel_x = 0;pixel_y = 32},/turf/open/floor/plasteel/neutral/corner{dir = 4},/area/hallway/primary/central)
-"bTO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plasteel/neutral/side{dir = 1},/area/hallway/primary/central)
-"bTP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/neutral/side{dir = 1},/area/hallway/primary/central)
-"bTQ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1;initialize_directions = 11},/turf/open/floor/plasteel/neutral/side{dir = 1},/area/hallway/primary/central)
-"bTR" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2;initialize_directions = 11},/turf/open/floor/plasteel/neutral/side{dir = 1},/area/hallway/primary/central)
-"bTS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/hallway/primary/central)
-"bTT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/light{dir = 1},/obj/machinery/status_display{density = 0;layer = 4;pixel_x = 0;pixel_y = 32},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/hallway/primary/central)
-"bTU" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1;initialize_directions = 11},/obj/machinery/power/apc{cell_type = 10000;dir = 1;name = "Central Primary Hallway APC";pixel_y = 24},/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/hallway/primary/central)
-"bTV" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1;initialize_directions = 11},/obj/structure/sign/map/left{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";icon_state = "map-left-MS";pixel_y = 32},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/hallway/primary/central)
-"bTW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/sign/map/right{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";icon_state = "map-right-MS";pixel_y = 32},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/hallway/primary/central)
-"bTX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 0;pixel_y = 21},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/hallway/primary/central)
-"bTY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/button/door{id = "gateshutter";name = "Gateway Shutter Control";pixel_x = 0;pixel_y = 26;req_access_txt = "19"},/obj/effect/turf_decal/stripes/corner{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bTZ" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/bookcase{name = "bookcase"},/turf/open/floor/wood,/area/assembly/showroom{name = "\improper Corporate Showroom"})
-"bUa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/hallway/primary/central)
-"bUb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/hallway/primary/central)
-"bUc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/sign/botany{pixel_x = 32;pixel_y = 32},/turf/open/floor/plasteel/green/side{dir = 4},/area/hallway/primary/central)
-"bUd" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -2;pixel_y = 8},/obj/item/weapon/pen,/turf/open/floor/plasteel/green,/area/hallway/primary/central)
-"bUe" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/hydroponics)
-"bUf" = (/obj/machinery/vending/hydroseeds{slogan_delay = 700},/obj/structure/noticeboard{desc = "A board for pinning important notices upon. Probably helpful for keeping track of requests.";name = "requests board";pixel_x = 0;pixel_y = 32},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/hydroponics)
-"bUg" = (/obj/machinery/vending/hydronutrients,/obj/machinery/light{dir = 1},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/hydroponics)
-"bUh" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/hydroponics)
-"bUi" = (/obj/item/weapon/storage/box/syringes,/obj/item/weapon/storage/box/beakers{pixel_x = 2;pixel_y = 2},/obj/structure/table/glass,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/hydroponics)
-"bUj" = (/obj/machinery/reagentgrinder,/obj/structure/table/glass,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/hydroponics)
-"bUk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/hydroponics)
-"bUl" = (/obj/machinery/chem_master/condimaster{desc = "Used to separate out liquids - useful for purifying botanical extracts. Also dispenses condiments.";name = "BrewMaster 2199";pixel_x = -4},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/hydroponics)
-"bUm" = (/obj/structure/reagent_dispensers/watertank,/obj/item/weapon/reagent_containers/glass/bucket,/obj/structure/window/reinforced{dir = 8},/obj/item/device/radio/intercom{name = "Station Intercom (General)";pixel_y = 29},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/hydroponics)
-"bUn" = (/obj/structure/reagent_dispensers/watertank,/obj/item/weapon/reagent_containers/glass/bucket,/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/hydroponics)
-"bUo" = (/obj/structure/closet/crate/hydroponics,/obj/item/weapon/shovel/spade,/obj/item/weapon/wrench,/obj/item/weapon/reagent_containers/glass/bucket,/obj/item/weapon/cultivator,/obj/item/weapon/wirecutters,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/hydroponics)
-"bUp" = (/obj/structure/closet{name = "spare parts locker"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/item/weapon/rack_parts,/obj/item/weapon/rack_parts,/obj/item/weapon/wrench,/obj/structure/window/reinforced{dir = 4},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/crew_quarters/kitchen)
-"bUq" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/window/eastright{dir = 1;name = "Kitchen Delivery";req_access_txt = "28"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/crew_quarters/kitchen)
-"bUr" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=8";dir = 8;freq = 1400;location = "Kitchen"},/obj/structure/plasticflaps{opacity = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/crew_quarters/kitchen)
-"bUs" = (/obj/structure/disposalpipe/sortjunction{dir = 2;sortType = 20},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/starboard)
-"bUt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/starboard)
-"bUu" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/starboard)
-"bUv" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/starboard)
-"bUw" = (/obj/machinery/door/airlock/external{name = "Engineering External Access";req_access = null;req_access_txt = "10;13"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/structure/fans/tiny,/turf/open/floor/plating,/area/engine/engineering)
-"bUx" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/maintenance/starboard)
-"bUy" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/machinery/portable_atmospherics/canister,/turf/open/floor/plating,/area/maintenance/starboard)
-"bUz" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel/black,/area/atmos)
-"bUA" = (/obj/machinery/pipedispenser,/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/atmos)
-"bUB" = (/obj/machinery/light{dir = 1},/obj/machinery/light_switch{pixel_y = 28},/obj/machinery/pipedispenser/disposal,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/atmos)
-"bUC" = (/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 0;pixel_y = 28},/obj/machinery/pipedispenser/disposal/transit_tube,/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/atmos)
-"bUD" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8;name = "Port to Filter";on = 0},/turf/open/floor/plasteel,/area/atmos)
-"bUE" = (/obj/item/weapon/cigbutt,/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4;initialize_directions = 11},/turf/open/floor/plasteel,/area/atmos)
-"bUF" = (/obj/machinery/atmospherics/components/unary/thermomachine/heater{dir = 4;on = 1},/turf/open/floor/plasteel,/area/atmos)
-"bUG" = (/obj/machinery/atmospherics/pipe/manifold4w/yellow/visible,/turf/open/floor/plasteel,/area/atmos)
-"bUH" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8;name = "CO2 to Pure";on = 0},/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/obj/structure/window/reinforced{dir = 1;pixel_y = 1},/turf/open/floor/plasteel/vault,/area/atmos)
-"bUI" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;external_pressure_bound = 0;frequency = 1441;id_tag = "co2_out";initialize_directions = 1;internal_pressure_bound = 4000;on = 1;pressure_checks = 2;pump_direction = 0},/turf/open/floor/engine/co2,/area/atmos)
-"bUJ" = (/turf/open/floor/engine/co2,/area/atmos)
-"bUK" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plasteel/black,/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"bUL" = (/obj/machinery/telecomms/server/presets/security,/turf/open/floor/bluegrid{name = "Mainframe Base";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server)
-"bUM" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel/black,/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"bUN" = (/obj/machinery/power/apc{dir = 8;name = "Aft Port Solar APC";pixel_x = -26;pixel_y = 3},/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/portsolar)
-"bUO" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/portsolar)
-"bUP" = (/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/obj/machinery/power/smes,/turf/open/floor/plating,/area/maintenance/portsolar)
-"bUQ" = (/obj/item/weapon/cigbutt,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bUR" = (/obj/structure/closet,/obj/item/weapon/storage/box/donkpockets,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bUS" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "0";req_one_access_txt = "12;5;39;25;28"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"bUT" = (/obj/structure/rack,/obj/item/weapon/weldingtool,/obj/item/weapon/screwdriver{pixel_y = 16},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"bUU" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"bUV" = (/obj/machinery/recharge_station,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"bUW" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"bUX" = (/obj/structure/rack,/obj/item/stack/cable_coil{pixel_x = -1;pixel_y = -3},/obj/item/stack/cable_coil,/obj/item/weapon/wirecutters,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"bUY" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel/black,/area/hallway/primary/central)
-"bUZ" = (/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bVa" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bVb" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bVc" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bVd" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bVe" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plasteel{icon_state = "L1"},/area/hallway/primary/central)
-"bVf" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel{icon_state = "L3"},/area/hallway/primary/central)
-"bVg" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=10.2-Aft-Port-Corner";location = "10.1-Central-from-Aft"},/turf/open/floor/plasteel{icon_state = "L5"},/area/hallway/primary/central)
-"bVh" = (/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel{icon_state = "L7"},/area/hallway/primary/central)
-"bVi" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=8.1-Aft-to-Escape";location = "8-Central-to-Aft"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "L9"},/area/hallway/primary/central)
-"bVj" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel{icon_state = "L11"},/area/hallway/primary/central)
-"bVk" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel{desc = "";icon_state = "L13";name = "floor"},/area/hallway/primary/central)
-"bVl" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bVm" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bVn" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bVo" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=8-Central-to-Aft";location = "7.5-Starboard-Aft-Corner"},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bVp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel/green/side{dir = 4},/area/hallway/primary/central)
-"bVq" = (/turf/open/floor/plasteel/green,/area/hallway/primary/central)
-"bVr" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/westleft{dir = 4;name = "Hydroponics Desk";req_access_txt = "0";req_one_access_txt = "30;35"},/turf/open/floor/plasteel/green{dir = 4},/area/hydroponics)
-"bVs" = (/turf/open/floor/plasteel/green/side{dir = 9},/area/hydroponics)
-"bVt" = (/turf/open/floor/plasteel/green/side{dir = 5},/area/hydroponics)
-"bVu" = (/turf/open/floor/plasteel/green/side{dir = 1},/area/hydroponics)
-"bVv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel/green/side{dir = 5},/area/hydroponics)
-"bVw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/green/side{dir = 9},/area/hydroponics)
-"bVx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/green/side{dir = 1},/area/hydroponics)
-"bVy" = (/obj/structure/sink{dir = 4;icon_state = "sink";pixel_x = 11;pixel_y = 0},/obj/effect/turf_decal/bot{dir = 2},/turf/open/floor/plasteel{dir = 2},/area/hydroponics)
-"bVz" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/starboard)
-"bVA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/starboard)
-"bVB" = (/obj/structure/rack,/obj/item/weapon/extinguisher,/obj/item/weapon/storage/belt/utility,/obj/item/clothing/mask/gas,/obj/item/weapon/storage/box/lights/mixed,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/starboard)
-"bVC" = (/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/maintenance/starboard)
-"bVD" = (/obj/machinery/light/small{dir = 8},/obj/item/clothing/mask/pig,/obj/item/weapon/bikehorn,/obj/structure/table/wood,/obj/structure/sign/poster{pixel_x = -32;pixel_y = 0},/turf/open/floor/wood,/area/crew_quarters/theatre)
-"bVE" = (/obj/structure/closet/crate,/obj/item/weapon/storage/belt/utility,/obj/item/stack/cable_coil/random,/turf/open/floor/plating,/area/maintenance/starboard)
-"bVF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 6},/obj/machinery/light_switch{pixel_y = 28},/obj/item/clothing/head/cone{pixel_x = -4;pixel_y = 4},/obj/item/clothing/head/cone{pixel_x = -4;pixel_y = 4},/obj/item/clothing/head/cone{pixel_x = -4;pixel_y = 4},/obj/item/clothing/head/cone{pixel_x = -4;pixel_y = 4},/obj/item/clothing/head/cone{pixel_x = -4;pixel_y = 4},/turf/open/floor/plasteel/caution{dir = 9},/area/atmos)
-"bVG" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 1},/turf/open/floor/plasteel/caution{dir = 1},/area/atmos)
-"bVH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/caution{dir = 1},/area/atmos)
-"bVI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/open/floor/plasteel/black/corner{dir = 1},/area/atmos)
-"bVJ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 2},/obj/machinery/meter,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/atmos)
-"bVK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/open/floor/plasteel,/area/atmos)
-"bVL" = (/obj/machinery/atmospherics/components/binary/pump{dir = 0;name = "Port to Fuel Pipe";on = 0},/turf/open/floor/plasteel,/area/atmos)
-"bVM" = (/obj/machinery/computer/atmos_control/tank{frequency = 1441;input_tag = "co2_in";name = "Carbon Dioxide Supply Control";output_tag = "co2_out";sensors = list("co2_sensor" = "Tank")},/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/turf/open/floor/plasteel/vault,/area/atmos)
-"bVN" = (/obj/machinery/air_sensor{frequency = 1441;id_tag = "co2_sensor"},/turf/open/floor/engine/co2,/area/atmos)
-"bVO" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/turf/open/floor/engine/co2,/area/atmos)
-"bVP" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/engine/co2,/area/atmos)
-"bVQ" = (/obj/structure/chair/stool,/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/camera{c_tag = "Aft Port Solar Maintenance";dir = 4;network = list("SS13")},/turf/open/floor/plating,/area/maintenance/portsolar)
-"bVR" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/turf/open/floor/plating,/area/maintenance/portsolar)
-"bVS" = (/obj/machinery/power/terminal{icon_state = "term";dir = 1},/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/light/small{dir = 4},/obj/item/device/radio/intercom{dir = 4;name = "Station Intercom (General)";pixel_x = 27},/turf/open/floor/plating,/area/maintenance/portsolar)
-"bVT" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bVU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bVV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"bVW" = (/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/aft{name = "Aft Maintenance"})
-"bVX" = (/obj/effect/turf_decal/stripes/corner{dir = 8},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"bVY" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/sign/poster{pixel_x = 32;pixel_y = 0},/turf/open/floor/wood,/area/crew_quarters/theatre)
-"bVZ" = (/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"bWa" = (/obj/effect/landmark{name = "blobstart"},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"bWb" = (/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bWc" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bWd" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bWe" = (/obj/structure/disposalpipe/sortjunction{dir = 4;icon_state = "pipe-j2s";sortType = 16},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bWf" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{req_access_txt = "0";req_one_access_txt = "12;5;39;37;25;28"},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bWg" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/junction{icon_state = "pipe-j2";dir = 4},/turf/open/floor/plasteel/vault,/area/hallway/primary/central)
-"bWh" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/hallway/primary/central)
-"bWi" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/machinery/camera{c_tag = "Central Primary Hallway - Aft-Port Corner";dir = 1;network = list("SS13")},/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/hallway/primary/central)
-"bWj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/hallway/primary/central)
-"bWk" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/hallway/primary/central)
-"bWl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/airalarm{dir = 1;pixel_y = -22},/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/hallway/primary/central)
-"bWm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 0;pixel_y = -30},/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/hallway/primary/central)
-"bWn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/hallway/primary/central)
-"bWo" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bWp" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bWq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bWr" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/turf/open/floor/plasteel{icon_state = "L2"},/area/hallway/primary/central)
-"bWs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "L4"},/area/hallway/primary/central)
-"bWt" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel{icon_state = "L6"},/area/hallway/primary/central)
-"bWu" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/landmark{name = "lightsout"},/turf/open/floor/plasteel{icon_state = "L8"},/area/hallway/primary/central)
-"bWv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel{icon_state = "L10"},/area/hallway/primary/central)
-"bWw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "L12"},/area/hallway/primary/central)
-"bWx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel{desc = "";icon_state = "L14"},/area/hallway/primary/central)
-"bWy" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bWz" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bWA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central)
-"bWB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/hallway/primary/central)
-"bWC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/hallway/primary/central)
-"bWD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/hallway/primary/central)
-"bWE" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/obj/structure/extinguisher_cabinet{pixel_x = 0;pixel_y = -30},/obj/machinery/camera{c_tag = "Central Primary Hallway - Aft-Starboard Corner";dir = 1;network = list("SS13")},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/hallway/primary/central)
-"bWF" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/hallway/primary/central)
-"bWG" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/obj/machinery/airalarm{dir = 1;pixel_y = -22},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/hallway/primary/central)
-"bWH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/green/corner{dir = 2},/area/hallway/primary/central)
-"bWI" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/green/side{dir = 6},/area/hallway/primary/central)
-"bWJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/green,/area/hallway/primary/central)
-"bWK" = (/obj/structure/table/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/window/westright{dir = 4;name = "Hydroponics Desk";req_access_txt = "0";req_one_access_txt = "30;35"},/obj/item/weapon/folder/white{pixel_x = 4;pixel_y = -3},/obj/item/weapon/folder/white{pixel_x = 4;pixel_y = -3},/turf/open/floor/plasteel/green{dir = 4},/area/hydroponics)
-"bWL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/chair/office/dark{dir = 8},/obj/effect/landmark/start{name = "Botanist"},/turf/open/floor/plasteel/green/side{dir = 10},/area/hydroponics)
-"bWM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/green/side{dir = 6},/area/hydroponics)
-"bWN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/green/side{dir = 8},/area/hydroponics)
-"bWO" = (/obj/machinery/hydroponics/constructable,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hydroponics)
-"bWP" = (/obj/machinery/hydroponics/constructable,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel,/area/hydroponics)
-"bWQ" = (/turf/open/floor/plasteel/green/side{dir = 4},/area/hydroponics)
-"bWR" = (/turf/open/floor/plasteel/green/side{dir = 8},/area/hydroponics)
-"bWS" = (/obj/machinery/hydroponics/constructable,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/hydroponics)
-"bWT" = (/obj/machinery/hydroponics/constructable,/turf/open/floor/plasteel,/area/hydroponics)
-"bWU" = (/obj/machinery/seed_extractor,/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/hydroponics)
-"bWV" = (/obj/structure/extinguisher_cabinet{pixel_x = -27;pixel_y = 0},/obj/structure/closet/wardrobe/botanist,/turf/open/floor/plasteel/hydrofloor,/area/hydroponics)
-"bWW" = (/obj/structure/table/wood,/obj/item/weapon/paper,/obj/structure/sign/poster{pixel_y = -32},/turf/open/floor/wood,/area/security/vacantoffice)
-"bWX" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/disposalpipe/segment,/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/starboard)
-"bWY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/starboard)
-"bWZ" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg2"},/area/maintenance/starboard)
-"bXa" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard)
-"bXb" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/starboard)
-"bXc" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden,/turf/open/floor/plating,/area/maintenance/starboard)
-"bXd" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard)
-"bXe" = (/obj/machinery/door/airlock/maintenance{name = "Atmospherics Maintenance";req_access_txt = "24"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/atmos)
-"bXf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/caution{dir = 8},/area/atmos)
-"bXg" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 5},/turf/open/floor/plasteel,/area/atmos)
-"bXh" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/machinery/atmospherics/components/binary/pump{dir = 8;name = "Fuel Pipe to Filter";on = 0},/turf/open/floor/plasteel,/area/atmos)
-"bXi" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/general/visible{color = "#330000";dir = 1},/turf/open/floor/plasteel,/area/atmos)
-"bXj" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/general/visible{color = "#330000";dir = 4},/turf/open/floor/plasteel,/area/atmos)
-"bXk" = (/obj/effect/landmark/start{name = "Atmospheric Technician"},/obj/machinery/atmospherics/pipe/simple/general/visible{color = "#330000";dir = 4},/turf/open/floor/plasteel,/area/atmos)
-"bXl" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/machinery/atmospherics/pipe/simple/general/visible{color = "#330000";dir = 4},/turf/open/floor/plasteel,/area/atmos)
-"bXm" = (/obj/machinery/atmospherics/pipe/simple/general/visible{color = "#330000";dir = 4},/turf/open/floor/plasteel,/area/atmos)
-"bXn" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{color = "#330000"},/obj/machinery/meter{color = ""},/turf/open/floor/plasteel,/area/atmos)
-"bXo" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8;name = "Pure to Fuel Pipe";on = 0},/turf/open/floor/plasteel,/area/atmos)
-"bXp" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 4},/turf/open/floor/plasteel,/area/atmos)
-"bXq" = (/obj/machinery/atmospherics/components/trinary/filter{dir = 1;filter_type = "co2";on = 1},/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/obj/structure/window/reinforced,/turf/open/floor/plasteel/vault,/area/atmos)
-"bXr" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8;frequency = 1441;id = "co2_in";pixel_y = 1},/turf/open/floor/engine/co2,/area/atmos)
-"bXs" = (/obj/machinery/camera{c_tag = "Atmospherics Tank - CO2";dir = 8;network = list("SS13");pixel_x = 0;pixel_y = 0},/turf/open/floor/engine/co2,/area/atmos)
-"bXt" = (/obj/machinery/power/solar_control{id = "aftport";name = "Aft Port Solar Control";track = 0},/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/portsolar)
-"bXu" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plating,/area/maintenance/portsolar)
-"bXv" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;name = "EXTERNAL AIRLOCK";pixel_x = 32;pixel_y = 0},/turf/open/floor/plating,/area/maintenance/portsolar)
-"bXw" = (/obj/structure/rack,/obj/item/weapon/poster/contraband,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bXx" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bXy" = (/obj/structure/closet,/obj/item/device/flashlight,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"bXz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/aft{name = "Aft Maintenance"})
-"bXA" = (/obj/structure/table,/obj/item/device/flashlight/lamp,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"bXB" = (/obj/structure/chair/stool,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"bXC" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"bXD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating{icon_state = "platingdmg2"},/area/maintenance/aft{name = "Aft Maintenance"})
-"bXE" = (/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"bXF" = (/obj/structure/girder,/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"bXG" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bXH" = (/obj/structure/closet/crate,/obj/item/weapon/coin/silver,/obj/item/device/flashlight,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bXI" = (/obj/structure/closet,/obj/item/clothing/neck/stethoscope,/obj/item/weapon/hemostat,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bXJ" = (/obj/item/weapon/storage/box/lights/mixed,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"bXK" = (/turf/closed/wall,/area/medical/medbay2{name = "Medbay Storage"})
-"bXL" = (/turf/closed/wall,/area/security/checkpoint/medical)
-"bXM" = (/obj/structure/extinguisher_cabinet{pixel_x = -27;pixel_y = 0},/obj/item/weapon/twohanded/required/kirbyplants{icon_state = "applebush";layer = 4.1},/turf/open/floor/plasteel/blue/corner{dir = 8},/area/hallway/primary/central)
-"bXN" = (/turf/open/floor/plasteel/blue/corner{dir = 8},/area/hallway/primary/central)
-"bXO" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plasteel/blue/corner{dir = 8},/area/hallway/primary/central)
-"bXP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/blue/corner{dir = 8},/area/hallway/primary/central)
-"bXQ" = (/obj/machinery/camera{c_tag = "Central Primary Hallway - Aft-Port";dir = 1;network = list("SS13")},/turf/open/floor/plasteel/blue/corner{dir = 8},/area/hallway/primary/central)
-"bXR" = (/obj/machinery/light/small,/turf/open/floor/plasteel/blue/corner{dir = 8},/area/hallway/primary/central)
-"bXS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plasteel/blue/corner{dir = 8},/area/hallway/primary/central)
-"bXT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/purple/corner{dir = 2},/area/hallway/primary/central)
-"bXU" = (/obj/machinery/light/small,/turf/open/floor/plasteel/purple/corner{dir = 2},/area/hallway/primary/central)
-"bXV" = (/turf/open/floor/plasteel/purple/corner{dir = 2},/area/hallway/primary/central)
-"bXW" = (/obj/machinery/camera{c_tag = "Central Primary Hallway - Aft-Starboard";dir = 1;network = list("SS13")},/turf/open/floor/plasteel/purple/corner{dir = 2},/area/hallway/primary/central)
-"bXX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/purple/corner{dir = 2},/area/hallway/primary/central)
-"bXY" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/purple/corner{dir = 2},/area/hallway/primary/central)
-"bXZ" = (/obj/machinery/firealarm{dir = 4;pixel_x = 24},/obj/item/weapon/twohanded/required/kirbyplants{icon_state = "plant-10";layer = 4.1},/turf/open/floor/plasteel/purple/corner{dir = 2},/area/hallway/primary/central)
-"bYa" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal/bin,/obj/machinery/newscaster{pixel_y = -29},/turf/open/floor/plasteel/vault,/area/hallway/primary/central)
-"bYb" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "0";req_one_access_txt = "12;35;47"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"bYc" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/hallway/primary/central)
-"bYd" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Hydroponics Storage"},/turf/open/floor/plasteel/hydrofloor,/area/hallway/primary/central)
-"bYe" = (/obj/machinery/camera/autoname{dir = 4;network = list("SS13")},/obj/item/weapon/book/manual/hydroponics_pod_people,/obj/item/weapon/paper/hydroponics,/obj/machinery/requests_console{department = "Hydroponics";departmentType = 2;pixel_x = -31;pixel_y = -2},/obj/structure/table/glass,/turf/open/floor/plasteel/green,/area/hydroponics)
-"bYf" = (/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/weapon/hand_labeler,/obj/structure/table/glass,/turf/open/floor/plasteel/green,/area/hydroponics)
-"bYg" = (/obj/effect/landmark/start{name = "Botanist"},/obj/machinery/holopad,/turf/open/floor/plasteel,/area/hydroponics)
-"bYh" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/turf/open/floor/plasteel,/area/hydroponics)
-"bYi" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/hydroponics)
-"bYj" = (/turf/open/floor/plasteel,/area/hydroponics)
-"bYk" = (/obj/effect/landmark/start{name = "Botanist"},/turf/open/floor/plasteel/green/side{dir = 4},/area/hydroponics)
-"bYl" = (/obj/item/seeds/wheat,/obj/item/seeds/sugarcane,/obj/item/seeds/potato,/obj/item/seeds/apple,/obj/item/weapon/grown/corncob,/obj/item/weapon/reagent_containers/food/snacks/grown/carrot,/obj/item/weapon/reagent_containers/food/snacks/grown/wheat,/obj/item/weapon/reagent_containers/food/snacks/grown/pumpkin{pixel_y = 5},/obj/structure/extinguisher_cabinet{pixel_x = 27;pixel_y = 0},/obj/machinery/light{icon_state = "tube1";dir = 4},/obj/machinery/camera/autoname{dir = 8;network = list("SS13")},/obj/structure/table/glass,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/hydroponics)
-"bYm" = (/obj/structure/closet/secure_closet/hydroponics,/turf/open/floor/plasteel/hydrofloor,/area/hydroponics)
-"bYn" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/obj/effect/landmark/start{name = "Botanist"},/turf/open/floor/plasteel/hydrofloor,/area/hydroponics)
-"bYo" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/disposalpipe/junction{icon_state = "pipe-j2";dir = 2},/turf/open/floor/plating,/area/maintenance/starboard)
-"bYp" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard)
-"bYq" = (/obj/structure/rack,/obj/item/weapon/tank/internals/oxygen,/obj/item/weapon/tank/internals/oxygen,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/device/radio/intercom{dir = 0;name = "Station Intercom (General)";pixel_x = 27;pixel_y = 0},/turf/open/floor/plasteel/vault{dir = 1},/area/teleporter{name = "\improper Teleporter Room"})
-"bYr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/starboard)
-"bYs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/starboard)
-"bYt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/starboard)
-"bYu" = (/obj/item/weapon/cigbutt,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/maintenance/starboard)
-"bYv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/light{dir = 8},/obj/machinery/airalarm{dir = 4;pixel_x = -23;pixel_y = 0},/obj/machinery/camera{c_tag = "Atmospherics - Port-Aft";dir = 4;network = list("SS13")},/turf/open/floor/plasteel/caution{dir = 8},/area/atmos)
-"bYw" = (/obj/machinery/atmospherics/pipe/simple/general/visible{color = "#330000"},/turf/open/floor/plasteel,/area/atmos)
-"bYx" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 6},/turf/open/floor/plasteel,/area/atmos)
-"bYy" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4;name = "N2 to Airmix";on = 1},/turf/open/floor/plasteel,/area/atmos)
-"bYz" = (/obj/machinery/atmospherics/components/trinary/mixer{dir = 4;node1_concentration = 0.8;node2_concentration = 0.2;on = 1;pixel_x = 0;pixel_y = 0;target_pressure = 4500},/turf/open/floor/plasteel,/area/atmos)
-"bYA" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 10;initialize_directions = 10},/turf/open/floor/plasteel,/area/atmos)
-"bYB" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/light{dir = 4;icon_state = "tube1"},/turf/open/floor/plasteel/black,/area/atmos)
-"bYC" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/portsolar)
-"bYD" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/door/airlock/external{name = "Solar Maintenance";req_access = null;req_access_txt = "10; 13"},/turf/open/floor/plating,/area/maintenance/portsolar)
-"bYE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"bYF" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -2;pixel_y = 8},/obj/item/weapon/poster/contraband,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"bYG" = (/obj/structure/table,/obj/item/weapon/folder/white{pixel_x = 4;pixel_y = -3},/obj/item/weapon/folder/white{pixel_x = 4;pixel_y = -3},/obj/item/weapon/pen,/obj/structure/extinguisher_cabinet{pixel_x = 0;pixel_y = -30},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"bYH" = (/obj/structure/light_construct,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/aft{name = "Aft Maintenance"})
-"bYI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"bYJ" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/weapon/stock_parts/cell/high{charge = 100;maxcharge = 15000},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"bYK" = (/obj/machinery/mech_bay_recharge_port,/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"bYL" = (/turf/open/floor/mech_bay_recharge_floor,/area/maintenance/aft{name = "Aft Maintenance"})
-"bYM" = (/obj/machinery/computer/mech_bay_power_console,/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/turf/open/floor/bluegrid,/area/maintenance/aft{name = "Aft Maintenance"})
-"bYN" = (/obj/machinery/space_heater,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/aft{name = "Aft Maintenance"})
-"bYO" = (/obj/item/weapon/vending_refill/cola,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"bYP" = (/obj/structure/closet/crate{icon_state = "crateopen";opened = 1},/obj/item/weapon/storage/box/donkpockets,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"bYQ" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/door/airlock/maintenance{req_access_txt = "0";req_one_access_txt = "12;5;39;25;28"},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"bYR" = (/obj/machinery/vending/medical,/turf/open/floor/plasteel/whiteblue/side{dir = 9},/area/medical/medbay2{name = "Medbay Storage"})
-"bYS" = (/obj/structure/noticeboard{pixel_y = 32},/obj/structure/table,/obj/item/weapon/reagent_containers/glass/beaker/large{pixel_y = 3},/obj/item/weapon/reagent_containers/glass/beaker{pixel_x = 8;pixel_y = 2},/obj/item/weapon/reagent_containers/glass/bottle/charcoal{pixel_x = -5;pixel_y = 0},/obj/item/weapon/reagent_containers/glass/bottle/morphine,/obj/item/weapon/reagent_containers/syringe/epinephrine{pixel_x = 3;pixel_y = -2},/obj/item/weapon/reagent_containers/dropper,/turf/open/floor/plasteel/whiteblue/side{dir = 1},/area/medical/medbay2{name = "Medbay Storage"})
-"bYT" = (/obj/structure/closet/secure_closet/medical3,/obj/item/weapon/screwdriver{pixel_y = 6},/obj/structure/sign/nosmoking_2{pixel_x = 0;pixel_y = 30},/turf/open/floor/plasteel/whiteblue/side{dir = 1},/area/medical/medbay2{name = "Medbay Storage"})
-"bYU" = (/obj/structure/closet/secure_closet/medical3,/obj/machinery/light{dir = 1},/obj/machinery/airalarm{pixel_y = 24},/obj/item/weapon/screwdriver{pixel_y = 6},/turf/open/floor/plasteel/whiteblue/side{dir = 1},/area/medical/medbay2{name = "Medbay Storage"})
-"bYV" = (/obj/item/device/radio/intercom{broadcasting = 1;freerange = 0;frequency = 1485;listening = 0;name = "Station Intercom (Medbay)";pixel_x = 0;pixel_y = 30},/obj/structure/closet/wardrobe/white/medical,/obj/item/clothing/suit/hooded/wintercoat/medical,/turf/open/floor/plasteel/whiteblue/side{dir = 1},/area/medical/medbay2{name = "Medbay Storage"})
-"bYW" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel/whiteblue/side{dir = 5},/area/medical/medbay2{name = "Medbay Storage"})
-"bYX" = (/obj/machinery/power/apc{dir = 8;name = "Medical Security Checkpoint APC";pixel_x = -24;pixel_y = 0},/obj/machinery/airalarm{pixel_y = 28},/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/obj/structure/closet/secure_closet/security/med,/turf/open/floor/plasteel/red/side{dir = 9},/area/security/checkpoint/medical)
-"bYY" = (/obj/machinery/recharger{pixel_y = 4},/obj/structure/table/reinforced,/obj/machinery/requests_console{department = "Security";departmentType = 5;pixel_y = 30},/obj/machinery/light{dir = 1},/obj/machinery/camera{c_tag = "Security Post - Medbay";dir = 2;network = list("SS13","Medbay")},/turf/open/floor/plasteel/red/side{dir = 1},/area/security/checkpoint/medical)
-"bYZ" = (/obj/item/weapon/pen,/obj/structure/table/reinforced,/obj/structure/reagent_dispensers/peppertank{pixel_x = 30;pixel_y = 0},/obj/item/weapon/folder/red,/obj/item/weapon/book/manual/wiki/security_space_law{pixel_x = 3;pixel_y = 4},/obj/machinery/newscaster/security_unit{pixel_y = 32},/obj/item/weapon/screwdriver{pixel_y = 10},/obj/item/device/radio/off,/turf/open/floor/plasteel/red/side{dir = 5},/area/security/checkpoint/medical)
-"bZa" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/medical/medbay{name = "Medbay Central"})
-"bZb" = (/obj/structure/sign/bluecross_2,/turf/closed/wall,/area/medical/medbay{name = "Medbay Central"})
-"bZc" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/white/side{dir = 2},/area/medical/medbay{name = "Medbay Central"})
-"bZd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/white/side{dir = 2},/area/medical/medbay{name = "Medbay Central"})
-"bZe" = (/obj/structure/sign/directions/security{desc = "A direction sign, pointing out which way the security department is.";dir = 1;icon_state = "direction_sec";pixel_x = 0;pixel_y = 8},/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the engineering department is.";dir = 4;icon_state = "direction_eng";pixel_y = 0},/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the bridge is.";dir = 1;icon_state = "direction_bridge";name = "bridge";pixel_y = -8},/turf/closed/wall,/area/medical/medbay{name = "Medbay Central"})
-"bZf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass,/turf/open/floor/plasteel/blue/corner{dir = 8},/area/hallway/primary/aft)
-"bZg" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass,/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"bZh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass,/turf/open/floor/plasteel/purple/corner{dir = 2},/area/hallway/primary/aft)
-"bZi" = (/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the medical department is.";dir = 8;icon_state = "direction_med";name = "medical department";pixel_y = 8},/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the escape arm is.";icon_state = "direction_evac";name = "escape arm"},/obj/structure/sign/directions/engineering{desc = "A direction sign, pointing out which way the research department is.";dir = 4;icon_state = "direction_sci";name = "research department";pixel_y = -8},/turf/closed/wall,/area/medical/research{name = "Research Division"})
-"bZj" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/medical/research{name = "Research Division"})
-"bZk" = (/obj/structure/sign/science,/turf/closed/wall,/area/medical/research{name = "Research Division"})
-"bZl" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white/side{dir = 2},/area/medical/research{name = "Research Division"})
-"bZm" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white/side{dir = 2},/area/medical/research{name = "Research Division"})
-"bZn" = (/turf/closed/wall,/area/medical/research{name = "Research Division"})
-"bZo" = (/turf/closed/wall,/area/security/checkpoint/science{name = "Security Post - Research Division"})
-"bZp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"bZq" = (/obj/item/weapon/reagent_containers/food/snacks/grown/wheat,/obj/item/weapon/reagent_containers/food/snacks/grown/watermelon,/obj/item/weapon/reagent_containers/food/snacks/grown/citrus/orange,/obj/item/weapon/reagent_containers/food/snacks/grown/grapes,/obj/structure/extinguisher_cabinet{pixel_x = -27;pixel_y = 0},/obj/structure/table/glass,/turf/open/floor/plasteel/hydrofloor,/area/hallway/primary/central)
-"bZr" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/hydrofloor,/area/hallway/primary/central)
-"bZs" = (/obj/item/weapon/cultivator,/obj/item/weapon/crowbar,/obj/item/device/plant_analyzer,/obj/item/weapon/reagent_containers/glass/bucket,/obj/structure/table/glass,/turf/open/floor/plasteel/hydrofloor,/area/hallway/primary/central)
-"bZt" = (/obj/structure/sink{icon_state = "sink";dir = 8;pixel_x = -12;pixel_y = 2},/turf/open/floor/plasteel/green/side{dir = 9},/area/hydroponics)
-"bZu" = (/obj/effect/landmark/start{name = "Botanist"},/turf/open/floor/plasteel/green/side{dir = 8},/area/hydroponics)
-"bZv" = (/obj/machinery/biogenerator,/obj/machinery/light_switch{pixel_x = 26;pixel_y = 0},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/hydroponics)
-"bZw" = (/obj/structure/closet/secure_closet/hydroponics,/obj/machinery/light_switch{pixel_x = -26;pixel_y = 0},/turf/open/floor/plasteel/hydrofloor,/area/hydroponics)
-"bZx" = (/obj/machinery/icecream_vat,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen)
-"bZy" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/starboard)
-"bZz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard)
-"bZA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/starboard)
-"bZB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/starboard)
-"bZC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/maintenance/incinerator)
-"bZD" = (/obj/machinery/door/airlock/maintenance{name = "Incinerator Access";req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/incinerator)
-"bZE" = (/turf/closed/wall,/area/maintenance/incinerator)
-"bZF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 5},/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = -30},/turf/open/floor/plasteel/caution{dir = 8},/area/atmos)
-"bZG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 10},/turf/open/floor/plasteel,/area/atmos)
-"bZH" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4;name = "N2 to Pure"},/turf/open/floor/plasteel,/area/atmos)
-"bZI" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/open/floor/plasteel,/area/atmos)
-"bZJ" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/open/floor/plasteel,/area/atmos)
-"bZK" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 1},/turf/open/floor/plasteel,/area/atmos)
-"bZL" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 4},/obj/machinery/meter,/turf/open/floor/plasteel,/area/atmos)
-"bZM" = (/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/item/weapon/paper_bin{pixel_x = -2;pixel_y = 8},/obj/structure/window/reinforced{dir = 1;pixel_y = 1},/turf/open/floor/plasteel/caution{dir = 4},/area/atmos)
-"bZN" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plating/airless,/area/maintenance/portsolar)
-"bZO" = (/obj/machinery/door/airlock/maintenance{name = "Storage Room";req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"bZP" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/bluegrid,/area/maintenance/aft{name = "Aft Maintenance"})
-"bZQ" = (/turf/open/floor/bluegrid,/area/maintenance/aft{name = "Aft Maintenance"})
-"bZR" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"bZS" = (/obj/structure/closet/firecloset,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"bZT" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"bZU" = (/obj/machinery/light/small{dir = 1},/obj/structure/mopbucket,/obj/item/weapon/mop,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"bZV" = (/obj/item/weapon/storage/toolbox/emergency,/obj/item/weapon/hand_labeler,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"bZW" = (/obj/item/weapon/cigbutt,/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"bZX" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=4";dir = 4;freq = 1400;location = "Medbay"},/obj/structure/plasticflaps{opacity = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/window/northleft{dir = 8;name = "MuleBot Access";req_access_txt = "50"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/medical/medbay2{name = "Medbay Storage"})
-"bZY" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/whiteblue/side{dir = 8},/area/medical/medbay2{name = "Medbay Storage"})
-"bZZ" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay2{name = "Medbay Storage"})
-"caa" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay2{name = "Medbay Storage"})
-"cab" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel/white,/area/medical/medbay2{name = "Medbay Storage"})
-"cac" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/whiteblue/side{dir = 4},/area/medical/medbay2{name = "Medbay Storage"})
-"cad" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Medbay Security Post";req_access_txt = "63"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/red,/area/security/checkpoint/medical)
-"cae" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/light_switch{pixel_y = -25},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel/red/side{dir = 8},/area/security/checkpoint/medical)
-"caf" = (/turf/open/floor/plasteel,/area/security/checkpoint/medical)
-"cag" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel/red/side{dir = 4},/area/security/checkpoint/medical)
-"cah" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/security/checkpoint/medical)
-"cai" = (/obj/structure/table,/obj/item/weapon/pen,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/item/weapon/storage/firstaid/regular,/turf/open/floor/plasteel/whiteblue/side{dir = 1},/area/medical/medbay{name = "Medbay Central"})
-"caj" = (/obj/machinery/light/small{dir = 1},/obj/structure/table,/obj/item/weapon/reagent_containers/glass/bottle/epinephrine{pixel_x = 7;pixel_y = -3},/obj/item/weapon/reagent_containers/glass/bottle/charcoal{pixel_x = -4;pixel_y = -3},/obj/item/weapon/reagent_containers/syringe/epinephrine{pixel_x = 3;pixel_y = -2},/obj/item/weapon/reagent_containers/dropper,/obj/item/weapon/reagent_containers/glass/beaker{pixel_x = 8;pixel_y = 2},/turf/open/floor/plasteel/whiteblue/side{dir = 1},/area/medical/medbay{name = "Medbay Central"})
-"cak" = (/obj/structure/chair,/turf/open/floor/plasteel/whiteblue/side{dir = 1},/area/medical/medbay{name = "Medbay Central"})
-"cal" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plasteel/white,/area/medical/medbay{name = "Medbay Central"})
-"cam" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay{name = "Medbay Central"})
-"can" = (/obj/structure/chair,/obj/effect/landmark/start{name = "Assistant"},/turf/open/floor/plasteel/whiteblue/side{dir = 1},/area/medical/medbay{name = "Medbay Central"})
-"cao" = (/obj/structure/table,/obj/item/weapon/storage/box/bodybags{pixel_x = 3;pixel_y = 2},/turf/open/floor/plasteel/whiteblue/side{dir = 1},/area/medical/medbay{name = "Medbay Central"})
-"cap" = (/obj/structure/table,/obj/item/stack/medical/gauze,/obj/item/stack/medical/ointment,/obj/item/stack/medical/bruise_pack,/turf/open/floor/plasteel/whiteblue/side{dir = 1},/area/medical/medbay{name = "Medbay Central"})
-"caq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plasteel/blue/corner{dir = 8},/area/hallway/primary/aft)
-"car" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cas" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/purple/corner{dir = 2},/area/hallway/primary/aft)
-"cat" = (/obj/structure/table,/obj/item/weapon/folder/white{pixel_x = 4;pixel_y = -3},/obj/item/clothing/glasses/science,/turf/open/floor/plasteel/whitepurple/side{dir = 1},/area/medical/research{name = "Research Division"})
-"cau" = (/obj/structure/table,/obj/item/weapon/paper/pamphlet,/turf/open/floor/plasteel/whitepurple/side{dir = 1},/area/medical/research{name = "Research Division"})
-"cav" = (/obj/structure/chair,/obj/effect/landmark/start{name = "Assistant"},/turf/open/floor/plasteel/whitepurple/side{dir = 1},/area/medical/research{name = "Research Division"})
-"caw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"cax" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"cay" = (/obj/structure/chair,/turf/open/floor/plasteel/whitepurple/side{dir = 1},/area/medical/research{name = "Research Division"})
-"caz" = (/obj/structure/table,/obj/item/stack/cable_coil,/obj/item/device/assembly/igniter{pixel_x = -4;pixel_y = -4},/obj/item/weapon/screwdriver{pixel_y = 16},/obj/item/device/gps{gpstag = "RD0"},/turf/open/floor/plasteel/whitepurple/side{dir = 1},/area/medical/research{name = "Research Division"})
-"caA" = (/obj/structure/table,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/electronics/airlock,/obj/item/device/assembly/timer{pixel_x = -4;pixel_y = 2},/turf/open/floor/plasteel/whitepurple/side{dir = 1},/area/medical/research{name = "Research Division"})
-"caB" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -2;pixel_y = 4},/obj/item/weapon/pen,/obj/machinery/status_display{density = 0;layer = 4;pixel_x = 0;pixel_y = 32},/obj/machinery/light/small{dir = 1},/obj/machinery/firealarm{dir = 4;pixel_x = 24},/obj/machinery/camera{c_tag = "Research Division - Lobby";dir = 2;network = list("SS13","RD")},/turf/open/floor/plasteel/whitepurple/side{dir = 1},/area/medical/research{name = "Research Division"})
-"caC" = (/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/obj/machinery/light_switch{pixel_x = -27;pixel_y = 6},/obj/machinery/newscaster/security_unit{pixel_y = 32},/turf/open/floor/plasteel/red/side{dir = 9},/area/security/checkpoint/science{name = "Security Post - Research Division"})
-"caD" = (/obj/structure/table,/obj/machinery/requests_console{department = "Security";departmentType = 5;pixel_y = 30},/obj/machinery/button/door{id = "Biohazard";name = "Biohazard Shutter Control";pixel_x = -7;pixel_y = 0;req_access_txt = "47"},/obj/machinery/button/door{desc = "A remote control switch for the research division entryway.";id = "ResearchExt";name = "Research Exterior Airlock";normaldoorcontrol = 1;pixel_x = 7;pixel_y = 7},/obj/machinery/button/door{desc = "A remote control switch for the research division entryway.";id = "ResearchInt";name = "Research Interior Airlock";normaldoorcontrol = 1;pixel_x = 7;pixel_y = -2},/turf/open/floor/plasteel/red/side{dir = 1},/area/security/checkpoint/science{name = "Security Post - Research Division"})
-"caE" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = 1;pixel_y = 9},/obj/item/weapon/pen,/obj/machinery/firealarm{dir = 4;pixel_x = 24},/turf/open/floor/plasteel/red/side{dir = 5},/area/security/checkpoint/science{name = "Security Post - Research Division"})
-"caF" = (/obj/machinery/light/small{dir = 8},/obj/item/clothing/mask/horsehead,/obj/structure/table/wood,/obj/structure/sign/poster{pixel_x = -32;pixel_y = 0},/obj/machinery/airalarm{dir = 1;pixel_y = -22},/turf/open/floor/wood,/area/crew_quarters/theatre)
-"caG" = (/obj/machinery/firealarm{dir = 8;pixel_x = -24},/obj/structure/sink{icon_state = "sink";dir = 8;pixel_x = -12;pixel_y = 2},/turf/open/floor/plasteel/hydrofloor,/area/hallway/primary/central)
-"caH" = (/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel/hydrofloor,/area/hallway/primary/central)
-"caI" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/hydrofloor,/area/hallway/primary/central)
-"caJ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_medical{id_tag = "";name = "Hydroponics";req_access_txt = "35"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/hydrofloor,/area/hydroponics)
-"caK" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/green/side{dir = 10},/area/hydroponics)
-"caL" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/green/side{dir = 6},/area/hydroponics)
-"caM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/green/side{dir = 10},/area/hydroponics)
-"caN" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/green/side{dir = 2},/area/hydroponics)
-"caO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel/green/side{dir = 2},/area/hydroponics)
-"caP" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/effect/turf_decal/bot{dir = 2},/turf/open/floor/plasteel{dir = 2},/area/hydroponics)
-"caQ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Hydroponics Backroom";req_access_txt = "35";req_one_access_txt = "0"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/effect/turf_decal/bot{dir = 2},/turf/open/floor/plasteel{dir = 2},/area/hydroponics)
-"caR" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/hydrofloor,/area/hydroponics)
-"caS" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/hydrofloor,/area/hydroponics)
-"caT" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/maintenance{name = "Hydroponics Maintenance";req_access_txt = "35";req_one_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/hydroponics)
-"caU" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/sortjunction{sortType = 21},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/starboard)
-"caV" = (/obj/structure/rack,/obj/item/weapon/extinguisher,/obj/item/clothing/mask/gas,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/starboard)
-"caW" = (/obj/structure/closet,/obj/item/stack/cable_coil/random,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/starboard)
-"caX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light_switch{pixel_x = 0;pixel_y = 0},/turf/closed/wall,/area/maintenance/incinerator)
-"caY" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/floorgrime,/area/maintenance/incinerator)
-"caZ" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/structure/sign/deathsposal{pixel_x = 0;pixel_y = 32},/turf/open/floor/plasteel/floorgrime,/area/maintenance/incinerator)
-"cba" = (/obj/machinery/power/smes{capacity = 9e+006;charge = 10000},/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/turf/open/floor/plasteel/floorgrime,/area/maintenance/incinerator)
-"cbb" = (/obj/machinery/door/window/northleft{dir = 1;icon_state = "left";name = "Inner Pipe Access";req_access_txt = "24"},/turf/open/floor/plasteel/black,/area/atmos)
-"cbc" = (/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/obj/structure/window/reinforced{dir = 1;pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 8},/turf/open/floor/plasteel/black,/area/atmos)
-"cbd" = (/obj/machinery/atmospherics/components/trinary/filter{dir = 4;filter_type = "n2";on = 1},/obj/structure/window/reinforced,/turf/open/floor/plasteel/red,/area/atmos)
-"cbe" = (/obj/structure/window/reinforced,/obj/machinery/computer/atmos_control/tank{frequency = 1441;input_tag = "n2_in";name = "Nitrogen Supply Control";output_tag = "n2_out";sensors = list("n2_sensor" = "Tank")},/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/general/visible{color = "#330000"},/turf/open/floor/plasteel/red,/area/atmos)
-"cbf" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/components/binary/pump{dir = 1;name = "Nitrogen Outlet";on = 1},/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/floor/plasteel/red,/area/atmos)
-"cbg" = (/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/window/northleft{dir = 1;icon_state = "left";name = "Inner Pipe Access";req_access_txt = "24"},/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/floor/plasteel/black,/area/atmos)
-"cbh" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/components/trinary/filter{dir = 4;filter_type = "o2";on = 1},/turf/open/floor/plasteel/blue,/area/atmos)
-"cbi" = (/obj/structure/window/reinforced,/obj/machinery/computer/atmos_control/tank{frequency = 1441;input_tag = "o2_in";name = "Oxygen Supply Control";output_tag = "o2_out";sensors = list("o2_sensor" = "Tank")},/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/floor/plasteel/blue,/area/atmos)
-"cbj" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/components/binary/pump{dir = 1;name = "O2 to Airmix";on = 1},/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/floor/plasteel/blue,/area/atmos)
-"cbk" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/obj/machinery/door/window/northleft{dir = 1;icon_state = "left";name = "Inner Pipe Access";req_access_txt = "24"},/obj/machinery/atmospherics/components/binary/pump{dir = 1;name = "O2 to Pure"},/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/floor/plasteel/black,/area/atmos)
-"cbl" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/floor/plasteel/barber{dir = 8},/area/atmos)
-"cbm" = (/obj/docking_port/mobile{dheight = 0;dir = 2;dwidth = 11;height = 15;id = "whiteship";launch_status = 0;name = "NT Recovery White-Ship";port_angle = -90;preferred_direction = 4;roundstart_move = "whiteship_away";width = 27},/obj/machinery/door/airlock/titanium{name = "recovery shuttle external airlock"},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/obj/docking_port/stationary{dir = 2;dwidth = 11;height = 15;id = "whiteship_home";name = "SS13: Auxiliary Dock, Station-Port";width = 27},/turf/open/floor/mineral/titanium/blue,/area/shuttle/abandoned)
-"cbn" = (/obj/structure/window/reinforced,/obj/machinery/atmospherics/components/binary/pump{dir = 1;name = "Air to Pure"},/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/floor/plasteel/barber{dir = 8},/area/atmos)
-"cbo" = (/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 9},/turf/open/floor/plasteel/barber{dir = 8},/area/atmos)
-"cbp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cbq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/aft{name = "Aft Maintenance"})
-"cbr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cbs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cbt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9;pixel_y = 0},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cbu" = (/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/aft{name = "Aft Maintenance"})
-"cbv" = (/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/light_construct{dir = 8},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cbw" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/aft{name = "Aft Maintenance"})
-"cbx" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cby" = (/obj/machinery/mecha_part_fabricator{dir = 2;name = "counterfeit exosuit fabricator";req_access = null},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cbz" = (/obj/structure/rack,/obj/item/stack/sheet/cardboard,/obj/item/device/radio/off,/obj/structure/light_construct{dir = 1},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cbA" = (/obj/structure/closet,/obj/item/stack/sheet/metal{amount = 34},/obj/item/weapon/extinguisher/mini,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cbB" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/sortjunction{dir = 1;icon_state = "pipe-j1s";sortType = 9},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cbC" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cbD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/maintenance{req_access_txt = "0";req_one_access_txt = "12;5"},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cbE" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/item/hand_labeler_refill,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cbF" = (/obj/item/weapon/reagent_containers/glass/bottle/morphine,/obj/item/trash/candy,/obj/structure/disposalpipe/segment{dir = 4},/obj/item/clothing/neck/stethoscope,/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/aft{name = "Aft Maintenance"})
-"cbG" = (/obj/item/weapon/storage/box/lights/mixed,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cbH" = (/obj/item/weapon/tank/internals/air,/obj/item/weapon/tank/internals/air,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cbI" = (/obj/machinery/door/airlock{name = "Medbay Emergency Storage";req_access_txt = "5"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/medical/medbay2{name = "Medbay Storage"})
-"cbJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/whiteblue/side{dir = 8},/area/medical/medbay2{name = "Medbay Storage"})
-"cbK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay2{name = "Medbay Storage"})
-"cbL" = (/obj/effect/landmark{name = "lightsout"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/turf/open/floor/plasteel/white,/area/medical/medbay2{name = "Medbay Storage"})
-"cbM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel/white,/area/medical/medbay2{name = "Medbay Storage"})
-"cbN" = (/obj/machinery/holopad,/obj/effect/landmark/start{name = "Medical Doctor"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/medical/medbay2{name = "Medbay Storage"})
-"cbO" = (/obj/machinery/camera{c_tag = "Medbay Storage";dir = 8;network = list("SS13","Medbay")},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/closet/crate/freezer/surplus_limbs,/obj/item/weapon/reagent_containers/glass/beaker/synthflesh,/turf/open/floor/plasteel/whiteblue/side{dir = 4},/area/medical/medbay2{name = "Medbay Storage"})
-"cbP" = (/obj/machinery/requests_console{announcementConsole = 0;department = "Medbay";departmentType = 1;name = "Medbay RC";pixel_x = 0;pixel_y = 0;pixel_z = 0},/turf/closed/wall,/area/security/checkpoint/medical)
-"cbQ" = (/obj/machinery/computer/secure_data,/obj/machinery/computer/security/telescreen{desc = "Used for monitoring medbay to ensure patient safety.";dir = 1;name = "Medbay Monitor";network = list("Medbay");pixel_x = 0;pixel_y = -29},/obj/item/device/radio/intercom{dir = 0;name = "Station Intercom (General)";pixel_x = -27;pixel_y = -10},/turf/open/floor/plasteel/red/side,/area/security/checkpoint/medical)
-"cbR" = (/obj/structure/chair/office/dark,/obj/machinery/button/door{desc = "A remote control switch for the medbay foyer.";id = "MedbayFoyer";name = "Medbay Doors Control";normaldoorcontrol = 1;pixel_x = 24;pixel_y = -24},/obj/effect/landmark/start/depsec/medical,/turf/open/floor/plasteel/red/side{dir = 6},/area/security/checkpoint/medical)
-"cbS" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/security/checkpoint/medical)
-"cbT" = (/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay{name = "Medbay Central"})
-"cbU" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel/white,/area/medical/medbay{name = "Medbay Central"})
-"cbV" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay{name = "Medbay Central"})
-"cbW" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/obj/machinery/holopad,/turf/open/floor/plasteel/white,/area/medical/medbay{name = "Medbay Central"})
-"cbX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay{name = "Medbay Central"})
-"cbY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay{name = "Medbay Central"})
-"cbZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel/white,/area/medical/medbay{name = "Medbay Central"})
-"cca" = (/turf/open/floor/plasteel/white,/area/medical/medbay{name = "Medbay Central"})
-"ccb" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel/white/side{dir = 8},/area/medical/medbay{name = "Medbay Central"})
-"ccc" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel/white/side{dir = 4},/area/medical/research{name = "Research Division"})
-"ccd" = (/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"cce" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"ccf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"ccg" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"cch" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/machinery/holopad,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"cci" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"ccj" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1;initialize_directions = 11},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"cck" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/security/checkpoint/science{name = "Security Post - Research Division"})
-"ccl" = (/obj/item/weapon/screwdriver{pixel_y = 10},/obj/item/device/radio/off,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/red/side{dir = 8},/area/security/checkpoint/science{name = "Security Post - Research Division"})
-"ccm" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/obj/structure/chair/office/dark{dir = 1},/obj/effect/landmark/start/depsec/science,/turf/open/floor/plasteel,/area/security/checkpoint/science{name = "Security Post - Research Division"})
-"ccn" = (/obj/machinery/computer/secure_data,/obj/item/weapon/book/manual/wiki/security_space_law,/obj/machinery/computer/security/telescreen{desc = "Used for watching the RD's goons from the safety of his office.";dir = 8;name = "Research Monitor";network = list("RD");pixel_x = 28;pixel_y = 2},/turf/open/floor/plasteel/red/side{dir = 4},/area/security/checkpoint/science{name = "Security Post - Research Division"})
-"cco" = (/obj/machinery/light/small,/obj/item/toy/dummy,/obj/item/toy/prize/honk{pixel_y = 12},/obj/structure/table/wood,/obj/item/device/radio/intercom{name = "Station Intercom (General)";pixel_y = -29},/turf/open/floor/wood,/area/crew_quarters/theatre)
-"ccp" = (/obj/machinery/vending/hydroseeds{slogan_delay = 700},/turf/open/floor/plasteel/vault,/area/hallway/primary/central)
-"ccq" = (/obj/structure/table,/obj/item/weapon/book/manual/hydroponics_pod_people,/obj/machinery/light,/obj/item/weapon/paper/hydroponics,/obj/machinery/camera{c_tag = "Hydroponics - Foyer";dir = 1;network = list("SS13")},/obj/item/device/radio/intercom{pixel_y = -25},/turf/open/floor/plasteel/vault,/area/hallway/primary/central)
-"ccr" = (/obj/machinery/vending/hydronutrients,/turf/open/floor/plasteel/vault,/area/hallway/primary/central)
-"ccs" = (/obj/machinery/disposal/bin{pixel_x = -2;pixel_y = -2},/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/light_switch{pixel_y = -28},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/hydroponics)
-"cct" = (/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/hydroponics)
-"ccu" = (/obj/machinery/hydroponics/constructable,/obj/item/device/radio/intercom{name = "Station Intercom (General)";pixel_y = -29},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hydroponics)
-"ccv" = (/obj/machinery/hydroponics/constructable,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hydroponics)
-"ccw" = (/obj/machinery/hydroponics/constructable,/obj/machinery/light,/obj/machinery/power/apc{dir = 2;name = "Hydroponics APC";pixel_x = 0;pixel_y = -28},/obj/structure/cable/yellow,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hydroponics)
-"ccx" = (/obj/machinery/hydroponics/constructable,/obj/machinery/airalarm{dir = 1;pixel_y = -22},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hydroponics)
-"ccy" = (/obj/machinery/hydroponics/constructable,/obj/machinery/firealarm{dir = 1;pixel_y = -24},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hydroponics)
-"ccz" = (/obj/item/weapon/wrench,/obj/item/clothing/suit/apron,/obj/item/clothing/tie/armband/hydro,/obj/structure/table/glass,/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/hydroponics)
-"ccA" = (/obj/item/weapon/reagent_containers/spray/plantbgone{pixel_x = 0;pixel_y = 3},/obj/item/weapon/reagent_containers/spray/plantbgone{pixel_x = 8;pixel_y = 8},/obj/item/weapon/reagent_containers/spray/plantbgone{pixel_x = 13;pixel_y = 5},/obj/item/weapon/watertank,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/item/weapon/grenade/chem_grenade/antiweed,/obj/structure/table/glass,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hydroponics)
-"ccB" = (/obj/machinery/door/window/eastright{dir = 1;name = "Hydroponics Delivery";req_access_txt = "35"},/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hydroponics)
-"ccC" = (/obj/machinery/navbeacon{codes_txt = "delivery;dir=8";dir = 8;freq = 1400;location = "Hydroponics"},/obj/structure/plasticflaps{opacity = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/hydroponics)
-"ccD" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/starboard)
-"ccE" = (/obj/machinery/atmospherics/components/unary/tank/toxins{dir = 4},/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plasteel/floorgrime,/area/maintenance/incinerator)
-"ccF" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4;name = "plasma tank pump"},/turf/open/floor/plasteel/floorgrime,/area/maintenance/incinerator)
-"ccG" = (/obj/structure/sink/kitchen{desc = "A sink used for washing one's hands and face. It looks rusty and home-made";name = "old sink";pixel_y = 28},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/turf/open/floor/plasteel/floorgrime,/area/maintenance/incinerator)
-"ccH" = (/obj/machinery/light{dir = 1},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3;pixel_y = 7},/obj/item/weapon/pen,/turf/open/floor/plasteel/floorgrime,/area/maintenance/incinerator)
-"ccI" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel/floorgrime,/area/maintenance/incinerator)
-"ccJ" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel/floorgrime,/area/maintenance/incinerator)
-"ccK" = (/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/power/terminal{icon_state = "term";dir = 1},/obj/machinery/atmospherics/pipe/simple/general/visible{color = "#330000";dir = 6},/turf/open/floor/plasteel/floorgrime,/area/maintenance/incinerator)
-"ccL" = (/obj/machinery/atmospherics/pipe/simple/general/visible{color = "#330000";dir = 4},/turf/closed/wall/r_wall,/area/atmos)
-"ccM" = (/obj/machinery/atmospherics/pipe/simple/general/visible{color = "#330000";dir = 4},/turf/open/floor/plasteel/black,/area/atmos)
-"ccN" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/atmospherics/pipe/simple/general/visible{color = "#330000";dir = 4},/turf/open/floor/plasteel/black,/area/atmos)
-"ccO" = (/obj/machinery/atmospherics/pipe/simple/general/visible{color = "#330000";dir = 9},/turf/open/floor/plasteel/black,/area/atmos)
-"ccP" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/open/floor/plasteel/black,/area/atmos)
-"ccQ" = (/turf/open/floor/plasteel/black,/area/atmos)
-"ccR" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/plasteel/black,/area/atmos)
-"ccS" = (/obj/machinery/light,/turf/open/floor/plasteel/black,/area/atmos)
-"ccT" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 8;initialize_directions = 11},/turf/open/floor/plasteel/black,/area/atmos)
-"ccU" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plasteel/black,/area/atmos)
-"ccV" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 9},/obj/machinery/camera{c_tag = "Atmospherics - Starboard Aft";dir = 1;network = list("SS13")},/turf/open/floor/plasteel/black,/area/atmos)
-"ccW" = (/obj/machinery/door/airlock/external{req_access_txt = "24";req_one_access_txt = "0"},/turf/open/floor/plating,/area/atmos)
-"ccX" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;name = "EXTERNAL AIRLOCK";pixel_x = 0;pixel_y = -32},/obj/machinery/light/small{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/atmos)
-"ccY" = (/turf/open/floor/plating,/area/atmos)
-"ccZ" = (/obj/machinery/door/window/northleft{dir = 8;icon_state = "left";name = "glass door";req_access_txt = "24"},/obj/machinery/door/window/northleft{dir = 4;icon_state = "left";name = "glass door";req_access_txt = "24"},/turf/open/floor/plating,/area/atmos)
-"cda" = (/obj/structure/lattice/catwalk,/obj/structure/cable,/turf/open/space,/area/solar/port)
-"cdb" = (/obj/structure/girder,/obj/structure/grille,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cdc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cdd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cde" = (/obj/machinery/door/airlock/maintenance{name = "Storage Room";req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cdf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cdg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cdh" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cdi" = (/obj/structure/closet,/obj/item/stack/sheet/glass{amount = 12},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cdj" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cdk" = (/obj/item/trash/semki,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cdl" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cdm" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cdn" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cdo" = (/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/obj/structure/closet/firecloset,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cdp" = (/obj/machinery/light_switch{pixel_x = -26;pixel_y = 0},/obj/machinery/light/small{dir = 8},/obj/structure/closet/l3closet,/turf/open/floor/plasteel/whiteblue/side{dir = 10},/area/medical/medbay2{name = "Medbay Storage"})
-"cdq" = (/obj/machinery/firealarm{dir = 1;pixel_y = -24},/obj/structure/closet/l3closet,/turf/open/floor/plasteel/whiteblue/side{dir = 2},/area/medical/medbay2{name = "Medbay Storage"})
-"cdr" = (/obj/item/weapon/storage/box/bodybags{pixel_x = 3;pixel_y = 3},/obj/item/weapon/storage/box/beakers{pixel_x = 2;pixel_y = 2},/obj/item/weapon/storage/box/rxglasses{pixel_x = 1;pixel_y = 1},/obj/item/weapon/reagent_containers/spray/cleaner,/obj/structure/table/glass,/obj/item/clothing/glasses/hud/health,/obj/item/clothing/glasses/hud/health,/obj/item/clothing/glasses/hud/health,/turf/open/floor/plasteel/whiteblue/corner{dir = 8},/area/medical/medbay2{name = "Medbay Storage"})
-"cds" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay2{name = "Medbay Storage"})
-"cdt" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/medical/medbay2{name = "Medbay Storage"})
-"cdu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/whiteblue/corner{dir = 4},/area/medical/medbay2{name = "Medbay Storage"})
-"cdv" = (/obj/item/weapon/storage/belt/medical{pixel_x = 0;pixel_y = 2},/obj/item/weapon/storage/belt/medical{pixel_x = 0;pixel_y = 2},/obj/item/weapon/storage/belt/medical{pixel_x = 0;pixel_y = 2},/obj/item/clothing/neck/stethoscope,/obj/item/clothing/neck/stethoscope,/obj/item/weapon/gun/syringe,/obj/structure/table/glass,/turf/open/floor/plasteel/whiteblue/side{dir = 5},/area/medical/medbay2{name = "Medbay Storage"})
-"cdw" = (/turf/closed/wall,/area/medical/medbay{name = "Medbay Central"})
-"cdx" = (/obj/machinery/computer/crew,/turf/open/floor/plasteel/vault,/area/medical/medbay{name = "Medbay Central"})
-"cdy" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/shower{dir = 4;icon_state = "shower";name = "emergency shower"},/obj/machinery/airalarm{dir = 4;icon_state = "alarm0";pixel_x = -22},/turf/open/floor/plasteel/white,/area/medical/medbay{name = "Medbay Central"})
-"cdz" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8;initialize_directions = 11},/turf/open/floor/plasteel/white,/area/medical/medbay{name = "Medbay Central"})
-"cdA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay{name = "Medbay Central"})
-"cdB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/mob/living/simple_animal/bot/medbot{auto_patrol = 1;desc = "A little medical robot, officially part of the NanoTrasen medical inspectorate. He looks somewhat underwhelmed.";name = "Inspector Johnson"},/turf/open/floor/plasteel/white,/area/medical/medbay{name = "Medbay Central"})
-"cdC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel/white,/area/medical/medbay{name = "Medbay Central"})
-"cdD" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/turf/open/floor/plasteel/white,/area/medical/medbay{name = "Medbay Central"})
-"cdE" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/turf/open/floor/plasteel/white,/area/medical/medbay{name = "Medbay Central"})
-"cdF" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white/side{dir = 8},/area/medical/medbay{name = "Medbay Central"})
-"cdG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/blue/corner{dir = 8},/area/hallway/primary/aft)
-"cdH" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cdI" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4;initialize_directions = 11},/turf/open/floor/plasteel/purple/corner{dir = 2},/area/hallway/primary/aft)
-"cdJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"cdK" = (/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"cdL" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"cdM" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"cdN" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_Toxins = 0},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"cdO" = (/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"cdP" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/security/checkpoint/science{name = "Security Post - Research Division"})
-"cdQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel/red/side{dir = 8},/area/security/checkpoint/science{name = "Security Post - Research Division"})
-"cdR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel,/area/security/checkpoint/science{name = "Security Post - Research Division"})
-"cdS" = (/obj/structure/reagent_dispensers/peppertank{pixel_x = 30;pixel_y = 0},/obj/structure/chair{dir = 8},/obj/machinery/camera{c_tag = "Security Post - Research Division";dir = 8;network = list("SS13","RD");pixel_x = 0},/turf/open/floor/plasteel/red/side{dir = 4},/area/security/checkpoint/science{name = "Security Post - Research Division"})
-"cdT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cdU" = (/obj/machinery/door/airlock/maintenance{name = "Hydroponics Maintenance";req_access_txt = "35";req_one_access_txt = "0"},/turf/open/floor/plating,/area/hydroponics)
-"cdV" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/disposalpipe/segment,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/starboard)
-"cdW" = (/obj/item/device/flashlight,/turf/open/floor/plating,/area/maintenance/starboard)
-"cdX" = (/obj/structure/closet/crate,/obj/item/weapon/coin/silver,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/maintenance/starboard)
-"cdY" = (/obj/structure/reagent_dispensers/watertank,/obj/item/weapon/storage/box/lights/mixed,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/maintenance/starboard)
-"cdZ" = (/obj/structure/sign/nosmoking_2{pixel_x = -28},/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4;name = "input gas connector port"},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/open/floor/plasteel/floorgrime,/area/maintenance/incinerator)
-"cea" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4;name = "input port pump"},/turf/open/floor/plasteel/floorgrime,/area/maintenance/incinerator)
-"ceb" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4;initialize_directions = 11},/obj/machinery/meter,/turf/open/floor/plasteel/floorgrime,/area/maintenance/incinerator)
-"cec" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel/floorgrime,/area/maintenance/incinerator)
-"ced" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel/floorgrime,/area/maintenance/incinerator)
-"cee" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel/floorgrime,/area/maintenance/incinerator)
-"cef" = (/obj/structure/sign/fire{pixel_x = 32;pixel_y = 0},/obj/machinery/atmospherics/components/binary/pump{dir = 2;name = "Fuel Pipe to Incinerator";on = 0},/turf/open/floor/plasteel/floorgrime,/area/maintenance/incinerator)
-"ceg" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/plating,/area/atmos)
-"ceh" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/open/floor/plating,/area/atmos)
-"cei" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/open/floor/plating,/area/atmos)
-"cej" = (/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port)
-"cek" = (/obj/machinery/door/airlock/external{req_access_txt = "13"},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cel" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;name = "EXTERNAL AIRLOCK";pixel_x = 0;pixel_y = 32},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cem" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cen" = (/obj/structure/girder,/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"ceo" = (/obj/structure/girder,/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9;pixel_y = 0},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cep" = (/obj/structure/rack,/obj/item/weapon/screwdriver{pixel_y = 16},/obj/item/weapon/hand_labeler,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"ceq" = (/obj/structure/rack,/obj/item/stack/cable_coil{pixel_x = -1;pixel_y = -3},/obj/item/weapon/wrench,/obj/item/device/flashlight/seclite,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cer" = (/obj/structure/rack,/obj/item/stack/rods{amount = 23},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"ces" = (/obj/structure/table,/obj/item/weapon/folder/white{pixel_x = 4;pixel_y = -3},/obj/item/weapon/folder/white{pixel_x = 4;pixel_y = -3},/obj/item/weapon/pen,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cet" = (/obj/item/clothing/mask/fakemoustache,/obj/item/clothing/mask/cigarette/pipe,/obj/machinery/camera{c_tag = "Theatre - Backstage";dir = 1;network = list("SS13")},/obj/structure/table/wood,/obj/structure/sign/poster{pixel_y = -32},/turf/open/floor/wood,/area/crew_quarters/theatre)
-"ceu" = (/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cev" = (/turf/closed/wall,/area/medical/sleeper{name = "Sleepers"})
-"cew" = (/obj/item/weapon/storage/firstaid/regular{pixel_x = 3;pixel_y = -3},/obj/item/weapon/storage/firstaid/fire{pixel_x = 3;pixel_y = 3},/obj/item/weapon/storage/firstaid/fire,/obj/item/weapon/storage/firstaid/fire{pixel_x = -3;pixel_y = -3},/obj/structure/table/glass,/turf/open/floor/plasteel/whiteblue/side{dir = 8},/area/medical/medbay2{name = "Medbay Storage"})
-"cex" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/medical/medbay2{name = "Medbay Storage"})
-"cey" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4;initialize_directions = 11},/turf/open/floor/plasteel/white,/area/medical/medbay2{name = "Medbay Storage"})
-"cez" = (/obj/item/weapon/storage/firstaid/regular{pixel_x = 3;pixel_y = -3},/obj/item/weapon/storage/firstaid/toxin{pixel_x = 3;pixel_y = 3},/obj/item/weapon/storage/firstaid/toxin,/obj/item/weapon/storage/firstaid/toxin{pixel_x = -3;pixel_y = -3},/obj/structure/table/glass,/turf/open/floor/plasteel/whiteblue/side{dir = 4},/area/medical/medbay2{name = "Medbay Storage"})
-"ceA" = (/obj/structure/sink{dir = 8;icon_state = "sink";pixel_x = -12;pixel_y = 2},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/obj/machinery/firealarm{dir = 8;pixel_x = -26;pixel_y = 28},/obj/machinery/light{dir = 1},/obj/machinery/newscaster{pixel_x = -30;pixel_y = 0},/turf/open/floor/plasteel/whiteblue/side{dir = 9},/area/medical/medbay{name = "Medbay Central"})
-"ceB" = (/obj/structure/chair/office/light{dir = 4},/obj/effect/landmark/start{name = "Medical Doctor"},/obj/machinery/button/door{desc = "A remote control switch for the medbay foyer.";id = "MedbayFoyer";name = "Medbay Doors Control";normaldoorcontrol = 1;pixel_x = 24;pixel_y = 24},/turf/open/floor/plasteel/whiteblue/side{dir = 5},/area/medical/medbay{name = "Medbay Central"})
-"ceC" = (/obj/machinery/telecomms/server/presets/command,/turf/open/floor/bluegrid{name = "Mainframe Base";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server)
-"ceD" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plasteel/whiteblue/side{dir = 2},/area/medical/medbay{name = "Medbay Central"})
-"ceE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/whiteblue/side{dir = 2},/area/medical/medbay{name = "Medbay Central"})
-"ceF" = (/obj/structure/bed/roller,/obj/item/device/radio/intercom{broadcasting = 0;freerange = 0;frequency = 1485;listening = 1;name = "Station Intercom (Medbay)";pixel_x = 0;pixel_y = -30},/obj/machinery/camera{c_tag = "Medbay Foyer";dir = 1;network = list("SS13","Medbay")},/turf/open/floor/plasteel/whiteblue/side{dir = 2},/area/medical/medbay{name = "Medbay Central"})
-"ceG" = (/obj/machinery/light,/obj/structure/bed/roller,/turf/open/floor/plasteel/whiteblue/side{dir = 2},/area/medical/medbay{name = "Medbay Central"})
-"ceH" = (/obj/structure/bed/roller,/turf/open/floor/plasteel/whiteblue/side{dir = 2},/area/medical/medbay{name = "Medbay Central"})
-"ceI" = (/obj/item/weapon/twohanded/required/kirbyplants{icon_state = "plant-11"},/turf/open/floor/plasteel/whiteyellow/side{dir = 2},/area/medical/medbay{name = "Medbay Central"})
-"ceJ" = (/turf/open/floor/plasteel/whiteyellow/side{dir = 2},/area/medical/medbay{name = "Medbay Central"})
-"ceK" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/firealarm{dir = 1;pixel_x = 26;pixel_y = -26},/turf/open/floor/plasteel/whiteyellow/side{dir = 2},/area/medical/medbay{name = "Medbay Central"})
-"ceL" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"ceM" = (/obj/machinery/autolathe{icon_state = "autolathe";name = "public autolathe"},/turf/open/floor/plasteel/whitepurple/side{dir = 2},/area/medical/research{name = "Research Division"})
-"ceN" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/weapon/stock_parts/cell/high{charge = 100;maxcharge = 15000},/turf/open/floor/plasteel/whitepurple/side{dir = 2},/area/medical/research{name = "Research Division"})
-"ceO" = (/obj/structure/table,/obj/item/device/paicard,/obj/machinery/newscaster{pixel_x = -1;pixel_y = -29},/turf/open/floor/plasteel/whitepurple/side{dir = 2},/area/medical/research{name = "Research Division"})
-"ceP" = (/obj/structure/table,/obj/item/weapon/stock_parts/cell/potato,/obj/machinery/light,/turf/open/floor/plasteel/whitepurple/side{dir = 2},/area/medical/research{name = "Research Division"})
-"ceQ" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel/whitepurple/side{dir = 2},/area/medical/research{name = "Research Division"})
-"ceR" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-j2";dir = 4},/turf/open/floor/plasteel/whitepurple/side{dir = 2},/area/medical/research{name = "Research Division"})
-"ceS" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 0;pixel_y = -30},/obj/item/weapon/twohanded/required/kirbyplants{icon_state = "plant-08";layer = 4.1},/turf/open/floor/plasteel/whitepurple/side{dir = 2},/area/medical/research{name = "Research Division"})
-"ceT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/turf/open/floor/plasteel/whitepurple/side{dir = 2},/area/medical/research{name = "Research Division"})
-"ceU" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/obj/structure/sink{dir = 4;icon_state = "sink";pixel_x = 11;pixel_y = 0},/turf/open/floor/plasteel/whitepurple/side{dir = 2},/area/medical/research{name = "Research Division"})
-"ceV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/red/side{dir = 8},/area/security/checkpoint/science{name = "Security Post - Research Division"})
-"ceW" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/security/checkpoint/science{name = "Security Post - Research Division"})
-"ceX" = (/obj/item/device/radio/intercom{dir = 4;name = "Station Intercom (General)";pixel_x = 27},/obj/machinery/light{dir = 4},/obj/structure/chair{dir = 8},/turf/open/floor/plasteel/red/side{dir = 4},/area/security/checkpoint/science{name = "Security Post - Research Division"})
-"ceY" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"ceZ" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cfa" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg2"},/area/maintenance/aft{name = "Aft Maintenance"})
-"cfb" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cfc" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cfd" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/aft{name = "Aft Maintenance"})
-"cfe" = (/obj/machinery/firealarm{dir = 4;pixel_x = 24},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/sign/poster{pixel_y = -32},/turf/open/floor/wood,/area/crew_quarters/theatre)
-"cff" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/aft{name = "Aft Maintenance"})
-"cfg" = (/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cfh" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cfi" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cfj" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/turf/open/floor/plating,/area/maintenance/starboard)
-"cfk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard)
-"cfl" = (/obj/machinery/door/airlock/maintenance{name = "Storage Room";req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard)
-"cfm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/starboard)
-"cfn" = (/obj/machinery/portable_atmospherics/canister,/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4;name = "input gas connector port"},/turf/open/floor/plasteel/floorgrime,/area/maintenance/incinerator)
-"cfo" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/general/visible,/turf/open/floor/plasteel/floorgrime,/area/maintenance/incinerator)
-"cfp" = (/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/open/floor/plasteel/floorgrime,/area/maintenance/incinerator)
-"cfq" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/open/floor/plasteel/floorgrime,/area/maintenance/incinerator)
-"cfr" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/components/binary/pump{dir = 4;name = "input port pump"},/turf/open/floor/plasteel/floorgrime,/area/maintenance/incinerator)
-"cfs" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4;initialize_directions = 11},/obj/machinery/meter,/turf/open/floor/plasteel/floorgrime,/area/maintenance/incinerator)
-"cft" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/incinerator)
-"cfu" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/space,/area/space)
-"cfv" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/open/space,/area/space)
-"cfw" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 8},/turf/open/space,/area/space)
-"cfx" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 9},/turf/open/space,/area/space)
-"cfy" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/open/space,/area/space)
-"cfz" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/space,/area/solar/port)
-"cfA" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/airlock/external{req_access_txt = "13"},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cfB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cfC" = (/obj/item/trash/pistachios,/obj/structure/closet,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/extinguisher,/obj/item/weapon/storage/belt/utility,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cfD" = (/obj/item/weapon/storage/box,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cfE" = (/obj/structure/closet/crate,/obj/item/weapon/reagent_containers/dropper,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cfF" = (/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cfG" = (/obj/structure/closet/wardrobe/pjs,/turf/open/floor/plasteel/vault,/area/medical/sleeper{name = "Sleepers"})
-"cfH" = (/obj/structure/closet/wardrobe/pjs,/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel/vault,/area/medical/sleeper{name = "Sleepers"})
-"cfI" = (/obj/machinery/computer/med_data,/obj/machinery/light{dir = 1},/obj/structure/sign/nosmoking_2{pixel_x = 0;pixel_y = 30},/turf/open/floor/plasteel/vault,/area/medical/sleeper{name = "Sleepers"})
-"cfJ" = (/obj/structure/table,/obj/item/weapon/folder/white{pixel_x = 4;pixel_y = -3},/obj/item/weapon/folder/white{pixel_x = 4;pixel_y = -3},/obj/item/weapon/pen,/obj/machinery/power/apc{dir = 1;name = "Sleeper Room APC";pixel_y = 24},/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/obj/item/clothing/neck/stethoscope,/turf/open/floor/plasteel/vault,/area/medical/sleeper{name = "Sleepers"})
-"cfK" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -2;pixel_y = 4},/obj/machinery/light_switch{pixel_x = 11;pixel_y = 23},/turf/open/floor/plasteel/vault,/area/medical/sleeper{name = "Sleepers"})
-"cfL" = (/obj/item/weapon/storage/firstaid/regular{pixel_x = 3;pixel_y = -3},/obj/item/weapon/storage/firstaid/brute{pixel_x = 3;pixel_y = 3},/obj/item/weapon/storage/firstaid/brute,/obj/item/weapon/storage/firstaid/brute{pixel_x = -3;pixel_y = -3},/obj/machinery/power/apc{dir = 2;name = "Medbay Storage APC";pixel_y = -24},/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/obj/machinery/light_switch{pixel_x = -26;pixel_y = 0},/obj/machinery/light/small,/obj/structure/table/glass,/turf/open/floor/plasteel/whiteblue/side{dir = 10},/area/medical/medbay2{name = "Medbay Storage"})
-"cfM" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel/whiteblue/side{dir = 2},/area/medical/medbay2{name = "Medbay Storage"})
-"cfN" = (/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/mob/living/simple_animal/bot/cleanbot{name = "Scrubs, MD";on = 0},/turf/open/floor/plasteel/whiteblue/side{dir = 2},/area/medical/medbay2{name = "Medbay Storage"})
-"cfO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/whiteblue/side{dir = 2},/area/medical/medbay2{name = "Medbay Storage"})
-"cfP" = (/obj/item/weapon/storage/firstaid/regular{pixel_x = 3;pixel_y = -3},/obj/item/weapon/storage/firstaid/o2{pixel_x = 3;pixel_y = 3},/obj/item/weapon/storage/firstaid/o2,/obj/item/weapon/storage/firstaid/o2{pixel_x = -3;pixel_y = -3},/obj/structure/table/glass,/turf/open/floor/plasteel/whiteblue/side{dir = 6},/area/medical/medbay2{name = "Medbay Storage"})
-"cfQ" = (/obj/machinery/airalarm{dir = 4;pixel_x = -23;pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/whiteblue/side{dir = 10},/area/medical/medbay{name = "Medbay Central"})
-"cfR" = (/obj/structure/chair/office/light{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel/whiteblue/side{dir = 6},/area/medical/medbay{name = "Medbay Central"})
-"cfS" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/item/weapon/reagent_containers/food/drinks/britcup,/turf/open/floor/plasteel/whitegreen,/area/medical/medbay{name = "Medbay Central"})
-"cfT" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plasteel/whiteblue,/area/medical/medbay{name = "Medbay Central"})
-"cfU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/sink{dir = 4;icon_state = "sink";pixel_x = 11;pixel_y = 0},/turf/open/floor/plasteel/whiteblue,/area/medical/medbay{name = "Medbay Central"})
-"cfV" = (/obj/structure/sign/directions/medical{pixel_y = -7},/turf/closed/wall,/area/medical/chemistry)
-"cfW" = (/obj/structure/sign/chemistry,/turf/closed/wall,/area/medical/chemistry)
-"cfX" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/shutters/preopen{id = "chemistry_shutters";name = "chemistry shutters"},/turf/open/floor/plating,/area/medical/chemistry)
-"cfY" = (/obj/machinery/smartfridge/chemistry,/turf/closed/wall,/area/medical/chemistry)
-"cfZ" = (/obj/structure/table/reinforced,/obj/item/weapon/folder/white{pixel_x = 4;pixel_y = -3},/obj/machinery/door/window/northleft{dir = 2;name = "Chemistry Desk";req_access_txt = "5; 33"},/obj/machinery/door/firedoor,/obj/item/weapon/folder/white{pixel_x = 4;pixel_y = -3},/obj/machinery/door/poddoor/shutters/preopen{id = "chemistry_shutters";name = "chemistry shutters"},/turf/open/floor/plasteel/whiteyellow{dir = 4},/area/medical/chemistry)
-"cga" = (/turf/closed/wall,/area/medical/chemistry)
-"cgb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/hallway/primary/aft)
-"cgc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/hallway/primary/aft)
-"cgd" = (/turf/closed/wall/r_wall,/area/toxins/lab)
-"cge" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/shutters/preopen{id = "research_shutters";name = "research shutters"},/turf/open/floor/plating,/area/toxins/lab)
-"cgf" = (/obj/structure/table/reinforced,/obj/item/weapon/pen,/obj/item/weapon/folder/white{pixel_x = 4;pixel_y = -3},/obj/item/weapon/folder/white{pixel_x = 4;pixel_y = -3},/obj/machinery/door/firedoor,/obj/machinery/door/window/eastright{dir = 2;name = "Research and Development Desk";req_access_txt = "7"},/obj/machinery/door/poddoor/shutters/preopen{id = "research_shutters";name = "research shutters"},/turf/open/floor/plating,/area/toxins/lab)
-"cgg" = (/obj/structure/sign/directions/science{pixel_y = -8},/turf/closed/wall/r_wall,/area/toxins/lab)
-"cgh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/door/poddoor/preopen{id = "Biohazard";name = "biohazard containment door"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/medical/research{name = "Research Division"})
-"cgi" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/poddoor/preopen{id = "Biohazard";name = "biohazard containment door"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/medical/research{name = "Research Division"})
-"cgj" = (/obj/machinery/power/apc{dir = 8;name = "Security Post - Research Division APC";pixel_x = -24},/obj/structure/cable/yellow,/turf/open/floor/plasteel/red/side{dir = 10},/area/security/checkpoint/science{name = "Security Post - Research Division"})
-"cgk" = (/obj/structure/closet/secure_closet/security/science,/turf/open/floor/plasteel/red/side,/area/security/checkpoint/science{name = "Security Post - Research Division"})
-"cgl" = (/obj/structure/filingcabinet,/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/turf/open/floor/plasteel/red/side{dir = 6},/area/security/checkpoint/science{name = "Security Post - Research Division"})
-"cgm" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cgn" = (/obj/item/weapon/cigbutt,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/aft{name = "Aft Maintenance"})
-"cgo" = (/turf/closed/wall/r_wall,/area/medical/research{name = "Research Division"})
-"cgp" = (/obj/machinery/door/airlock/maintenance{name = "Research Maintenance";req_access_txt = "47";req_one_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plating,/area/medical/research{name = "Research Division"})
-"cgq" = (/turf/closed/wall/r_wall,/area/toxins/explab)
-"cgr" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cgs" = (/turf/open/floor/plating{icon_state = "platingdmg2"},/area/maintenance/aft{name = "Aft Maintenance"})
-"cgt" = (/obj/machinery/power/apc{dir = 8;name = "Incinerator APC";pixel_x = -24;pixel_y = 0},/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/turf/open/floor/plasteel/floorgrime,/area/maintenance/incinerator)
-"cgu" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/floorgrime,/area/maintenance/incinerator)
-"cgv" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/turf/open/floor/plasteel/floorgrime,/area/maintenance/incinerator)
-"cgw" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/turf/open/floor/plasteel/floorgrime,/area/maintenance/incinerator)
-"cgx" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/floorgrime,/area/maintenance/incinerator)
-"cgy" = (/obj/machinery/telecomms/server/presets/service,/turf/open/floor/bluegrid{name = "Mainframe Base";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server)
-"cgz" = (/turf/closed/wall/r_wall,/area/maintenance/incinerator)
-"cgA" = (/obj/machinery/atmospherics/pipe/simple,/obj/machinery/meter,/obj/structure/grille,/turf/closed/wall/r_wall,/area/atmos)
-"cgB" = (/obj/machinery/atmospherics/pipe/simple,/obj/machinery/meter{name = "Mixed Air Tank In"},/obj/structure/grille,/turf/closed/wall/r_wall,/area/atmos)
-"cgC" = (/obj/machinery/atmospherics/pipe/simple,/obj/machinery/meter{name = "Mixed Air Tank Out"},/obj/structure/grille,/turf/closed/wall/r_wall,/area/atmos)
-"cgD" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/open/floor/plating,/area/atmos)
-"cgE" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plating,/area/atmos)
-"cgF" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/firealarm{dir = 4;pixel_x = 28},/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen)
-"cgG" = (/obj/structure/closet/emcloset{anchored = 1;desc = "It's a storage unit for emergency breath masks and O2 tanks, and is securely bolted in place.";name = "anchored emergency closet"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cgH" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"cgI" = (/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cgJ" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cgK" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/sign/poster{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"cgL" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cgM" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cgN" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cgO" = (/obj/machinery/door/airlock/maintenance{name = "Medbay Maintenance";req_access_txt = "5"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/medical/sleeper{name = "Sleepers"})
-"cgP" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/whiteblue/side{dir = 9},/area/medical/sleeper{name = "Sleepers"})
-"cgQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/whiteblue/side{dir = 1},/area/medical/sleeper{name = "Sleepers"})
-"cgR" = (/obj/structure/chair/office/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/effect/landmark/start{name = "Medical Doctor"},/turf/open/floor/plasteel/whiteblue/side{dir = 1},/area/medical/sleeper{name = "Sleepers"})
-"cgS" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel/whiteblue/side{dir = 1},/area/medical/sleeper{name = "Sleepers"})
-"cgT" = (/obj/machinery/firealarm{dir = 4;pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/machinery/shower{dir = 8;icon_state = "shower";name = "emergency shower"},/turf/open/floor/plasteel/whiteblue/side{dir = 5},/area/medical/sleeper{name = "Sleepers"})
-"cgU" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_medical{id_tag = null;name = "Medbay Storage";req_access_txt = "5"},/turf/open/floor/plasteel/whiteblue,/area/medical/medbay2{name = "Medbay Storage"})
-"cgV" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/medical/medbay2{name = "Medbay Storage"})
-"cgW" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/glass_medical{id_tag = null;name = "Medbay Storage";req_access_txt = "5"},/turf/open/floor/plasteel/whiteblue,/area/medical/medbay2{name = "Medbay Storage"})
-"cgX" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/glass_medical{id_tag = null;name = "Medbay Desk";req_access_txt = "5"},/turf/open/floor/plasteel/whiteblue,/area/medical/medbay{name = "Medbay Central"})
-"cgY" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/medical/medbay{name = "Medbay Central"})
-"cgZ" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_medical{id_tag = "MedbayFoyer";name = "Medbay";req_access_txt = "5"},/turf/open/floor/plasteel/whiteblue,/area/medical/medbay{name = "Medbay Central"})
-"cha" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_medical{id_tag = "MedbayFoyer";name = "Medbay";req_access_txt = "5"},/turf/open/floor/plasteel/whiteblue,/area/medical/medbay{name = "Medbay Central"})
-"chb" = (/obj/machinery/chem_heater,/obj/machinery/light_switch{pixel_x = -23;pixel_y = 0},/turf/open/floor/plasteel/whiteyellow/side{dir = 9},/area/medical/chemistry)
-"chc" = (/obj/machinery/disposal/bin{pixel_x = 0},/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel/whiteyellow/side{dir = 5},/area/medical/chemistry)
-"chd" = (/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/item/weapon/reagent_containers/glass/beaker{pixel_x = 8;pixel_y = 2},/obj/item/weapon/reagent_containers/glass/beaker{pixel_x = 8;pixel_y = 2},/obj/item/weapon/reagent_containers/dropper,/obj/item/weapon/reagent_containers/dropper,/obj/structure/table/glass,/turf/open/floor/plasteel/whiteyellow{dir = 4},/area/medical/chemistry)
-"che" = (/obj/structure/chair/office/light{dir = 1},/obj/effect/landmark/start{name = "Chemist"},/turf/open/floor/plasteel/whiteyellow{dir = 4},/area/medical/chemistry)
-"chf" = (/obj/machinery/chem_dispenser{layer = 2.7},/obj/machinery/button/door{id = "chemistry_shutters";name = "chemistry shutters control";pixel_x = 24;pixel_y = 24;req_access_txt = "5; 33"},/turf/open/floor/plasteel/whiteyellow{dir = 4},/area/medical/chemistry)
-"chg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/hallway/primary/aft)
-"chh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/hallway/primary/aft)
-"chi" = (/obj/structure/table,/obj/item/weapon/crowbar,/obj/item/weapon/wrench,/obj/item/clothing/mask/gas,/obj/item/device/multitool{pixel_x = 3},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/toxins/lab)
-"chj" = (/obj/structure/sink/kitchen{desc = "A sink used for washing one's hands and face. It looks rusty and home-made";name = "old sink";pixel_y = 28},/turf/open/floor/plasteel/whitepurple/side{dir = 9},/area/toxins/lab)
-"chk" = (/turf/open/floor/plasteel/whitepurple/side{dir = 1},/area/toxins/lab)
-"chl" = (/obj/structure/noticeboard{desc = "A board for pinning important notices upon.";name = "notice board";pixel_x = 0;pixel_y = 31},/turf/open/floor/plasteel/whitepurple/side{dir = 1},/area/toxins/lab)
-"chm" = (/obj/structure/chair/office/light{dir = 1;pixel_y = 3},/obj/machinery/button/door{id = "research_shutters";name = "research shutters control";pixel_x = 28;pixel_y = 0;req_access_txt = "7"},/turf/open/floor/plasteel/whitepurple/side{dir = 5},/area/toxins/lab)
-"chn" = (/obj/machinery/telecomms/broadcaster/preset_right,/turf/open/floor/bluegrid{name = "Mainframe Base";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server)
-"cho" = (/obj/machinery/telecomms/server/presets/supply,/turf/open/floor/bluegrid{name = "Mainframe Base";initial_gas_mix = "n2=100;TEMP=80"},/area/tcommsat/server)
-"chp" = (/turf/closed/wall/r_wall,/area/security/checkpoint/science{name = "Security Post - Research Division"})
-"chq" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Security Post - Research Division";req_access_txt = "63"},/turf/open/floor/plasteel/red,/area/security/checkpoint/science{name = "Security Post - Research Division"})
-"chr" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/airlock/maintenance{req_access_txt = "0";req_one_access_txt = "12;47"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"chs" = (/obj/item/weapon/paper,/obj/structure/sign/map/left{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";icon_state = "map-left-MS";pixel_y = 32},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = -32;pixel_y = 0},/obj/item/weapon/storage/box/donkpockets,/obj/structure/table/glass,/turf/open/floor/plasteel/cafeteria{dir = 5},/area/medical/research{name = "Research Division"})
-"cht" = (/obj/structure/sign/map/right{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";icon_state = "map-right-MS";pixel_y = 32},/obj/structure/table/glass,/obj/item/device/radio/off,/turf/open/floor/plasteel/cafeteria{dir = 5},/area/medical/research{name = "Research Division"})
-"chu" = (/obj/machinery/ai_status_display{pixel_x = 0;pixel_y = 32},/obj/structure/chair/stool,/turf/open/floor/plasteel/cafeteria{dir = 5},/area/medical/research{name = "Research Division"})
-"chv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/medical/research{name = "Research Division"})
-"chw" = (/obj/structure/sign/securearea,/turf/closed/wall/r_wall,/area/assembly/showroom{name = "\improper Corporate Showroom"})
-"chx" = (/turf/open/floor/engine,/area/toxins/explab)
-"chy" = (/obj/structure/sign/nosmoking_2{pixel_y = 32},/obj/machinery/camera{c_tag = "Experimentation Lab - Test Chamber";dir = 2;network = list("SS13","RD")},/obj/machinery/light{dir = 1},/turf/open/floor/engine,/area/toxins/explab)
-"chz" = (/obj/structure/window/reinforced{dir = 1;layer = 2.9},/turf/open/floor/plasteel/black,/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"chA" = (/obj/item/device/radio/intercom{pixel_y = 25},/turf/open/floor/engine,/area/toxins/explab)
-"chB" = (/obj/machinery/space_heater,/obj/effect/landmark{name = "blobstart"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"chC" = (/obj/structure/closet/crate,/obj/item/weapon/storage/belt/utility,/obj/item/stack/cable_coil/random,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/starboard)
-"chD" = (/obj/structure/closet/crate{icon_state = "crateopen";opened = 1},/obj/item/weapon/cane,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/starboard)
-"chE" = (/obj/structure/reagent_dispensers/fueltank,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/starboard)
-"chF" = (/obj/structure/closet,/obj/item/device/flashlight,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/starboard)
-"chG" = (/obj/structure/reagent_dispensers/fueltank,/obj/item/weapon/storage/toolbox/emergency,/obj/item/device/radio/intercom{name = "Station Intercom (General)";pixel_y = -29},/turf/open/floor/plasteel/floorgrime,/area/maintenance/incinerator)
-"chH" = (/obj/structure/reagent_dispensers/watertank,/obj/item/weapon/extinguisher,/obj/machinery/light/small,/obj/structure/extinguisher_cabinet{pixel_x = 0;pixel_y = -31},/turf/open/floor/plasteel/floorgrime,/area/maintenance/incinerator)
-"chI" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/binary/valve{dir = 2;name = "output gas to space"},/turf/open/floor/plasteel/floorgrime,/area/maintenance/incinerator)
-"chJ" = (/obj/structure/extinguisher_cabinet{pixel_x = 0;pixel_y = -31},/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/canister,/turf/open/floor/plasteel/floorgrime,/area/maintenance/incinerator)
-"chK" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4},/obj/machinery/meter,/turf/open/floor/plasteel/floorgrime,/area/maintenance/incinerator)
-"chL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/plasteel/floorgrime,/area/maintenance/incinerator)
-"chM" = (/obj/structure/window/reinforced{dir = 1;layer = 2.9},/obj/machinery/light/small{dir = 1},/obj/machinery/camera{c_tag = "MiniSat Exterior - Aft";dir = 2;network = list("MiniSat")},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/black,/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"chN" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1;frequency = 1441;id = "n2_in"},/turf/open/floor/engine/n2,/area/atmos)
-"chO" = (/obj/machinery/air_sensor{frequency = 1441;id_tag = "n2_sensor"},/turf/open/floor/engine/n2,/area/atmos)
-"chP" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 0;frequency = 1441;id_tag = "n2_out";initialize_directions = 1;internal_pressure_bound = 4000;on = 1;pressure_checks = 2;pump_direction = 0},/turf/open/floor/engine/n2,/area/atmos)
-"chQ" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1;frequency = 1441;id = "o2_in"},/turf/open/floor/engine/o2,/area/atmos)
-"chR" = (/obj/machinery/air_sensor{frequency = 1441;id_tag = "o2_sensor"},/turf/open/floor/engine/o2,/area/atmos)
-"chS" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 0;frequency = 1441;id_tag = "o2_out";initialize_directions = 1;internal_pressure_bound = 4000;on = 1;pressure_checks = 2;pump_direction = 0},/turf/open/floor/engine/o2,/area/atmos)
-"chT" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1;frequency = 1441;id = "air_in"},/turf/open/floor/engine/air,/area/atmos)
-"chU" = (/obj/machinery/air_sensor{frequency = 1441;id_tag = "air_sensor"},/turf/open/floor/engine/air,/area/atmos)
-"chV" = (/obj/machinery/atmospherics/components/unary/vent_pump/high_volume{dir = 1;external_pressure_bound = 0;frequency = 1441;icon_state = "in";id_tag = "air_out";internal_pressure_bound = 2000;on = 1;pressure_checks = 2;pump_direction = 0},/turf/open/floor/engine/air,/area/atmos)
-"chW" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/components/unary/portables_connector/visible,/turf/open/floor/plating,/area/atmos)
-"chX" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/components/unary/portables_connector/visible,/turf/open/floor/plating,/area/atmos)
-"chY" = (/obj/structure/cable,/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port)
-"chZ" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cia" = (/turf/closed/wall,/area/medical/surgery)
-"cib" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/closed/wall,/area/medical/surgery)
-"cic" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/medical/surgery)
-"cid" = (/obj/machinery/door/airlock/maintenance{name = "Medbay Maintenance";req_access_txt = "5"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1;initialize_directions = 11},/turf/open/floor/plating,/area/medical/surgery)
-"cie" = (/obj/machinery/firealarm{dir = 8;pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/whiteblue/side{dir = 8},/area/medical/sleeper{name = "Sleepers"})
-"cif" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel/white,/area/medical/sleeper{name = "Sleepers"})
-"cig" = (/turf/open/floor/plasteel/white,/area/medical/sleeper{name = "Sleepers"})
-"cih" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel/white,/area/medical/sleeper{name = "Sleepers"})
-"cii" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel/whiteblue/side{dir = 4},/area/medical/sleeper{name = "Sleepers"})
-"cij" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/whiteblue,/area/medical/sleeper{name = "Sleepers"})
-"cik" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/whiteblue/side{dir = 9},/area/medical/medbay{name = "Medbay Central"})
-"cil" = (/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/whiteblue/side{dir = 1},/area/medical/medbay{name = "Medbay Central"})
-"cim" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/turf/open/floor/plasteel/whiteblue/side{dir = 1},/area/medical/medbay{name = "Medbay Central"})
-"cin" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/whiteblue/side{dir = 1},/area/medical/medbay{name = "Medbay Central"})
-"cio" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/sign/nosmoking_2{pixel_x = 0;pixel_y = 28},/turf/open/floor/plasteel/whiteblue/corner{dir = 1},/area/medical/medbay{name = "Medbay Central"})
-"cip" = (/obj/machinery/power/apc{dir = 1;name = "Medbay Central APC";pixel_y = 24},/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/camera{c_tag = "Medbay Hallway Fore";dir = 2;network = list("SS13","Medbay")},/turf/open/floor/plasteel/whiteblue/corner{dir = 4},/area/medical/medbay{name = "Medbay Central"})
-"ciq" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/turf/open/floor/plasteel/whiteblue/side{dir = 1},/area/medical/medbay{name = "Medbay Central"})
-"cir" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/whiteblue/corner{dir = 1},/area/medical/medbay{name = "Medbay Central"})
-"cis" = (/obj/machinery/button/door{desc = "A remote control switch for the medbay foyer.";id = "MedbayFoyer";name = "Medbay Exit Button";normaldoorcontrol = 1;pixel_x = 0;pixel_y = 26},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/whiteblue/corner{dir = 4},/area/medical/medbay{name = "Medbay Central"})
-"cit" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel/whiteblue/side{dir = 1},/area/medical/medbay{name = "Medbay Central"})
-"ciu" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8;initialize_directions = 11},/turf/open/floor/plasteel/whiteblue/side{dir = 1},/area/medical/medbay{name = "Medbay Central"})
-"civ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_medical{id_tag = null;name = "Chemistry Lab";req_access_txt = "5; 33"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/chemistry)
-"ciw" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/whiteyellow/side{dir = 8},/area/medical/chemistry)
-"cix" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/whiteyellow/corner{dir = 4},/area/medical/chemistry)
-"ciy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel/whiteyellow/side{dir = 1},/area/medical/chemistry)
-"ciz" = (/turf/open/floor/plasteel/whiteyellow/side{dir = 5},/area/medical/chemistry)
-"ciA" = (/obj/machinery/chem_master{layer = 2.7;pixel_x = -2},/obj/machinery/light{icon_state = "tube1";dir = 4},/obj/structure/noticeboard{desc = "A board for pinning important notices upon. Probably helpful for keeping track of requests.";name = "requests board";pixel_x = 32;pixel_y = 0},/turf/open/floor/plasteel/whiteyellow{dir = 4},/area/medical/chemistry)
-"ciB" = (/obj/machinery/r_n_d/destructive_analyzer,/obj/machinery/airalarm{dir = 4;pixel_x = -23;pixel_y = 0},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/toxins/lab)
-"ciC" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/toxins/lab)
-"ciD" = (/obj/machinery/r_n_d/protolathe,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/toxins/lab)
-"ciE" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/white,/area/toxins/lab)
-"ciF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/turf/open/floor/plasteel/white,/area/toxins/lab)
-"ciG" = (/obj/machinery/disposal/bin{pixel_x = 5},/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = 24;pixel_y = 0},/turf/open/floor/plasteel/whitepurple/side{dir = 4},/area/toxins/lab)
-"ciH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/shower{icon_state = "shower";dir = 4},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"ciI" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_Toxins = 0},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"ciJ" = (/obj/machinery/power/apc{cell_type = 10000;dir = 1;name = "Research Division APC";pixel_x = 0;pixel_y = 25},/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/machinery/camera{c_tag = "Research Division - Airlock";dir = 2;network = list("SS13","RD")},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"ciK" = (/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/medical/research{name = "Research Division"})
-"ciL" = (/obj/effect/landmark{name = "revenantspawn"},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"ciM" = (/obj/effect/landmark{name = "blobstart"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/weapon/cigbutt,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"ciN" = (/obj/structure/chair/stool,/obj/machinery/newscaster{pixel_x = -30;pixel_y = 0},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/medical/research{name = "Research Division"})
-"ciO" = (/obj/structure/chair/stool,/turf/open/floor/plasteel/cafeteria{dir = 5},/area/medical/research{name = "Research Division"})
-"ciP" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/medical/research{name = "Research Division"})
-"ciQ" = (/obj/item/weapon/cigbutt,/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/medical/research{name = "Research Division"})
-"ciR" = (/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/obj/machinery/vending/cola,/turf/open/floor/plasteel/white/side{dir = 4},/area/medical/research{name = "Research Division"})
-"ciS" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/mob/living/simple_animal/pet/dog/pug{desc = "It's Pugley IV, the research department's lovable pug clone. Hopefully nothing happens to this one - fourth time lucky!";name = "Pugley IV";real_name = "Pugley IV"},/turf/open/floor/engine,/area/toxins/explab)
-"ciT" = (/obj/item/device/radio/beacon,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/engine,/area/toxins/explab)
-"ciU" = (/obj/machinery/r_n_d/experimentor,/turf/open/floor/engine,/area/toxins/explab)
-"ciV" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_Toxins = 0},/turf/open/floor/engine,/area/toxins/explab)
-"ciW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/engine,/area/toxins/explab)
-"ciX" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/aft{name = "Aft Maintenance"})
-"ciY" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/incinerator)
-"ciZ" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 2},/turf/closed/wall/r_wall,/area/maintenance/incinerator)
-"cja" = (/obj/machinery/door/airlock/glass{autoclose = 0;frequency = 1449;heat_proof = 1;icon_state = "door_locked";id_tag = "incinerator_airlock_interior";locked = 1;name = "Incinerator Interior Airlock";req_access_txt = "12"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/engine,/area/maintenance/incinerator)
-"cjb" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/closed/wall/r_wall,/area/maintenance/incinerator)
-"cjc" = (/turf/open/floor/engine/n2,/area/atmos)
-"cjd" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/open/floor/engine/n2,/area/atmos)
-"cje" = (/obj/machinery/camera{c_tag = "Atmospherics Tank - N2";dir = 8;network = list("SS13");pixel_x = 0;pixel_y = 0},/turf/open/floor/engine/n2,/area/atmos)
-"cjf" = (/turf/open/floor/engine/o2,/area/atmos)
-"cjg" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/open/floor/engine/o2,/area/atmos)
-"cjh" = (/obj/machinery/camera{c_tag = "Atmospherics Tank - O2";dir = 8;network = list("SS13");pixel_x = 0;pixel_y = 0},/turf/open/floor/engine/o2,/area/atmos)
-"cji" = (/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/turf/open/floor/engine/air,/area/atmos)
-"cjj" = (/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/engine/air,/area/atmos)
-"cjk" = (/obj/machinery/camera{c_tag = "Atmospherics Tank - Air";dir = 8;network = list("SS13");pixel_x = 0;pixel_y = 0},/turf/open/floor/engine/air,/area/atmos)
-"cjl" = (/obj/machinery/atmospherics/components/binary/pump{dir = 2},/turf/closed/wall/r_wall,/area/atmos)
-"cjm" = (/obj/machinery/door/airlock/glass_atmos{heat_proof = 1;name = "Auxiliary Chamber";req_access_txt = "24"},/turf/open/floor/plating,/area/atmos)
-"cjn" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1},/turf/closed/wall/r_wall,/area/atmos)
-"cjo" = (/obj/structure/girder/reinforced,/turf/open/floor/plating/airless,/area/atmos)
-"cjp" = (/obj/machinery/vending/boozeomat,/turf/open/floor/wood,/area/maintenance/aft{name = "Aft Maintenance"})
-"cjq" = (/obj/structure/sink/kitchen{desc = "A sink used for washing one's hands and face. It looks rusty and home-made";name = "old sink";pixel_y = 28},/turf/open/floor/wood{icon_state = "wood-broken3"},/area/maintenance/aft{name = "Aft Maintenance"})
-"cjr" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/starboard)
-"cjs" = (/obj/item/weapon/reagent_containers/food/drinks/drinkingglass{pixel_x = 4;pixel_y = 5},/obj/item/weapon/reagent_containers/food/drinks/drinkingglass{pixel_x = 6;pixel_y = -1},/obj/item/weapon/reagent_containers/food/drinks/drinkingglass{pixel_x = -4;pixel_y = 6},/obj/item/weapon/reagent_containers/food/drinks/drinkingglass{pixel_x = -5;pixel_y = 2},/obj/structure/table/wood,/obj/structure/light_construct/small{dir = 1},/obj/machinery/newscaster{pixel_x = 0;pixel_y = 32},/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,/turf/open/floor/wood,/area/maintenance/aft{name = "Aft Maintenance"})
-"cjt" = (/obj/structure/chair/stool,/turf/open/floor/wood,/area/maintenance/aft{name = "Aft Maintenance"})
-"cju" = (/obj/structure/reagent_dispensers/watertank,/obj/item/weapon/storage/box/lights/mixed,/obj/structure/sign/poster{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/starboard)
-"cjv" = (/obj/machinery/computer/arcade,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cjw" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1},/obj/effect/landmark{name = "revenantspawn"},/turf/open/floor/plasteel/black,/area/medical/surgery)
-"cjx" = (/obj/structure/chair,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4;initialize_directions = 11},/turf/open/floor/plasteel/black,/area/medical/surgery)
-"cjy" = (/obj/item/weapon/cigbutt,/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/black,/area/medical/surgery)
-"cjz" = (/obj/structure/chair,/obj/machinery/airalarm{frequency = 1439;pixel_y = 23},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel/black,/area/medical/surgery)
-"cjA" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel/black,/area/medical/surgery)
-"cjB" = (/obj/item/weapon/cigbutt,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/black,/area/medical/surgery)
-"cjC" = (/obj/structure/chair,/turf/open/floor/plasteel/black,/area/medical/surgery)
-"cjD" = (/obj/structure/chair,/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/black,/area/medical/surgery)
-"cjE" = (/obj/structure/bed/roller,/obj/item/device/radio/intercom{broadcasting = 1;freerange = 0;frequency = 1485;listening = 0;name = "Station Intercom (Medbay)";pixel_x = -30;pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/machinery/camera{c_tag = "Medbay Sleepers";dir = 4;network = list("SS13","Medbay")},/turf/open/floor/plasteel/whiteblue/side{dir = 10},/area/medical/sleeper{name = "Sleepers"})
-"cjF" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4;initialize_directions = 11},/turf/open/floor/plasteel/whiteblue/corner{dir = 8},/area/medical/sleeper{name = "Sleepers"})
-"cjG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/machinery/holopad,/turf/open/floor/plasteel/white,/area/medical/sleeper{name = "Sleepers"})
-"cjH" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/turf/open/floor/plasteel/whiteblue/corner{dir = 2},/area/medical/sleeper{name = "Sleepers"})
-"cjI" = (/obj/structure/bed/roller,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/whiteblue/side{dir = 6},/area/medical/sleeper{name = "Sleepers"})
-"cjJ" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/whiteblue,/area/medical/sleeper{name = "Sleepers"})
-"cjK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/whiteblue/side{dir = 8},/area/medical/medbay{name = "Medbay Central"})
-"cjL" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plasteel/white,/area/medical/medbay{name = "Medbay Central"})
-"cjM" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1;initialize_directions = 11},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel/white,/area/medical/medbay{name = "Medbay Central"})
-"cjN" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2;initialize_directions = 11},/turf/open/floor/plasteel/white,/area/medical/medbay{name = "Medbay Central"})
-"cjO" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay{name = "Medbay Central"})
-"cjP" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay{name = "Medbay Central"})
-"cjQ" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/turf/open/floor/plasteel/white,/area/medical/medbay{name = "Medbay Central"})
-"cjR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/machinery/shower{dir = 8;icon_state = "shower";name = "emergency shower"},/turf/open/floor/plasteel/whiteyellow/corner{dir = 2},/area/medical/medbay{name = "Medbay Central"})
-"cjS" = (/obj/item/stack/sheet/mineral/plasma{layer = 2.9},/obj/item/stack/sheet/mineral/plasma{layer = 2.9},/obj/structure/table/glass,/obj/item/weapon/reagent_containers/glass/bottle/epinephrine,/obj/item/weapon/reagent_containers/glass/bottle/charcoal{pixel_x = 7;pixel_y = 4},/obj/item/weapon/storage/pill_bottle/epinephrine{pixel_x = 3},/turf/open/floor/plasteel/whiteyellow/side{dir = 8},/area/medical/chemistry)
-"cjT" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/medical/chemistry)
-"cjU" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_Toxins = 0},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/medical/chemistry)
-"cjV" = (/turf/open/floor/plasteel/whiteyellow/side{dir = 4},/area/medical/chemistry)
-"cjW" = (/obj/item/device/assembly/timer{pixel_x = -3;pixel_y = 3},/obj/item/device/assembly/timer{pixel_x = -3;pixel_y = 3},/obj/item/device/assembly/igniter{pixel_x = 3;pixel_y = -7},/obj/item/device/assembly/igniter{pixel_x = 3;pixel_y = -7},/obj/item/device/assembly/igniter{pixel_x = 3;pixel_y = -7},/obj/item/device/assembly/igniter{pixel_x = 3;pixel_y = -7},/obj/item/device/assembly/timer{pixel_x = -3;pixel_y = 3},/obj/item/device/assembly/timer{pixel_x = -3;pixel_y = 3},/obj/structure/table/glass,/turf/open/floor/plasteel/whiteyellow{dir = 4},/area/medical/chemistry)
-"cjX" = (/obj/machinery/computer/rdconsole/core,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/toxins/lab)
-"cjY" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/toxins/lab)
-"cjZ" = (/obj/machinery/r_n_d/circuit_imprinter{pixel_y = 4},/obj/item/weapon/reagent_containers/glass/beaker/sulphuric,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/toxins/lab)
-"cka" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/white,/area/toxins/lab)
-"ckb" = (/obj/effect/landmark/start{name = "Scientist"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/white,/area/toxins/lab)
-"ckc" = (/obj/structure/table,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/capacitor,/obj/item/weapon/stock_parts/capacitor,/obj/item/weapon/stock_parts/manipulator,/obj/item/weapon/stock_parts/micro_laser,/obj/item/weapon/stock_parts/micro_laser,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/clothing/glasses/science,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/toxins/lab)
-"ckd" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/toxins/lab)
-"cke" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/sink{dir = 8;icon_state = "sink";pixel_x = -12;pixel_y = 2},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"ckf" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8;initialize_directions = 11},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"ckg" = (/obj/structure/sink{dir = 4;icon_state = "sink";pixel_x = 11;pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"ckh" = (/obj/machinery/light{dir = 4;icon_state = "tube1"},/obj/structure/closet/firecloset,/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/medical/research{name = "Research Division"})
-"cki" = (/obj/item/weapon/storage/toolbox/emergency,/obj/item/clothing/mask/gas,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"ckj" = (/obj/machinery/light/small,/obj/item/weapon/stock_parts/cell/high{charge = 100;maxcharge = 15000},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"ckk" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/device/flashlight,/obj/effect/landmark{name = "blobstart"},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"ckl" = (/obj/item/stack/packageWrap,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"ckm" = (/obj/machinery/firealarm{dir = 8;pixel_x = -24},/obj/structure/sink{dir = 8;icon_state = "sink";pixel_x = -12;pixel_y = 2},/obj/item/weapon/cigbutt,/turf/open/floor/plasteel/cafeteria{dir = 5},/area/medical/research{name = "Research Division"})
-"ckn" = (/turf/open/floor/plasteel/cafeteria{dir = 5},/area/medical/research{name = "Research Division"})
-"cko" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/medical/research{name = "Research Division"})
-"ckp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9;pixel_y = 0},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/medical/research{name = "Research Division"})
-"ckq" = (/obj/machinery/vending/coffee,/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 29},/turf/open/floor/plasteel/white/side{dir = 4},/area/medical/research{name = "Research Division"})
-"ckr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/engine,/area/toxins/explab)
-"cks" = (/obj/machinery/button/door{id = "telelab";name = "Test Chamber Blast Doors";pixel_x = 0;pixel_y = -25},/turf/open/floor/engine,/area/toxins/explab)
-"ckt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/engine,/area/toxins/explab)
-"cku" = (/obj/structure/closet,/obj/item/weapon/storage/box/donkpockets,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3;name = "3maintenance loot spawner"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"ckv" = (/obj/structure/closet/crate,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/obj/item/device/assembly/infra,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"ckw" = (/obj/structure/table,/obj/effect/decal/cleanable/cobweb,/obj/item/weapon/shard,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"ckx" = (/obj/structure/table,/obj/structure/sign/bluecross{pixel_y = 32},/obj/item/weapon/reagent_containers/glass/beaker/large,/turf/open/floor/plating,/area/maintenance/starboard)
-"cky" = (/obj/structure/sink/kitchen{desc = "A sink used for washing one's hands and face. It looks rusty and home-made";name = "old sink";pixel_y = 28},/obj/effect/decal/cleanable/blood/old,/obj/effect/decal/cleanable/blood/gibs/old,/turf/open/floor/plating,/area/maintenance/starboard)
-"ckz" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/emergency,/turf/open/floor/plating,/area/maintenance/starboard)
-"ckA" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/drinks/drinkingglass{pixel_x = 4;pixel_y = 5},/obj/item/weapon/reagent_containers/food/drinks/drinkingglass{pixel_x = 6;pixel_y = -1},/obj/item/weapon/reagent_containers/food/drinks/drinkingglass{pixel_x = -4;pixel_y = 6},/obj/item/weapon/reagent_containers/dropper,/obj/item/weapon/reagent_containers/dropper,/obj/item/weapon/reagent_containers/syringe,/obj/item/weapon/reagent_containers/syringe,/turf/open/floor/plating,/area/maintenance/starboard)
-"ckB" = (/obj/item/weapon/reagent_containers/glass/bottle/toxin{pixel_x = 4;pixel_y = 2},/obj/structure/table,/obj/effect/decal/cleanable/cobweb/cobweb2,/obj/machinery/reagentgrinder{pixel_y = 4},/turf/open/floor/plating,/area/maintenance/starboard)
-"ckC" = (/obj/structure/lattice,/obj/machinery/atmospherics/components/binary/pump{dir = 2;name = "Incinerator Output Pump";on = 1;use_power = 0},/obj/structure/disposalpipe/segment,/turf/open/space,/area/space)
-"ckD" = (/obj/machinery/doorButtons/access_button{idDoor = "incinerator_airlock_exterior";layer = 3.1;idSelf = "incinerator_access_control";name = "Incinerator airlock control";pixel_x = 8;pixel_y = -24},/obj/machinery/light/small{dir = 8},/obj/structure/sign/fire{pixel_x = -32;pixel_y = 0},/obj/machinery/atmospherics/components/binary/pump{dir = 1;on = 1},/obj/machinery/doorButtons/access_button{idDoor = "incinerator_airlock_interior";idSelf = "incinerator_access_control";name = "Incinerator airlock control";pixel_x = 8;pixel_y = 24},/turf/open/floor/engine,/area/maintenance/incinerator)
-"ckE" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/turf/open/floor/engine,/area/maintenance/incinerator)
-"ckF" = (/obj/structure/sign/fire{pixel_x = 32;pixel_y = 0},/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/components/binary/pump{dir = 2;on = 1},/turf/open/floor/engine,/area/maintenance/incinerator)
-"ckG" = (/obj/machinery/light/small,/turf/open/floor/engine/n2,/area/atmos)
-"ckH" = (/obj/machinery/light/small,/turf/open/floor/engine/o2,/area/atmos)
-"ckI" = (/turf/open/floor/engine/air,/area/atmos)
-"ckJ" = (/obj/machinery/light/small,/turf/open/floor/engine/air,/area/atmos)
-"ckK" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1},/turf/open/floor/engine{name = "vacuum floor";initial_gas_mix = "o2=0.01;n2=0.01"},/area/atmos)
-"ckL" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/turf/open/floor/engine{name = "vacuum floor";initial_gas_mix = "o2=0.01;n2=0.01"},/area/atmos)
-"ckM" = (/obj/structure/girder,/turf/open/floor/plating/airless,/area/atmos)
-"ckN" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"ckO" = (/obj/structure/closet/secure_closet/bar{pixel_x = -3;pixel_y = -1;req_access_txt = "25"},/turf/open/floor/wood,/area/maintenance/aft{name = "Aft Maintenance"})
-"ckP" = (/turf/open/floor/wood,/area/maintenance/aft{name = "Aft Maintenance"})
-"ckQ" = (/turf/open/floor/wood{icon_state = "wood-broken7"},/area/maintenance/aft{name = "Aft Maintenance"})
-"ckR" = (/obj/item/weapon/reagent_containers/glass/rag,/obj/structure/table/wood,/turf/open/floor/wood{icon_state = "wood-broken4"},/area/maintenance/aft{name = "Aft Maintenance"})
-"ckS" = (/turf/open/floor/wood{icon_state = "wood-broken5"},/area/maintenance/aft{name = "Aft Maintenance"})
-"ckT" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/turf/open/floor/plasteel/black,/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"ckU" = (/obj/structure/chair,/obj/structure/sign/nosmoking_2{pixel_x = -28},/turf/open/floor/plasteel/black,/area/medical/surgery)
-"ckV" = (/obj/structure/chair,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/black,/area/medical/surgery)
-"ckW" = (/obj/machinery/holopad,/turf/open/floor/plasteel/black,/area/medical/surgery)
-"ckX" = (/obj/structure/chair,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8;initialize_directions = 11},/turf/open/floor/plasteel/black,/area/medical/surgery)
-"ckY" = (/obj/structure/chair,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/black,/area/medical/surgery)
-"ckZ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical{name = "Observation";req_access_txt = "0"},/turf/open/floor/plasteel/black,/area/medical/surgery)
-"cla" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel/black,/area/medical/surgery)
-"clb" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/black,/area/medical/surgery)
-"clc" = (/obj/item/weapon/cigbutt,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/obj/structure/sign/nosmoking_2{pixel_x = 28},/obj/effect/landmark{name = "blobstart"},/turf/open/floor/plasteel/black,/area/medical/surgery)
-"cld" = (/obj/machinery/sleeper{icon_state = "sleeper-open";dir = 4},/turf/open/floor/plasteel/whiteblue,/area/medical/sleeper{name = "Sleepers"})
-"cle" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8;initialize_directions = 11},/turf/open/floor/plasteel/whiteblue/side{dir = 10},/area/medical/sleeper{name = "Sleepers"})
-"clf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/whiteblue/side{dir = 2},/area/medical/sleeper{name = "Sleepers"})
-"clg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/whiteblue/side{dir = 6},/area/medical/sleeper{name = "Sleepers"})
-"clh" = (/obj/machinery/sleeper{icon_state = "sleeper-open";dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/whiteblue,/area/medical/sleeper{name = "Sleepers"})
-"cli" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/medical/sleeper{name = "Sleepers"})
-"clj" = (/obj/structure/sink{dir = 8;icon_state = "sink";pixel_x = -12;pixel_y = 2},/turf/open/floor/plasteel/whiteblue/corner{dir = 1},/area/medical/medbay{name = "Medbay Central"})
-"clk" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel/white,/area/medical/medbay{name = "Medbay Central"})
-"cll" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4;initialize_directions = 11},/turf/open/floor/plasteel/white,/area/medical/medbay{name = "Medbay Central"})
-"clm" = (/obj/item/device/radio/intercom{broadcasting = 1;freerange = 0;frequency = 1485;listening = 0;name = "Station Intercom (Medbay)";pixel_x = 0;pixel_y = -30},/turf/open/floor/plasteel/white,/area/medical/medbay{name = "Medbay Central"})
-"cln" = (/turf/open/floor/plasteel/whiteblue/corner{dir = 2},/area/medical/medbay{name = "Medbay Central"})
-"clo" = (/obj/structure/bed/roller,/obj/machinery/iv_drip{density = 0},/turf/open/floor/plasteel/whiteblue/side{dir = 2},/area/medical/medbay{name = "Medbay Central"})
-"clp" = (/obj/machinery/light,/turf/open/floor/plasteel/whiteblue/corner{dir = 8},/area/medical/medbay{name = "Medbay Central"})
-"clq" = (/obj/machinery/airalarm{dir = 1;pixel_y = -22},/turf/open/floor/plasteel/whiteyellow/corner{dir = 2},/area/medical/medbay{name = "Medbay Central"})
-"clr" = (/turf/open/floor/plasteel/whiteyellow/side{dir = 6},/area/medical/medbay{name = "Medbay Central"})
-"cls" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/eastright{name = "Chemistry Desk";req_access_txt = "5; 33"},/obj/machinery/door/window/eastright{dir = 8;name = "Chemistry Desk";req_access_txt = "5"},/obj/item/weapon/reagent_containers/glass/bottle/morphine,/obj/item/weapon/reagent_containers/glass/bottle/toxin{pixel_x = 5;pixel_y = 4},/obj/item/weapon/reagent_containers/glass/bottle/epinephrine{pixel_x = 8},/obj/item/weapon/reagent_containers/glass/bottle/charcoal{pixel_x = -5;pixel_y = 0},/obj/item/weapon/reagent_containers/syringe/epinephrine,/turf/open/floor/plasteel/white,/area/medical/chemistry)
-"clt" = (/obj/structure/chair/office/light{dir = 8},/obj/effect/landmark/start{name = "Chemist"},/turf/open/floor/plasteel/whiteyellow/side{dir = 8},/area/medical/chemistry)
-"clu" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/effect/landmark/start{name = "Chemist"},/turf/open/floor/plasteel/white,/area/medical/chemistry)
-"clv" = (/obj/structure/chair/office/light{dir = 4},/turf/open/floor/plasteel/whiteyellow/side{dir = 4},/area/medical/chemistry)
-"clw" = (/obj/structure/table/glass,/obj/item/weapon/folder/white{pixel_y = 2},/obj/item/weapon/grenade/chem_grenade,/obj/item/weapon/grenade/chem_grenade,/obj/item/weapon/grenade/chem_grenade,/obj/item/weapon/grenade/chem_grenade,/obj/item/weapon/screwdriver{pixel_x = -2;pixel_y = 6},/obj/item/device/radio/headset/headset_med,/obj/structure/extinguisher_cabinet{pixel_x = 24;pixel_y = 0},/obj/machinery/firealarm{dir = 1;pixel_y = -24},/turf/open/floor/plasteel/whiteyellow{dir = 4},/area/medical/chemistry)
-"clx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/extinguisher_cabinet{pixel_x = -27;pixel_y = 0},/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/hallway/primary/aft)
-"cly" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera{c_tag = "Aft Primary Hallway - Fore";dir = 8;network = list("SS13")},/obj/machinery/firealarm{dir = 4;pixel_x = 24},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/hallway/primary/aft)
-"clz" = (/obj/item/stack/sheet/glass{amount = 50;pixel_x = 3;pixel_y = 3},/obj/item/stack/sheet/metal{amount = 50},/obj/item/clothing/glasses/welding,/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/toxins/lab)
-"clA" = (/turf/open/floor/plasteel/whitepurple/side{dir = 8},/area/toxins/lab)
-"clB" = (/obj/structure/chair/stool,/turf/open/floor/plasteel/white,/area/toxins/lab)
-"clC" = (/obj/structure/disposalpipe/segment,/obj/structure/chair/stool,/turf/open/floor/plasteel/white,/area/toxins/lab)
-"clD" = (/obj/machinery/holopad,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/white,/area/toxins/lab)
-"clE" = (/obj/structure/table,/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/matter_bin,/obj/item/weapon/stock_parts/scanning_module,/obj/item/weapon/stock_parts/scanning_module,/obj/machinery/light{dir = 4;icon_state = "tube1"},/obj/structure/sign/nosmoking_2{pixel_x = 30;pixel_y = 0},/turf/open/floor/plasteel,/area/toxins/lab)
-"clF" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/disposalpipe/segment,/obj/machinery/shower{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"clG" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"clH" = (/obj/machinery/shower{icon_state = "shower";dir = 8},/obj/item/device/radio/intercom{dir = 8;name = "Station Intercom (General)";pixel_x = 0;pixel_y = -28},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"clI" = (/obj/machinery/firealarm{dir = 4;pixel_x = 24},/obj/structure/closet/firecloset,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/medical/research{name = "Research Division"})
-"clJ" = (/obj/structure/plasticflaps{opacity = 1},/obj/machinery/navbeacon{codes_txt = "delivery;dir=2";freq = 1400;location = "Research Division"},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/maintenance/aft{name = "Aft Maintenance"})
-"clK" = (/turf/closed/wall/r_wall,/area/maintenance/aft{name = "Aft Maintenance"})
-"clL" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/item/weapon/storage/box/lights/mixed,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"clM" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/sign/poster{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"clN" = (/obj/machinery/microwave{pixel_x = -3;pixel_y = 6},/obj/structure/table/glass,/turf/open/floor/plasteel/cafeteria{dir = 5},/area/medical/research{name = "Research Division"})
-"clO" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/medical/research{name = "Research Division"})
-"clP" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/medical/research{name = "Research Division"})
-"clQ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_Toxins = 0},/obj/structure/noticeboard{pixel_y = -32},/obj/machinery/light,/obj/machinery/camera{c_tag = "Research Division - Break Room";dir = 1;network = list("SS13","RD")},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/medical/research{name = "Research Division"})
-"clR" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel/white/side{dir = 4},/area/medical/research{name = "Research Division"})
-"clS" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'";icon_state = "shock";name = "HIGH VOLTAGE"},/turf/closed/wall/r_wall,/area/toxins/explab)
-"clT" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "telelab";name = "test chamber blast door"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/toxins/explab)
-"clU" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "telelab";name = "test chamber blast door"},/turf/open/floor/plating,/area/toxins/explab)
-"clV" = (/obj/machinery/door/poddoor/preopen{id = "telelab";name = "test chamber blast door"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/engine,/area/toxins/explab)
-"clW" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"clX" = (/obj/machinery/door/airlock/maintenance{icon_state = "door_closed";locked = 0;name = "Storage Room";req_access_txt = "0";req_one_access_txt = "12;47"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"clY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"clZ" = (/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/decal/cleanable/blood/old,/obj/effect/decal/cleanable/blood/gibs/old,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cma" = (/obj/structure/rack,/obj/item/clothing/suit/apron,/obj/item/clothing/mask/surgical,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cmb" = (/obj/machinery/chem_master/condimaster{name = "CondiMaster Neo";pixel_x = -4},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cmc" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/open/space,/area/space)
-"cmd" = (/obj/machinery/door/airlock/glass{autoclose = 0;frequency = 1449;heat_proof = 1;icon_state = "door_locked";id_tag = "incinerator_airlock_exterior";locked = 1;name = "Incinerator Exterior Airlock";req_access_txt = "12"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/engine,/area/maintenance/incinerator)
-"cme" = (/obj/item/stack/rods{amount = 25},/turf/open/floor/engine{name = "vacuum floor";initial_gas_mix = "o2=0.01;n2=0.01"},/area/atmos)
-"cmf" = (/turf/open/floor/plating/airless,/area/atmos)
-"cmg" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/drinks/shaker,/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone,/obj/item/weapon/reagent_containers/glass/beaker{pixel_x = 8;pixel_y = 2},/obj/item/weapon/reagent_containers/dropper,/turf/open/floor/wood,/area/maintenance/aft{name = "Aft Maintenance"})
-"cmh" = (/obj/item/weapon/reagent_containers/food/drinks/ale,/obj/structure/table/wood,/turf/open/floor/wood,/area/maintenance/aft{name = "Aft Maintenance"})
-"cmi" = (/obj/structure/light_construct/small{dir = 4},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 30;pixel_y = 0},/turf/open/floor/wood,/area/maintenance/aft{name = "Aft Maintenance"})
-"cmj" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/obj/machinery/firealarm{pixel_y = 29},/obj/structure/sign/poster{pixel_x = 32;pixel_y = 0},/turf/open/floor/plasteel/hydrofloor,/area/hydroponics)
-"cmk" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/medical/surgery)
-"cml" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/medical/surgery)
-"cmm" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/medical/surgery)
-"cmn" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical{name = "Observation";req_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plasteel,/area/medical/surgery)
-"cmo" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/medical/sleeper{name = "Sleepers"})
-"cmp" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/medical/sleeper{name = "Sleepers"})
-"cmq" = (/obj/structure/lattice,/obj/machinery/camera/emp_proof{c_tag = "Fore Arm - Far";dir = 8;network = list("Singulo")},/turf/open/space,/area/space)
-"cmr" = (/obj/machinery/door/firedoor,/obj/structure/extinguisher_cabinet{pixel_x = -27;pixel_y = 0},/turf/open/floor/plasteel/white,/area/medical/medbay{name = "Medbay Central"})
-"cms" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/white,/area/medical/medbay{name = "Medbay Central"})
-"cmt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/white,/area/medical/medbay{name = "Medbay Central"})
-"cmu" = (/turf/closed/wall,/area/medical/cmo)
-"cmv" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "cmoprivacy";name = "privacy shutter"},/turf/open/floor/plating,/area/medical/cmo)
-"cmw" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "cmoprivacy";name = "privacy shutter"},/turf/open/floor/plating,/area/medical/cmo)
-"cmx" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "cmoprivacy";name = "privacy shutter"},/turf/open/floor/plating,/area/medical/cmo)
-"cmy" = (/obj/machinery/door/airlock/maintenance{name = "Medbay Maintenance";req_access_txt = "5"},/turf/open/floor/plating,/area/medical/medbay{name = "Medbay Central"})
-"cmz" = (/obj/machinery/reagentgrinder,/obj/machinery/requests_console{department = "Chemistry";departmentType = 2;pixel_x = -30;pixel_y = 0},/obj/structure/table/glass,/turf/open/floor/plasteel/whiteyellow/side{dir = 8},/area/medical/chemistry)
-"cmA" = (/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/holopad,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/medical/chemistry)
-"cmB" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel/white,/area/medical/chemistry)
-"cmC" = (/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/weapon/hand_labeler,/obj/structure/table/glass,/turf/open/floor/plasteel/whiteyellow/side{dir = 4},/area/medical/chemistry)
-"cmD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/sign/chemistry{pixel_x = -32},/turf/open/floor/plasteel/yellow/corner{dir = 8},/area/hallway/primary/aft)
-"cmE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light{dir = 4;icon_state = "tube1"},/obj/structure/sign/science{pixel_x = 32},/turf/open/floor/plasteel/purple/corner{dir = 2},/area/hallway/primary/aft)
-"cmF" = (/obj/item/device/radio/intercom{dir = 8;name = "Station Intercom (General)";pixel_x = -28},/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel/whitepurple/side{dir = 8},/area/toxins/lab)
-"cmG" = (/obj/item/weapon/paper_bin{pixel_x = -2;pixel_y = 6},/obj/structure/table,/turf/open/floor/plasteel/white,/area/toxins/lab)
-"cmH" = (/obj/structure/table,/obj/structure/disposalpipe/segment,/obj/item/weapon/folder/white{pixel_x = 4;pixel_y = -3},/obj/item/weapon/disk/tech_disk{pixel_x = 0;pixel_y = 0},/obj/item/weapon/disk/tech_disk{pixel_x = 0;pixel_y = 0},/obj/item/weapon/disk/design_disk,/obj/item/weapon/disk/design_disk,/turf/open/floor/plasteel/white,/area/toxins/lab)
-"cmI" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/white,/area/toxins/lab)
-"cmJ" = (/obj/machinery/camera{c_tag = "Research and Development";dir = 8;network = list("SS13","RD")},/obj/machinery/light_switch{pixel_x = 27},/obj/structure/table,/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/obj/item/weapon/stock_parts/scanning_module{pixel_x = 2;pixel_y = 3},/obj/item/weapon/stock_parts/scanning_module,/turf/open/floor/plasteel,/area/toxins/lab)
-"cmK" = (/obj/structure/chair,/turf/open/floor/plasteel/black,/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"cmL" = (/obj/machinery/door/window/westleft{dir = 2;name = "Research Division Deliveries";req_access_txt = "47"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/maintenance/aft{name = "Aft Maintenance"})
-"cmM" = (/obj/machinery/door/airlock{name = "Research Emergency Storage";req_access_txt = "0";req_one_access_txt = "47"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/medical/research{name = "Research Division"})
-"cmN" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/glass_medical{glass = 0;id_tag = "";name = "Research Break Room";opacity = 1;req_access_txt = "0";req_one_access_txt = "47"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/cafeteria{dir = 5},/area/medical/research{name = "Research Division"})
-"cmO" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/window/reinforced/tinted/fulltile,/turf/open/floor/plating,/area/medical/research{name = "Research Division"})
-"cmP" = (/turf/closed/wall,/area/toxins/explab)
-"cmQ" = (/obj/structure/extinguisher_cabinet{pixel_x = -27;pixel_y = 0},/obj/machinery/requests_console{department = "Science";departmentType = 2;name = "Science Requests Console";pixel_x = 0;pixel_y = 30},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel,/area/toxins/explab)
-"cmR" = (/obj/structure/table/reinforced,/obj/item/weapon/paper_bin{pixel_x = -2;pixel_y = 6},/obj/item/weapon/pen,/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel,/area/toxins/explab)
-"cmS" = (/obj/structure/table/reinforced,/obj/item/weapon/hand_labeler,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/device/taperecorder{pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel,/area/toxins/explab)
-"cmT" = (/obj/machinery/computer/rdconsole/experiment,/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel,/area/toxins/explab)
-"cmU" = (/obj/structure/table/reinforced,/obj/item/weapon/clipboard,/obj/item/weapon/book/manual/experimentor,/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel,/area/toxins/explab)
-"cmV" = (/obj/machinery/button/door{id = "telelab";name = "Test Chamber Blast Doors";pixel_x = 0;pixel_y = 25},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/table/reinforced,/obj/item/weapon/reagent_containers/glass/bottle/epinephrine{pixel_x = 7;pixel_y = 2},/obj/item/weapon/reagent_containers/glass/bottle/charcoal{pixel_x = -2;pixel_y = -1},/obj/item/weapon/reagent_containers/dropper,/obj/item/stack/medical/bruise_pack{pixel_x = -2;pixel_y = 6},/obj/item/stack/medical/ointment,/obj/item/device/healthanalyzer,/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel,/area/toxins/explab)
-"cmW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel,/area/toxins/explab)
-"cmX" = (/obj/structure/window/reinforced,/obj/machinery/holopad,/turf/open/floor/plasteel/black,/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"cmY" = (/obj/structure/closet/crate{icon_state = "crateopen";opened = 1},/obj/effect/spawner/lootdrop/maintenance,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cmZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cna" = (/obj/structure/rack,/obj/item/clothing/under/color/white,/obj/item/clothing/head/soft/mime,/obj/item/clothing/under/color/white,/obj/item/clothing/head/soft/mime,/obj/item/clothing/mask/surgical,/obj/item/clothing/mask/surgical,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cnb" = (/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/aft{name = "Aft Maintenance"})
-"cnc" = (/obj/machinery/chem_heater,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cnd" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 0;initialize_directions = 1;internal_pressure_bound = 4000;name = "incinerator output intake";on = 0;pressure_checks = 2;pump_direction = 0},/turf/open/floor/engine/vacuum,/area/maintenance/incinerator)
-"cne" = (/obj/machinery/igniter{icon_state = "igniter0";id = "Incinerator";luminosity = 2;on = 0},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/turf/open/floor/engine/vacuum,/area/maintenance/incinerator)
-"cnf" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;name = "EXTERNAL AIRLOCK";pixel_x = 0;pixel_y = -32},/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1;frequency = 1441;id = "air_in"},/turf/open/floor/engine/vacuum,/area/maintenance/incinerator)
-"cng" = (/obj/machinery/door/poddoor{id = "auxincineratorvent";name = "Incineration Chamber Vent"},/turf/open/floor/engine/vacuum,/area/maintenance/incinerator)
-"cnh" = (/obj/item/device/flashlight/lamp,/obj/structure/table/wood,/turf/open/floor/wood,/area/maintenance/aft{name = "Aft Maintenance"})
-"cni" = (/obj/item/weapon/reagent_containers/food/drinks/bottle/tequila,/obj/structure/table/wood,/turf/open/floor/wood,/area/maintenance/aft{name = "Aft Maintenance"})
-"cnj" = (/obj/item/weapon/reagent_containers/food/drinks/beer,/obj/structure/table/wood,/turf/open/floor/wood,/area/maintenance/aft{name = "Aft Maintenance"})
-"cnk" = (/turf/open/floor/wood{icon_state = "wood-broken"},/area/maintenance/aft{name = "Aft Maintenance"})
-"cnl" = (/obj/structure/mineral_door/wood{name = "The Gobbetting Barmaid"},/turf/open/floor/wood,/area/maintenance/aft{name = "Aft Maintenance"})
-"cnm" = (/obj/structure/table,/obj/item/weapon/hemostat,/obj/structure/extinguisher_cabinet{pixel_x = -27;pixel_y = 0},/turf/open/floor/plasteel,/area/medical/surgery)
-"cnn" = (/obj/structure/table,/obj/item/weapon/surgicaldrill,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white/side{dir = 2},/area/medical/surgery)
-"cno" = (/obj/structure/table,/obj/item/weapon/scalpel{pixel_y = 12},/obj/item/weapon/circular_saw,/turf/open/floor/plasteel/white/side{dir = 2},/area/medical/surgery)
-"cnp" = (/obj/structure/table,/obj/item/weapon/cautery{pixel_x = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/weapon/razor{pixel_y = 5},/turf/open/floor/plasteel/white/side{dir = 2},/area/medical/surgery)
-"cnq" = (/obj/structure/table,/obj/item/weapon/retractor,/turf/open/floor/plasteel,/area/medical/surgery)
-"cnr" = (/obj/machinery/computer/med_data,/obj/structure/extinguisher_cabinet{pixel_x = -27;pixel_y = 0},/turf/open/floor/plasteel/white/side{dir = 2},/area/medical/surgery)
-"cns" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plasteel/white/side{dir = 2},/area/medical/surgery)
-"cnt" = (/obj/structure/table/reinforced,/obj/item/device/radio/intercom{broadcasting = 1;freerange = 0;frequency = 1485;listening = 0;name = "Station Intercom (Medbay)";pixel_x = 30;pixel_y = 0},/obj/structure/bedsheetbin{pixel_x = 2},/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/mask/muzzle,/obj/item/weapon/gun/syringe,/obj/item/clothing/glasses/eyepatch,/obj/item/clothing/glasses/sunglasses/blindfold,/obj/item/clothing/ears/earmuffs,/turf/open/floor/plasteel/white/side{dir = 2},/area/medical/surgery)
-"cnu" = (/obj/machinery/power/apc{dir = 1;name = "Cryogenics APC";pixel_y = 24},/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{pixel_x = -2;pixel_y = 9},/obj/machinery/light/small{dir = 8},/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{pixel_x = 5;pixel_y = 9},/obj/structure/table/glass,/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{pixel_x = -3;pixel_y = 1},/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{pixel_x = 6;pixel_y = 2},/obj/item/weapon/reagent_containers/syringe/epinephrine{pixel_x = 3;pixel_y = -2},/obj/item/weapon/reagent_containers/dropper,/turf/open/floor/plasteel/whiteblue/side{dir = 8},/area/medical/cryo)
-"cnv" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4;initialize_directions = 11},/obj/structure/closet/secure_closet/medical1{pixel_x = -3},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/white,/area/medical/cryo)
-"cnw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/medical/cryo)
-"cnx" = (/obj/machinery/atmospherics/components/unary/cryo_cell,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/medical/cryo)
-"cny" = (/obj/machinery/atmospherics/components/unary/cryo_cell,/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/medical/cryo)
-"cnz" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/medical/cryo)
-"cnA" = (/turf/open/floor/plasteel/whiteblue/corner{dir = 8},/area/medical/medbay{name = "Medbay Central"})
-"cnB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/extinguisher_cabinet{pixel_x = 27;pixel_y = 0},/turf/open/floor/plasteel/white,/area/medical/medbay{name = "Medbay Central"})
-"cnC" = (/obj/machinery/status_display{density = 0;layer = 4;pixel_x = 0;pixel_y = 32},/obj/structure/table/glass,/obj/item/weapon/paper_bin{pixel_x = -2;pixel_y = 8},/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel/barber{dir = 8},/area/medical/cmo)
-"cnD" = (/obj/item/weapon/cartridge/medical{pixel_x = -2;pixel_y = 6},/obj/item/weapon/cartridge/medical{pixel_x = 6;pixel_y = 3},/obj/item/weapon/cartridge/medical,/obj/item/weapon/cartridge/chemistry{pixel_y = 2},/obj/structure/table/glass,/turf/open/floor/plasteel/barber{dir = 8},/area/medical/cmo)
-"cnE" = (/obj/item/weapon/folder/blue,/obj/structure/table/glass,/obj/item/weapon/stamp/cmo,/turf/open/floor/plasteel/barber{dir = 8},/area/medical/cmo)
-"cnF" = (/obj/item/weapon/folder/white{pixel_x = 4;pixel_y = -3},/obj/item/clothing/glasses/hud/health,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/table/glass,/turf/open/floor/plasteel/barber{dir = 8},/area/medical/cmo)
-"cnG" = (/obj/structure/closet/secure_closet/CMO,/obj/item/weapon/storage/secure/safe{pixel_x = 5;pixel_y = 26},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 30;pixel_y = 0},/obj/item/weapon/screwdriver{pixel_y = 6},/turf/open/floor/plasteel/barber{dir = 8},/area/medical/cmo)
-"cnH" = (/obj/item/clothing/glasses/science{pixel_x = 2;pixel_y = 4},/obj/item/clothing/glasses/science,/obj/item/device/radio/intercom{dir = 8;name = "Station Intercom (General)";pixel_x = -28},/obj/structure/table/glass,/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/obj/machinery/camera{c_tag = "Chemistry";dir = 4;network = list("SS13","Medbay")},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/whiteyellow/side{dir = 10},/area/medical/chemistry)
-"cnI" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-j2";dir = 2},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/whiteyellow/corner{dir = 8},/area/medical/chemistry)
-"cnJ" = (/obj/machinery/disposal/bin{pixel_x = 5},/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel/white,/area/medical/chemistry)
-"cnK" = (/obj/machinery/chem_dispenser{layer = 2.7},/turf/open/floor/plasteel/whiteyellow/side{dir = 4},/area/medical/chemistry)
-"cnL" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/shutters/preopen{id = "chemistry_shutters_2";name = "chemistry shutters"},/turf/open/floor/plating,/area/medical/chemistry)
-"cnM" = (/obj/structure/table/reinforced,/obj/item/weapon/paper_bin{pixel_x = -2;pixel_y = 6},/turf/open/floor/plasteel/yellow{dir = 4},/area/hallway/primary/aft)
-"cnN" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel/yellow/side{dir = 8},/area/hallway/primary/aft)
-"cnO" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cnP" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8;initialize_directions = 11},/turf/open/floor/plasteel/purple/side{dir = 4},/area/hallway/primary/aft)
-"cnQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/purple,/area/hallway/primary/aft)
-"cnR" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/shutters/preopen{id = "research_shutters_2";name = "research shutters"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/toxins/lab)
-"cnS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/whitepurple/side{dir = 8},/area/toxins/lab)
-"cnT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/chair/stool,/turf/open/floor/plasteel/white,/area/toxins/lab)
-"cnU" = (/obj/structure/disposalpipe/segment,/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/toxins/lab)
-"cnV" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_Toxins = 0},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/white,/area/toxins/lab)
-"cnW" = (/obj/structure/table,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/stock_parts/console_screen,/obj/item/weapon/stock_parts/cell/high{charge = 100;maxcharge = 15000},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/toxins/lab)
-"cnX" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/toxins/lab)
-"cnY" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel/whitepurple/side{dir = 9},/area/medical/research{name = "Research Division"})
-"cnZ" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel/whitepurple/side{dir = 1},/area/medical/research{name = "Research Division"})
-"coa" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/whitepurple/corner{dir = 1},/area/medical/research{name = "Research Division"})
-"cob" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/sign/nosmoking_2{pixel_y = 32},/obj/machinery/camera{c_tag = "Research Division Hallway - Central";dir = 2;network = list("SS13","RD")},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"coc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"cod" = (/obj/structure/extinguisher_cabinet{pixel_x = 0;pixel_y = 29},/turf/open/floor/plasteel/white/side{dir = 10},/area/medical/research{name = "Research Division"})
-"coe" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white/side{dir = 2},/area/medical/research{name = "Research Division"})
-"cof" = (/turf/open/floor/plasteel/white/side{dir = 6},/area/medical/research{name = "Research Division"})
-"cog" = (/obj/item/device/radio/intercom{broadcasting = 0;listening = 1;name = "Station Intercom (General)";pixel_y = 20},/turf/open/floor/plasteel/whitepurple/corner{dir = 4},/area/medical/research{name = "Research Division"})
-"coh" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/whitepurple/side{dir = 1},/area/medical/research{name = "Research Division"})
-"coi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/whitepurple/corner{dir = 1},/area/medical/research{name = "Research Division"})
-"coj" = (/obj/item/weapon/twohanded/required/kirbyplants{icon_state = "plant-10";layer = 4.1},/turf/open/floor/plasteel/whitepurple/corner{dir = 2},/area/medical/research{name = "Research Division"})
-"cok" = (/obj/machinery/firealarm{dir = 8;pixel_x = -26;pixel_y = 0},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/whitepurple/corner{dir = 8},/area/toxins/explab)
-"col" = (/obj/structure/chair/office/light{dir = 4},/turf/open/floor/plasteel/white,/area/toxins/explab)
-"com" = (/obj/structure/table/reinforced,/obj/item/weapon/folder/white{pixel_x = 4;pixel_y = -3},/obj/item/weapon/folder/white{pixel_x = 4;pixel_y = -3},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/item/stack/sheet/mineral/plasma{layer = 2.9;pixel_y = 4},/turf/open/floor/plasteel/white,/area/toxins/explab)
-"con" = (/obj/effect/landmark/start{name = "Scientist"},/obj/structure/chair/office/light{dir = 1;pixel_y = 3},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/toxins/explab)
-"coo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/table/reinforced,/obj/item/weapon/wrench,/obj/item/weapon/crowbar,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/clothing/glasses/science,/obj/item/device/multitool{pixel_x = 3},/turf/open/floor/plasteel/white,/area/toxins/explab)
-"cop" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/holopad,/turf/open/floor/plasteel/white,/area/toxins/explab)
-"coq" = (/obj/structure/extinguisher_cabinet{pixel_x = 27;pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/toxins/explab)
-"cor" = (/obj/structure/girder,/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cos" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = 0;pixel_y = 6},/obj/item/weapon/pen,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cot" = (/obj/structure/table,/obj/item/weapon/folder/white{pixel_x = 4;pixel_y = -3},/obj/item/weapon/reagent_containers/blood/random,/obj/item/weapon/reagent_containers/blood/random,/obj/item/weapon/reagent_containers/blood/empty{pixel_x = -3;pixel_y = -3},/obj/item/weapon/reagent_containers/blood/empty{pixel_x = -3;pixel_y = -3},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cou" = (/obj/effect/decal/cleanable/blood/old,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cov" = (/obj/structure/bed,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cow" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/starboard)
-"cox" = (/obj/structure/mineral_door/wood{name = "The Gobbetting Barmaid"},/turf/open/floor/wood{icon_state = "wood-broken6"},/area/maintenance/aft{name = "Aft Maintenance"})
-"coy" = (/obj/structure/table,/obj/item/clothing/gloves/color/latex,/obj/item/clothing/mask/surgical,/obj/item/clothing/suit/apron/surgical,/obj/machinery/airalarm{dir = 4;icon_state = "alarm0";pixel_x = -22},/turf/open/floor/plasteel/white/side{dir = 4},/area/medical/surgery)
-"coz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/medical/surgery)
-"coA" = (/obj/effect/landmark/start{name = "Medical Doctor"},/turf/open/floor/plasteel/white,/area/medical/surgery)
-"coB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/medical/surgery)
-"coC" = (/obj/machinery/power/apc{dir = 4;name = "Surgery APC";pixel_x = 26;pixel_y = 0},/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/obj/structure/table,/obj/item/weapon/surgical_drapes,/turf/open/floor/plasteel/white/side{dir = 8},/area/medical/surgery)
-"coD" = (/obj/structure/bed/roller,/obj/machinery/light/small{dir = 8},/obj/machinery/iv_drip{density = 0},/turf/open/floor/plasteel/white,/area/medical/surgery)
-"coE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel/white,/area/medical/surgery)
-"coF" = (/obj/structure/bed,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/weapon/bedsheet/medical,/turf/open/floor/plasteel/white,/area/medical/surgery)
-"coG" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/medical/surgery)
-"coH" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel/whiteblue/side{dir = 8},/area/medical/cryo)
-"coI" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/white,/area/medical/cryo)
-"coJ" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/medical/cryo)
-"coK" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 2},/obj/effect/landmark/start{name = "Medical Doctor"},/turf/open/floor/plasteel,/area/medical/cryo)
-"coL" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/medical/cryo)
-"coM" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/medical/cryo)
-"coN" = (/turf/open/floor/plasteel/whiteblue/side{dir = 8},/area/medical/medbay{name = "Medbay Central"})
-"coO" = (/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/filingcabinet/chestdrawer,/turf/open/floor/plasteel/barber{dir = 8},/area/medical/cmo)
-"coP" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/turf/open/floor/plasteel/barber{dir = 8},/area/medical/cmo)
-"coQ" = (/obj/structure/chair/office/light{dir = 1},/obj/effect/landmark/start{name = "Chief Medical Officer"},/turf/open/floor/plasteel/barber{dir = 8},/area/medical/cmo)
-"coR" = (/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/mob/living/simple_animal/pet/cat/Runtime,/turf/open/floor/plasteel/barber{dir = 8},/area/medical/cmo)
-"coS" = (/obj/machinery/power/apc{dir = 4;name = "CMO's Office APC";pixel_x = 26;pixel_y = 0},/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/obj/machinery/camera{c_tag = "CMO's Office";dir = 8;network = list("SS13","Medbay")},/turf/open/floor/plasteel/barber{dir = 8},/area/medical/cmo)
-"coT" = (/obj/structure/closet/wardrobe/chemistry_white{pixel_x = -3},/obj/item/weapon/storage/backpack/satchel/chem,/obj/machinery/airalarm{dir = 4;icon_state = "alarm0";pixel_x = -22},/obj/structure/window/reinforced{dir = 1;pixel_y = 1},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel/white,/area/medical/chemistry)
-"coU" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/whiteyellow/side{dir = 8},/area/medical/chemistry)
-"coV" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel/white,/area/medical/chemistry)
-"coW" = (/obj/structure/chair/office/light{dir = 4},/obj/effect/landmark/start{name = "Chemist"},/turf/open/floor/plasteel/whiteyellow/side{dir = 4},/area/medical/chemistry)
-"coX" = (/obj/structure/table/reinforced,/obj/item/weapon/folder/white{pixel_x = 4;pixel_y = -3},/obj/machinery/door/firedoor,/obj/machinery/door/window/eastright{dir = 8;name = "Chemistry Desk";req_access_txt = "5; 33"},/obj/item/weapon/folder/white{pixel_x = 4;pixel_y = -3},/obj/item/weapon/pen,/obj/machinery/door/poddoor/shutters/preopen{id = "chemistry_shutters_2";name = "chemistry shutters"},/turf/open/floor/plasteel/whiteyellow{dir = 4},/area/medical/chemistry)
-"coY" = (/turf/open/floor/plasteel/yellow{dir = 4},/area/hallway/primary/aft)
-"coZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plasteel/yellow/side{dir = 8},/area/hallway/primary/aft)
-"cpa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/purple/side{dir = 4},/area/hallway/primary/aft)
-"cpb" = (/turf/open/floor/plasteel/purple,/area/hallway/primary/aft)
-"cpc" = (/obj/structure/table/reinforced,/obj/machinery/door/window/eastright{dir = 4;name = "Research and Development Desk";req_access_txt = "7"},/obj/item/weapon/folder/white{pixel_x = 4;pixel_y = -3},/obj/item/weapon/folder/white{pixel_x = 4;pixel_y = -3},/obj/machinery/door/firedoor,/obj/item/weapon/pen,/obj/machinery/door/poddoor/shutters/preopen{id = "research_shutters_2";name = "research shutters"},/turf/open/floor/plating,/area/toxins/lab)
-"cpd" = (/obj/effect/landmark/start{name = "Scientist"},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel/whitepurple/side{dir = 8},/area/toxins/lab)
-"cpe" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/toxins/lab)
-"cpf" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/turf/open/floor/plasteel/white,/area/toxins/lab)
-"cpg" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/toxins/lab)
-"cph" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/turf/open/floor/plasteel/whitepurple/side{dir = 4},/area/toxins/lab)
-"cpi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/sink{dir = 4;icon_state = "sink";pixel_x = 11;pixel_y = 0},/obj/structure/sign/poster{pixel_x = 32;pixel_y = 0},/turf/open/floor/plasteel/hydrofloor,/area/hydroponics)
-"cpj" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/whitepurple/side{dir = 8},/area/medical/research{name = "Research Division"})
-"cpk" = (/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"cpl" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"cpm" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"cpn" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"cpo" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"cpp" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"cpq" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/disposalpipe/junction{icon_state = "pipe-j2";dir = 2},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"cpr" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"cps" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/landmark{name = "lightsout"},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"cpt" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/junction{dir = 8;icon_state = "pipe-j1"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"cpu" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"cpv" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;on = 1;scrub_Toxins = 0},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"cpw" = (/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/junction{dir = 8;icon_state = "pipe-j2"},/turf/open/floor/plasteel/whitepurple/side{dir = 4},/area/medical/research{name = "Research Division"})
-"cpx" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/research{name = "Experimentation Lab";req_access_txt = "8"},/turf/open/floor/plasteel/whitepurple{dir = 4},/area/toxins/explab)
-"cpy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/whitepurple/side{dir = 8},/area/toxins/explab)
-"cpz" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/toxins/explab)
-"cpA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9;pixel_y = 0},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/toxins/explab)
-"cpB" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/toxins/explab)
-"cpC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/toxins/explab)
-"cpD" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4;initialize_directions = 11},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/toxins/explab)
-"cpE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/toxins/explab)
-"cpF" = (/obj/machinery/door/airlock/maintenance{name = "Experimentation Lab Maintenance";req_access_txt = "8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/toxins/explab)
-"cpG" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cpH" = (/obj/structure/bed/roller,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cpI" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/aft{name = "Aft Maintenance"})
-"cpJ" = (/obj/structure/barricade/wooden,/obj/structure/girder,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cpK" = (/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cpL" = (/obj/effect/decal/cleanable/blood/gibs/limb,/obj/structure/rack,/obj/item/weapon/storage/firstaid/regular{pixel_x = 0;pixel_y = 0},/obj/item/stack/medical/bruise_pack,/obj/item/stack/medical/bruise_pack,/obj/item/stack/medical/ointment,/obj/item/clothing/glasses/hud/health,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cpM" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/open/space,/area/space)
-"cpN" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8},/turf/open/floor/plating/airless,/area/maintenance/incinerator)
-"cpO" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/open/floor/plasteel/black,/area/construction/hallway{name = "\improper MiniSat Exterior"})
-"cpP" = (/obj/structure/lattice/catwalk,/obj/item/weapon/wrench,/turf/open/space,/area/space)
-"cpQ" = (/obj/structure/chair/stool,/turf/open/floor/wood{icon_state = "wood-broken7"},/area/maintenance/aft{name = "Aft Maintenance"})
-"cpR" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating{icon_plating = "warnplate"},/area/engine/engineering)
-"cpS" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cpT" = (/obj/machinery/door/airlock/maintenance{name = "Surgery Maintenance";req_access_txt = "45"},/turf/open/floor/plating,/area/medical/surgery)
-"cpU" = (/turf/open/floor/plasteel/white,/area/medical/surgery)
-"cpV" = (/obj/machinery/porta_turret/syndicate{dir = 4},/turf/closed/wall/mineral/plastitanium,/area/shuttle/syndicate)
-"cpW" = (/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel/white,/area/medical/surgery)
-"cpX" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical{name = "Operating Theatre";req_access_txt = "45"},/turf/open/floor/plasteel/white,/area/medical/surgery)
-"cpY" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/surgery)
-"cpZ" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/landmark/start{name = "Medical Doctor"},/obj/machinery/holopad,/turf/open/floor/plasteel/white,/area/medical/surgery)
-"cqa" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/surgery)
-"cqb" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_medical{id_tag = "";name = "Surgery Observation";req_access_txt = "0"},/turf/open/floor/plasteel/white,/area/medical/surgery)
-"cqc" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/whiteblue/side{dir = 8},/area/medical/cryo)
-"cqd" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/white,/area/medical/cryo)
-"cqe" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/medical/cryo)
-"cqf" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/medical/cryo)
-"cqg" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/medical/cryo)
-"cqh" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/medical/cryo)
-"cqi" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/whiteblue/side{dir = 8},/area/medical/medbay{name = "Medbay Central"})
-"cqj" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel/white,/area/medical/medbay{name = "Medbay Central"})
-"cqk" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "cmoprivacy";name = "privacy shutter"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/medical/cmo)
-"cql" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel/barber{dir = 8},/area/medical/cmo)
-"cqm" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel/barber{dir = 8},/area/medical/cmo)
-"cqn" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/barber{dir = 8},/area/medical/cmo)
-"cqo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/barber{dir = 8},/area/medical/cmo)
-"cqp" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{name = "CMO Maintenance";req_access_txt = "40"},/turf/open/floor/plating,/area/medical/cmo)
-"cqq" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cqr" = (/obj/machinery/power/apc{dir = 8;name = "Chemistry APC";pixel_x = -24;pixel_y = 0},/obj/structure/closet/secure_closet/chemical{pixel_x = -3},/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/white,/area/medical/chemistry)
-"cqs" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel/whiteyellow/side{dir = 10},/area/medical/chemistry)
-"cqt" = (/obj/machinery/chem_heater{pixel_x = 4},/turf/open/floor/plasteel/whiteyellow/side{dir = 2},/area/medical/chemistry)
-"cqu" = (/obj/machinery/chem_master{layer = 2.7;pixel_x = -2},/obj/structure/noticeboard{desc = "A board for pinning important notices upon. Probably helpful for keeping track of requests.";dir = 1;name = "requests board";pixel_x = 0;pixel_y = -32},/obj/machinery/button/door{id = "chemistry_shutters_2";name = "chemistry shutters control";pixel_x = 26;pixel_y = -26;req_access_txt = "5; 33"},/turf/open/floor/plasteel/whiteyellow/side{dir = 6},/area/medical/chemistry)
-"cqv" = (/obj/structure/table/reinforced,/obj/item/weapon/paper_bin{pixel_x = -2;pixel_y = 6},/turf/open/floor/plasteel/purple,/area/hallway/primary/aft)
-"cqw" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/shutters/preopen{id = "research_shutters_2";name = "research shutters"},/turf/open/floor/plating,/area/toxins/lab)
-"cqx" = (/obj/machinery/cell_charger,/obj/item/weapon/stock_parts/cell/high{charge = 100;maxcharge = 15000},/obj/machinery/power/apc{dir = 2;name = "Research Lab APC";pixel_x = 0;pixel_y = -26},/obj/structure/cable/yellow,/obj/structure/table,/obj/machinery/button/door{id = "research_shutters_2";name = "research shutters control";pixel_x = -26;pixel_y = -26;req_access_txt = "7"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/toxins/lab)
-"cqy" = (/obj/item/weapon/storage/toolbox/mechanical{pixel_x = 2;pixel_y = 3},/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2;pixel_y = -1},/obj/machinery/firealarm{dir = 1;pixel_y = -24},/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/toxins/lab)
-"cqz" = (/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/weapon/hand_labeler,/obj/machinery/requests_console{department = "Science";departmentType = 2;name = "Science Requests Console";pixel_x = 0;pixel_y = -30},/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/toxins/lab)
-"cqA" = (/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/obj/machinery/door/window/eastleft{dir = 1;name = "Research and Development Deliveries";req_access_txt = "7"},/obj/structure/window/reinforced{dir = 8},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/toxins/lab)
-"cqB" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/toxins/lab)
-"cqC" = (/obj/machinery/airalarm{dir = 1;pixel_y = -22},/obj/structure/sink{dir = 8;icon_state = "sink";pixel_x = -12;pixel_y = 2},/turf/open/floor/plasteel/whitepurple/corner{dir = 1},/area/medical/research{name = "Research Division"})
-"cqD" = (/obj/machinery/firealarm{dir = 1;pixel_y = -24},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"cqE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"cqF" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"cqG" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8;initialize_directions = 11},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"cqH" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"cqI" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"cqJ" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"cqK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/camera{c_tag = "Research Division Hallway - Starboard";dir = 1;network = list("SS13","RD")},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"cqL" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2;initialize_directions = 11},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"cqM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/firealarm{dir = 1;pixel_y = -24},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"cqN" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2;initialize_directions = 11},/turf/open/floor/plasteel/whitepurple/corner{dir = 2},/area/medical/research{name = "Research Division"})
-"cqO" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1;initialize_directions = 11},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/whitepurple/side{dir = 6},/area/medical/research{name = "Research Division"})
-"cqP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/toxins/explab)
-"cqQ" = (/obj/machinery/light_switch{pixel_x = -23;pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/whitepurple/corner{dir = 1},/area/toxins/explab)
-"cqR" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/power/apc{dir = 2;name = "Experimentation Lab APC";pixel_y = -24},/obj/structure/cable/yellow,/turf/open/floor/plasteel/white,/area/toxins/explab)
-"cqS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/device/radio/intercom{name = "Station Intercom (General)";pixel_y = -29},/obj/machinery/camera{c_tag = "Experimentation Lab";dir = 1;network = list("SS13","RD")},/obj/machinery/light,/turf/open/floor/plasteel/white,/area/toxins/explab)
-"cqT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/toxins/explab)
-"cqU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel/white,/area/toxins/explab)
-"cqV" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_Toxins = 0},/turf/open/floor/plasteel/white,/area/toxins/explab)
-"cqW" = (/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/toxins/explab)
-"cqX" = (/obj/structure/bed/roller,/obj/effect/decal/cleanable/blood/old,/obj/effect/decal/cleanable/blood/gibs/old,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cqY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cqZ" = (/obj/structure/barricade/wooden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/girder,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cra" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"crb" = (/obj/structure/bed,/obj/effect/decal/cleanable/blood/old,/obj/effect/decal/cleanable/blood/gibs/old,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"crc" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/turf/open/space,/area/space)
-"crd" = (/obj/structure/disposaloutlet{dir = 2},/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/lattice/catwalk,/turf/open/space,/area/space)
-"cre" = (/obj/structure/sign/fire{pixel_x = 0;pixel_y = 0},/turf/closed/wall/r_wall,/area/maintenance/incinerator)
-"crf" = (/obj/machinery/door/poddoor{id = "turbinevent";name = "Turbine Vent"},/turf/open/floor/engine/vacuum,/area/maintenance/incinerator)
-"crg" = (/obj/item/toy/cards/deck,/obj/structure/table/wood/poker,/turf/open/floor/wood,/area/maintenance/aft{name = "Aft Maintenance"})
-"crh" = (/turf/open/floor/wood{icon_state = "wood-broken4"},/area/maintenance/aft{name = "Aft Maintenance"})
-"cri" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/sign/poster{pixel_x = 32;pixel_y = 0},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/aft{name = "Aft Maintenance"})
-"crj" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/sink{dir = 8;icon_state = "sink";pixel_x = -12;pixel_y = 2},/obj/machinery/light_switch{pixel_x = -28;pixel_y = 0},/turf/open/floor/plasteel/white/side{dir = 4},/area/medical/surgery)
-"crk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel/white,/area/medical/surgery)
-"crl" = (/obj/machinery/computer/operating,/turf/open/floor/plasteel/white,/area/medical/surgery)
-"crm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel/white,/area/medical/surgery)
-"crn" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/obj/machinery/firealarm{dir = 4;pixel_x = 24},/turf/open/floor/plasteel/white/side{dir = 8},/area/medical/surgery)
-"cro" = (/obj/structure/bed/roller,/obj/machinery/iv_drip{density = 0},/turf/open/floor/plasteel/white,/area/medical/surgery)
-"crp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plasteel/white,/area/medical/surgery)
-"crq" = (/obj/structure/bed,/obj/item/weapon/bedsheet/medical,/obj/machinery/light_switch{pixel_x = 26;pixel_y = 0},/turf/open/floor/plasteel/white,/area/medical/surgery)
-"crr" = (/obj/machinery/airalarm{dir = 4;icon_state = "alarm0";pixel_x = -22},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/turf/open/floor/plasteel/whiteblue/side{dir = 8},/area/medical/cryo)
-"crs" = (/obj/machinery/firealarm{dir = 1;pixel_y = -24},/obj/structure/table/reinforced,/obj/item/weapon/crowbar,/obj/machinery/camera{c_tag = "Medbay Cryo";dir = 1;network = list("SS13","Medbay")},/obj/item/weapon/screwdriver{pixel_y = 6},/obj/item/clothing/neck/stethoscope,/obj/item/weapon/wrench/medical,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/white,/area/medical/cryo)
-"crt" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer{dir = 1},/obj/item/device/radio/intercom{broadcasting = 1;freerange = 0;frequency = 1485;listening = 0;name = "Station Intercom (Medbay)";pixel_x = 0;pixel_y = -30},/obj/machinery/light,/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/medical/cryo)
-"cru" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1;name = "Connector Port (Air Supply)"},/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel,/area/medical/cryo)
-"crv" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1;name = "Connector Port (Air Supply)"},/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/light_switch{pixel_x = 0;pixel_y = -24},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/medical/cryo)
-"crw" = (/turf/open/floor/plasteel/whiteblue/corner{dir = 1},/area/medical/medbay{name = "Medbay Central"})
-"crx" = (/obj/machinery/light{dir = 4;icon_state = "tube1"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/whiteblue/corner{dir = 2},/area/medical/medbay{name = "Medbay Central"})
-"cry" = (/obj/machinery/airalarm{dir = 4;pixel_x = -23;pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/barber{dir = 8},/area/medical/cmo)
-"crz" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/holopad,/turf/open/floor/plasteel/barber{dir = 8},/area/medical/cmo)
-"crA" = (/obj/structure/table/glass,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/weapon/storage/secure/briefcase,/turf/open/floor/plasteel/barber{dir = 8},/area/medical/cmo)
-"crB" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/barber{dir = 8},/area/medical/cmo)
-"crC" = (/obj/machinery/light{dir = 4;icon_state = "tube1"},/obj/machinery/keycard_auth{pixel_x = 26;pixel_y = -7},/obj/machinery/computer/med_data/laptop,/obj/structure/table/glass,/obj/machinery/button/door{id = "cmoprivacy";name = "Privacy Shutters Control";pixel_x = 26;pixel_y = 4},/turf/open/floor/plasteel/barber{dir = 8},/area/medical/cmo)
-"crD" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"crE" = (/obj/machinery/door/airlock/maintenance{name = "Chemistry Lab Maintenance";req_access_txt = "5; 33"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plating,/area/medical/chemistry)
-"crF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = -29},/turf/open/floor/plasteel/yellow/corner{dir = 1},/area/hallway/primary/aft)
-"crG" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"crH" = (/obj/machinery/power/apc{cell_type = 5000;dir = 4;name = "Aft Hallway APC";pixel_x = 24;pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/turf/open/floor/plasteel/purple/corner{dir = 4},/area/hallway/primary/aft)
-"crI" = (/obj/structure/plasticflaps{opacity = 1},/obj/machinery/navbeacon{codes_txt = "delivery;dir=1";dir = 1;freq = 1400;location = "Research and Development"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/toxins/lab)
-"crJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"crK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/white/side{dir = 5},/area/medical/research{name = "Research Division"})
-"crL" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"crM" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"crN" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow,/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/obj/machinery/door/poddoor/preopen{id = "rdprivacy";name = "privacy shutter"},/turf/open/floor/plating,/area/crew_quarters/hor)
-"crO" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/machinery/door/poddoor/preopen{id = "rdprivacy";name = "privacy shutter"},/turf/open/floor/plating,/area/crew_quarters/hor)
-"crP" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/machinery/door/poddoor/preopen{id = "rdprivacy";name = "privacy shutter"},/turf/open/floor/plating,/area/crew_quarters/hor)
-"crQ" = (/turf/closed/wall,/area/crew_quarters/hor)
-"crR" = (/turf/closed/wall/r_wall,/area/toxins/storage)
-"crS" = (/obj/structure/sign/biohazard,/turf/closed/wall/r_wall,/area/toxins/storage)
-"crT" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/research{name = "Toxins Storage";req_access_txt = "8"},/obj/machinery/door/poddoor/shutters/preopen{id = "toxins_blastdoor";name = "biohazard containment shutters"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/toxins/storage)
-"crU" = (/obj/structure/closet/emcloset,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/toxins/explab)
-"crV" = (/obj/structure/closet/radiation,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/toxins/explab)
-"crW" = (/obj/structure/closet/l3closet/scientist{pixel_x = -2},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/toxins/explab)
-"crX" = (/obj/structure/closet/wardrobe/science_white,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/toxins/explab)
-"crY" = (/obj/structure/rack,/obj/item/weapon/reagent_containers/blood/random,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"crZ" = (/obj/structure/table,/obj/structure/bedsheetbin{pixel_x = 2},/obj/item/clothing/mask/muzzle,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"csa" = (/obj/structure/table,/obj/item/weapon/restraints/handcuffs/cable/white,/obj/item/weapon/gun/syringe,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"csb" = (/obj/structure/rack,/obj/item/weapon/hatchet,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"csc" = (/obj/machinery/iv_drip{density = 0},/obj/item/roller,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"csd" = (/obj/structure/rack,/obj/item/weapon/tank/internals/anesthetic,/obj/item/clothing/mask/gas,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cse" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"csf" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/aft{name = "Aft Maintenance"})
-"csg" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"csh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/maintenance/aft{name = "Aft Maintenance"})
-"csi" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"csj" = (/obj/structure/closet/secure_closet/medical2,/obj/structure/sign/nosmoking_2{pixel_x = -28},/turf/open/floor/plasteel,/area/medical/surgery)
-"csk" = (/obj/machinery/airalarm{dir = 1;icon_state = "alarm0";pixel_y = -22},/turf/open/floor/plasteel/white/side{dir = 1},/area/medical/surgery)
-"csl" = (/obj/machinery/light,/obj/machinery/camera{c_tag = "Medbay Surgery";dir = 1;network = list("SS13","Medbay")},/turf/open/floor/plasteel/white,/area/medical/surgery)
-"csm" = (/obj/machinery/firealarm{dir = 1;pixel_y = -24},/turf/open/floor/plasteel/white/side{dir = 1},/area/medical/surgery)
-"csn" = (/obj/item/device/radio/intercom{broadcasting = 1;freerange = 0;frequency = 1485;listening = 0;name = "Station Intercom (Medbay)";pixel_x = 0;pixel_y = -30},/obj/structure/closet/crate/freezer/blood,/turf/open/floor/plasteel,/area/medical/surgery)
-"cso" = (/obj/structure/bed/roller,/obj/machinery/light/small{dir = 8},/obj/machinery/airalarm{dir = 1;icon_state = "alarm0";pixel_y = -22},/obj/structure/sign/nosmoking_2{pixel_x = -28},/obj/machinery/iv_drip{density = 0},/turf/open/floor/plasteel/whiteblue/side{dir = 2},/area/medical/surgery)
-"csp" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/turf/open/floor/plasteel/whiteblue/side{dir = 2},/area/medical/surgery)
-"csq" = (/obj/structure/bed,/obj/machinery/firealarm{dir = 4;pixel_x = 24},/obj/item/weapon/bedsheet/medical,/obj/machinery/newscaster{pixel_x = 0;pixel_y = -32},/obj/machinery/camera{c_tag = "Medbay Recovery Room";dir = 1;network = list("SS13","Medbay")},/turf/open/floor/plasteel/whiteblue/side{dir = 2},/area/medical/surgery)
-"csr" = (/obj/machinery/door/airlock/maintenance{name = "Medbay Maintenance";req_access_txt = "5"},/turf/open/floor/plating,/area/medical/cryo)
-"css" = (/turf/closed/wall,/area/medical/cryo)
-"cst" = (/obj/machinery/firealarm{dir = 8;pixel_x = -24},/obj/machinery/camera{c_tag = "Medbay Hallway Central";dir = 4;network = list("SS13","Medbay")},/turf/open/floor/plasteel/whiteblue/corner{dir = 8},/area/medical/medbay{name = "Medbay Central"})
-"csu" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay{name = "Medbay Central"})
-"csv" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/whiteblue/side{dir = 4},/area/medical/medbay{name = "Medbay Central"})
-"csw" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Chief Medical Officer's Office";req_access_txt = "40";req_one_access_txt = "0"},/turf/open/floor/plasteel/barber{dir = 8},/area/medical/cmo)
-"csx" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/sortjunction{dir = 8;icon_state = "pipe-j2s";sortType = 10},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel/barber{dir = 8},/area/medical/cmo)
-"csy" = (/obj/structure/chair{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9;pixel_y = 0},/turf/open/floor/plasteel/barber{dir = 8},/area/medical/cmo)
-"csz" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/table/glass,/obj/item/weapon/folder/blue,/obj/item/weapon/folder/blue,/obj/item/weapon/pen,/turf/open/floor/plasteel/barber{dir = 8},/area/medical/cmo)
-"csA" = (/obj/structure/chair/office/light{dir = 8},/obj/machinery/requests_console{announcementConsole = 1;department = "Chief Medical Officer's Desk";departmentType = 5;name = "Chief Medical Officer RC";pixel_x = 0;pixel_y = -32},/obj/effect/landmark/start{name = "Chief Medical Officer"},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel/barber{dir = 8},/area/medical/cmo)
-"csB" = (/obj/machinery/computer/security/telescreen{desc = "Used for monitoring medbay to ensure patient safety.";dir = 8;name = "Medbay Monitor";network = list("Medbay");pixel_x = 29;pixel_y = 0},/obj/item/device/radio/intercom{dir = 1;name = "Station Intercom (General)";pixel_y = -29},/obj/machinery/computer/card/minor/cmo,/turf/open/floor/plasteel/barber{dir = 8},/area/medical/cmo)
-"csC" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/landmark{name = "blobstart"},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"csD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"csE" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/aft{name = "Aft Maintenance"})
-"csF" = (/obj/structure/disposalpipe/sortjunction{dir = 8;icon_state = "pipe-j1s";sortType = 11},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9;pixel_y = 0},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"csG" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/sign/poster{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"csH" = (/obj/structure/disposalpipe/sortjunction{dir = 8;icon_state = "pipe-j2s";sortType = 23},/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"csI" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/maintenance{req_access_txt = "0";req_one_access_txt = "12;5;9"},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"csJ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/hallway/primary/aft)
-"csK" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/junction{dir = 8;icon_state = "pipe-j1"},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"csL" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/hallway/primary/aft)
-"csM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock{name = "Aft Emergency Storage";req_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"csN" = (/obj/structure/disposalpipe/sortjunction{dir = 8;icon_state = "pipe-j2s";sortType = 14},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"csO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"csP" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/maintenance{req_access_txt = "0";req_one_access_txt = "7;47;29;12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"csQ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"csR" = (/obj/structure/disposalpipe/sortjunction{dir = 8;icon_state = "pipe-j1s";sortType = 12},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"csS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"csT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"csU" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/maintenance{name = "Research Maintenance";req_access_txt = "0";req_one_access_txt = "7;47;29"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/medical/research{name = "Research Division"})
-"csV" = (/obj/structure/disposalpipe/junction{dir = 8;icon_state = "pipe-j1"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/white/side{dir = 4},/area/medical/research{name = "Research Division"})
-"csW" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/sortjunction{dir = 8;icon_state = "pipe-j2s";sortType = 13},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"csX" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"csY" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow,/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/obj/machinery/door/poddoor/preopen{id = "rdprivacy";name = "privacy shutter"},/turf/open/floor/plating,/area/crew_quarters/hor)
-"csZ" = (/obj/machinery/computer/security/telescreen{desc = "Used for watching the RD's goons from the safety of his office.";name = "Research Monitor";network = list("RD");pixel_x = 0;pixel_y = 2},/obj/structure/table/reinforced,/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/hor)
-"cta" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/modular_computer/console/preset/research,/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/hor)
-"ctb" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/requests_console{announcementConsole = 1;department = "Research Director's Desk";departmentType = 5;name = "Research Director RC";pixel_x = 0;pixel_y = 30},/obj/machinery/modular_computer/console/preset/research,/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/hor)
-"ctc" = (/obj/machinery/status_display{density = 0;layer = 4;pixel_x = 0;pixel_y = 32},/obj/effect/landmark/xmastree/rdrod,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/hor)
-"ctd" = (/obj/structure/displaycase/labcage,/obj/machinery/light/small{dir = 1},/obj/structure/sign/biohazard{pixel_y = 32},/turf/open/floor/plasteel/white,/area/crew_quarters/hor)
-"cte" = (/obj/item/weapon/storage/secure/safe{pixel_x = 32;pixel_y = 0},/obj/machinery/ai_status_display{pixel_y = 32},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/white,/area/crew_quarters/hor)
-"ctf" = (/obj/machinery/portable_atmospherics/scrubber/huge,/obj/machinery/light_switch{pixel_x = -23;pixel_y = 0},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/toxins/storage)
-"ctg" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/toxins/storage)
-"cth" = (/obj/machinery/light/small{dir = 1},/obj/structure/sign/nosmoking_2{pixel_y = 32},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/toxins/storage)
-"cti" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/power/apc{cell_type = 5000;dir = 1;name = "Toxins Storage APC";pixel_x = 0;pixel_y = 25},/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/toxins/storage)
-"ctj" = (/obj/machinery/portable_atmospherics/scrubber/huge,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/toxins/storage)
-"ctk" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plating{icon_state = "platingdmg2"},/area/maintenance/aft{name = "Aft Maintenance"})
-"ctl" = (/obj/machinery/camera{active_power_usage = 0;c_tag = "Turbine Vent";dir = 4;network = list("Turbine");use_power = 0},/turf/open/space,/area/space)
-"ctm" = (/obj/structure/grille/broken,/turf/open/space,/area/space)
-"ctn" = (/obj/machinery/vending/cigarette,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cto" = (/obj/machinery/vending/assist,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"ctp" = (/obj/machinery/door/airlock/maintenance{name = "Medbay Maintenance";req_access_txt = "5"},/turf/open/floor/plating,/area/medical/surgery)
-"ctq" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"ctr" = (/obj/structure/bed,/obj/item/weapon/bedsheet/medical,/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel/whiteblue/side{dir = 8},/area/medical/patients_rooms{name = "Patient Room A"})
-"cts" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/vending/wallmed{pixel_x = 0;pixel_y = 28},/turf/open/floor/plasteel/white,/area/medical/patients_rooms{name = "Patient Room A"})
-"ctt" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/machinery/light_switch{pixel_x = 0;pixel_y = 24},/turf/open/floor/plasteel/whiteblue/side{dir = 4},/area/medical/patients_rooms{name = "Patient Room A"})
-"ctu" = (/obj/machinery/door/airlock/medical{name = "Patient Room A";req_access_txt = "5"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/patients_rooms{name = "Patient Room A"})
-"ctv" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel/white,/area/medical/medbay{name = "Medbay Central"})
-"ctw" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/whiteblue/corner{dir = 4},/area/medical/medbay{name = "Medbay Central"})
-"ctx" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/light_switch{pixel_x = -28;pixel_y = 0},/obj/machinery/newscaster{pixel_x = 0;pixel_y = -30},/turf/open/floor/plasteel/barber{dir = 8},/area/medical/cmo)
-"cty" = (/obj/machinery/suit_storage_unit/cmo,/turf/open/floor/plasteel/barber{dir = 8},/area/medical/cmo)
-"ctz" = (/obj/structure/table/glass,/obj/item/weapon/pen,/obj/item/clothing/neck/stethoscope,/obj/structure/extinguisher_cabinet{pixel_x = 6;pixel_y = -30},/turf/open/floor/plasteel/barber{dir = 8},/area/medical/cmo)
-"ctA" = (/turf/closed/wall/r_wall,/area/medical/genetics)
-"ctB" = (/turf/closed/wall,/area/medical/genetics)
-"ctC" = (/obj/machinery/door/airlock/maintenance{name = "Genetics Maintenance";req_access_txt = "9";req_one_access_txt = "0"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/medical/genetics)
-"ctD" = (/obj/structure/sign/directions/evac{pixel_y = 0},/turf/closed/wall,/area/medical/genetics)
-"ctE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/blue/corner{dir = 8},/area/hallway/primary/aft)
-"ctF" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"ctG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/hallway/primary/aft)
-"ctH" = (/obj/structure/sign/directions/evac{pixel_y = 0},/turf/closed/wall,/area/maintenance/aft{name = "Aft Maintenance"})
-"ctI" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/sign/poster{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"ctJ" = (/obj/item/weapon/storage/toolbox/emergency,/obj/structure/closet/firecloset,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"ctK" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"ctL" = (/turf/closed/wall/r_wall,/area/toxins/misc_lab{name = "\improper Research Testing Range"})
-"ctM" = (/obj/machinery/door/airlock/maintenance{name = "Research Testing Range Maintenance";req_access_txt = "0";req_one_access_txt = "7;47;29"},/turf/open/floor/plating,/area/toxins/misc_lab{name = "\improper Research Testing Range"})
-"ctN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel/white/side{dir = 6},/area/medical/research{name = "Research Division"})
-"ctO" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"ctP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"ctQ" = (/obj/machinery/button/door{id = "xeno_blastdoor";name = "Secure Lab Shutter Control";pixel_x = -5;pixel_y = -5;req_access_txt = "47"},/obj/structure/table/reinforced,/obj/machinery/button/door{id = "rdprivacy";name = "Privacy Shutters Control";pixel_x = 5;pixel_y = 5},/obj/machinery/button/door{id = "Biohazard";name = "Entrance Shutter Control";pixel_x = -5;pixel_y = 5;req_access_txt = "47"},/obj/machinery/button/door{id = "toxins_blastdoor";name = "Toxins Shutter Control";pixel_x = 5;pixel_y = -5;req_access_txt = "47"},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/hor)
-"ctR" = (/obj/structure/chair/office/light{dir = 8},/obj/effect/landmark/start{name = "Research Director"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/hor)
-"ctS" = (/obj/machinery/computer/robotics,/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/hor)
-"ctT" = (/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel/white,/area/crew_quarters/hor)
-"ctU" = (/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel/white,/area/crew_quarters/hor)
-"ctV" = (/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel/white,/area/crew_quarters/hor)
-"ctW" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/machinery/airalarm{dir = 4;icon_state = "alarm0";pixel_x = -22},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/toxins/storage)
-"ctX" = (/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/toxins/storage)
-"ctY" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/chair/stool,/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/toxins/storage)
-"ctZ" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/toxins/storage)
-"cua" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/toxins/storage)
-"cub" = (/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cuc" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cud" = (/obj/structure/closet,/obj/item/weapon/storage/toolbox/emergency,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cue" = (/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/power/solar{id = "aftport";name = "Aft-Port Solar Array"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/port)
-"cuf" = (/obj/structure/closet,/obj/item/weapon/extinguisher,/obj/effect/decal/cleanable/cobweb,/obj/item/device/flashlight,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cug" = (/obj/structure/closet,/obj/item/weapon/reagent_containers/glass/beaker{pixel_x = 8;pixel_y = 2},/obj/item/weapon/reagent_containers/dropper,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cuh" = (/obj/structure/closet/crate,/obj/item/stack/cable_coil,/obj/item/weapon/grenade/chem_grenade,/obj/item/device/flashlight,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cui" = (/obj/structure/closet/crate,/obj/item/weapon/coin/silver,/obj/item/weapon/reagent_containers/spray/weedspray,/obj/item/weapon/paper,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cuj" = (/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cuk" = (/obj/structure/table,/obj/item/weapon/folder/white{pixel_x = 4;pixel_y = -3},/obj/item/clothing/neck/stethoscope,/obj/machinery/light/small{dir = 8},/obj/machinery/power/apc{dir = 8;name = "Patient Room A APC";pixel_x = -26;pixel_y = 0},/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/whiteblue/side{dir = 8},/area/medical/patients_rooms{name = "Patient Room A"})
-"cul" = (/obj/structure/chair/office/light{dir = 8},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel/white,/area/medical/patients_rooms{name = "Patient Room A"})
-"cum" = (/obj/structure/closet/secure_closet/personal/patient,/obj/machinery/button/door{id = "isola";name = "Privacy Shutters";pixel_y = -25},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel/whiteblue/side{dir = 4},/area/medical/patients_rooms{name = "Patient Room A"})
-"cun" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/poddoor/preopen{id = "isola";name = "privacy shutters"},/turf/open/floor/plating,/area/medical/patients_rooms{name = "Patient Room A"})
-"cuo" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/whiteblue/corner{dir = 1},/area/medical/medbay{name = "Medbay Central"})
-"cup" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/medical/medbay{name = "Medbay Central"})
-"cuq" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/extinguisher_cabinet{pixel_x = 27;pixel_y = 0},/obj/machinery/light{dir = 4;icon_state = "tube1"},/turf/open/floor/plasteel/white,/area/medical/medbay{name = "Medbay Central"})
-"cur" = (/obj/item/weapon/storage/box/rxglasses{pixel_x = 3;pixel_y = 3},/obj/item/weapon/storage/box/bodybags,/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = -29},/obj/structure/table/glass,/turf/open/floor/plasteel/vault,/area/medical/genetics)
-"cus" = (/obj/item/clothing/gloves/color/latex,/obj/item/clothing/gloves/color/latex,/obj/item/weapon/storage/box/disks{pixel_x = 2;pixel_y = 2},/obj/structure/table/glass,/turf/open/floor/plasteel/vault,/area/medical/genetics)
-"cut" = (/obj/machinery/requests_console{department = "Genetics";departmentType = 0;name = "Genetics Requests Console";pixel_x = 0;pixel_y = 30},/obj/machinery/light{dir = 1},/obj/item/weapon/storage/box/monkeycubes,/obj/item/device/radio/headset/headset_medsci,/obj/item/device/flashlight/pen{pixel_x = 4;pixel_y = 3},/obj/item/device/flashlight/pen{pixel_x = 4;pixel_y = 3},/obj/structure/noticeboard{desc = "A board for pinning important notices upon.";name = "notice board";pixel_x = -32;pixel_y = 32},/obj/structure/table/glass,/turf/open/floor/plasteel/vault,/area/medical/genetics)
-"cuu" = (/obj/machinery/power/apc{dir = 1;name = "Genetics Lab APC";pixel_y = 24},/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/obj/item/weapon/folder/white{pixel_x = 4;pixel_y = -3},/obj/item/weapon/folder/white{pixel_x = 4;pixel_y = -3},/obj/item/weapon/storage/pill_bottle/mutadone,/obj/item/weapon/storage/pill_bottle/mannitol,/obj/structure/table/glass,/turf/open/floor/plasteel/vault,/area/medical/genetics)
-"cuv" = (/obj/item/weapon/reagent_containers/dropper,/obj/item/weapon/reagent_containers/glass/beaker{pixel_x = 8;pixel_y = 2},/obj/machinery/firealarm{dir = 4;pixel_x = 24},/obj/structure/sign/nosmoking_2{pixel_y = 32},/obj/structure/table/glass,/turf/open/floor/plasteel/vault,/area/medical/genetics)
-"cuw" = (/obj/structure/filingcabinet/chestdrawer,/turf/open/floor/plasteel/blue/side{dir = 9},/area/medical/genetics)
-"cux" = (/obj/structure/noticeboard{desc = "A board for pinning important notices upon. Probably helpful for keeping track of requests.";name = "requests board";pixel_x = -32;pixel_y = 32},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/blue/side{dir = 5},/area/medical/genetics)
-"cuy" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/shutters/preopen{id = "genetics_shutters";name = "genetics shutters"},/turf/open/floor/plating,/area/medical/genetics)
-"cuz" = (/obj/structure/table/reinforced,/obj/item/weapon/paper_bin{pixel_x = -2;pixel_y = 6},/turf/open/floor/plasteel/blue,/area/medical/genetics)
-"cuA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plasteel/blue/side{dir = 8},/area/hallway/primary/aft)
-"cuB" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating{icon_plating = "warnplate"},/area/maintenance/aft{name = "Aft Maintenance"})
-"cuC" = (/obj/machinery/portable_atmospherics/canister/air,/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/effect/spawner/lootdrop/maintenance,/obj/item/weapon/wrench,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cuD" = (/obj/structure/reagent_dispensers/watertank,/obj/item/weapon/storage/box/lights/mixed,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cuE" = (/obj/structure/reagent_dispensers/fueltank,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cuF" = (/obj/machinery/light/small{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/toxins/misc_lab{name = "\improper Research Testing Range"})
-"cuG" = (/turf/open/floor/engine{dir = 9;icon_state = "floor"},/area/toxins/misc_lab{name = "\improper Research Testing Range"})
-"cuH" = (/obj/machinery/light/small{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/toxins/misc_lab{name = "\improper Research Testing Range"})
-"cuI" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel/white/side{dir = 5},/area/medical/research{name = "Research Division"})
-"cuJ" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"cuK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/whiteblue/corner{dir = 2},/area/medical/research{name = "Research Division"})
-"cuL" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow,/obj/machinery/door/poddoor/preopen{id = "rdprivacy";name = "privacy shutter"},/turf/open/floor/plating,/area/crew_quarters/hor)
-"cuM" = (/obj/machinery/computer/card/minor/rd,/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/hor)
-"cuN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/hor)
-"cuO" = (/obj/machinery/computer/mecha,/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/hor)
-"cuP" = (/obj/structure/table,/obj/item/device/aicard,/obj/item/weapon/circuitboard/aicore{pixel_x = -2;pixel_y = 4},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/hor)
-"cuQ" = (/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/hor)
-"cuR" = (/obj/structure/table,/obj/item/device/taperecorder{pixel_x = -3},/obj/item/device/paicard{pixel_x = 4},/obj/item/weapon/storage/secure/briefcase,/obj/machinery/firealarm{dir = 4;pixel_x = 24},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/hor)
-"cuS" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/machinery/light/small{dir = 8},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/toxins/storage)
-"cuT" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/toxins/storage)
-"cuU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/toxins/storage)
-"cuV" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/toxins/storage)
-"cuW" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/machinery/light/small{dir = 4},/obj/machinery/camera{c_tag = "Toxins Storage";dir = 8;network = list("SS13","RD")},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/toxins/storage)
-"cuX" = (/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cuY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/landmark{name = "blobstart"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cuZ" = (/obj/machinery/door/airlock/maintenance{name = "Storage Room";req_access_txt = "0";req_one_access_txt = "12;47"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cva" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cvb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cvc" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cvd" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port)
-"cve" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port)
-"cvf" = (/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port)
-"cvg" = (/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port)
-"cvh" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port)
-"cvi" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port)
-"cvj" = (/obj/structure/closet/emcloset,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;name = "EXTERNAL AIRLOCK";pixel_x = -32;pixel_y = 0},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cvk" = (/obj/structure/closet/crate,/obj/item/weapon/crowbar/red,/obj/item/weapon/pen,/obj/item/device/flashlight/pen{pixel_x = 4;pixel_y = 3},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cvl" = (/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cvm" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cvn" = (/obj/structure/chair{dir = 8},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cvo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/medical/patients_rooms{name = "Patient Room A"})
-"cvp" = (/turf/closed/wall,/area/medical/patients_rooms{name = "Patient Room A"})
-"cvq" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/sign/examroom{pixel_x = -32},/turf/open/floor/plasteel/white,/area/medical/medbay{name = "Medbay Central"})
-"cvr" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/white,/area/medical/medbay{name = "Medbay Central"})
-"cvs" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay{name = "Medbay Central"})
-"cvt" = (/turf/closed/wall,/area/medical/genetics_cloning)
-"cvu" = (/obj/machinery/shower{icon_state = "shower";dir = 4},/obj/machinery/door/window/southleft{dir = 2;name = "Cloning Shower"},/obj/structure/mirror{pixel_x = -28},/turf/open/floor/plasteel/vault,/area/medical/genetics_cloning)
-"cvv" = (/obj/machinery/door/window/southleft{base_state = "right";dir = 2;icon_state = "right";name = "Cloning Shower"},/obj/structure/sink/kitchen{desc = "A sink used for washing one's hands and face. It looks rusty and home-made";name = "sink";pixel_y = 28},/turf/open/floor/plasteel/vault,/area/medical/genetics_cloning)
-"cvw" = (/obj/machinery/clonepod{pixel_y = 2},/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 29},/obj/structure/window/reinforced,/turf/open/floor/plasteel/vault,/area/medical/genetics_cloning)
-"cvx" = (/obj/machinery/computer/scan_consolenew,/obj/machinery/camera{c_tag = "Genetics Lab";dir = 4;network = list("SS13","Medbay")},/turf/open/floor/plasteel/whiteblue,/area/medical/genetics)
-"cvy" = (/obj/structure/chair/office/light{dir = 8},/obj/effect/landmark/start{name = "Geneticist"},/turf/open/floor/plasteel/whiteblue/side{dir = 9},/area/medical/genetics)
-"cvz" = (/turf/open/floor/plasteel/whiteblue/side{dir = 1},/area/medical/genetics)
-"cvA" = (/obj/structure/chair/office/light{dir = 4},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/effect/landmark/start{name = "Geneticist"},/turf/open/floor/plasteel/whiteblue/side{dir = 5},/area/medical/genetics)
-"cvB" = (/obj/machinery/computer/scan_consolenew,/turf/open/floor/plasteel/whiteblue,/area/medical/genetics)
-"cvC" = (/obj/machinery/firealarm{dir = 8;pixel_x = -24},/obj/item/weapon/storage/box/syringes,/obj/item/weapon/storage/box/beakers{pixel_x = 2;pixel_y = 2},/obj/structure/table/glass,/turf/open/floor/plasteel/blue/side{dir = 8},/area/medical/genetics)
-"cvD" = (/obj/structure/chair/office/light{dir = 4},/obj/structure/disposalpipe/segment,/obj/effect/landmark/start{name = "Geneticist"},/turf/open/floor/plasteel/blue/side{dir = 4},/area/medical/genetics)
-"cvE" = (/obj/structure/table/reinforced,/obj/item/weapon/folder/white{pixel_x = 4;pixel_y = -3},/obj/item/weapon/pen,/obj/machinery/door/firedoor,/obj/machinery/door/window/eastright{dir = 8;name = "Genetics Desk";req_access_txt = "5;9"},/obj/machinery/door/window/southleft{dir = 4;name = "Outer Window"},/obj/machinery/door/poddoor/shutters/preopen{id = "genetics_shutters";name = "genetics shutters"},/turf/open/floor/plating,/area/medical/genetics)
-"cvF" = (/turf/open/floor/plasteel/blue,/area/medical/genetics)
-"cvG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/extinguisher_cabinet{pixel_x = 27;pixel_y = 0},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/hallway/primary/aft)
-"cvH" = (/turf/closed/wall,/area/assembly/chargebay)
-"cvI" = (/obj/machinery/door/airlock/maintenance{name = "Mech Bay Maintenance";req_access_txt = "29"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/assembly/chargebay)
-"cvJ" = (/obj/structure/sign/nosmoking_2{pixel_x = -29;pixel_y = 0},/turf/open/floor/engine{dir = 9;icon_state = "floor"},/area/toxins/misc_lab{name = "\improper Research Testing Range"})
-"cvK" = (/obj/machinery/magnetic_module,/obj/effect/landmark{name = "blobstart"},/obj/structure/target_stake,/obj/effect/turf_decal/bot{dir = 9},/turf/open/floor/plasteel{dir = 9},/area/toxins/misc_lab{name = "\improper Research Testing Range"})
-"cvL" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "researchrangeshutters";name = "blast door"},/turf/open/floor/plating,/area/toxins/misc_lab{name = "\improper Research Testing Range"})
-"cvM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white/side{dir = 4},/area/medical/research{name = "Research Division"})
-"cvN" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"cvO" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8;initialize_directions = 11},/turf/open/floor/plasteel/whiteblue/side{dir = 4},/area/medical/research{name = "Research Division"})
-"cvP" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Research Director's Office";req_access_txt = "30";req_one_access_txt = "0"},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/hor)
-"cvQ" = (/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/hor)
-"cvR" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/hor)
-"cvS" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/hor)
-"cvT" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_Toxins = 0},/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/hor)
-"cvU" = (/obj/machinery/holopad,/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/hor)
-"cvV" = (/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/obj/structure/extinguisher_cabinet{pixel_x = -27;pixel_y = 0},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/toxins/storage)
-"cvW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/obj/effect/landmark{name = "blobstart"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/toxins/storage)
-"cvX" = (/obj/machinery/portable_atmospherics/canister/toxins,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/toxins/storage)
-"cvY" = (/obj/machinery/portable_atmospherics/canister/toxins,/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 29},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/toxins/storage)
-"cvZ" = (/obj/structure/closet/crate,/obj/item/device/multitool,/obj/item/clothing/gloves/color/fyellow,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cwa" = (/obj/structure/rack,/obj/item/hand_labeler_refill,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cwb" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/aft{name = "Aft Maintenance"})
-"cwc" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cwd" = (/obj/structure/closet/crate,/obj/item/weapon/coin/silver,/obj/item/device/flashlight/seclite,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cwe" = (/obj/structure/cable,/obj/machinery/power/solar{id = "aftport";name = "Aft-Port Solar Array"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/port)
-"cwf" = (/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/obj/structure/lattice/catwalk,/turf/open/space,/area/space)
-"cwg" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/lattice/catwalk,/turf/open/space,/area/space)
-"cwh" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cwi" = (/obj/machinery/door/airlock/external{req_access_txt = "13"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cwj" = (/obj/item/weapon/cigbutt,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cwk" = (/obj/machinery/vending/cigarette,/obj/machinery/status_display{density = 0;layer = 4;pixel_x = 0;pixel_y = 32},/obj/structure/sign/poster{pixel_x = 32;pixel_y = 0},/turf/open/floor/plasteel/white/side{dir = 4},/area/medical/research{name = "Research Division"})
-"cwl" = (/obj/structure/rack,/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka{pixel_x = 3;pixel_y = 2},/obj/item/weapon/reagent_containers/food/drinks/bottle/vermouth{pixel_x = -4;pixel_y = 3},/obj/item/weapon/reagent_containers/food/drinks/bottle/whiskey,/obj/structure/sign/poster{pixel_y = 32},/turf/open/floor/wood,/area/maintenance/aft{name = "Aft Maintenance"})
-"cwm" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cwn" = (/obj/structure/rack,/obj/item/clothing/glasses/sunglasses,/obj/item/device/flashlight/pen{pixel_x = 0},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cwo" = (/obj/structure/table,/obj/item/weapon/folder/white{pixel_x = 4;pixel_y = -3},/obj/item/clothing/neck/stethoscope,/obj/machinery/light/small{dir = 8},/obj/machinery/power/apc{dir = 8;name = "Patient Room B APC";pixel_x = -26;pixel_y = 0},/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/obj/machinery/light_switch{pixel_x = 0;pixel_y = 24},/turf/open/floor/plasteel/whiteblue/side{dir = 8},/area/medical/exam_room{name = "Patient Room B"})
-"cwp" = (/obj/structure/chair/office/light{dir = 8},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/effect/landmark/start{name = "Medical Doctor"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/vending/wallmed{pixel_y = 28},/turf/open/floor/plasteel/white,/area/medical/exam_room{name = "Patient Room B"})
-"cwq" = (/obj/structure/closet/secure_closet/personal/patient,/obj/machinery/button/door{id = "isolb";name = "Privacy Shutters";pixel_y = 25},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/whiteblue/side{dir = 4},/area/medical/exam_room{name = "Patient Room B"})
-"cwr" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/poddoor/preopen{id = "isolb";name = "privacy shutters"},/turf/open/floor/plating,/area/medical/exam_room{name = "Patient Room B"})
-"cws" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/whiteblue/corner{dir = 8},/area/medical/medbay3{name = "Medbay Aft"})
-"cwt" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay3{name = "Medbay Aft"})
-"cwu" = (/obj/structure/disposalpipe/segment,/obj/structure/sink{dir = 4;icon_state = "sink";pixel_x = 11;pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4;initialize_directions = 11},/turf/open/floor/plasteel/white,/area/medical/medbay3{name = "Medbay Aft"})
-"cwv" = (/obj/structure/sink{dir = 8;icon_state = "sink";pixel_x = -12;pixel_y = 2},/obj/machinery/light_switch{pixel_x = -23;pixel_y = 0},/turf/open/floor/plasteel/whiteblue/side{dir = 9},/area/medical/genetics_cloning)
-"cww" = (/obj/effect/landmark/start{name = "Geneticist"},/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/whiteblue/side{dir = 1},/area/medical/genetics_cloning)
-"cwx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/machinery/computer/cloning,/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/whiteblue/side{dir = 5},/area/medical/genetics_cloning)
-"cwy" = (/obj/machinery/dna_scannernew,/obj/machinery/light_switch{pixel_x = -23;pixel_y = 0},/turf/open/floor/plasteel/whiteblue,/area/medical/genetics)
-"cwz" = (/turf/open/floor/plasteel/whiteblue/side{dir = 8},/area/medical/genetics)
-"cwA" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/turf/open/floor/plasteel/white,/area/medical/genetics)
-"cwB" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/whiteblue/side{dir = 4},/area/medical/genetics)
-"cwC" = (/obj/machinery/dna_scannernew,/turf/open/floor/plasteel/whiteblue,/area/medical/genetics)
-"cwD" = (/obj/item/weapon/storage/box/disks{pixel_x = 2;pixel_y = 2},/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = -29},/obj/machinery/camera{c_tag = "Genetics Desk";dir = 4;network = list("SS13","Medbay")},/obj/structure/table/glass,/turf/open/floor/plasteel/blue/side{dir = 8},/area/medical/genetics)
-"cwE" = (/obj/machinery/light{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/button/door{id = "genetics_shutters";name = "genetics shutters control";pixel_x = 28;pixel_y = 0;req_access_txt = "9"},/turf/open/floor/plasteel/blue/side{dir = 4},/area/medical/genetics)
-"cwF" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/firealarm{dir = 8;pixel_x = -24},/turf/open/floor/plasteel/blue/corner{dir = 1},/area/hallway/primary/aft)
-"cwG" = (/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/disposalpipe/segment,/obj/structure/sign/nosmoking_2{pixel_x = -28;pixel_y = 0},/turf/open/floor/plasteel,/area/assembly/chargebay)
-"cwH" = (/obj/machinery/mech_bay_recharge_port,/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/turf/open/floor/plating,/area/assembly/chargebay)
-"cwI" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'";icon_state = "shock";name = "HIGH VOLTAGE";pixel_y = 31},/turf/open/floor/mech_bay_recharge_floor,/area/assembly/chargebay)
-"cwJ" = (/obj/machinery/computer/mech_bay_power_console,/obj/item/device/radio/intercom{broadcasting = 0;listening = 1;name = "Station Intercom (General)";pixel_y = 20},/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/turf/open/floor/plasteel/circuit/gcircuit,/area/assembly/chargebay)
-"cwK" = (/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/toxins/misc_lab{name = "\improper Research Testing Range"})
-"cwL" = (/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/toxins/misc_lab{name = "\improper Research Testing Range"})
-"cwM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/camera{c_tag = "Research Division Hallway - Mech Bay";dir = 4;network = list("SS13","RD")},/obj/machinery/airalarm{dir = 4;pixel_x = -23;pixel_y = 0},/turf/open/floor/plasteel/white/side{dir = 6},/area/medical/research{name = "Research Division"})
-"cwN" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"cwO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/firealarm{dir = 4;pixel_x = 24},/turf/open/floor/plasteel/whiteblue/corner{dir = 4},/area/medical/research{name = "Research Division"})
-"cwP" = (/obj/machinery/power/apc{dir = 2;name = "RD Office APC";pixel_x = 0;pixel_y = -27},/obj/structure/cable/yellow,/obj/machinery/light_switch{pixel_x = -23;pixel_y = 0},/obj/item/weapon/twohanded/required/kirbyplants/dead,/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/hor)
-"cwQ" = (/obj/item/weapon/paper_bin{pixel_x = 0;pixel_y = 7},/obj/structure/table,/obj/machinery/newscaster{pixel_x = 0;pixel_y = -30},/obj/item/weapon/stamp/rd{pixel_x = -11;pixel_y = 0;pixel_x = 3;pixel_y = -2},/obj/item/weapon/folder/white{pixel_x = 9;pixel_y = -1},/obj/item/weapon/pen,/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/hor)
-"cwR" = (/obj/structure/table,/obj/item/weapon/cartridge/signal/toxins,/obj/item/weapon/cartridge/signal/toxins{pixel_x = -4;pixel_y = 2},/obj/item/weapon/cartridge/signal/toxins{pixel_x = 4;pixel_y = 6},/obj/machinery/camera{c_tag = "Research Director's Office";dir = 1;network = list("SS13","RD")},/obj/machinery/light,/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/hor)
-"cwS" = (/obj/structure/closet/secure_closet/RD,/obj/machinery/keycard_auth{pixel_x = 0;pixel_y = -24},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/hor)
-"cwT" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 0;pixel_y = -32},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/hor)
-"cwU" = (/obj/structure/filingcabinet/chestdrawer,/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/obj/item/device/radio/intercom{name = "Station Intercom (General)";pixel_y = -29},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/hor)
-"cwV" = (/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/toxins/storage)
-"cwW" = (/obj/item/weapon/cigbutt,/obj/machinery/light_switch{pixel_y = -23},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/toxins/storage)
-"cwX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/obj/effect/landmark/start{name = "Scientist"},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/toxins/storage)
-"cwY" = (/obj/machinery/portable_atmospherics/canister/toxins,/obj/machinery/firealarm{dir = 1;pixel_y = -24},/obj/machinery/light/small,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/toxins/storage)
-"cwZ" = (/obj/machinery/door/airlock/maintenance{name = "airlock access";req_access_txt = "0";req_one_access_txt = "12;47"},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cxa" = (/obj/item/stack/cable_coil,/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port)
-"cxb" = (/obj/structure/rack,/obj/item/weapon/tank/internals/air,/obj/item/weapon/wrench,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating{icon_state = "platingdmg2"},/area/maintenance/aft{name = "Aft Maintenance"})
-"cxc" = (/obj/item/trash/chips,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cxd" = (/obj/structure/reagent_dispensers/watertank,/obj/effect/landmark{name = "blobstart"},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cxe" = (/obj/structure/bed,/obj/item/weapon/bedsheet/medical,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel/whiteblue/side{dir = 8},/area/medical/exam_room{name = "Patient Room B"})
-"cxf" = (/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_Toxins = 0},/turf/open/floor/plasteel/white,/area/medical/exam_room{name = "Patient Room B"})
-"cxg" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/whiteblue/side{dir = 4},/area/medical/exam_room{name = "Patient Room B"})
-"cxh" = (/obj/machinery/door/airlock/medical{name = "Patient Room B";req_access_txt = "5"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/exam_room{name = "Patient Room B"})
-"cxi" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/whiteblue/side{dir = 8},/area/medical/medbay3{name = "Medbay Aft"})
-"cxj" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/effect/landmark{name = "lightsout"},/turf/open/floor/plasteel/white,/area/medical/medbay3{name = "Medbay Aft"})
-"cxk" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8;initialize_directions = 11},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/whiteblue/corner{dir = 2},/area/medical/medbay3{name = "Medbay Aft"})
-"cxl" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/medical/genetics_cloning)
-"cxm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/whiteblue/side{dir = 8},/area/medical/genetics_cloning)
-"cxn" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics_cloning)
-"cxo" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2;initialize_directions = 11},/obj/machinery/dna_scannernew,/turf/open/floor/plasteel/whiteblue/side{dir = 4},/area/medical/genetics_cloning)
-"cxp" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/medical/genetics)
-"cxq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/whiteblue/side{dir = 9},/area/medical/genetics)
-"cxr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/whiteblue/corner{dir = 1},/area/medical/genetics)
-"cxs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/medical/genetics)
-"cxt" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/whiteblue/corner{dir = 4},/area/medical/genetics)
-"cxu" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel/whiteblue/side{dir = 5},/area/medical/genetics)
-"cxv" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/medical/genetics)
-"cxw" = (/obj/item/weapon/folder/white{pixel_x = 4;pixel_y = -3},/obj/item/stack/packageWrap,/obj/item/weapon/pen,/obj/item/weapon/reagent_containers/spray/cleaner,/obj/structure/table/glass,/turf/open/floor/plasteel/blue/side{dir = 8},/area/medical/genetics)
-"cxx" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/turf/open/floor/plasteel/blue/corner{dir = 4},/area/medical/genetics)
-"cxy" = (/obj/structure/sign/nosmoking_2{pixel_x = 28},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel/blue/side{dir = 5},/area/medical/genetics)
-"cxz" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/light{icon_state = "tube1";dir = 8},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=10.1-Central-from-Aft";location = "10-Aft-To-Central"},/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/hallway/primary/aft)
-"cxA" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cxB" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4;initialize_directions = 11},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=9.1-Escape-1";location = "8.1-Aft-to-Escape"},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/hallway/primary/aft)
-"cxC" = (/obj/machinery/door/poddoor/shutters{id = "Skynet_launch";name = "Mech Bay"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/assembly/chargebay)
-"cxD" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel,/area/assembly/chargebay)
-"cxE" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel/circuit/gcircuit,/area/assembly/chargebay)
-"cxF" = (/turf/open/floor/plasteel/circuit/gcircuit,/area/assembly/chargebay)
-"cxG" = (/obj/machinery/camera{c_tag = "Mech Bay";dir = 8;network = list("SS13","RD")},/turf/open/floor/plasteel/circuit/gcircuit,/area/assembly/chargebay)
-"cxH" = (/turf/open/floor/plating,/area/toxins/misc_lab{name = "\improper Research Testing Range"})
-"cxI" = (/obj/machinery/camera{c_tag = "Research Testing Range";dir = 8;network = list("SS13","RD");pixel_y = -22},/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/turf/open/floor/plating,/area/toxins/misc_lab{name = "\improper Research Testing Range"})
-"cxJ" = (/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 29},/obj/structure/sink{dir = 4;icon_state = "sink";pixel_x = 11;pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"cxK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Toxins Storage";req_access_txt = "8"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/toxins/storage)
-"cxL" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/aft{name = "Aft Maintenance"})
-"cxM" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9;pixel_y = 0},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cxN" = (/obj/machinery/light/small{dir = 1},/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;name = "EXTERNAL AIRLOCK";pixel_x = 0;pixel_y = 32},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cxO" = (/obj/machinery/door/airlock/external{req_access_txt = "0";req_one_access_txt = "13;8"},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cxP" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;name = "EXTERNAL AIRLOCK";pixel_x = 0;pixel_y = 32},/obj/machinery/light/small{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cxQ" = (/obj/machinery/computer/slot_machine{pixel_y = 2},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/aft{name = "Aft Maintenance"})
-"cxR" = (/obj/structure/rack,/obj/item/clothing/mask/gas,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cxS" = (/obj/item/latexballon,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cxT" = (/obj/item/clothing/suit/ianshirt,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cxU" = (/turf/closed/wall,/area/medical/medbay3{name = "Medbay Aft"})
-"cxV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/extinguisher_cabinet{pixel_x = -27;pixel_y = 0},/turf/open/floor/plasteel/whiteblue/corner{dir = 1},/area/medical/medbay3{name = "Medbay Aft"})
-"cxW" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel/white,/area/medical/medbay3{name = "Medbay Aft"})
-"cxX" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/whiteblue/side{dir = 4},/area/medical/medbay3{name = "Medbay Aft"})
-"cxY" = (/obj/machinery/door/firedoor,/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/airlock/glass_medical{id_tag = "CloningDoor";name = "Cloning Lab";req_access_txt = "5; 68"},/turf/open/floor/plasteel/whiteblue,/area/medical/genetics_cloning)
-"cxZ" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/whiteblue/side{dir = 8},/area/medical/genetics_cloning)
-"cya" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/genetics_cloning)
-"cyb" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel/whiteblue/side{dir = 4},/area/medical/genetics_cloning)
-"cyc" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_research{name = "Genetics Lab";req_access_txt = "5; 9; 68"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/whiteblue,/area/medical/genetics)
-"cyd" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/whiteblue/side{dir = 8},/area/medical/genetics)
-"cye" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics)
-"cyf" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/landmark/start{name = "Geneticist"},/turf/open/floor/plasteel/white,/area/medical/genetics)
-"cyg" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel/white,/area/medical/genetics)
-"cyh" = (/turf/open/floor/plasteel/whiteblue/side{dir = 4},/area/medical/genetics)
-"cyi" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{icon_state = "door_closed";id_tag = "AuxGenetics";locked = 0;name = "Genetics Lab";req_access_txt = "9";req_one_access_txt = "0"},/turf/open/floor/plasteel,/area/medical/genetics)
-"cyj" = (/turf/open/floor/plasteel/blue/side{dir = 8},/area/medical/genetics)
-"cyk" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/turf/open/floor/plasteel,/area/medical/genetics)
-"cyl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/blue/side{dir = 4},/area/medical/genetics)
-"cym" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{icon_state = "door_closed";id_tag = "AuxGenetics";locked = 0;name = "Genetics Access";req_access_txt = "9";req_one_access_txt = "0"},/turf/open/floor/plasteel,/area/medical/genetics)
-"cyn" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/hallway/primary/aft)
-"cyo" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8;initialize_directions = 11},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/hallway/primary/aft)
-"cyp" = (/obj/machinery/door/poddoor/shutters{id = "Skynet_launch";name = "Mech Bay"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/assembly/chargebay)
-"cyq" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel,/area/assembly/chargebay)
-"cyr" = (/turf/open/floor/bluegrid,/area/assembly/chargebay)
-"cys" = (/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/obj/effect/landmark/start{name = "Roboticist"},/obj/machinery/light{icon_state = "tube1";dir = 4},/turf/open/floor/bluegrid,/area/assembly/chargebay)
-"cyt" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/toxins/misc_lab{name = "\improper Research Testing Range"})
-"cyu" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/toxins/misc_lab{name = "\improper Research Testing Range"})
-"cyv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/extinguisher_cabinet{pixel_x = -27;pixel_y = 0},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"cyw" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_Toxins = 0},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"cyx" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4;initialize_directions = 11},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"cyy" = (/obj/structure/sign/biohazard,/turf/closed/wall,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cyz" = (/obj/machinery/light_switch{pixel_y = 28},/obj/structure/closet/l3closet/scientist{pixel_x = -2},/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cyA" = (/obj/structure/closet/wardrobe/science_white,/obj/structure/window/reinforced{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cyB" = (/obj/machinery/firealarm{dir = 2;pixel_y = 24},/obj/machinery/atmospherics/components/unary/thermomachine/freezer,/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cyC" = (/obj/item/device/radio/intercom{pixel_y = 25},/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cyD" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cyE" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/camera{c_tag = "Toxins - Lab";dir = 2;network = list("SS13","RD")},/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/machinery/portable_atmospherics/canister,/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cyF" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/structure/window/reinforced{dir = 8},/obj/machinery/airalarm{frequency = 1439;pixel_y = 23},/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cyG" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/structure/sign/nosmoking_2{pixel_y = 32},/obj/machinery/light{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cyH" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/structure/window/reinforced{dir = 4},/obj/machinery/portable_atmospherics/canister,/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cyI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cyJ" = (/obj/structure/extinguisher_cabinet{pixel_x = 27;pixel_y = 0},/obj/machinery/light_switch{pixel_y = 28},/obj/machinery/portable_atmospherics/scrubber,/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cyK" = (/turf/closed/wall/r_wall,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cyL" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cyM" = (/obj/machinery/door/airlock/research{name = "Toxins Space Access";req_access_txt = "8"},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/maintenance/aft{name = "Aft Maintenance"})
-"cyN" = (/obj/machinery/firealarm{dir = 8;pixel_x = -24},/obj/machinery/airalarm{pixel_y = 24},/obj/item/weapon/paper_bin{pixel_x = -2;pixel_y = 4},/obj/structure/table/glass,/turf/open/floor/plasteel/white/side{dir = 2},/area/medical/medbay3{name = "Medbay Aft"})
-"cyO" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/machinery/status_display{density = 0;layer = 4;pixel_x = 0;pixel_y = 32},/turf/open/floor/plasteel/white/side{dir = 2},/area/medical/medbay3{name = "Medbay Aft"})
-"cyP" = (/obj/machinery/vending/coffee,/obj/structure/sign/map/left{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";icon_state = "map-left-MS";pixel_y = 32},/turf/open/floor/plasteel/white/side{dir = 2},/area/medical/medbay3{name = "Medbay Aft"})
-"cyQ" = (/obj/structure/sign/map/right{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";icon_state = "map-right-MS";pixel_y = 32},/obj/machinery/vending/cola,/turf/open/floor/plasteel/white/side{dir = 2},/area/medical/medbay3{name = "Medbay Aft"})
-"cyR" = (/obj/machinery/vending/cigarette,/obj/structure/noticeboard{pixel_y = 32},/turf/open/floor/plasteel/white/side{dir = 2},/area/medical/medbay3{name = "Medbay Aft"})
-"cyS" = (/obj/structure/chair/stool,/obj/structure/sign/poster{pixel_y = 32},/turf/open/floor/wood,/area/maintenance/aft{name = "Aft Maintenance"})
-"cyT" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel/white,/area/medical/medbay3{name = "Medbay Aft"})
-"cyU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/sign/nosmoking_2{pixel_x = 28},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/whiteblue/corner{dir = 4},/area/medical/medbay3{name = "Medbay Aft"})
-"cyV" = (/obj/machinery/button/door{desc = "A remote control switch for the cloning door.";id = "CloningDoor";name = "Cloning Exit Button";normaldoorcontrol = 1;pixel_x = -23;pixel_y = 8},/turf/open/floor/plasteel/whiteblue/side{dir = 10},/area/medical/genetics_cloning)
-"cyW" = (/obj/effect/landmark/start{name = "Geneticist"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel/whiteblue/side{dir = 2},/area/medical/genetics_cloning)
-"cyX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9;pixel_y = 0},/obj/machinery/power/apc{dir = 4;locked = 0;name = "Cloning Lab APC";pixel_x = 24;pixel_y = 0},/obj/structure/cable/yellow,/obj/machinery/camera{c_tag = "Genetics Cloning Lab";dir = 8;network = list("SS13","Medbay")},/turf/open/floor/plasteel/whiteblue/side{dir = 6},/area/medical/genetics_cloning)
-"cyY" = (/turf/open/floor/plasteel/whiteblue/side{dir = 10},/area/medical/genetics)
-"cyZ" = (/turf/open/floor/plasteel/whiteblue/side{dir = 2},/area/medical/genetics)
-"cza" = (/obj/structure/sink{dir = 4;icon_state = "sink";pixel_x = 11;pixel_y = 0},/obj/structure/mirror{pixel_x = 28},/turf/open/floor/plasteel/whiteblue/side{dir = 6},/area/medical/genetics)
-"czb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/blue/side{dir = 10},/area/medical/genetics)
-"czc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/blue/side{dir = 0},/area/medical/genetics)
-"czd" = (/obj/machinery/light_switch{pixel_x = 23;pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/blue/side{dir = 6},/area/medical/genetics)
-"cze" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/medical/genetics)
-"czf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = -26},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/hallway/primary/aft)
-"czg" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"czh" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4;initialize_directions = 11},/obj/machinery/button/door{dir = 2;id = "Skynet_launch";name = "Mech Bay Door Control";pixel_x = 26;pixel_y = 6;req_one_access_txt = "29"},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/hallway/primary/aft)
-"czi" = (/obj/machinery/button/door{dir = 2;id = "Skynet_launch";name = "Mech Bay Door Control";pixel_x = -26;pixel_y = 6},/obj/machinery/light_switch{pixel_x = -23;pixel_y = -2},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/assembly/chargebay)
-"czj" = (/turf/open/floor/mech_bay_recharge_floor,/area/assembly/chargebay)
-"czk" = (/obj/machinery/computer/mech_bay_power_console,/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/turf/open/floor/bluegrid,/area/assembly/chargebay)
-"czl" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/extinguisher_cabinet{pixel_x = -27;pixel_y = 0},/obj/item/weapon/folder/white{pixel_x = 4;pixel_y = -3},/obj/item/weapon/paper/range{pixel_x = 2;pixel_y = 2},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/toxins/misc_lab{name = "\improper Research Testing Range"})
-"czm" = (/obj/machinery/door/window/westleft{base_state = "right";dir = 1;icon_state = "right";name = "door";req_access_txt = "0"},/turf/open/floor/engine{dir = 9;icon_state = "floor"},/area/toxins/misc_lab{name = "\improper Research Testing Range"})
-"czn" = (/obj/structure/table/reinforced,/obj/machinery/magnetic_controller{autolink = 1;pixel_y = 3},/obj/structure/window/reinforced{dir = 1},/obj/item/clothing/ears/earmuffs,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/toxins/misc_lab{name = "\improper Research Testing Range"})
-"czo" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel/whitepurple/corner{dir = 8},/area/medical/research{name = "Research Division"})
-"czp" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"czq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/whitepurple/corner{dir = 2},/area/medical/research{name = "Research Division"})
-"czr" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"czs" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/white,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"czt" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"czu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/open/floor/plasteel/white,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"czv" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/turf/open/floor/plasteel/white,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"czw" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/obj/machinery/meter,/turf/open/floor/plasteel/white,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"czx" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/open/floor/plasteel/white,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"czy" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/open/floor/plasteel/white,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"czz" = (/obj/machinery/atmospherics/components/trinary/filter{density = 0;dir = 8;req_access = "0"},/turf/open/floor/plasteel/white,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"czA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"czB" = (/obj/machinery/portable_atmospherics/pump,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"czC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/airlock/maintenance{req_access_txt = "0";req_one_access_txt = "12;47"},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"czD" = (/turf/closed/wall,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"czE" = (/obj/structure/table/reinforced,/obj/item/weapon/folder/white{pixel_x = 4;pixel_y = -3},/obj/item/weapon/folder/white{pixel_x = 4;pixel_y = -3},/obj/machinery/door/firedoor,/obj/item/weapon/reagent_containers/glass/bottle/epinephrine,/obj/item/weapon/reagent_containers/syringe,/obj/item/weapon/pen,/turf/open/floor/plasteel/whitegreen,/area/medical/medbay{name = "Medbay Central"})
-"czF" = (/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/toxins/mixing{name = "\improper Toxins Lab"})
-"czG" = (/obj/item/stack/rods{amount = 50},/obj/item/stack/sheet/glass{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/target,/obj/item/target/syndicate,/obj/item/target/alien,/obj/item/target/clown,/obj/structure/closet/crate/secure{desc = "A secure crate containing various materials for building a customised test-site.";name = "Test Site Materials Crate";req_access_txt = "8"},/obj/machinery/light/small{dir = 1},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/toxins/mixing{name = "\improper Toxins Lab"})
-"czH" = (/obj/machinery/airalarm{desc = "This particular atmos control unit appears to have no access restrictions.";dir = 8;icon_state = "alarm0";locked = 0;name = "all-access air alarm";pixel_x = 24;req_access = "0";req_one_access = "0"},/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/structure/chair/stool{pixel_y = 8},/turf/open/floor/plasteel/floorgrime,/area/maintenance/incinerator)
-"czI" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'BOMB RANGE";name = "BOMB RANGE"},/turf/closed/wall,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"czJ" = (/turf/closed/wall,/area/toxins/test_area)
-"czK" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/toxins/test_area)
-"czL" = (/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port)
-"czM" = (/obj/structure/chair/stool,/obj/structure/sign/poster{pixel_x = 32;pixel_y = 0},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/aft{name = "Aft Maintenance"})
-"czN" = (/obj/machinery/door/airlock/maintenance{name = "Medbay Maintenance";req_access_txt = "5"},/turf/open/floor/plating,/area/medical/medbay3{name = "Medbay Aft"})
-"czO" = (/turf/open/floor/plasteel/cafeteria{dir = 5},/area/medical/medbay3{name = "Medbay Aft"})
-"czP" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/medical/medbay3{name = "Medbay Aft"})
-"czQ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/medical/medbay3{name = "Medbay Aft"})
-"czR" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/medical/medbay3{name = "Medbay Aft"})
-"czS" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/item/weapon/cigbutt,/turf/open/floor/plasteel/cafeteria{dir = 5},/area/medical/medbay3{name = "Medbay Aft"})
-"czT" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/medical{name = "Medbay Break Room";req_access_txt = "5"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/medical/medbay3{name = "Medbay Aft"})
-"czU" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plasteel/whiteblue/side{dir = 8},/area/medical/medbay3{name = "Medbay Aft"})
-"czV" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay3{name = "Medbay Aft"})
-"czW" = (/obj/machinery/power/apc{dir = 4;name = "Medbay Aft APC";pixel_x = 26;pixel_y = 0},/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/obj/structure/disposalpipe/junction,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4;initialize_directions = 11},/turf/open/floor/plasteel/white,/area/medical/medbay3{name = "Medbay Aft"})
-"czX" = (/obj/item/weapon/book/manual/medical_cloning{pixel_y = 6},/obj/item/weapon/paper,/obj/machinery/firealarm{dir = 8;pixel_x = -24},/obj/structure/table/glass,/turf/open/floor/plasteel/vault,/area/medical/genetics_cloning)
-"czY" = (/obj/item/weapon/storage/box/rxglasses{pixel_x = 3;pixel_y = 3},/obj/item/weapon/storage/box/bodybags,/obj/item/weapon/pen,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/table/glass,/turf/open/floor/plasteel/vault,/area/medical/genetics_cloning)
-"czZ" = (/obj/structure/closet/secure_closet/personal/patient,/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/turf/open/floor/plasteel/vault,/area/medical/genetics_cloning)
-"cAa" = (/obj/machinery/airalarm{dir = 1;pixel_y = -22},/obj/structure/closet/wardrobe/genetics_white,/turf/open/floor/plasteel/vault,/area/medical/genetics)
-"cAb" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/bed/roller,/obj/structure/window/reinforced{dir = 1;pixel_y = 1},/mob/living/carbon/monkey,/turf/open/floor/plasteel/freezer,/area/medical/genetics)
-"cAc" = (/obj/structure/bed/roller,/obj/machinery/door/window/westleft{dir = 1;name = "Monkey Pen";pixel_y = 2;req_access_txt = "9"},/turf/open/floor/plasteel/freezer,/area/medical/genetics)
-"cAd" = (/obj/machinery/light,/obj/machinery/door/window/westleft{base_state = "right";dir = 1;icon_state = "right";name = "Monkey Pen";pixel_y = 2;req_access_txt = "9"},/obj/structure/bed/roller,/mob/living/carbon/monkey,/turf/open/floor/plasteel/freezer,/area/medical/genetics)
-"cAe" = (/obj/structure/window/reinforced{dir = 1;pixel_y = 1},/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/obj/structure/bed/roller,/mob/living/carbon/monkey,/turf/open/floor/plasteel/freezer,/area/medical/genetics)
-"cAf" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/machinery/airalarm{dir = 4;icon_state = "alarm0";pixel_x = -22},/turf/open/floor/plasteel/vault,/area/medical/genetics)
-"cAg" = (/obj/structure/closet/secure_closet/personal/patient,/turf/open/floor/plasteel/vault,/area/medical/genetics)
-"cAh" = (/obj/machinery/airalarm{dir = 4;icon_state = "alarm0";pixel_x = -22},/obj/machinery/camera{c_tag = "Aft Primary Hallway - Middle";dir = 4;network = list("SS13")},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/hallway/primary/aft)
-"cAi" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cAj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/hallway/primary/aft)
-"cAk" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Mech Bay";req_access_txt = "29";req_one_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/assembly/chargebay)
-"cAl" = (/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/assembly/chargebay)
-"cAm" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/assembly/chargebay)
-"cAn" = (/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel,/area/assembly/chargebay)
-"cAo" = (/obj/machinery/power/apc{dir = 4;name = "Mech Bay APC";pixel_x = 28;pixel_y = 0},/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/turf/open/floor/plasteel,/area/assembly/chargebay)
-"cAp" = (/obj/structure/rack,/obj/item/target,/obj/item/target,/obj/item/target/alien,/obj/item/target/alien,/obj/item/target/clown,/obj/item/target/clown,/obj/item/target/syndicate,/obj/item/target/syndicate,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light_switch{pixel_x = -25},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/toxins/misc_lab{name = "\improper Research Testing Range"})
-"cAq" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/toxins/misc_lab{name = "\improper Research Testing Range"})
-"cAr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/toxins/misc_lab{name = "\improper Research Testing Range"})
-"cAs" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Research Testing Range";req_access_txt = "0";req_one_access_txt = "7;47;29"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/purple,/area/toxins/misc_lab{name = "\improper Research Testing Range"})
-"cAt" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/whitepurple/side{dir = 8},/area/medical/research{name = "Research Division"})
-"cAu" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"cAv" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/whitepurple/side{dir = 4},/area/medical/research{name = "Research Division"})
-"cAw" = (/obj/machinery/door/firedoor,/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/airlock/research{name = "Toxins Lab";req_access_txt = "8"},/obj/machinery/door/poddoor/shutters/preopen{id = "toxins_blastdoor";name = "biohazard containment shutters"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cAx" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/white,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cAy" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cAz" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/turf/open/floor/plasteel/white,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cAA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cAB" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel/white,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cAC" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/turf/open/floor/plasteel/white,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cAD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cAE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/holopad,/obj/effect/landmark/start{name = "Scientist"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cAF" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4;initialize_directions = 11},/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/turf/open/floor/plasteel/white,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cAG" = (/obj/structure/window/reinforced,/obj/machinery/portable_atmospherics/scrubber,/obj/item/weapon/storage/firstaid/toxin,/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cAH" = (/obj/structure/sign/biohazard,/turf/closed/wall/r_wall,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cAI" = (/obj/effect/landmark{name = "blobstart"},/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plasteel,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cAJ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/floorgrime,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cAK" = (/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/corner{dir = 2},/turf/open/floor/plasteel,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cAL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cAM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{cyclelinkeddir = 2;id_tag = "ResearchExt";name = "Research Division";req_access_txt = "0";req_one_access_txt = "47"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/medical/research{name = "Research Division"})
-"cAN" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cAO" = (/obj/structure/chair{dir = 4},/obj/machinery/computer/security/telescreen{desc = "Used for watching the test chamber.";dir = 8;layer = 4;name = "Test Chamber Telescreen";network = list("Toxins");pixel_x = 30;pixel_y = 0},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cAP" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cAQ" = (/obj/structure/window/reinforced,/obj/item/target,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/toxins/test_area)
-"cAR" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/machinery/portable_atmospherics/canister/air,/obj/structure/sign/poster{pixel_x = 32;pixel_y = 0},/turf/open/floor/plating,/area/medical/research{name = "Research Division"})
-"cAS" = (/obj/structure/chair/stool,/obj/item/device/radio/intercom{broadcasting = 1;freerange = 0;frequency = 1485;listening = 0;name = "Station Intercom (Medbay)";pixel_x = -30;pixel_y = 0},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/medical/medbay3{name = "Medbay Aft"})
-"cAT" = (/obj/structure/chair/stool,/turf/open/floor/plasteel/cafeteria{dir = 5},/area/medical/medbay3{name = "Medbay Aft"})
-"cAU" = (/obj/item/weapon/cigbutt,/obj/machinery/holopad,/turf/open/floor/plasteel/cafeteria{dir = 5},/area/medical/medbay3{name = "Medbay Aft"})
-"cAV" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/medical/medbay3{name = "Medbay Aft"})
-"cAW" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/sink{dir = 4;icon_state = "sink";pixel_x = 11;pixel_y = 0},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/medical/medbay3{name = "Medbay Aft"})
-"cAX" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/medical/medbay3{name = "Medbay Aft"})
-"cAY" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/turf/open/floor/plasteel/whiteblue/corner{dir = 1},/area/medical/medbay3{name = "Medbay Aft"})
-"cAZ" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel/white,/area/medical/medbay3{name = "Medbay Aft"})
-"cBa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/obj/item/device/radio/intercom{broadcasting = 1;freerange = 0;frequency = 1485;listening = 0;name = "Station Intercom (Medbay)";pixel_x = 30;pixel_y = 0},/turf/open/floor/plasteel/white,/area/medical/medbay3{name = "Medbay Aft"})
-"cBb" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/medical/genetics_cloning)
-"cBc" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/centcom{name = "Genetics";opacity = 1;req_access_txt = "9"},/turf/open/floor/plasteel/black,/area/medical/genetics)
-"cBd" = (/obj/structure/sign/directions/evac{pixel_y = 0},/turf/closed/wall,/area/hallway/primary/aft)
-"cBe" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/hallway/primary/aft)
-"cBf" = (/obj/structure/sign/directions/evac{pixel_y = 0},/turf/closed/wall,/area/assembly/chargebay)
-"cBg" = (/obj/machinery/recharge_station,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/assembly/chargebay)
-"cBh" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/assembly/chargebay)
-"cBi" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/firealarm{dir = 4;pixel_x = 28},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/assembly/chargebay)
-"cBj" = (/obj/structure/table,/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 0;pixel_y = -25},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/item/clothing/glasses/science,/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/toxins/misc_lab{name = "\improper Research Testing Range"})
-"cBk" = (/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/button/door{id = "researchrangeshutters";name = "Blast Door Control";pixel_x = 0;pixel_y = -24;req_access_txt = "0"},/obj/machinery/light,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/toxins/misc_lab{name = "\improper Research Testing Range"})
-"cBl" = (/obj/item/weapon/gun/energy/laser/practice,/obj/machinery/power/apc{dir = 2;name = "Research Firing Range APC";pixel_x = 0;pixel_y = -28},/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow,/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/toxins/misc_lab{name = "\improper Research Testing Range"})
-"cBm" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "researchrangeshutters";name = "blast door"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/toxins/misc_lab{name = "\improper Research Testing Range"})
-"cBn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/whitepurple/corner{dir = 1},/area/medical/research{name = "Research Division"})
-"cBo" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"cBp" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4;initialize_directions = 11},/turf/open/floor/plasteel/whitepurple/corner{dir = 4},/area/medical/research{name = "Research Division"})
-"cBq" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/preopen{id = "toxins_blastdoor";name = "biohazard containment door"},/turf/open/floor/plating,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cBr" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/disposalpipe/segment,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cBs" = (/turf/open/floor/plasteel/white,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cBt" = (/obj/item/device/assembly/prox_sensor{pixel_x = -4;pixel_y = 1},/obj/item/device/assembly/prox_sensor{pixel_x = 8;pixel_y = 9},/obj/item/device/assembly/prox_sensor{pixel_x = 9;pixel_y = -2},/obj/item/device/assembly/prox_sensor{pixel_x = 0;pixel_y = 2},/obj/structure/table/reinforced,/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cBu" = (/obj/structure/chair/stool,/obj/effect/landmark/start{name = "Scientist"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cBv" = (/obj/structure/table/reinforced,/obj/item/weapon/wrench,/obj/item/weapon/screwdriver{pixel_y = 10},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cBw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cBx" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cBy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cBz" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1},/turf/open/floor/plasteel/white,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cBA" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2;initialize_directions = 11},/turf/open/floor/plasteel/white,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cBB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cBC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/research{name = "Toxins Launch Room Access";req_access_txt = "8"},/obj/machinery/door/poddoor/shutters/preopen{id = "toxins_blastdoor";name = "biohazard containment shutters"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cBD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cBE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/floorgrime,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cBF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cBG" = (/obj/machinery/door/airlock/research{name = "Toxins Launch Room";req_access_txt = "8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cBH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cBI" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_Toxins = 0},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cBJ" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cBK" = (/obj/machinery/light/small,/obj/machinery/airalarm{dir = 1;pixel_y = -22},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cBL" = (/obj/structure/chair{dir = 4},/obj/machinery/button/massdriver{dir = 2;id = "toxinsdriver";pixel_x = 24;pixel_y = -24},/obj/machinery/computer/security/telescreen{desc = "Used for watching the test chamber.";dir = 8;layer = 4;name = "Test Chamber Telescreen";network = list("Toxins");pixel_x = 30;pixel_y = 0},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cBM" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'BOMB RANGE";name = "BOMB RANGE"},/turf/closed/wall,/area/toxins/test_area)
-"cBN" = (/obj/structure/chair,/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plating/airless,/area/toxins/test_area)
-"cBO" = (/obj/item/device/flashlight/lamp,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating/airless,/area/toxins/test_area)
-"cBP" = (/obj/structure/chair,/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plating/airless,/area/toxins/test_area)
-"cBQ" = (/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/obj/structure/cable,/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port)
-"cBR" = (/turf/closed/wall/r_wall,/area/medical/virology)
-"cBS" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/medical/virology)
-"cBT" = (/obj/item/weapon/cigbutt,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cBU" = (/obj/machinery/light{dir = 8},/obj/machinery/newscaster{pixel_x = 0;pixel_y = -30},/obj/item/weapon/storage/box/donkpockets{pixel_x = 3;pixel_y = 5},/obj/structure/table/glass,/turf/open/floor/plasteel/cafeteria{dir = 5},/area/medical/medbay3{name = "Medbay Aft"})
-"cBV" = (/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 0;pixel_y = -30},/obj/item/weapon/reagent_containers/spray/cleaner,/obj/structure/table/glass,/turf/open/floor/plasteel/cafeteria{dir = 5},/area/medical/medbay3{name = "Medbay Aft"})
-"cBW" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/obj/machinery/light/small,/obj/structure/extinguisher_cabinet{pixel_x = 0;pixel_y = -29},/obj/machinery/camera{c_tag = "Medbay Break Room";dir = 1;network = list("SS13","Medbay")},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/medical/medbay3{name = "Medbay Aft"})
-"cBX" = (/obj/machinery/microwave{pixel_x = -3;pixel_y = 6},/obj/structure/table/glass,/turf/open/floor/plasteel/cafeteria{dir = 5},/area/medical/medbay3{name = "Medbay Aft"})
-"cBY" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel/white,/area/medical/medbay3{name = "Medbay Aft"})
-"cBZ" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/door/firedoor,/turf/open/floor/plasteel/white,/area/medical/medbay3{name = "Medbay Aft"})
-"cCa" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/white/side{dir = 9},/area/medical/medbay3{name = "Medbay Aft"})
-"cCb" = (/obj/machinery/firealarm{dir = 8;pixel_x = -24},/obj/structure/closet/secure_closet/personal/patient,/turf/open/floor/plasteel/white/corner{dir = 2},/area/medical/medbay3{name = "Medbay Aft"})
-"cCc" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/closet/secure_closet/personal/patient,/turf/open/floor/plasteel/white/side{dir = 2},/area/medical/medbay3{name = "Medbay Aft"})
-"cCd" = (/obj/structure/closet/secure_closet/personal/patient,/turf/open/floor/plasteel/white/corner{dir = 8},/area/medical/medbay3{name = "Medbay Aft"})
-"cCe" = (/turf/closed/wall,/area/medical/morgue)
-"cCf" = (/obj/structure/bodycontainer/morgue,/obj/effect/landmark{name = "revenantspawn"},/turf/open/floor/plasteel/black,/area/medical/morgue)
-"cCg" = (/obj/effect/landmark{name = "blobstart"},/turf/open/floor/plasteel/black,/area/medical/morgue)
-"cCh" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'";icon_state = "shock";name = "HIGH VOLTAGE";pixel_y = 0},/turf/closed/wall/r_wall,/area/engine/engineering)
-"cCi" = (/obj/machinery/firealarm{dir = 2;pixel_y = 24},/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/black,/area/medical/morgue)
-"cCj" = (/turf/open/floor/plasteel/black,/area/medical/morgue)
-"cCk" = (/obj/machinery/airalarm{pixel_y = 32},/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = 6;pixel_y = 4},/obj/item/weapon/paper/morguereminder{pixel_x = -4},/obj/effect/landmark{name = "revenantspawn"},/turf/open/floor/plasteel/black,/area/medical/morgue)
-"cCl" = (/obj/machinery/vending/cigarette,/turf/open/floor/plasteel/black,/area/hallway/primary/aft)
-"cCm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 29},/turf/open/floor/plasteel/purple/corner{dir = 2},/area/hallway/primary/aft)
-"cCn" = (/turf/closed/wall/r_wall,/area/assembly/chargebay)
-"cCo" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/shutters/preopen{id = "robotics_shutters";name = "robotics shutters"},/turf/open/floor/plating,/area/assembly/chargebay)
-"cCp" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_research{name = "Robotics Lab";req_access_txt = "29"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/assembly/chargebay)
-"cCq" = (/turf/closed/wall/r_wall,/area/assembly/robotics)
-"cCr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"cCs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"cCt" = (/obj/structure/closet/bombcloset,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cCu" = (/obj/item/device/assembly/signaler{pixel_x = 0;pixel_y = 8},/obj/item/device/assembly/signaler{pixel_x = -8;pixel_y = 5},/obj/item/device/assembly/signaler{pixel_x = 6;pixel_y = 5},/obj/item/device/assembly/signaler{pixel_x = -2;pixel_y = -2},/obj/structure/table/reinforced,/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cCv" = (/obj/item/device/transfer_valve{pixel_x = -5},/obj/item/device/transfer_valve{pixel_x = -5},/obj/item/device/transfer_valve{pixel_x = 0},/obj/item/device/transfer_valve{pixel_x = 0},/obj/item/device/transfer_valve{pixel_x = 5},/obj/item/device/transfer_valve{pixel_x = 5},/obj/machinery/requests_console{department = "Science";departmentType = 2;name = "Science Requests Console";pixel_x = 0;pixel_y = -30},/obj/structure/table/reinforced,/obj/machinery/light,/turf/open/floor/plasteel,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cCw" = (/obj/item/device/assembly/timer{pixel_x = 5;pixel_y = 4},/obj/item/device/assembly/timer{pixel_x = -4;pixel_y = 2},/obj/item/device/assembly/timer{pixel_x = 6;pixel_y = -4},/obj/item/device/assembly/timer{pixel_x = 0;pixel_y = 0},/obj/structure/table/reinforced,/obj/effect/turf_decal/stripes/corner{dir = 8},/turf/open/floor/plasteel,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cCx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/device/radio/intercom{broadcasting = 0;listening = 1;name = "Station Intercom (General)";pixel_y = -28},/obj/structure/tank_dispenser,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cCy" = (/obj/machinery/disposal/bin{pixel_x = -2;pixel_y = -2},/obj/structure/disposalpipe/trunk{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cCz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel/white,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cCA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cCB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cCC" = (/obj/structure/table,/obj/item/device/assembly/igniter{pixel_x = -5;pixel_y = 3},/obj/item/device/assembly/igniter{pixel_x = 5;pixel_y = -4},/obj/item/device/assembly/igniter{pixel_x = 2;pixel_y = 6},/obj/item/device/assembly/igniter{pixel_x = 2;pixel_y = -1},/obj/machinery/power/apc{dir = 4;name = "Toxins Lab APC";pixel_x = 26;pixel_y = 0},/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/obj/structure/window/reinforced{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cCD" = (/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cCE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/floorgrime,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cCF" = (/obj/effect/turf_decal/stripes/corner{dir = 8},/turf/open/floor/plasteel,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cCG" = (/obj/machinery/door/window/southleft{name = "Mass Driver Door";req_access_txt = "7"},/turf/open/floor/plasteel/loadingarea,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cCH" = (/obj/structure/chair{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plating/airless,/area/toxins/test_area)
-"cCI" = (/turf/open/floor/plating/airless,/area/toxins/test_area)
-"cCJ" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plating/airless,/area/toxins/test_area)
-"cCK" = (/mob/living/carbon/monkey,/turf/open/floor/plasteel/freezer,/area/medical/virology)
-"cCL" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel/freezer,/area/medical/virology)
-"cCM" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/freezer,/area/medical/virology)
-"cCN" = (/obj/machinery/camera{c_tag = "Medbay Hallway Aft";dir = 4;network = list("SS13","Medbay")},/turf/open/floor/plasteel/white/side{dir = 5},/area/medical/medbay3{name = "Medbay Aft"})
-"cCO" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel/white,/area/medical/medbay3{name = "Medbay Aft"})
-"cCP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white/side{dir = 8},/area/medical/medbay3{name = "Medbay Aft"})
-"cCQ" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/medical/medbay3{name = "Medbay Aft"})
-"cCR" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white/side{dir = 4},/area/medical/medbay3{name = "Medbay Aft"})
-"cCS" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/turf/open/floor/plasteel/white,/area/medical/medbay3{name = "Medbay Aft"})
-"cCT" = (/obj/machinery/light{dir = 4;icon_state = "tube1"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel/white/side{dir = 8},/area/medical/medbay3{name = "Medbay Aft"})
-"cCU" = (/obj/machinery/light/small{dir = 8},/obj/structure/bodycontainer/morgue,/obj/effect/landmark{name = "revenantspawn"},/turf/open/floor/plasteel/black,/area/medical/morgue)
-"cCV" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/turf/open/floor/plasteel/black,/area/medical/morgue)
-"cCW" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel/black,/area/medical/morgue)
-"cCX" = (/obj/effect/landmark/start{name = "Medical Doctor"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/black,/area/medical/morgue)
-"cCY" = (/obj/structure/table,/obj/item/weapon/storage/box/bodybags,/obj/item/weapon/pen,/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 29},/turf/open/floor/plasteel/black,/area/medical/morgue)
-"cCZ" = (/obj/machinery/vending/cola,/turf/open/floor/plasteel/black,/area/hallway/primary/aft)
-"cDa" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/shutters/preopen{id = "robotics_shutters";name = "robotics shutters"},/turf/open/floor/plating,/area/assembly/robotics)
-"cDb" = (/obj/structure/filingcabinet/chestdrawer{pixel_x = -2;pixel_y = 2},/obj/machinery/button/door{id = "robotics_shutters";name = "robotics shutters control";pixel_x = -26;pixel_y = 26;req_access_txt = "29"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/assembly/robotics)
-"cDc" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/assembly/robotics)
-"cDd" = (/obj/machinery/mecha_part_fabricator{dir = 2},/obj/item/device/radio/intercom{broadcasting = 0;listening = 1;name = "Station Intercom (General)";pixel_y = 20},/obj/machinery/light/small{dir = 1},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/assembly/robotics)
-"cDe" = (/obj/structure/sign/nosmoking_2{pixel_y = 32},/obj/structure/rack,/obj/item/weapon/book/manual/robotics_cyborgs{pixel_x = 2;pixel_y = 5},/obj/item/weapon/storage/belt/utility,/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/assembly/robotics)
-"cDf" = (/obj/machinery/mecha_part_fabricator{dir = 2},/obj/machinery/camera{c_tag = "Robotics - Fore";dir = 2;network = list("SS13","RD")},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/assembly/robotics)
-"cDg" = (/obj/machinery/power/apc{dir = 1;name = "Robotics Lab APC";pixel_x = 0;pixel_y = 25},/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -2;pixel_y = 4},/obj/item/device/assembly/prox_sensor{pixel_x = -8;pixel_y = 4},/obj/item/device/assembly/prox_sensor{pixel_x = -8;pixel_y = 4},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/assembly/robotics)
-"cDh" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{cyclelinkeddir = 2;id_tag = "ResearchExt";name = "Research Division";req_access_txt = "0";req_one_access_txt = "47"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/medical/research{name = "Research Division"})
-"cDi" = (/turf/closed/wall,/area/assembly/robotics)
-"cDj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"cDk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall/r_wall,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cDl" = (/obj/structure/sign/securearea,/turf/closed/wall/r_wall,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cDm" = (/obj/machinery/shower{dir = 4;icon_state = "shower";name = "emergency shower"},/turf/open/floor/plasteel/white,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cDn" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/white,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cDo" = (/obj/structure/table,/obj/item/weapon/crowbar,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/weapon/wrench,/obj/item/clothing/mask/gas,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cDp" = (/obj/structure/table,/obj/item/clothing/glasses/science,/obj/item/clothing/glasses/science,/obj/item/device/multitool{pixel_x = 3},/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cDq" = (/obj/machinery/mass_driver{dir = 4;id = "toxinsdriver"},/turf/open/floor/plating,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cDr" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;name = "EXTERNAL AIRLOCK";pixel_x = 0;pixel_y = -32},/obj/machinery/light/small,/turf/open/floor/plating,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cDs" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cDt" = (/obj/machinery/door/poddoor{id = "toxinsdriver";name = "Toxins Launcher Bay Door"},/turf/open/floor/plating,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cDu" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating/airless,/area/space)
-"cDv" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating/airless,/area/toxins/test_area)
-"cDw" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating/airless,/area/toxins/test_area)
-"cDx" = (/obj/item/device/radio/beacon,/turf/open/floor/plating/airless,/area/toxins/test_area)
-"cDy" = (/obj/machinery/camera{active_power_usage = 0;c_tag = "Bomb Test Site";desc = "A specially-reinforced camera with a long lasting battery, used to monitor the bomb testing site. An external light is attached to the top.";dir = 8;invuln = 1;light = null;luminosity = 3;name = "Hardened Bomb-Test Camera";network = list("Toxins");use_power = 0},/obj/item/target/alien{anchored = 1},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating{luminosity = 2;initial_gas_mix = "o2=0.01;n2=0.01";temperature = 2.7},/area/toxins/test_area)
-"cDz" = (/turf/closed/indestructible{desc = "A wall impregnated with Fixium, able to withstand massive explosions with ease";icon_state = "riveted";name = "hyper-reinforced wall"},/area/toxins/test_area)
-"cDA" = (/obj/structure/bed/roller,/turf/open/floor/plasteel/freezer,/area/medical/virology)
-"cDB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/mob/living/carbon/monkey,/turf/open/floor/plasteel/freezer,/area/medical/virology)
-"cDC" = (/obj/effect/landmark{name = "blobstart"},/turf/open/floor/plasteel/freezer,/area/medical/virology)
-"cDD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/mob/living/carbon/monkey,/turf/open/floor/plasteel/freezer,/area/medical/virology)
-"cDE" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/turf/open/floor/plating,/area/medical/virology)
-"cDF" = (/obj/item/weapon/storage/box/beakers{pixel_x = 2;pixel_y = 2},/obj/item/weapon/storage/box/syringes,/obj/machinery/power/apc{cell_type = 5000;dir = 1;name = "Virology APC";pixel_x = 0;pixel_y = 24},/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/obj/structure/table/glass,/turf/open/floor/plasteel/whitegreen/side{dir = 9},/area/medical/virology)
-"cDG" = (/obj/item/weapon/book/manual/wiki/infections{pixel_y = 7},/obj/item/weapon/reagent_containers/syringe/antiviral,/obj/item/weapon/reagent_containers/dropper,/obj/item/weapon/reagent_containers/spray/cleaner,/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/table/glass,/turf/open/floor/plasteel/whitegreen/side{dir = 5},/area/medical/virology)
-"cDH" = (/obj/machinery/smartfridge/chemistry/virology,/obj/machinery/airalarm{frequency = 1439;pixel_y = 23},/turf/open/floor/plasteel/whitegreen,/area/medical/virology)
-"cDI" = (/obj/machinery/reagentgrinder{pixel_y = 8},/obj/structure/table/glass,/turf/open/floor/plasteel/whitegreen/side{dir = 9},/area/medical/virology)
-"cDJ" = (/obj/item/clothing/gloves/color/latex,/obj/item/device/healthanalyzer,/obj/item/clothing/glasses/hud/health,/obj/structure/reagent_dispensers/virusfood{density = 0;pixel_x = 0;pixel_y = 30},/obj/structure/table/glass,/turf/open/floor/plasteel/whitegreen/side{dir = 5},/area/medical/virology)
-"cDK" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cDL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cDM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/aft{name = "Aft Maintenance"})
-"cDN" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating{icon_plating = "warnplate"},/area/maintenance/aft{name = "Aft Maintenance"})
-"cDO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cDP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{name = "Medbay Maintenance";req_access_txt = "5"},/turf/open/floor/plating,/area/medical/medbay3{name = "Medbay Aft"})
-"cDQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white/side{dir = 4},/area/medical/medbay3{name = "Medbay Aft"})
-"cDR" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/white,/area/medical/medbay3{name = "Medbay Aft"})
-"cDS" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white/side{dir = 8},/area/medical/medbay3{name = "Medbay Aft"})
-"cDT" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/medical/medbay3{name = "Medbay Aft"})
-"cDU" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-j1";dir = 4},/turf/open/floor/plasteel/white/side{dir = 4},/area/medical/medbay3{name = "Medbay Aft"})
-"cDV" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/landmark/start{name = "Medical Doctor"},/turf/open/floor/plasteel/white,/area/medical/medbay3{name = "Medbay Aft"})
-"cDW" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel/white/side{dir = 8},/area/medical/medbay3{name = "Medbay Aft"})
-"cDX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/centcom{name = "Morgue";opacity = 1;req_access_txt = "5"},/turf/open/floor/plasteel/black,/area/medical/morgue)
-"cDY" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/black,/area/medical/morgue)
-"cDZ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/turf/open/floor/plasteel/black,/area/medical/morgue)
-"cEa" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/black,/area/medical/morgue)
-"cEb" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel/black,/area/medical/morgue)
-"cEc" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel/black,/area/medical/morgue)
-"cEd" = (/obj/structure/table,/obj/machinery/power/apc{dir = 4;name = "Morgue APC";pixel_x = 26;pixel_y = 0},/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/obj/item/weapon/folder/white{pixel_x = 4;pixel_y = -3},/obj/item/clothing/gloves/color/latex,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/black,/area/medical/morgue)
-"cEe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/medical/morgue)
-"cEf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/hallway/primary/aft)
-"cEg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/firealarm{dir = 8;pixel_x = -24},/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/hallway/primary/aft)
-"cEh" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4;initialize_directions = 11},/turf/open/floor/plasteel/purple/side{dir = 4},/area/hallway/primary/aft)
-"cEi" = (/turf/open/floor/plasteel/purple,/area/assembly/robotics)
-"cEj" = (/obj/structure/table/reinforced,/obj/item/weapon/pen,/obj/machinery/door/window/eastright{dir = 4;name = "Robotics Desk";req_access_txt = "29"},/obj/item/weapon/folder/white{pixel_x = 4;pixel_y = -3},/obj/item/weapon/folder/white{pixel_x = 4;pixel_y = -3},/obj/machinery/door/firedoor,/obj/machinery/door/poddoor/shutters/preopen{id = "robotics_shutters";name = "robotics shutters"},/turf/open/floor/plating,/area/assembly/robotics)
-"cEk" = (/obj/effect/landmark/start{name = "Roboticist"},/obj/structure/chair/office/light{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/assembly/robotics)
-"cEl" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/assembly/robotics)
-"cEm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/assembly/robotics)
-"cEn" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/assembly/robotics)
-"cEo" = (/obj/structure/table,/obj/item/stack/sheet/plasteel{amount = 10},/obj/item/device/assembly/flash/handheld,/obj/item/device/assembly/flash/handheld,/obj/item/device/assembly/flash/handheld,/obj/item/device/assembly/flash/handheld,/obj/item/device/assembly/flash/handheld,/obj/item/device/assembly/flash/handheld,/obj/item/device/assembly/flash/handheld,/obj/machinery/ai_status_display{pixel_x = 32;pixel_y = 0},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/assembly/robotics)
-"cEp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/extinguisher_cabinet{pixel_x = 27;pixel_y = 0},/turf/open/floor/plasteel/white/side{dir = 9},/area/medical/research{name = "Research Division"})
-"cEq" = (/obj/structure/lattice,/turf/open/space,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cEr" = (/obj/machinery/door/poddoor{id = "mixvent";name = "Mixer Room Vent"},/turf/open/floor/engine/vacuum,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cEs" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;name = "EXTERNAL AIRLOCK";pixel_x = 0;pixel_y = 32},/turf/open/floor/engine/vacuum,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cEt" = (/obj/machinery/sparker{dir = 2;id = "mixingsparker";pixel_x = 25},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;external_pressure_bound = 0;initialize_directions = 1;internal_pressure_bound = 4000;on = 1;pressure_checks = 2;pump_direction = 0},/turf/open/floor/engine/vacuum,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cEu" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/closed/wall/r_wall,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cEv" = (/obj/machinery/airlock_sensor{id_tag = "tox_airlock_sensor";master_tag = "tox_airlock_control";pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/components/binary/pump{dir = 4;on = 1},/turf/open/floor/engine,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cEw" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/meter,/obj/machinery/embedded_controller/radio/airlock_controller{airpump_tag = "tox_airlock_pump";exterior_door_tag = "tox_airlock_exterior";id_tag = "tox_airlock_control";interior_door_tag = "tox_airlock_interior";pixel_x = -24;pixel_y = 0;sanitize_external = 1;sensor_tag = "tox_airlock_sensor"},/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plasteel/white,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cEx" = (/obj/machinery/atmospherics/components/binary/valve{dir = 4;name = "manual outlet valve"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/white,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cEy" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/structure/window/reinforced{dir = 1;pixel_y = 2},/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cEz" = (/obj/structure/closet/wardrobe/grey,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cEA" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/space)
-"cEB" = (/obj/structure/chair{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plating/airless,/area/toxins/test_area)
-"cEC" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plating/airless,/area/toxins/test_area)
-"cED" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/port)
-"cEE" = (/turf/closed/wall,/area/medical/virology)
-"cEF" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/turf/open/floor/plating,/area/medical/virology)
-"cEG" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_virology{name = "Test Subject Cell";req_access_txt = "39"},/turf/open/floor/plasteel/freezer,/area/medical/virology)
-"cEH" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/turf/open/floor/plating,/area/medical/virology)
-"cEI" = (/obj/item/weapon/paper_bin{pixel_x = -2;pixel_y = 9},/obj/machinery/light/small{dir = 8},/obj/structure/table/glass,/obj/structure/sign/deathsposal{pixel_x = -30;pixel_y = 0},/turf/open/floor/plasteel/whitegreen/side{dir = 8},/area/medical/virology)
-"cEJ" = (/obj/structure/chair/office/light{dir = 1;pixel_y = 3},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/whitegreen/corner{dir = 4},/area/medical/virology)
-"cEK" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel/whitegreen/side{dir = 1},/area/medical/virology)
-"cEL" = (/obj/structure/chair/office/light{dir = 4},/obj/effect/landmark/start{name = "Virologist"},/turf/open/floor/plasteel/whitegreen/corner{dir = 1},/area/medical/virology)
-"cEM" = (/obj/item/weapon/folder/white{pixel_x = 4;pixel_y = -3},/obj/item/weapon/folder/white{pixel_x = 4;pixel_y = -3},/obj/item/weapon/pen/red,/obj/machinery/requests_console{department = "Virology";name = "Virology Requests Console";pixel_x = 29;pixel_y = 0},/obj/item/stack/sheet/mineral/plasma{layer = 2.9},/obj/item/stack/sheet/mineral/plasma{layer = 2.9},/obj/item/stack/sheet/mineral/plasma{layer = 2.9},/obj/structure/table/glass,/turf/open/floor/plasteel/whitegreen/side{dir = 4},/area/medical/virology)
-"cEN" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "0";req_one_access_txt = "12;5;39;6"},/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cEO" = (/turf/open/floor/plasteel/white/side{dir = 6},/area/medical/medbay3{name = "Medbay Aft"})
-"cEP" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/white,/area/medical/medbay3{name = "Medbay Aft"})
-"cEQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel/white/side{dir = 10},/area/medical/medbay3{name = "Medbay Aft"})
-"cER" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel/white/corner{dir = 4},/area/medical/medbay3{name = "Medbay Aft"})
-"cES" = (/obj/item/device/healthanalyzer{pixel_x = 1;pixel_y = 4},/obj/structure/sign/nosmoking_2{pixel_x = 0;pixel_y = -30},/obj/structure/table/glass,/turf/open/floor/plasteel/white/side{dir = 1},/area/medical/medbay3{name = "Medbay Aft"})
-"cET" = (/obj/machinery/vending/medical,/turf/open/floor/plasteel/white/corner{dir = 1},/area/medical/medbay3{name = "Medbay Aft"})
-"cEU" = (/obj/machinery/light_switch{pixel_x = -23;pixel_y = 0},/obj/structure/bodycontainer/morgue,/obj/effect/landmark{name = "revenantspawn"},/turf/open/floor/plasteel/black,/area/medical/morgue)
-"cEV" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-j2";dir = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plasteel/black,/area/medical/morgue)
-"cEW" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/black,/area/medical/morgue)
-"cEX" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/turf/open/floor/plasteel/black,/area/medical/morgue)
-"cEY" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/centcom{name = "Morgue";opacity = 1;req_access_txt = "6"},/turf/open/floor/plasteel/black,/area/medical/morgue)
-"cEZ" = (/turf/open/floor/plasteel/black,/area/hallway/primary/aft)
-"cFa" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cFb" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cFc" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/sign/science{name = "\improper ROBOTICS!";pixel_x = 32},/turf/open/floor/plasteel/purple/corner{dir = 4},/area/hallway/primary/aft)
-"cFd" = (/obj/structure/noticeboard{dir = 4;pixel_x = -27;pixel_y = 0},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/assembly/robotics)
-"cFe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/assembly/robotics)
-"cFf" = (/obj/effect/landmark/start{name = "Roboticist"},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/assembly/robotics)
-"cFg" = (/turf/open/floor/plasteel,/area/assembly/robotics)
-"cFh" = (/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/assembly/robotics)
-"cFi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/assembly/robotics)
-"cFj" = (/obj/machinery/firealarm{dir = 4;pixel_x = 28;pixel_y = 5},/obj/machinery/light{icon_state = "tube1";dir = 4},/obj/structure/table,/obj/item/weapon/wrench,/obj/item/weapon/screwdriver{pixel_y = 10},/obj/item/device/multitool{pixel_x = 3},/obj/item/stack/cable_coil,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/assembly/robotics)
-"cFk" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/machinery/camera{c_tag = "Research Division Hallway - Robotics";dir = 4;network = list("SS13","RD")},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"cFl" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"cFm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white/side{dir = 8},/area/medical/research{name = "Research Division"})
-"cFn" = (/turf/open/floor/engine/vacuum,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cFo" = (/obj/machinery/door/airlock/glass_research{autoclose = 0;frequency = 1449;glass = 1;heat_proof = 1;icon_state = "door_locked";id_tag = "tox_airlock_exterior";locked = 1;name = "Mixing Room Exterior Airlock";req_access_txt = "8"},/turf/open/floor/engine,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cFp" = (/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume{dir = 2;frequency = 1449;id = "tox_airlock_pump"},/obj/effect/landmark{name = "blobstart"},/turf/open/floor/engine,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cFq" = (/obj/machinery/door/airlock/glass_research{autoclose = 0;frequency = 1449;glass = 1;heat_proof = 1;icon_state = "door_locked";id_tag = "tox_airlock_interior";locked = 1;name = "Mixing Room Interior Airlock";req_access_txt = "8"},/turf/open/floor/engine,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cFr" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/white,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cFs" = (/obj/structure/extinguisher_cabinet{pixel_x = 27;pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera{c_tag = "Toxins - Mixing Area";dir = 8;network = list("SS13","RD")},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cFt" = (/obj/effect/decal/cleanable/oil,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cFu" = (/obj/structure/closet,/obj/item/device/assembly/prox_sensor{pixel_x = 2;pixel_y = -2},/obj/item/device/assembly/signaler{pixel_x = -2;pixel_y = 5},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cFv" = (/obj/structure/chair{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plating/airless,/area/toxins/test_area)
-"cFw" = (/obj/item/device/flashlight/lamp,/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plating/airless,/area/toxins/test_area)
-"cFx" = (/obj/structure/chair{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plating/airless,/area/toxins/test_area)
-"cFy" = (/obj/item/device/radio/intercom{pixel_x = -28;pixel_y = 0},/obj/structure/table/glass,/obj/item/weapon/hand_labeler,/obj/item/device/radio/headset/headset_med,/obj/machinery/airalarm{frequency = 1439;pixel_y = 23},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/machinery/camera{c_tag = "Virology - Cells";dir = 4;network = list("SS13","Medbay")},/turf/open/floor/plasteel/whitegreen/side{dir = 9},/area/medical/virology)
-"cFz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/iv_drip,/turf/open/floor/plasteel/whitegreen/side{dir = 1},/area/medical/virology)
-"cFA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/whitegreen/side{dir = 1},/area/medical/virology)
-"cFB" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/turf/open/floor/plasteel/whitegreen/side{dir = 1},/area/medical/virology)
-"cFC" = (/obj/structure/rack,/obj/item/weapon/crowbar/red,/obj/machinery/light_switch{pixel_x = 0;pixel_y = 26},/obj/item/weapon/wrench,/obj/item/weapon/restraints/handcuffs,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/whitegreen/side{dir = 5},/area/medical/virology)
-"cFD" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/medical/virology)
-"cFE" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/whitegreen/side{dir = 8},/area/medical/virology)
-"cFF" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/medical/virology)
-"cFG" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/turf/open/floor/plasteel/white,/area/medical/virology)
-"cFH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology)
-"cFI" = (/obj/machinery/computer/pandemic{layer = 2.5;pixel_x = -4},/obj/machinery/light{dir = 4;icon_state = "tube1"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/device/radio/intercom{pixel_x = 28;pixel_y = 0},/turf/open/floor/plasteel/whitegreen/side{dir = 4},/area/medical/virology)
-"cFJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/medical/virology)
-"cFK" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/medical/virology)
-"cFL" = (/obj/structure/sign/biohazard{pixel_y = 32},/obj/machinery/shower{icon_state = "shower";dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel/white,/area/medical/virology)
-"cFM" = (/obj/structure/sink{pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/white,/area/medical/virology)
-"cFN" = (/obj/structure/sign/securearea{pixel_x = 0;pixel_y = 32},/obj/machinery/shower{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel/white,/area/medical/virology)
-"cFO" = (/obj/machinery/firealarm{dir = 2;pixel_y = 24},/obj/machinery/iv_drip{density = 0},/turf/open/floor/plasteel/whitegreen/side{dir = 8},/area/medical/medbay3{name = "Medbay Aft"})
-"cFP" = (/obj/machinery/light/small{dir = 4},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 29},/turf/open/floor/plasteel/whitegreen/side{dir = 4},/area/medical/medbay3{name = "Medbay Aft"})
-"cFQ" = (/obj/item/weapon/twohanded/required/kirbyplants{icon_state = "plant-21";layer = 4.1;pixel_x = -3;pixel_y = 3},/turf/open/floor/plasteel/whitegreen/corner{dir = 8},/area/medical/medbay3{name = "Medbay Aft"})
-"cFR" = (/turf/open/floor/plasteel/white,/area/medical/medbay3{name = "Medbay Aft"})
-"cFS" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay3{name = "Medbay Aft"})
-"cFT" = (/obj/structure/extinguisher_cabinet{pixel_x = 27;pixel_y = 0},/turf/open/floor/plasteel/white/side{dir = 9},/area/medical/medbay3{name = "Medbay Aft"})
-"cFU" = (/obj/machinery/light/small,/turf/open/floor/plasteel/black,/area/medical/morgue)
-"cFV" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel/black,/area/medical/morgue)
-"cFW" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel/black,/area/medical/morgue)
-"cFX" = (/obj/machinery/disposal/bin,/obj/machinery/light_switch{pixel_x = 23;pixel_y = 0},/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel/black,/area/medical/morgue)
-"cFY" = (/obj/structure/closet,/turf/open/floor/plasteel/black,/area/hallway/primary/aft)
-"cFZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/hallway/primary/aft)
-"cGa" = (/obj/machinery/computer/rdconsole/robotics,/obj/machinery/requests_console{department = "Robotics";departmentType = 2;name = "Robotics RC";pixel_x = -31;pixel_y = 0},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/assembly/robotics)
-"cGb" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/assembly/robotics)
-"cGc" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/turf/open/floor/plasteel,/area/assembly/robotics)
-"cGd" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;on = 1;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/assembly/robotics)
-"cGe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/assembly/robotics)
-"cGf" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/disposal/bin,/obj/machinery/light_switch{pixel_x = 27},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/assembly/robotics)
-"cGg" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"cGh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/effect/landmark{name = "lightsout"},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"cGi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/firealarm{dir = 4;pixel_x = 24},/turf/open/floor/plasteel/white/side{dir = 10},/area/medical/research{name = "Research Division"})
-"cGj" = (/obj/machinery/sparker{dir = 2;id = "mixingsparker";pixel_x = 25},/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 4;frequency = 1441;id = "air_in"},/turf/open/floor/engine/vacuum,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cGk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/sign/fire{pixel_y = -32},/obj/machinery/atmospherics/components/binary/pump{dir = 8;on = 1},/turf/open/floor/engine,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cGl" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/meter,/obj/machinery/button/door{id = "mixvent";name = "Mixing Room Vent Control";pixel_x = -25;pixel_y = 5;req_access_txt = "7"},/obj/machinery/button/ignition{id = "mixingsparker";pixel_x = -25;pixel_y = -5},/obj/machinery/airalarm{dir = 1;pixel_y = -22},/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel/white,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cGm" = (/obj/machinery/atmospherics/components/binary/valve{dir = 4;name = "manual inlet valve"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/white,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cGn" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/portable_atmospherics/canister,/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cGo" = (/obj/structure/closet/crate,/obj/item/clothing/mask/gas,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cGp" = (/obj/structure/window/reinforced{dir = 1;pixel_y = 1},/obj/item/target,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/toxins/test_area)
-"cGq" = (/obj/structure/table/glass,/obj/item/weapon/folder/white{pixel_x = 4;pixel_y = -3},/obj/item/weapon/folder/white{pixel_x = 4;pixel_y = -3},/obj/item/weapon/pen/red,/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/whitegreen/side{dir = 8},/area/medical/virology)
-"cGr" = (/obj/structure/chair/office/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/virology)
-"cGs" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/virology)
-"cGt" = (/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/virology)
-"cGu" = (/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/whitegreen/side{dir = 4},/area/medical/virology)
-"cGv" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_virology{name = "Containment Cells";req_access_txt = "39"},/turf/open/floor/plasteel/whitegreen,/area/medical/virology)
-"cGw" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/whitegreen/side{dir = 8},/area/medical/virology)
-"cGx" = (/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plasteel/white,/area/medical/virology)
-"cGy" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/landmark{name = "lightsout"},/obj/machinery/holopad,/turf/open/floor/plasteel/white,/area/medical/virology)
-"cGz" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber{on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel/white,/area/medical/virology)
-"cGA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/whitegreen/side{dir = 4},/area/medical/virology)
-"cGB" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/airlock/virology{name = "Virology Access";req_access_txt = "39"},/turf/open/floor/plasteel/whitegreen,/area/medical/virology)
-"cGC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/whitegreen/side{dir = 8},/area/medical/virology)
-"cGD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/white,/area/medical/virology)
-"cGE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/doorButtons/airlock_controller{idExterior = "virology_airlock_exterior";idSelf = "virology_airlock_control";idInterior = "virology_airlock_interior";name = "Virology Access Console";pixel_x = 26;pixel_y = 26;req_access_txt = "39"},/turf/open/floor/plasteel/whitegreen/side{dir = 4},/area/medical/virology)
-"cGF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/virology{autoclose = 0;frequency = 1449;icon_state = "door_locked";id_tag = "virology_airlock_interior";locked = 1;name = "Virology Interior Airlock";req_access_txt = "39"},/turf/open/floor/plasteel/whitegreen,/area/medical/virology)
-"cGG" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/doorButtons/access_button{idDoor = "virology_airlock_interior";idSelf = "virology_airlock_control";name = "Virology Access Button";pixel_x = -26;pixel_y = 28;req_access_txt = "39"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology)
-"cGH" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology)
-"cGI" = (/obj/machinery/doorButtons/access_button{idDoor = "virology_airlock_exterior";idSelf = "virology_airlock_control";name = "Virology Access Button";pixel_x = 0;pixel_y = 24;req_access_txt = "39"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/virology{autoclose = 0;frequency = 1449;icon_state = "door_locked";id_tag = "virology_airlock_exterior";locked = 1;name = "Virology Exterior Airlock";req_access_txt = "39"},/turf/open/floor/plasteel/whitegreen,/area/medical/virology)
-"cGJ" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/whitegreen/side{dir = 8},/area/medical/medbay3{name = "Medbay Aft"})
-"cGK" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plasteel/whitegreen/side{dir = 4},/area/medical/medbay3{name = "Medbay Aft"})
-"cGL" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/virology{name = "Virology Access";req_access_txt = "39"},/turf/open/floor/plasteel/whitegreen,/area/medical/medbay3{name = "Medbay Aft"})
-"cGM" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/medbay3{name = "Medbay Aft"})
-"cGN" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel/white,/area/medical/medbay3{name = "Medbay Aft"})
-"cGO" = (/turf/open/floor/plasteel/white/side{dir = 8},/area/medical/medbay3{name = "Medbay Aft"})
-"cGP" = (/obj/machinery/door/airlock{name = "Medical Surplus Storeroom";req_access_txt = "5"},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cGQ" = (/turf/open/floor/plasteel/floorgrime,/area/maintenance/aft{name = "Aft Maintenance"})
-"cGR" = (/obj/structure/table,/obj/machinery/light/small{dir = 1},/obj/item/weapon/storage/backpack/dufflebag/med,/obj/item/device/flashlight/pen{pixel_x = 4;pixel_y = 3},/turf/open/floor/plasteel/floorgrime,/area/maintenance/aft{name = "Aft Maintenance"})
-"cGS" = (/obj/structure/table,/obj/item/weapon/retractor,/obj/item/weapon/hemostat,/obj/item/device/healthanalyzer,/obj/item/clothing/glasses/eyepatch,/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka{pixel_x = 3;pixel_y = 2},/obj/effect/decal/cleanable/cobweb/cobweb2,/turf/open/floor/plasteel/floorgrime,/area/maintenance/aft{name = "Aft Maintenance"})
-"cGT" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/maintenance{name = "Morgue Maintenance";req_access_txt = "6"},/turf/open/floor/plating,/area/medical/morgue)
-"cGU" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/extinguisher_cabinet{pixel_x = -27;pixel_y = 0},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/hallway/primary/aft)
-"cGV" = (/obj/machinery/airalarm{dir = 4;icon_state = "alarm0";pixel_x = -22},/obj/machinery/light{icon_state = "tube1";dir = 8},/obj/machinery/r_n_d/circuit_imprinter,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/assembly/robotics)
-"cGW" = (/obj/effect/landmark/start{name = "Roboticist"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/assembly/robotics)
-"cGX" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/assembly/robotics)
-"cGY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/rack,/obj/item/weapon/storage/firstaid/regular{empty = 1;name = "First-Aid (empty)"},/obj/item/weapon/storage/firstaid/regular{empty = 1;name = "First-Aid (empty)"},/obj/item/weapon/storage/firstaid/regular{empty = 1;name = "First-Aid (empty)"},/obj/item/device/healthanalyzer{pixel_x = 4;pixel_y = -4},/obj/item/device/healthanalyzer{pixel_x = 4;pixel_y = -4},/obj/item/device/healthanalyzer{pixel_x = 4;pixel_y = -4},/obj/item/device/radio/headset/headset_sci{pixel_x = -3},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/assembly/robotics)
-"cGZ" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/assembly/robotics)
-"cHa" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/whitepurple/corner{dir = 8},/area/medical/research{name = "Research Division"})
-"cHb" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"cHc" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8;initialize_directions = 11},/turf/open/floor/plasteel/whiteblue/corner{dir = 2},/area/medical/research{name = "Research Division"})
-"cHd" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/sign/securearea{desc = "A warning sign which reads 'SERVER ROOM'.";name = "SERVER ROOM";pixel_y = 0},/turf/closed/wall/r_wall,/area/toxins/server{name = "\improper Research Division Server Room"})
-"cHe" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/toxins/server{name = "\improper Research Division Server Room"})
-"cHf" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2;initialize_directions = 11},/turf/closed/wall/r_wall,/area/toxins/server{name = "\improper Research Division Server Room"})
-"cHg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cHh" = (/obj/machinery/door/airlock/maintenance{name = "Toxins Lab Maintenance";req_access_txt = "8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/poddoor/shutters/preopen{id = "toxins_blastdoor";name = "biohazard containment shutters"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cHi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/closed/wall/r_wall,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cHj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating{icon_state = "platingdmg2"},/area/maintenance/aft{name = "Aft Maintenance"})
-"cHk" = (/obj/structure/cable,/obj/machinery/power/tracker,/turf/open/floor/plating/airless,/area/solar/port)
-"cHl" = (/obj/structure/table/glass,/obj/item/weapon/paper_bin{pixel_x = -2;pixel_y = 9},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/extinguisher_cabinet{pixel_x = -25;pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/whitegreen/side{dir = 10},/area/medical/virology)
-"cHm" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel/whitegreen/side,/area/medical/virology)
-"cHn" = (/obj/machinery/firealarm{dir = 1;pixel_y = -24},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/whitegreen/side,/area/medical/virology)
-"cHo" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel/whitegreen/side,/area/medical/virology)
-"cHp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/sink{dir = 4;icon_state = "sink";pixel_x = 11;pixel_y = 0},/turf/open/floor/plasteel/whitegreen/side{dir = 6},/area/medical/virology)
-"cHq" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1;initialize_directions = 11},/turf/open/floor/plating,/area/medical/virology)
-"cHr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/whitegreen/side{dir = 10},/area/medical/virology)
-"cHs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/whitegreen/side,/area/medical/virology)
-"cHt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/whitegreen/side,/area/medical/virology)
-"cHu" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2;initialize_directions = 11},/turf/open/floor/plasteel/whitegreen/side,/area/medical/virology)
-"cHv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/machinery/camera{c_tag = "Virology - Lab";dir = 8;network = list("SS13","Medbay")},/obj/structure/sink{dir = 4;icon_state = "sink";pixel_x = 11;pixel_y = 0},/obj/machinery/light_switch{pixel_x = 26;pixel_y = 0},/turf/open/floor/plasteel/whitegreen/side{dir = 6},/area/medical/virology)
-"cHw" = (/obj/structure/closet/emcloset,/obj/item/device/radio/intercom{pixel_x = -28;pixel_y = 0},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel/white,/area/medical/virology)
-"cHx" = (/obj/machinery/camera{c_tag = "Virology - Airlock";dir = 1;network = list("SS13","Medbay")},/obj/machinery/light,/obj/structure/closet/l3closet,/obj/machinery/firealarm{dir = 1;pixel_y = -24},/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel/white,/area/medical/virology)
-"cHy" = (/obj/structure/closet/l3closet,/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel/white,/area/medical/virology)
-"cHz" = (/obj/structure/sign/biohazard{pixel_x = -32},/turf/open/floor/plasteel/whitegreen/side{dir = 8},/area/medical/medbay3{name = "Medbay Aft"})
-"cHA" = (/obj/machinery/camera{c_tag = "Virology - Entrance";dir = 8;network = list("SS13","Medbay")},/obj/machinery/light/small{dir = 4},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plasteel/whitegreen/side{dir = 4},/area/medical/medbay3{name = "Medbay Aft"})
-"cHB" = (/obj/structure/sign/biohazard{pixel_x = -32},/obj/item/weapon/storage/box/gloves{pixel_x = 3;pixel_y = 4},/obj/item/weapon/storage/box/masks{pixel_x = 0;pixel_y = 0},/obj/structure/table/glass,/turf/open/floor/plasteel/whitegreen/corner{dir = 1},/area/medical/medbay3{name = "Medbay Aft"})
-"cHC" = (/obj/structure/sign/nosmoking_2{pixel_x = 0;pixel_y = -30},/obj/item/weapon/storage/box/beakers{pixel_x = 4;pixel_y = 4},/obj/item/weapon/storage/box/bodybags,/obj/structure/table/glass,/turf/open/floor/plasteel/white,/area/medical/medbay3{name = "Medbay Aft"})
-"cHD" = (/obj/machinery/firealarm{dir = 1;pixel_y = -24},/obj/item/weapon/folder/white{pixel_x = 4;pixel_y = -3},/obj/item/weapon/folder/white{pixel_x = 4;pixel_y = -3},/obj/machinery/light,/obj/item/weapon/hand_labeler,/obj/item/weapon/pen,/obj/item/weapon/pen,/obj/structure/table/glass,/turf/open/floor/plasteel/white,/area/medical/medbay3{name = "Medbay Aft"})
-"cHE" = (/obj/item/weapon/paper_bin{pixel_x = -2;pixel_y = 8},/obj/structure/table/glass,/turf/open/floor/plasteel/white/side{dir = 10},/area/medical/medbay3{name = "Medbay Aft"})
-"cHF" = (/obj/structure/sink{icon_state = "sink";dir = 8;pixel_x = -12;pixel_y = 2},/turf/open/floor/plasteel/floorgrime,/area/maintenance/aft{name = "Aft Maintenance"})
-"cHG" = (/obj/effect/decal/cleanable/oil,/turf/open/floor/plasteel/floorgrime,/area/maintenance/aft{name = "Aft Maintenance"})
-"cHH" = (/obj/structure/table,/obj/item/weapon/reagent_containers/glass/beaker{pixel_x = 8;pixel_y = 2},/obj/item/weapon/reagent_containers/blood/empty{pixel_x = 0;pixel_y = 0},/obj/item/weapon/reagent_containers/blood/empty{pixel_x = 0;pixel_y = 0},/obj/item/weapon/reagent_containers/syringe,/obj/item/weapon/reagent_containers/dropper,/obj/structure/sign/biohazard{pixel_x = 32},/turf/open/floor/plasteel/floorgrime,/area/maintenance/aft{name = "Aft Maintenance"})
-"cHI" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cHJ" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/aft{name = "Aft Maintenance"})
-"cHK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cHL" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cHM" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{req_access_txt = "0";req_one_access_txt = "12;5;39;6"},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cHN" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/hallway/primary/aft)
-"cHO" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel,/area/hallway/primary/aft)
-"cHP" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/bodycontainer/morgue,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/assembly/robotics)
-"cHQ" = (/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/assembly/robotics)
-"cHR" = (/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel,/area/assembly/robotics)
-"cHS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel,/area/assembly/robotics)
-"cHT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/assembly/robotics)
-"cHU" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/assembly/robotics)
-"cHV" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Robotics Lab";req_access_txt = "29";req_one_access_txt = "0"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/purple,/area/assembly/robotics)
-"cHW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/whitepurple/side{dir = 8},/area/medical/research{name = "Research Division"})
-"cHX" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"cHY" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4;initialize_directions = 11},/turf/open/floor/plasteel/whiteblue/side{dir = 4},/area/medical/research{name = "Research Division"})
-"cHZ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Research Division Server Room";req_access = null;req_access_txt = "30"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/black,/area/toxins/server{name = "\improper Research Division Server Room"})
-"cIa" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/light_switch{pixel_y = 28},/turf/open/floor/plasteel/black,/area/toxins/server{name = "\improper Research Division Server Room"})
-"cIb" = (/obj/machinery/camera{c_tag = "Research Division - Server Room";dir = 2;network = list("SS13","RD");pixel_x = 22},/obj/machinery/power/apc{dir = 1;name = "Research Division Server Room APC";pixel_x = 0;pixel_y = 25},/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/obj/effect/landmark{name = "revenantspawn"},/turf/open/floor/plasteel/black,/area/toxins/server{name = "\improper Research Division Server Room"})
-"cIc" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer{target_temperature = 80;dir = 2;on = 1},/obj/effect/decal/cleanable/cobweb/cobweb2,/turf/open/floor/plasteel/black,/area/toxins/server{name = "\improper Research Division Server Room"})
-"cId" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/sign/securearea{desc = "A warning sign which reads 'SERVER ROOM'.";name = "SERVER ROOM";pixel_y = 32},/turf/open/floor/plating,/area/toxins/server{name = "\improper Research Division Server Room"})
-"cIe" = (/obj/machinery/r_n_d/server/robotics,/turf/open/floor/bluegrid{name = "Server Base";initial_gas_mix = "n2=500;TEMP=80"},/area/toxins/server{name = "\improper Research Division Server Room"})
-"cIf" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;external_pressure_bound = 140;on = 1;pressure_checks = 0},/turf/open/floor/bluegrid{name = "Server Base";initial_gas_mix = "n2=500;TEMP=80"},/area/toxins/server{name = "\improper Research Division Server Room"})
-"cIg" = (/turf/closed/wall/r_wall,/area/toxins/server{name = "\improper Research Division Server Room"})
-"cIh" = (/obj/structure/closet,/obj/item/weapon/storage/box/lights/mixed,/obj/item/device/flashlight,/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cIi" = (/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cIj" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/sign/biohazard{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cIk" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cIl" = (/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cIm" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Research and Development Lab";req_access_txt = "0";req_one_access_txt = "7;29"},/turf/open/floor/plasteel/whitepurple{dir = 4},/area/toxins/lab)
-"cIn" = (/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cIo" = (/obj/item/weapon/poster/contraband,/obj/item/weapon/poster/contraband,/obj/item/weapon/poster/contraband,/obj/item/weapon/poster/contraband,/obj/item/weapon/poster/contraband,/obj/item/weapon/reagent_containers/food/drinks/beer{pixel_x = -3;pixel_y = 2},/obj/item/weapon/reagent_containers/food/drinks/ale,/obj/structure/table/wood,/obj/structure/sign/poster{pixel_x = 32;pixel_y = 0},/obj/item/device/instrument/eguitar,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cIp" = (/obj/structure/grille,/obj/structure/window/fulltile,/obj/structure/cable/yellow,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/medical/virology)
-"cIq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_virology{name = "Isolation B";req_access_txt = "39"},/turf/open/floor/plasteel/freezer,/area/medical/virology)
-"cIr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_virology{name = "Isolation A";req_access_txt = "39"},/turf/open/floor/plasteel/freezer,/area/medical/virology)
-"cIs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/turf/closed/wall,/area/medical/virology)
-"cIt" = (/obj/structure/closet/wardrobe/virology_white,/obj/item/weapon/storage/backpack/satchel/vir,/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/machinery/firealarm{dir = 8;pixel_x = -26;pixel_y = 0},/turf/open/floor/plasteel/vault,/area/medical/virology)
-"cIu" = (/obj/structure/closet/crate/freezer,/obj/item/weapon/reagent_containers/blood/empty,/obj/item/weapon/reagent_containers/blood/empty{pixel_x = -3;pixel_y = -3},/obj/item/weapon/reagent_containers/blood/AMinus,/obj/item/weapon/reagent_containers/blood/BMinus{pixel_x = -4;pixel_y = 4},/obj/item/weapon/reagent_containers/blood/BPlus{pixel_x = 1;pixel_y = 2},/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/OPlus{pixel_x = -2;pixel_y = -1},/obj/item/weapon/reagent_containers/blood/random,/obj/item/weapon/reagent_containers/blood/random,/obj/item/weapon/reagent_containers/blood/random,/turf/open/floor/plasteel/vault,/area/medical/virology)
-"cIv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/vault,/area/medical/virology)
-"cIw" = (/obj/structure/closet/secure_closet/medical1,/turf/open/floor/plasteel/vault,/area/medical/virology)
-"cIx" = (/obj/structure/closet/l3closet/virology,/obj/structure/extinguisher_cabinet{pixel_x = 0;pixel_y = -30},/turf/open/floor/plasteel/vault,/area/medical/virology)
-"cIy" = (/obj/structure/sign/biohazard{pixel_x = -32},/turf/open/space,/area/space)
-"cIz" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/airlock/maintenance{req_access_txt = "0";req_one_access_txt = "12;5;39;6"},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cIA" = (/obj/structure/bed/roller,/obj/structure/bed/roller,/obj/machinery/iv_drip{density = 0},/obj/machinery/iv_drip{density = 0},/turf/open/floor/plasteel/floorgrime,/area/maintenance/aft{name = "Aft Maintenance"})
-"cIB" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 2;on = 1},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cIC" = (/obj/item/clothing/gloves/color/latex/nitrile,/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/clothing/suit/toggle/labcoat,/obj/item/clothing/suit/apron/surgical,/obj/item/clothing/mask/surgical,/obj/item/clothing/mask/breath/medical,/turf/open/floor/plating{icon_state = "platingdmg2"},/area/maintenance/aft{name = "Aft Maintenance"})
-"cID" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cIE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/turf/open/floor/plasteel/escape{dir = 2},/area/hallway/primary/aft)
-"cIF" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/escape{dir = 2},/area/hallway/primary/aft)
-"cIG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/camera{c_tag = "Aft Primary Hallway - Aft";dir = 8;network = list("SS13")},/turf/open/floor/plasteel/escape{dir = 2},/area/hallway/primary/aft)
-"cIH" = (/obj/structure/sign/directions/evac{pixel_y = 0},/turf/closed/wall/r_wall,/area/hallway/primary/aft)
-"cII" = (/obj/structure/table,/obj/item/weapon/circular_saw,/obj/item/weapon/scalpel{pixel_y = 12},/obj/structure/window/reinforced{dir = 1;pixel_y = 1},/obj/item/weapon/razor{pixel_y = 5},/turf/open/floor/plasteel/white/side{dir = 4},/area/assembly/robotics)
-"cIJ" = (/obj/effect/landmark/start{name = "Roboticist"},/obj/structure/sink{dir = 8;icon_state = "sink";pixel_x = -12;pixel_y = 2},/turf/open/floor/plasteel/white,/area/assembly/robotics)
-"cIK" = (/obj/machinery/holopad,/turf/open/floor/plasteel/white,/area/assembly/robotics)
-"cIL" = (/obj/structure/table,/obj/item/clothing/gloves/color/latex,/obj/item/weapon/surgical_drapes,/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/obj/structure/window/reinforced{dir = 1;pixel_y = 1},/turf/open/floor/plasteel/white/side{dir = 8},/area/assembly/robotics)
-"cIM" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/assembly/robotics)
-"cIN" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/table,/obj/item/weapon/storage/box/bodybags{pixel_x = 2;pixel_y = 2},/obj/item/borg/upgrade/rename,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/assembly/robotics)
-"cIO" = (/obj/structure/rack,/obj/item/weapon/storage/toolbox/electrical{pixel_x = -1;pixel_y = 4},/obj/item/weapon/storage/toolbox/mechanical{pixel_x = 2;pixel_y = -1},/obj/item/clothing/head/welding{pixel_x = -3;pixel_y = 5},/obj/item/clothing/glasses/welding,/obj/item/device/multitool{pixel_x = 3},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/assembly/robotics)
-"cIP" = (/obj/structure/grille,/obj/structure/window/fulltile,/turf/open/floor/plating,/area/assembly/robotics)
-"cIQ" = (/turf/open/floor/plasteel/whitepurple/corner{dir = 1},/area/medical/research{name = "Research Division"})
-"cIR" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_Toxins = 0},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/medical/research{name = "Research Division"})
-"cIS" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 29},/obj/machinery/light{icon_state = "tube1";dir = 4},/turf/open/floor/plasteel/whiteblue/corner{dir = 4},/area/medical/research{name = "Research Division"})
-"cIT" = (/turf/closed/wall,/area/toxins/server{name = "\improper Research Division Server Room"})
-"cIU" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/black,/area/toxins/server{name = "\improper Research Division Server Room"})
-"cIV" = (/obj/structure/chair/office/light,/turf/open/floor/plasteel/black,/area/toxins/server{name = "\improper Research Division Server Room"})
-"cIW" = (/obj/machinery/atmospherics/pipe/simple{dir = 5},/turf/open/floor/plasteel/black,/area/toxins/server{name = "\improper Research Division Server Room"})
-"cIX" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_command{name = "Server Access";req_access_txt = "30"},/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/open/floor/plasteel/black,/area/toxins/server{name = "\improper Research Division Server Room"})
-"cIY" = (/obj/machinery/atmospherics/pipe/simple{dir = 4},/turf/open/floor/plasteel/black{name = "Server Walkway";initial_gas_mix = "n2=500;TEMP=80"},/area/toxins/server{name = "\improper Research Division Server Room"})
-"cIZ" = (/obj/effect/landmark{name = "blobstart"},/obj/machinery/atmospherics/pipe/manifold{dir = 4},/obj/machinery/light/small{dir = 4},/obj/machinery/airalarm/server{dir = 8;pixel_x = 22;pixel_y = 0},/turf/open/floor/plasteel/black{name = "Server Walkway";initial_gas_mix = "n2=500;TEMP=80"},/area/toxins/server{name = "\improper Research Division Server Room"})
-"cJa" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cJb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cJc" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/aft{name = "Aft Maintenance"})
-"cJd" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cJe" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;name = "EXTERNAL AIRLOCK";pixel_x = 0;pixel_y = -32},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cJf" = (/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/obj/structure/lattice/catwalk,/turf/open/space,/area/space)
-"cJg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/weapon/bedsheet/medical,/obj/structure/bed,/turf/open/floor/plasteel/freezer,/area/medical/virology)
-"cJh" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel/freezer,/area/medical/virology)
-"cJi" = (/obj/structure/bed,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/weapon/bedsheet/medical,/turf/open/floor/plasteel/freezer,/area/medical/virology)
-"cJj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/medical/virology)
-"cJk" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/virology{name = "Break Room";req_access_txt = "39"},/turf/open/floor/plasteel/whitegreen,/area/medical/virology)
-"cJl" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cJm" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/maintenance{name = "Research Lab Maintenance";req_access_txt = "0";req_one_access_txt = "7;29"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/toxins/lab)
-"cJn" = (/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cJo" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cJp" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/weapon/ore/slag,/obj/item/weapon/storage/box/lights/mixed,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cJq" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/space_heater,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cJr" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/closet/crate,/obj/item/clothing/gloves/color/fyellow,/obj/item/weapon/wrench,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cJs" = (/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/closet/firecloset,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cJt" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/weapon/screwdriver{pixel_y = 6},/obj/item/weapon/crowbar,/obj/item/weapon/storage/pill_bottle,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cJu" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/item/weapon/cigbutt,/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/aft{name = "Aft Maintenance"})
-"cJv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/decal/cleanable/generic,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cJw" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{name = "Medical Surplus Storeroom";req_access_txt = "12";req_one_access_txt = "0"},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cJx" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cJy" = (/obj/structure/closet/firecloset,/turf/open/floor/plasteel/vault,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cJz" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel/vault,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cJA" = (/obj/machinery/computer/arcade,/turf/open/floor/plasteel/vault,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cJB" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/machinery/newscaster{pixel_x = 0;pixel_y = 32},/turf/open/floor/plasteel/vault,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cJC" = (/obj/machinery/vending/coffee,/obj/structure/sign/map/left{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";icon_state = "map-left-MS";pixel_y = 32},/turf/open/floor/plasteel/vault,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cJD" = (/obj/machinery/vending/snack,/obj/structure/sign/map/right{desc = "A framed picture of the station. Clockwise from security in red at the top, you see engineering in yellow, science in purple, escape in checkered red-and-white, medbay in green, arrivals in checkered red-and-blue, and then cargo in brown.";icon_state = "map-right-MS";pixel_y = 32},/turf/open/floor/plasteel/vault,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cJE" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Departure Lounge"},/turf/open/floor/plasteel/neutral/corner{dir = 1},/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cJF" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Departure Lounge"},/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cJG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass{name = "Departure Lounge"},/turf/open/floor/plasteel/neutral/corner{dir = 2},/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cJH" = (/obj/structure/table,/obj/item/weapon/retractor,/obj/item/weapon/hemostat,/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = -29},/turf/open/floor/plasteel/white/corner{dir = 4},/area/assembly/robotics)
-"cJI" = (/obj/structure/table/optable,/obj/item/weapon/surgical_drapes,/obj/item/weapon/storage/firstaid/regular,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cJJ" = (/obj/machinery/computer/operating{name = "Robotics Operating Computer"},/turf/open/floor/plasteel/white/side{dir = 1},/area/assembly/robotics)
-"cJK" = (/obj/structure/table,/obj/item/device/mmi,/obj/item/device/mmi,/obj/item/device/mmi,/obj/structure/window/reinforced{dir = 4;pixel_x = 0},/turf/open/floor/plasteel/white/corner{dir = 1},/area/assembly/robotics)
-"cJL" = (/obj/machinery/door/window/eastleft{dir = 1;name = "Robotics Deliveries";req_access_txt = "29"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/assembly/robotics)
-"cJM" = (/obj/structure/closet/wardrobe/robotics_black{pixel_x = 2},/obj/structure/window/reinforced{dir = 8},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/assembly/robotics)
-"cJN" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/weapon/stock_parts/cell/high{charge = 100;maxcharge = 15000},/obj/item/weapon/stock_parts/cell/high{charge = 100;maxcharge = 15000},/obj/item/weapon/stock_parts/cell/high{charge = 100;maxcharge = 15000},/obj/item/weapon/crowbar,/obj/item/device/assembly/prox_sensor{pixel_x = -8;pixel_y = 4},/obj/item/device/assembly/prox_sensor{pixel_x = -8;pixel_y = 4},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/assembly/robotics)
-"cJO" = (/obj/structure/sink{dir = 8;icon_state = "sink";pixel_x = -12;pixel_y = 2},/turf/open/floor/plasteel/whitepurple/corner{dir = 2},/area/medical/research{name = "Research Division"})
-"cJP" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/whitepurple/side{dir = 2},/area/medical/research{name = "Research Division"})
-"cJQ" = (/obj/item/weapon/twohanded/required/kirbyplants{icon_state = "plant-10";layer = 4.1},/turf/open/floor/plasteel/whitepurple/corner{dir = 8},/area/medical/research{name = "Research Division"})
-"cJR" = (/obj/machinery/firealarm{dir = 1;pixel_y = -24},/obj/structure/filingcabinet/chestdrawer,/turf/open/floor/plasteel/black,/area/toxins/server{name = "\improper Research Division Server Room"})
-"cJS" = (/obj/item/device/radio/intercom{broadcasting = 0;listening = 1;name = "Station Intercom (General)";pixel_y = -28},/obj/machinery/computer/rdservercontrol,/turf/open/floor/plasteel/black,/area/toxins/server{name = "\improper Research Division Server Room"})
-"cJT" = (/obj/structure/table,/obj/item/weapon/folder/white{pixel_x = 4;pixel_y = -3},/obj/item/weapon/pen,/turf/open/floor/plasteel/black,/area/toxins/server{name = "\improper Research Division Server Room"})
-"cJU" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/toxins/server{name = "\improper Research Division Server Room"})
-"cJV" = (/obj/machinery/r_n_d/server/core,/turf/open/floor/bluegrid{name = "Server Base";initial_gas_mix = "n2=500;TEMP=80"},/area/toxins/server{name = "\improper Research Division Server Room"})
-"cJW" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 120;initialize_directions = 1;internal_pressure_bound = 4000;on = 1;pressure_checks = 2;pump_direction = 0},/turf/open/floor/bluegrid{name = "Server Base";initial_gas_mix = "n2=500;TEMP=80"},/area/toxins/server{name = "\improper Research Division Server Room"})
-"cJX" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/aft{name = "Aft Maintenance"})
-"cJY" = (/obj/structure/rack,/obj/effect/landmark/costume,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cJZ" = (/obj/effect/decal/cleanable/dirt,/obj/structure/reagent_dispensers/watertank,/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cKa" = (/obj/structure/closet,/obj/item/clothing/glasses/science,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cKb" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cKc" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cKd" = (/obj/structure/light_construct/small,/obj/structure/table/wood/poker,/obj/item/toy/cards/deck,/obj/structure/sign/poster{pixel_y = -32},/turf/open/floor/wood,/area/maintenance/aft{name = "Aft Maintenance"})
-"cKe" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/turf/open/floor/plasteel/freezer,/area/medical/virology)
-"cKf" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/freezer,/area/medical/virology)
-"cKg" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/freezer,/area/medical/virology)
-"cKh" = (/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/turf/open/floor/plasteel/freezer,/area/medical/virology)
-"cKi" = (/obj/structure/table/glass,/obj/machinery/newscaster{pixel_x = -30},/obj/item/weapon/folder/white{pixel_x = 4;pixel_y = -3},/obj/item/weapon/folder/white{pixel_x = 4;pixel_y = -3},/obj/item/weapon/paper,/obj/item/weapon/pen/red,/obj/structure/extinguisher_cabinet{pixel_x = 0;pixel_y = 30},/turf/open/floor/plasteel/whitegreen/side{dir = 9},/area/medical/virology)
-"cKj" = (/obj/structure/chair/office/light{dir = 8},/obj/machinery/light{dir = 1},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 0;pixel_y = 29},/turf/open/floor/plasteel/whitegreen/side{dir = 1},/area/medical/virology)
-"cKk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/whitegreen/side{dir = 1},/area/medical/virology)
-"cKl" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3;pixel_y = 3},/obj/machinery/light_switch{pixel_x = 0;pixel_y = 26},/obj/machinery/camera{c_tag = "Virology - Break Room";dir = 2;network = list("SS13","Medbay")},/turf/open/floor/plasteel/whitegreen/side{dir = 1},/area/medical/virology)
-"cKm" = (/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 29},/obj/structure/table/glass,/obj/machinery/microwave{pixel_x = -3;pixel_y = 6},/turf/open/floor/plasteel/whitegreen/side{dir = 5},/area/medical/virology)
-"cKn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cKo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/aft{name = "Aft Maintenance"})
-"cKp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cKq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cKr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/structure/disposalpipe/sortjunction{dir = 8;icon_state = "pipe-j2s";sortType = 17},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cKs" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cKt" = (/obj/item/weapon/dice/d20,/obj/item/weapon/dice,/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/sign/poster{pixel_y = -32},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cKu" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cKv" = (/obj/machinery/airalarm{dir = 4;pixel_x = -23;pixel_y = 0},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cKw" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cKx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cKy" = (/obj/machinery/power/apc{cell_type = 5000;dir = 1;name = "Departure Lounge APC";pixel_y = 24},/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cKz" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cKA" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cKB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cKC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/device/radio/intercom{pixel_y = 25},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cKD" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cKE" = (/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cKF" = (/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/machinery/firealarm{dir = 4;pixel_x = 24},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cKG" = (/obj/structure/plasticflaps{opacity = 1},/obj/machinery/navbeacon{codes_txt = "delivery;dir=1";dir = 1;freq = 1400;location = "Robotics"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/assembly/robotics)
-"cKH" = (/obj/machinery/door/airlock/maintenance{name = "Robotics Maintenance";req_access_txt = "29"},/turf/open/floor/plating,/area/assembly/robotics)
-"cKI" = (/obj/structure/sign/securearea,/turf/closed/wall/r_wall,/area/medical/research{name = "Research Division"})
-"cKJ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cKK" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cKL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{icon_state = "door_closed";locked = 0;name = "Storage Room";req_access_txt = "0";req_one_access_txt = "12;47"},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cKM" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cKN" = (/obj/item/weapon/storage/box/lights/mixed,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cKO" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/aft{name = "Aft Maintenance"})
-"cKP" = (/turf/closed/wall/r_wall,/area/maintenance/starboardsolar)
-"cKQ" = (/obj/machinery/door/airlock/engineering{name = "Aft Starboard Solar Access";req_access_txt = "10"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/starboardsolar)
-"cKR" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'";icon_state = "shock";name = "HIGH VOLTAGE";pixel_y = 0},/turf/closed/wall/r_wall,/area/maintenance/starboardsolar)
-"cKS" = (/obj/structure/table/glass,/obj/item/weapon/reagent_containers/dropper,/obj/item/weapon/reagent_containers/syringe,/obj/item/weapon/reagent_containers/glass/beaker,/turf/open/floor/plasteel/freezer,/area/medical/virology)
-"cKT" = (/obj/structure/table/glass,/obj/item/weapon/folder/white{pixel_y = 4},/obj/item/weapon/pen/red,/turf/open/floor/plasteel/freezer,/area/medical/virology)
-"cKU" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/closed/wall,/area/medical/virology)
-"cKV" = (/obj/structure/table/glass,/obj/item/weapon/paper_bin{pixel_x = -2;pixel_y = 9},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/whitegreen/side{dir = 8},/area/medical/virology)
-"cKW" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel/white,/area/medical/virology)
-"cKX" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology)
-"cKY" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel/white,/area/medical/virology)
-"cKZ" = (/obj/structure/sink{dir = 4;icon_state = "sink";pixel_x = 11;pixel_y = 0},/turf/open/floor/plasteel/whitegreen/side{dir = 4},/area/medical/virology)
-"cLa" = (/turf/closed/wall,/area/chapel/office)
-"cLb" = (/obj/machinery/door/airlock/centcom{layer = 2.7;name = "Crematorium Maintenance";opacity = 1;req_access_txt = "27"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cLc" = (/obj/machinery/door/airlock/centcom{name = "Chapel Office Maintenance";opacity = 1;req_access_txt = "27"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cLd" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cLe" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cLf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cLg" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/junction{dir = 8;icon_state = "pipe-j2"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cLh" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cLi" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg2"},/area/maintenance/aft{name = "Aft Maintenance"})
-"cLj" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cLk" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "0";req_one_access_txt = "12;5;39;6"},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cLl" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cLm" = (/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cLn" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=10-Aft-To-Central";location = "9.4-Escape-4"},/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cLo" = (/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cLp" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cLq" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cLr" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cLs" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cLt" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cLu" = (/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cLv" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "0";req_one_access_txt = "12;47"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cLw" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cLx" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/aft{name = "Aft Maintenance"})
-"cLy" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cLz" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cLA" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/door/airlock/maintenance{req_access_txt = "0";req_one_access_txt = "12;47"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cLB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/spawner/lootdrop/maintenance,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cLC" = (/obj/machinery/doorButtons/airlock_controller{idExterior = "incinerator_airlock_exterior";idInterior = "incinerator_airlock_interior";idSelf = "incinerator_access_control";name = "Incinerator Access Console";pixel_x = 8;pixel_y = -24;req_access_txt = "12"},/obj/machinery/button/ignition{id = "Incinerator";pixel_x = 8;pixel_y = -36},/obj/machinery/computer/security/telescreen{desc = "Used for watching the turbine vent.";dir = 8;name = "turbine vent monitor";network = list("Turbine");pixel_x = 29;pixel_y = 0},/obj/machinery/button/door{id = "turbinevent";name = "Turbine Vent Control";pixel_x = -8;pixel_y = -36;req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/machinery/button/door{id = "auxincineratorvent";name = "Auxiliary Vent Control";pixel_x = -8;pixel_y = -24;req_access_txt = "12"},/obj/machinery/computer/turbine_computer{id = "incineratorturbine"},/turf/open/floor/plasteel/floorgrime,/area/maintenance/incinerator)
-"cLD" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cLE" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer{dir = 1;name = "euthanization chamber freezer";on = 1;target_temperature = 80},/turf/open/floor/plating,/area/toxins/xenobiology)
-"cLF" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg2"},/area/maintenance/aft{name = "Aft Maintenance"})
-"cLG" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cLH" = (/obj/machinery/space_heater,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cLI" = (/obj/structure/closet/crate,/obj/item/weapon/poster/legit,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/landmark{name = "blobstart"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cLJ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/closet,/obj/item/weapon/storage/box/lights/mixed,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cLK" = (/obj/machinery/power/smes,/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/turf/open/floor/plating,/area/maintenance/starboardsolar)
-"cLL" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/starboardsolar)
-"cLM" = (/obj/machinery/power/apc{dir = 1;name = "Aft Starboard Solar APC";pixel_x = 0;pixel_y = 24},/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/turf/open/floor/plating,/area/maintenance/starboardsolar)
-"cLN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment,/turf/closed/wall/r_wall,/area/medical/virology)
-"cLO" = (/obj/machinery/airalarm{dir = 4;pixel_x = -23;pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel/whitegreen/side{dir = 10},/area/medical/virology)
-"cLP" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/whitegreen/side,/area/medical/virology)
-"cLQ" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9;pixel_y = 0},/turf/open/floor/plasteel/whitegreen/side,/area/medical/virology)
-"cLR" = (/obj/structure/chair/stool,/turf/open/floor/plasteel/whitegreen/side,/area/medical/virology)
-"cLS" = (/obj/structure/chair/stool,/obj/machinery/firealarm{dir = 4;pixel_x = 24},/turf/open/floor/plasteel/whitegreen/side{dir = 6},/area/medical/virology)
-"cLT" = (/obj/structure/bodycontainer/crematorium,/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plasteel/black,/area/chapel/office)
-"cLU" = (/obj/effect/landmark{name = "blobstart"},/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/turf/open/floor/engine,/area/toxins/explab)
-"cLV" = (/obj/item/device/radio/intercom{pixel_y = 25},/obj/machinery/firealarm{dir = 8;pixel_x = -26;pixel_y = 0},/obj/structure/table/wood,/obj/item/clothing/under/burial,/obj/item/clothing/under/burial,/obj/item/clothing/under/burial,/obj/item/clothing/under/burial,/obj/item/clothing/under/burial,/obj/item/clothing/under/burial,/turf/open/floor/plasteel/grimy,/area/chapel/office)
-"cLW" = (/obj/machinery/requests_console{department = "Chapel";departmentType = 2;pixel_y = 30},/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/turf/open/floor/plasteel/grimy,/area/chapel/office)
-"cLX" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8;initialize_directions = 11},/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/grimy,/area/chapel/office)
-"cLY" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel/grimy,/area/chapel/office)
-"cLZ" = (/obj/machinery/door/morgue{name = "Relic Closet";req_access_txt = "22"},/turf/open/floor/plasteel/cult{dir = 2},/area/chapel/office)
-"cMa" = (/obj/structure/table/wood,/obj/item/weapon/spellbook/oneuse/smoke{name = "mysterious old book of "},/obj/item/weapon/reagent_containers/food/drinks/bottle/holywater{name = "flask of holy water";pixel_x = -2;pixel_y = 2},/obj/item/weapon/nullrod{pixel_x = 4},/obj/item/organ/heart,/obj/item/device/soulstone/anybody/chaplain,/obj/effect/landmark{name = "revenantspawn"},/turf/open/floor/plasteel/cult{dir = 2},/area/chapel/office)
-"cMb" = (/obj/machinery/door/airlock/maintenance{name = "Chapel Maintenance Access ";req_access_txt = "0";req_one_access_txt = "12;27"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cMc" = (/obj/item/weapon/tank/internals/air,/obj/item/weapon/tank/internals/air,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/machinery/space_heater,/obj/effect/spawner/lootdrop/maintenance,/obj/structure/sign/poster{pixel_x = 32;pixel_y = 0},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cMd" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cMe" = (/obj/effect/turf_decal/stripes/corner{dir = 2},/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cMf" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cMg" = (/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cMh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cMi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=9.2-Escape-2";location = "9.1-Escape-1"},/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cMj" = (/obj/machinery/light{dir = 4},/obj/machinery/camera{c_tag = "Departure Lounge - Starboard Fore";dir = 8;network = list("SS13")},/obj/structure/extinguisher_cabinet{pixel_x = 27;pixel_y = 0},/obj/item/weapon/twohanded/required/kirbyplants{icon_state = "plant-14";layer = 4.1},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cMk" = (/obj/machinery/power/apc{cell_type = 5000;dir = 2;name = "Aft Maintenance APC";pixel_y = -24},/obj/structure/cable/yellow,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cMl" = (/obj/machinery/space_heater,/obj/effect/landmark{name = "blobstart"},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cMm" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cMn" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/sign/poster{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cMo" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9;pixel_y = 0},/obj/structure/extinguisher_cabinet{pixel_x = 0;pixel_y = -30},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cMp" = (/obj/structure/chair,/obj/item/weapon/cigbutt,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cMq" = (/obj/machinery/power/terminal{icon_state = "term";dir = 1},/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/camera{c_tag = "Aft Starboard Solar Maintenance";dir = 4;network = list("SS13")},/turf/open/floor/plating,/area/maintenance/starboardsolar)
-"cMr" = (/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/starboardsolar)
-"cMs" = (/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/starboardsolar)
-"cMt" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/turf/open/floor/plating/airless,/area/space)
-"cMu" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating/airless,/area/space)
-"cMv" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating/airless,/area/medical/virology)
-"cMw" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/turf/open/floor/plating,/area/medical/virology)
-"cMx" = (/obj/machinery/atmospherics/components/unary/tank/air{dir = 1},/turf/open/floor/plasteel/vault,/area/medical/virology)
-"cMy" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1;name = "virology air connector port"},/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plasteel/vault,/area/medical/virology)
-"cMz" = (/obj/item/trash/popcorn,/obj/structure/table/glass,/turf/open/floor/plasteel/vault,/area/medical/virology)
-"cMA" = (/obj/item/weapon/reagent_containers/food/snacks/sosjerky,/obj/structure/table/glass,/turf/open/floor/plasteel/vault,/area/medical/virology)
-"cMB" = (/obj/item/trash/cheesie{pixel_y = 4},/obj/structure/table/glass,/turf/open/floor/plasteel/vault,/area/medical/virology)
-"cMC" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/machinery/button/crematorium{pixel_x = -25},/turf/open/floor/plasteel/black,/area/chapel/office)
-"cMD" = (/obj/machinery/light/small{dir = 4},/obj/effect/landmark/start{name = "Chaplain"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel/black,/area/chapel/office)
-"cME" = (/obj/item/device/flashlight/lamp,/obj/machinery/newscaster{pixel_x = -30},/obj/structure/table/wood,/turf/open/floor/plasteel/grimy,/area/chapel/office)
-"cMF" = (/obj/structure/chair,/obj/effect/landmark/start{name = "Chaplain"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/grimy,/area/chapel/office)
-"cMG" = (/obj/item/weapon/paper_bin{pixel_x = -2;pixel_y = 8},/obj/item/weapon/pen,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/table/wood,/turf/open/floor/plasteel/grimy,/area/chapel/office)
-"cMH" = (/obj/machinery/light/small{dir = 4},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = 30;pixel_y = 0},/turf/open/floor/plasteel/grimy,/area/chapel/office)
-"cMI" = (/turf/closed/wall,/area/chapel/main)
-"cMJ" = (/obj/item/candle,/obj/machinery/light_switch{pixel_x = -27},/obj/effect/decal/cleanable/cobweb,/obj/structure/table/wood,/turf/open/floor/plasteel/vault,/area/chapel/main)
-"cMK" = (/obj/item/weapon/storage/book/bible,/obj/machinery/light/small{dir = 1},/obj/machinery/newscaster{pixel_x = 0;pixel_y = 32},/obj/machinery/camera{c_tag = "Chapel - Fore";dir = 2;network = list("SS13")},/obj/structure/table/wood,/turf/open/floor/plasteel/vault,/area/chapel/main)
-"cML" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/snacks/grown/poppy{pixel_y = 2},/obj/item/weapon/reagent_containers/food/snacks/grown/poppy{pixel_y = 2},/obj/item/weapon/reagent_containers/food/snacks/grown/poppy{pixel_y = 2},/obj/item/weapon/reagent_containers/food/snacks/grown/poppy{pixel_y = 2},/obj/item/weapon/reagent_containers/food/snacks/grown/poppy{pixel_y = 2},/turf/open/floor/plasteel/vault,/area/chapel/main)
-"cMM" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/vault,/area/chapel/main)
-"cMN" = (/obj/structure/table/wood,/obj/item/weapon/reagent_containers/food/snacks/grown/harebell,/obj/item/weapon/reagent_containers/food/snacks/grown/harebell,/obj/item/weapon/reagent_containers/food/snacks/grown/harebell,/obj/item/weapon/reagent_containers/food/snacks/grown/harebell,/obj/item/weapon/reagent_containers/food/snacks/grown/harebell,/turf/open/floor/plasteel/vault,/area/chapel/main)
-"cMO" = (/obj/item/weapon/paper_bin{pixel_x = -2;pixel_y = 8},/obj/machinery/light/small{dir = 1},/obj/structure/table/wood,/obj/structure/noticeboard{pixel_y = 29},/turf/open/floor/plasteel/vault,/area/chapel/main)
-"cMP" = (/obj/item/candle,/obj/machinery/light_switch{pixel_x = 0;pixel_y = 25},/obj/effect/decal/cleanable/cobweb/cobweb2,/obj/structure/table/wood,/turf/open/floor/plasteel/vault,/area/chapel/main)
-"cMQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/noticeboard{pixel_y = 32},/turf/open/floor/plasteel/neutral/side{dir = 1},/area/hallway/primary/central)
-"cMR" = (/obj/structure/table,/obj/item/candle,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cMS" = (/obj/structure/chair{dir = 4},/obj/effect/landmark/start{name = "Assistant"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cMT" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cMU" = (/obj/machinery/status_display{density = 0;layer = 4;pixel_x = 0;pixel_y = 0},/turf/closed/wall,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cMV" = (/obj/structure/chair{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cMW" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cMX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cMY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cMZ" = (/obj/structure/table/reinforced,/obj/machinery/door/window/westleft{base_state = "right";dir = 8;icon_state = "right";name = "Outer Window";req_access_txt = "0"},/obj/machinery/door/window/brigdoor{dir = 4;name = "Security Desk";req_access_txt = "1"},/obj/item/weapon/folder/red,/obj/item/weapon/pen,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cNa" = (/obj/structure/chair/office/dark{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/computer/security/telescreen{desc = "Used for watching output from station security cameras.";name = "Security Camera Monitor";network = list("SS13");pixel_x = 0;pixel_y = 30},/turf/open/floor/plasteel/red/side{dir = 9},/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cNb" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/obj/structure/reagent_dispensers/peppertank{pixel_x = 0;pixel_y = 28},/turf/open/floor/plasteel/red/side{dir = 1},/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cNc" = (/obj/structure/chair,/obj/structure/sign/map/left{desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";icon_state = "map-left-MS";pixel_y = 32},/turf/open/floor/plasteel/red/side{dir = 1},/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cNd" = (/obj/structure/table,/obj/machinery/recharger{pixel_y = 4},/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/obj/structure/sign/map/right{desc = "A framed picture of the station. Clockwise from security in red at the top, you see engineering in yellow, science in purple, escape in checkered red-and-white, medbay in green, arrivals in checkered red-and-blue, and then cargo in brown.";icon_state = "map-right-MS";pixel_y = 32},/turf/open/floor/plasteel/red/side{dir = 5},/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cNe" = (/obj/machinery/door/airlock/external{name = "Auxiliary Escape Airlock"},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cNf" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9;pixel_y = 0},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cNg" = (/obj/structure/rack{dir = 8;layer = 2.9},/obj/item/device/flashlight,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/light/small,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cNh" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel/whiteblue/corner{dir = 8},/area/medical/medbay3{name = "Medbay Aft"})
-"cNi" = (/obj/machinery/biogenerator,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cNj" = (/obj/item/weapon/reagent_containers/food/snacks/grown/banana,/obj/item/weapon/reagent_containers/food/snacks/grown/banana,/obj/item/weapon/reagent_containers/food/snacks/grown/wheat,/obj/item/weapon/reagent_containers/food/snacks/grown/watermelon,/obj/item/weapon/reagent_containers/food/snacks/grown/watermelon,/obj/item/weapon/reagent_containers/food/snacks/grown/watermelon,/obj/item/weapon/reagent_containers/food/snacks/grown/citrus/orange,/obj/item/weapon/reagent_containers/food/snacks/grown/grapes,/obj/item/weapon/reagent_containers/food/snacks/grown/cocoapod,/obj/structure/rack{layer = 2.8},/obj/item/seeds/wheat,/obj/item/seeds/watermelon,/obj/item/seeds/watermelon,/obj/item/seeds/grape,/obj/item/seeds/glowshroom,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cNk" = (/obj/item/weapon/storage/bag/plants/portaseeder,/obj/item/weapon/storage/bag/plants/portaseeder,/obj/item/device/plant_analyzer,/obj/item/weapon/cultivator,/obj/item/weapon/reagent_containers/glass/bucket,/obj/structure/rack{layer = 2.8},/obj/item/seeds/corn,/obj/item/seeds/cabbage,/obj/item/seeds/ambrosia,/obj/item/seeds/grass,/obj/item/weapon/reagent_containers/food/snacks/grown/mushroom/glowshroom,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cNl" = (/obj/machinery/hydroponics/soil{pixel_y = 8},/obj/item/seeds/carrot,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cNm" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cNn" = (/obj/machinery/hydroponics/soil{pixel_y = 8},/obj/item/device/plant_analyzer,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cNo" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/turf/open/floor/plating,/area/maintenance/starboardsolar)
-"cNp" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/structure/chair/stool,/turf/open/floor/plating,/area/maintenance/starboardsolar)
-"cNq" = (/obj/machinery/power/solar_control{id = "aftstarboard";name = "Aft Starboard Solar Control";track = 0},/obj/structure/cable,/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;name = "EXTERNAL AIRLOCK";pixel_x = 0;pixel_y = -32},/turf/open/floor/plating,/area/maintenance/starboardsolar)
-"cNr" = (/obj/structure/disposaloutlet,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plating/airless,/area/space)
-"cNs" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1},/turf/open/floor/plating/airless,/area/medical/virology)
-"cNt" = (/obj/structure/bodycontainer/morgue,/turf/open/floor/plasteel/black,/area/chapel/office)
-"cNu" = (/obj/machinery/camera{c_tag = "Chapel Office - Backroom";dir = 8;network = list("SS13")},/obj/item/device/radio/intercom{dir = 4;name = "Station Intercom (General)";pixel_x = 27},/turf/open/floor/plasteel/black,/area/chapel/office)
-"cNv" = (/obj/item/weapon/storage/crayons,/obj/machinery/light/small{dir = 8},/obj/structure/table/wood,/turf/open/floor/plasteel/grimy,/area/chapel/office)
-"cNw" = (/obj/structure/cable,/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/power/compressor{comp_id = "incineratorturbine";dir = 1;luminosity = 2},/turf/open/floor/engine/vacuum,/area/maintenance/incinerator)
-"cNx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/item/weapon/storage/fancy/candle_box{pixel_x = 0;pixel_y = 5},/obj/structure/table/wood,/turf/open/floor/plasteel/grimy,/area/chapel/office)
-"cNy" = (/turf/open/floor/plasteel/grimy,/area/chapel/office)
-"cNz" = (/obj/item/device/radio/intercom{broadcasting = 1;frequency = 1480;name = "Confessional Intercom";pixel_x = -25},/obj/structure/chair,/turf/open/floor/plasteel/black,/area/chapel/office)
-"cNA" = (/obj/machinery/door/morgue{name = "Confession Booth"},/turf/open/floor/plasteel/black,/area/chapel/main)
-"cNB" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/carpet,/area/chapel/main)
-"cNC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/chapel/main)
-"cND" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/carpet,/area/chapel/main)
-"cNE" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/turf/open/floor/carpet,/area/chapel/main)
-"cNF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/carpet,/area/chapel/main)
-"cNG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/carpet,/area/chapel/main)
-"cNH" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/centcom{name = "Chapel";opacity = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/black,/area/chapel/main)
-"cNI" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cNJ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cNK" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cNL" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cNM" = (/obj/effect/landmark{name = "lightsout"},/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cNN" = (/obj/structure/flora/ausbushes/fernybush,/obj/structure/flora/ausbushes/fullgrass,/obj/structure/flora/ausbushes/ppflowers,/obj/structure/flora/ausbushes/palebush,/obj/structure/window/reinforced/fulltile,/turf/open/floor/grass,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cNO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cNP" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/turf/open/floor/plating,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cNQ" = (/obj/machinery/computer/secure_data,/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel/red/side{dir = 8},/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cNR" = (/obj/structure/chair/office/dark{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cNS" = (/obj/structure/table,/obj/item/weapon/folder/red{pixel_x = 3},/obj/item/weapon/folder/white{pixel_x = -4;pixel_y = 2},/obj/item/weapon/restraints/handcuffs,/obj/machinery/light{icon_state = "tube1";dir = 4},/obj/item/device/radio/off,/obj/machinery/requests_console{department = "Security";departmentType = 5;pixel_x = 30;pixel_y = 0},/turf/open/floor/plasteel/red/side{dir = 4},/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cNT" = (/obj/structure/sign/vacuum{pixel_x = 32},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cNU" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{req_access_txt = 1},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cNV" = (/obj/structure/chair/stool,/obj/structure/sign/poster{pixel_y = -32},/turf/open/floor/plasteel/cafeteria{dir = 5},/area/medical/medbay3{name = "Medbay Aft"})
-"cNW" = (/obj/structure/sink/kitchen{desc = "A sink used for washing one's hands and face. It looks rusty and home-made";name = "old sink";pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/aft{name = "Aft Maintenance"})
-"cNX" = (/obj/item/seeds/watermelon,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cNY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cNZ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9;pixel_y = 0},/obj/structure/chair,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cOa" = (/obj/structure/cable,/obj/machinery/power/turbine{luminosity = 2},/turf/open/floor/engine/vacuum,/area/maintenance/incinerator)
-"cOb" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;external_pressure_bound = 101.325;on = 1;pressure_checks = 1},/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/turf/open/floor/plasteel/black,/area/chapel/office)
-"cOc" = (/obj/machinery/door/airlock/centcom{layer = 2.7;name = "Crematorium";opacity = 1;req_access_txt = "27"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/black,/area/chapel/office)
-"cOd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/chapel/office)
-"cOe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/grimy,/area/chapel/office)
-"cOf" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/grimy,/area/chapel/office)
-"cOg" = (/obj/machinery/light_switch{pixel_x = 28;pixel_y = 0},/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/machinery/camera{c_tag = "Chapel Office";dir = 8;network = list("SS13")},/turf/open/floor/plasteel/grimy,/area/chapel/office)
-"cOh" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted/fulltile,/turf/open/floor/plasteel/black,/area/chapel/office)
-"cOi" = (/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/obj/machinery/power/apc{dir = 8;name = "Chapel APC";pixel_x = -25},/turf/open/floor/carpet,/area/chapel/main)
-"cOj" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/carpet,/area/chapel/main)
-"cOk" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8;initialize_directions = 11},/obj/effect/landmark/xmastree,/turf/open/floor/carpet,/area/chapel/main)
-"cOl" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/chapel/main)
-"cOm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/carpet,/area/chapel/main)
-"cOn" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/centcom{name = "Chapel";opacity = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/black,/area/chapel/main)
-"cOo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cOp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cOq" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cOr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cOs" = (/obj/machinery/ai_status_display{pixel_x = 0;pixel_y = 0},/turf/closed/wall,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cOt" = (/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8;initialize_directions = 11},/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cOu" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cOv" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/glass_security{name = "Departure Lounge Security Post";req_access_txt = "63"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/red,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cOw" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 8;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/firealarm{dir = 1;pixel_y = -24},/turf/open/floor/plasteel/red/side{dir = 10},/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cOx" = (/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plasteel/red/side,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cOy" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -3;pixel_y = 7},/obj/item/weapon/pen,/turf/open/floor/plasteel/red/side,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cOz" = (/obj/structure/table,/obj/machinery/newscaster/security_unit{pixel_x = 29;pixel_y = 1},/obj/machinery/camera{c_tag = "Departure Lounge - Security Post";dir = 1;network = list("SS13")},/obj/item/weapon/book/manual/wiki/security_space_law{pixel_x = -4;pixel_y = 4},/obj/item/device/taperecorder{pixel_x = 4;pixel_y = 0},/obj/item/device/radio/intercom{broadcasting = 0;listening = 1;name = "Station Intercom (General)";pixel_y = -32},/turf/open/floor/plasteel/red/side{dir = 6},/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cOA" = (/obj/structure/rack,/obj/item/clothing/mask/gas,/obj/item/clothing/glasses/sunglasses,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cOB" = (/obj/item/seeds/sunflower/moonflower,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cOC" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/obj/effect/landmark{name = "xeno_spawn";pixel_x = -1},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cOD" = (/obj/item/seeds/berry,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cOE" = (/obj/structure/reagent_dispensers/watertank,/obj/item/weapon/reagent_containers/glass/bucket,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cOF" = (/obj/machinery/airalarm{dir = 1;pixel_y = -22},/turf/open/floor/plasteel/black,/area/chapel/office)
-"cOG" = (/obj/structure/closet/wardrobe/chaplain_black,/obj/machinery/airalarm{dir = 4;pixel_x = -23;pixel_y = 0},/turf/open/floor/plasteel/grimy,/area/chapel/office)
-"cOH" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel/grimy,/area/chapel/office)
-"cOI" = (/obj/machinery/power/apc{dir = 2;lighting = 3;name = "Chapel Office APC";pixel_x = 0;pixel_y = -25},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 4;on = 1},/obj/structure/cable/yellow,/turf/open/floor/plasteel/grimy,/area/chapel/office)
-"cOJ" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/chapel/office)
-"cOK" = (/obj/machinery/door/morgue{name = "Confession Booth (Chaplain)";req_access_txt = "22"},/turf/open/floor/plasteel/black,/area/chapel/office)
-"cOL" = (/obj/item/device/radio/intercom{broadcasting = 1;frequency = 1480;name = "Confessional Intercom";pixel_x = 25},/obj/structure/chair{dir = 1},/obj/effect/landmark/start{name = "Chaplain"},/turf/open/floor/plasteel/black,/area/chapel/office)
-"cOM" = (/turf/open/floor/plasteel/chapel{dir = 4},/area/chapel/main)
-"cON" = (/obj/structure/chair/stool,/turf/open/floor/plasteel/chapel{dir = 1},/area/chapel/main)
-"cOO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/chair/stool,/turf/open/floor/plasteel/chapel{dir = 4},/area/chapel/main)
-"cOP" = (/turf/open/floor/plasteel/black,/area/chapel/main)
-"cOQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/chair/stool,/turf/open/floor/plasteel/chapel{dir = 1},/area/chapel/main)
-"cOR" = (/obj/structure/chair/stool,/turf/open/floor/plasteel/chapel{dir = 4},/area/chapel/main)
-"cOS" = (/turf/open/floor/plasteel/chapel{dir = 1},/area/chapel/main)
-"cOT" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cOU" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2;initialize_directions = 11},/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cOV" = (/obj/structure/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cOW" = (/obj/structure/flora/ausbushes/fernybush,/obj/structure/flora/ausbushes/fullgrass,/obj/structure/flora/ausbushes/brflowers,/obj/structure/flora/ausbushes/sunnybush,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/window/reinforced/fulltile,/turf/open/floor/grass,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cOX" = (/obj/structure/chair{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cOY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cOZ" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4;initialize_directions = 11},/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cPa" = (/obj/structure/chair{dir = 8},/obj/structure/sign/electricshock{pixel_x = 32},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cPb" = (/turf/closed/wall,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cPc" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow,/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/turf/open/floor/plating,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cPd" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/turf/open/floor/plating,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cPe" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cPf" = (/obj/machinery/hydroponics/soil{pixel_y = 8},/obj/item/seeds/glowshroom,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cPg" = (/obj/machinery/hydroponics/soil{pixel_y = 8},/obj/item/weapon/cultivator,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cPh" = (/obj/machinery/hydroponics/soil{pixel_y = 8},/obj/item/seeds/ambrosia,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cPi" = (/obj/machinery/hydroponics/soil{pixel_y = 8},/obj/item/seeds/watermelon,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cPj" = (/obj/machinery/hydroponics/soil{pixel_y = 8},/obj/item/seeds/berry,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cPk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/chapel/office)
-"cPl" = (/obj/machinery/door/airlock/centcom{name = "Chapel Office";opacity = 1;req_access_txt = "27"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/black,/area/chapel/office)
-"cPm" = (/obj/machinery/airalarm{dir = 4;pixel_x = -23;pixel_y = 0},/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel/chapel,/area/chapel/main)
-"cPn" = (/obj/structure/chair/stool,/turf/open/floor/plasteel/chapel{dir = 8},/area/chapel/main)
-"cPo" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/chapel,/area/chapel/main)
-"cPp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/chair/stool,/turf/open/floor/plasteel/chapel{dir = 8},/area/chapel/main)
-"cPq" = (/obj/structure/chair/stool,/turf/open/floor/plasteel/chapel,/area/chapel/main)
-"cPr" = (/obj/machinery/light{dir = 4;icon_state = "tube1"},/turf/open/floor/plasteel/chapel{dir = 8},/area/chapel/main)
-"cPs" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cPt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cPu" = (/obj/structure/chair{dir = 8},/obj/effect/landmark/start{name = "Assistant"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cPv" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cPw" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/obj/structure/sign/poster{pixel_y = -32},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cPx" = (/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cPy" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/structure/sign/poster{pixel_y = 32},/turf/open/floor/plating{icon_state = "platingdmg2"},/area/maintenance/aft{name = "Aft Maintenance"})
-"cPz" = (/obj/structure/closet,/obj/item/device/flashlight,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3;name = "3maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cPA" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/shutters/preopen{id = "chapel_shutters_parlour";name = "chapel shutters"},/turf/open/floor/plating,/area/chapel/main)
-"cPB" = (/obj/structure/closet/coffin,/obj/machinery/light/small{dir = 1},/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plating,/area/chapel/main)
-"cPC" = (/obj/structure/closet/coffin,/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plating,/area/chapel/main)
-"cPD" = (/obj/structure/noticeboard{desc = "A memorial wall for pinning up momentos";name = "memorial board";pixel_y = 32},/obj/item/weapon/storage/fancy/candle_box,/obj/item/weapon/storage/fancy/candle_box{pixel_x = -2;pixel_y = 2},/obj/effect/decal/cleanable/cobweb,/obj/structure/table/wood,/turf/open/floor/carpet,/area/chapel/main)
-"cPE" = (/obj/structure/sign/atmosplaque{desc = "A plaque commemorating the fallen, may they rest in peace, forever asleep amongst the stars. Someone has drawn a picture of a crying badger at the bottom.";icon_state = "kiddieplaque";name = "Remembrance Plaque";pixel_x = 0;pixel_y = 32},/obj/item/weapon/reagent_containers/food/snacks/grown/poppy{pixel_y = 2},/obj/item/weapon/reagent_containers/food/snacks/grown/poppy{pixel_y = 2},/obj/item/weapon/reagent_containers/food/snacks/grown/poppy{pixel_y = 2},/obj/item/weapon/reagent_containers/food/snacks/grown/poppy{pixel_y = 2},/obj/item/weapon/reagent_containers/food/snacks/grown/poppy{pixel_y = 2},/obj/machinery/light/small{dir = 1},/obj/structure/table/wood,/turf/open/floor/carpet,/area/chapel/main)
-"cPF" = (/obj/structure/noticeboard{desc = "A memorial wall for pinning up momentos";name = "memorial board";pixel_y = 32},/obj/item/weapon/storage/book/bible,/obj/structure/table/wood,/turf/open/floor/carpet,/area/chapel/main)
-"cPG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/chapel/main)
-"cPH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/black,/area/chapel/main)
-"cPI" = (/obj/machinery/light/small{dir = 1},/obj/machinery/light_switch{pixel_y = 28},/obj/item/weapon/paper_bin{pixel_x = -2;pixel_y = 8},/obj/effect/decal/cleanable/cobweb/cobweb2,/obj/structure/table/wood,/turf/open/floor/plasteel/black,/area/chapel/main)
-"cPJ" = (/obj/structure/chair/comfy/black{dir = 4},/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plasteel/chapel{dir = 1},/area/chapel/main)
-"cPK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/chapel{dir = 4},/area/chapel/main)
-"cPL" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/chapel{dir = 1},/area/chapel/main)
-"cPM" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel/chapel{dir = 4},/area/chapel/main)
-"cPN" = (/obj/effect/decal/cleanable/cobweb/cobweb2,/obj/structure/chair/comfy/black{dir = 8},/turf/open/floor/plasteel/chapel{dir = 4},/area/chapel/main)
-"cPO" = (/obj/machinery/camera{c_tag = "Departure Lounge - Port Aft";dir = 4;network = list("SS13")},/obj/machinery/light{icon_state = "tube1";dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = -27;pixel_y = 0},/obj/item/weapon/twohanded/required/kirbyplants{icon_state = "plant-04";layer = 4.1},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cPP" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cPQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cPR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/corner{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cPS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/item/device/radio/beacon,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cPT" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cPU" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cPV" = (/obj/machinery/camera{c_tag = "Departure Lounge - Starboard Aft";dir = 8;network = list("SS13")},/obj/machinery/light{dir = 4},/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 29},/obj/item/weapon/twohanded/required/kirbyplants{icon_state = "plant-16";layer = 4.1},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cPW" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/grille,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/aft{name = "Aft Maintenance"})
-"cPX" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Xenobiology Lab";req_access_txt = "47"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/whitepurple{dir = 4},/area/medical/research{name = "Research Division"})
-"cPY" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cPZ" = (/obj/structure/closet/coffin,/turf/open/floor/plating,/area/chapel/main)
-"cQa" = (/obj/machinery/newscaster{pixel_x = 0;pixel_y = 32},/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plasteel/black,/area/chapel/main)
-"cQb" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/black,/area/chapel/main)
-"cQc" = (/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 0;pixel_y = 21},/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/black,/area/chapel/main)
-"cQd" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/turf/open/floor/plasteel/black,/area/chapel/main)
-"cQe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel/black,/area/chapel/main)
-"cQf" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/centcom{name = "Funeral Parlour";opacity = 1},/turf/open/floor/plasteel/black,/area/chapel/main)
-"cQg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/chapel{dir = 8},/area/chapel/main)
-"cQh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/chapel,/area/chapel/main)
-"cQi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/chapel,/area/chapel/main)
-"cQj" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/turf/open/floor/plasteel/chapel{dir = 8},/area/chapel/main)
-"cQk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel/chapel{dir = 8},/area/chapel/main)
-"cQl" = (/turf/open/floor/plasteel/chapel,/area/chapel/main)
-"cQm" = (/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cQn" = (/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cQo" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=9.4-Escape-4";location = "9.3-Escape-3"},/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cQp" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=9.3-Escape-3";location = "9.2-Escape-2"},/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cQq" = (/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cQr" = (/obj/machinery/light/small{dir = 1},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/camera{c_tag = "Research Division Hallway - Xenobiology Lab Access";dir = 2;network = list("SS13","RD")},/turf/open/floor/plasteel/whitepurple/side{dir = 1},/area/toxins/xenobiology)
-"cQs" = (/obj/machinery/light/small{dir = 1},/obj/machinery/firealarm{dir = 2;pixel_y = 24},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/whitepurple/side{dir = 1},/area/toxins/xenobiology)
-"cQt" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 2},/obj/effect/landmark{name = "blobstart"},/turf/open/floor/plasteel/whitepurple/side{dir = 1},/area/toxins/xenobiology)
-"cQu" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/sign/poster{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cQv" = (/obj/machinery/camera{c_tag = "Toxins - Launch Area";dir = 2;network = list("SS13","RD")},/obj/machinery/suit_storage_unit/rd,/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cQw" = (/obj/machinery/door/window/eastleft{dir = 4;name = "Coffin Storage";req_access_txt = "22"},/turf/open/floor/plating,/area/chapel/main)
-"cQx" = (/obj/structure/chair{pixel_y = -2},/turf/open/floor/plasteel/vault,/area/chapel/main)
-"cQy" = (/obj/structure/chair{pixel_y = -2},/obj/effect/landmark/start{name = "Chaplain"},/turf/open/floor/plasteel/vault,/area/chapel/main)
-"cQz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel/black,/area/chapel/main)
-"cQA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/black,/area/chapel/main)
-"cQB" = (/obj/machinery/doppler_array{dir = 4},/obj/item/device/radio/intercom{broadcasting = 0;listening = 1;name = "Station Intercom (General)";pixel_y = 22},/obj/effect/turf_decal/bot{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cQC" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/obj/machinery/light/small{dir = 8},/obj/machinery/light_switch{pixel_x = -23;pixel_y = 0},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/toxins/mixing{name = "\improper Toxins Lab"})
-"cQD" = (/obj/structure/table,/obj/item/stack/sheet/glass{amount = 20;pixel_x = 3;pixel_y = -4},/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/metal{amount = 50},/obj/structure/extinguisher_cabinet{pixel_x = 27;pixel_y = 0},/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/assembly/robotics)
-"cQE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel/chapel{dir = 4},/area/chapel/main)
-"cQF" = (/obj/structure/table/wood,/turf/open/floor/plasteel/black,/area/chapel/main)
-"cQG" = (/obj/item/weapon/storage/book/bible,/obj/structure/table/wood,/turf/open/floor/plasteel/black,/area/chapel/main)
-"cQH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/chapel{dir = 1},/area/chapel/main)
-"cQI" = (/obj/structure/chair/comfy/black{dir = 8},/obj/machinery/camera{c_tag = "Chapel - Starboard";dir = 8;network = list("SS13")},/turf/open/floor/plasteel/chapel{dir = 4},/area/chapel/main)
-"cQJ" = (/obj/structure/sign/vacuum{pixel_x = -32},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cQK" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cQL" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cQM" = (/obj/machinery/holopad,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cQN" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cQO" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cQP" = (/obj/structure/sign/vacuum{pixel_x = 32},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cQQ" = (/obj/machinery/light{icon_state = "tube1";dir = 8},/obj/machinery/camera{c_tag = "Departure Lounge - Port Fore";dir = 4;network = list("SS13")},/obj/item/weapon/twohanded/required/kirbyplants{icon_state = "plant-24";layer = 4.1},/obj/structure/sign/poster{pixel_x = -32;pixel_y = 0},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cQR" = (/obj/machinery/door/poddoor/preopen{id = "xeno_blastdoor";name = "biohazard containment door"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/toxins/xenobiology)
-"cQS" = (/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 29},/obj/machinery/door/poddoor/preopen{id = "xeno_blastdoor";name = "biohazard containment door"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/toxins/xenobiology)
-"cQT" = (/obj/structure/closet/coffin,/obj/machinery/light/small,/turf/open/floor/plating,/area/chapel/main)
-"cQU" = (/obj/machinery/light/small{dir = 4},/obj/machinery/airalarm{dir = 8;icon_state = "alarm0";pixel_x = 24},/obj/machinery/camera{c_tag = "Chapel - Funeral Parlour";dir = 8;network = list("SS13")},/turf/open/floor/plasteel/black,/area/chapel/main)
-"cQV" = (/obj/item/device/flashlight/lantern{pixel_y = 7},/obj/structure/table/wood,/turf/open/floor/plasteel/black,/area/chapel/main)
-"cQW" = (/obj/effect/landmark/start{name = "Chaplain"},/turf/open/floor/plasteel/black,/area/chapel/main)
-"cQX" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/turf/open/floor/plasteel/chapel{dir = 8},/area/chapel/main)
-"cQY" = (/obj/machinery/door/airlock/external{name = "Departure Lounge Airlock"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cQZ" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/poddoor/preopen{id = "xeno_blastdoor";name = "biohazard containment door"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/toxins/xenobiology)
-"cRa" = (/obj/structure/sign/biohazard,/turf/closed/wall,/area/toxins/xenobiology)
-"cRb" = (/obj/structure/sign/securearea,/turf/closed/wall,/area/toxins/xenobiology)
-"cRc" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Xenobiology Lab";req_access_txt = "47"},/turf/open/floor/plasteel/whitepurple{dir = 4},/area/toxins/xenobiology)
-"cRd" = (/obj/machinery/hydroponics/soil{pixel_y = 8},/obj/item/seeds/glowshroom,/obj/item/seeds/corn,/obj/structure/sign/poster{pixel_y = 32},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"cRe" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/toxins/xenobiology)
-"cRf" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/whitepurple/side{dir = 1},/area/toxins/xenobiology)
-"cRg" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"cRh" = (/obj/structure/sink{dir = 8;icon_state = "sink";pixel_x = -12;pixel_y = 2},/obj/machinery/light_switch{pixel_x = -23;pixel_y = 0},/turf/open/floor/plasteel/whitepurple/side{dir = 9},/area/toxins/xenobiology)
-"cRi" = (/turf/closed/wall/r_wall,/area/toxins/xenobiology)
-"cRj" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel/black,/area/chapel/main)
-"cRk" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"cRl" = (/obj/machinery/door/window{dir = 4;name = "Mass Driver";req_access_txt = "22"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/black,/area/chapel/main)
-"cRm" = (/obj/machinery/mass_driver{dir = 2;id = "chapelgun"},/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;name = "EXTERNAL AIRLOCK";pixel_x = 0;pixel_y = 32},/obj/machinery/light/small{dir = 1},/obj/item/device/gps,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/black,/area/chapel/main)
-"cRn" = (/obj/machinery/camera{c_tag = "Chapel - Port";dir = 4;network = list("SS13")},/obj/structure/chair/comfy/black{dir = 4},/turf/open/floor/plasteel/chapel{dir = 8},/area/chapel/main)
-"cRo" = (/obj/machinery/light/small,/turf/open/floor/plasteel/chapel{dir = 4},/area/chapel/main)
-"cRp" = (/turf/open/floor/plasteel/vault,/area/chapel/main)
-"cRq" = (/obj/machinery/holopad,/turf/open/floor/plasteel/vault,/area/chapel/main)
-"cRr" = (/obj/machinery/light/small,/obj/machinery/button/door{id = "chapel_shutters_space";name = "chapel shutters control";pixel_x = -6;pixel_y = -25;req_access_txt = "0"},/obj/machinery/light_switch{pixel_x = 6;pixel_y = -25},/turf/open/floor/plasteel/chapel{dir = 1},/area/chapel/main)
-"cRs" = (/obj/machinery/light/small{dir = 8},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cRt" = (/obj/machinery/light/small{dir = 4},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/secondary/exit{name = "\improper Departure Lounge"})
-"cRu" = (/obj/structure/sign/biohazard,/turf/closed/wall/r_wall,/area/toxins/xenobiology)
-"cRv" = (/obj/machinery/doorButtons/access_button{idDoor = "xeno_airlock_exterior";idSelf = "xeno_airlock_control";name = "Access Button";pixel_x = -24;pixel_y = 0;req_access_txt = "0"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{autoclose = 0;frequency = 1449;icon_state = "door_locked";id_tag = "xeno_airlock_exterior";locked = 1;name = "Xenobiology Lab External Airlock";req_access_txt = "55"},/turf/open/floor/plasteel/whitepurple{dir = 4},/area/toxins/xenobiology)
-"cRw" = (/obj/structure/sign/securearea,/turf/closed/wall/r_wall,/area/toxins/xenobiology)
-"cRx" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/closed/wall/r_wall,/area/toxins/xenobiology)
-"cRy" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"cRz" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/turf/open/floor/plasteel/whitepurple/side{dir = 8},/area/toxins/xenobiology)
-"cRA" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_Toxins = 0},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"cRB" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light{icon_state = "tube1";dir = 8},/turf/open/floor/plasteel/whitepurple/side{dir = 8},/area/toxins/xenobiology)
-"cRC" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8;initialize_directions = 11},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"cRD" = (/obj/machinery/atmospherics/components/unary/tank/air{dir = 4},/turf/open/floor/plating,/area/toxins/xenobiology)
-"cRE" = (/obj/machinery/hydroponics/soil{pixel_y = 8},/obj/item/weapon/reagent_containers/food/snacks/grown/harebell,/obj/item/weapon/reagent_containers/food/snacks/grown/harebell,/obj/item/weapon/reagent_containers/food/snacks/grown/harebell,/obj/item/weapon/reagent_containers/food/snacks/grown/harebell,/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/cult{dir = 2},/area/chapel/main)
-"cRF" = (/obj/machinery/door/morgue{name = "Chapel Garden";req_access_txt = "0"},/turf/open/floor/plasteel/cult{dir = 2},/area/chapel/main)
-"cRG" = (/obj/machinery/light/small,/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/obj/machinery/button/door{id = "chapel_shutters_parlour";name = "chapel shutters control";pixel_x = 0;pixel_y = -25;req_access_txt = "0"},/turf/open/floor/plasteel/vault,/area/chapel/main)
-"cRH" = (/obj/structure/chair,/turf/open/floor/plasteel/vault,/area/chapel/main)
-"cRI" = (/obj/structure/chair,/obj/effect/landmark/start{name = "Chaplain"},/turf/open/floor/plasteel/vault,/area/chapel/main)
-"cRJ" = (/obj/structure/window/reinforced{dir = 4},/obj/item/weapon/reagent_containers/food/snacks/grown/harebell,/obj/item/weapon/reagent_containers/food/snacks/grown/harebell,/obj/item/weapon/reagent_containers/food/snacks/grown/harebell,/obj/item/weapon/reagent_containers/food/snacks/grown/harebell,/obj/item/weapon/reagent_containers/food/snacks/grown/harebell,/obj/machinery/button/massdriver{id = "chapelgun";name = "Chapel Mass Driver";pixel_x = -4;pixel_y = -26},/obj/structure/table/wood,/turf/open/floor/plasteel/vault,/area/chapel/main)
-"cRK" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel/black,/area/chapel/main)
-"cRL" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/machinery/door/poddoor/shutters/preopen{id = "chapel_shutters_space";name = "chapel shutters"},/turf/open/floor/plating,/area/chapel/main)
-"cRM" = (/obj/machinery/processor{desc = "A machine used to process slimes and retrieve their extract.";name = "Slime Processor"},/obj/effect/turf_decal/stripes/corner{dir = 2},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"cRN" = (/obj/machinery/monkey_recycler,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/whitepurple/side{dir = 8},/area/toxins/xenobiology)
-"cRO" = (/obj/structure/lattice/catwalk,/turf/open/space,/area/solar/starboard)
-"cRP" = (/obj/machinery/door/poddoor{id = "chapelgun";name = "Chapel Launcher Door"},/turf/open/floor/plating,/area/chapel/main)
-"cRQ" = (/obj/machinery/computer/shuttle/syndicate,/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"cRR" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/toxins/xenobiology)
-"cRS" = (/turf/open/floor/plasteel/whitepurple/side{dir = 1},/area/toxins/xenobiology)
-"cRT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/light_switch{pixel_x = 25;pixel_y = 0},/turf/open/floor/plasteel/black,/area/chapel/office)
-"cRU" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/obj/machinery/door/poddoor/preopen{id = "xenobio3";name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/toxins/xenobiology)
-"cRV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"cRW" = (/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/obj/machinery/door/poddoor/preopen{id = "xenobio8";name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/toxins/xenobiology)
-"cRX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"cRY" = (/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "Xenolab";name = "test chamber blast door"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/toxins/xenobiology)
-"cRZ" = (/obj/structure/cable/yellow,/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "xenobio3";name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/toxins/xenobiology)
-"cSa" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"cSb" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/corner{dir = 2},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"cSc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/obj/structure/cable/yellow,/obj/machinery/door/poddoor/preopen{id = "xenobio8";name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/toxins/xenobiology)
-"cSd" = (/turf/closed/wall,/area/toxins/xenobiology)
-"cSe" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/firedoor,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/toxins/xenobiology)
-"cSf" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel{name = "floor"},/area/toxins/xenobiology)
-"cSg" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/engine,/area/toxins/xenobiology)
-"cSh" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/structure/disposaloutlet,/turf/open/floor/engine,/area/toxins/xenobiology)
-"cSi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"cSj" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/window/reinforced,/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/toxins/xenobiology)
-"cSk" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"cSl" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"cSm" = (/obj/structure/window/reinforced,/obj/structure/table/reinforced,/obj/machinery/button/door{id = "xenobio8";name = "Containment Blast Doors";pixel_x = 0;pixel_y = 4;req_access_txt = "55"},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/toxins/xenobiology)
-"cSn" = (/turf/open/floor/engine,/area/toxins/xenobiology)
-"cSo" = (/obj/effect/landmark{name = "revenantspawn"},/turf/open/floor/engine,/area/toxins/xenobiology)
-"cSp" = (/obj/machinery/light/small{dir = 8},/obj/machinery/camera{c_tag = "Xenobiology Lab - Pen #1";dir = 4;network = list("SS13","RD","Xeno")},/turf/open/floor/engine,/area/toxins/xenobiology)
-"cSq" = (/obj/machinery/door/window/northleft{base_state = "right";dir = 8;icon_state = "right";name = "Containment Pen #1";req_access_txt = "55"},/obj/machinery/door/poddoor/preopen{id = "xenobio3";name = "containment blast door"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/engine,/area/toxins/xenobiology)
-"cSr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"cSs" = (/obj/machinery/door/window/northleft{dir = 4;name = "Containment Pen #1";req_access_txt = "55"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/toxins/xenobiology)
-"cSt" = (/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"cSu" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"cSv" = (/obj/machinery/door/window/northleft{dir = 4;name = "Containment Pen #2";req_access_txt = "55"},/obj/machinery/door/poddoor/preopen{id = "xenobio8";name = "containment blast door"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/engine,/area/toxins/xenobiology)
-"cSw" = (/obj/machinery/door/window/northleft{base_state = "right";dir = 8;icon_state = "right";name = "Containment Pen #2";req_access_txt = "55"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/toxins/xenobiology)
-"cSx" = (/obj/machinery/light/small{dir = 4},/obj/machinery/camera{c_tag = "Xenobiology Lab - Pen #2";dir = 8;network = list("SS13","RD","Xeno")},/turf/open/floor/engine,/area/toxins/xenobiology)
-"cSy" = (/mob/living/simple_animal/slime,/turf/open/floor/engine,/area/toxins/xenobiology)
-"cSz" = (/obj/structure/lattice/catwalk,/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/open/space,/area/solar/starboard)
-"cSA" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"cSB" = (/obj/structure/table/reinforced,/obj/machinery/button/door{id = "xenobio3";name = "Containment Blast Doors";pixel_x = 0;pixel_y = 4;req_access_txt = "55"},/obj/structure/window/reinforced{dir = 1},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/toxins/xenobiology)
-"cSC" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-2";d2 = 2},/turf/open/space,/area/solar/starboard)
-"cSD" = (/obj/structure/cable/yellow,/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "xenobio2";name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/toxins/xenobiology)
-"cSE" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/toxins/xenobiology)
-"cSF" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/disposaloutlet{dir = 1},/turf/open/floor/engine,/area/toxins/xenobiology)
-"cSG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/light{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"cSH" = (/obj/structure/chair/stool{pixel_y = 8},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"cSI" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'";icon_state = "shock";name = "HIGH VOLTAGE"},/turf/closed/wall,/area/toxins/xenobiology)
-"cSJ" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"cSK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"cSL" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4},/obj/machinery/airalarm{frequency = 1439;pixel_y = 23},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"cSM" = (/obj/structure/window/reinforced,/obj/structure/table/reinforced,/obj/machinery/button/door{id = "xenobio7";name = "Containment Blast Doors";pixel_x = 0;pixel_y = 4;req_access_txt = "55"},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/toxins/xenobiology)
-"cSN" = (/obj/machinery/door/window/northleft{base_state = "right";dir = 8;icon_state = "right";name = "Containment Pen #3";req_access_txt = "55"},/obj/machinery/door/poddoor/preopen{id = "xenobio2";name = "containment blast door"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/engine,/area/toxins/xenobiology)
-"cSO" = (/obj/machinery/door/window/northleft{dir = 4;name = "Containment Pen #3";req_access_txt = "55"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/toxins/xenobiology)
-"cSP" = (/obj/docking_port/stationary/random{id = "pod_asteroid1";name = "asteroid"},/turf/open/space,/area/space)
-"cSQ" = (/obj/machinery/door/window/northleft{dir = 4;name = "Containment Pen #4";req_access_txt = "55"},/obj/machinery/door/poddoor/preopen{id = "xenobio7";name = "containment blast door"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/engine,/area/toxins/xenobiology)
-"cSR" = (/obj/machinery/door/window/northleft{base_state = "right";dir = 8;icon_state = "right";name = "Containment Pen #4";req_access_txt = "55"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/toxins/xenobiology)
-"cSS" = (/obj/structure/table/reinforced,/obj/machinery/button/door{id = "xenobio2";name = "Containment Blast Doors";pixel_x = 0;pixel_y = 4;req_access_txt = "55"},/obj/structure/window/reinforced{dir = 1},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/toxins/xenobiology)
-"cST" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/structure/table/reinforced,/obj/machinery/button/door{id = "xenobio1";name = "Containment Blast Doors";pixel_x = 0;pixel_y = 4;req_access_txt = "55"},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/toxins/xenobiology)
-"cSU" = (/obj/structure/chair{dir = 1},/obj/machinery/status_display{density = 0;layer = 3;pixel_x = 32;pixel_y = 0},/obj/machinery/computer/shuttle/pod{pixel_x = -32;possible_destinations = "pod_asteroid1";shuttleId = "pod1"},/turf/open/floor/mineral/titanium/blue,/area/shuttle/pod_1)
-"cSV" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"cSW" = (/obj/structure/sink{icon_state = "sink";dir = 8;pixel_x = -12;pixel_y = 2},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"cSX" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"cSY" = (/obj/structure/disposalpipe/segment,/obj/structure/table/wood,/obj/item/weapon/folder{pixel_y = 2},/turf/open/floor/plasteel/grimy,/area/chapel/office)
-"cSZ" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8},/obj/machinery/firealarm{dir = 2;pixel_y = 26},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"cTa" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/effect/turf_decal/stripes/corner{dir = 8},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"cTb" = (/obj/machinery/door/window/northleft{dir = 4;name = "Containment Pen #5";req_access_txt = "55"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/toxins/xenobiology)
-"cTc" = (/obj/machinery/door/window/northleft{base_state = "right";dir = 8;icon_state = "right";name = "Containment Pen #5";req_access_txt = "55"},/obj/machinery/door/poddoor/preopen{id = "xenobio1";name = "containment blast door"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/engine,/area/toxins/xenobiology)
-"cTd" = (/obj/structure/chair{dir = 1},/obj/item/device/radio/intercom{pixel_x = 25},/obj/item/weapon/storage/pod{pixel_x = -26},/turf/open/floor/mineral/titanium/blue,/area/shuttle/pod_1)
-"cTe" = (/obj/machinery/door/window/northleft{base_state = "right";dir = 8;icon_state = "right";name = "Containment Pen #6";req_access_txt = "55"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/toxins/xenobiology)
-"cTf" = (/obj/structure/table,/obj/machinery/light/small{dir = 8},/obj/machinery/airalarm{dir = 4;icon_state = "alarm0";pixel_x = -22},/obj/item/weapon/storage/box/bodybags{pixel_x = 2;pixel_y = 2},/turf/open/floor/plasteel/black,/area/chapel/office)
-"cTg" = (/obj/machinery/door/window/northleft{dir = 4;name = "Containment Pen #6";req_access_txt = "55"},/obj/machinery/door/poddoor/preopen{id = "xenobio6";name = "containment blast door"},/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/engine,/area/toxins/xenobiology)
-"cTh" = (/obj/machinery/door/poddoor{id = "QMLoaddoor";name = "supply dock loading door"},/obj/machinery/conveyor{dir = 8;id = "QMLoad"},/turf/open/floor/plating,/area/shuttle/supply)
-"cTi" = (/obj/structure/chair{dir = 4},/obj/machinery/status_display{density = 0;layer = 3;pixel_x = 0;pixel_y = 32},/obj/machinery/computer/shuttle/pod{pixel_y = -32;possible_destinations = "pod_asteroid4";shuttleId = "pod4"},/turf/open/floor/mineral/titanium/blue,/area/shuttle/pod_4)
-"cTj" = (/obj/item/weapon/crowbar/red,/obj/item/weapon/wrench,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/toxins/xenobiology)
-"cTk" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/structure/window/reinforced{dir = 4},/obj/machinery/button/ignition{id = "Xenobio";pixel_x = -6;pixel_y = -3},/obj/machinery/button/door{id = "Xenolab";name = "Test Chamber Blast Doors";pixel_x = 4;pixel_y = -3;req_access_txt = "55"},/obj/structure/table/reinforced,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/toxins/xenobiology)
-"cTl" = (/obj/machinery/door/poddoor{id = "smindicate";name = "outer blast door"},/obj/machinery/button/door{id = "smindicate";name = "external door control";pixel_x = -26;pixel_y = 0;req_access_txt = "150"},/obj/docking_port/mobile{dheight = 9;dir = 2;dwidth = 5;height = 24;id = "syndicate";name = "syndicate infiltrator";port_angle = 0;roundstart_move = "syndicate_away";width = 18},/obj/docking_port/stationary{dheight = 9;dir = 2;dwidth = 5;height = 24;id = "syndicate_nw";name = "northwest of station";turf_type = /turf/open/space;width = 18},/turf/open/floor/plating,/area/shuttle/syndicate)
-"cTm" = (/obj/structure/cable/yellow,/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/machinery/door/poddoor/preopen{id = "Xenolab";name = "test chamber blast door"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/toxins/xenobiology)
-"cTn" = (/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/turf/open/floor/plating,/area/toxins/xenobiology)
-"cTo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/chapel/main)
-"cTp" = (/obj/structure/closet,/turf/open/floor/plating,/area/toxins/xenobiology)
-"cTq" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/hatch{icon_state = "door_closed";name = "Test Chamber Maintenance";req_access_txt = "47";req_one_access_txt = "0"},/turf/open/floor/plating,/area/toxins/xenobiology)
-"cTr" = (/obj/machinery/computer/security/telescreen{dir = 1;name = "Test Chamber Monitor";network = list("Xeno");pixel_x = 0;pixel_y = 2},/obj/structure/table/reinforced,/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel,/area/toxins/xenobiology)
-"cTs" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 2},/obj/structure/window/reinforced{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/toxins/xenobiology)
-"cTt" = (/obj/machinery/door/window/southleft{dir = 1;name = "Maximum Security Test Chamber";req_access_txt = "55"},/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel,/area/toxins/xenobiology)
-"cTu" = (/obj/structure/chair{dir = 4},/obj/item/device/radio/intercom{pixel_y = 25},/obj/item/weapon/storage/pod{pixel_x = 6;pixel_y = -32},/turf/open/floor/mineral/titanium/blue,/area/shuttle/pod_4)
-"cTv" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";icon_state = "space";layer = 4;name = "EXTERNAL AIRLOCK";pixel_x = 0},/turf/closed/wall/mineral/plastitanium,/area/shuttle/syndicate)
-"cTw" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/item/weapon/storage/box/lights/mixed,/turf/open/floor/plating,/area/maintenance/starboard)
-"cTx" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2;initialize_directions = 11},/obj/item/weapon/twohanded/required/kirbyplants{icon_state = "plant-21";layer = 4.1},/turf/open/floor/plasteel/black,/area/chapel/main)
-"cTy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/chair/comfy/black{dir = 4},/turf/open/floor/plasteel/chapel{dir = 1},/area/chapel/main)
-"cTz" = (/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/clothing/glasses/science,/obj/item/clothing/glasses/science,/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel,/area/toxins/xenobiology)
-"cTA" = (/turf/open/floor/plating,/area/toxins/xenobiology)
-"cTB" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/toxins/xenobiology)
-"cTC" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/toxins/xenobiology)
-"cTD" = (/obj/machinery/shieldwallgen{req_access = list(55)},/obj/structure/cable/yellow,/turf/open/floor/plating,/area/toxins/xenobiology)
-"cTE" = (/obj/structure/table,/obj/item/device/flashlight/lamp{pixel_x = 4;pixel_y = 1},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"cTF" = (/obj/structure/frame/computer,/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"cTG" = (/obj/structure/table,/obj/machinery/button/door{id = "syndieshutters";name = "remote shutter control";req_access_txt = "150"},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"cTH" = (/obj/structure/table,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3;pixel_y = 3},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"cTI" = (/obj/structure/table,/obj/item/weapon/c4{pixel_x = 2;pixel_y = -5},/obj/item/weapon/c4{pixel_x = -3;pixel_y = 3},/obj/item/weapon/c4{pixel_x = 2;pixel_y = -3},/obj/item/weapon/c4{pixel_x = -2;pixel_y = -1},/obj/item/weapon/c4{pixel_x = 3;pixel_y = 3},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"cTJ" = (/obj/structure/table,/obj/item/stack/sheet/glass{amount = 10},/obj/item/device/multitool,/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"cTK" = (/obj/item/device/radio/intercom{desc = "Talk through this. Evilly";freerange = 1;frequency = 1213;name = "Syndicate Intercom";pixel_y = -32;subspace_transmission = 1;syndie = 1},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"cTL" = (/obj/structure/closet/syndicate/personal,/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"cTM" = (/turf/open/space,/turf/closed/wall/mineral/plastitanium{icon_state = "diagonalWall3"},/area/shuttle/syndicate)
-"cTN" = (/obj/machinery/door/window{name = "Cockpit";req_access_txt = "150"},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"cTO" = (/turf/open/space,/turf/closed/wall/mineral/plastitanium{dir = 4;icon_state = "diagonalWall3"},/area/shuttle/syndicate)
-"cTP" = (/obj/structure/table,/obj/item/stack/cable_coil,/obj/item/weapon/crowbar/red,/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"cTQ" = (/obj/structure/table,/obj/item/weapon/storage/box/zipties{pixel_x = 1;pixel_y = 2},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"cTR" = (/obj/effect/landmark/xmastree,/turf/open/floor/wood,/area/crew_quarters/bar)
-"cTS" = (/obj/structure/chair{dir = 8},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"cTT" = (/obj/structure/disposalpipe/segment,/turf/closed/wall/r_wall,/area/toxins/xenobiology)
-"cTU" = (/obj/machinery/door/window{name = "Ready Room";req_access_txt = "150"},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"cTV" = (/obj/machinery/suit_storage_unit/syndicate,/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"cTW" = (/obj/structure/closet/syndicate/nuclear,/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"cTX" = (/obj/docking_port/stationary{dheight = 9;dir = 2;dwidth = 5;height = 24;id = "syndicate_ne";name = "northeast of station";turf_type = /turf/open/space;width = 18},/turf/open/space,/area/space)
-"cTY" = (/obj/structure/table,/obj/item/device/aicard,/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"cTZ" = (/turf/open/floor/mineral/titanium,/area/shuttle/syndicate)
-"cUa" = (/turf/open/space,/turf/closed/wall/mineral/plastitanium{dir = 1;icon_state = "diagonalWall3"},/area/shuttle/syndicate)
-"cUb" = (/obj/machinery/sleeper/syndie{dir = 4},/turf/open/floor/mineral/titanium,/area/shuttle/syndicate)
-"cUc" = (/obj/structure/tank_dispenser/oxygen,/turf/open/floor/mineral/titanium,/area/shuttle/syndicate)
-"cUd" = (/obj/machinery/door/window{dir = 4;name = "EVA Storage";req_access_txt = "150"},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"cUe" = (/obj/machinery/door/airlock/external{req_access_txt = "150"},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"cUf" = (/obj/machinery/door/window{base_state = "right";dir = 4;icon_state = "right";name = "EVA Storage";req_access_txt = "150"},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"cUg" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/shuttle/syndicate)
-"cUh" = (/obj/structure/rack,/obj/item/clothing/suit/space/syndicate/black/red,/obj/item/clothing/head/helmet/space/syndicate/black/red,/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"cUi" = (/obj/item/device/radio/intercom{desc = "Talk through this. Evilly";freerange = 1;frequency = 1213;name = "Syndicate Intercom";pixel_x = -32;subspace_transmission = 1;syndie = 1},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"cUj" = (/obj/machinery/recharge_station,/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"cUk" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/open/floor/mineral/titanium,/area/shuttle/syndicate)
-"cUl" = (/obj/structure/table,/obj/item/stack/medical/ointment,/obj/item/stack/medical/bruise_pack,/obj/structure/extinguisher_cabinet{pixel_x = -5;pixel_y = 30},/turf/open/floor/mineral/titanium,/area/shuttle/syndicate)
-"cUm" = (/obj/structure/bed/roller,/turf/open/floor/mineral/titanium,/area/shuttle/syndicate)
-"cUn" = (/obj/structure/table,/obj/item/weapon/screwdriver{pixel_y = 9},/obj/item/device/assembly/voice{pixel_y = 3},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"cUo" = (/obj/structure/table,/obj/item/weapon/stock_parts/cell/high{pixel_x = -3;pixel_y = 3},/obj/item/weapon/stock_parts/cell/high,/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"cUp" = (/obj/structure/table,/obj/item/device/assembly/signaler,/obj/item/device/assembly/signaler,/obj/item/device/assembly/prox_sensor{pixel_x = -8;pixel_y = 4},/obj/item/device/assembly/prox_sensor{pixel_x = -8;pixel_y = 4},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"cUq" = (/obj/structure/table,/obj/item/weapon/wrench,/obj/item/device/assembly/infra,/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"cUr" = (/obj/structure/table,/obj/item/weapon/weldingtool/largetank{pixel_y = 3},/obj/item/device/multitool,/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"cUs" = (/obj/structure/sign/bluecross_2,/turf/closed/wall/mineral/plastitanium,/area/shuttle/syndicate)
-"cUt" = (/obj/machinery/door/window/westright{name = "Tool Storage";req_access_txt = "150"},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"cUu" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/syndicate,/obj/item/weapon/crowbar/red,/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"cUv" = (/obj/machinery/door/window{dir = 4;name = "Infirmary";req_access_txt = "150"},/turf/open/floor/mineral/titanium,/area/shuttle/syndicate)
-"cUw" = (/obj/machinery/door/window{base_state = "right";dir = 4;icon_state = "right";name = "Infirmary";req_access_txt = "150"},/turf/open/floor/mineral/titanium,/area/shuttle/syndicate)
-"cUx" = (/obj/machinery/door/window{dir = 8;name = "Tool Storage";req_access_txt = "150"},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"cUy" = (/obj/machinery/door/window{dir = 1;name = "Surgery";req_access_txt = "150"},/turf/open/floor/mineral/titanium,/area/shuttle/syndicate)
-"cUz" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/table,/obj/item/bodypart/r_arm/robot,/obj/item/bodypart/l_arm/robot,/turf/open/floor/mineral/titanium,/area/shuttle/syndicate)
-"cUA" = (/obj/structure/table,/obj/structure/window/reinforced{dir = 8},/obj/item/weapon/storage/firstaid/regular{pixel_x = 3;pixel_y = 3},/obj/item/weapon/storage/firstaid/brute,/obj/item/weapon/storage/firstaid/regular{pixel_x = -3;pixel_y = -3},/turf/open/floor/mineral/titanium,/area/shuttle/syndicate)
-"cUB" = (/obj/structure/window/reinforced{dir = 1},/turf/open/floor/mineral/titanium,/area/shuttle/syndicate)
-"cUC" = (/obj/structure/table,/obj/item/weapon/grenade/syndieminibomb{pixel_x = 4;pixel_y = 2},/obj/item/weapon/grenade/syndieminibomb{pixel_x = -1},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"cUD" = (/obj/structure/table,/obj/item/device/sbeacondrop/bomb{pixel_y = 5},/obj/item/device/sbeacondrop/bomb,/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"cUE" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular{pixel_x = 3;pixel_y = 3},/obj/item/weapon/storage/firstaid/fire,/obj/item/weapon/storage/firstaid/regular{pixel_x = -3;pixel_y = -3},/turf/open/floor/mineral/titanium,/area/shuttle/syndicate)
-"cUF" = (/obj/structure/table,/obj/item/weapon/surgicaldrill,/obj/item/weapon/circular_saw,/turf/open/floor/mineral/titanium,/area/shuttle/syndicate)
-"cUG" = (/obj/machinery/telecomms/allinone{intercept = 1},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"cUH" = (/obj/structure/table/optable,/turf/open/floor/plasteel/white,/area/medical/surgery)
-"cUI" = (/obj/structure/sink{dir = 4;icon_state = "sink";pixel_x = 11;pixel_y = 0},/obj/structure/mirror{pixel_x = 30},/turf/open/floor/mineral/titanium,/area/shuttle/syndicate)
-"cUJ" = (/obj/machinery/nuclearbomb/syndicate,/obj/machinery/door/window{dir = 1;name = "Secure Storage";req_access_txt = "150"},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"cUK" = (/obj/structure/shuttle/engine/heater,/obj/structure/window/reinforced{dir = 1},/turf/open/floor/plating,/area/shuttle/syndicate)
-"cUL" = (/obj/docking_port/stationary/random{dir = 4;id = "pod_asteroid4";name = "asteroid"},/turf/open/space,/area/space)
-"cUM" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/effect/landmark{name = "lightsout"},/obj/machinery/holopad,/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"cUN" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/effect/landmark/start{name = "Scientist"},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"cUO" = (/obj/structure/shuttle/engine/propulsion,/turf/open/floor/plating,/area/shuttle/syndicate)
-"cUP" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_l"},/turf/open/floor/plating,/area/shuttle/syndicate)
-"cUQ" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_r"},/turf/open/floor/plating,/area/shuttle/syndicate)
-"cUR" = (/obj/machinery/atmospherics/pipe/simple/general/visible{color = "#330000";dir = 4},/obj/machinery/atmospherics/components/binary/valve/digital{name = "Waste Release"},/turf/open/floor/plasteel/black,/area/atmos)
-"cUS" = (/turf/closed/wall/mineral/titanium,/area/shuttle/supply)
-"cUT" = (/obj/machinery/light{dir = 1},/obj/machinery/status_display{pixel_y = 30},/obj/machinery/photocopier{pixel_y = 3},/turf/open/floor/wood,/area/library)
-"cUU" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/wood,/area/library)
-"cUV" = (/turf/open/floor/mineral/titanium/blue,/area/shuttle/supply)
-"cUW" = (/obj/machinery/conveyor{dir = 4;id = "QMLoad2"},/obj/machinery/door/poddoor{id = "QMLoaddoor2";name = "supply dock loading door"},/turf/open/floor/plating,/area/shuttle/supply)
-"cUX" = (/obj/machinery/door/airlock/titanium{name = "Supply Shuttle Airlock";req_access_txt = "31"},/turf/open/floor/plating,/area/shuttle/supply)
-"cUY" = (/obj/machinery/button/door{dir = 2;id = "QMLoaddoor2";name = "Loading Doors";pixel_x = 24;pixel_y = 8},/obj/machinery/button/door{id = "QMLoaddoor";name = "Loading Doors";pixel_x = 24;pixel_y = -8},/turf/open/floor/mineral/titanium/blue,/area/shuttle/supply)
-"cUZ" = (/obj/machinery/door/airlock/titanium{name = "Supply Shuttle Airlock";req_access_txt = "31"},/obj/docking_port/mobile/supply{dwidth = 5;roundstart_move = "supply_away";width = 12},/obj/docking_port/stationary{dir = 8;dwidth = 5;height = 7;id = "supply_home";name = "Cargo Bay";width = 12},/turf/open/floor/plating,/area/shuttle/supply)
-"cVa" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"cVb" = (/obj/structure/table/wood,/obj/item/device/camera_film{pixel_x = -3;pixel_y = 5},/obj/item/device/camera_film{pixel_y = 9},/obj/item/device/radio/intercom{dir = 4;name = "Station Intercom (General)";pixel_x = 27},/turf/open/floor/wood,/area/library)
-"cVc" = (/turf/open/floor/mineral/titanium/blue,/turf/closed/wall/mineral/titanium/interior,/area/shuttle/supply)
-"cVd" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/item/device/radio/intercom{freerange = 1;frequency = 1459;name = "Station Intercom (General)";pixel_x = -30},/turf/open/floor/plasteel/neutral/corner{dir = 8},/area/hallway/primary/central)
-"cVe" = (/obj/structure/table/wood,/obj/machinery/computer/libraryconsole/bookmanagement,/obj/structure/noticeboard{desc = "A board for pinning important notices upon. Probably helpful for keeping track of requests.";dir = 8;name = "requests board";pixel_x = 32;pixel_y = 0},/turf/open/floor/wood,/area/library)
-"cVf" = (/obj/machinery/light_switch{pixel_x = 28;pixel_y = 0},/turf/open/floor/wood,/area/library)
-"cVg" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/shuttle/engine/heater,/turf/open/floor/plating,/area/shuttle/supply)
-"cVh" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel/black,/area/hallway/primary/central)
-"cVi" = (/obj/machinery/firealarm{dir = 4;pixel_x = 24},/turf/open/floor/wood,/area/library)
-"cVj" = (/obj/structure/shuttle/engine/propulsion,/turf/open/floor/plating,/area/shuttle/supply)
-"cVk" = (/obj/structure/shuttle/engine/propulsion{icon_state = "burst_l"},/turf/open/floor/plating,/area/shuttle/supply)
-"cVl" = (/obj/structure/shuttle/engine/propulsion{icon_state = "burst_r"},/turf/open/floor/plating,/area/shuttle/supply)
-"cVm" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion";dir = 4},/turf/closed/wall/mineral/titanium/overspace,/area/shuttle/transport)
-"cVn" = (/turf/closed/wall/mineral/titanium,/area/shuttle/transport)
-"cVo" = (/obj/structure/window/shuttle,/obj/structure/grille,/turf/open/floor/plating,/area/shuttle/transport)
-"cVp" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/open/floor/plating,/area/shuttle/transport)
-"cVq" = (/turf/closed/wall/mineral/titanium/overspace,/area/shuttle/transport)
-"cVr" = (/turf/open/floor/mineral/titanium/blue,/turf/closed/wall/mineral/titanium/interior,/area/shuttle/transport)
-"cVs" = (/obj/machinery/computer/shuttle/ferry/request,/turf/open/floor/mineral/titanium/blue,/area/shuttle/transport)
-"cVt" = (/obj/structure/chair{dir = 4},/turf/open/floor/mineral/titanium/blue,/area/shuttle/transport)
-"cVu" = (/obj/structure/chair,/turf/open/floor/mineral/titanium/blue,/area/shuttle/transport)
-"cVv" = (/turf/open/floor/mineral/titanium/blue,/area/shuttle/transport)
-"cVw" = (/obj/machinery/door/airlock/titanium,/turf/open/floor/mineral/titanium/blue,/area/shuttle/transport)
-"cVx" = (/obj/machinery/door/airlock/titanium,/obj/docking_port/mobile{dir = 8;dwidth = 2;height = 12;id = "ferry";name = "ferry shuttle";port_angle = 0;preferred_direction = 4;roundstart_move = "ferry_away";width = 5},/obj/docking_port/stationary{dir = 8;dwidth = 2;height = 12;id = "ferry_home";name = "port bay 2";turf_type = /turf/open/space;width = 5},/turf/open/floor/mineral/titanium/blue,/area/shuttle/transport)
-"cVy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/atmos)
-"cVz" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1;frequency = 1441;id = "n2_in"},/turf/open/floor/plating,/area/atmos)
-"cVA" = (/obj/structure/closet/crate,/turf/open/floor/mineral/titanium/blue,/area/shuttle/transport)
-"cVB" = (/obj/structure/chair{dir = 1},/turf/open/floor/mineral/titanium/blue,/area/shuttle/transport)
-"cVC" = (/mob/living/simple_animal/sloth/citrus,/turf/open/floor/plasteel,/area/quartermaster/storage)
-"cVD" = (/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/atmos)
-"cVE" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/shuttle/auxillary_base)
-"cVF" = (/turf/closed/wall/mineral/titanium,/area/shuttle/abandoned)
-"cVG" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/open/floor/plating,/area/shuttle/abandoned)
-"cVH" = (/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plating,/area/shuttle/auxillary_base)
-"cVI" = (/obj/machinery/door/airlock/titanium{name = "recovery shuttle external airlock"},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium/blue,/area/shuttle/abandoned)
-"cVJ" = (/obj/structure/window/reinforced,/obj/machinery/computer/atmos_control/tank{frequency = 1441;input_tag = "air_in";name = "Mixed Air Supply Control";output_tag = "air_out";sensors = list("air_sensor" = "Tank")},/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/floor/plasteel/barber{dir = 8},/area/atmos)
-"cVK" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/shuttle/auxillary_base)
-"cVL" = (/turf/open/floor/plating,/area/shuttle/auxillary_base)
-"cVM" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating{luminosity = 2;initial_gas_mix = "o2=0.01;n2=0.01"},/area/shuttle/auxillary_base)
-"cVN" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_l";dir = 4},/turf/open/floor/plating/airless,/area/shuttle/abandoned)
-"cVO" = (/obj/structure/toilet{pixel_y = 9},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/obj/effect/decal/cleanable/greenglow{desc = "Looks like something's sprung a leak"},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cVP" = (/obj/structure/sign/poster{pixel_x = 32},/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"cVQ" = (/obj/machinery/light{icon_state = "tube1";dir = 4},/turf/open/floor/plating,/area/shuttle/auxillary_base)
-"cVR" = (/obj/structure/mirror{pixel_x = 28;pixel_y = 0},/obj/structure/sink{dir = 4;icon_state = "sink";pixel_x = 11;pixel_y = 0},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cVS" = (/obj/structure/table,/obj/item/weapon/storage/pill_bottle/dice{pixel_y = 3},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cVT" = (/obj/structure/closet/wardrobe/mixed,/obj/item/clothing/under/rank/centcom_officer{desc = "A badge on the arm indicates that it's meant to be worn by Centcom recovery teams. This one seems dusty and clearly hasn't been cleaned in some time.";name = "\improper dusty old Centcom jumpsuit"},/obj/item/clothing/under/rank/centcom_commander{desc = "A badge on the arm indicates that it's meant to be worn by Centcom recovery teams. This one seems dusty and clearly hasn't been cleaned in some time.";name = "\improper dusty old Centcom jumpsuit"},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cVU" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 50},/obj/item/weapon/stock_parts/cell/high{charge = 100;maxcharge = 15000;pixel_y = 2},/obj/effect/decal/cleanable/cobweb,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cVV" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cVW" = (/turf/closed/wall/shuttle{icon_state = "swall1"},/area/shuttle/abandoned)
-"cVX" = (/obj/structure/tank_dispenser/oxygen{layer = 2.7;pixel_x = -1;pixel_y = 2},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cVY" = (/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium/blue,/area/shuttle/abandoned)
-"cVZ" = (/obj/structure/sign/vacuum{pixel_x = -32},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium/blue,/area/shuttle/abandoned)
-"cWa" = (/obj/structure/closet/crate/medical{name = "medical crate"},/obj/item/weapon/storage/firstaid/o2{pixel_x = 3;pixel_y = 3},/obj/item/roller{pixel_y = 4},/obj/item/device/healthanalyzer,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/shuttle/abandoned)
-"cWb" = (/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/cigbutt,/obj/structure/closet/crate{icon_state = "crateopen";name = "spare equipment crate";opened = 1},/obj/item/weapon/tank/internals/oxygen/red,/obj/item/weapon/tank/internals/air,/obj/effect/spawner/lootdrop/maintenance{lootcount = 2;name = "2maintenance loot spawner"},/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/shuttle/abandoned)
-"cWc" = (/obj/structure/closet/crate{name = "spare equipment crate"},/obj/item/weapon/grenade/chem_grenade/metalfoam,/obj/item/weapon/relic,/obj/item/device/t_scanner,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3;name = "3maintenance loot spawner"},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/shuttle/abandoned)
-"cWd" = (/obj/structure/closet/crate{name = "emergency supplies crate"},/obj/item/weapon/storage/toolbox/emergency,/obj/item/weapon/storage/toolbox/emergency,/obj/item/device/flashlight/flare{pixel_x = 3;pixel_y = 3},/obj/item/device/flashlight/flare{pixel_x = -6;pixel_y = -2},/obj/item/weapon/crowbar,/obj/item/weapon/wrench,/obj/effect/spawner/lootdrop/maintenance,/obj/item/weapon/extinguisher,/obj/item/weapon/extinguisher,/obj/effect/decal/cleanable/cobweb/cobweb2,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/shuttle/abandoned)
-"cWe" = (/obj/structure/shuttle/engine/heater{icon_state = "heater";dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plating/airless,/area/shuttle/abandoned)
-"cWf" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion";dir = 4},/turf/open/floor/plating/airless,/area/shuttle/abandoned)
-"cWg" = (/obj/docking_port/mobile/auxillary_base{dheight = 4;dir = 2;dwidth = 4;height = 9;width = 9},/obj/machinery/bluespace_beacon,/obj/machinery/computer/shuttle/auxillary_base{pixel_y = 0},/turf/closed/wall,/area/shuttle/auxillary_base)
-"cWh" = (/obj/machinery/light{dir = 8},/turf/open/floor/plating,/area/shuttle/auxillary_base)
-"cWi" = (/obj/machinery/door/airlock/titanium{name = "bathroom"},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium/blue,/area/shuttle/abandoned)
-"cWj" = (/obj/structure/bed,/obj/item/weapon/bedsheet/centcom,/obj/effect/decal/remains/human,/obj/effect/decal/cleanable/blood/old,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cWk" = (/obj/effect/decal/cleanable/blood/old,/obj/effect/decal/cleanable/blood/gibs/old,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/obj/effect/decal/cleanable/ash{desc = "They look like human remains, and have clearly been gnawed at.";icon = 'icons/effects/blood.dmi';icon_state = "remains";name = "remains"},/obj/item/weapon/gun/energy/laser/retro,/turf/open/floor/mineral/titanium/blue,/area/shuttle/abandoned)
-"cWl" = (/obj/structure/table,/obj/item/weapon/storage/belt/utility,/obj/item/weapon/storage/belt/utility,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/item/device/radio/off,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cWm" = (/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/obj/effect/decal/cleanable/oil,/turf/open/floor/mineral/titanium/blue,/area/shuttle/abandoned)
-"cWn" = (/obj/machinery/door/airlock/titanium{name = "E.V.A. equipment"},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium/blue,/area/shuttle/abandoned)
-"cWo" = (/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium/blue,/area/shuttle/abandoned)
-"cWp" = (/obj/effect/decal/cleanable/blood/old,/obj/effect/decal/cleanable/blood/gibs/old,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/obj/effect/decal/cleanable/ash{desc = "They look like human remains, and have clearly been gnawed at.";icon = 'icons/effects/blood.dmi';icon_state = "remains";name = "remains"},/turf/open/floor/mineral/titanium/blue,/area/shuttle/abandoned)
-"cWq" = (/obj/effect/decal/cleanable/oil,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/obj/effect/turf_decal/delivery{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/shuttle/abandoned)
-"cWr" = (/obj/machinery/door/airlock/titanium{name = "cargo bay"},/obj/effect/turf_decal/delivery{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/shuttle/abandoned)
-"cWs" = (/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/obj/effect/turf_decal/delivery{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/shuttle/abandoned)
-"cWt" = (/obj/effect/decal/cleanable/robot_debris/old,/obj/effect/decal/cleanable/oil,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/obj/effect/turf_decal/delivery{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/shuttle/abandoned)
-"cWu" = (/obj/machinery/shower{icon_state = "shower";dir = 4},/obj/machinery/door/window/westright{dir = 4},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/obj/item/weapon/soap/nanotrasen,/obj/effect/decal/cleanable/ash{desc = "They look like human remains, and have clearly been gnawed at.";icon = 'icons/effects/blood.dmi';icon_state = "remains";name = "remains"},/obj/effect/decal/cleanable/blood/gibs/old,/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cWv" = (/obj/effect/decal/cleanable/blood/old,/obj/structure/mirror{pixel_x = 28;pixel_y = 0},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium/blue,/area/shuttle/abandoned)
-"cWw" = (/obj/structure/bed,/obj/item/weapon/bedsheet/centcom,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cWx" = (/obj/effect/decal/cleanable/blood/old,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/obj/effect/decal/cleanable/blood/gibs/limb,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium/blue,/area/shuttle/abandoned)
-"cWy" = (/obj/structure/table,/obj/item/stack/sheet/glass{amount = 50;pixel_x = -2;pixel_y = 2},/obj/item/stack/rods{amount = 50},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/obj/item/weapon/wrench,/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cWz" = (/obj/structure/rack{dir = 8;layer = 2.9;pixel_y = 2},/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1;pixel_y = 6},/obj/item/weapon/storage/toolbox/mechanical{pixel_x = -2;pixel_y = -1},/obj/item/clothing/head/welding{pixel_x = -3;pixel_y = 5},/obj/item/clothing/glasses/welding,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cWA" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"cWB" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cWC" = (/obj/effect/decal/cleanable/oil,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/shuttle/abandoned)
-"cWD" = (/obj/structure/closet/emcloset,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/shuttle/abandoned)
-"cWE" = (/obj/structure/closet/firecloset/full,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/shuttle/abandoned)
-"cWF" = (/obj/machinery/portable_atmospherics/canister/air,/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plating,/area/shuttle/auxillary_base)
-"cWG" = (/obj/machinery/door/airlock/titanium{name = "bathroom"},/obj/effect/decal/cleanable/blood/old,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium/blue,/area/shuttle/abandoned)
-"cWH" = (/obj/machinery/vending/boozeomat{icon_deny = "smartfridge";icon_state = "smartfridge";req_access_txt = "0";use_power = 0},/turf/closed/wall/shuttle{icon_state = "swall12";dir = 2},/area/shuttle/abandoned)
-"cWI" = (/obj/machinery/door/airlock/titanium{name = "dormitory"},/obj/effect/decal/cleanable/blood/old,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium/blue,/area/shuttle/abandoned)
-"cWJ" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/shuttle/auxillary_base)
-"cWK" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/turf/open/floor/plating,/area/mining_construction)
-"cWL" = (/obj/machinery/door/airlock/titanium{name = "recovery shuttle interior airlock"},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium/blue,/area/shuttle/abandoned)
-"cWM" = (/obj/machinery/door/airlock/external{cyclelinkeddir = 1;name = "Construction Zone";req_access = null;req_access_txt = "0";req_one_access_txt = "0"},/turf/open/floor/plating,/area/mining_construction)
-"cWN" = (/obj/machinery/door/airlock/titanium{name = "cargo bay"},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/obj/effect/turf_decal/delivery{dir = 1},/turf/open/floor/plasteel{dir = 1},/area/shuttle/abandoned)
-"cWO" = (/obj/machinery/vending/cigarette{use_power = 0},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cWP" = (/obj/effect/decal/cleanable/blood/gibs/old,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium/blue,/area/shuttle/abandoned)
-"cWQ" = (/obj/effect/decal/cleanable/blood/old,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/obj/effect/decal/cleanable/blood/gibs/limb,/turf/open/floor/mineral/titanium/blue,/area/shuttle/abandoned)
-"cWR" = (/obj/effect/decal/cleanable/blood/old,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium/blue,/area/shuttle/abandoned)
-"cWS" = (/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/obj/effect/decal/cleanable/cobweb/cobweb2,/turf/open/floor/mineral/titanium/blue,/area/shuttle/abandoned)
-"cWT" = (/obj/structure/table,/obj/item/device/camera,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cWU" = (/obj/effect/decal/cleanable/cobweb,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cWV" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -1;pixel_y = 6},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cWW" = (/obj/structure/table,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/obj/item/weapon/storage/photo_album,/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cWX" = (/obj/structure/reagent_dispensers/fueltank,/obj/structure/sign/vacuum{pixel_x = -32},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium/blue,/area/shuttle/abandoned)
-"cWY" = (/obj/machinery/vending/coffee{pixel_x = -2;use_power = 0},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cWZ" = (/obj/structure/chair,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cXa" = (/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cXb" = (/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cXc" = (/obj/machinery/light/small{dir = 8},/obj/structure/easel,/turf/open/floor/plating,/area/maintenance/starboard)
-"cXd" = (/obj/structure/lattice,/obj/machinery/camera/emp_proof{c_tag = "Aft Arm - Far";dir = 8;network = list("Singulo")},/turf/open/space,/area/space)
-"cXe" = (/obj/structure/chair/office/light{dir = 4},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cXf" = (/obj/structure/table,/obj/item/weapon/folder/blue,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/obj/item/device/gps{gpstag = "NTREC1";pixel_x = -1;pixel_y = 2},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cXg" = (/obj/machinery/door/airlock/titanium{name = "recovery shuttle interior airlock"},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium/blue,/area/shuttle/abandoned)
-"cXh" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/drinks/shaker,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cXi" = (/obj/structure/chair{dir = 4},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cXj" = (/obj/structure/table,/obj/item/weapon/storage/fancy/donut_box,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cXk" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/condiment/peppermill{pixel_x = 3;pixel_y = 4},/obj/item/weapon/reagent_containers/food/condiment/saltshaker{pixel_x = -3;pixel_y = 4},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cXl" = (/obj/structure/chair{dir = 8},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cXm" = (/obj/machinery/door/airlock/titanium{name = "living quarters"},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium/blue,/area/shuttle/abandoned)
-"cXn" = (/obj/item/clothing/suit/bio_suit,/obj/item/clothing/suit/bio_suit,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/obj/item/clothing/gloves/color/latex,/obj/item/clothing/gloves/color/latex,/obj/item/clothing/head/bio_hood,/obj/item/clothing/head/bio_hood,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/structure/table,/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cXo" = (/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/obj/item/roller{pixel_x = -3;pixel_y = 7},/obj/item/roller{pixel_x = 3;pixel_y = 4},/obj/item/weapon/reagent_containers/spray/cleaner,/obj/structure/table,/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cXp" = (/obj/effect/decal/cleanable/blood/old,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/obj/effect/decal/cleanable/blood/gibs/limb,/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cXq" = (/obj/effect/decal/cleanable/blood/gibs/old,/obj/effect/decal/cleanable/blood/old,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/obj/effect/decal/cleanable/ash{desc = "They look like human remains, and have clearly been gnawed at.";icon = 'icons/effects/blood.dmi';icon_state = "remains";name = "remains"},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cXr" = (/obj/item/weapon/storage/toolbox/emergency{pixel_x = -3;pixel_y = 3},/obj/item/weapon/storage/toolbox/emergency,/obj/item/weapon/storage/toolbox/emergency{pixel_x = 3;pixel_y = -3},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/obj/structure/table,/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cXs" = (/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/obj/item/clothing/gloves/color/black,/obj/item/clothing/gloves/color/black,/obj/item/clothing/suit/armor/vest,/obj/item/clothing/suit/armor/vest,/obj/structure/table,/obj/item/clothing/head/helmet/swat/nanotrasen,/obj/item/clothing/head/helmet/swat/nanotrasen,/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cXt" = (/obj/machinery/door/airlock/titanium{name = "bridge"},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium/blue,/area/shuttle/abandoned)
-"cXu" = (/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/obj/machinery/computer/shuttle/white_ship,/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cXv" = (/obj/effect/decal/cleanable/blood/old,/obj/structure/chair/comfy/black{dir = 4},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cXw" = (/obj/structure/reagent_dispensers/watertank,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium/blue,/area/shuttle/abandoned)
-"cXx" = (/obj/machinery/vending/cola{pixel_x = -1;use_power = 0},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cXy" = (/obj/structure/chair{dir = 1},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cXz" = (/obj/machinery/camera/emp_proof{c_tag = "Aft Arm - Near";dir = 4;network = list("Singulo")},/obj/structure/lattice,/turf/open/space,/area/space)
-"cXA" = (/turf/closed/wall/r_wall,/area/security/checkpoint/engineering)
-"cXB" = (/obj/structure/chair/office/light,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cXC" = (/obj/item/weapon/phone{pixel_x = -3;pixel_y = 3},/obj/item/weapon/cigbutt/cigarbutt{pixel_x = 5;pixel_y = -1},/obj/structure/table,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cXD" = (/obj/effect/decal/cleanable/blood/old,/obj/effect/decal/cleanable/blood/gibs/old,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/obj/item/clothing/head/centhat{desc = "There's a gouge through the top where something has clawed clean through it. Whoever was wearing it probably doesn't need a hat any more.";name = "\improper damaged CentCom hat"},/obj/effect/decal/cleanable/ash{desc = "They look like human remains, and have clearly been gnawed at.";icon = 'icons/effects/blood.dmi';icon_state = "remains";name = "remains"},/turf/open/floor/mineral/titanium/blue,/area/shuttle/abandoned)
-"cXE" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4;on = 1;scrub_N2O = 0;scrub_Toxins = 0},/turf/open/floor/plasteel/yellow/side{dir = 1},/area/mining_construction)
-"cXF" = (/obj/machinery/vending/snack{pixel_x = -1;use_power = 0},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cXG" = (/obj/structure/sign/science{pixel_y = -32},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium/blue,/area/shuttle/abandoned)
-"cXH" = (/obj/structure/table,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/obj/item/device/megaphone,/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cXI" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/starboard)
-"cXJ" = (/obj/structure/table,/obj/item/device/radio/off{pixel_y = 6},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cXK" = (/obj/structure/table,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/obj/item/device/mass_spectrometer,/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cXL" = (/obj/machinery/door/airlock/titanium{name = "hydroponics"},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium/blue,/area/shuttle/abandoned)
-"cXM" = (/obj/structure/sign/botany,/turf/closed/wall/mineral/titanium,/area/shuttle/abandoned)
-"cXN" = (/obj/machinery/door/airlock/titanium{name = "kitchen"},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium/blue,/area/shuttle/abandoned)
-"cXO" = (/obj/machinery/door/airlock/titanium{name = "laboratory"},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium/blue,/area/shuttle/abandoned)
-"cXP" = (/obj/structure/sign/bluecross_2,/turf/closed/wall/mineral/titanium,/area/shuttle/abandoned)
-"cXQ" = (/obj/machinery/door/airlock/titanium{icon_state = "door_closed";name = "medbay";welded = 0},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium/blue,/area/shuttle/abandoned)
-"cXR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plasteel/yellow/side{dir = 1},/area/mining_construction)
-"cXS" = (/obj/item/weapon/storage/bag/plants/portaseeder,/obj/structure/table,/obj/item/weapon/reagent_containers/spray/plantbgone{pixel_x = 13;pixel_y = 5},/obj/item/weapon/reagent_containers/glass/bottle/nutrient/ez,/obj/item/weapon/reagent_containers/glass/bottle/nutrient/ez,/obj/item/weapon/reagent_containers/glass/bottle/nutrient/ez,/obj/item/weapon/reagent_containers/glass/bottle/nutrient/rh{pixel_x = -2;pixel_y = 3},/obj/effect/decal/cleanable/cobweb,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cXT" = (/obj/machinery/biogenerator{idle_power_usage = 0;use_power = 0},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cXU" = (/obj/machinery/vending/hydroseeds{pixel_x = 2;use_power = 0},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cXV" = (/obj/machinery/processor,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cXW" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -3;pixel_y = 6},/obj/item/weapon/storage/box/donkpockets,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/obj/effect/decal/cleanable/cobweb/cobweb2,/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cXX" = (/obj/structure/kitchenspike,/obj/effect/decal/cleanable/blood/gibs/old,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cXY" = (/obj/effect/decal/cleanable/oil,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cXZ" = (/obj/structure/reagent_dispensers/watertank,/obj/structure/window/reinforced{dir = 8},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/starboard)
-"cYa" = (/obj/machinery/sleeper{dir = 4;use_power = 0},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cYb" = (/obj/structure/closet/crate/freezer,/obj/item/weapon/reagent_containers/blood/empty{pixel_x = -3;pixel_y = -3},/obj/item/weapon/reagent_containers/blood/OMinus,/obj/item/weapon/reagent_containers/blood/random,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/obj/effect/decal/cleanable/xenoblood,/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cYc" = (/obj/structure/table/optable{name = "Robotics Operating Table"},/obj/structure/extinguisher_cabinet{pixel_x = 0;pixel_y = -30},/obj/machinery/camera{c_tag = "Robotics - Aft";dir = 1;network = list("SS13","RD")},/turf/open/floor/plasteel/white/side{dir = 1},/area/assembly/robotics)
-"cYd" = (/obj/structure/table,/obj/item/weapon/wrench,/obj/item/weapon/crowbar,/obj/item/clothing/suit/apron,/obj/item/weapon/shovel/spade,/obj/item/weapon/cultivator,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/obj/item/weapon/wirecutters,/obj/item/device/plant_analyzer,/obj/item/weapon/reagent_containers/glass/bucket,/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cYe" = (/obj/machinery/smartfridge{use_power = 0},/turf/closed/wall/mineral/titanium,/area/shuttle/abandoned)
-"cYf" = (/obj/structure/sink{dir = 4;icon_state = "sink";pixel_x = 11;pixel_y = 0},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium/blue,/area/shuttle/abandoned)
-"cYg" = (/obj/structure/sink{icon_state = "sink";dir = 8;pixel_x = -12;pixel_y = 2},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium/blue,/area/shuttle/abandoned)
-"cYh" = (/obj/structure/table,/obj/item/weapon/kitchen/rollingpin,/obj/item/weapon/kitchen/knife,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cYi" = (/obj/effect/decal/cleanable/egg_smudge,/obj/effect/decal/cleanable/flour,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium/blue,/area/shuttle/abandoned)
-"cYj" = (/obj/structure/closet/firecloset,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/starboard)
-"cYk" = (/obj/machinery/portable_atmospherics/canister/air,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/starboard)
-"cYl" = (/obj/structure/chair/office/light,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium/blue,/area/shuttle/abandoned)
-"cYm" = (/obj/machinery/vending/wallmed{name = "Emergency NanoMed";pixel_x = -28;pixel_y = 0;req_access_txt = "0";use_power = 0},/obj/machinery/iv_drip{density = 0;pixel_x = -8},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium/blue,/area/shuttle/abandoned)
-"cYn" = (/obj/effect/decal/cleanable/xenoblood,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/obj/effect/decal/cleanable/ash{desc = "A pile of remains that look vaguely humanoid. The skull is abnormally elongated, and there are burns through some of the other bones.";icon = 'icons/effects/blood.dmi';icon_state = "remainsxeno";name = "remains"},/turf/open/floor/mineral/titanium/blue,/area/shuttle/abandoned)
-"cYo" = (/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/obj/effect/decal/cleanable/ash,/obj/effect/decal/cleanable/xenoblood,/turf/open/floor/mineral/titanium/blue,/area/shuttle/abandoned)
-"cYp" = (/obj/structure/sink{dir = 4;icon_state = "sink";pixel_x = 11;pixel_y = 0},/obj/effect/decal/cleanable/xenoblood,/obj/effect/decal/cleanable/xenoblood/xgibs/limb,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium/blue,/area/shuttle/abandoned)
-"cYq" = (/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_r";dir = 4},/turf/open/floor/plating/airless,/area/shuttle/abandoned)
-"cYr" = (/obj/machinery/hydroponics/constructable,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cYs" = (/obj/machinery/hydroponics/constructable,/obj/item/seeds/glowshroom,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cYt" = (/obj/structure/table,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/obj/item/weapon/storage/box/monkeycubes{pixel_y = 4},/obj/item/weapon/storage/fancy/egg_box{pixel_y = 5},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cYu" = (/obj/structure/table,/obj/machinery/reagentgrinder{pixel_y = 6},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cYv" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/condiment/flour,/obj/item/weapon/reagent_containers/food/condiment/flour,/obj/item/weapon/reagent_containers/food/condiment/flour,/obj/item/weapon/reagent_containers/food/condiment/flour,/obj/item/weapon/reagent_containers/food/condiment/milk,/obj/item/weapon/reagent_containers/food/condiment/milk,/obj/item/weapon/reagent_containers/food/condiment/milk,/obj/item/weapon/reagent_containers/food/condiment/soymilk,/obj/item/weapon/reagent_containers/food/condiment/soymilk,/obj/item/weapon/reagent_containers/food/condiment/sugar,/obj/item/weapon/reagent_containers/food/condiment/sugar,/obj/item/weapon/reagent_containers/food/condiment/sugar,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cYw" = (/obj/structure/table,/obj/item/weapon/reagent_containers/glass/beaker{pixel_x = 5},/obj/item/weapon/reagent_containers/food/condiment/enzyme{layer = 5},/obj/item/weapon/reagent_containers/dropper,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cYx" = (/obj/structure/table,/obj/item/weapon/reagent_containers/glass/beaker{pixel_x = 5;pixel_y = 2},/obj/item/weapon/reagent_containers/glass/beaker,/obj/item/weapon/reagent_containers/dropper,/obj/item/weapon/reagent_containers/syringe,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cYy" = (/obj/structure/table,/obj/item/weapon/hand_labeler,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cYz" = (/obj/structure/table,/obj/item/weapon/folder/white{pixel_x = 4;pixel_y = -3},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cYA" = (/obj/structure/table,/obj/item/weapon/defibrillator,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cYB" = (/obj/structure/table,/obj/item/clothing/gloves/color/latex,/obj/item/clothing/mask/surgical,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/obj/item/clothing/suit/apron/surgical,/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cYC" = (/obj/structure/table,/obj/item/weapon/reagent_containers/glass/bottle/epinephrine{pixel_x = 6;pixel_y = 0},/obj/item/weapon/reagent_containers/glass/bottle/charcoal{pixel_x = -3},/obj/item/weapon/reagent_containers/syringe,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor.";name = "dust"},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cYD" = (/obj/structure/table,/obj/item/weapon/storage/backpack/dufflebag/med{contents = newlist(/obj/item/weapon/scalpel,/obj/item/weapon/hemostat,/obj/item/weapon/retractor,/obj/item/weapon/cautery,/obj/item/weapon/circular_saw,/obj/item/weapon/surgicaldrill,/obj/item/weapon/razor);desc = "A large dufflebag for holding extra medical supplies - this one seems to be designed for holding surgical tools.";name = "surgical dufflebag";pixel_y = 4},/turf/open/floor/mineral/titanium,/area/shuttle/abandoned)
-"cYE" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/turf/open/floor/plasteel/yellow/side{dir = 1},/area/mining_construction)
-"cYF" = (/obj/structure/grille,/obj/structure/window/shuttle,/turf/open/floor/plating,/area/shuttle/escape)
-"cYG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/turf/open/floor/plasteel/yellow/side,/area/mining_construction)
-"cYH" = (/obj/machinery/door/airlock/titanium{name = "Emergency Shuttle Airlock"},/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape)
-"cYI" = (/turf/closed/wall/mineral/titanium/nodiagonal,/area/shuttle/escape)
-"cYJ" = (/obj/machinery/door/airlock/titanium{name = "Emergency Shuttle Airlock"},/obj/docking_port/mobile/emergency{dir = 2;dwidth = 5;height = 14;name = "Meta emergency shuttle";width = 25},/obj/docking_port/stationary{dheight = 0;dir = 2;dwidth = 9;height = 25;id = "emergency_home";name = "MetaStation emergency evac bay";width = 29},/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape)
-"cYK" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{icon_state = "4-8";d1 = 4;d2 = 8},/obj/machinery/computer/security/telescreen{desc = "Used for the Auxillary Mining Base.";dir = 1;name = "Auxillary Base Monitor";network = list("AuxBase");pixel_x = 0;pixel_y = -28},/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plasteel/yellow/side,/area/mining_construction)
-"cYL" = (/obj/machinery/door/poddoor/shutters{id = "aux_base_shutters";name = "Auxillary Base Shutters"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/mining_construction)
-"cYM" = (/obj/structure/tank_dispenser/oxygen{layer = 2.7;pixel_x = -1;pixel_y = 2},/turf/open/floor/mineral/titanium,/area/shuttle/escape)
-"cYN" = (/obj/item/clothing/suit/hazardvest{desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks.";name = "emergency lifejacket"},/obj/item/clothing/suit/hazardvest{desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks.";name = "emergency lifejacket"},/obj/item/clothing/suit/hazardvest{desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks.";name = "emergency lifejacket"},/obj/item/clothing/suit/hazardvest{desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks.";name = "emergency lifejacket"},/obj/item/clothing/suit/hazardvest{desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks.";name = "emergency lifejacket"},/obj/item/weapon/tank/internals/emergency_oxygen/double{pixel_x = 3},/obj/item/weapon/tank/internals/emergency_oxygen/double{pixel_x = 3},/obj/item/weapon/tank/internals/emergency_oxygen/double{pixel_x = 3},/obj/item/weapon/tank/internals/emergency_oxygen/double{pixel_x = 3},/obj/item/weapon/tank/internals/emergency_oxygen/double{pixel_x = 3},/obj/item/clothing/mask/breath{pixel_x = -3;pixel_y = -3},/obj/item/clothing/mask/breath{pixel_x = -3;pixel_y = -3},/obj/item/clothing/mask/breath{pixel_x = -3;pixel_y = -3},/obj/item/clothing/mask/breath{pixel_x = -3;pixel_y = -3},/obj/item/clothing/mask/breath{pixel_x = -3;pixel_y = -3},/obj/item/clothing/head/hardhat/orange{name = "protective hat";pixel_y = 9},/obj/item/clothing/head/hardhat/orange{name = "protective hat";pixel_y = 9},/obj/item/clothing/head/hardhat/orange{name = "protective hat";pixel_y = 9},/obj/item/clothing/head/hardhat/orange{name = "protective hat";pixel_y = 9},/obj/item/clothing/head/hardhat/orange{name = "protective hat";pixel_y = 9},/obj/structure/closet/crate{name = "lifejackets"},/turf/open/floor/mineral/titanium,/area/shuttle/escape)
-"cYO" = (/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape)
-"cYP" = (/obj/machinery/door/airlock/engineering{cyclelinkeddir = 1;name = "Auxillary Base Construction";req_access_txt = "0";req_one_access_txt = "32;47;48"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel,/area/mining_construction)
-"cYQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/mining_construction)
-"cYR" = (/obj/structure/table,/obj/item/stack/medical/gauze,/obj/item/stack/medical/bruise_pack,/obj/item/stack/medical/ointment,/turf/open/floor/mineral/titanium,/area/shuttle/escape)
-"cYS" = (/obj/item/device/radio/intercom{dir = 4;name = "Station Intercom (General)";pixel_x = 0;pixel_y = 27},/obj/structure/chair,/turf/open/floor/mineral/titanium,/area/shuttle/escape)
-"cYT" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"cYU" = (/obj/structure/table,/obj/item/weapon/clipboard,/obj/item/weapon/folder/yellow,/obj/item/weapon/pen,/obj/item/hand_labeler_refill,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/shuttle/escape)
-"cYV" = (/turf/open/floor/plasteel/floorgrime,/area/shuttle/escape)
-"cYW" = (/obj/structure/closet/crate/medical{name = "medical crate"},/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/storage/firstaid/o2{pixel_x = 3;pixel_y = 3},/obj/item/weapon/storage/firstaid/toxin{pixel_x = -4;pixel_y = 3},/obj/item/device/healthanalyzer{pixel_x = 3;pixel_y = 3},/obj/item/weapon/lazarus_injector,/obj/effect/turf_decal/bot,/mob/living/simple_animal/bot/medbot{name = "\improper emergency medibot";pixel_x = -3;pixel_y = 2},/turf/open/floor/plasteel,/area/shuttle/escape)
-"cYX" = (/obj/item/weapon/cigbutt,/turf/open/floor/plasteel/floorgrime,/area/shuttle/escape)
-"cYY" = (/obj/structure/extinguisher_cabinet,/turf/closed/wall/mineral/titanium/nodiagonal,/area/shuttle/escape)
-"cYZ" = (/obj/machinery/vending/wallmed{name = "Emergency NanoMed";pixel_x = 0;pixel_y = 0;req_access_txt = "0";use_power = 0},/turf/closed/wall/mineral/titanium/nodiagonal,/area/shuttle/escape)
-"cZa" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"cZb" = (/obj/structure/closet/crate{name = "emergency supplies crate"},/obj/item/weapon/storage/toolbox/emergency,/obj/item/weapon/storage/toolbox/emergency,/obj/item/device/flashlight/flare{pixel_x = 3;pixel_y = 3},/obj/item/device/flashlight/flare{pixel_x = -6;pixel_y = -2},/obj/item/weapon/crowbar,/obj/item/weapon/wrench,/obj/item/device/radio,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/shuttle/escape)
-"cZc" = (/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = 29},/turf/open/floor/plasteel/chapel,/area/chapel/main)
-"cZd" = (/obj/structure/chair/comfy/black{dir = 8},/turf/open/floor/plasteel/chapel{dir = 4},/area/chapel/main)
-"cZe" = (/turf/closed/wall/mineral/titanium,/area/shuttle/escape)
-"cZf" = (/obj/structure/chair,/obj/machinery/light{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"cZg" = (/obj/structure/sign/nosmoking_2,/turf/closed/wall/mineral/titanium,/area/shuttle/escape)
-"cZh" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/yellow/corner{dir = 4},/area/hallway/secondary/entry{name = "Arrivals"})
-"cZi" = (/obj/structure/chair,/turf/open/floor/mineral/titanium,/area/shuttle/escape)
-"cZj" = (/obj/structure/shuttle/engine/propulsion{dir = 4},/turf/open/floor/plating/airless,/area/shuttle/escape)
-"cZk" = (/obj/item/device/radio/intercom{dir = 2;name = "Station Intercom (General)";pixel_x = 0;pixel_y = -31},/obj/structure/chair{dir = 1},/turf/open/floor/mineral/titanium,/area/shuttle/escape)
-"cZl" = (/obj/structure/shuttle/engine/heater{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plating/airless,/area/shuttle/escape)
-"cZm" = (/obj/structure/chair/office/dark{dir = 1},/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape)
-"cZn" = (/obj/machinery/status_display,/turf/closed/wall/mineral/titanium,/area/shuttle/escape)
-"cZo" = (/obj/structure/chair{dir = 1},/turf/open/floor/mineral/titanium,/area/shuttle/escape)
-"cZp" = (/obj/machinery/door/airlock/glass_medical{id_tag = null;name = "Escape Shuttle Infirmary";req_access_txt = "0"},/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape)
-"cZq" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable/yellow{icon_state = "4-8";d1 = 4;d2 = 8},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry{name = "Arrivals"})
-"cZr" = (/obj/structure/sign/bluecross_2,/turf/closed/wall/mineral/titanium,/area/shuttle/escape)
-"cZs" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/toxin,/obj/item/weapon/storage/firstaid/o2{pixel_x = 3;pixel_y = 3},/turf/open/floor/mineral/titanium,/area/shuttle/escape)
-"cZt" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/fire,/obj/item/weapon/storage/firstaid/regular{pixel_x = 2;pixel_y = 3},/turf/open/floor/mineral/titanium,/area/shuttle/escape)
-"cZu" = (/obj/machinery/status_display{dir = 8;pixel_x = 32;pixel_y = 0},/obj/machinery/holopad,/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape)
-"cZv" = (/turf/open/floor/bluegrid{name = "Killroom Floor";initial_gas_mix = "n2=500;TEMP=80"},/area/toxins/xenobiology)
-"cZw" = (/obj/structure/table,/obj/item/weapon/reagent_containers/glass/bottle/epinephrine{pixel_x = 6;pixel_y = 0},/obj/item/weapon/reagent_containers/glass/bottle/charcoal{pixel_x = -3},/obj/item/weapon/reagent_containers/glass/bottle/epinephrine{pixel_x = -3;pixel_y = 8},/obj/item/weapon/reagent_containers/glass/bottle/charcoal{pixel_x = 6;pixel_y = 8},/obj/item/weapon/reagent_containers/syringe/epinephrine{pixel_x = 3;pixel_y = -2},/obj/item/weapon/reagent_containers/syringe/epinephrine{pixel_x = 4;pixel_y = 1},/obj/item/weapon/reagent_containers/syringe/epinephrine{pixel_x = -2;pixel_y = 5},/obj/item/weapon/reagent_containers/syringe/epinephrine{pixel_x = 2;pixel_y = 8},/turf/open/floor/mineral/titanium,/area/shuttle/escape)
-"cZx" = (/obj/structure/table,/obj/item/weapon/defibrillator/loaded,/turf/open/floor/mineral/titanium,/area/shuttle/escape)
-"cZy" = (/obj/structure/table,/obj/item/weapon/paper_bin{pixel_x = -2;pixel_y = 8},/obj/item/device/radio/intercom{dir = 2;name = "Station Intercom (General)";pixel_x = 0;pixel_y = -31},/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape)
-"cZz" = (/obj/structure/table/optable,/obj/item/weapon/surgical_drapes,/turf/open/floor/mineral/titanium,/area/shuttle/escape)
-"cZA" = (/obj/structure/table,/obj/item/weapon/folder/blue,/obj/structure/extinguisher_cabinet{dir = 4;pixel_x = 0;pixel_y = -27},/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape)
-"cZB" = (/obj/machinery/space_heater,/obj/structure/extinguisher_cabinet{dir = 4;pixel_x = 0;pixel_y = -27},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/shuttle/escape)
-"cZC" = (/obj/machinery/door/airlock/titanium{name = "Emergency Shuttle Cargo Bay Airlock"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/shuttle/escape)
-"cZD" = (/obj/structure/chair{dir = 4},/turf/open/floor/mineral/plastitanium/brig,/area/shuttle/escape)
-"cZE" = (/obj/structure/table,/obj/item/weapon/storage/box/handcuffs{pixel_x = 2;pixel_y = 2},/turf/open/floor/mineral/plastitanium/brig,/area/shuttle/escape)
-"cZF" = (/obj/structure/chair,/turf/open/floor/mineral/plastitanium/brig,/area/shuttle/escape)
-"cZG" = (/turf/open/floor/mineral/plastitanium/brig,/area/shuttle/escape)
-"cZH" = (/obj/structure/table,/obj/machinery/recharger{active_power_usage = 0;idle_power_usage = 0;use_power = 0},/turf/open/floor/mineral/plastitanium/brig,/area/shuttle/escape)
-"cZI" = (/obj/machinery/door/airlock/glass_security{name = "Brig";req_access_txt = "2"},/turf/open/floor/mineral/plastitanium/brig,/area/shuttle/escape)
-"cZJ" = (/obj/structure/table,/obj/item/weapon/restraints/handcuffs{pixel_y = 3},/turf/open/floor/mineral/plastitanium/brig,/area/shuttle/escape)
-"cZK" = (/obj/structure/closet/emcloset,/turf/open/floor/mineral/titanium,/area/shuttle/escape)
-"cZL" = (/obj/structure/chair{dir = 4},/turf/open/floor/plasteel/floorgrime,/area/shuttle/escape)
-"cZM" = (/obj/machinery/shower,/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape)
-"cZN" = (/obj/machinery/sleeper{dir = 8},/turf/open/floor/mineral/titanium,/area/shuttle/escape)
-"cZO" = (/obj/structure/rack,/obj/item/weapon/crowbar,/obj/item/weapon/wrench,/obj/item/weapon/weldingtool,/obj/item/weapon/wirecutters,/obj/item/stack/cable_coil,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/shuttle/escape)
-"cZP" = (/obj/structure/reagent_dispensers/watertank,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/shuttle/escape)
-"cZQ" = (/obj/machinery/door/airlock/glass_command{name = "Cockpit";req_access_txt = "19"},/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape)
-"cZR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/chair{dir = 4},/obj/effect/landmark/start{name = "Security Officer"},/turf/open/floor/plasteel/red/side{dir = 8},/area/security/main)
-"cZS" = (/obj/structure/table,/obj/item/weapon/restraints/handcuffs{pixel_y = 3},/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape)
-"cZT" = (/obj/structure/table,/obj/item/weapon/storage/firstaid/regular,/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape)
-"cZU" = (/obj/structure/reagent_dispensers/fueltank,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/shuttle/escape)
-"cZV" = (/obj/machinery/door/airlock/command{name = "Emergency Recovery Airlock";req_access = null;req_access_txt = "19"},/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape)
-"cZW" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/shuttle/escape)
-"cZX" = (/obj/machinery/recharge_station,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/shuttle/escape)
-"cZY" = (/obj/structure/chair{dir = 8},/turf/open/floor/mineral/plastitanium/brig,/area/shuttle/escape)
-"cZZ" = (/obj/structure/chair/office/dark{dir = 8},/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape)
-"daa" = (/obj/machinery/computer/security,/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape)
-"dab" = (/obj/structure/reagent_dispensers/peppertank,/turf/closed/wall/mineral/titanium,/area/shuttle/escape)
-"dac" = (/obj/structure/rack,/obj/item/weapon/storage/toolbox/electrical{pixel_x = -3;pixel_y = 1},/obj/item/weapon/storage/toolbox/mechanical{pixel_x = 0;pixel_y = -1},/obj/item/weapon/storage/toolbox/emergency{pixel_x = 3;pixel_y = -5},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/shuttle/escape)
-"dad" = (/obj/machinery/suit_storage_unit/standard_unit,/turf/open/floor/plasteel/floorgrime,/area/shuttle/escape)
-"dae" = (/obj/machinery/door/airlock/external{name = "Emergency Recovery Airlock"},/turf/open/floor/plasteel/floorgrime,/area/shuttle/escape)
-"daf" = (/obj/machinery/computer/crew,/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape)
-"dag" = (/obj/structure/chair/office/dark,/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape)
-"dah" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/shuttle/escape)
-"dai" = (/obj/structure/table,/obj/item/weapon/storage/fancy/donut_box,/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape)
-"daj" = (/obj/structure/table,/obj/item/weapon/phone{pixel_x = -3;pixel_y = 3},/obj/item/weapon/cigbutt/cigarbutt{pixel_x = 5;pixel_y = -1},/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape)
-"dak" = (/obj/machinery/computer/communications,/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape)
-"dal" = (/obj/machinery/computer/emergency_shuttle,/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape)
-"dam" = (/obj/structure/table,/obj/item/weapon/storage/toolbox/emergency{pixel_y = 3},/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape)
-"dan" = (/obj/machinery/computer/station_alert,/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape)
-"dao" = (/obj/structure/table,/obj/machinery/recharger{active_power_usage = 0;idle_power_usage = 0;pixel_y = 4;use_power = 0},/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape)
-"dap" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/chair{dir = 8},/obj/effect/landmark/start{name = "Security Officer"},/turf/open/floor/plasteel/red/side{dir = 4},/area/security/main)
-"daq" = (/obj/structure/table,/obj/item/weapon/folder/red{pixel_x = 3},/obj/item/weapon/folder/white{pixel_x = -4;pixel_y = 2},/obj/item/device/radio/intercom{dir = 2;name = "Station Intercom (General)";pixel_x = 0;pixel_y = -31},/obj/item/weapon/book/manual/wiki/security_space_law{pixel_x = -4;pixel_y = 4},/turf/open/floor/mineral/plastitanium/brig,/area/shuttle/escape)
-"dar" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plasteel/floorgrime,/area/shuttle/escape)
-"das" = (/obj/structure/table,/obj/item/weapon/scalpel{pixel_y = 12},/obj/item/weapon/circular_saw,/obj/item/weapon/retractor{pixel_x = 4},/obj/item/weapon/hemostat{pixel_x = -4},/obj/item/clothing/gloves/color/latex,/obj/item/clothing/mask/surgical,/obj/item/device/radio/intercom{dir = 2;name = "Station Intercom (General)";pixel_x = -27;pixel_y = 0},/turf/open/floor/mineral/titanium,/area/shuttle/escape)
-"dat" = (/obj/machinery/vending/wallmed{name = "Emergency NanoMed";pixel_x = 0;pixel_y = 0;req_access_txt = "0";use_power = 0},/turf/closed/wall/mineral/titanium,/area/shuttle/escape)
-"dau" = (/obj/structure/sink,/turf/open/floor/mineral/titanium/blue,/area/shuttle/escape)
-"dav" = (/obj/structure/rack{dir = 1},/obj/item/weapon/tank/internals/oxygen/red,/obj/item/clothing/suit/fire/firefighter,/obj/item/clothing/mask/gas,/obj/item/clothing/head/hardhat/red,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/shuttle/escape)
-"daw" = (/obj/item/device/radio/intercom{dir = 2;name = "Station Intercom (General)";pixel_x = 0;pixel_y = -31},/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/shuttle/escape)
-"dax" = (/obj/structure/extinguisher_cabinet,/turf/closed/wall/mineral/titanium,/area/shuttle/escape)
-"day" = (/turf/open/space,/area/shuttle/syndicate)
-"daz" = (/obj/machinery/porta_turret/syndicate{dir = 5},/turf/closed/wall/mineral/plastitanium,/area/shuttle/syndicate)
-"daA" = (/obj/machinery/door/window/southleft{dir = 2;name = "Maximum Security Test Chamber";req_access_txt = "55"},/obj/machinery/door/poddoor/preopen{id = "Xenolab";name = "test chamber blast door"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/engine,/area/toxins/xenobiology)
-"daB" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/open/floor/engine,/area/toxins/xenobiology)
-"daC" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'";icon_state = "shock";name = "HIGH VOLTAGE"},/turf/closed/wall/r_wall,/area/toxins/xenobiology)
-"daD" = (/obj/structure/disposaloutlet{dir = 2},/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/engine,/area/toxins/xenobiology)
-"daE" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 10},/obj/item/device/electropack,/turf/open/floor/engine,/area/toxins/xenobiology)
-"daF" = (/obj/machinery/sparker{id = "Xenobio";pixel_x = -25},/turf/open/floor/engine,/area/toxins/xenobiology)
-"daG" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1},/turf/open/floor/engine,/area/toxins/xenobiology)
-"daH" = (/obj/item/device/radio/beacon,/turf/open/floor/engine,/area/toxins/xenobiology)
-"daI" = (/obj/structure/table,/obj/machinery/cell_charger{pixel_y = 5},/obj/item/stack/cable_coil,/obj/item/device/multitool,/obj/item/weapon/stock_parts/cell/high{charge = 100;maxcharge = 15000},/turf/open/floor/engine,/area/toxins/xenobiology)
-"daJ" = (/obj/effect/spawner/lootdrop{loot = list(/obj/effect/decal/remains/xeno = 49, /obj/structure/alien/egg = 1);name = "2% chance xeno egg spawner"},/turf/open/floor/engine,/area/toxins/xenobiology)
-"daK" = (/obj/machinery/camera{c_tag = "Xenobiology Lab - Test Chamber";dir = 1;network = list("SS13","RD","Xeno")},/turf/open/floor/engine,/area/toxins/xenobiology)
-"daL" = (/obj/machinery/light/small,/turf/open/floor/engine,/area/toxins/xenobiology)
-"daM" = (/obj/structure/table,/obj/item/device/assembly/igniter{pixel_x = -5;pixel_y = 3},/obj/item/device/assembly/igniter{pixel_x = 5;pixel_y = -4},/obj/item/device/assembly/igniter{pixel_x = 2;pixel_y = 6},/obj/item/device/assembly/igniter{pixel_x = 2;pixel_y = -1},/turf/open/floor/engine,/area/toxins/xenobiology)
-"daN" = (/obj/item/device/radio/intercom{pixel_y = -25},/turf/open/floor/engine,/area/toxins/xenobiology)
-"daO" = (/obj/structure/disposalpipe/segment{dir = 1;icon_state = "pipe-c"},/turf/open/floor/plating,/area/toxins/xenobiology)
-"daP" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 6;initialize_directions = 6},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/toxins/xenobiology)
-"daQ" = (/obj/structure/disposalpipe/segment{dir = 2;icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plating,/area/toxins/xenobiology)
-"daR" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 140;on = 1;pressure_checks = 0},/turf/open/floor/bluegrid{name = "Killroom Floor";initial_gas_mix = "n2=500;TEMP=80"},/area/toxins/xenobiology)
-"daS" = (/obj/structure/disposalpipe/segment,/turf/open/floor/bluegrid{name = "Killroom Floor";initial_gas_mix = "n2=500;TEMP=80"},/area/toxins/xenobiology)
-"daT" = (/turf/open/space,/obj/machinery/porta_turret/syndicate{dir = 6},/turf/closed/wall/mineral/plastitanium{dir = 4;icon_state = "diagonalWall3"},/area/shuttle/syndicate)
-"daU" = (/obj/structure/cable{tag = "icon-0-4";icon_state = "0-4"},/obj/machinery/power/tesla_coil,/turf/open/floor/plating/airless,/area/space)
-"daV" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/engine/engineering)
-"daW" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2";pixel_y = 0},/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4";tag = ""},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/engine/engineering)
-"daX" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating{icon_state = "platingdmg2"},/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"daY" = (/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8";tag = ""},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plating,/area/engine/engineering)
-"daZ" = (/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/engine/engineering)
-"dba" = (/obj/structure/grille,/obj/structure/window/reinforced/fulltile,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/turf/open/floor/plating,/area/engine/engineering)
-"dbb" = (/obj/item/weapon/wirecutters,/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/engine/engineering)
-"dbc" = (/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8";tag = ""},/turf/open/floor/plating/airless,/area/space)
-"dbd" = (/obj/structure/sink/kitchen{pixel_y = 28},/turf/open/floor/wood,/area/crew_quarters/bar)
-"dbe" = (/obj/machinery/keycard_auth{pixel_x = 26;pixel_y = 0},/turf/open/floor/carpet,/area/crew_quarters/heads)
-"dbf" = (/obj/structure/cable{icon_state = "0-2";d2 = 2},/obj/machinery/power/tesla_coil,/turf/open/floor/plating/airless,/area/space)
-"dbg" = (/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/turf/open/floor/plating/airless,/area/space)
-"dbh" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_x = 0;tag = ""},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating/airless,/area/space)
-"dbi" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating/airless,/area/space)
-"dbj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/starboard)
-"dbk" = (/obj/item/hand_labeler_refill,/obj/structure/easel,/turf/open/floor/plating,/area/maintenance/fpmaint2{name = "Port Maintenance"})
-"dbl" = (/obj/structure/easel,/turf/open/floor/plating,/area/maintenance/aft{name = "Aft Maintenance"})
-"dbm" = (/turf/open/floor/plasteel,/area/ai_monitored/storage/eva{name = "E.V.A. Storage"})
-"dbn" = (/turf/open/floor/plasteel/showroomfloor,/area/crew_quarters/kitchen)
-"dbo" = (/obj/machinery/light/small{dir = 8},/obj/machinery/camera{c_tag = "Xenobiology Lab - Pen #3";dir = 4;network = list("SS13","RD","Xeno")},/turf/open/floor/engine,/area/toxins/xenobiology)
-"dbp" = (/obj/machinery/light/small{dir = 4},/obj/machinery/camera{c_tag = "Xenobiology Lab - Pen #4";dir = 8;network = list("SS13","RD","Xeno")},/turf/open/floor/engine,/area/toxins/xenobiology)
-"dbq" = (/turf/open/floor/wood{icon_state = "wood-broken6"},/area/maintenance/aft{name = "Aft Maintenance"})
-"dbr" = (/obj/machinery/camera{c_tag = "Morgue";dir = 2;network = list("SS13","Medbay")},/turf/open/floor/plasteel/black,/area/medical/morgue)
-"dbs" = (/obj/machinery/light/small{dir = 8},/obj/machinery/camera{c_tag = "Xenobiology Lab - Pen #5";dir = 4;network = list("SS13","RD","Xeno")},/turf/open/floor/engine,/area/toxins/xenobiology)
-"dbt" = (/obj/machinery/light/small{dir = 4},/obj/machinery/camera{c_tag = "Xenobiology Lab - Pen #6";dir = 8;network = list("SS13","RD","Xeno")},/turf/open/floor/engine,/area/toxins/xenobiology)
-"dbu" = (/turf/open/floor/engine/vacuum,/area/atmos)
-"dbv" = (/obj/structure/disposalpipe/segment,/obj/machinery/light/small,/turf/open/floor/bluegrid{name = "Killroom Floor";initial_gas_mix = "n2=500;TEMP=80"},/area/toxins/xenobiology)
-"dbw" = (/obj/machinery/camera{c_tag = "Xenobiology Lab - Kill Chamber";dir = 1;network = list("SS13","RD","Xeno");start_active = 1},/turf/open/floor/bluegrid{name = "Killroom Floor";initial_gas_mix = "n2=500;TEMP=80"},/area/toxins/xenobiology)
-"dbx" = (/obj/structure/table/optable,/obj/item/weapon/surgical_drapes,/turf/open/floor/mineral/titanium,/area/shuttle/syndicate)
-"dby" = (/obj/structure/table,/obj/item/weapon/cautery,/obj/item/weapon/scalpel,/turf/open/floor/mineral/titanium,/area/shuttle/syndicate)
-"dbz" = (/obj/structure/table,/obj/item/weapon/retractor,/obj/item/weapon/hemostat,/turf/open/floor/mineral/titanium,/area/shuttle/syndicate)
-"dbA" = (/obj/structure/table,/obj/item/stack/sheet/metal{amount = 50},/obj/item/stack/sheet/glass{amount = 50},/obj/item/stack/rods{amount = 50},/turf/open/floor/mineral/plastitanium,/area/shuttle/syndicate)
-"dbB" = (/obj/docking_port/stationary{dheight = 9;dir = 2;dwidth = 5;height = 24;id = "syndicate_se";name = "southeast of station";turf_type = /turf/open/space;width = 18},/turf/open/space,/area/space)
-"dbC" = (/obj/docking_port/stationary{dheight = 9;dir = 2;dwidth = 5;height = 24;id = "syndicate_sw";name = "southwest of station";turf_type = /turf/open/space;width = 18},/turf/open/space,/area/space)
-"dbD" = (/obj/docking_port/stationary{dheight = 9;dir = 2;dwidth = 5;height = 24;id = "syndicate_s";name = "south of station";turf_type = /turf/open/space;width = 18},/turf/open/space,/area/space)
-"dbE" = (/obj/machinery/plantgenes,/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/hydroponics)
-"dbF" = (/obj/structure/bookcase{name = "Holy Bookcase"},/turf/open/floor/plasteel/chapel{dir = 4},/area/chapel/main)
-"dbG" = (/turf/open/space,/obj/machinery/porta_turret/syndicate{dir = 10},/turf/closed/wall/mineral/plastitanium{icon_state = "diagonalWall3"},/area/shuttle/syndicate)
-"dbH" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{cyclelinkeddir = 1;id_tag = "ResearchInt";name = "Research Division";req_access_txt = "0";req_one_access_txt = "47"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/medical/research{name = "Research Division"})
-"dbI" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{cyclelinkeddir = 1;id_tag = "ResearchInt";name = "Research Division";req_access_txt = "0";req_one_access_txt = "47"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/medical/research{name = "Research Division"})
-"dbJ" = (/obj/structure/cable{icon_state = "0-4";d2 = 4},/obj/machinery/power/solar{id = "aftstarboard";name = "Aft-Starboard Solar Array"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/starboard)
-"dbK" = (/obj/structure/lattice/catwalk,/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8";tag = ""},/turf/open/space,/area/solar/starboard)
-"dbL" = (/obj/structure/cable{d2 = 8;icon_state = "0-8"},/obj/machinery/power/solar{id = "aftstarboard";name = "Aft-Starboard Solar Array"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/starboard)
-"dbM" = (/obj/structure/lattice/catwalk,/obj/structure/cable{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable{d1 = 2;d2 = 8;icon_state = "2-8";tag = ""},/obj/structure/cable{tag = "icon-1-2";icon_state = "1-2"},/turf/open/space,/area/solar/starboard)
-"dbN" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/starboardsolar)
-"dbO" = (/obj/structure/lattice/catwalk,/obj/structure/cable,/turf/open/space,/area/solar/starboard)
-"dbP" = (/obj/machinery/door/airlock/external{name = "Solar Maintenance";req_access = null;req_access_txt = "10; 13"},/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/floor/plating,/area/maintenance/starboardsolar)
-"dbQ" = (/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating,/area/maintenance/starboardsolar)
-"dbR" = (/obj/structure/lattice/catwalk,/obj/structure/cable{d1 = 4;d2 = 8;icon_state = "4-8";pixel_y = 0},/turf/open/space,/area/solar/starboard)
-"dbS" = (/obj/structure/lattice/catwalk,/obj/item/stack/cable_coil,/turf/open/space,/area/solar/starboard)
-"dbT" = (/obj/structure/lattice/catwalk,/obj/structure/cable{tag = "icon-0-4";icon_state = "0-4"},/turf/open/space,/area/solar/starboard)
-"dbU" = (/obj/machinery/power/tracker,/obj/structure/cable{d2 = 8;icon_state = "0-8"},/turf/open/floor/plating/airless,/area/solar/starboard)
-"dbV" = (/obj/structure/lattice/catwalk,/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/space,/area/solar/starboard)
-"dbW" = (/obj/structure/lattice/catwalk,/obj/structure/cable{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/obj/structure/cable{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/space,/area/solar/starboard)
-"dbX" = (/obj/machinery/atmospherics/components/unary/vent_pump{on = 1},/obj/structure/sink{icon_state = "sink";dir = 8;pixel_x = -12;pixel_y = 2},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"dbY" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"dbZ" = (/obj/machinery/doorButtons/access_button{idDoor = "xeno_airlock_interior";idSelf = "xeno_airlock_control";name = "Access Button";pixel_x = 29;pixel_y = -8;req_access_txt = "0"},/obj/machinery/firealarm{dir = 2;pixel_y = 24},/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 2;on = 1;scrub_Toxins = 0},/obj/machinery/light{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"dca" = (/obj/machinery/firealarm{dir = 2;pixel_y = 26},/turf/open/floor/plasteel/whitepurple/side{dir = 1},/area/toxins/xenobiology)
-"dcb" = (/obj/machinery/airalarm{frequency = 1439;pixel_y = 23},/obj/machinery/camera{c_tag = "Xenobiology Lab - Fore";dir = 2;network = list("SS13","RD")},/turf/open/floor/plasteel/whitepurple/side{dir = 1},/area/toxins/xenobiology)
-"dcc" = (/obj/structure/table/glass,/obj/item/stack/sheet/mineral/plasma{layer = 2.9;pixel_y = 4},/obj/item/stack/sheet/mineral/plasma{layer = 2.9;pixel_y = 4},/obj/item/stack/sheet/mineral/plasma{layer = 2.9;pixel_y = 4},/obj/item/stack/sheet/mineral/plasma{layer = 2.9;pixel_y = 4},/obj/item/weapon/reagent_containers/glass/beaker{pixel_x = 8;pixel_y = 2},/obj/item/weapon/reagent_containers/glass/beaker/large{pixel_x = -3;pixel_y = 3},/obj/item/weapon/reagent_containers/dropper,/obj/machinery/power/apc{cell_type = 10000;dir = 1;name = "Xenobiology APC";pixel_x = 0;pixel_y = 27},/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/turf/open/floor/plasteel/whitepurple/side{dir = 1},/area/toxins/xenobiology)
-"dcd" = (/obj/structure/table/glass,/obj/item/weapon/paper_bin{pixel_y = 4},/obj/item/weapon/folder/white{pixel_x = 4;pixel_y = 4},/obj/item/weapon/pen{pixel_x = -4},/obj/machinery/requests_console{department = "Science";departmentType = 2;name = "Science Requests Console";pixel_x = 0;pixel_y = 30},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/whitepurple/side{dir = 1},/area/toxins/xenobiology)
-"dce" = (/obj/structure/table/glass,/obj/item/weapon/storage/box/beakers{pixel_x = 2;pixel_y = 7},/obj/item/weapon/storage/box/syringes{pixel_y = 5},/obj/item/weapon/storage/box/monkeycubes{pixel_x = 2;pixel_y = -2},/obj/item/weapon/storage/box/monkeycubes,/turf/open/floor/plasteel/whitepurple/side{dir = 1},/area/toxins/xenobiology)
-"dcf" = (/obj/structure/sink{dir = 4;icon_state = "sink";pixel_x = 11;pixel_y = 0},/turf/open/floor/plasteel/whitepurple/side{dir = 5},/area/toxins/xenobiology)
-"dcg" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/shower{icon_state = "shower";dir = 4},/obj/item/device/radio/intercom{freerange = 0;frequency = 1459;name = "Station Intercom (General)";pixel_x = -29},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"dch" = (/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4";tag = "90Curve"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"dci" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 2;initialize_directions = 11},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"dcj" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{autoclose = 0;frequency = 1449;icon_state = "door_locked";id_tag = "xeno_airlock_interior";locked = 1;name = "Xenobiology Lab Internal Airlock";req_access_txt = "55"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/whitepurple{dir = 4},/area/toxins/xenobiology)
-"dck" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/doorButtons/airlock_controller{idExterior = "xeno_airlock_exterior";idInterior = "xeno_airlock_interior";idSelf = "xeno_airlock_control";name = "Access Console";pixel_x = -25;pixel_y = -25},/turf/open/floor/plasteel/whitepurple/side{dir = 8},/area/toxins/xenobiology)
-"dcl" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1;initialize_directions = 11},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"dcm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/computer/camera_advanced/xenobio,/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/toxins/xenobiology)
-"dcn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/machinery/smartfridge/extract,/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/toxins/xenobiology)
-"dco" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/obj/machinery/computer/camera_advanced/xenobio,/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/toxins/xenobiology)
-"dcp" = (/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"dcq" = (/obj/structure/chair/office/light{dir = 1},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"dcr" = (/turf/open/floor/plasteel/whitepurple/side{dir = 4},/area/toxins/xenobiology)
-"dcs" = (/obj/structure/closet/emcloset,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/machinery/camera{c_tag = "Xenobiology Lab - Airlock";dir = 4;network = list("SS13","RD")},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"dct" = (/obj/structure/closet/l3closet/scientist,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"dcu" = (/obj/structure/closet/l3closet/scientist,/obj/machinery/airalarm{dir = 1;pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"dcv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/obj/structure/chair/comfy/black{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/toxins/xenobiology)
-"dcw" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/toxins/xenobiology)
-"dcx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/chair/comfy/black{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/toxins/xenobiology)
-"dcy" = (/obj/machinery/holopad,/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"dcz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/toxins/xenobiology)
-"dcA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"dcB" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 8;on = 1},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"dcC" = (/obj/structure/chair/office/light,/obj/effect/landmark/start{name = "Scientist"},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"dcD" = (/obj/machinery/reagentgrinder{pixel_x = -1;pixel_y = 8},/obj/structure/table/glass,/turf/open/floor/plasteel/whitepurple/side{dir = 4},/area/toxins/xenobiology)
-"dcE" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 4},/turf/open/floor/plating/airless,/area/toxins/xenobiology)
-"dcF" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/obj/structure/lattice/catwalk,/turf/open/space,/area/space)
-"dcG" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"dcH" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4;icon_state = "pipe-c"},/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"dcI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"dcJ" = (/obj/structure/reagent_dispensers/watertank,/obj/item/weapon/extinguisher{pixel_x = 4;pixel_y = 3},/obj/item/weapon/extinguisher,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"dcK" = (/obj/machinery/disposal/bin,/obj/structure/sign/deathsposal{pixel_x = 0;pixel_y = -32},/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel/whitepurple/corner{dir = 2},/area/toxins/xenobiology)
-"dcL" = (/obj/machinery/chem_dispenser/constructable,/obj/machinery/light,/turf/open/floor/plasteel/whitepurple/side,/area/toxins/xenobiology)
-"dcM" = (/obj/machinery/chem_master{pixel_x = -2;pixel_y = 1},/obj/item/device/radio/intercom{name = "Station Intercom (General)";pixel_y = -29},/turf/open/floor/plasteel/whitepurple/side,/area/toxins/xenobiology)
-"dcN" = (/obj/machinery/chem_heater,/turf/open/floor/plasteel/whitepurple/side{dir = 6},/area/toxins/xenobiology)
-"dcO" = (/obj/structure/sink{dir = 4;icon_state = "sink";pixel_x = 11;pixel_y = 0},/obj/machinery/camera{c_tag = "Xenobiology Lab - Central";dir = 8;network = list("SS13","RD")},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"dcP" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/obj/machinery/door/poddoor/preopen{id = "xenobio2";name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/toxins/xenobiology)
-"dcQ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/corner{dir = 8},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"dcR" = (/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/obj/machinery/door/poddoor/preopen{id = "xenobio7";name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/toxins/xenobiology)
-"dcS" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/obj/structure/cable/yellow,/obj/machinery/door/poddoor/preopen{id = "xenobio7";name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/toxins/xenobiology)
-"dcT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"dcU" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/obj/machinery/door/poddoor/preopen{id = "xenobio1";name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/toxins/xenobiology)
-"dcV" = (/obj/structure/window/reinforced,/obj/machinery/button/door{id = "xenobio6";name = "Containment Blast Doors";pixel_x = 0;pixel_y = 4;req_access_txt = "55"},/obj/structure/table/reinforced,/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/toxins/xenobiology)
-"dcW" = (/obj/structure/cable/yellow{d2 = 2;icon_state = "0-2"},/obj/machinery/door/poddoor/preopen{id = "xenobio6";name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/toxins/xenobiology)
-"dcX" = (/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/obj/structure/cable/yellow,/obj/machinery/door/poddoor/preopen{id = "xenobio1";name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/toxins/xenobiology)
-"dcY" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"dcZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/effect/turf_decal/stripes/corner,/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"dda" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/toxins/xenobiology)
-"ddb" = (/obj/structure/cable/yellow,/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "xenobio6";name = "containment blast door"},/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/toxins/xenobiology)
-"ddc" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;on = 1},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"ddd" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 1;on = 1;scrub_Toxins = 0},/obj/machinery/light{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"dde" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating,/area/toxins/xenobiology)
-"ddf" = (/obj/machinery/portable_atmospherics/canister,/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/camera{c_tag = "Xenobiology Lab - Aft-Port";dir = 4;network = list("SS13","RD")},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/toxins/xenobiology)
-"ddg" = (/obj/machinery/portable_atmospherics/canister,/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/machinery/camera{c_tag = "Xenobiology Lab - Aft-Starboard";dir = 8;network = list("SS13","RD")},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/toxins/xenobiology)
-"ddh" = (/turf/open/floor/plating{icon_state = "platingdmg3"},/area/toxins/xenobiology)
-"ddi" = (/obj/structure/rack,/turf/open/floor/plating,/area/toxins/xenobiology)
-"ddj" = (/turf/open/floor/plating{icon_state = "platingdmg2"},/area/toxins/xenobiology)
-"ddk" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/toxins/xenobiology)
-"ddl" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/item/device/radio/intercom{name = "Station Intercom (General)";pixel_y = -29},/obj/structure/cable/yellow{d1 = 2;d2 = 4;icon_state = "2-4"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"ddm" = (/obj/structure/disposalpipe/segment{dir = 8;icon_state = "pipe-c"},/obj/structure/cable/yellow{d1 = 1;d2 = 8;icon_state = "1-8"},/obj/structure/cable/yellow{d1 = 1;d2 = 4;icon_state = "1-4"},/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"ddn" = (/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 2},/turf/open/floor/plasteel/white,/area/toxins/xenobiology)
-"ddo" = (/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/toxins/xenobiology)
-"ddp" = (/obj/machinery/door/airlock/hatch{icon_state = "door_closed";name = "Test Chamber Maintenance";req_access_txt = "47";req_one_access_txt = "0"},/obj/structure/cable/yellow{d1 = 4;d2 = 8;icon_state = "4-8"},/turf/open/floor/plating,/area/toxins/xenobiology)
-"ddq" = (/obj/structure/cable/yellow{d1 = 2;d2 = 8;icon_state = "2-8"},/turf/open/floor/plating,/area/toxins/xenobiology)
-"ddr" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating,/area/toxins/xenobiology)
-"dds" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/toxins/xenobiology)
-"ddt" = (/obj/structure/cable/yellow{d1 = 1;d2 = 2;icon_state = "1-2"},/turf/open/floor/plating,/area/toxins/xenobiology)
-"ddu" = (/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/obj/structure/cable/yellow{d2 = 4;icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "Xenolab";name = "test chamber blast door"},/obj/structure/disposalpipe/segment,/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/toxins/xenobiology)
-"ddv" = (/obj/structure/cable/yellow{d2 = 8;icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "Xenolab";name = "test chamber blast door"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/toxins/xenobiology)
-"ddw" = (/obj/structure/cable/yellow,/turf/open/floor/plating,/area/toxins/xenobiology)
-"ddx" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/chair,/obj/item/weapon/cigbutt,/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 1;initialize_directions = 11},/turf/open/floor/plating,/area/toxins/xenobiology)
-"ddy" = (/turf/open/floor/plating{icon_state = "platingdmg1"},/area/toxins/xenobiology)
-"ddz" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/open/floor/plating,/area/toxins/xenobiology)
-"ddA" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{glass = 1;name = "Slime Euthanization Chamber";opacity = 0;req_access_txt = "55"},/turf/open/floor/plating,/area/toxins/xenobiology)
-"ddB" = (/obj/machinery/atmospherics/components/unary/vent_pump{dir = 1;external_pressure_bound = 120;initialize_directions = 1;internal_pressure_bound = 4000;on = 1;pressure_checks = 2;pump_direction = 0},/turf/open/floor/bluegrid{name = "Killroom Floor";initial_gas_mix = "n2=500;TEMP=80"},/area/toxins/xenobiology)
-"ddC" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/disposaloutlet,/turf/open/floor/plating/airless,/area/toxins/xenobiology)
-"ddD" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8;initialize_directions = 11},/obj/machinery/deepfryer,/turf/open/floor/plasteel/cafeteria{dir = 5},/area/crew_quarters/kitchen)
-"ddE" = (/obj/effect/landmark/start{name = "Cook"},/obj/machinery/holopad,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen)
-"ddF" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{color = "purple";dir = 5},/turf/open/floor/plasteel,/area/atmos)
-"ddG" = (/obj/structure/rack,/obj/effect/landmark/costume,/obj/effect/spawner/lootdrop/maintenance,/obj/item/drone_shell,/turf/open/floor/plating,/area/maintenance/starboard)
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"aaa" = (
+/turf/open/space,
+/area/space)
+"aab" = (
+/obj/docking_port/stationary{
+ dheight = 9;
+ dir = 2;
+ dwidth = 5;
+ height = 24;
+ id = "syndicate_n";
+ name = "north of station";
+ turf_type = /turf/open/space;
+ width = 18
+ },
+/turf/open/space,
+/area/space)
+"aac" = (
+/obj/effect/landmark{
+ name = "carpspawn"
+ },
+/turf/open/space,
+/area/space)
+"aad" = (
+/turf/open/space,
+/obj/machinery/porta_turret/syndicate{
+ dir = 9
+ },
+/turf/closed/wall/mineral/plastitanium{
+ dir = 8;
+ icon_state = "diagonalWall3"
+ },
+/area/shuttle/syndicate)
+"aae" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/shuttle/syndicate)
+"aaf" = (
+/obj/structure/lattice,
+/turf/open/space,
+/area/space)
+"aag" = (
+/obj/structure/grille,
+/obj/structure/lattice,
+/turf/open/space,
+/area/space)
+"aah" = (
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/machinery/power/tracker,
+/turf/open/floor/plating/airless,
+/area/solar/auxport)
+"aai" = (
+/obj/structure/grille/broken,
+/obj/structure/lattice,
+/turf/open/space,
+/area/space)
+"aaj" = (
+/obj/structure/grille,
+/turf/open/space,
+/area/space)
+"aak" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/solar/auxport)
+"aal" = (
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/machinery/power/solar{
+ id = "foreport";
+ name = "Fore-Port Solar Array"
+ },
+/turf/open/floor/plasteel/airless/solarpanel,
+/area/solar/auxport)
+"aam" = (
+/obj/structure/cable,
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/solar/auxport)
+"aan" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/solar/auxport)
+"aao" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/solar/auxport)
+"aap" = (
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/solar/auxport)
+"aaq" = (
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/solar/auxport)
+"aar" = (
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/solar/auxport)
+"aas" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/solar/auxport)
+"aat" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/solar/auxport)
+"aau" = (
+/obj/structure/cable,
+/obj/machinery/power/solar{
+ id = "foreport";
+ name = "Fore-Port Solar Array"
+ },
+/turf/open/floor/plasteel/airless/solarpanel,
+/area/solar/auxport)
+"aav" = (
+/obj/effect/landmark{
+ name = "Marauder Entry"
+ },
+/turf/open/space,
+/area/space)
+"aaw" = (
+/obj/item/stack/cable_coil,
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/solar/auxport)
+"aax" = (
+/turf/closed/wall/r_wall,
+/area/security/prison)
+"aay" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/open/floor/plating,
+/area/security/prison)
+"aaz" = (
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/solar/auxport)
+"aaA" = (
+/obj/machinery/seed_extractor,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
+"aaB" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-03";
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
+"aaC" = (
+/obj/structure/sink/kitchen{
+ desc = "A sink used for washing one's hands and face. It looks rusty and home-made";
+ name = "old sink";
+ pixel_y = 28
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/security/prison)
+"aaD" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/item/weapon/twohanded/required/kirbyplants{
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
+"aaE" = (
+/obj/machinery/biogenerator,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Prison Hydroponics";
+ network = list("SS13","Prison")
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
+"aaF" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/security/prison)
+"aaG" = (
+/obj/machinery/hydroponics/constructable,
+/obj/item/seeds/ambrosia,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
+"aaH" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
+"aaI" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
+"aaJ" = (
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ on = 1
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
+"aaK" = (
+/obj/machinery/hydroponics/constructable,
+/obj/item/seeds/glowshroom,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
+"aaL" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/security/prison)
+"aaM" = (
+/obj/structure/grille,
+/obj/structure/window/shuttle,
+/turf/open/floor/plating,
+/area/shuttle/pod_2)
+"aaN" = (
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/machinery/power/tracker,
+/turf/open/floor/plating/airless,
+/area/solar/auxstarboard)
+"aaO" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/atmos)
+"aaP" = (
+/obj/machinery/hydroponics/constructable,
+/obj/item/weapon/cultivator,
+/obj/item/seeds/carrot,
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
+"aaQ" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
+"aaR" = (
+/turf/open/floor/plasteel,
+/area/security/prison)
+"aaS" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
+"aaT" = (
+/obj/machinery/hydroponics/constructable,
+/obj/item/device/plant_analyzer,
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
+"aaU" = (
+/turf/open/space,
+/turf/closed/wall/mineral/plastitanium{
+ dir = 8;
+ icon_state = "diagonalWall3"
+ },
+/area/space)
+"aaV" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/pod_2)
+"aaW" = (
+/turf/open/space,
+/obj/machinery/porta_turret/syndicate{
+ dir = 5
+ },
+/turf/closed/wall/mineral/plastitanium{
+ dir = 1;
+ icon_state = "diagonalWall3"
+ },
+/area/shuttle/syndicate)
+"aaX" = (
+/turf/open/space,
+/turf/closed/wall/mineral/plastitanium{
+ dir = 1;
+ icon_state = "diagonalWall3"
+ },
+/area/space)
+"aaY" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/solar/auxstarboard)
+"aaZ" = (
+/turf/closed/wall/r_wall,
+/area/prison/solitary{
+ name = "Prisoner Education Chamber"
+ })
+"aba" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/cable/yellow,
+/turf/open/floor/plating,
+/area/security/prison)
+"abb" = (
+/obj/machinery/door/airlock/glass{
+ id_tag = "permahydro";
+ name = "Hydroponics Module"
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
+"abc" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/security/prison)
+"abd" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"abe" = (
+/turf/closed/wall,
+/area/security/prison)
+"abf" = (
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/solar/auxport)
+"abg" = (
+/obj/machinery/door/poddoor{
+ density = 1;
+ icon_state = "closed";
+ id = "SecJusticeChamber";
+ name = "Justice Vent";
+ opacity = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/prison/solitary{
+ name = "Prisoner Education Chamber"
+ })
+"abh" = (
+/obj/item/weapon/soap/nanotrasen,
+/obj/item/weapon/bikehorn/rubberducky,
+/obj/machinery/shower{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/freezer,
+/area/security/prison)
+"abi" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/sink/kitchen{
+ desc = "A sink used for washing one's hands and face. It looks rusty and home-made";
+ name = "old sink";
+ pixel_y = 28
+ },
+/turf/open/floor/plasteel/freezer,
+/area/security/prison)
+"abj" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/easel,
+/obj/item/weapon/canvas/twentythreeXtwentythree,
+/obj/item/weapon/canvas/twentythreeXtwentythree,
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
+"abk" = (
+/obj/structure/table,
+/obj/item/weapon/folder,
+/obj/item/weapon/paper/hydroponics,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/item/weapon/pen,
+/obj/item/weapon/storage/crayons,
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
+"abl" = (
+/obj/structure/table,
+/obj/machinery/computer/libraryconsole/bookmanagement,
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
+"abm" = (
+/obj/machinery/computer/arcade,
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
+"abn" = (
+/obj/machinery/newscaster{
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel,
+/area/security/prison)
+"abo" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
+"abp" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
+"abq" = (
+/obj/structure/holohoop{
+ pixel_y = 29
+ },
+/obj/item/toy/beach_ball/holoball,
+/turf/open/floor/plating{
+ icon_state = "platingdmg1"
+ },
+/area/security/prison)
+"abr" = (
+/obj/machinery/status_display{
+ density = 0;
+ layer = 4;
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/barber{
+ dir = 8
+ },
+/area/security/prison)
+"abs" = (
+/obj/machinery/washing_machine,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/barber{
+ dir = 8
+ },
+/area/security/prison)
+"abt" = (
+/obj/structure/shuttle/engine/propulsion/burst,
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/pod_2)
+"abu" = (
+/obj/machinery/door/airlock/titanium{
+ name = "Escape Pod Airlock"
+ },
+/obj/docking_port/mobile/pod{
+ id = "pod2";
+ name = "escape pod 2";
+ port_angle = 180
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/pod_2)
+"abv" = (
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/machinery/power/solar{
+ id = "forestarboard";
+ name = "Fore-Starboard Solar Array"
+ },
+/turf/open/floor/plasteel/airless/solarpanel,
+/area/solar/auxstarboard)
+"abw" = (
+/obj/structure/cable,
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/solar/auxstarboard)
+"abx" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 2;
+ on = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel/black,
+/area/prison/solitary{
+ name = "Prisoner Education Chamber"
+ })
+"aby" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/prison/solitary{
+ name = "Prisoner Education Chamber"
+ })
+"abz" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel/black,
+/area/prison/solitary{
+ name = "Prisoner Education Chamber"
+ })
+"abA" = (
+/obj/machinery/shower{
+ dir = 4
+ },
+/turf/open/floor/plasteel/freezer,
+/area/security/prison)
+"abB" = (
+/obj/machinery/door/window/westleft{
+ base_state = "right";
+ dir = 4;
+ icon_state = "right";
+ name = "Unisex Showers";
+ req_access_txt = "0"
+ },
+/obj/machinery/light/small,
+/turf/open/floor/plasteel/freezer,
+/area/security/prison)
+"abC" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
+"abD" = (
+/obj/structure/chair/stool,
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
+"abE" = (
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
+"abF" = (
+/obj/structure/table,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/item/weapon/reagent_containers/food/condiment/peppermill{
+ pixel_x = 3
+ },
+/obj/item/weapon/reagent_containers/food/condiment/saltshaker{
+ pixel_x = -3;
+ pixel_y = 5
+ },
+/turf/open/floor/plasteel,
+/area/security/prison)
+"abG" = (
+/obj/structure/table,
+/obj/item/toy/cards/deck,
+/obj/item/toy/cards/deck,
+/turf/open/floor/plasteel,
+/area/security/prison)
+"abH" = (
+/obj/structure/chair/stool,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
+"abI" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
+"abJ" = (
+/obj/structure/window/reinforced,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/barber{
+ dir = 8
+ },
+/area/security/prison)
+"abK" = (
+/obj/structure/table,
+/obj/structure/bedsheetbin,
+/obj/structure/window/reinforced,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/barber{
+ dir = 8
+ },
+/area/security/prison)
+"abL" = (
+/turf/open/floor/plating,
+/area/security/prison)
+"abM" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/security/prison)
+"abN" = (
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/security/prison)
+"abO" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/solar/auxstarboard)
+"abP" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/solar/auxstarboard)
+"abQ" = (
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/solar/auxstarboard)
+"abR" = (
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/solar/auxstarboard)
+"abS" = (
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/solar/auxstarboard)
+"abT" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/solar/auxstarboard)
+"abU" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/solar/auxstarboard)
+"abV" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/sparker{
+ dir = 2;
+ id = "executionburn";
+ pixel_x = -25
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel/black,
+/area/prison/solitary{
+ name = "Prisoner Education Chamber"
+ })
+"abW" = (
+/obj/structure/bed,
+/obj/item/clothing/suit/straight_jacket,
+/obj/item/clothing/glasses/sunglasses/blindfold,
+/obj/item/clothing/mask/muzzle,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/landmark{
+ name = "revenantspawn"
+ },
+/obj/item/device/electropack,
+/turf/open/floor/plasteel/black,
+/area/prison/solitary{
+ name = "Prisoner Education Chamber"
+ })
+"abX" = (
+/obj/machinery/flasher{
+ id = "justiceflash";
+ name = "mounted justice flash";
+ pixel_x = 28
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/prison/solitary{
+ name = "Prisoner Education Chamber"
+ })
+"abY" = (
+/obj/machinery/door/airlock{
+ name = "Unisex Restroom";
+ req_access_txt = "0"
+ },
+/turf/open/floor/plasteel/freezer,
+/area/security/prison)
+"abZ" = (
+/obj/structure/table,
+/obj/item/weapon/book/manual/chef_recipes{
+ pixel_x = 2;
+ pixel_y = 6
+ },
+/obj/item/clothing/head/chefhat,
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
+"aca" = (
+/obj/structure/table,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/item/toy/cards/deck,
+/obj/item/toy/cards/deck,
+/turf/open/floor/plasteel,
+/area/security/prison)
+"acb" = (
+/obj/structure/table,
+/obj/item/weapon/storage/pill_bottle/dice,
+/turf/open/floor/plasteel,
+/area/security/prison)
+"acc" = (
+/obj/structure/chair/stool,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/security/prison)
+"acd" = (
+/obj/machinery/vending/coffee,
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
+"ace" = (
+/obj/machinery/vending/sustenance{
+ desc = "A vending machine normally reserved for work camps.";
+ name = "\improper sustenance vendor";
+ product_slogans = "Enjoy your meal.;Enough calories to support any worker."
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
+"acf" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating{
+ icon_plating = "warnplate"
+ },
+/area/security/prison)
+"acg" = (
+/obj/machinery/light/small,
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/security/prison)
+"ach" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/security/prison)
+"aci" = (
+/obj/machinery/door/airlock/external{
+ name = "Security External Airlock";
+ req_access_txt = "1"
+ },
+/turf/open/floor/plating,
+/area/security/prison)
+"acj" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/security/prison)
+"ack" = (
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/space)
+"acl" = (
+/obj/structure/cable,
+/obj/machinery/power/solar{
+ id = "forestarboard";
+ name = "Fore-Starboard Solar Array"
+ },
+/turf/open/floor/plasteel/airless/solarpanel,
+/area/solar/auxstarboard)
+"acm" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel/black,
+/area/prison/solitary{
+ name = "Prisoner Education Chamber"
+ })
+"acn" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4;
+ initialize_directions = 11
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel/black,
+/area/prison/solitary{
+ name = "Prisoner Education Chamber"
+ })
+"aco" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/on{
+ dir = 2;
+ name = "justice injector"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel/black,
+/area/prison/solitary{
+ name = "Prisoner Education Chamber"
+ })
+"acp" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/toilet{
+ dir = 4
+ },
+/turf/open/floor/plasteel/freezer,
+/area/security/prison)
+"acq" = (
+/obj/structure/table,
+/obj/item/weapon/storage/box/donkpockets{
+ pixel_x = 2;
+ pixel_y = 1
+ },
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/security/prison)
+"acr" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
+"acs" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/security/prison)
+"act" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
+"acu" = (
+/obj/machinery/holopad,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
+"acv" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
+"acw" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
+"acx" = (
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
+"acy" = (
+/obj/machinery/door/airlock/external{
+ name = "Escape Pod Two"
+ },
+/turf/open/floor/plating,
+/area/security/prison)
+"acz" = (
+/obj/item/stack/cable_coil,
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/solar/auxstarboard)
+"acA" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/poddoor/preopen{
+ id = "executionfireblast";
+ layer = 2.9;
+ name = "blast door"
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/darkred{
+ dir = 4
+ },
+/area/prison/solitary{
+ name = "Prisoner Education Chamber"
+ })
+"acB" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/poddoor/preopen{
+ id = "executionfireblast";
+ layer = 2.9;
+ name = "blast door"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/darkred{
+ dir = 4
+ },
+/area/prison/solitary{
+ name = "Prisoner Education Chamber"
+ })
+"acC" = (
+/obj/machinery/door/window/brigdoor{
+ dir = 2;
+ name = "Justice Chamber";
+ req_access_txt = "3"
+ },
+/obj/machinery/atmospherics/pipe/simple/general/hidden,
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/door/window/brigdoor{
+ dir = 1;
+ name = "Justice Chamber";
+ req_access_txt = "3"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor/preopen{
+ id = "executionfireblast";
+ layer = 2.9;
+ name = "blast door"
+ },
+/turf/open/floor/plasteel/darkred{
+ dir = 4
+ },
+/area/prison/solitary{
+ name = "Prisoner Education Chamber"
+ })
+"acD" = (
+/obj/structure/table,
+/obj/machinery/microwave{
+ pixel_x = -3;
+ pixel_y = 6
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg1"
+ },
+/area/security/prison)
+"acE" = (
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/security/prison)
+"acF" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/machinery/light,
+/turf/open/floor/plasteel,
+/area/security/prison)
+"acG" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1;
+ initialize_directions = 11
+ },
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-13"
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
+"acH" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/obj/item/device/radio/intercom{
+ desc = "Talk through this. It looks like it has been modified to not broadcast.";
+ dir = 2;
+ name = "Prison Intercom (General)";
+ pixel_x = 0;
+ pixel_y = -28;
+ prison_radio = 1
+ },
+/obj/machinery/camera{
+ c_tag = "Prison Chamber";
+ dir = 1;
+ network = list("SS13","Prison")
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
+"acI" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
+"acJ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/prison)
+"acK" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 2
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
+"acL" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
+ },
+/obj/machinery/light,
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
+"acM" = (
+/obj/structure/table,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/weapon/pen,
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
+"acN" = (
+/obj/structure/table/glass,
+/obj/item/weapon/reagent_containers/syringe,
+/obj/item/weapon/reagent_containers/glass/bottle/morphine{
+ pixel_y = 6
+ },
+/turf/open/floor/plasteel/whitered/side{
+ dir = 1
+ },
+/area/security/prison)
+"acO" = (
+/obj/machinery/newscaster{
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/obj/structure/table/glass,
+/obj/item/weapon/reagent_containers/glass/beaker{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/weapon/reagent_containers/glass/beaker{
+ pixel_x = -5;
+ pixel_y = 6
+ },
+/obj/item/weapon/reagent_containers/dropper,
+/turf/open/floor/plasteel/whitered/side{
+ dir = 1
+ },
+/area/security/prison)
+"acP" = (
+/turf/closed/wall,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"acQ" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"acR" = (
+/obj/structure/table/glass,
+/obj/item/weapon/reagent_containers/syringe,
+/obj/item/weapon/reagent_containers/glass/bottle/morphine{
+ pixel_y = 6
+ },
+/obj/machinery/camera{
+ c_tag = "Prison Sanitarium";
+ dir = 2;
+ network = list("SS13","Prison");
+ pixel_x = 0;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/whitered/side{
+ dir = 1
+ },
+/area/security/prison)
+"acS" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/solar/auxport)
+"acT" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/solar/auxport)
+"acU" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/solar/auxport)
+"acV" = (
+/obj/structure/table,
+/obj/item/weapon/reagent_containers/glass/bottle/morphine{
+ pixel_x = -4;
+ pixel_y = 1
+ },
+/obj/item/weapon/reagent_containers/glass/bottle/chloralhydrate{
+ name = "chloral hydrate bottle"
+ },
+/obj/item/weapon/reagent_containers/glass/bottle/toxin{
+ pixel_x = 6;
+ pixel_y = 8
+ },
+/obj/item/weapon/reagent_containers/glass/bottle/morphine{
+ pixel_x = 5;
+ pixel_y = 1
+ },
+/obj/item/weapon/reagent_containers/syringe,
+/obj/item/weapon/reagent_containers/glass/bottle/facid{
+ name = "fluorosulfuric acid bottle";
+ pixel_x = -3;
+ pixel_y = 6
+ },
+/obj/item/weapon/reagent_containers/syringe{
+ pixel_y = 5
+ },
+/obj/item/weapon/reagent_containers/dropper,
+/obj/machinery/airalarm{
+ desc = "This particular atmos control unit appears to have no access restrictions.";
+ dir = 4;
+ icon_state = "alarm0";
+ locked = 0;
+ name = "all-access air alarm";
+ pixel_x = -24;
+ req_access = "0";
+ req_one_access = "0"
+ },
+/obj/machinery/button/ignition{
+ id = "executionburn";
+ name = "Justice Ignition Switch";
+ pixel_x = -25;
+ pixel_y = 36
+ },
+/obj/machinery/button/door{
+ id = "executionfireblast";
+ name = "Justice Area Lockdown";
+ pixel_x = -25;
+ pixel_y = 26;
+ req_access_txt = "2"
+ },
+/obj/item/device/assembly/signaler{
+ pixel_x = -3;
+ pixel_y = 2
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/obj/machinery/button/flasher{
+ id = "justiceflash";
+ name = "Justice Flash Control";
+ pixel_x = -36;
+ pixel_y = 36;
+ req_access_txt = "1"
+ },
+/obj/machinery/button/door{
+ dir = 2;
+ id = "SecJusticeChamber";
+ layer = 4;
+ name = "Justice Vent Control";
+ pixel_x = -36;
+ pixel_y = 26;
+ req_access_txt = "3"
+ },
+/turf/open/floor/plasteel/darkred/side{
+ dir = 1
+ },
+/area/prison/solitary{
+ name = "Prisoner Education Chamber"
+ })
+"acW" = (
+/obj/structure/table,
+/obj/item/weapon/folder/red{
+ pixel_x = 3
+ },
+/obj/item/device/taperecorder{
+ pixel_x = -3;
+ pixel_y = 0
+ },
+/obj/item/weapon/storage/fancy/cigarettes,
+/obj/item/device/assembly/flash/handheld,
+/obj/item/weapon/reagent_containers/spray/pepper,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkred/side{
+ dir = 1
+ },
+/area/prison/solitary{
+ name = "Prisoner Education Chamber"
+ })
+"acX" = (
+/obj/machinery/atmospherics/pipe/simple/general/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkred/side{
+ dir = 1
+ },
+/area/prison/solitary{
+ name = "Prisoner Education Chamber"
+ })
+"acY" = (
+/obj/structure/sink/kitchen{
+ desc = "A sink used for washing one's hands and face. It looks rusty and home-made";
+ name = "old sink";
+ pixel_y = 28
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkred/side{
+ dir = 1
+ },
+/area/prison/solitary{
+ name = "Prisoner Education Chamber"
+ })
+"acZ" = (
+/obj/machinery/power/apc{
+ cell_type = 2500;
+ dir = 1;
+ name = "Prisoner Education Chamber APC";
+ pixel_y = 24
+ },
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/closet/secure_closet/injection{
+ name = "educational injections";
+ pixel_x = 2
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkred/side{
+ dir = 1
+ },
+/area/prison/solitary{
+ name = "Prisoner Education Chamber"
+ })
+"ada" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/closed/wall/r_wall,
+/area/security/prison)
+"adb" = (
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id = "permacell3";
+ name = "Cell Shutters";
+ opacity = 0
+ },
+/obj/machinery/door/airlock/glass{
+ id_tag = "permabolt3";
+ name = "Cell 3"
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
+"adc" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/security/prison)
+"add" = (
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id = "permacell2";
+ name = "Cell Shutters";
+ opacity = 0
+ },
+/obj/machinery/door/airlock/glass{
+ id_tag = "permabolt2";
+ name = "Cell 2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
+"ade" = (
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id = "permacell1";
+ name = "Cell Shutters";
+ opacity = 0
+ },
+/obj/machinery/door/airlock/glass{
+ id_tag = "permabolt1";
+ name = "Cell 1"
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
+"adf" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/security/prison)
+"adg" = (
+/obj/structure/bed,
+/obj/item/clothing/suit/straight_jacket,
+/obj/item/clothing/glasses/sunglasses/blindfold,
+/obj/item/clothing/mask/muzzle,
+/obj/effect/landmark{
+ name = "revenantspawn"
+ },
+/turf/open/floor/plasteel/white,
+/area/security/prison)
+"adh" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel/white,
+/area/security/prison)
+"adi" = (
+/obj/structure/bed,
+/obj/item/clothing/suit/straight_jacket,
+/obj/item/clothing/glasses/sunglasses/blindfold,
+/obj/item/clothing/mask/muzzle,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/landmark{
+ name = "revenantspawn"
+ },
+/turf/open/floor/plasteel/white,
+/area/security/prison)
+"adj" = (
+/obj/structure/closet/emcloset,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"adk" = (
+/obj/structure/shuttle/engine/propulsion/burst{
+ dir = 8
+ },
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/pod_3)
+"adl" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/pod_3)
+"adm" = (
+/obj/structure/table,
+/obj/item/device/flashlight/lamp,
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_x = -29;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/black,
+/area/prison/solitary{
+ name = "Prisoner Education Chamber"
+ })
+"adn" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/chair/office/dark{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/prison/solitary{
+ name = "Prisoner Education Chamber"
+ })
+"ado" = (
+/obj/machinery/atmospherics/pipe/simple/general/hidden,
+/turf/open/floor/plasteel/black,
+/area/prison/solitary{
+ name = "Prisoner Education Chamber"
+ })
+"adp" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/black,
+/area/prison/solitary{
+ name = "Prisoner Education Chamber"
+ })
+"adq" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 28
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/prison/solitary{
+ name = "Prisoner Education Chamber"
+ })
+"adr" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall/r_wall,
+/area/prison/solitary{
+ name = "Prisoner Education Chamber"
+ })
+"ads" = (
+/obj/structure/bed,
+/obj/machinery/camera{
+ c_tag = "Prison Cell 3";
+ network = list("SS13","Prison")
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
+"adt" = (
+/obj/structure/chair/stool,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/button/door{
+ id = "permabolt3";
+ name = "Cell Bolt Control";
+ normaldoorcontrol = 1;
+ pixel_x = 0;
+ pixel_y = 25;
+ req_access_txt = "0";
+ specialfunctions = 4
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
+"adu" = (
+/obj/structure/bed,
+/obj/machinery/camera{
+ c_tag = "Prison Cell 2";
+ network = list("SS13","Prison")
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
+"adv" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
+"adw" = (
+/obj/structure/chair/stool,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/button/door{
+ id = "permabolt2";
+ name = "Cell Bolt Control";
+ normaldoorcontrol = 1;
+ pixel_x = 0;
+ pixel_y = 25;
+ req_access_txt = "0";
+ specialfunctions = 4
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg2"
+ },
+/area/security/prison)
+"adx" = (
+/obj/structure/bed,
+/obj/machinery/camera{
+ c_tag = "Prison Cell 1";
+ network = list("SS13","Prison")
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
+"ady" = (
+/obj/structure/chair/stool,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/button/door{
+ id = "permabolt1";
+ name = "Cell Bolt Control";
+ normaldoorcontrol = 1;
+ pixel_x = 0;
+ pixel_y = 25;
+ req_access_txt = "0";
+ specialfunctions = 4
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
+"adz" = (
+/turf/open/floor/plating{
+ icon_state = "platingdmg1"
+ },
+/area/security/prison)
+"adA" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/white,
+/area/security/prison)
+"adB" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/white,
+/area/security/prison)
+"adC" = (
+/obj/machinery/flasher{
+ id = "insaneflash";
+ pixel_x = 26
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 2;
+ on = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/security/prison)
+"adD" = (
+/obj/structure/lattice,
+/obj/machinery/camera/motion{
+ c_tag = "Armory - External";
+ dir = 1;
+ network = list("SS13")
+ },
+/turf/open/space,
+/area/space)
+"adE" = (
+/turf/open/floor/plating,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"adF" = (
+/obj/machinery/door/airlock/titanium{
+ name = "Escape Pod Airlock"
+ },
+/obj/docking_port/mobile/pod{
+ dir = 4;
+ id = "pod3";
+ name = "escape pod 3";
+ port_angle = 180;
+ preferred_direction = 4
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/pod_3)
+"adG" = (
+/obj/docking_port/stationary/random{
+ id = "pod_asteroid2";
+ name = "asteroid"
+ },
+/turf/open/space,
+/area/space)
+"adH" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/machinery/status_display{
+ density = 0;
+ layer = 3;
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/obj/machinery/computer/shuttle/pod{
+ pixel_x = -32;
+ possible_destinations = "pod_asteroid2";
+ shuttleId = "pod2"
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/pod_2)
+"adI" = (
+/obj/structure/grille,
+/obj/structure/window/shuttle,
+/turf/open/floor/plating,
+/area/shuttle/pod_3)
+"adJ" = (
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = -28;
+ pixel_y = 0
+ },
+/obj/structure/table,
+/obj/item/weapon/storage/backpack/dufflebag/sec{
+ contents = newlist(/obj/item/weapon/scalpel,/obj/item/weapon/hemostat,/obj/item/weapon/retractor,/obj/item/weapon/cautery,/obj/item/weapon/circular_saw,/obj/item/weapon/surgical_drapes,/obj/item/clothing/mask/surgical);
+ desc = "A large dufflebag for holding extra supplies - this one has a material inlay with space for various sharp-looking tools.";
+ name = "dufflebag";
+ pixel_y = 5
+ },
+/obj/item/clothing/mask/balaclava,
+/obj/item/weapon/reagent_containers/spray/cleaner{
+ pixel_x = 5
+ },
+/turf/open/floor/plasteel/darkred/side{
+ dir = 2
+ },
+/area/prison/solitary{
+ name = "Prisoner Education Chamber"
+ })
+"adK" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/darkred/side{
+ dir = 2
+ },
+/area/prison/solitary{
+ name = "Prisoner Education Chamber"
+ })
+"adL" = (
+/obj/machinery/atmospherics/pipe/simple/general/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkred/side{
+ dir = 2
+ },
+/area/prison/solitary{
+ name = "Prisoner Education Chamber"
+ })
+"adM" = (
+/obj/machinery/button/door{
+ id = "prisonereducation";
+ name = "Door Bolt Control";
+ normaldoorcontrol = 1;
+ pixel_x = 0;
+ pixel_y = -25;
+ req_access_txt = "0";
+ specialfunctions = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 2;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/darkred/side{
+ dir = 2
+ },
+/area/prison/solitary{
+ name = "Prisoner Education Chamber"
+ })
+"adN" = (
+/obj/machinery/light_switch{
+ pixel_x = 26;
+ pixel_y = 0
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/darkred/side{
+ dir = 2
+ },
+/area/prison/solitary{
+ name = "Prisoner Education Chamber"
+ })
+"adO" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ on = 1
+ },
+/obj/machinery/flasher{
+ id = "PCell 3";
+ pixel_x = -28
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/security/prison)
+"adP" = (
+/obj/structure/table,
+/obj/item/weapon/paper,
+/obj/item/weapon/pen,
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
+"adQ" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4;
+ initialize_directions = 11
+ },
+/turf/closed/wall,
+/area/security/prison)
+"adR" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/obj/machinery/flasher{
+ id = "PCell 2";
+ pixel_x = -28
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
+"adS" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
+"adT" = (
+/obj/structure/table,
+/obj/item/weapon/paper,
+/obj/item/weapon/pen,
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
+"adU" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ on = 1
+ },
+/obj/machinery/flasher{
+ id = "PCell 1";
+ pixel_x = -28
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
+"adV" = (
+/obj/item/weapon/folder/red,
+/obj/item/weapon/pen,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/whitered/side{
+ dir = 2
+ },
+/area/security/prison)
+"adW" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/whitered/side{
+ dir = 2
+ },
+/area/security/prison)
+"adX" = (
+/obj/structure/bed/roller,
+/obj/structure/bed/roller,
+/obj/machinery/iv_drip{
+ density = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/iv_drip{
+ density = 0
+ },
+/turf/open/floor/plasteel/whitered/side{
+ dir = 2
+ },
+/area/security/prison)
+"adY" = (
+/turf/closed/wall/r_wall,
+/area/security/warden)
+"adZ" = (
+/turf/closed/wall/r_wall,
+/area/security/hos)
+"aea" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "hosspace";
+ name = "space shutters"
+ },
+/turf/open/floor/plating,
+/area/security/hos)
+"aeb" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "hosspace";
+ name = "space shutters"
+ },
+/turf/open/floor/plating,
+/area/security/hos)
+"aec" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "hosspace";
+ name = "space shutters"
+ },
+/turf/open/floor/plating,
+/area/security/hos)
+"aed" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"aee" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/maintenance/auxsolarport)
+"aef" = (
+/obj/machinery/door/airlock/external{
+ name = "Solar Maintenance";
+ req_access = null;
+ req_access_txt = "10; 13"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/auxsolarport)
+"aeg" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/prison/solitary{
+ name = "Prisoner Education Chamber"
+ })
+"aeh" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 10
+ },
+/obj/machinery/meter,
+/obj/machinery/door/window/westleft{
+ base_state = "left";
+ dir = 1;
+ icon_state = "left";
+ name = "gas ports";
+ req_access_txt = "0"
+ },
+/turf/open/floor/plasteel/black,
+/area/prison/solitary{
+ name = "Prisoner Education Chamber"
+ })
+"aei" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1;
+ name = "justice gas pump"
+ },
+/obj/machinery/door/window/westleft{
+ base_state = "right";
+ dir = 1;
+ icon_state = "right";
+ name = "gas ports";
+ req_access_txt = "0"
+ },
+/turf/open/floor/plasteel/black,
+/area/prison/solitary{
+ name = "Prisoner Education Chamber"
+ })
+"aej" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security{
+ aiControlDisabled = 1;
+ id_tag = "prisonereducation";
+ name = "Prisoner Education Chamber";
+ req_access = null;
+ req_access_txt = "3"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/red/side{
+ dir = 1
+ },
+/area/prison/solitary{
+ name = "Prisoner Education Chamber"
+ })
+"aek" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall/r_wall,
+/area/security/prison)
+"ael" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall,
+/area/security/prison)
+"aem" = (
+/obj/machinery/door/airlock/glass_security{
+ name = "Long-Term Cell 3";
+ req_access_txt = "2"
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
+"aen" = (
+/obj/machinery/door/airlock/glass_security{
+ name = "Long-Term Cell 2";
+ req_access_txt = "2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
+"aeo" = (
+/obj/machinery/door/airlock/glass_security{
+ name = "Long-Term Cell 1";
+ req_access_txt = "2"
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
+"aep" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_security{
+ name = "Prison Sanitarium";
+ req_access_txt = "2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 1
+ },
+/area/security/prison)
+"aeq" = (
+/turf/closed/wall/r_wall,
+/area/ai_monitored/security/armory)
+"aer" = (
+/obj/structure/rack,
+/obj/item/weapon/gun/energy/ionrifle{
+ pin = /obj/item/device/firing_pin
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/item/weapon/gun/energy/temperature/security,
+/obj/item/clothing/suit/armor/laserproof,
+/turf/open/floor/plasteel/vault{
+ dir = 4
+ },
+/area/ai_monitored/security/armory)
+"aes" = (
+/obj/structure/closet/secure_closet{
+ name = "contraband locker";
+ req_access_txt = "3"
+ },
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 3;
+ name = "3maintenance loot spawner"
+ },
+/obj/effect/spawner/lootdrop/armory_contraband{
+ loot = list(/obj/item/weapon/gun/ballistic/automatic/pistol = 5, /obj/item/weapon/gun/ballistic/shotgun/automatic/combat = 5, /obj/item/weapon/gun/ballistic/revolver/mateba, /obj/item/weapon/gun/ballistic/automatic/pistol/deagle, /obj/item/weapon/storage/box/syndie_kit/throwing_weapons = 3)
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 4
+ },
+/area/ai_monitored/security/armory)
+"aet" = (
+/obj/structure/table/wood,
+/obj/machinery/newscaster/security_unit{
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/obj/item/weapon/folder/red,
+/obj/item/weapon/folder/red,
+/obj/machinery/keycard_auth{
+ pixel_x = -26;
+ pixel_y = 23
+ },
+/obj/machinery/button/door{
+ id = "hosspace";
+ name = "Space Shutters Control";
+ pixel_x = -26;
+ pixel_y = 34
+ },
+/turf/open/floor/plasteel/black,
+/area/security/hos)
+"aeu" = (
+/obj/machinery/computer/prisoner,
+/turf/open/floor/plasteel/black,
+/area/security/hos)
+"aev" = (
+/obj/machinery/computer/security,
+/turf/open/floor/plasteel/black,
+/area/security/hos)
+"aew" = (
+/obj/machinery/computer/secure_data,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/black,
+/area/security/hos)
+"aex" = (
+/obj/structure/closet/secure_closet/lethalshots,
+/turf/open/floor/plasteel/vault{
+ dir = 1
+ },
+/area/ai_monitored/security/armory)
+"aey" = (
+/turf/closed/wall,
+/area/security/range)
+"aez" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/security/range)
+"aeA" = (
+/obj/machinery/door/airlock/external{
+ name = "Escape Pod Three"
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"aeB" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/closed/wall,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"aeC" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"aeD" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/effect/landmark{
+ name = "Syndicate Breach Area"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"aeE" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"aeF" = (
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/solar/auxstarboard)
+"aeG" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/auxsolarport)
+"aeH" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
+/turf/open/floor/plasteel/vault,
+/area/prison/solitary{
+ name = "Prisoner Education Chamber"
+ })
+"aeI" = (
+/obj/item/weapon/tank/internals/oxygen/red{
+ pixel_x = -4;
+ pixel_y = -1
+ },
+/obj/item/weapon/tank/internals/oxygen/red{
+ pixel_x = 4;
+ pixel_y = -1
+ },
+/obj/item/weapon/tank/internals/anesthetic{
+ pixel_x = 2
+ },
+/obj/item/weapon/storage/toolbox/mechanical,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/obj/structure/closet/crate{
+ icon_state = "crateopen";
+ opened = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/general/visible,
+/obj/item/weapon/wrench,
+/turf/open/floor/plasteel/vault,
+/area/prison/solitary{
+ name = "Prisoner Education Chamber"
+ })
+"aeJ" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 9
+ },
+/obj/machinery/space_heater,
+/turf/open/floor/plasteel/vault,
+/area/prison/solitary{
+ name = "Prisoner Education Chamber"
+ })
+"aeK" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 2
+ },
+/area/security/prison)
+"aeL" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'WARNING: Do Not Enter When Red Light Shows', detailing the penalties that any NanoTrasen employee or silicon will suffer if violating this rule.";
+ name = "WARNING: Do Not Enter When Red Light Shows";
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 2
+ },
+/area/security/prison)
+"aeM" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/turf/open/floor/plasteel/red/corner{
+ dir = 2
+ },
+/area/security/prison)
+"aeN" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 2
+ },
+/area/security/prison)
+"aeO" = (
+/obj/machinery/button/door{
+ id = "permacell3";
+ name = "Cell 3 Lockdown";
+ pixel_x = -4;
+ pixel_y = 25;
+ req_access_txt = "2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/button/flasher{
+ id = "PCell 3";
+ pixel_x = 6;
+ pixel_y = 24
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 2
+ },
+/area/security/prison)
+"aeP" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for watching Prison Wing holding areas.";
+ name = "Prison Monitor";
+ network = list("Prison");
+ pixel_x = 0;
+ pixel_y = 30
+ },
+/obj/machinery/camera{
+ c_tag = "Prison Hallway Port";
+ network = list("SS13","Prison")
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 2
+ },
+/area/security/prison)
+"aeQ" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 2
+ },
+/area/security/prison)
+"aeR" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/turf/open/floor/plasteel/red/corner{
+ dir = 2
+ },
+/area/security/prison)
+"aeS" = (
+/obj/machinery/button/door{
+ id = "permacell2";
+ name = "Cell 2 Lockdown";
+ pixel_x = -4;
+ pixel_y = 25;
+ req_access_txt = "2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/button/flasher{
+ id = "PCell 2";
+ pixel_x = 6;
+ pixel_y = 24
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 2
+ },
+/area/security/prison)
+"aeT" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for watching Prison Wing holding areas.";
+ name = "Prison Monitor";
+ network = list("Prison");
+ pixel_x = 0;
+ pixel_y = 30
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 2
+ },
+/area/security/prison)
+"aeU" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 2
+ },
+/area/security/prison)
+"aeV" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 2
+ },
+/area/security/prison)
+"aeW" = (
+/obj/machinery/button/door{
+ id = "permacell1";
+ name = "Cell 1 Lockdown";
+ pixel_x = -4;
+ pixel_y = 25;
+ req_access_txt = "2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/button/flasher{
+ id = "PCell 1";
+ pixel_x = 6;
+ pixel_y = 24
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 2
+ },
+/area/security/prison)
+"aeX" = (
+/obj/machinery/power/apc{
+ cell_type = 5000;
+ dir = 1;
+ name = "Prison Wing APC";
+ pixel_x = 1;
+ pixel_y = 24
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/camera{
+ c_tag = "Prison Hallway Starboard";
+ dir = 2;
+ network = list("SS13","Prison")
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 2
+ },
+/area/security/prison)
+"aeY" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 2
+ },
+/area/security/prison)
+"aeZ" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/structure/sign/pods{
+ pixel_y = 30
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 2
+ },
+/area/security/prison)
+"afa" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/button/flasher{
+ id = "insaneflash";
+ pixel_y = 26
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 2
+ },
+/area/security/prison)
+"afb" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8";
+ d1 = 4;
+ d2 = 8
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 2
+ },
+/area/security/prison)
+"afc" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating,
+/area/security/prison)
+"afd" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9;
+ pixel_y = 0
+ },
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-16";
+ layer = 4.1
+ },
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'WARNING: Criminally Insane Inmates', describing the possible hazards of those contained within.";
+ name = "WARNING: Criminally Insane Inmates";
+ pixel_y = 32
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8";
+ d1 = 4;
+ d2 = 8
+ },
+/turf/open/floor/plasteel,
+/area/security/prison)
+"afe" = (
+/obj/structure/table/wood,
+/obj/machinery/requests_console{
+ announcementConsole = 1;
+ department = "Head of Security's Desk";
+ departmentType = 5;
+ name = "Head of Security RC";
+ pixel_x = 0;
+ pixel_y = 30
+ },
+/obj/machinery/computer/med_data/laptop,
+/obj/item/weapon/storage/secure/safe/HoS{
+ pixel_x = 36;
+ pixel_y = 28
+ },
+/obj/machinery/camera{
+ c_tag = "Head of Security's Office";
+ dir = 2;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/black,
+/area/security/hos)
+"aff" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 2;
+ on = 1
+ },
+/obj/item/weapon/storage/secure/safe{
+ name = "armory safe A";
+ pixel_x = 6;
+ pixel_y = 28
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/security/armory)
+"afg" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/security/armory)
+"afh" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/security/armory)
+"afi" = (
+/obj/structure/closet/secure_closet/hos,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/airalarm{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22
+ },
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = -29;
+ pixel_y = 23
+ },
+/turf/open/floor/plasteel/black,
+/area/security/hos)
+"afj" = (
+/obj/machinery/status_display{
+ density = 0;
+ layer = 4;
+ pixel_x = -32;
+ pixel_y = 32
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ external_pressure_bound = 101.325;
+ on = 1;
+ pressure_checks = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/security/hos)
+"afk" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/black,
+/area/security/hos)
+"afl" = (
+/obj/structure/chair/comfy/black,
+/turf/open/floor/plasteel/black,
+/area/security/hos)
+"afm" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/black,
+/area/security/hos)
+"afn" = (
+/obj/machinery/status_display{
+ density = 0;
+ layer = 4;
+ pixel_x = 32;
+ pixel_y = 32
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/black,
+/area/security/hos)
+"afo" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_x = 30;
+ pixel_y = 0
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 27;
+ pixel_y = 29
+ },
+/obj/machinery/suit_storage_unit/hos,
+/turf/open/floor/plasteel/black,
+/area/security/hos)
+"afp" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/security/range)
+"afq" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/security/range)
+"afr" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/security/range)
+"afs" = (
+/obj/machinery/shower{
+ icon_state = "shower";
+ dir = 4
+ },
+/obj/machinery/door/window/eastright{
+ base_state = "left";
+ dir = 2;
+ icon_state = "left";
+ name = "shower"
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"aft" = (
+/obj/structure/reagent_dispensers/water_cooler,
+/turf/open/floor/plasteel/vault,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"afu" = (
+/obj/structure/table,
+/obj/item/weapon/reagent_containers/food/drinks/sillycup{
+ pixel_x = -5;
+ pixel_y = 3
+ },
+/obj/item/weapon/reagent_containers/food/drinks/sillycup,
+/obj/item/weapon/reagent_containers/food/drinks/sillycup{
+ pixel_x = 5;
+ pixel_y = 3
+ },
+/obj/item/weapon/reagent_containers/food/drinks/sillycup{
+ pixel_x = 5;
+ pixel_y = 3
+ },
+/obj/item/weapon/reagent_containers/food/drinks/sillycup{
+ pixel_x = 5;
+ pixel_y = 3
+ },
+/turf/open/floor/plasteel/vault,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"afv" = (
+/obj/structure/easel,
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"afw" = (
+/obj/structure/closet/masks,
+/turf/open/floor/plasteel/vault,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"afx" = (
+/obj/structure/closet/athletic_mixed,
+/turf/open/floor/plasteel/vault,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"afy" = (
+/obj/structure/closet/boxinggloves,
+/turf/open/floor/plasteel/vault,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"afz" = (
+/obj/structure/closet/emcloset,
+/obj/structure/sign/pods{
+ pixel_y = 30
+ },
+/turf/open/floor/plasteel/vault,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"afA" = (
+/turf/open/floor/plasteel/vault,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"afB" = (
+/obj/machinery/computer/arcade,
+/turf/open/floor/plasteel/vault,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"afC" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"afD" = (
+/turf/open/floor/engine{
+ name = "Holodeck Projector Floor"
+ },
+/area/holodeck/rec_center)
+"afE" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/external{
+ name = "Solar Maintenance";
+ req_access = null;
+ req_access_txt = "10; 13"
+ },
+/turf/open/floor/plating,
+/area/maintenance/auxsolarport)
+"afF" = (
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "applebush";
+ layer = 4.1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel,
+/area/security/prison)
+"afG" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 1
+ },
+/area/security/prison)
+"afH" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 1
+ },
+/area/security/prison)
+"afI" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 1
+ },
+/area/security/prison)
+"afJ" = (
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/newscaster/security_unit{
+ pixel_x = 0;
+ pixel_y = -30
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 1
+ },
+/area/security/prison)
+"afK" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 2;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 1
+ },
+/area/security/prison)
+"afL" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 1
+ },
+/area/security/prison)
+"afM" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 2;
+ initialize_directions = 11
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 1
+ },
+/area/security/prison)
+"afN" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 0;
+ pixel_y = -30
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 1
+ },
+/area/security/prison)
+"afO" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = -30
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 1
+ },
+/area/security/prison)
+"afP" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 1
+ },
+/area/security/prison)
+"afQ" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 2;
+ initialize_directions = 11
+ },
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 1
+ },
+/area/security/prison)
+"afR" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1;
+ initialize_directions = 11
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 1
+ },
+/area/security/prison)
+"afS" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 1
+ },
+/area/security/prison)
+"afT" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 2;
+ initialize_directions = 11
+ },
+/obj/machinery/light,
+/turf/open/floor/plasteel/red/corner{
+ dir = 1
+ },
+/area/security/prison)
+"afU" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 1
+ },
+/area/security/prison)
+"afV" = (
+/turf/open/floor/plasteel/red/corner{
+ dir = 1
+ },
+/area/security/prison)
+"afW" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow,
+/turf/open/floor/plating,
+/area/security/prison)
+"afX" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/item/weapon/storage/secure/safe{
+ name = "armory safe B";
+ pixel_x = 6;
+ pixel_y = 28
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 27;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/security/armory)
+"afY" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/security/armory)
+"afZ" = (
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/obj/structure/rack,
+/obj/item/weapon/grenade/barrier{
+ pixel_x = -3;
+ pixel_y = 1
+ },
+/obj/item/weapon/grenade/barrier,
+/obj/item/weapon/grenade/barrier{
+ pixel_x = 3;
+ pixel_y = -1
+ },
+/obj/item/weapon/grenade/barrier{
+ pixel_x = 6;
+ pixel_y = -2
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 1
+ },
+/area/ai_monitored/security/armory)
+"aga" = (
+/mob/living/simple_animal/bot/secbot{
+ arrest_type = 1;
+ health = 45;
+ icon_state = "secbot1";
+ idcheck = 1;
+ name = "Sergeant-at-Armsky";
+ on = 1;
+ weaponscheck = 1
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/ai_monitored/security/armory)
+"agb" = (
+/obj/structure/rack,
+/obj/item/weapon/gun/energy/e_gun/advtaser{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/weapon/gun/energy/e_gun/advtaser,
+/obj/item/weapon/gun/energy/e_gun/advtaser{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/vault{
+ dir = 1
+ },
+/area/ai_monitored/security/armory)
+"agc" = (
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/security/armory)
+"agd" = (
+/obj/structure/rack,
+/obj/item/weapon/gun/energy/laser{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/weapon/gun/energy/laser,
+/obj/item/weapon/gun/energy/laser{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 4
+ },
+/area/ai_monitored/security/armory)
+"age" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "hosprivacy";
+ name = "privacy shutters"
+ },
+/turf/open/floor/plating,
+/area/security/hos)
+"agf" = (
+/obj/structure/table/wood,
+/obj/item/weapon/storage/secure/briefcase{
+ pixel_x = -2
+ },
+/obj/item/weapon/book/manual/wiki/security_space_law,
+/obj/item/weapon/cartridge/detective,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/black,
+/area/security/hos)
+"agg" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/black,
+/area/security/hos)
+"agh" = (
+/obj/structure/table/wood,
+/obj/item/device/flashlight/lamp,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/carpet,
+/area/security/hos)
+"agi" = (
+/obj/structure/table/wood,
+/obj/item/weapon/stamp/hos,
+/turf/open/floor/carpet,
+/area/security/hos)
+"agj" = (
+/obj/item/weapon/phone{
+ desc = "Supposedly a direct line to NanoTrasen Central Command. It's not even plugged in.";
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/weapon/cigbutt/cigarbutt{
+ pixel_x = 5;
+ pixel_y = -1
+ },
+/obj/structure/table/wood,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/carpet,
+/area/security/hos)
+"agk" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/black,
+/area/security/hos)
+"agl" = (
+/obj/structure/table/wood,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/black,
+/area/security/hos)
+"agm" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "hosprivacy";
+ name = "privacy shutters"
+ },
+/turf/open/floor/plating,
+/area/security/hos)
+"agn" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/security/range)
+"ago" = (
+/obj/structure/target_stake,
+/obj/item/target/syndicate,
+/turf/open/floor/plasteel,
+/area/security/range)
+"agp" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/range)
+"agq" = (
+/turf/closed/wall,
+/area/maintenance/fore)
+"agr" = (
+/obj/structure/sink{
+ icon_state = "sink";
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/obj/machinery/button/door{
+ id = "FitnessShower";
+ name = "Lock Control";
+ normaldoorcontrol = 1;
+ pixel_x = 0;
+ pixel_y = -25;
+ req_access_txt = "0";
+ specialfunctions = 4
+ },
+/obj/structure/mirror{
+ pixel_x = -28
+ },
+/obj/machinery/light/small,
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"ags" = (
+/obj/machinery/door/airlock{
+ id_tag = "FitnessShower";
+ name = "Fitness Room Shower"
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"agt" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"agu" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"agv" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/camera{
+ c_tag = "Fitness Room - Fore";
+ dir = 2
+ },
+/obj/machinery/airalarm{
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"agw" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"agx" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"agy" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "Recreation Area APC";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"agz" = (
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"agA" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/auxsolarport)
+"agB" = (
+/obj/machinery/power/solar_control{
+ id = "foreport";
+ name = "Fore Port Solar Control";
+ track = 0
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/auxsolarport)
+"agC" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/auxsolarport)
+"agD" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg2"
+ },
+/area/maintenance/auxsolarport)
+"agE" = (
+/obj/structure/table,
+/obj/item/weapon/folder/red{
+ pixel_x = 3
+ },
+/obj/item/weapon/folder/white{
+ pixel_x = -4;
+ pixel_y = 2
+ },
+/turf/open/floor/plasteel/vault,
+/area/security/prison)
+"agF" = (
+/obj/structure/rack,
+/obj/item/weapon/restraints/handcuffs,
+/obj/item/device/assembly/flash/handheld,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/vault,
+/area/security/prison)
+"agG" = (
+/obj/structure/table,
+/obj/item/weapon/storage/box/bodybags{
+ pixel_x = 4;
+ pixel_y = 2
+ },
+/obj/item/weapon/pen,
+/obj/item/weapon/storage/box/prisoner,
+/turf/open/floor/plasteel/vault,
+/area/security/prison)
+"agH" = (
+/obj/structure/closet/secure_closet/brig{
+ anchored = 1
+ },
+/turf/open/floor/plasteel/vault,
+/area/security/prison)
+"agI" = (
+/obj/structure/closet/secure_closet/brig{
+ anchored = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/vault,
+/area/security/prison)
+"agJ" = (
+/obj/structure/sign/securearea,
+/turf/closed/wall,
+/area/security/prison)
+"agK" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/glass_security{
+ name = "Prison Wing";
+ req_access_txt = "1"
+ },
+/turf/open/floor/plasteel,
+/area/security/prison)
+"agL" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/security/prison)
+"agM" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/airlock/glass_security{
+ name = "Prison Wing";
+ req_access_txt = "1"
+ },
+/turf/open/floor/plasteel,
+/area/security/prison)
+"agN" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'WARNING: Dangerous Inmates'.";
+ name = "\improper WARNING: Dangerous Inmates"
+ },
+/turf/closed/wall,
+/area/security/prison)
+"agO" = (
+/obj/structure/table,
+/obj/machinery/recharger{
+ pixel_y = 4
+ },
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_x = 0;
+ pixel_y = -30
+ },
+/turf/open/floor/plasteel/vault,
+/area/security/prison)
+"agP" = (
+/obj/structure/table,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/turf/open/floor/plasteel/vault,
+/area/security/prison)
+"agQ" = (
+/obj/structure/rack,
+/obj/item/clothing/suit/armor/bulletproof,
+/obj/item/clothing/head/helmet/alt,
+/obj/item/clothing/suit/armor/bulletproof,
+/obj/item/clothing/head/helmet/alt,
+/obj/item/clothing/suit/armor/bulletproof,
+/obj/item/clothing/head/helmet/alt,
+/turf/open/floor/plasteel/vault{
+ dir = 4
+ },
+/area/ai_monitored/security/armory)
+"agR" = (
+/obj/machinery/airalarm{
+ dir = 4;
+ locked = 0;
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/obj/structure/rack,
+/obj/item/weapon/storage/fancy/donut_box,
+/obj/item/weapon/gun/energy/e_gun/dragnet,
+/obj/item/weapon/gun/energy/e_gun/dragnet,
+/turf/open/floor/plasteel/vault{
+ dir = 1
+ },
+/area/ai_monitored/security/armory)
+"agS" = (
+/obj/machinery/holopad,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/ai_monitored/security/armory)
+"agT" = (
+/obj/structure/rack,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/item/weapon/storage/box/rubbershot,
+/obj/item/weapon/storage/box/rubbershot,
+/obj/item/weapon/storage/box/rubbershot,
+/obj/item/weapon/storage/box/rubbershot,
+/obj/item/weapon/storage/box/rubbershot,
+/obj/item/weapon/storage/box/rubbershot,
+/obj/item/weapon/gun/ballistic/shotgun/riot{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/weapon/gun/ballistic/shotgun/riot,
+/turf/open/floor/plasteel/vault{
+ dir = 1
+ },
+/area/ai_monitored/security/armory)
+"agU" = (
+/obj/structure/rack,
+/obj/item/weapon/gun/energy/e_gun{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/weapon/gun/energy/e_gun,
+/obj/item/weapon/gun/energy/e_gun{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 4
+ },
+/area/ai_monitored/security/armory)
+"agV" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow,
+/obj/machinery/door/poddoor/preopen{
+ id = "hosprivacy";
+ name = "privacy shutters"
+ },
+/turf/open/floor/plating,
+/area/security/hos)
+"agW" = (
+/obj/structure/table/wood,
+/obj/machinery/recharger,
+/turf/open/floor/plasteel/black,
+/area/security/hos)
+"agX" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/black,
+/area/security/hos)
+"agY" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/carpet,
+/area/security/hos)
+"agZ" = (
+/obj/machinery/holopad,
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/effect/landmark/start{
+ name = "Head of Security"
+ },
+/turf/open/floor/carpet,
+/area/security/hos)
+"aha" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/mob/living/simple_animal/hostile/retaliate/bat{
+ desc = "A fierce companion for any person of power, this spider has been carefully trained by NanoTrasen specialists. Its beady, staring eyes send shivers down your spine";
+ emote_hear = list("chitters");
+ faction = list("spiders");
+ harm_intent_damage = 3;
+ health = 200;
+ icon_dead = "guard_dead";
+ icon_gib = "guard_dead";
+ icon_living = "guard";
+ icon_state = "guard";
+ max_co2 = 5;
+ max_tox = 2;
+ maxHealth = 250;
+ melee_damage_lower = 15;
+ melee_damage_upper = 20;
+ min_oxy = 5;
+ name = "Sergeant Araneus";
+ real_name = "Sergeant Araneus";
+ response_help = "pets";
+ turns_per_move = 10;
+ voice_name = "unidentifiable voice"
+ },
+/turf/open/floor/carpet,
+/area/security/hos)
+"ahb" = (
+/obj/structure/table/wood,
+/obj/item/device/taperecorder{
+ pixel_x = -4;
+ pixel_y = 0
+ },
+/obj/item/device/radio/off{
+ pixel_x = 0;
+ pixel_y = 3
+ },
+/turf/open/floor/plasteel/black,
+/area/security/hos)
+"ahc" = (
+/turf/open/floor/plasteel,
+/area/security/range)
+"ahd" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"ahe" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"ahf" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"ahg" = (
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"ahh" = (
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"ahi" = (
+/obj/structure/chair,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"ahj" = (
+/obj/structure/chair,
+/obj/effect/landmark/start{
+ name = "Assistant"
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"ahk" = (
+/obj/structure/chair,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"ahl" = (
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"ahm" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 2;
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"ahn" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"aho" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = "0"
+ },
+/turf/closed/wall,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"ahp" = (
+/turf/closed/wall,
+/area/maintenance/disposal)
+"ahq" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"ahr" = (
+/obj/structure/chair/stool{
+ pixel_y = 8
+ },
+/obj/machinery/camera/autoname{
+ dir = 4;
+ network = list("SS13")
+ },
+/turf/open/floor/plating,
+/area/maintenance/auxsolarport)
+"ahs" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 2;
+ on = 1
+ },
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/turf/open/floor/plating,
+/area/maintenance/auxsolarport)
+"aht" = (
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/power/terminal,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 29
+ },
+/turf/open/floor/plating,
+/area/maintenance/auxsolarport)
+"ahu" = (
+/obj/machinery/suit_storage_unit/security,
+/turf/open/floor/plasteel/vault{
+ dir = 1
+ },
+/area/security/brig)
+"ahv" = (
+/obj/structure/tank_dispenser/oxygen,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/security/brig)
+"ahw" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 27;
+ pixel_y = 0
+ },
+/obj/machinery/suit_storage_unit/security,
+/turf/open/floor/plasteel/vault{
+ dir = 4
+ },
+/area/security/brig)
+"ahx" = (
+/turf/closed/wall,
+/area/security/brig)
+"ahy" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id = "Prison Gate";
+ name = "Security Blast Door";
+ opacity = 0
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/security/brig)
+"ahz" = (
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id = "Prison Gate";
+ name = "Security Blast Door";
+ opacity = 0
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/security/brig)
+"ahA" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id = "Prison Gate";
+ name = "Security Blast Door";
+ opacity = 0
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/security/brig)
+"ahB" = (
+/turf/closed/wall,
+/area/security/warden)
+"ahC" = (
+/obj/structure/rack,
+/obj/item/clothing/suit/armor/riot,
+/obj/item/clothing/suit/armor/riot,
+/obj/item/clothing/suit/armor/riot,
+/obj/item/clothing/head/helmet/riot,
+/obj/item/clothing/head/helmet/riot,
+/obj/item/clothing/head/helmet/riot,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 28;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 4
+ },
+/area/ai_monitored/security/armory)
+"ahD" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/security/armory)
+"ahE" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/rack,
+/obj/item/weapon/storage/box/flashes{
+ pixel_x = 3
+ },
+/obj/item/weapon/storage/box/teargas{
+ pixel_x = 1;
+ pixel_y = -2
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 1
+ },
+/area/ai_monitored/security/armory)
+"ahF" = (
+/obj/machinery/power/apc{
+ cell_type = 5000;
+ dir = 2;
+ name = "Armory APC";
+ pixel_x = 1;
+ pixel_y = -24
+ },
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/light,
+/obj/machinery/camera/motion{
+ c_tag = "Armory - Internal";
+ dir = 1;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/vault,
+/area/ai_monitored/security/armory)
+"ahG" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 6
+ },
+/area/ai_monitored/security/armory)
+"ahH" = (
+/turf/open/floor/plasteel/vault{
+ dir = 10
+ },
+/area/ai_monitored/security/armory)
+"ahI" = (
+/obj/structure/rack,
+/obj/item/weapon/shield/riot{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/weapon/shield/riot,
+/obj/item/weapon/shield/riot{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/machinery/button/door{
+ id = "armory";
+ name = "Armory Shutters";
+ pixel_x = 28;
+ pixel_y = 0;
+ req_access_txt = "3"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 4
+ },
+/area/ai_monitored/security/armory)
+"ahJ" = (
+/obj/machinery/disposal/bin,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24;
+ pixel_y = 0
+ },
+/obj/machinery/light_switch{
+ pixel_x = -24;
+ pixel_y = -20
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for watching certain areas.";
+ dir = 1;
+ name = "Head of Security's Monitor";
+ network = list("Prison","MiniSat","tcomm");
+ pixel_x = 0;
+ pixel_y = -30
+ },
+/turf/open/floor/plasteel/vault,
+/area/security/hos)
+"ahK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/vault,
+/area/security/hos)
+"ahL" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/carpet,
+/area/security/hos)
+"ahM" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/carpet,
+/area/security/hos)
+"ahN" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/carpet,
+/area/security/hos)
+"ahO" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/vault,
+/area/security/hos)
+"ahP" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security{
+ name = "Armory";
+ req_access = null;
+ req_access_txt = "3"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/ai_monitored/security/armory)
+"ahQ" = (
+/obj/item/clothing/head/festive,
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"ahR" = (
+/obj/item/weapon/cigbutt,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"ahS" = (
+/turf/open/floor/plating{
+ icon_state = "platingdmg1"
+ },
+/area/maintenance/fore)
+"ahT" = (
+/obj/structure/table,
+/obj/item/weapon/poster/contraband,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"ahU" = (
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/structure/table,
+/obj/item/weapon/stock_parts/manipulator,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"ahV" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"ahW" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/door/window/eastright{
+ base_state = "right";
+ dir = 8;
+ icon_state = "right";
+ name = "Fitness Ring"
+ },
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"ahX" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"ahY" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"ahZ" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"aia" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"aib" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Holodeck Door"
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"aic" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Holodeck Door"
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"aid" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ pixel_y = 27
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"aie" = (
+/obj/machinery/airalarm{
+ pixel_y = 24
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"aif" = (
+/obj/machinery/door/poddoor{
+ id = "trash";
+ name = "disposal bay door"
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"aig" = (
+/obj/machinery/mass_driver{
+ dir = 8;
+ id = "trash"
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"aih" = (
+/obj/machinery/conveyor_switch/oneway{
+ convdir = -1;
+ id = "garbage";
+ name = "disposal coveyor"
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"aii" = (
+/obj/structure/easel,
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"aij" = (
+/obj/item/weapon/vending_refill/coffee,
+/turf/open/floor/plating{
+ icon_state = "platingdmg2"
+ },
+/area/maintenance/disposal)
+"aik" = (
+/obj/structure/closet,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 3;
+ name = "3maintenance loot spawner"
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"ail" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Fore Port Solar APC";
+ pixel_x = -25;
+ pixel_y = 3
+ },
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/maintenance/auxsolarport)
+"aim" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/maintenance/auxsolarport)
+"ain" = (
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/power/smes,
+/turf/open/floor/plating,
+/area/maintenance/auxsolarport)
+"aio" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"aip" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"aiq" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/security/brig)
+"air" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/security/brig)
+"ais" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light/small,
+/obj/machinery/camera{
+ c_tag = "Security - EVA Storage";
+ dir = 1;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/security/brig)
+"ait" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_security{
+ name = "Security E.V.A. Storage";
+ req_access_txt = "3"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aiu" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 1
+ },
+/area/security/brig)
+"aiv" = (
+/turf/open/floor/plasteel/red/side{
+ dir = 1
+ },
+/area/security/brig)
+"aiw" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/button/door{
+ id = "Prison Gate";
+ name = "Prison Wing Lockdown";
+ pixel_x = 26;
+ pixel_y = 0;
+ req_access_txt = "2"
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 1
+ },
+/area/security/brig)
+"aix" = (
+/obj/structure/closet{
+ name = "Evidence Closet 1"
+ },
+/obj/item/weapon/storage/backpack{
+ name = "Evidence Bag 1"
+ },
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 1
+ },
+/area/security/warden)
+"aiy" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 2;
+ on = 1
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/obj/machinery/camera{
+ c_tag = "Evidence Storage";
+ dir = 2;
+ network = list("SS13")
+ },
+/obj/item/weapon/storage/secure/safe{
+ name = "evidence safe";
+ pixel_x = 6;
+ pixel_y = 28
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/security/warden)
+"aiz" = (
+/obj/structure/closet/secure_closet{
+ anchored = 1;
+ name = "Secure Evidence Closet";
+ req_access_txt = "0";
+ req_one_access_txt = "3,4"
+ },
+/obj/item/weapon/storage/secure/briefcase{
+ name = "Secure Evidence Briefcase";
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 4
+ },
+/area/security/warden)
+"aiA" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow,
+/turf/open/floor/plating,
+/area/ai_monitored/security/armory)
+"aiB" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/security/warden)
+"aiC" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/ai_monitored/security/armory)
+"aiD" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/open/floor/plating,
+/area/security/main)
+"aiE" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "hosprivacy";
+ name = "privacy shutters"
+ },
+/turf/open/floor/plating,
+/area/security/hos)
+"aiF" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/poddoor/preopen{
+ id = "hosprivacy";
+ name = "privacy shutters"
+ },
+/turf/open/floor/plating,
+/area/security/hos)
+"aiG" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/command{
+ name = "Head of Security's Office";
+ req_access = null;
+ req_access_txt = "58"
+ },
+/turf/open/floor/carpet,
+/area/security/hos)
+"aiH" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/poddoor/preopen{
+ id = "hosprivacy";
+ name = "privacy shutters"
+ },
+/turf/open/floor/plating,
+/area/security/hos)
+"aiI" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "hosprivacy";
+ name = "privacy shutters"
+ },
+/turf/open/floor/plating,
+/area/security/hos)
+"aiJ" = (
+/turf/closed/wall/r_wall,
+/area/security/range)
+"aiK" = (
+/obj/structure/window/reinforced,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/security/range)
+"aiL" = (
+/obj/machinery/door/window/westleft{
+ base_state = "right";
+ dir = 2;
+ icon_state = "right";
+ name = "Shooting Range";
+ req_access_txt = "0"
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/security/range)
+"aiM" = (
+/obj/structure/window/reinforced,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/security/range)
+"aiN" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/atmos)
+"aiO" = (
+/obj/structure/chair/stool{
+ pixel_y = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aiP" = (
+/obj/structure/table,
+/obj/item/weapon/folder,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aiQ" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"aiR" = (
+/obj/structure/table,
+/obj/item/clothing/under/sl_suit{
+ desc = "Whoever wears this makes the rules.";
+ name = "referee suit"
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"aiS" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"aiT" = (
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"aiU" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 2;
+ on = 1
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"aiV" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"aiW" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"aiX" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"aiY" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"aiZ" = (
+/obj/machinery/computer/holodeck,
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"aja" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/effect/landmark/start{
+ name = "Assistant"
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"ajb" = (
+/turf/closed/wall/r_wall,
+/area/engine/gravity_generator)
+"ajc" = (
+/obj/machinery/conveyor{
+ dir = 2;
+ id = "garbage";
+ layer = 2.7
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "Disposal Exit";
+ layer = 3.1;
+ name = "disposal exit vent"
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"ajd" = (
+/obj/machinery/button/door{
+ id = "Disposal Exit";
+ name = "Disposal Vent Control";
+ pixel_x = -25;
+ pixel_y = 4;
+ req_access_txt = "12"
+ },
+/obj/machinery/button/massdriver{
+ id = "trash";
+ pixel_x = -26;
+ pixel_y = -6
+ },
+/obj/structure/chair/stool,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"aje" = (
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"ajf" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 2;
+ on = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"ajg" = (
+/turf/open/floor/plating{
+ icon_state = "platingdmg2"
+ },
+/area/maintenance/disposal)
+"ajh" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/airlock/engineering{
+ name = "Fore Port Solar Access";
+ req_access_txt = "10"
+ },
+/turf/open/floor/plating,
+/area/maintenance/auxsolarport)
+"aji" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'HIGH VOLTAGE'";
+ icon_state = "shock";
+ name = "HIGH VOLTAGE";
+ pixel_y = 0
+ },
+/turf/closed/wall,
+/area/maintenance/auxsolarport)
+"ajj" = (
+/obj/structure/table,
+/obj/item/stack/medical/ointment{
+ pixel_x = 3;
+ pixel_y = -2
+ },
+/obj/item/stack/medical/bruise_pack{
+ pixel_x = -3;
+ pixel_y = 2
+ },
+/obj/item/weapon/reagent_containers/syringe/epinephrine,
+/obj/item/weapon/storage/secure/safe{
+ pixel_x = 6;
+ pixel_y = 28
+ },
+/obj/item/weapon/restraints/handcuffs/cable/pink,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"ajk" = (
+/obj/item/stack/sheet/cardboard,
+/obj/structure/light_construct/small{
+ dir = 1
+ },
+/obj/structure/closet/crate,
+/obj/item/weapon/coin/silver,
+/obj/item/weapon/grenade/chem_grenade,
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/item/weapon/watertank,
+/obj/item/weapon/storage/box/donkpockets,
+/obj/item/weapon/poster/contraband,
+/obj/item/weapon/poster/contraband,
+/obj/item/weapon/poster/contraband,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"ajl" = (
+/obj/item/weapon/soap/deluxe,
+/obj/item/weapon/storage/secure/safe{
+ pixel_x = 6;
+ pixel_y = 28
+ },
+/obj/item/weapon/kitchen/rollingpin,
+/obj/structure/closet/crate,
+/obj/item/clothing/suit/xenos,
+/obj/item/clothing/suit/monkeysuit,
+/obj/item/clothing/head/xenos,
+/obj/item/clothing/mask/gas/monkeymask,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"ajm" = (
+/turf/closed/wall/r_wall,
+/area/security/brig)
+"ajn" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_security{
+ name = "Prison Wing";
+ req_access_txt = "1"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/red/side,
+/area/security/brig)
+"ajo" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/security/brig)
+"ajp" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/airlock/glass_security{
+ name = "Prison Wing";
+ req_access_txt = "1"
+ },
+/turf/open/floor/plasteel/red/side,
+/area/security/brig)
+"ajq" = (
+/obj/structure/closet{
+ name = "Evidence Closet 2"
+ },
+/obj/item/weapon/storage/backpack{
+ name = "Evidence Bag 2"
+ },
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 1
+ },
+/area/security/warden)
+"ajr" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/security/warden)
+"ajs" = (
+/obj/machinery/door/poddoor/shutters{
+ id = "armory";
+ name = "armory shutters"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/ai_monitored/security/armory)
+"ajt" = (
+/obj/structure/closet{
+ name = "Evidence Closet 5"
+ },
+/obj/item/weapon/storage/backpack{
+ name = "Evidence Bag 5"
+ },
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 28
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 4
+ },
+/area/security/warden)
+"aju" = (
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/obj/structure/sign/poster{
+ pixel_x = -32;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"ajv" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/security/warden)
+"ajw" = (
+/obj/structure/closet/bombcloset,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4;
+ initialize_directions = 11
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/security/warden)
+"ajx" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/open/floor/plating,
+/area/security/warden)
+"ajy" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 0;
+ pixel_y = 30
+ },
+/obj/structure/closet/secure_closet/security/sec,
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden)
+"ajz" = (
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden)
+"ajA" = (
+/obj/structure/closet/secure_closet/security/sec,
+/obj/machinery/airalarm{
+ pixel_y = 28
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden)
+"ajB" = (
+/obj/machinery/computer/secure_data,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/vault,
+/area/security/main)
+"ajC" = (
+/obj/machinery/computer/security,
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for watching Prison Wing holding areas.";
+ name = "Prison Monitor";
+ network = list("Prison");
+ pixel_x = 0;
+ pixel_y = 30
+ },
+/turf/open/floor/plasteel/vault,
+/area/security/main)
+"ajD" = (
+/turf/closed/wall,
+/area/security/main)
+"ajE" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 2;
+ external_pressure_bound = 101.325;
+ on = 1;
+ pressure_checks = 1
+ },
+/obj/effect/landmark{
+ name = "secequipment"
+ },
+/turf/open/floor/plasteel/vault,
+/area/security/main)
+"ajF" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/landmark{
+ name = "secequipment"
+ },
+/turf/open/floor/plasteel/vault,
+/area/security/main)
+"ajG" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/vault,
+/area/security/main)
+"ajH" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/landmark{
+ name = "secequipment"
+ },
+/turf/open/floor/plasteel/vault,
+/area/security/main)
+"ajI" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/effect/landmark{
+ name = "secequipment"
+ },
+/turf/open/floor/plasteel/vault,
+/area/security/main)
+"ajJ" = (
+/obj/structure/table,
+/obj/machinery/microwave{
+ pixel_x = -3;
+ pixel_y = 6
+ },
+/turf/open/floor/plasteel/vault,
+/area/security/main)
+"ajK" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/vault,
+/area/security/main)
+"ajL" = (
+/obj/structure/table,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/magnetic_controller{
+ autolink = 1;
+ pixel_y = 3
+ },
+/obj/item/clothing/ears/earmuffs,
+/obj/item/clothing/glasses/sunglasses{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/security/range)
+"ajM" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 2;
+ external_pressure_bound = 101.325;
+ on = 1;
+ pressure_checks = 1
+ },
+/turf/open/floor/plasteel,
+/area/security/range)
+"ajN" = (
+/obj/structure/table,
+/obj/machinery/recharger{
+ pixel_y = 4
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 27;
+ pixel_y = 0
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/security/range)
+"ajO" = (
+/obj/structure/closet,
+/obj/item/clothing/gloves/color/fyellow,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"ajP" = (
+/obj/item/toy/beach_ball/holoball,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"ajQ" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8";
+ d1 = 4;
+ d2 = 8
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 4
+ },
+/area/security/brig)
+"ajR" = (
+/obj/structure/chair/stool{
+ pixel_y = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"ajS" = (
+/obj/structure/table,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/item/weapon/storage/firstaid/brute,
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"ajT" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"ajU" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"ajV" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"ajW" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/holopad,
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"ajX" = (
+/obj/structure/table,
+/obj/item/weapon/paper{
+ desc = "";
+ info = "Brusies sustained in the holodeck can be healed simply by sleeping.";
+ name = "Holodeck Disclaimer"
+ },
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"ajY" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"ajZ" = (
+/turf/open/floor/plasteel/black,
+/area/engine/gravity_generator)
+"aka" = (
+/turf/open/floor/plasteel/vault{
+ dir = 1
+ },
+/area/engine/gravity_generator)
+"akb" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'RADIOACTIVE AREA'";
+ icon_state = "radiation";
+ name = "RADIOACTIVE AREA";
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/engine/gravity_generator)
+"akc" = (
+/turf/open/floor/plasteel/vault{
+ dir = 4
+ },
+/area/engine/gravity_generator)
+"akd" = (
+/turf/open/space,
+/area/maintenance/auxsolarstarboard)
+"ake" = (
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/maintenance/auxsolarstarboard)
+"akf" = (
+/obj/machinery/conveyor{
+ dir = 2;
+ id = "garbage"
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"akg" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"akh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"aki" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"akj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"akk" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"akl" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Disposal Access";
+ req_access_txt = "12"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"akm" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"akn" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"ako" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"akp" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/clothing/gloves/color/yellow,
+/obj/item/weapon/mop,
+/obj/item/weapon/bikehorn/rubberducky,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
+ },
+/obj/item/weapon/grenade/empgrenade,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"akq" = (
+/obj/item/weapon/vending_refill/cola,
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 2;
+ on = 1
+ },
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"akr" = (
+/obj/item/weapon/vending_refill/snack,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"aks" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/clothing/neck/tie/red{
+ pixel_x = -5;
+ pixel_y = 3
+ },
+/obj/item/clothing/neck/tie/horrible,
+/obj/item/clothing/neck/tie/blue{
+ pixel_x = 5;
+ pixel_y = -2
+ },
+/obj/item/weapon/dice/d8,
+/obj/item/device/healthanalyzer,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"akt" = (
+/obj/structure/table,
+/obj/item/clothing/gloves/color/latex,
+/obj/item/clothing/mask/surgical,
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/turf/open/floor/plasteel/whitered/side{
+ dir = 9
+ },
+/area/security/brig)
+"aku" = (
+/obj/structure/table,
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = 26
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/item/weapon/folder/red{
+ pixel_x = 3
+ },
+/obj/item/weapon/folder/white{
+ pixel_x = -4;
+ pixel_y = 2
+ },
+/obj/item/device/healthanalyzer,
+/turf/open/floor/plasteel/whitered/side{
+ dir = 1
+ },
+/area/security/brig)
+"akv" = (
+/obj/structure/table,
+/obj/machinery/airalarm{
+ pixel_y = 28
+ },
+/obj/machinery/computer/med_data/laptop,
+/turf/open/floor/plasteel/whitered/side{
+ dir = 1
+ },
+/area/security/brig)
+"akw" = (
+/obj/structure/table,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/weapon/pen,
+/turf/open/floor/plasteel/whitered/side{
+ dir = 5
+ },
+/area/security/brig)
+"akx" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 9
+ },
+/area/security/brig)
+"aky" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 1
+ },
+/area/security/brig)
+"akz" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/sign/pods{
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 5
+ },
+/area/security/brig)
+"akA" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8";
+ d1 = 4;
+ d2 = 8
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/security/warden)
+"akB" = (
+/obj/structure/closet{
+ name = "Evidence Closet 4"
+ },
+/obj/item/weapon/storage/backpack{
+ name = "Evidence Bag 4"
+ },
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 4
+ },
+/area/security/warden)
+"akC" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27;
+ pixel_y = 0
+ },
+/obj/machinery/camera{
+ c_tag = "Security - Secure Gear Storage";
+ dir = 4;
+ network = list("SS13")
+ },
+/obj/machinery/flasher/portable,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/security/warden)
+"akD" = (
+/obj/machinery/flasher/portable,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/security/warden)
+"akE" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/security/warden)
+"akF" = (
+/obj/structure/closet/l3closet/security,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/security/warden)
+"akG" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/cable/yellow,
+/turf/open/floor/plating,
+/area/security/warden)
+"akH" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/structure/closet/secure_closet/security/sec,
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden)
+"akI" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden)
+"akJ" = (
+/obj/structure/closet/secure_closet/security/sec,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden)
+"akK" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/security/warden)
+"akL" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 9
+ },
+/area/security/main)
+"akM" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 1
+ },
+/area/security/main)
+"akN" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = 26
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 1
+ },
+/area/security/main)
+"akO" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 1
+ },
+/area/security/main)
+"akP" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 1
+ },
+/area/security/main)
+"akQ" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 1
+ },
+/area/security/main)
+"akR" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 1
+ },
+/area/security/main)
+"akS" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4;
+ initialize_directions = 11
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 1
+ },
+/area/security/main)
+"akT" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/airalarm{
+ pixel_y = 28
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 1
+ },
+/area/security/main)
+"akU" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 1
+ },
+/area/security/main)
+"akV" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 5
+ },
+/area/security/main)
+"akW" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/security/range)
+"akX" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Security Officer"
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 8
+ },
+/area/security/range)
+"akY" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/range)
+"akZ" = (
+/obj/structure/rack{
+ pixel_y = 2
+ },
+/obj/item/weapon/gun/energy/laser/practice{
+ pixel_x = 2;
+ pixel_y = -2
+ },
+/obj/item/weapon/gun/energy/laser/practice{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/obj/machinery/camera{
+ c_tag = "Firing Range";
+ dir = 8;
+ network = list("SS13")
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/security/range)
+"ala" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"alb" = (
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/maintenance/fore)
+"alc" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"ald" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"ale" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"alf" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"alg" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"alh" = (
+/obj/structure/table,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/weapon/pen,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"ali" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"alj" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"alk" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"all" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"alm" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Holodeck Door"
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"aln" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Holodeck Door"
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"alo" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Holodeck";
+ dir = 1
+ },
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = -28
+ },
+/obj/machinery/light/small,
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"alp" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"alq" = (
+/turf/closed/wall,
+/area/maintenance/starboard)
+"alr" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"als" = (
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/turf/open/floor/plasteel/black,
+/area/engine/gravity_generator)
+"alt" = (
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/engine/gravity_generator)
+"alu" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/engine/gravity_generator)
+"alv" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/maintenance/auxsolarstarboard)
+"alw" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/external{
+ name = "Solar Maintenance";
+ req_access = null;
+ req_access_txt = "10; 13"
+ },
+/turf/open/floor/plating,
+/area/maintenance/auxsolarstarboard)
+"alx" = (
+/obj/machinery/conveyor{
+ dir = 2;
+ id = "garbage"
+ },
+/obj/structure/sign/vacuum{
+ pixel_x = -32
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"aly" = (
+/obj/machinery/disposal/deliveryChute{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/door/window{
+ base_state = "right";
+ dir = 4;
+ icon_state = "right";
+ layer = 3
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"alz" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "garbage"
+ },
+/obj/machinery/door/window/eastright{
+ base_state = "left";
+ dir = 1;
+ icon_state = "left";
+ name = "Danger: Conveyor Access";
+ req_access_txt = "12"
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"alA" = (
+/obj/machinery/mineral/stacking_machine{
+ input_dir = 2
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"alB" = (
+/obj/machinery/mineral/stacking_unit_console{
+ dir = 2;
+ machinedir = 8;
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"alC" = (
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"alD" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"alE" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"alF" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Secure Storage Room";
+ req_access_txt = "65"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"alG" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"alH" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/obj/item/weapon/bucket_sensor,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"alI" = (
+/obj/item/weapon/grown/log,
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"alJ" = (
+/obj/structure/light_construct/small{
+ dir = 4
+ },
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/weapon/storage/secure/briefcase,
+/obj/item/weapon/disk/data,
+/obj/item/weapon/grenade/flashbang,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/item/weapon/grenade/smokebomb,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"alK" = (
+/turf/closed/wall,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"alL" = (
+/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
+/turf/open/floor/plasteel/black,
+/area/maintenance/fore)
+"alM" = (
+/obj/structure/table,
+/obj/item/weapon/storage/firstaid/regular,
+/obj/item/weapon/reagent_containers/glass/bottle/epinephrine,
+/obj/item/weapon/reagent_containers/glass/bottle/charcoal,
+/obj/item/weapon/reagent_containers/syringe,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/whitered/side{
+ dir = 10
+ },
+/area/security/brig)
+"alN" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/turf/open/floor/plasteel/whitered/corner{
+ dir = 8
+ },
+/area/security/brig)
+"alO" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/security/brig)
+"alP" = (
+/obj/machinery/door/window/westleft{
+ base_state = "left";
+ dir = 4;
+ icon_state = "left";
+ name = "Infirmary";
+ req_access_txt = "0"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whitered/side{
+ dir = 4
+ },
+/area/security/brig)
+"alQ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 1
+ },
+/area/security/brig)
+"alR" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security{
+ name = "Evidence Storage";
+ req_access = null;
+ req_access_txt = "0";
+ req_one_access_txt = "1;4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8";
+ d1 = 4;
+ d2 = 8
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/security/warden)
+"alS" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 4
+ },
+/area/security/brig)
+"alT" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/obj/structure/cable/yellow{
+ icon_state = "4-8";
+ d1 = 4;
+ d2 = 8
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/security/warden)
+"alU" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8";
+ d1 = 4;
+ d2 = 8
+ },
+/turf/open/floor/plasteel,
+/area/security/warden)
+"alV" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/security{
+ name = "Evidence Storage";
+ req_access = null;
+ req_access_txt = "3";
+ req_one_access_txt = "0"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8";
+ d1 = 4;
+ d2 = 8
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/security/warden)
+"alW" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel,
+/area/security/warden)
+"alX" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/door/airlock/glass_security{
+ name = "Gear Room";
+ req_access_txt = "0";
+ req_one_access_txt = "1;4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8";
+ d1 = 4;
+ d2 = 8
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/security/warden)
+"alY" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 9
+ },
+/area/security/main)
+"alZ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/security/warden)
+"ama" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_security{
+ name = "Secure Gear Storage";
+ req_access_txt = "3"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/security/warden)
+"amb" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden)
+"amc" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden)
+"amd" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8";
+ d1 = 4;
+ d2 = 8
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/security/main)
+"ame" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden)
+"amf" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/power/apc{
+ cell_type = 5000;
+ dir = 8;
+ name = "Brig Control APC";
+ pixel_x = -26;
+ pixel_y = 0
+ },
+/obj/structure/cable/yellow,
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden)
+"amg" = (
+/turf/open/floor/plasteel/red/side{
+ dir = 1
+ },
+/area/security/main)
+"amh" = (
+/turf/open/floor/plasteel/red,
+/area/security/main)
+"ami" = (
+/obj/machinery/photocopier{
+ pixel_y = 3
+ },
+/turf/open/floor/plasteel,
+/area/security/main)
+"amj" = (
+/obj/structure/chair/comfy/black,
+/obj/effect/landmark/start{
+ name = "Head of Security"
+ },
+/turf/open/floor/plasteel,
+/area/security/main)
+"amk" = (
+/obj/machinery/computer/card/minor/hos,
+/turf/open/floor/plasteel,
+/area/security/main)
+"aml" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel/red,
+/area/security/main)
+"amm" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 1
+ },
+/area/security/main)
+"amn" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/sortjunction{
+ dir = 4;
+ icon_state = "pipe-j2s";
+ sortType = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/red/side{
+ dir = 5
+ },
+/area/security/main)
+"amo" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/sortjunction{
+ dir = 4;
+ icon_state = "pipe-j2s";
+ sortType = 7
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 4
+ },
+/area/security/main)
+"amp" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_security{
+ name = "Firing Range";
+ req_access_txt = "0";
+ req_one_access_txt = "1;4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/range)
+"amq" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 10
+ },
+/area/security/range)
+"amr" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 8
+ },
+/area/security/range)
+"ams" = (
+/obj/item/target,
+/obj/item/target,
+/obj/item/target/alien,
+/obj/item/target/alien,
+/obj/item/target/clown,
+/obj/item/target/clown,
+/obj/item/target/syndicate,
+/obj/item/target/syndicate,
+/obj/structure/closet/crate/secure{
+ desc = "A secure crate containing various materials for building a customised test-site.";
+ name = "Firing Range Gear Crate";
+ req_access_txt = "1"
+ },
+/obj/machinery/power/apc{
+ cell_type = 2500;
+ dir = 4;
+ name = "Shooting Range APC";
+ pixel_x = 24;
+ pixel_y = 0
+ },
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/security/range)
+"amt" = (
+/obj/structure/rack,
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"amu" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"amv" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/plasteel/vault,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"amw" = (
+/obj/structure/window/reinforced,
+/obj/machinery/door/window/eastright{
+ base_state = "left";
+ dir = 8;
+ icon_state = "left";
+ name = "Fitness Ring"
+ },
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"amx" = (
+/obj/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"amy" = (
+/obj/structure/window/reinforced,
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"amz" = (
+/obj/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"amA" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"amB" = (
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"amC" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"amD" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"amE" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"amF" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "maintenance access";
+ req_access_txt = "12"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"amG" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"amH" = (
+/obj/machinery/door/airlock/external{
+ req_access_txt = "0";
+ req_one_access_txt = "13,8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"amI" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/black,
+/area/engine/gravity_generator)
+"amJ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 4
+ },
+/area/engine/gravity_generator)
+"amK" = (
+/obj/machinery/gravity_generator/main/station,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/engine/gravity_generator)
+"amL" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 1
+ },
+/area/engine/gravity_generator)
+"amM" = (
+/obj/machinery/camera{
+ c_tag = "Gravity Generator Room";
+ dir = 8;
+ network = list("SS13");
+ pixel_x = 0;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/black,
+/area/engine/gravity_generator)
+"amN" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/auxsolarstarboard)
+"amO" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/conveyor{
+ dir = 9;
+ id = "garbage";
+ verted = -1
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"amP" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "garbage"
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"amQ" = (
+/obj/machinery/conveyor{
+ dir = 6;
+ id = "garbage"
+ },
+/obj/machinery/door/window/eastright{
+ base_state = "left";
+ dir = 4;
+ icon_state = "left";
+ name = "Danger: Conveyor Access";
+ req_access_txt = "12"
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"amR" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"amS" = (
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/effect/decal/cleanable/cobweb,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"amT" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"amU" = (
+/turf/open/floor/plating{
+ icon_state = "platingdmg2"
+ },
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"amV" = (
+/obj/structure/table/reinforced,
+/obj/structure/light_construct/small{
+ dir = 8
+ },
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/structure/window/reinforced,
+/obj/item/weapon/poster/legit,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"amW" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/folder,
+/obj/item/weapon/folder,
+/obj/machinery/door/window/westleft{
+ base_state = "right";
+ dir = 2;
+ icon_state = "right";
+ name = "windoor";
+ req_access_txt = "0"
+ },
+/obj/item/weapon/book/manual/wiki/engineering_hacking,
+/obj/item/device/tape/random,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"amX" = (
+/obj/structure/table/reinforced,
+/obj/structure/window/reinforced,
+/obj/item/weapon/stock_parts/cell/crap,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"amY" = (
+/obj/structure/table/reinforced,
+/obj/structure/window/reinforced,
+/obj/item/weapon/electronics/firealarm,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"amZ" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"ana" = (
+/obj/structure/rack{
+ dir = 1
+ },
+/obj/item/clothing/under/rank/mailman,
+/obj/item/clothing/under/rank/vice{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"anb" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"anc" = (
+/obj/machinery/door/airlock/glass_security{
+ name = "N2O Storage";
+ req_access_txt = "3"
+ },
+/turf/open/floor/plasteel/black,
+/area/maintenance/fore)
+"and" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/bodycontainer/morgue,
+/obj/effect/landmark{
+ name = "revenantspawn"
+ },
+/turf/open/floor/plasteel/black,
+/area/security/brig)
+"ane" = (
+/turf/open/floor/plasteel/whitered/side{
+ dir = 8
+ },
+/area/security/brig)
+"anf" = (
+/obj/structure/bed/roller,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/white,
+/area/security/brig)
+"ang" = (
+/obj/machinery/door/window/westleft{
+ base_state = "right";
+ dir = 4;
+ icon_state = "right";
+ name = "Infirmary";
+ req_access_txt = "0"
+ },
+/turf/open/floor/plasteel/whitered/side{
+ dir = 4
+ },
+/area/security/brig)
+"anh" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/red/corner{
+ dir = 1
+ },
+/area/security/brig)
+"ani" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"anj" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 4
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 27;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 4
+ },
+/area/security/brig)
+"ank" = (
+/obj/structure/table,
+/obj/item/weapon/storage/box/evidence,
+/obj/item/weapon/storage/box/evidence,
+/obj/item/weapon/storage/box/evidence,
+/obj/item/weapon/hand_labeler,
+/turf/open/floor/plasteel/vault{
+ dir = 6
+ },
+/area/security/warden)
+"anl" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/vault,
+/area/security/warden)
+"anm" = (
+/obj/structure/filingcabinet/security{
+ pixel_x = 4
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 10
+ },
+/area/security/warden)
+"ann" = (
+/obj/structure/rack,
+/obj/item/weapon/storage/box/chemimp{
+ pixel_x = 4;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/box/trackimp,
+/obj/item/weapon/storage/lockbox/loyalty,
+/obj/item/weapon/reagent_containers/glass/bottle/morphine,
+/obj/machinery/light/small,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -26;
+ pixel_y = 0
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/security/warden)
+"ano" = (
+/obj/structure/rack,
+/obj/item/weapon/storage/box/handcuffs,
+/obj/item/weapon/storage/box/flashbangs{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/security/warden)
+"anp" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/security/warden)
+"anq" = (
+/obj/structure/rack,
+/obj/item/weapon/storage/box/firingpins{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/box/firingpins,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/security/warden)
+"anr" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow,
+/turf/open/floor/plating,
+/area/security/warden)
+"ans" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden)
+"ant" = (
+/obj/structure/table,
+/obj/machinery/recharger{
+ pixel_y = 4
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden)
+"anu" = (
+/obj/machinery/vending/security,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 28
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden)
+"anv" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/camera{
+ c_tag = "Security - Office - Port";
+ dir = 4;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/security/main)
+"anw" = (
+/obj/structure/table,
+/obj/machinery/recharger{
+ pixel_y = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/main)
+"anx" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/folder/red{
+ pixel_x = 3
+ },
+/obj/item/weapon/folder/blue{
+ pixel_x = -2;
+ pixel_y = 3
+ },
+/turf/open/floor/plasteel,
+/area/security/main)
+"any" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/paper,
+/turf/open/floor/plasteel,
+/area/security/main)
+"anz" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/sign/poster{
+ pixel_y = 32
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"anA" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/red,
+/area/security/main)
+"anB" = (
+/obj/structure/table,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/turf/open/floor/plasteel,
+/area/security/main)
+"anC" = (
+/obj/machinery/power/apc{
+ cell_type = 5000;
+ dir = 4;
+ name = "Security Office APC";
+ pixel_x = 24;
+ pixel_y = 0
+ },
+/obj/structure/cable/yellow,
+/turf/open/floor/plasteel/red/side{
+ dir = 4
+ },
+/area/security/main)
+"anD" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Security Maintenance";
+ req_access_txt = "0";
+ req_one_access_txt = "1;4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/security/range)
+"anE" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/airlock/maintenance{
+ name = "Storage Room";
+ req_access_txt = "12"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"anF" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/light_switch{
+ pixel_x = -26
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"anG" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"anH" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"anI" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"anJ" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"anK" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"anL" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"anM" = (
+/obj/machinery/space_heater,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"anN" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"anO" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/engine/gravity_generator)
+"anP" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/black,
+/area/engine/gravity_generator)
+"anQ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/black,
+/area/engine/gravity_generator)
+"anR" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/black,
+/area/engine/gravity_generator)
+"anS" = (
+/turf/open/floor/plating/airless,
+/area/space)
+"anT" = (
+/obj/structure/lattice,
+/obj/structure/grille,
+/turf/open/space,
+/area/space)
+"anU" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "garbage"
+ },
+/obj/structure/disposaloutlet{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"anV" = (
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "garbage"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"anW" = (
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "garbage"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 2;
+ on = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"anX" = (
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "garbage"
+ },
+/obj/machinery/recycler,
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"anY" = (
+/obj/machinery/door/window/eastright{
+ dir = 4;
+ name = "Danger: Conveyor Access";
+ req_access_txt = "12"
+ },
+/obj/machinery/conveyor{
+ dir = 10;
+ id = "garbage"
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"anZ" = (
+/obj/effect/decal/cleanable/oil,
+/obj/machinery/light_switch{
+ pixel_x = 25;
+ pixel_y = 0
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"aoa" = (
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"aob" = (
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"aoc" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"aod" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"aoe" = (
+/obj/machinery/space_heater,
+/obj/effect/decal/cleanable/cobweb,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"aof" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"aog" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"aoh" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"aoi" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/item/weapon/tank/internals/air,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aoj" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aok" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aol" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aom" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/maintenance{
+ name = "Brig Infirmary Maintenance";
+ req_access_txt = "63";
+ req_one_access_txt = "0"
+ },
+/turf/open/floor/plating,
+/area/security/brig)
+"aon" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/black,
+/area/security/brig)
+"aoo" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light/small,
+/turf/open/floor/plasteel/whitered/side{
+ dir = 10
+ },
+/area/security/brig)
+"aop" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/iv_drip{
+ density = 0
+ },
+/turf/open/floor/plasteel/whitered/side,
+/area/security/brig)
+"aoq" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/rack,
+/obj/item/weapon/storage/firstaid/regular,
+/obj/item/device/healthanalyzer{
+ pixel_y = -2
+ },
+/obj/machinery/camera{
+ c_tag = "Brig - Infirmary";
+ dir = 1;
+ network = list("SS13")
+ },
+/obj/item/clothing/under/rank/medical/purple{
+ pixel_y = -4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/whitered/side{
+ dir = 6
+ },
+/area/security/brig)
+"aor" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4;
+ initialize_directions = 11
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 1
+ },
+/area/security/brig)
+"aos" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aot" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 28
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 4
+ },
+/area/security/brig)
+"aou" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/airlock/security{
+ name = "Evidence Storage";
+ req_access = null;
+ req_access_txt = "3";
+ req_one_access_txt = "0"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/security/warden)
+"aov" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/security/warden)
+"aow" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/glass_security{
+ name = "Secure Gear Storage";
+ req_access_txt = "3"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/security/warden)
+"aox" = (
+/obj/structure/grille,
+/turf/open/floor/plating{
+ icon_state = "platingdmg1"
+ },
+/area/maintenance/fore)
+"aoy" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 28
+ },
+/obj/structure/closet/secure_closet/warden,
+/obj/item/weapon/gun/energy/laser,
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden)
+"aoz" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/closet/secure_closet/security/sec,
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden)
+"aoA" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/security/warden)
+"aoB" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/security/main)
+"aoC" = (
+/obj/structure/table,
+/obj/item/weapon/restraints/handcuffs,
+/obj/item/device/radio/off,
+/turf/open/floor/plasteel,
+/area/security/main)
+"aoD" = (
+/obj/effect/landmark/start{
+ name = "Security Officer"
+ },
+/turf/open/floor/plasteel/red,
+/area/security/main)
+"aoE" = (
+/obj/machinery/holopad,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel/red,
+/area/security/main)
+"aoF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/red,
+/area/security/main)
+"aoG" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel/red,
+/area/security/main)
+"aoH" = (
+/obj/structure/table,
+/obj/item/weapon/folder/red,
+/obj/item/weapon/book/manual/wiki/security_space_law{
+ pixel_x = -3;
+ pixel_y = 5
+ },
+/obj/item/clothing/mask/gas/sechailer,
+/turf/open/floor/plasteel,
+/area/security/main)
+"aoI" = (
+/turf/open/floor/plasteel/red/side{
+ dir = 4
+ },
+/area/security/main)
+"aoJ" = (
+/obj/machinery/door/window/eastright{
+ base_state = "left";
+ dir = 8;
+ icon_state = "left";
+ name = "Security Delivery";
+ req_access_txt = "1"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/security/main)
+"aoK" = (
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=8";
+ dir = 8;
+ freq = 1400;
+ location = "Security"
+ },
+/obj/structure/plasticflaps{
+ opacity = 1
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/security/main)
+"aoL" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aoM" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aoN" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg2"
+ },
+/area/maintenance/fore)
+"aoO" = (
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "Disposal APC";
+ pixel_x = 0;
+ pixel_y = -24
+ },
+/obj/structure/cable/yellow,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"aoP" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aoQ" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 2
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aoR" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg2"
+ },
+/area/maintenance/fore)
+"aoS" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "0";
+ req_one_access_txt = "1;4;38;12"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aoT" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"aoU" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"aoV" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"aoW" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 2;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"aoX" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1;
+ initialize_directions = 11
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=14.8-Dorms-Lockers";
+ location = "14.5-Recreation"
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"aoY" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"aoZ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"apa" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"apb" = (
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"apc" = (
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"apd" = (
+/obj/structure/table,
+/obj/item/weapon/tank/internals/emergency_oxygen{
+ pixel_x = -8;
+ pixel_y = 0
+ },
+/obj/item/weapon/tank/internals/emergency_oxygen{
+ pixel_x = -8;
+ pixel_y = 0
+ },
+/obj/item/clothing/mask/breath{
+ pixel_x = 4;
+ pixel_y = 0
+ },
+/obj/item/clothing/mask/breath{
+ pixel_x = 4;
+ pixel_y = 0
+ },
+/obj/effect/decal/cleanable/cobweb,
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"ape" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/weapon/storage/belt{
+ desc = "Can hold quite a lot of stuff.";
+ name = "multi-belt"
+ },
+/obj/item/clothing/gloves/color/fyellow,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/structure/sink/kitchen{
+ desc = "A sink used for washing one's hands and face. It looks rusty and home-made";
+ name = "old sink";
+ pixel_y = 28
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"apf" = (
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/starboard)
+"apg" = (
+/obj/structure/closet,
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/item/weapon/reagent_containers/food/drinks/beer{
+ desc = "Takes you to a whole new level of thinking.";
+ name = "Meta-Cider"
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"aph" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/turf/open/floor/plating,
+/area/engine/gravity_generator)
+"api" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/engine/gravity_generator)
+"apj" = (
+/obj/machinery/door/airlock/glass_command{
+ name = "Gravity Generator Area";
+ req_access_txt = "19; 61"
+ },
+/turf/open/floor/plasteel/black,
+/area/engine/gravity_generator)
+"apk" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/turf/open/floor/plating,
+/area/engine/gravity_generator)
+"apl" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/engine/gravity_generator)
+"apm" = (
+/turf/closed/wall,
+/area/maintenance/auxsolarstarboard)
+"apn" = (
+/obj/machinery/power/solar_control{
+ id = "forestarboard";
+ name = "Fore Starboard Solar Control";
+ track = 0
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/auxsolarstarboard)
+"apo" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/auxsolarstarboard)
+"app" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/turf/open/floor/plating,
+/area/maintenance/auxsolarstarboard)
+"apq" = (
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating/airless,
+/area/space)
+"apr" = (
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=1";
+ freq = 1400;
+ location = "Disposals"
+ },
+/obj/structure/plasticflaps{
+ opacity = 0
+ },
+/obj/machinery/conveyor{
+ dir = 2;
+ id = "garbage"
+ },
+/obj/machinery/door/window/northright{
+ dir = 2;
+ name = "delivery door";
+ pixel_y = 0;
+ req_access_txt = "31"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"aps" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Disposal Conveyor Access";
+ req_access_txt = "12"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"apt" = (
+/obj/structure/sign/securearea{
+ name = "\improper STAY CLEAR HEAVY MACHINERY";
+ pixel_y = 0
+ },
+/turf/closed/wall,
+/area/maintenance/disposal)
+"apu" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"apv" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Storage Room";
+ req_access_txt = "12"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"apw" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
+ },
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"apx" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/weapon/circuitboard/computer/secure_data{
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/obj/item/weapon/circuitboard/computer/security{
+ pixel_x = 1;
+ pixel_y = -1
+ },
+/turf/open/floor/plasteel/black,
+/area/storage/tech)
+"apy" = (
+/obj/structure/light_construct/small{
+ dir = 4
+ },
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"apz" = (
+/obj/item/weapon/cigbutt,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"apA" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/sign/kiddieplaque{
+ desc = "A long list of rules to be followed when in the library, extolling the virtues of being quiet at all times and threatening those who would dare eat hot food inside.";
+ name = "Library Rules Sign";
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/hallway/primary/port)
+"apB" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"apC" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"apD" = (
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/item/device/flashlight{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"apE" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 1
+ },
+/area/security/brig)
+"apF" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/security/brig)
+"apG" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/red/corner{
+ dir = 4
+ },
+/area/security/brig)
+"apH" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/security/warden)
+"apI" = (
+/obj/machinery/computer/prisoner,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden)
+"apJ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden)
+"apK" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/photocopier{
+ pixel_y = 3
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden)
+"apL" = (
+/obj/machinery/requests_console{
+ department = "Security";
+ departmentType = 5;
+ pixel_y = 30
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/camera{
+ c_tag = "Warden's Office";
+ dir = 2;
+ network = list("SS13")
+ },
+/obj/structure/rack,
+/obj/item/weapon/storage/toolbox/mechanical{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/item/weapon/storage/toolbox/emergency{
+ pixel_x = 2;
+ pixel_y = -3
+ },
+/obj/item/weapon/wirecutters{
+ pixel_y = 2
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden)
+"apM" = (
+/obj/structure/table,
+/obj/machinery/recharger,
+/obj/machinery/airalarm{
+ pixel_y = 28
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden)
+"apN" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk,
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden)
+"apO" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden)
+"apP" = (
+/obj/structure/rack,
+/obj/item/clothing/under/color/blue,
+/obj/item/clothing/ears/earmuffs,
+/obj/item/clothing/neck/tie/blue,
+/obj/item/clothing/head/soft/blue,
+/obj/structure/sign/poster{
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel/vault,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"apQ" = (
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/obj/structure/closet/wardrobe/red,
+/obj/machinery/camera{
+ c_tag = "Security - Gear Room";
+ dir = 8;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden)
+"apR" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_x = -32;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/security/main)
+"apS" = (
+/obj/structure/table,
+/obj/item/weapon/folder/red,
+/obj/item/weapon/storage/fancy/cigarettes,
+/obj/item/clothing/mask/gas/sechailer,
+/turf/open/floor/plasteel,
+/area/security/main)
+"apT" = (
+/obj/structure/table,
+/obj/item/weapon/folder/red,
+/obj/item/weapon/restraints/handcuffs,
+/turf/open/floor/plasteel,
+/area/security/main)
+"apU" = (
+/obj/structure/table,
+/obj/item/weapon/folder/red,
+/obj/item/weapon/storage/secure/briefcase,
+/turf/open/floor/plasteel,
+/area/security/main)
+"apV" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/red,
+/area/security/main)
+"apW" = (
+/obj/structure/table,
+/obj/item/weapon/folder/red,
+/obj/item/device/assembly/flash/handheld,
+/turf/open/floor/plasteel,
+/area/security/main)
+"apX" = (
+/obj/item/weapon/cigbutt,
+/obj/structure/sign/poster{
+ pixel_x = -32;
+ pixel_y = 0
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"apY" = (
+/obj/structure/table,
+/obj/item/weapon/folder/red,
+/obj/item/weapon/pen,
+/obj/item/weapon/storage/box/donkpockets,
+/turf/open/floor/plasteel,
+/area/security/main)
+"apZ" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 27;
+ pixel_y = 0
+ },
+/obj/machinery/camera{
+ c_tag = "Security - Office - Starboard";
+ dir = 8;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 4
+ },
+/area/security/main)
+"aqa" = (
+/turf/closed/wall/r_wall,
+/area/security/main)
+"aqb" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aqc" = (
+/obj/structure/closet/lasertag/red,
+/turf/open/floor/plasteel/vault,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"aqd" = (
+/obj/structure/rack,
+/obj/item/clothing/under/color/red,
+/obj/item/clothing/ears/earmuffs,
+/obj/item/clothing/neck/tie/red,
+/obj/item/clothing/head/soft/red,
+/turf/open/floor/plasteel/vault,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"aqe" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/structure/sign/poster{
+ pixel_y = 32
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"aqf" = (
+/obj/structure/closet/lasertag/blue,
+/turf/open/floor/plasteel/vault,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"aqg" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"aqh" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"aqi" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"aqj" = (
+/obj/machinery/disposal/bin,
+/obj/machinery/light_switch{
+ pixel_x = 0;
+ pixel_y = -26
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/camera{
+ c_tag = "Fitness Room - Aft";
+ dir = 1
+ },
+/turf/open/floor/plasteel/vault,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"aqk" = (
+/obj/machinery/vending/coffee,
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = -28
+ },
+/turf/open/floor/plasteel/vault,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"aql" = (
+/obj/machinery/light,
+/obj/machinery/vending/cola/random,
+/turf/open/floor/plasteel/vault,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"aqm" = (
+/obj/machinery/vending/cigarette,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 27;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/vault,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"aqn" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/closed/wall,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"aqo" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"aqp" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/closed/wall,
+/area/crew_quarters/fitness{
+ name = "\improper Recreation Area"
+ })
+"aqq" = (
+/obj/item/weapon/cigbutt,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"aqr" = (
+/turf/open/floor/plating{
+ icon_state = "platingdmg2"
+ },
+/area/maintenance/starboard)
+"aqs" = (
+/obj/item/device/mmi{
+ name = "man-machine interface"
+ },
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"aqt" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Gravity Generator APC";
+ pixel_x = -25;
+ pixel_y = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/engine/gravity_generator)
+"aqu" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4;
+ initialize_directions = 11
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/gravity_generator)
+"aqv" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/gravity_generator)
+"aqw" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4;
+ initialize_directions = 11
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/gravity_generator)
+"aqx" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/power/port_gen/pacman,
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/engine/gravity_generator)
+"aqy" = (
+/obj/structure/chair/stool{
+ pixel_y = 8
+ },
+/obj/machinery/camera/autoname{
+ dir = 4;
+ network = list("SS13")
+ },
+/turf/open/floor/plating,
+/area/maintenance/auxsolarstarboard)
+"aqz" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 2;
+ on = 1
+ },
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/turf/open/floor/plating,
+/area/maintenance/auxsolarstarboard)
+"aqA" = (
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/power/terminal,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 29
+ },
+/turf/open/floor/plating,
+/area/maintenance/auxsolarstarboard)
+"aqB" = (
+/obj/structure/lattice,
+/obj/structure/grille/broken,
+/turf/open/space,
+/area/space)
+"aqC" = (
+/obj/machinery/space_heater,
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"aqD" = (
+/obj/machinery/space_heater,
+/turf/open/floor/plating{
+ icon_state = "platingdmg2"
+ },
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"aqE" = (
+/obj/machinery/door/poddoor/shutters{
+ id = "supplybridge"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"aqF" = (
+/obj/machinery/door/poddoor/shutters{
+ id = "supplybridge"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"aqG" = (
+/obj/machinery/door/poddoor/shutters{
+ id = "supplybridge"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"aqH" = (
+/obj/machinery/space_heater,
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg1"
+ },
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"aqI" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"aqJ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"aqK" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"aqL" = (
+/obj/structure/rack,
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/item/weapon/storage/toolbox/emergency,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"aqM" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"aqN" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"aqO" = (
+/obj/machinery/space_heater,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"aqP" = (
+/obj/structure/light_construct/small,
+/obj/item/weapon/toolbox_tiles_sensor,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"aqQ" = (
+/obj/item/weapon/vending_refill/cigarette,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"aqR" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"aqS" = (
+/obj/structure/closet/crate,
+/obj/item/clothing/gloves/color/fyellow,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"aqT" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating{
+ icon_plating = "warnplate"
+ },
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"aqU" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating{
+ icon_plating = "warnplate"
+ },
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"aqV" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/item/weapon/extinguisher,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aqW" = (
+/obj/structure/closet/crate,
+/obj/item/weapon/restraints/handcuffs,
+/obj/item/bodybag,
+/obj/item/device/radio,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 3;
+ name = "3maintenance loot spawner"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aqX" = (
+/obj/structure/chair,
+/obj/item/weapon/restraints/handcuffs,
+/obj/effect/decal/remains/human,
+/obj/item/clothing/under/soviet,
+/obj/effect/decal/cleanable/blood/old,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aqY" = (
+/obj/machinery/computer/security{
+ name = "Labor Camp Monitoring";
+ network = list("Labor")
+ },
+/turf/open/floor/plasteel/black,
+/area/security/brig)
+"aqZ" = (
+/obj/machinery/computer/shuttle/labor,
+/turf/open/floor/plasteel/black,
+/area/security/brig)
+"ara" = (
+/obj/machinery/computer/secure_data,
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for watching Prison Wing holding areas.";
+ dir = 2;
+ name = "Prison Monitor";
+ network = list("Prison");
+ pixel_x = -30;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden)
+"arb" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden)
+"arc" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden)
+"ard" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden)
+"are" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden)
+"arf" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 2;
+ on = 1
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden)
+"arg" = (
+/obj/structure/chair/office/dark{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Warden"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden)
+"arh" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/westleft{
+ base_state = "right";
+ dir = 4;
+ icon_state = "right";
+ name = "Outer Window";
+ req_access_txt = "0"
+ },
+/obj/machinery/door/window/brigdoor{
+ dir = 8;
+ name = "Brig Control Desk";
+ req_access_txt = "3"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/item/weapon/folder/red,
+/obj/item/weapon/folder/red,
+/obj/item/weapon/poster/legit,
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden)
+"ari" = (
+/obj/machinery/holopad,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden)
+"arj" = (
+/obj/structure/closet/secure_closet/security/sec,
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden)
+"ark" = (
+/obj/machinery/newscaster/security_unit,
+/turf/closed/wall,
+/area/security/warden)
+"arl" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/obj/effect/landmark/start{
+ name = "Security Officer"
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/security/main)
+"arm" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 10
+ },
+/area/security/main)
+"arn" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/landmark/start{
+ name = "Security Officer"
+ },
+/turf/open/floor/plasteel/red/side,
+/area/security/main)
+"aro" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1;
+ initialize_directions = 11
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/effect/landmark/start{
+ name = "Security Officer"
+ },
+/turf/open/floor/plasteel/red/side,
+/area/security/main)
+"arp" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Security Officer"
+ },
+/turf/open/floor/plasteel/red/side,
+/area/security/main)
+"arq" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/red,
+/area/security/main)
+"arr" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 2;
+ initialize_directions = 11
+ },
+/obj/effect/landmark/start{
+ name = "Security Officer"
+ },
+/turf/open/floor/plasteel/red/side,
+/area/security/main)
+"ars" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/red/side{
+ dir = 6
+ },
+/area/security/main)
+"art" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 4
+ },
+/area/security/main)
+"aru" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security{
+ name = "Interrogation Monitoring";
+ req_access = null;
+ req_access_txt = "0";
+ req_one_access_txt = "1;4"
+ },
+/turf/open/floor/plasteel/grimy,
+/area/security/main)
+"arv" = (
+/turf/open/floor/plasteel/grimy,
+/area/security/main)
+"arw" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plasteel/grimy,
+/area/security/main)
+"arx" = (
+/obj/item/weapon/phone{
+ desc = "Supposedly a direct line to NanoTrasen Central Command. It's not even plugged in.";
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/weapon/cigbutt/cigarbutt{
+ pixel_x = 5;
+ pixel_y = -1
+ },
+/obj/structure/table/wood,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 28
+ },
+/turf/open/floor/plasteel/grimy,
+/area/security/main)
+"ary" = (
+/obj/structure/rack,
+/obj/item/clothing/suit/hazardvest,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"arz" = (
+/obj/machinery/space_heater,
+/turf/open/floor/plating{
+ icon_state = "platingdmg1"
+ },
+/area/maintenance/fore)
+"arA" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"arB" = (
+/turf/closed/wall,
+/area/crew_quarters/sleep)
+"arC" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock{
+ name = "Recreation Area";
+ req_access_txt = "0"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/crew_quarters/sleep)
+"arD" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/tinted/fulltile,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/crew_quarters/sleep)
+"arE" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock{
+ name = "Recreation Area";
+ req_access_txt = "0"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/crew_quarters/sleep)
+"arF" = (
+/obj/structure/closet,
+/obj/item/weapon/poster/contraband,
+/obj/item/weapon/poster/contraband,
+/obj/item/weapon/poster/contraband,
+/obj/item/weapon/poster/contraband,
+/obj/item/weapon/poster/contraband,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"arG" = (
+/obj/structure/closet,
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/starboard)
+"arH" = (
+/obj/structure/rack,
+/obj/item/weapon/extinguisher,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"arI" = (
+/obj/structure/rack,
+/obj/effect/landmark/costume,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"arJ" = (
+/obj/structure/rack,
+/obj/item/clothing/suit/poncho,
+/obj/item/clothing/head/sombrero,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"arK" = (
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/maintenance/starboard)
+"arL" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 2;
+ on = 1
+ },
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"arM" = (
+/obj/structure/rack,
+/obj/item/weapon/book/manual/wiki/engineering_guide{
+ pixel_x = 3;
+ pixel_y = 4
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/item/weapon/storage/box/lights/mixed,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"arN" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/closed/wall/r_wall,
+/area/engine/gravity_generator)
+"arO" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/engine/gravity_generator)
+"arP" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/engine/gravity_generator)
+"arQ" = (
+/obj/machinery/airalarm{
+ dir = 1;
+ icon_state = "alarm0";
+ pixel_y = -22
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/obj/machinery/holopad,
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/engine/gravity_generator)
+"arR" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/machinery/power/terminal,
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/engine/gravity_generator)
+"arS" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 28
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/structure/chair/office/light,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/engine/gravity_generator)
+"arT" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Fore Starboard Solar APC";
+ pixel_x = -25;
+ pixel_y = 3
+ },
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg1"
+ },
+/area/maintenance/auxsolarstarboard)
+"arU" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/maintenance/auxsolarstarboard)
+"arV" = (
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/power/smes,
+/turf/open/floor/plating,
+/area/maintenance/auxsolarstarboard)
+"arW" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"arX" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
+ },
+/obj/machinery/light,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"arY" = (
+/obj/machinery/door/airlock/glass{
+ name = "space-bridge access"
+ },
+/obj/machinery/button/door{
+ id = "supplybridge";
+ name = "Shuttle Bay Space Bridge Control";
+ pixel_x = 0;
+ pixel_y = 27;
+ req_access_txt = "0"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"arZ" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"asa" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"asb" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"asc" = (
+/obj/machinery/door/airlock/glass{
+ name = "space-bridge access"
+ },
+/obj/machinery/button/door{
+ id = "supplybridge";
+ name = "Shuttle Bay Space Bridge Control";
+ pixel_x = 0;
+ pixel_y = 27;
+ req_access_txt = "0"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"asd" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/obj/machinery/light,
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"ase" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"asf" = (
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "Cargo Bay Bridge Access";
+ req_access_txt = "0";
+ req_one_access_txt = "0"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"asg" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"ash" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"asi" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"asj" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"ask" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"asl" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Storage Room";
+ req_access_txt = "12"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"asm" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/airlock/maintenance{
+ name = "Brig Maintenance";
+ req_access_txt = "0";
+ req_one_access_txt = "63;12"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"asn" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ external_pressure_bound = 101.325;
+ on = 1;
+ pressure_checks = 1
+ },
+/obj/machinery/camera{
+ c_tag = "Labor Shuttle Control Desk";
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/table,
+/obj/item/weapon/storage/box/prisoner,
+/obj/item/weapon/razor{
+ pixel_x = -6
+ },
+/obj/item/weapon/paper{
+ desc = "";
+ info = "Labor Camp Facility Operation Guide
Hello there, proud operator of an NT-Sec Prisoner Rehabilitation Center. A solution to rising crime rates and falling productivity, these facilities are specifically designed for the safe, productive imprisonment of your most dangerous criminals.
To press a long-term prisoner into the service of the station, replace his equipment with prisoners' garb at one of the prison lockers, as per normal operating procedure. Before assigning a prisoner his ID, insert the ID into a prisoner management console and assign the prisoner a quota, based on the severity of his crime.
A single sheet of most materials produces five points for the prisoner, and points can be expected to be produced at a rate of about 100 per minute, though punishments as severe as forced labor should be reserved for serious crimes of sentences not less than five minutes long.
Once you have prepared the prisoner, place him in the secure northern half of the labor shuttle, and send him to the station. Once he meets his quota by feeding sheets to the stacker, he will be allowed to return to the station, and will be able to open the secure door to the prisoner release area.
In the case of dangerous prisoners, surveilance may be needed. To that end, there is a prisoner monitoring room on the mining station, equipped with a remote flasher and a lockdown button. The mine itself is patrolled by a securibot, so the nearby security records console can also be used to secure hostile prisoners on the mine.";
+ name = "Labor Camp Operating Guide"
+ },
+/obj/item/weapon/pen,
+/turf/open/floor/plasteel/black,
+/area/security/brig)
+"aso" = (
+/obj/structure/chair/office/dark{
+ dir = 8
+ },
+/turf/open/floor/plasteel/black,
+/area/security/brig)
+"asp" = (
+/obj/machinery/computer/security,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden)
+"asq" = (
+/obj/effect/landmark/start{
+ name = "Warden"
+ },
+/obj/structure/chair/office/dark,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden)
+"asr" = (
+/obj/machinery/computer/crew,
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden)
+"ass" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/newscaster/security_unit{
+ pixel_x = 0;
+ pixel_y = -30
+ },
+/obj/item/weapon/folder/red,
+/obj/item/weapon/folder/red,
+/obj/structure/table,
+/obj/item/weapon/book/manual/wiki/security_space_law{
+ pixel_x = -3;
+ pixel_y = 5
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden)
+"ast" = (
+/obj/structure/table,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/weapon/pen,
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_x = 0;
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden)
+"asu" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/filingcabinet/chestdrawer{
+ pixel_y = 2
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden)
+"asv" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = "0"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden)
+"asw" = (
+/obj/structure/table,
+/obj/machinery/button/door{
+ id = "Prison Gate";
+ name = "Prison Wing Lockdown";
+ pixel_x = 0;
+ pixel_y = 7;
+ req_access_txt = "2"
+ },
+/obj/machinery/button/door{
+ id = "Secure Gate";
+ name = "Cell Window Control";
+ normaldoorcontrol = 0;
+ pixel_x = -5;
+ pixel_y = -3;
+ req_access_txt = "0";
+ specialfunctions = 4
+ },
+/obj/machinery/button/door{
+ id = "briglockdown";
+ name = "Brig Lockdown Control";
+ pixel_x = 5;
+ pixel_y = -3;
+ req_access_txt = "0"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 29;
+ pixel_y = -28
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden)
+"asx" = (
+/obj/structure/table,
+/obj/machinery/recharger{
+ pixel_y = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden)
+"asy" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ external_pressure_bound = 101.325;
+ on = 1;
+ pressure_checks = 1
+ },
+/obj/vehicle/secway,
+/obj/item/key/security,
+/turf/open/floor/plasteel/red/side{
+ dir = 10
+ },
+/area/security/main)
+"asz" = (
+/obj/structure/table,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/item/weapon/folder/red,
+/obj/item/weapon/restraints/handcuffs,
+/obj/item/clothing/head/cone{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/item/clothing/head/cone{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/item/clothing/head/cone{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/item/clothing/head/cone{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/item/clothing/head/cone{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden)
+"asA" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/security/warden)
+"asB" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"asC" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel/red/side,
+/area/security/main)
+"asD" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/red/side,
+/area/security/main)
+"asE" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/red/side,
+/area/security/main)
+"asF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/red/side,
+/area/security/main)
+"asG" = (
+/obj/machinery/light,
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_x = 0;
+ pixel_y = -32
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/red/side,
+/area/security/main)
+"asH" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/red/side,
+/area/security/main)
+"asI" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/red/side,
+/area/security/main)
+"asJ" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/open/floor/plasteel/red/side,
+/area/security/main)
+"asK" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/red/side,
+/area/security/main)
+"asL" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 6
+ },
+/area/security/main)
+"asM" = (
+/obj/structure/chair,
+/turf/open/floor/plasteel/grimy,
+/area/security/main)
+"asN" = (
+/obj/structure/chair,
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for watching proceedings in the interrogation room.";
+ dir = 1;
+ layer = 4;
+ name = "interrogation monitor";
+ network = list("interrogation");
+ pixel_x = 0;
+ pixel_y = -30
+ },
+/turf/open/floor/plasteel/grimy,
+/area/security/main)
+"asO" = (
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/structure/table/wood,
+/obj/item/device/radio/intercom{
+ anyai = 1;
+ broadcasting = 0;
+ freerange = 1;
+ frequency = 1424;
+ listening = 1;
+ name = "Interrogation Intercom";
+ pixel_x = 0;
+ pixel_y = -31
+ },
+/turf/open/floor/plasteel/grimy,
+/area/security/main)
+"asP" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"asQ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance{
+ name = "Storage Room";
+ req_access_txt = "12"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"asR" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"asS" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"asT" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/table/wood,
+/obj/machinery/newscaster{
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/obj/item/weapon/lighter,
+/turf/open/floor/wood,
+/area/crew_quarters/sleep)
+"asU" = (
+/obj/structure/closet/secure_closet/personal/cabinet,
+/obj/machinery/airalarm{
+ pixel_y = 23
+ },
+/obj/item/clothing/under/assistantformal,
+/turf/open/floor/wood,
+/area/crew_quarters/sleep)
+"asV" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet,
+/obj/machinery/button/door{
+ id = "Cabin3";
+ name = "Cabin Bolt Control";
+ normaldoorcontrol = 1;
+ pixel_x = 25;
+ pixel_y = 0;
+ req_access_txt = "0";
+ specialfunctions = 4
+ },
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/sleep)
+"asW" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/crew_quarters/sleep)
+"asX" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/crew_quarters/sleep)
+"asY" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"asZ" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/crew_quarters/sleep)
+"ata" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/cobweb,
+/obj/machinery/button/door{
+ id = "Cabin4";
+ name = "Cabin Bolt Control";
+ normaldoorcontrol = 1;
+ pixel_x = -25;
+ pixel_y = 0;
+ req_access_txt = "0";
+ specialfunctions = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/structure/bed,
+/obj/item/weapon/bedsheet,
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep)
+"atb" = (
+/obj/structure/closet/secure_closet/personal/cabinet,
+/obj/machinery/airalarm{
+ pixel_y = 23
+ },
+/obj/item/clothing/under/suit_jacket/burgundy,
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep)
+"atc" = (
+/obj/structure/dresser,
+/obj/machinery/newscaster{
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep)
+"atd" = (
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/maintenance/starboard)
+"ate" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"atf" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall/r_wall,
+/area/engine/gravity_generator)
+"atg" = (
+/obj/machinery/door/airlock/highsecurity{
+ name = "Gravity Generator Room";
+ req_access_txt = "19;23"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/engine/gravity_generator)
+"ath" = (
+/obj/machinery/power/smes{
+ charge = 5e+006
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/engine/gravity_generator)
+"ati" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/table,
+/obj/item/weapon/paper/gravity_gen{
+ layer = 3
+ },
+/obj/item/weapon/pen/blue,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/engine/gravity_generator)
+"atj" = (
+/obj/machinery/space_heater,
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/maintenance/starboard)
+"atk" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/airlock/engineering{
+ name = "Fore Starboard Solar Access";
+ req_access_txt = "10"
+ },
+/turf/open/floor/plating,
+/area/maintenance/auxsolarstarboard)
+"atl" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'HIGH VOLTAGE'";
+ icon_state = "shock";
+ name = "HIGH VOLTAGE";
+ pixel_y = 0
+ },
+/turf/closed/wall,
+/area/maintenance/auxsolarstarboard)
+"atm" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/starboard)
+"atn" = (
+/obj/machinery/door/airlock/external{
+ req_access_txt = "13"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"ato" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "Cargo Bay Bridge Access";
+ req_access_txt = "0";
+ req_one_access_txt = "0"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"atp" = (
+/obj/machinery/door/poddoor/shutters{
+ id = "supplybridge"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"atq" = (
+/obj/machinery/door/poddoor/shutters{
+ id = "supplybridge"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"atr" = (
+/obj/machinery/door/poddoor/shutters{
+ id = "supplybridge"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"ats" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"att" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"atu" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"atv" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"atw" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"atx" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aty" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/sortjunction{
+ dir = 4;
+ icon_state = "pipe-j1s";
+ sortType = 2
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"atz" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"atA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"atB" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "0";
+ req_one_access_txt = "12;63"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"atC" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"atD" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"atE" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"atF" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/sign/poster{
+ pixel_y = 32
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"atG" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"atH" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"atI" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"atJ" = (
+/obj/structure/grille,
+/obj/structure/window/shuttle,
+/turf/open/floor/plating,
+/area/shuttle/labor)
+"atK" = (
+/obj/machinery/computer/gulag_teleporter_computer,
+/turf/open/floor/plasteel/black,
+/area/security/brig)
+"atL" = (
+/obj/machinery/gulag_teleporter,
+/turf/open/floor/plasteel/black,
+/area/security/brig)
+"atM" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/security/brig)
+"atN" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 4
+ },
+/area/security/brig)
+"atO" = (
+/obj/structure/sign/pods,
+/turf/closed/wall/r_wall,
+/area/security/warden)
+"atP" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"atQ" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/security/warden)
+"atR" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_security{
+ name = "Brig Control";
+ req_access_txt = "3"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = "0"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/security/warden)
+"atS" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_security{
+ name = "Gear Room";
+ req_access_txt = "0";
+ req_one_access_txt = "1;4"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/security/warden)
+"atT" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow,
+/turf/open/floor/plating,
+/area/security/main)
+"atU" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/glass_security{
+ name = "Security Office";
+ req_access_txt = "0";
+ req_one_access_txt = "1;4"
+ },
+/turf/open/floor/plasteel,
+/area/security/main)
+"atV" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_security{
+ name = "Security Office";
+ req_access_txt = "0";
+ req_one_access_txt = "1;4"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/security/main)
+"atW" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow,
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/security/main)
+"atX" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/security/main)
+"atY" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/security/main)
+"atZ" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/tinted/fulltile,
+/turf/open/floor/plating,
+/area/security/main)
+"aua" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/maintenance/fore)
+"aub" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"auc" = (
+/turf/open/floor/plating{
+ icon_state = "platingdmg2"
+ },
+/area/maintenance/fore)
+"aud" = (
+/obj/structure/chair/wood/normal{
+ dir = 1
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/sleep)
+"aue" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/sleep)
+"auf" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/sleep)
+"aug" = (
+/obj/machinery/door/airlock{
+ id_tag = "Cabin3";
+ name = "Cabin 6"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/sleep)
+"auh" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/crew_quarters/sleep)
+"aui" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4;
+ initialize_directions = 11
+ },
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"auj" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/crew_quarters/sleep)
+"auk" = (
+/obj/machinery/door/airlock{
+ id_tag = "Cabin4";
+ name = "Cabin 5"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/sleep)
+"aul" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep)
+"aum" = (
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep)
+"aun" = (
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep)
+"auo" = (
+/obj/structure/mopbucket,
+/obj/item/weapon/mop,
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg2"
+ },
+/area/maintenance/starboard)
+"aup" = (
+/obj/structure/closet/crate/hydroponics,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"auq" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"aur" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aus" = (
+/obj/structure/closet,
+/obj/item/weapon/stock_parts/matter_bin,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"aut" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Storage Room";
+ req_access_txt = "12"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"auu" = (
+/obj/structure/closet/radiation,
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'RADIOACTIVE AREA'";
+ dir = 1;
+ icon_state = "radiation";
+ name = "RADIOACTIVE AREA";
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/engine/gravity_generator)
+"auv" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/gravity_generator)
+"auw" = (
+/obj/machinery/camera{
+ c_tag = "Gravity Generator Foyer"
+ },
+/obj/structure/closet/radiation,
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'RADIOACTIVE AREA'";
+ dir = 1;
+ icon_state = "radiation";
+ name = "RADIOACTIVE AREA";
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/engine/gravity_generator)
+"aux" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"auy" = (
+/obj/item/stack/sheet/cardboard,
+/obj/item/device/flashlight,
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"auz" = (
+/obj/structure/rack,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/glasses/sunglasses,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"auA" = (
+/obj/structure/closet/crate/medical,
+/obj/item/stack/cable_coil,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"auB" = (
+/obj/structure/closet/emcloset,
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"auC" = (
+/obj/structure/closet/crate{
+ icon_state = "crateopen";
+ opened = 1
+ },
+/turf/open/floor/plating/airless,
+/area/space)
+"auD" = (
+/obj/structure/closet/crate{
+ icon_state = "crateopen";
+ opened = 1
+ },
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/obj/effect/decal/cleanable/cobweb,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 3;
+ name = "3maintenance loot spawner"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"auE" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"auF" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"auG" = (
+/turf/open/floor/plating{
+ icon_state = "platingdmg1"
+ },
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"auH" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"auI" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"auJ" = (
+/obj/structure/grille,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/window/reinforced/tinted/fulltile,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"auK" = (
+/obj/structure/disposalpipe/junction{
+ icon_state = "pipe-j2";
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"auL" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"auM" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"auN" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow,
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"auO" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"auP" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow,
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"auQ" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/labor)
+"auR" = (
+/obj/machinery/computer/shuttle/labor,
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_x = -31;
+ pixel_y = 0
+ },
+/turf/open/floor/mineral/plastitanium/brig,
+/area/shuttle/labor)
+"auS" = (
+/obj/structure/chair/office/dark{
+ dir = 1
+ },
+/turf/open/floor/mineral/plastitanium/brig,
+/area/shuttle/labor)
+"auT" = (
+/obj/structure/table,
+/obj/item/weapon/folder/red,
+/obj/item/weapon/restraints/handcuffs,
+/turf/open/floor/mineral/plastitanium/brig,
+/area/shuttle/labor)
+"auU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = -32;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 8
+ },
+/area/security/brig)
+"auV" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/junction,
+/turf/open/floor/plasteel,
+/area/security/brig)
+"auW" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 4
+ },
+/area/security/brig)
+"auX" = (
+/obj/machinery/photocopier,
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "Head of Security's Office APC";
+ pixel_x = 24
+ },
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/button/door{
+ id = "hosprivacy";
+ name = "Privacy Shutters Control";
+ pixel_x = 26;
+ pixel_y = -26
+ },
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_x = 0;
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel/vault,
+/area/security/hos)
+"auY" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 4
+ },
+/area/security/brig)
+"auZ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/red/corner{
+ dir = 4
+ },
+/area/security/brig)
+"ava" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/westleft{
+ base_state = "right";
+ dir = 2;
+ icon_state = "right";
+ name = "Reception Window";
+ req_access_txt = "0"
+ },
+/obj/machinery/door/window/brigdoor{
+ dir = 1;
+ name = "Brig Control Desk";
+ req_access_txt = "3"
+ },
+/obj/item/weapon/paper,
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden)
+"avb" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/camera{
+ c_tag = "Brig - Hallway - Entrance";
+ dir = 2;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 4
+ },
+/area/security/brig)
+"avc" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/red/corner{
+ dir = 4
+ },
+/area/security/brig)
+"avd" = (
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = 26
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 4
+ },
+/area/security/brig)
+"ave" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 0;
+ pixel_y = 30
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 4
+ },
+/area/security/brig)
+"avf" = (
+/obj/machinery/firealarm{
+ pixel_y = 28
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 4
+ },
+/area/security/brig)
+"avg" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/red/corner{
+ dir = 4
+ },
+/area/security/brig)
+"avh" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 4
+ },
+/area/security/brig)
+"avi" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 5
+ },
+/area/security/brig)
+"avj" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 2;
+ external_pressure_bound = 101.325;
+ on = 1;
+ pressure_checks = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/security/brig)
+"avk" = (
+/turf/open/floor/plasteel/black,
+/area/security/brig)
+"avl" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -26;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/crew_quarters/sleep)
+"avm" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"avn" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 27;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/crew_quarters/sleep)
+"avo" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/crew_quarters/sleep)
+"avp" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/closed/wall,
+/area/crew_quarters/sleep)
+"avq" = (
+/obj/item/weapon/cigbutt,
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"avr" = (
+/turf/open/floor/plating{
+ icon_state = "platingdmg1"
+ },
+/area/maintenance/starboard)
+"avs" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"avt" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"avu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'RADIOACTIVE AREA'";
+ dir = 1;
+ icon_state = "radiation";
+ name = "RADIOACTIVE AREA";
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"avv" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"avw" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/light/small,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/engine/gravity_generator)
+"avx" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/engine/gravity_generator)
+"avy" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 2
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/engine/gravity_generator)
+"avz" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"avA" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'RADIOACTIVE AREA'";
+ dir = 1;
+ icon_state = "radiation";
+ name = "RADIOACTIVE AREA";
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"avB" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"avC" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg1"
+ },
+/area/maintenance/starboard)
+"avD" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg2"
+ },
+/area/maintenance/starboard)
+"avE" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/maintenance/starboard)
+"avF" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"avG" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"avH" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/hallway/primary/port)
+"avI" = (
+/obj/structure/closet/crate,
+/obj/item/stack/sheet/metal{
+ amount = 50;
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/stack/sheet/metal{
+ amount = 50;
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/stack/sheet/metal{
+ amount = 50;
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/turf/open/floor/plating/airless,
+/area/space)
+"avJ" = (
+/obj/machinery/door/airlock/external,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"avK" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"avL" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"avM" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"avN" = (
+/obj/item/hand_labeler_refill,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"avO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"avP" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"avQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "0";
+ req_one_access_txt = "12;50"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"avR" = (
+/obj/structure/disposalpipe/sortjunction{
+ dir = 1;
+ icon_state = "pipe-j2s";
+ sortType = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"avS" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating{
+ icon_state = "platingdmg2"
+ },
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"avT" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"avU" = (
+/turf/open/floor/mineral/plastitanium/brig,
+/area/shuttle/labor)
+"avV" = (
+/obj/machinery/button/flasher{
+ id = "gulagshuttleflasher";
+ name = "Flash Control";
+ pixel_x = 0;
+ pixel_y = -26;
+ req_access_txt = "1"
+ },
+/turf/open/floor/mineral/plastitanium/brig,
+/area/shuttle/labor)
+"avW" = (
+/obj/machinery/mineral/labor_claim_console{
+ machinedir = 2;
+ pixel_x = 30;
+ pixel_y = 30
+ },
+/turf/open/floor/mineral/plastitanium/brig,
+/area/shuttle/labor)
+"avX" = (
+/obj/machinery/door/airlock/titanium{
+ name = "Labor Shuttle Airlock";
+ req_access_txt = "2"
+ },
+/turf/open/floor/mineral/plastitanium/brig,
+/area/shuttle/labor)
+"avY" = (
+/obj/machinery/door/airlock/external{
+ name = "Labor Camp Shuttle Airlock";
+ req_access_txt = "2"
+ },
+/turf/open/floor/plasteel/black,
+/area/security/brig)
+"avZ" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_security{
+ name = "Labor Camp Shuttle Airlock";
+ req_access_txt = "2"
+ },
+/obj/machinery/button/door{
+ id = "prison release";
+ name = "Labor Camp Shuttle Lockdown";
+ pixel_x = 0;
+ pixel_y = -25;
+ req_access_txt = "2"
+ },
+/turf/open/floor/plasteel/black,
+/area/security/brig)
+"awa" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/red/corner{
+ dir = 8
+ },
+/area/security/brig)
+"awb" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"awc" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = "0"
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"awd" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"awe" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"awf" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"awg" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"awh" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"awi" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/mob/living/simple_animal/bot/secbot/beepsky{
+ desc = "It's Officer Beepsky! Powered by a potato and a shot of whiskey, and with a sturdier reinforced chassis, too. ";
+ health = 45;
+ maxHealth = 45;
+ name = "Officer Beepsky"
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"awj" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/security/brig)
+"awk" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"awl" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"awm" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"awn" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"awo" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"awp" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"awq" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"awr" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"aws" = (
+/turf/open/floor/plasteel,
+/area/security/brig)
+"awt" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 4
+ },
+/area/security/brig)
+"awu" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security{
+ name = "Interrogation";
+ req_access = null;
+ req_access_txt = "63";
+ req_one_access_txt = "0"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/security/brig)
+"awv" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/black,
+/area/security/brig)
+"aww" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/security/brig)
+"awx" = (
+/obj/structure/table,
+/obj/item/device/flashlight/lamp,
+/turf/open/floor/plasteel/black,
+/area/security/brig)
+"awy" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/plasteel/black,
+/area/security/brig)
+"awz" = (
+/obj/machinery/camera{
+ c_tag = "Interrogation";
+ dir = 8;
+ network = list("interrogation")
+ },
+/turf/open/floor/plasteel/black,
+/area/security/brig)
+"awA" = (
+/obj/structure/closet/crate{
+ icon_state = "crateopen";
+ opened = 1
+ },
+/obj/item/weapon/storage/box/donkpockets,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"awB" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/item/weapon/storage/box/lights/mixed,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"awC" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/newscaster{
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/obj/structure/dresser,
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep)
+"awD" = (
+/obj/structure/closet/secure_closet/personal/cabinet,
+/obj/machinery/airalarm{
+ pixel_y = 23
+ },
+/obj/item/clothing/under/suit_jacket/tan,
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep)
+"awE" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet,
+/obj/machinery/button/door{
+ id = "Cabin2";
+ name = "Cabin Bolt Control";
+ normaldoorcontrol = 1;
+ pixel_x = 25;
+ pixel_y = 0;
+ req_access_txt = "0";
+ specialfunctions = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep)
+"awF" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Dormitories - Fore";
+ dir = 8
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/crew_quarters/sleep)
+"awG" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet,
+/obj/machinery/button/door{
+ id = "Cabin5";
+ name = "Dorm Bolt Control";
+ normaldoorcontrol = 1;
+ pixel_x = -25;
+ pixel_y = 0;
+ req_access_txt = "0";
+ specialfunctions = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/sleep)
+"awH" = (
+/obj/machinery/newscaster{
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/obj/structure/table/wood,
+/obj/item/weapon/paper,
+/turf/open/floor/wood,
+/area/crew_quarters/sleep)
+"awI" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Storage Room";
+ req_access_txt = "12"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"awJ" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating{
+ icon_state = "platingdmg1"
+ },
+/area/maintenance/starboard)
+"awK" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/airlock/highsecurity{
+ name = "Gravity Generator Foyer";
+ req_access_txt = "10"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/engine/gravity_generator)
+"awL" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/hallway/primary/port)
+"awM" = (
+/obj/structure/closet,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"awN" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/mining)
+"awO" = (
+/obj/structure/grille,
+/obj/structure/window/shuttle,
+/turf/open/floor/plating,
+/area/shuttle/mining)
+"awP" = (
+/obj/item/clothing/gloves/color/rainbow,
+/obj/item/clothing/shoes/sneakers/rainbow,
+/obj/item/clothing/under/color/rainbow,
+/obj/item/clothing/head/soft/rainbow,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"awQ" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"awR" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"awS" = (
+/obj/structure/closet/crate,
+/obj/item/weapon/coin/silver,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"awT" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"awU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"awV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"awW" = (
+/turf/closed/wall/r_wall,
+/area/security/nuke_storage)
+"awX" = (
+/obj/machinery/door/airlock/titanium{
+ name = "Labor Shuttle Airlock";
+ req_access_txt = "2"
+ },
+/turf/open/floor/plasteel/black,
+/area/shuttle/labor)
+"awY" = (
+/obj/machinery/mineral/stacking_machine/laborstacker{
+ input_dir = 2;
+ output_dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/shuttle/labor)
+"awZ" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 8
+ },
+/area/security/brig)
+"axa" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"axb" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = "0"
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 2
+ },
+/area/security/brig)
+"axc" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/light,
+/obj/machinery/camera{
+ c_tag = "Brig - Hallway - Port";
+ dir = 1;
+ network = list("SS13")
+ },
+/obj/machinery/door_timer{
+ id = "Cell 1";
+ name = "Cell 1";
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel/red/side,
+/area/security/brig)
+"axd" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 8
+ },
+/area/security/brig)
+"axe" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 2;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"axf" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/door_timer{
+ id = "Cell 2";
+ name = "Cell 2";
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel/red/side,
+/area/security/brig)
+"axg" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = "0"
+ },
+/turf/open/floor/plasteel/red/side,
+/area/security/brig)
+"axh" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 2;
+ initialize_directions = 11
+ },
+/obj/machinery/door_timer{
+ id = "Cell 3";
+ name = "Cell 3";
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 2
+ },
+/area/security/brig)
+"axi" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 9
+ },
+/area/security/brig)
+"axj" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 1
+ },
+/area/security/brig)
+"axk" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
+/turf/open/floor/plasteel/red/side{
+ dir = 5
+ },
+/area/security/brig)
+"axl" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ cell_type = 10000;
+ dir = 2;
+ name = "Brig APC";
+ pixel_x = 1;
+ pixel_y = -24
+ },
+/obj/structure/cable/yellow,
+/obj/machinery/button/flasher{
+ id = "secentranceflasher";
+ name = "Brig Entrance Flasher";
+ pixel_x = -3;
+ pixel_y = -38;
+ req_access_txt = "1"
+ },
+/turf/open/floor/plasteel/red/side,
+/area/security/brig)
+"axm" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 8
+ },
+/area/security/brig)
+"axn" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"axo" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"axp" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 2
+ },
+/area/security/brig)
+"axq" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 2;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 2
+ },
+/area/security/brig)
+"axr" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/button/flasher{
+ id = "holdingflash";
+ pixel_x = 0;
+ pixel_y = -26;
+ req_access_txt = "1"
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 2
+ },
+/area/security/brig)
+"axs" = (
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/light,
+/obj/machinery/camera{
+ c_tag = "Brig - Hallway - Starboard";
+ dir = 1;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 2
+ },
+/area/security/brig)
+"axt" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 2
+ },
+/area/security/brig)
+"axu" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 2
+ },
+/area/security/brig)
+"axv" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 27;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 6
+ },
+/area/security/brig)
+"axw" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/security/brig)
+"axx" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/security/brig)
+"axy" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/security/brig)
+"axz" = (
+/obj/structure/table,
+/obj/item/weapon/folder/red,
+/obj/item/device/taperecorder{
+ pixel_y = 0
+ },
+/obj/item/device/radio/intercom{
+ anyai = 1;
+ broadcasting = 1;
+ freerange = 1;
+ frequency = 1424;
+ listening = 0;
+ name = "Interrogation Intercom";
+ pixel_x = 0;
+ pixel_y = -24
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/security/brig)
+"axA" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/security/brig)
+"axB" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/black,
+/area/security/brig)
+"axC" = (
+/turf/closed/wall,
+/area/crew_quarters/locker/locker_toilet{
+ name = "\improper Restrooms"
+ })
+"axD" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep)
+"axE" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep)
+"axF" = (
+/obj/machinery/door/airlock{
+ id_tag = "Cabin2";
+ name = "Cabin 4"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/sleep)
+"axG" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/crew_quarters/sleep)
+"axH" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"axI" = (
+/obj/machinery/door/airlock{
+ id_tag = "Cabin5";
+ name = "Cabin 3"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/sleep)
+"axJ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/wood,
+/area/crew_quarters/sleep)
+"axK" = (
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
+ },
+/obj/machinery/light/small,
+/turf/open/floor/wood,
+/area/crew_quarters/sleep)
+"axL" = (
+/obj/item/weapon/caution,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"axM" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"axN" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/maintenance/starboard)
+"axO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"axP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 2
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"axQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg1"
+ },
+/area/maintenance/starboard)
+"axR" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/holopad,
+/turf/open/floor/plasteel/red/corner{
+ dir = 4
+ },
+/area/security/brig)
+"axS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"axT" = (
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=4";
+ dir = 4;
+ freq = 1400;
+ location = "Engineering"
+ },
+/obj/structure/plasticflaps{
+ opacity = 1
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/maintenance/starboard)
+"axU" = (
+/obj/machinery/door/window/southright{
+ dir = 4;
+ name = "Engineering Deliveries";
+ req_access_txt = "10";
+ req_one_access_txt = "0"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/engine/engineering)
+"axV" = (
+/obj/structure/sign/securearea{
+ pixel_y = 32
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"axW" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"axX" = (
+/obj/machinery/light_switch{
+ pixel_x = 23
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/machinery/shower{
+ dir = 8;
+ icon_state = "shower";
+ name = "emergency shower"
+ },
+/obj/structure/sign/securearea{
+ pixel_y = 32
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"axY" = (
+/turf/closed/wall/r_wall,
+/area/engine/engineering)
+"axZ" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"aya" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"ayb" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"ayc" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/tank/internals/emergency_oxygen/engi,
+/obj/item/weapon/tank/internals/emergency_oxygen/engi,
+/obj/item/clothing/mask/breath{
+ pixel_x = 4;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"ayd" = (
+/obj/structure/grille,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"aye" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 10
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/space)
+"ayf" = (
+/obj/structure/closet/crate,
+/obj/item/stack/sheet/glass{
+ amount = 10
+ },
+/obj/item/stack/rods,
+/turf/open/floor/plating/airless,
+/area/space)
+"ayg" = (
+/obj/structure/table,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/mining)
+"ayh" = (
+/obj/machinery/computer/shuttle/mining,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/mining)
+"ayi" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"ayj" = (
+/turf/closed/wall,
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"ayk" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Mining Dock Maintenance";
+ req_access_txt = "48"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"ayl" = (
+/turf/closed/wall,
+/area/quartermaster/sorting{
+ name = "\improper Warehouse"
+ })
+"aym" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Cargo Bay Warehouse Maintenance";
+ req_access_txt = "0";
+ req_one_access_txt = "48;50"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/quartermaster/sorting{
+ name = "\improper Warehouse"
+ })
+"ayn" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"ayo" = (
+/obj/machinery/computer/bank_machine,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/security/nuke_storage)
+"ayp" = (
+/obj/machinery/light_switch{
+ pixel_y = 28
+ },
+/turf/open/floor/plasteel/circuit/gcircuit{
+ luminosity = 2
+ },
+/area/security/nuke_storage)
+"ayq" = (
+/obj/machinery/airalarm{
+ pixel_y = 23
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/circuit/gcircuit{
+ luminosity = 2
+ },
+/area/security/nuke_storage)
+"ayr" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "Vault APC";
+ pixel_x = 0;
+ pixel_y = 25
+ },
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/open/floor/plasteel/circuit/gcircuit{
+ luminosity = 2
+ },
+/area/security/nuke_storage)
+"ays" = (
+/obj/structure/filingcabinet,
+/obj/item/weapon/folder/documents,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/security/nuke_storage)
+"ayt" = (
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/labor)
+"ayu" = (
+/obj/machinery/mineral/labor_claim_console{
+ machinedir = 1;
+ pixel_x = 30;
+ pixel_y = 0
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/labor)
+"ayv" = (
+/turf/closed/wall,
+/area/prison/solitary{
+ name = "Prisoner Education Chamber"
+ })
+"ayw" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/security/brig)
+"ayx" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/door/window/brigdoor{
+ id = "Cell 1";
+ name = "Cell 1";
+ req_access_txt = "2"
+ },
+/turf/open/floor/plasteel/red/side,
+/area/security/brig)
+"ayy" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = "0"
+ },
+/turf/open/floor/plating,
+/area/security/brig)
+"ayz" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/door/window/brigdoor{
+ id = "Cell 2";
+ name = "Cell 2";
+ req_access_txt = "2"
+ },
+/turf/open/floor/plasteel/red/side,
+/area/security/brig)
+"ayA" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/door/window/brigdoor{
+ id = "Cell 3";
+ name = "Cell 3";
+ req_access_txt = "2"
+ },
+/turf/open/floor/plasteel/red/side,
+/area/security/brig)
+"ayB" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_security{
+ cyclelinkeddir = 2;
+ id_tag = "innerbrig";
+ name = "Brig";
+ req_access_txt = "63"
+ },
+/turf/open/floor/plasteel/red/side,
+/area/security/brig)
+"ayC" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/airlock/glass_security{
+ cyclelinkeddir = 2;
+ id_tag = "innerbrig";
+ name = "Brig";
+ req_access_txt = "63"
+ },
+/turf/open/floor/plasteel/red/side,
+/area/security/brig)
+"ayD" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/security/brig)
+"ayE" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/door/window/brigdoor{
+ id = "Holding Cell";
+ name = "Holding Cell";
+ req_access_txt = "2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/red/side,
+/area/security/brig)
+"ayF" = (
+/turf/closed/wall/r_wall,
+/area/security/detectives_office)
+"ayG" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "detective_shutters";
+ name = "detective's office shutters"
+ },
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/open/floor/plating,
+/area/security/detectives_office)
+"ayH" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security{
+ name = "Detective's Office";
+ req_access = null;
+ req_access_txt = "4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plasteel,
+/area/security/detectives_office)
+"ayI" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "detective_shutters";
+ name = "detective's office shutters"
+ },
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/security/detectives_office)
+"ayJ" = (
+/turf/closed/wall,
+/area/security/detectives_office)
+"ayK" = (
+/obj/machinery/shower{
+ icon_state = "shower";
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/locker/locker_toilet{
+ name = "\improper Restrooms"
+ })
+"ayL" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/machinery/airalarm{
+ pixel_y = 26
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/locker/locker_toilet{
+ name = "\improper Restrooms"
+ })
+"ayM" = (
+/obj/machinery/shower{
+ icon_state = "shower";
+ dir = 8
+ },
+/obj/effect/landmark/start{
+ name = "Assistant"
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/locker/locker_toilet{
+ name = "\improper Restrooms"
+ })
+"ayN" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/crew_quarters/sleep)
+"ayO" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"ayP" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/crew_quarters/sleep)
+"ayQ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"ayR" = (
+/obj/item/weapon/wrench,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"ayS" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/effect/turf_decal/delivery,
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 2
+ },
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/engine/engineering)
+"ayT" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"ayU" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"ayV" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"ayW" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Supermatter Engine";
+ req_access_txt = "10"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"ayX" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"ayY" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"ayZ" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/junction,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/engine/engineering)
+"aza" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"azb" = (
+/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 4
+ },
+/area/security/brig)
+"azc" = (
+/obj/structure/grille,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"azd" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 4
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/space)
+"aze" = (
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-22"
+ },
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/turf/open/floor/wood,
+/area/library)
+"azf" = (
+/obj/structure/grille,
+/turf/open/floor/plating/airless,
+/area/space)
+"azg" = (
+/obj/item/stack/cable_coil,
+/turf/open/floor/plating/airless,
+/area/space)
+"azh" = (
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/mining)
+"azi" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/mining)
+"azj" = (
+/obj/item/weapon/ore/iron,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"azk" = (
+/obj/structure/closet/crate,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 27
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"azl" = (
+/obj/structure/closet/emcloset,
+/obj/machinery/status_display{
+ density = 0;
+ pixel_x = 0;
+ pixel_y = 32;
+ supply_display = 1
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 9
+ },
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"azm" = (
+/obj/structure/closet/crate,
+/obj/item/device/flashlight{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/obj/item/device/flashlight{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/obj/item/weapon/stock_parts/cell/high{
+ charge = 100;
+ maxcharge = 15000
+ },
+/obj/item/stack/cable_coil{
+ pixel_x = 3;
+ pixel_y = -7
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 1
+ },
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"azn" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "Mining APC";
+ pixel_y = 24
+ },
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/light_switch{
+ pixel_x = 0;
+ pixel_y = 38
+ },
+/obj/structure/closet/wardrobe/miner,
+/turf/open/floor/plasteel/brown{
+ dir = 1
+ },
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"azo" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 1
+ },
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"azp" = (
+/obj/structure/rack{
+ dir = 1
+ },
+/obj/item/weapon/storage/toolbox/emergency{
+ pixel_x = 2;
+ pixel_y = -3
+ },
+/obj/item/weapon/storage/toolbox/emergency,
+/turf/open/floor/plasteel/brown{
+ dir = 5
+ },
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"azq" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = "0"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel,
+/area/security/brig)
+"azr" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/item/weapon/cigbutt,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"azs" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/sink/kitchen{
+ desc = "A sink used for washing one's hands and face. It looks rusty and home-made";
+ name = "old sink";
+ pixel_y = 28
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/quartermaster/sorting{
+ name = "\improper Warehouse"
+ })
+"azt" = (
+/obj/machinery/airalarm{
+ pixel_y = 28
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/quartermaster/sorting{
+ name = "\improper Warehouse"
+ })
+"azu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/quartermaster/sorting{
+ name = "\improper Warehouse"
+ })
+"azv" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 1
+ },
+/area/security/nuke_storage)
+"azw" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/circuit/gcircuit{
+ luminosity = 2
+ },
+/area/security/nuke_storage)
+"azx" = (
+/obj/machinery/nuclearbomb/selfdestruct,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/security/nuke_storage)
+"azy" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/circuit/gcircuit{
+ luminosity = 2
+ },
+/area/security/nuke_storage)
+"azz" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 4
+ },
+/area/security/nuke_storage)
+"azA" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/labor)
+"azB" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/machinery/flasher{
+ id = "gulagshuttleflasher";
+ pixel_x = 25
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/labor)
+"azC" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/hallway/primary/fore)
+"azD" = (
+/obj/machinery/flasher{
+ id = "Cell 1";
+ pixel_x = -28
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/security/brig)
+"azE" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/security/brig)
+"azF" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ external_pressure_bound = 101.325;
+ on = 1;
+ pressure_checks = 1
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/security/brig)
+"azG" = (
+/obj/machinery/flasher{
+ id = "Cell 2";
+ pixel_x = -28
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/security/brig)
+"azH" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/machinery/flasher{
+ id = "Cell 3";
+ pixel_x = -28
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/security/brig)
+"azI" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 9
+ },
+/area/security/brig)
+"azJ" = (
+/obj/machinery/holopad,
+/turf/open/floor/plasteel/red/side{
+ dir = 1
+ },
+/area/security/brig)
+"azK" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/red/side{
+ dir = 5
+ },
+/area/security/brig)
+"azL" = (
+/obj/structure/chair,
+/obj/machinery/flasher{
+ id = "holdingflash";
+ pixel_x = -25
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/security/brig)
+"azM" = (
+/obj/structure/chair,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/floorgrime,
+/area/security/brig)
+"azN" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/floorgrime,
+/area/security/brig)
+"azO" = (
+/obj/structure/chair,
+/turf/open/floor/plasteel/floorgrime,
+/area/security/brig)
+"azP" = (
+/obj/structure/rack,
+/obj/machinery/flasher{
+ id = "holdingflash";
+ pixel_x = 25
+ },
+/obj/item/clothing/under/rank/prisoner,
+/obj/item/clothing/under/rank/prisoner,
+/obj/item/clothing/under/rank/prisoner,
+/obj/item/clothing/under/rank/prisoner,
+/obj/item/clothing/under/rank/prisoner,
+/obj/item/clothing/shoes/sneakers/orange,
+/obj/item/clothing/shoes/sneakers/orange,
+/obj/item/clothing/shoes/sneakers/orange,
+/obj/item/clothing/shoes/sneakers/orange,
+/obj/item/clothing/shoes/sneakers/orange,
+/obj/item/weapon/restraints/handcuffs,
+/obj/item/weapon/restraints/handcuffs,
+/obj/item/weapon/restraints/handcuffs,
+/obj/item/weapon/restraints/handcuffs,
+/obj/item/weapon/restraints/handcuffs,
+/turf/open/floor/plasteel/floorgrime,
+/area/security/brig)
+"azQ" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/structure/filingcabinet,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/light_switch{
+ pixel_y = 25
+ },
+/turf/open/floor/plasteel/grimy,
+/area/security/detectives_office)
+"azR" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/grimy,
+/area/security/detectives_office)
+"azS" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/carpet,
+/area/security/detectives_office)
+"azT" = (
+/obj/structure/table/wood,
+/obj/item/weapon/storage/fancy/cigarettes,
+/obj/item/clothing/glasses/sunglasses,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/open/floor/carpet,
+/area/security/detectives_office)
+"azU" = (
+/obj/machinery/computer/security/wooden_tv{
+ density = 0;
+ pixel_x = 3;
+ pixel_y = 2
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/obj/structure/table/wood,
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for watching Prison Wing holding areas.";
+ name = "Prison Monitor";
+ network = list("Prison");
+ pixel_x = 0;
+ pixel_y = 30
+ },
+/turf/open/floor/carpet,
+/area/security/detectives_office)
+"azV" = (
+/obj/structure/table/wood,
+/obj/item/weapon/storage/secure/safe{
+ pixel_x = 32
+ },
+/obj/item/device/flashlight/lamp/green{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/obj/item/weapon/restraints/handcuffs,
+/obj/machinery/button/door{
+ id = "detective_shutters";
+ name = "detective's office shutters control";
+ pixel_x = 0;
+ pixel_y = 26;
+ req_access_txt = "4"
+ },
+/turf/open/floor/carpet,
+/area/security/detectives_office)
+"azW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/decal/cleanable/cobweb,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"azX" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"azY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg2"
+ },
+/area/maintenance/fore)
+"azZ" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aAa" = (
+/obj/structure/mirror{
+ pixel_x = -28
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/shower{
+ icon_state = "shower";
+ dir = 4
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/locker/locker_toilet{
+ name = "\improper Restrooms"
+ })
+"aAb" = (
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/obj/item/weapon/bikehorn/rubberducky,
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/locker/locker_toilet{
+ name = "\improper Restrooms"
+ })
+"aAc" = (
+/obj/structure/mirror{
+ pixel_x = 28
+ },
+/obj/machinery/shower{
+ icon_state = "shower";
+ dir = 8
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/locker/locker_toilet{
+ name = "\improper Restrooms"
+ })
+"aAd" = (
+/obj/machinery/washing_machine,
+/turf/open/floor/plasteel/barber,
+/area/crew_quarters/sleep)
+"aAe" = (
+/obj/structure/table,
+/obj/item/clothing/under/suit_jacket/female{
+ pixel_x = 3;
+ pixel_y = 1
+ },
+/obj/item/clothing/under/suit_jacket/really_black{
+ pixel_x = -2;
+ pixel_y = 0
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = 28
+ },
+/obj/item/clothing/tie/waistcoat,
+/obj/item/clothing/suit/toggle/lawyer/black,
+/obj/item/clothing/under/suit_jacket/red,
+/obj/item/clothing/neck/tie/black,
+/obj/item/clothing/under/lawyer/blacksuit,
+/turf/open/floor/plasteel/barber,
+/area/crew_quarters/sleep)
+"aAf" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/crew_quarters/sleep)
+"aAg" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"aAh" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/crew_quarters/sleep)
+"aAi" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"aAj" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"aAk" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg1"
+ },
+/area/maintenance/starboard)
+"aAl" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"aAm" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"aAn" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"aAo" = (
+/obj/structure/closet/secure_closet/engineering_personal,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/engine/engineering)
+"aAp" = (
+/obj/structure/closet/secure_closet/engineering_personal,
+/obj/item/clothing/suit/hooded/wintercoat/engineering,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/engine/engineering)
+"aAq" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/clothing/gloves/color/yellow,
+/obj/item/clothing/gloves/color/yellow,
+/obj/item/clothing/gloves/color/yellow,
+/obj/item/clothing/suit/hazardvest,
+/obj/item/clothing/suit/hazardvest,
+/obj/item/weapon/tank/internals/emergency_oxygen/engi,
+/obj/item/weapon/tank/internals/emergency_oxygen/engi,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/engine/engineering)
+"aAr" = (
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = 21
+ },
+/obj/machinery/camera{
+ c_tag = "Engineering - Fore";
+ dir = 2;
+ network = list("SS13")
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/engine/engineering)
+"aAs" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/engine/engineering)
+"aAt" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aAu" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/sortjunction{
+ sortType = 4
+ },
+/obj/effect/landmark/start{
+ name = "Station Engineer"
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aAv" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aAw" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 10;
+ pixel_x = 0;
+ initialize_directions = 10
+ },
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"aAx" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall/r_wall,
+/area/engine/engineering)
+"aAy" = (
+/obj/item/device/radio/off,
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"aAz" = (
+/obj/structure/table/wood,
+/obj/item/device/flashlight/lamp/green{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_y = 30
+ },
+/obj/effect/decal/cleanable/cobweb,
+/turf/open/floor/plasteel/cult{
+ dir = 2
+ },
+/area/library)
+"aAA" = (
+/obj/machinery/door/airlock/titanium{
+ name = "Mining Shuttle Airlock";
+ req_access_txt = "0"
+ },
+/obj/docking_port/mobile{
+ dir = 8;
+ dwidth = 3;
+ height = 5;
+ id = "mining";
+ name = "mining shuttle";
+ port_angle = 90;
+ width = 7
+ },
+/obj/docking_port/stationary{
+ dir = 8;
+ dwidth = 3;
+ height = 5;
+ id = "mining_home";
+ name = "mining shuttle bay";
+ width = 7
+ },
+/turf/open/floor/plating,
+/area/shuttle/mining)
+"aAB" = (
+/obj/machinery/door/airlock/external{
+ name = "Mining Dock Airlock";
+ req_access = null;
+ req_access_txt = "0"
+ },
+/turf/open/floor/plating,
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"aAC" = (
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"aAD" = (
+/obj/machinery/door/airlock/glass_mining{
+ name = "Mining Dock";
+ req_access_txt = "48"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"aAE" = (
+/turf/open/floor/plasteel/brown{
+ dir = 8
+ },
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"aAF" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"aAG" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"aAH" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/landmark/start{
+ name = "Shaft Miner"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"aAI" = (
+/obj/machinery/button/door{
+ id = "qm_mine_warehouse";
+ name = "Warehouse Door Control";
+ pixel_x = 24;
+ pixel_y = 28;
+ req_access_txt = "48"
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 4
+ },
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"aAJ" = (
+/obj/machinery/door/poddoor/shutters{
+ id = "qm_mine_warehouse";
+ name = "Warehouse Shutters"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"aAK" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/button/door{
+ id = "qm_mine_warehouse";
+ name = "Warehouse Door Control";
+ pixel_x = -24;
+ pixel_y = 28;
+ req_access_txt = "48"
+ },
+/turf/open/floor/plasteel/loadingarea{
+ dir = 4
+ },
+/area/quartermaster/sorting{
+ name = "\improper Warehouse"
+ })
+"aAL" = (
+/turf/open/floor/plasteel/floorgrime,
+/area/quartermaster/sorting{
+ name = "\improper Warehouse"
+ })
+"aAM" = (
+/obj/structure/closet/crate,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 3;
+ name = "3maintenance loot spawner"
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/quartermaster/sorting{
+ name = "\improper Warehouse"
+ })
+"aAN" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/quartermaster/sorting{
+ name = "\improper Warehouse"
+ })
+"aAO" = (
+/obj/structure/closet/crate,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 27;
+ pixel_y = 0
+ },
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 3;
+ name = "3maintenance loot spawner"
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/quartermaster/sorting{
+ name = "\improper Warehouse"
+ })
+"aAP" = (
+/obj/structure/closet/crate{
+ name = "Gold Crate"
+ },
+/obj/item/stack/sheet/mineral/gold{
+ pixel_x = -1;
+ pixel_y = 5
+ },
+/obj/item/stack/sheet/mineral/gold{
+ pixel_y = 2
+ },
+/obj/item/stack/sheet/mineral/gold{
+ pixel_x = 1;
+ pixel_y = -2
+ },
+/obj/item/weapon/storage/belt/champion,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 1
+ },
+/area/security/nuke_storage)
+"aAQ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/circuit/gcircuit{
+ luminosity = 2
+ },
+/area/security/nuke_storage)
+"aAR" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/circuit/gcircuit{
+ luminosity = 2
+ },
+/area/security/nuke_storage)
+"aAS" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/circuit/gcircuit{
+ luminosity = 2
+ },
+/area/security/nuke_storage)
+"aAT" = (
+/obj/item/weapon/coin/silver{
+ pixel_x = 7;
+ pixel_y = 12
+ },
+/obj/item/weapon/coin/silver{
+ pixel_x = 12;
+ pixel_y = 7
+ },
+/obj/item/weapon/coin/silver{
+ pixel_x = 4;
+ pixel_y = 8
+ },
+/obj/item/weapon/coin/silver{
+ pixel_x = -6;
+ pixel_y = 5
+ },
+/obj/item/weapon/coin/silver{
+ pixel_x = 5;
+ pixel_y = -8
+ },
+/obj/structure/closet/crate{
+ name = "Silver Crate"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 4
+ },
+/area/security/nuke_storage)
+"aAU" = (
+/obj/structure/closet/crate,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/labor)
+"aAV" = (
+/obj/machinery/door/airlock/titanium{
+ id_tag = "prisonshuttle";
+ name = "Labor Shuttle Airlock"
+ },
+/obj/docking_port/mobile{
+ dir = 8;
+ dwidth = 2;
+ height = 5;
+ id = "laborcamp";
+ name = "labor camp shuttle";
+ port_angle = 90;
+ width = 9
+ },
+/obj/docking_port/stationary{
+ dir = 8;
+ dwidth = 2;
+ height = 5;
+ id = "laborcamp_home";
+ name = "fore bay 1";
+ width = 9
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/labor)
+"aAW" = (
+/obj/machinery/door/airlock/external{
+ name = "Labor Camp Shuttle Airlock"
+ },
+/turf/open/floor/plasteel/black,
+/area/hallway/primary/fore)
+"aAX" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 28
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Labor Shuttle Dock";
+ dir = 8;
+ network = list("SS13")
+ },
+/obj/machinery/flasher{
+ id = "PRelease";
+ pixel_x = 24;
+ pixel_y = 20
+ },
+/obj/machinery/gulag_item_reclaimer{
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel/black,
+/area/hallway/primary/fore)
+"aAY" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet,
+/turf/open/floor/plasteel/floorgrime,
+/area/security/brig)
+"aAZ" = (
+/obj/structure/closet/secure_closet/brig{
+ id = "Cell 1";
+ name = "Cell 1 Locker"
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/security/brig)
+"aBa" = (
+/obj/structure/closet/secure_closet/brig{
+ id = "Cell 2";
+ name = "Cell 2 Locker"
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/security/brig)
+"aBb" = (
+/obj/structure/closet/secure_closet/brig{
+ id = "Cell 3";
+ name = "Cell 3 Locker"
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/security/brig)
+"aBc" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -26;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 10
+ },
+/area/security/brig)
+"aBd" = (
+/turf/open/floor/plasteel/red/side,
+/area/security/brig)
+"aBe" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 27;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 6
+ },
+/area/security/brig)
+"aBf" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/security/brig)
+"aBg" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/security/brig)
+"aBh" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/security/brig)
+"aBi" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/security/brig)
+"aBj" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ external_pressure_bound = 101.325;
+ on = 1;
+ pressure_checks = 1
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/security/brig)
+"aBk" = (
+/obj/structure/closet/secure_closet/detective,
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/obj/machinery/camera{
+ c_tag = "Detective's Office";
+ dir = 4;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/grimy,
+/area/security/detectives_office)
+"aBl" = (
+/obj/machinery/holopad,
+/turf/open/floor/plasteel/grimy,
+/area/security/detectives_office)
+"aBm" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/carpet,
+/area/security/detectives_office)
+"aBn" = (
+/obj/structure/table/wood,
+/obj/item/weapon/folder/red,
+/obj/item/weapon/hand_labeler,
+/turf/open/floor/carpet,
+/area/security/detectives_office)
+"aBo" = (
+/obj/effect/landmark/start{
+ name = "Detective"
+ },
+/obj/structure/chair/office/dark{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/carpet,
+/area/security/detectives_office)
+"aBp" = (
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/obj/machinery/computer/secure_data,
+/turf/open/floor/carpet,
+/area/security/detectives_office)
+"aBq" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aBr" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aBs" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aBt" = (
+/obj/machinery/shower{
+ icon_state = "shower";
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/locker/locker_toilet{
+ name = "\improper Restrooms"
+ })
+"aBu" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 2;
+ on = 1
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/locker/locker_toilet{
+ name = "\improper Restrooms"
+ })
+"aBv" = (
+/obj/machinery/shower{
+ icon_state = "shower";
+ dir = 8
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/locker/locker_toilet{
+ name = "\improper Restrooms"
+ })
+"aBw" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/crew_quarters/sleep)
+"aBx" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/crew_quarters/sleep)
+"aBy" = (
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "Dormitories APC";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/crew_quarters/sleep)
+"aBz" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/crew_quarters/sleep)
+"aBA" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"aBB" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/sign/pods{
+ pixel_x = 30;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/crew_quarters/sleep)
+"aBC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"aBD" = (
+/obj/effect/decal/cleanable/cobweb,
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-20";
+ layer = 4.1;
+ pixel_y = 3
+ },
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ dir = 1
+ },
+/area/engine/engineering)
+"aBE" = (
+/obj/machinery/suit_storage_unit/engine,
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ dir = 1
+ },
+/area/engine/engineering)
+"aBF" = (
+/obj/structure/tank_dispenser,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ dir = 1
+ },
+/area/engine/engineering)
+"aBG" = (
+/obj/machinery/camera{
+ c_tag = "Engineering - Storage";
+ dir = 2;
+ network = list("SS13")
+ },
+/obj/machinery/suit_storage_unit/engine,
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ dir = 1
+ },
+/area/engine/engineering)
+"aBH" = (
+/obj/item/stack/sheet/plasteel{
+ amount = 10;
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/obj/structure/table,
+/obj/item/stack/sheet/rglass{
+ amount = 30;
+ pixel_x = 2;
+ pixel_y = -2
+ },
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ dir = 1
+ },
+/area/engine/engineering)
+"aBI" = (
+/turf/closed/wall,
+/area/engine/engineering)
+"aBJ" = (
+/obj/machinery/airalarm{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aBK" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aBL" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aBM" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aBN" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aBO" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"aBP" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"aBQ" = (
+/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"aBR" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/closet/cardboard,
+/obj/structure/sign/poster{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/quartermaster/sorting{
+ name = "\improper Warehouse"
+ })
+"aBS" = (
+/obj/item/weapon/ore/silver,
+/obj/item/weapon/ore/silver,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"aBT" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/machinery/camera{
+ c_tag = "Mining Dock";
+ dir = 8;
+ network = list("SS13")
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"aBU" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 0
+ },
+/turf/closed/wall,
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"aBV" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/holopad,
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"aBW" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"aBX" = (
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 27
+ },
+/obj/machinery/camera{
+ c_tag = "Mining Office";
+ dir = 8;
+ network = list("SS13")
+ },
+/obj/machinery/mineral/equipment_vendor,
+/turf/open/floor/plasteel/brown{
+ dir = 4
+ },
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"aBY" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/obj/item/weapon/storage/box/donkpockets,
+/turf/open/floor/plasteel/floorgrime,
+/area/quartermaster/sorting{
+ name = "\improper Warehouse"
+ })
+"aBZ" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/quartermaster/sorting{
+ name = "\improper Warehouse"
+ })
+"aCa" = (
+/obj/structure/closet/crate/freezer,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 3;
+ name = "3maintenance loot spawner"
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/quartermaster/sorting{
+ name = "\improper Warehouse"
+ })
+"aCb" = (
+/obj/structure/closet/crate,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/item/weapon/ore/glass,
+/turf/open/floor/plasteel/floorgrime,
+/area/quartermaster/sorting{
+ name = "\improper Warehouse"
+ })
+"aCc" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/weapon/electronics/apc,
+/obj/item/weapon/stock_parts/cell{
+ maxcharge = 2000
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plasteel/floorgrime,
+/area/quartermaster/sorting{
+ name = "\improper Warehouse"
+ })
+"aCd" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/vault{
+ dir = 1
+ },
+/area/security/nuke_storage)
+"aCe" = (
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 6
+ },
+/area/security/nuke_storage)
+"aCf" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel/vault,
+/area/security/nuke_storage)
+"aCg" = (
+/obj/machinery/camera/motion{
+ c_tag = "Vault";
+ dir = 1;
+ network = list("SS13")
+ },
+/obj/machinery/light,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 10
+ },
+/area/security/nuke_storage)
+"aCh" = (
+/obj/structure/safe,
+/obj/item/weapon/storage/secure/briefcase{
+ contents = newlist(/obj/item/clothing/suit/armor/vest,/obj/item/weapon/gun/ballistic/automatic/pistol,/obj/item/weapon/suppressor,/obj/item/weapon/melee/classic_baton/telescopic,/obj/item/clothing/mask/balaclava,/obj/item/bodybag,/obj/item/weapon/soap/nanotrasen)
+ },
+/obj/item/weapon/storage/backpack/dufflebag{
+ contents = newlist(/obj/item/clothing/under/lawyer/blacksuit,/obj/item/clothing/tie/waistcoat,/obj/item/clothing/suit/toggle/lawyer/black,/obj/item/clothing/shoes/laceup,/obj/item/clothing/gloves/color/black,/obj/item/clothing/glasses/sunglasses,/obj/item/clothing/head/fedora);
+ desc = "A large dufflebag for holding extra things. There is a NanoTrasen logo on the back.";
+ icon_state = "duffle-syndieammo";
+ item_state = "duffle-syndieammo"
+ },
+/obj/item/weapon/card/id/silver{
+ access = list(12);
+ assignment = "Reaper";
+ name = "Thirteen's ID Card (Reaper)";
+ registered_name = "Thirteen"
+ },
+/obj/item/weapon/lazarus_injector,
+/obj/item/weapon/gun/energy/e_gun/advtaser,
+/obj/item/weapon/gun/ballistic/revolver/russian,
+/obj/item/ammo_box/a357,
+/obj/item/clothing/neck/stethoscope,
+/obj/item/weapon/book{
+ desc = "An undeniably handy book.";
+ icon_state = "bookknock";
+ name = "A Simpleton's Guide to Safe-cracking with Stethoscopes"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 4
+ },
+/area/security/nuke_storage)
+"aCi" = (
+/obj/structure/shuttle/engine/heater,
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/turf/open/floor/plating,
+/area/shuttle/labor)
+"aCj" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_security{
+ name = "Labor Camp Shuttle Airlock";
+ req_access_txt = "0"
+ },
+/turf/open/floor/plasteel/black,
+/area/hallway/primary/fore)
+"aCk" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "Secure Gate";
+ name = "brig shutters"
+ },
+/turf/open/floor/plating,
+/area/security/brig)
+"aCl" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow,
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "Secure Gate";
+ name = "brig shutters"
+ },
+/turf/open/floor/plating,
+/area/security/brig)
+"aCm" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "Secure Gate";
+ name = "brig shutters"
+ },
+/turf/open/floor/plating,
+/area/security/brig)
+"aCn" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_security{
+ cyclelinkeddir = 1;
+ id_tag = "outerbrig";
+ name = "Brig";
+ req_access_txt = "63"
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 1
+ },
+/area/security/brig)
+"aCo" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/poddoor/preopen{
+ id = "Secure Gate";
+ name = "brig shutters"
+ },
+/turf/open/floor/plating,
+/area/security/brig)
+"aCp" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/firedoor,
+/obj/machinery/flasher{
+ id = "secentranceflasher";
+ pixel_x = 25
+ },
+/obj/machinery/door/airlock/glass_security{
+ cyclelinkeddir = 1;
+ id_tag = "outerbrig";
+ name = "Brig";
+ req_access_txt = "63"
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 1
+ },
+/area/security/brig)
+"aCq" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_security{
+ name = "Security Desk";
+ req_access_txt = "63"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/black,
+/area/security/brig)
+"aCr" = (
+/obj/machinery/door/airlock/security{
+ name = "Court Cell";
+ req_access = null;
+ req_access_txt = "63"
+ },
+/turf/open/floor/plasteel/black,
+/area/security/brig)
+"aCs" = (
+/obj/structure/table/wood,
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Detective APC";
+ pixel_x = -24;
+ pixel_y = 0
+ },
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/item/device/taperecorder{
+ pixel_x = 3;
+ pixel_y = 0
+ },
+/obj/item/weapon/storage/box/evidence,
+/obj/item/device/flashlight/seclite,
+/turf/open/floor/plasteel/grimy,
+/area/security/detectives_office)
+"aCt" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/grimy,
+/area/security/detectives_office)
+"aCu" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/security/detectives_office)
+"aCv" = (
+/obj/structure/table/wood,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/weapon/pen,
+/turf/open/floor/carpet,
+/area/security/detectives_office)
+"aCw" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/carpet,
+/area/security/detectives_office)
+"aCx" = (
+/obj/machinery/computer/med_data,
+/obj/machinery/newscaster{
+ pixel_x = 28
+ },
+/turf/open/floor/carpet,
+/area/security/detectives_office)
+"aCy" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aCz" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aCA" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/crew_quarters/locker/locker_toilet{
+ name = "\improper Restrooms"
+ })
+"aCB" = (
+/obj/machinery/door/airlock{
+ name = "Unisex Showers";
+ req_access_txt = "0"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/locker/locker_toilet{
+ name = "\improper Restrooms"
+ })
+"aCC" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/crew_quarters/sleep)
+"aCD" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"aCE" = (
+/obj/structure/chair/stool{
+ pixel_y = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"aCF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/holopad,
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"aCG" = (
+/obj/structure/chair/stool{
+ pixel_y = 8
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/crew_quarters/sleep)
+"aCH" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"aCI" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/crew_quarters/sleep)
+"aCJ" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet,
+/obj/machinery/button/door{
+ id = "Cabin6";
+ name = "Dorm Bolt Control";
+ normaldoorcontrol = 1;
+ pixel_x = -25;
+ pixel_y = 0;
+ req_access_txt = "0";
+ specialfunctions = 4
+ },
+/obj/effect/decal/cleanable/cobweb,
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep)
+"aCK" = (
+/obj/structure/closet/secure_closet/personal/cabinet,
+/obj/machinery/airalarm{
+ pixel_y = 23
+ },
+/obj/item/clothing/under/suit_jacket/navy,
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep)
+"aCL" = (
+/obj/item/clothing/glasses/meson,
+/obj/structure/closet/crate,
+/obj/item/weapon/poster/contraband,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"aCM" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"aCN" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_x = -30;
+ pixel_y = 0
+ },
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ dir = 1
+ },
+/area/engine/engineering)
+"aCO" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aCP" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aCQ" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aCR" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"aCS" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aCT" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aCU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aCV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"aCW" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9;
+ pixel_y = 0
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"aCX" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/closed/wall/r_wall,
+/area/engine/engineering)
+"aCY" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Supermatter Engine";
+ req_access_txt = "10"
+ },
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"aCZ" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"aDa" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/shuttle/auxillary_base)
+"aDb" = (
+/turf/closed/wall,
+/area/mining_construction)
+"aDc" = (
+/obj/structure/closet/crate,
+/obj/item/weapon/coin/silver,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"aDd" = (
+/obj/structure/closet,
+/obj/item/weapon/poster/contraband,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"aDe" = (
+/obj/structure/closet/crate,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/mining)
+"aDf" = (
+/obj/structure/shuttle/engine/heater,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/mining)
+"aDg" = (
+/obj/structure/ore_box,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/mining)
+"aDh" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/computer/shuttle/mining{
+ req_access = "0";
+ req_one_access = "0"
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 9
+ },
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"aDi" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/landmark/start{
+ name = "Shaft Miner"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"aDj" = (
+/obj/structure/closet/secure_closet/miner,
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 4
+ },
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"aDk" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/quartermaster/sorting{
+ name = "\improper Warehouse"
+ })
+"aDl" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/obj/structure/closet/crate,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 3;
+ name = "3maintenance loot spawner"
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/quartermaster/sorting{
+ name = "\improper Warehouse"
+ })
+"aDm" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Cargo Technician"
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/quartermaster/sorting{
+ name = "\improper Warehouse"
+ })
+"aDn" = (
+/obj/item/stack/sheet/cardboard,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/quartermaster/sorting{
+ name = "\improper Warehouse"
+ })
+"aDo" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/structure/light_construct/small{
+ dir = 4
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/quartermaster/sorting{
+ name = "\improper Warehouse"
+ })
+"aDp" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/closed/wall/r_wall,
+/area/security/nuke_storage)
+"aDq" = (
+/obj/structure/sign/securearea,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/closed/wall/r_wall,
+/area/security/nuke_storage)
+"aDr" = (
+/obj/machinery/door/airlock/vault{
+ icon_state = "door_locked";
+ locked = 1;
+ req_access_txt = "53"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/security/nuke_storage)
+"aDs" = (
+/obj/structure/sign/securearea,
+/turf/closed/wall/r_wall,
+/area/security/nuke_storage)
+"aDt" = (
+/obj/structure/shuttle/engine/propulsion,
+/turf/open/floor/plating,
+/area/shuttle/labor)
+"aDu" = (
+/turf/closed/wall,
+/area/hallway/primary/fore)
+"aDv" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "prison release";
+ name = "prisoner processing blast door"
+ },
+/obj/machinery/button/door{
+ id = "prison release";
+ name = "Labor Camp Shuttle Lockdown";
+ pixel_x = -25;
+ pixel_y = 0;
+ req_access_txt = "2"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/hallway/primary/fore)
+"aDw" = (
+/turf/open/floor/plasteel/red/corner{
+ dir = 1
+ },
+/area/hallway/primary/fore)
+"aDx" = (
+/obj/structure/chair/stool,
+/turf/open/floor/plasteel/red/corner{
+ dir = 1
+ },
+/area/hallway/primary/fore)
+"aDy" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'HIGH VOLTAGE'";
+ icon_state = "shock";
+ name = "HIGH VOLTAGE";
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 1
+ },
+/area/hallway/primary/fore)
+"aDz" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'HIGH VOLTAGE'";
+ icon_state = "shock";
+ name = "HIGH VOLTAGE";
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/obj/machinery/camera{
+ c_tag = "Fore Primary Hallway Cells";
+ dir = 2;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 1
+ },
+/area/hallway/primary/fore)
+"aDA" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/status_display{
+ density = 0;
+ layer = 4;
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 1
+ },
+/area/hallway/primary/fore)
+"aDB" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 1
+ },
+/area/hallway/primary/fore)
+"aDC" = (
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"aDD" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/red/corner{
+ dir = 4
+ },
+/area/hallway/primary/fore)
+"aDE" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "briglockdown";
+ name = "brig shutters"
+ },
+/turf/open/floor/plating,
+/area/security/brig)
+"aDF" = (
+/obj/machinery/computer/secure_data,
+/obj/machinery/button/flasher{
+ id = "secentranceflasher";
+ name = "Brig Entrance Flash Control";
+ pixel_x = -24;
+ pixel_y = 24;
+ req_access_txt = "1"
+ },
+/obj/machinery/button/door{
+ id = "Secure Gate";
+ name = "Cell Window Control";
+ normaldoorcontrol = 0;
+ pixel_x = 5;
+ pixel_y = 27;
+ req_access_txt = "0";
+ specialfunctions = 4
+ },
+/obj/machinery/button/door{
+ id = "briglockdown";
+ name = "Brig Lockdown Control";
+ pixel_x = 5;
+ pixel_y = 37;
+ req_access_txt = "0"
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/button/door{
+ desc = "A remote control switch for the medbay foyer.";
+ id = "innerbrig";
+ name = "Brig Interior Doors Control";
+ normaldoorcontrol = 1;
+ pixel_x = -5;
+ pixel_y = 37;
+ req_access_txt = "63"
+ },
+/obj/machinery/button/door{
+ desc = "A remote control switch for the medbay foyer.";
+ id = "outerbrig";
+ name = "Brig Exterior Doors Control";
+ normaldoorcontrol = 1;
+ pixel_x = -5;
+ pixel_y = 27;
+ req_access_txt = "63"
+ },
+/turf/open/floor/plasteel/black,
+/area/security/brig)
+"aDG" = (
+/obj/structure/filingcabinet/chestdrawer{
+ pixel_y = 3
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/black,
+/area/security/brig)
+"aDH" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ external_pressure_bound = 101.325;
+ on = 1;
+ pressure_checks = 1
+ },
+/obj/machinery/button/flasher{
+ id = "holdingflash";
+ name = "holding cell flasher button";
+ pixel_x = 23;
+ pixel_y = 23;
+ req_access_txt = "1"
+ },
+/obj/machinery/camera{
+ c_tag = "Brig - Desk";
+ dir = 8;
+ network = list("SS13")
+ },
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 29;
+ pixel_y = -2
+ },
+/turf/open/floor/plasteel/black,
+/area/security/brig)
+"aDI" = (
+/obj/machinery/requests_console{
+ department = "Detective's office";
+ pixel_x = -30;
+ pixel_y = 0
+ },
+/obj/structure/table/wood,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/item/weapon/book/manual/wiki/security_space_law,
+/obj/item/device/camera/detective,
+/turf/open/floor/plasteel/grimy,
+/area/security/detectives_office)
+"aDJ" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/turf/open/floor/plasteel/grimy,
+/area/security/detectives_office)
+"aDK" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/grimy,
+/area/security/detectives_office)
+"aDL" = (
+/obj/machinery/light/small,
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = -26
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/grimy,
+/area/security/detectives_office)
+"aDM" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/grimy,
+/area/security/detectives_office)
+"aDN" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/weapon/storage/briefcase{
+ pixel_x = -3;
+ pixel_y = 2
+ },
+/obj/item/weapon/storage/secure/briefcase{
+ pixel_x = 2;
+ pixel_y = -2
+ },
+/turf/open/floor/plasteel/grimy,
+/area/security/detectives_office)
+"aDO" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating{
+ icon_state = "platingdmg1"
+ },
+/area/maintenance/fore)
+"aDP" = (
+/obj/structure/toilet{
+ pixel_y = 8
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/newscaster{
+ pixel_x = 0;
+ pixel_y = -32
+ },
+/obj/machinery/button/door{
+ id = "Toilet3";
+ name = "Lock Control";
+ normaldoorcontrol = 1;
+ pixel_x = -25;
+ pixel_y = 0;
+ req_access_txt = "0";
+ specialfunctions = 4
+ },
+/obj/effect/landmark/start{
+ name = "Assistant"
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/locker/locker_toilet{
+ name = "\improper Restrooms"
+ })
+"aDQ" = (
+/obj/machinery/door/airlock{
+ id_tag = "Toilet3";
+ name = "Unit 3"
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/locker/locker_toilet{
+ name = "\improper Restrooms"
+ })
+"aDR" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/locker/locker_toilet{
+ name = "\improper Restrooms"
+ })
+"aDS" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/urinal{
+ pixel_y = 29
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/locker/locker_toilet{
+ name = "\improper Restrooms"
+ })
+"aDT" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 2;
+ initialize_directions = 11
+ },
+/obj/structure/urinal{
+ pixel_y = 29
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/locker/locker_toilet{
+ name = "\improper Restrooms"
+ })
+"aDU" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/locker/locker_toilet{
+ name = "\improper Restrooms"
+ })
+"aDV" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/obj/machinery/newscaster{
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/locker/locker_toilet{
+ name = "\improper Restrooms"
+ })
+"aDW" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/crew_quarters/locker/locker_toilet{
+ name = "\improper Restrooms"
+ })
+"aDX" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/crew_quarters/sleep)
+"aDY" = (
+/obj/structure/chair/stool{
+ pixel_y = 8
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"aDZ" = (
+/obj/structure/table,
+/obj/item/weapon/storage/pill_bottle/dice,
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"aEa" = (
+/obj/structure/table,
+/obj/item/weapon/storage/crayons,
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"aEb" = (
+/obj/structure/table,
+/obj/item/toy/cards/deck,
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"aEc" = (
+/obj/structure/chair/stool{
+ pixel_y = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"aEd" = (
+/obj/machinery/door/airlock{
+ id_tag = "Cabin6";
+ name = "Cabin 2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/sleep)
+"aEe" = (
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep)
+"aEf" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep)
+"aEg" = (
+/obj/machinery/light/small,
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep)
+"aEh" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/machinery/airalarm{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22
+ },
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ dir = 1
+ },
+/area/engine/engineering)
+"aEi" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aEj" = (
+/obj/effect/landmark/start{
+ name = "Station Engineer"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aEk" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aEl" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aEm" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Engineering Storage";
+ req_access_txt = "32"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ dir = 1
+ },
+/area/engine/engineering)
+"aEn" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aEo" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aEp" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/white{
+ tag = "icon-1-4";
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aEq" = (
+/obj/structure/cable/white{
+ tag = "icon-4-8";
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9;
+ pixel_y = 0
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aEr" = (
+/obj/structure/cable/white{
+ tag = "icon-4-8";
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"aEs" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9;
+ pixel_y = 0
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aEt" = (
+/obj/structure/table,
+/obj/machinery/microwave{
+ pixel_x = -3;
+ pixel_y = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/light_switch{
+ pixel_y = 28
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/quartermaster/sorting{
+ name = "\improper Warehouse"
+ })
+"aEu" = (
+/obj/structure/shuttle/engine/propulsion/burst,
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/mining)
+"aEv" = (
+/obj/machinery/computer/security/mining{
+ network = list("MINE","AuxBase")
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"aEw" = (
+/obj/structure/chair/office/dark{
+ dir = 8
+ },
+/obj/effect/landmark/start{
+ name = "Shaft Miner"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"aEx" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"aEy" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"aEz" = (
+/obj/structure/closet/secure_closet/miner,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 27;
+ pixel_y = 0
+ },
+/obj/item/clothing/suit/hooded/wintercoat/miner,
+/turf/open/floor/plasteel/brown{
+ dir = 4
+ },
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"aEA" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plasteel/loadingarea{
+ dir = 1
+ },
+/area/quartermaster/sorting{
+ name = "\improper Warehouse"
+ })
+"aEB" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/button/door{
+ id = "qm_warehouse";
+ name = "Warehouse Door Control";
+ pixel_x = 0;
+ pixel_y = -24;
+ req_access_txt = "50"
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/quartermaster/sorting{
+ name = "\improper Warehouse"
+ })
+"aEC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/sign/poster{
+ pixel_y = 32
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aED" = (
+/obj/structure/closet/crate/internals,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 3;
+ name = "3maintenance loot spawner"
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/quartermaster/sorting{
+ name = "\improper Warehouse"
+ })
+"aEE" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "Warehouse APC";
+ pixel_x = 27;
+ pixel_y = 0
+ },
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/quartermaster/sorting{
+ name = "\improper Warehouse"
+ })
+"aEF" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/construction/Storage{
+ name = "Storage Wing"
+ })
+"aEG" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/construction/Storage{
+ name = "Storage Wing"
+ })
+"aEH" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/open/floor/plating,
+/area/construction/Storage{
+ name = "Storage Wing"
+ })
+"aEI" = (
+/obj/machinery/airalarm{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"aEJ" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"aEK" = (
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=1.5-Fore-Central";
+ location = "1-BrigCells"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"aEL" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"aEM" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"aEN" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"aEO" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"aEP" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"aEQ" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1;
+ initialize_directions = 11
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"aER" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"aES" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"aET" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 2;
+ on = 1
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=1-BrigCells";
+ location = "0-SecurityDesk"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"aEU" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"aEV" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/westleft{
+ base_state = "right";
+ dir = 8;
+ icon_state = "right";
+ name = "Outer Window";
+ req_access_txt = "0"
+ },
+/obj/machinery/door/window/brigdoor{
+ dir = 4;
+ name = "Security Desk";
+ req_access_txt = "1"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/item/device/radio/off,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "briglockdown";
+ name = "brig shutters"
+ },
+/turf/open/floor/plasteel/black,
+/area/security/brig)
+"aEW" = (
+/obj/structure/chair/office/dark{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/black,
+/area/security/brig)
+"aEX" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/black,
+/area/security/brig)
+"aEY" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/security/brig)
+"aEZ" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/table,
+/obj/item/bodybag,
+/obj/item/clothing/gloves/color/latex,
+/obj/item/clothing/mask/surgical,
+/turf/open/floor/plasteel/black,
+/area/security/detectives_office)
+"aFa" = (
+/obj/machinery/door/window{
+ dir = 1;
+ name = "glass door";
+ pixel_y = 0;
+ req_access_txt = "0"
+ },
+/turf/open/floor/plasteel/black,
+/area/security/detectives_office)
+"aFb" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Detective Maintenance";
+ req_access_txt = "4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/security/detectives_office)
+"aFc" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/machinery/camera{
+ c_tag = "Restrooms";
+ dir = 4;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/locker/locker_toilet{
+ name = "\improper Restrooms"
+ })
+"aFd" = (
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/locker/locker_toilet{
+ name = "\improper Restrooms"
+ })
+"aFe" = (
+/obj/machinery/light/small,
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "Restrooms APC";
+ pixel_x = 0;
+ pixel_y = -26
+ },
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/locker/locker_toilet{
+ name = "\improper Restrooms"
+ })
+"aFf" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/locker/locker_toilet{
+ name = "\improper Restrooms"
+ })
+"aFg" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/locker/locker_toilet{
+ name = "\improper Restrooms"
+ })
+"aFh" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/locker/locker_toilet{
+ name = "\improper Restrooms"
+ })
+"aFi" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock{
+ name = "Unisex Restrooms";
+ req_access_txt = "0"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/locker/locker_toilet{
+ name = "\improper Restrooms"
+ })
+"aFj" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/crew_quarters/sleep)
+"aFk" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/floorgrime,
+/area/crew_quarters/sleep)
+"aFl" = (
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"aFm" = (
+/obj/structure/chair/stool{
+ pixel_y = 8
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"aFn" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"aFo" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 28
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/crew_quarters/sleep)
+"aFp" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/machinery/light_switch{
+ pixel_x = -38
+ },
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ dir = 1
+ },
+/area/engine/engineering)
+"aFq" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aFr" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aFs" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aFt" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/item/clothing/head/cone{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/item/clothing/head/cone{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/item/clothing/head/cone{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/item/clothing/head/cone{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/item/clothing/head/cone{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aFu" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"aFv" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 2;
+ initialize_directions = 11
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aFw" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aFx" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aFy" = (
+/obj/structure/closet/secure_closet/engineering_electrical,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/engine/engineering)
+"aFz" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Supermatter Engine";
+ req_access_txt = "10"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"aFA" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"aFB" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 6
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/effect/turf_decal/stripes/corner,
+/turf/open/floor/engine,
+/area/engine/engineering)
+"aFC" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ icon_state = "intact";
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/engine,
+/area/engine/engineering)
+"aFD" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible,
+/obj/structure/cable/white{
+ tag = "icon-1-4";
+ icon_state = "1-4"
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/meter,
+/obj/machinery/light,
+/turf/open/floor/engine,
+/area/engine/engineering)
+"aFE" = (
+/obj/structure/table/wood,
+/obj/machinery/newscaster{
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/obj/item/weapon/folder,
+/obj/item/weapon/folder,
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/turf/open/floor/plasteel/cult{
+ dir = 2
+ },
+/area/library)
+"aFF" = (
+/obj/structure/table,
+/obj/item/weapon/folder/yellow,
+/obj/item/weapon/pen,
+/obj/machinery/requests_console{
+ department = "Mining";
+ departmentType = 0;
+ pixel_x = 0;
+ pixel_y = -30
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 10
+ },
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"aFG" = (
+/obj/structure/table,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 2
+ },
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"aFH" = (
+/obj/structure/rack{
+ dir = 1
+ },
+/obj/item/weapon/pickaxe{
+ pixel_x = 5
+ },
+/obj/item/weapon/shovel{
+ pixel_x = -5
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/brown{
+ dir = 2
+ },
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"aFI" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 2
+ },
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"aFJ" = (
+/obj/structure/closet/secure_closet/miner,
+/turf/open/floor/plasteel/brown{
+ dir = 6
+ },
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"aFK" = (
+/obj/machinery/door/poddoor/shutters{
+ id = "qm_warehouse";
+ name = "Warehouse Shutters"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/quartermaster/sorting{
+ name = "\improper Warehouse"
+ })
+"aFL" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/quartermaster/sorting{
+ name = "\improper Warehouse"
+ })
+"aFM" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "0";
+ req_one_access_txt = "12;63;48;50"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aFN" = (
+/turf/closed/wall,
+/area/construction/Storage{
+ name = "Storage Wing"
+ })
+"aFO" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/construction/Storage{
+ name = "Storage Wing"
+ })
+"aFP" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/construction/Storage{
+ name = "Storage Wing"
+ })
+"aFQ" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable/yellow,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/construction/Storage{
+ name = "Storage Wing"
+ })
+"aFR" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Vault Storage"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/construction/Storage{
+ name = "Storage Wing"
+ })
+"aFS" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/structure/cable/yellow,
+/turf/open/floor/plating,
+/area/construction/Storage{
+ name = "Storage Wing"
+ })
+"aFT" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/construction/Storage{
+ name = "Storage Wing"
+ })
+"aFU" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/construction/Storage{
+ name = "Storage Wing"
+ })
+"aFV" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -26;
+ pixel_y = 0
+ },
+/obj/machinery/camera{
+ c_tag = "Storage Wing - Security Access Door";
+ dir = 4;
+ network = list("SS13")
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plasteel/black,
+/area/hallway/primary/fore)
+"aFW" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/black,
+/area/hallway/primary/fore)
+"aFX" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/black,
+/area/hallway/primary/fore)
+"aFY" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security{
+ name = "Security-Storage Backroom";
+ req_access = null;
+ req_access_txt = "63"
+ },
+/turf/open/floor/plasteel/black,
+/area/hallway/primary/fore)
+"aFZ" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 8
+ },
+/area/hallway/primary/fore)
+"aGa" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 8
+ },
+/area/hallway/primary/fore)
+"aGb" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 0;
+ pixel_y = -30
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 8
+ },
+/area/hallway/primary/fore)
+"aGc" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 8
+ },
+/area/hallway/primary/fore)
+"aGd" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 8
+ },
+/area/hallway/primary/fore)
+"aGe" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 8
+ },
+/area/hallway/primary/fore)
+"aGf" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ cell_type = 5000;
+ dir = 2;
+ name = "Fore Primary Hallway APC";
+ pixel_x = 0;
+ pixel_y = -27
+ },
+/obj/structure/cable/yellow,
+/obj/machinery/light,
+/turf/open/floor/plasteel/red/corner{
+ dir = 8
+ },
+/area/hallway/primary/fore)
+"aGg" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 8
+ },
+/area/hallway/primary/fore)
+"aGh" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = -26
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 8
+ },
+/area/hallway/primary/fore)
+"aGi" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 8
+ },
+/area/hallway/primary/fore)
+"aGj" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/red/corner{
+ dir = 8
+ },
+/area/hallway/primary/fore)
+"aGk" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"aGl" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 2
+ },
+/area/hallway/primary/fore)
+"aGm" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 2
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 2
+ },
+/area/hallway/primary/fore)
+"aGn" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 2
+ },
+/area/hallway/primary/fore)
+"aGo" = (
+/obj/item/device/radio/beacon,
+/turf/open/floor/plasteel/red/corner{
+ dir = 2
+ },
+/area/hallway/primary/fore)
+"aGp" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow,
+/obj/machinery/door/poddoor/preopen{
+ id = "briglockdown";
+ name = "brig shutters"
+ },
+/turf/open/floor/plating,
+/area/security/brig)
+"aGq" = (
+/obj/machinery/computer/security,
+/obj/machinery/newscaster/security_unit{
+ pixel_x = 0;
+ pixel_y = -30
+ },
+/turf/open/floor/plasteel/black,
+/area/security/brig)
+"aGr" = (
+/obj/structure/table,
+/obj/item/weapon/folder/red{
+ pixel_x = 3
+ },
+/obj/item/weapon/folder/white{
+ pixel_x = -4;
+ pixel_y = 2
+ },
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for watching Prison Wing holding areas.";
+ dir = 1;
+ name = "Prison Monitor";
+ network = list("Prison");
+ pixel_x = 0;
+ pixel_y = -30
+ },
+/obj/item/weapon/restraints/handcuffs,
+/turf/open/floor/plasteel/black,
+/area/security/brig)
+"aGs" = (
+/obj/structure/table,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/weapon/pen,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_x = 0;
+ pixel_y = -30
+ },
+/turf/open/floor/plasteel/black,
+/area/security/brig)
+"aGt" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/security/brig)
+"aGu" = (
+/obj/structure/bodycontainer/morgue,
+/obj/effect/landmark{
+ name = "revenantspawn"
+ },
+/turf/open/floor/plasteel/black,
+/area/security/detectives_office)
+"aGv" = (
+/obj/machinery/light/small,
+/turf/open/floor/plasteel/black,
+/area/security/detectives_office)
+"aGw" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aGx" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aGy" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aGz" = (
+/obj/structure/toilet{
+ pixel_y = 8
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/newscaster{
+ pixel_x = 0;
+ pixel_y = -32
+ },
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/obj/machinery/button/door{
+ id = "Toilet2";
+ name = "Lock Control";
+ normaldoorcontrol = 1;
+ pixel_x = -25;
+ pixel_y = 0;
+ req_access_txt = "0";
+ specialfunctions = 4
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/locker/locker_toilet{
+ name = "\improper Restrooms"
+ })
+"aGA" = (
+/obj/machinery/door/airlock{
+ id_tag = "Toilet2";
+ name = "Unit 2"
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/locker/locker_toilet{
+ name = "\improper Restrooms"
+ })
+"aGB" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/locker/locker_toilet{
+ name = "\improper Restrooms"
+ })
+"aGC" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/locker/locker_toilet{
+ name = "\improper Restrooms"
+ })
+"aGD" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/locker/locker_toilet{
+ name = "\improper Restrooms"
+ })
+"aGE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aGF" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 27;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/locker/locker_toilet{
+ name = "\improper Restrooms"
+ })
+"aGG" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/obj/machinery/camera{
+ c_tag = "Dormitories - Aft";
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/crew_quarters/sleep)
+"aGH" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"aGI" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/crew_quarters/sleep)
+"aGJ" = (
+/obj/machinery/light/small,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/airalarm{
+ dir = 1;
+ icon_state = "alarm0";
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/crew_quarters/sleep)
+"aGK" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/crew_quarters/sleep)
+"aGL" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 2
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/crew_quarters/sleep)
+"aGM" = (
+/obj/machinery/door/airlock{
+ id_tag = "Cabin7";
+ name = "Cabin 1"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/sleep)
+"aGN" = (
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"aGO" = (
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/obj/machinery/airalarm{
+ pixel_y = 23
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/sleep)
+"aGP" = (
+/obj/structure/closet/secure_closet/personal/cabinet,
+/obj/item/clothing/under/assistantformal,
+/turf/open/floor/wood,
+/area/crew_quarters/sleep)
+"aGQ" = (
+/obj/structure/table,
+/obj/item/stack/rods{
+ amount = 50
+ },
+/obj/item/weapon/wrench,
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ dir = 1
+ },
+/area/engine/engineering)
+"aGR" = (
+/obj/structure/table,
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/obj/item/stack/sheet/glass{
+ amount = 50
+ },
+/obj/item/stack/sheet/glass{
+ amount = 50
+ },
+/obj/item/stack/sheet/glass{
+ amount = 50
+ },
+/obj/item/weapon/crowbar,
+/obj/item/weapon/grenade/chem_grenade/metalfoam,
+/obj/item/weapon/grenade/chem_grenade/metalfoam,
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ dir = 1
+ },
+/area/engine/engineering)
+"aGS" = (
+/obj/structure/table,
+/obj/item/stack/cable_coil{
+ pixel_x = 3;
+ pixel_y = -7
+ },
+/obj/item/stack/cable_coil,
+/obj/item/weapon/electronics/airlock,
+/obj/item/weapon/electronics/airlock,
+/obj/item/clothing/ears/earmuffs{
+ pixel_x = -3;
+ pixel_y = -2
+ },
+/obj/item/clothing/ears/earmuffs{
+ pixel_x = -5;
+ pixel_y = 6
+ },
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ dir = 1
+ },
+/area/engine/engineering)
+"aGT" = (
+/obj/structure/closet/crate{
+ name = "solar pack crate"
+ },
+/obj/item/solar_assembly,
+/obj/item/solar_assembly,
+/obj/item/solar_assembly,
+/obj/item/solar_assembly,
+/obj/item/solar_assembly,
+/obj/item/solar_assembly,
+/obj/item/solar_assembly,
+/obj/item/solar_assembly,
+/obj/item/solar_assembly,
+/obj/item/solar_assembly,
+/obj/item/solar_assembly,
+/obj/item/solar_assembly,
+/obj/item/solar_assembly,
+/obj/item/weapon/circuitboard/computer/solar_control,
+/obj/item/weapon/electronics/tracker,
+/obj/item/weapon/paper/solar,
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ dir = 1
+ },
+/area/engine/engineering)
+"aGU" = (
+/obj/machinery/power/port_gen/pacman,
+/obj/structure/cable/yellow,
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ dir = 1
+ },
+/area/engine/engineering)
+"aGV" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27;
+ pixel_y = 0
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aGW" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/landmark/start{
+ name = "Station Engineer"
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aGX" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aGY" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"aGZ" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "External Gas to Loop"
+ },
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"aHa" = (
+/obj/structure/cable/white,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"aHb" = (
+/obj/machinery/camera{
+ c_tag = "Auxillary Mining Base";
+ dir = 1
+ },
+/obj/structure/mining_shuttle_beacon,
+/turf/open/floor/plating,
+/area/shuttle/auxillary_base)
+"aHc" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"aHd" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/mining{
+ name = "Mining Office";
+ req_access_txt = "48"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock{
+ name = "\improper Mining Office"
+ })
+"aHe" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aHf" = (
+/obj/machinery/button/door{
+ id = "qm_warehouse";
+ name = "Warehouse Door Control";
+ pixel_x = 0;
+ pixel_y = 24;
+ req_access_txt = "50"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aHg" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aHh" = (
+/obj/machinery/firealarm{
+ pixel_y = 27
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aHi" = (
+/obj/machinery/light_switch{
+ pixel_y = 28
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aHj" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_mining{
+ glass = 0;
+ name = "Cargo Bay";
+ opacity = 1;
+ req_access_txt = "0";
+ req_one_access_txt = "48;50"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/construction/Storage{
+ name = "Storage Wing"
+ })
+"aHk" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/construction/Storage{
+ name = "Storage Wing"
+ })
+"aHl" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/sign/securearea{
+ pixel_y = 30
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/construction/Storage{
+ name = "Storage Wing"
+ })
+"aHm" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_mining{
+ glass = 0;
+ name = "Cargo Bay";
+ opacity = 1;
+ req_access_txt = "0";
+ req_one_access_txt = "48;50"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/construction/Storage{
+ name = "Storage Wing"
+ })
+"aHn" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/construction/Storage{
+ name = "Storage Wing"
+ })
+"aHo" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/brown/corner{
+ dir = 8
+ },
+/area/construction/Storage{
+ name = "Storage Wing"
+ })
+"aHp" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 2
+ },
+/turf/open/floor/plasteel/brown/corner{
+ dir = 8
+ },
+/area/construction/Storage{
+ name = "Storage Wing"
+ })
+"aHq" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/brown/corner{
+ dir = 8
+ },
+/area/construction/Storage{
+ name = "Storage Wing"
+ })
+"aHr" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/brown/corner{
+ dir = 8
+ },
+/area/construction/Storage{
+ name = "Storage Wing"
+ })
+"aHs" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
+ },
+/turf/open/floor/plasteel/brown/corner{
+ dir = 8
+ },
+/area/construction/Storage{
+ name = "Storage Wing"
+ })
+"aHt" = (
+/obj/machinery/vending/cigarette,
+/obj/machinery/newscaster{
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel,
+/area/construction/Storage{
+ name = "Storage Wing"
+ })
+"aHu" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/black,
+/area/hallway/primary/fore)
+"aHv" = (
+/obj/structure/chair/office/dark,
+/turf/open/floor/plasteel/black,
+/area/hallway/primary/fore)
+"aHw" = (
+/obj/structure/table,
+/obj/machinery/recharger,
+/turf/open/floor/plasteel/black,
+/area/hallway/primary/fore)
+"aHx" = (
+/turf/closed/wall/r_wall,
+/area/hallway/primary/fore)
+"aHy" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow,
+/turf/open/floor/plating,
+/area/hallway/primary/fore)
+"aHz" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/red/corner{
+ dir = 8
+ },
+/area/hallway/primary/fore)
+"aHA" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"aHB" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 2
+ },
+/area/hallway/primary/fore)
+"aHC" = (
+/obj/structure/sign/directions/security{
+ desc = "A direction sign, pointing out which way the security department is.";
+ dir = 1;
+ icon_state = "direction_sec";
+ pixel_x = 0;
+ pixel_y = 8
+ },
+/turf/closed/wall,
+/area/crew_quarters/courtroom)
+"aHD" = (
+/turf/closed/wall,
+/area/crew_quarters/courtroom)
+"aHE" = (
+/turf/closed/wall/r_wall,
+/area/crew_quarters/courtroom)
+"aHF" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security{
+ name = "Court Cell";
+ req_access = null;
+ req_access_txt = "63"
+ },
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/courtroom)
+"aHG" = (
+/turf/closed/wall,
+/area/lawoffice)
+"aHH" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Law Office Maintenance";
+ req_access_txt = "38"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/lawoffice)
+"aHI" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/machinery/light_switch{
+ pixel_x = -26
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/locker/locker_toilet{
+ name = "\improper Restrooms"
+ })
+"aHJ" = (
+/obj/structure/sink{
+ dir = 4;
+ icon_state = "sink";
+ pixel_x = 11;
+ pixel_y = 0
+ },
+/obj/structure/mirror{
+ pixel_x = 28
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/locker/locker_toilet{
+ name = "\improper Restrooms"
+ })
+"aHK" = (
+/obj/machinery/door/airlock{
+ id_tag = "Toilet4";
+ name = "Unit 4"
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/locker/locker_toilet{
+ name = "\improper Restrooms"
+ })
+"aHL" = (
+/obj/machinery/door/airlock{
+ name = "Unit B"
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/locker/locker_toilet{
+ name = "\improper Restrooms"
+ })
+"aHM" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=14.9-CrewQuarters-Central";
+ location = "14.8-Dorms-Lockers"
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/crew_quarters/sleep)
+"aHN" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"aHO" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/crew_quarters/sleep)
+"aHP" = (
+/obj/machinery/washing_machine,
+/obj/structure/sign/poster{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/barber,
+/area/crew_quarters/sleep)
+"aHQ" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"aHR" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/closet/wardrobe/pjs,
+/turf/open/floor/plasteel/vault,
+/area/crew_quarters/sleep)
+"aHS" = (
+/obj/machinery/button/door{
+ id = "Cabin7";
+ name = "Door Bolt Control";
+ normaldoorcontrol = 1;
+ pixel_x = -25;
+ pixel_y = 0;
+ req_access_txt = "0";
+ specialfunctions = 4
+ },
+/obj/structure/bed,
+/obj/item/weapon/bedsheet,
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/sleep)
+"aHT" = (
+/obj/structure/chair/wood/normal{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/sleep)
+"aHU" = (
+/obj/structure/table/wood,
+/obj/machinery/newscaster{
+ pixel_x = 29;
+ pixel_y = 1
+ },
+/obj/item/weapon/paper,
+/turf/open/floor/wood,
+/area/crew_quarters/sleep)
+"aHV" = (
+/obj/structure/closet,
+/obj/item/weapon/storage/box/donkpockets,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"aHW" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/starboard)
+"aHX" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aHY" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aHZ" = (
+/obj/item/clothing/gloves/color/yellow,
+/obj/item/clothing/gloves/color/yellow,
+/obj/item/clothing/gloves/color/yellow,
+/obj/item/clothing/suit/hazardvest,
+/obj/item/clothing/suit/hazardvest,
+/obj/item/weapon/tank/internals/emergency_oxygen/engi,
+/obj/item/weapon/tank/internals/emergency_oxygen/engi,
+/obj/effect/turf_decal/delivery,
+/obj/structure/table,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/engine/engineering)
+"aIa" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"aIb" = (
+/obj/machinery/power/grounding_rod,
+/turf/open/floor/plating/airless,
+/area/space)
+"aIc" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"aId" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"aIe" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/turf/closed/wall/r_wall,
+/area/engine/engineering)
+"aIf" = (
+/obj/machinery/camera{
+ c_tag = "Auxillary Base Construction";
+ dir = 1
+ },
+/obj/machinery/button/door{
+ id = "aux_base_shutters";
+ name = "Public Shutters Control";
+ pixel_x = 0;
+ pixel_y = -24;
+ req_access_txt = "0";
+ req_one_access_txt = "32;47;48"
+ },
+/turf/open/floor/plasteel/yellow/side,
+/area/mining_construction)
+"aIg" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/quartermaster/storage)
+"aIh" = (
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = -28;
+ pixel_y = 23
+ },
+/obj/machinery/status_display{
+ density = 0;
+ pixel_x = 0;
+ pixel_y = 32;
+ supply_display = 1
+ },
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "QMLoad2";
+ movedir = 2
+ },
+/turf/open/floor/plating,
+/area/quartermaster/storage)
+"aIi" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/loadingarea{
+ dir = 4
+ },
+/area/quartermaster/storage)
+"aIj" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aIk" = (
+/obj/structure/sign/map/left{
+ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";
+ icon_state = "map-left-MS";
+ pixel_y = 32
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aIl" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/machinery/camera{
+ c_tag = "Cargo Bay - Fore";
+ dir = 2;
+ network = list("SS13")
+ },
+/obj/structure/sign/map/right{
+ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";
+ icon_state = "map-right-MS";
+ pixel_y = 32
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aIm" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 2
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aIn" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aIo" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aIp" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aIq" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aIr" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/glass_mining{
+ glass = 0;
+ name = "Cargo Bay";
+ opacity = 1;
+ req_access_txt = "0";
+ req_one_access_txt = "48;50"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/construction/Storage{
+ name = "Storage Wing"
+ })
+"aIs" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/construction/Storage{
+ name = "Storage Wing"
+ })
+"aIt" = (
+/obj/machinery/camera{
+ c_tag = "Cargo Bay - Storage Wing Entrance";
+ dir = 1;
+ network = list("SS13")
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/construction/Storage{
+ name = "Storage Wing"
+ })
+"aIu" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "Storage Wing APC";
+ pixel_x = 0;
+ pixel_y = -27
+ },
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/brown/corner{
+ dir = 4
+ },
+/area/construction/Storage{
+ name = "Storage Wing"
+ })
+"aIv" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/starboard)
+"aIw" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/brown/corner{
+ dir = 4
+ },
+/area/construction/Storage{
+ name = "Storage Wing"
+ })
+"aIx" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 2;
+ initialize_directions = 11
+ },
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = -26
+ },
+/obj/machinery/camera{
+ c_tag = "Storage Wing";
+ dir = 1;
+ network = list("SS13")
+ },
+/obj/machinery/light,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/brown/corner{
+ dir = 4
+ },
+/area/construction/Storage{
+ name = "Storage Wing"
+ })
+"aIy" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/brown/corner{
+ dir = 4
+ },
+/area/construction/Storage{
+ name = "Storage Wing"
+ })
+"aIz" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=2.2-Leaving-Storage";
+ location = "2.1-Storage"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/brown/corner{
+ dir = 4
+ },
+/area/construction/Storage{
+ name = "Storage Wing"
+ })
+"aIA" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1;
+ initialize_directions = 11
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/construction/Storage{
+ name = "Storage Wing"
+ })
+"aIB" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/construction/Storage{
+ name = "Storage Wing"
+ })
+"aIC" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/security{
+ name = "Security-Storage Backroom";
+ req_access = null;
+ req_access_txt = "63"
+ },
+/turf/open/floor/plasteel/black,
+/area/hallway/primary/fore)
+"aID" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/black,
+/area/hallway/primary/fore)
+"aIE" = (
+/obj/structure/table,
+/obj/item/weapon/folder/red,
+/obj/item/weapon/restraints/handcuffs,
+/obj/machinery/newscaster/security_unit{
+ pixel_x = 0;
+ pixel_y = -30
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/black,
+/area/hallway/primary/fore)
+"aIF" = (
+/obj/machinery/light/small,
+/obj/structure/table,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/black,
+/area/hallway/primary/fore)
+"aIG" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/hallway/primary/fore)
+"aIH" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/hallway/primary/fore)
+"aII" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 8
+ },
+/area/hallway/primary/fore)
+"aIJ" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"aIK" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 2
+ },
+/area/hallway/primary/fore)
+"aIL" = (
+/obj/structure/closet/secure_closet/courtroom,
+/obj/machinery/light_switch{
+ pixel_y = 28
+ },
+/obj/item/weapon/gavelblock,
+/obj/item/weapon/gavelhammer,
+/turf/open/floor/plasteel,
+/area/crew_quarters/courtroom)
+"aIM" = (
+/obj/structure/chair{
+ name = "Bailiff"
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/courtroom)
+"aIN" = (
+/obj/item/device/radio/intercom{
+ broadcasting = 0;
+ listening = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 20
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/courtroom)
+"aIO" = (
+/obj/structure/chair{
+ name = "Judge"
+ },
+/turf/open/floor/plasteel/blue/side{
+ dir = 9
+ },
+/area/crew_quarters/courtroom)
+"aIP" = (
+/obj/structure/chair{
+ name = "Judge"
+ },
+/obj/machinery/status_display{
+ density = 0;
+ layer = 4;
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/camera{
+ c_tag = "Courtroom";
+ dir = 2;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/blue/side{
+ dir = 1
+ },
+/area/crew_quarters/courtroom)
+"aIQ" = (
+/obj/structure/chair{
+ name = "Judge"
+ },
+/turf/open/floor/plasteel/blue/side{
+ dir = 5
+ },
+/area/crew_quarters/courtroom)
+"aIR" = (
+/turf/open/floor/plasteel,
+/area/crew_quarters/courtroom)
+"aIS" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/courtroom)
+"aIT" = (
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/courtroom)
+"aIU" = (
+/obj/structure/table/wood,
+/obj/item/device/flashlight/lamp/green{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/obj/machinery/requests_console{
+ department = "Law office";
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/obj/machinery/newscaster{
+ pixel_x = -31;
+ pixel_y = 0
+ },
+/turf/open/floor/wood,
+/area/lawoffice)
+"aIV" = (
+/obj/structure/table/wood,
+/obj/item/weapon/book/manual/wiki/security_space_law,
+/obj/item/weapon/book/manual/wiki/security_space_law,
+/obj/item/weapon/pen/red,
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for watching Prison Wing holding areas.";
+ name = "Prison Monitor";
+ network = list("Prison");
+ pixel_x = 0;
+ pixel_y = 30
+ },
+/turf/open/floor/wood,
+/area/lawoffice)
+"aIW" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/weapon/storage/briefcase{
+ pixel_x = -3;
+ pixel_y = 2
+ },
+/obj/item/weapon/storage/secure/briefcase{
+ pixel_x = 2;
+ pixel_y = -2
+ },
+/obj/item/clothing/glasses/sunglasses,
+/turf/open/floor/wood,
+/area/lawoffice)
+"aIX" = (
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "Law Office APC";
+ pixel_y = 24
+ },
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-21";
+ layer = 4.1
+ },
+/turf/open/floor/wood,
+/area/lawoffice)
+"aIY" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/wood,
+/area/lawoffice)
+"aIZ" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aJa" = (
+/obj/structure/toilet{
+ pixel_y = 8
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/newscaster{
+ pixel_x = 0;
+ pixel_y = -32
+ },
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/obj/machinery/button/door{
+ id = "Toilet1";
+ name = "Lock Control";
+ normaldoorcontrol = 1;
+ pixel_x = -25;
+ pixel_y = 0;
+ req_access_txt = "0";
+ specialfunctions = 4
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/locker/locker_toilet{
+ name = "\improper Restrooms"
+ })
+"aJb" = (
+/obj/machinery/door/airlock{
+ id_tag = "Toilet1";
+ name = "Unit 1"
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/locker/locker_toilet{
+ name = "\improper Restrooms"
+ })
+"aJc" = (
+/obj/structure/toilet{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/newscaster{
+ pixel_x = 32
+ },
+/obj/machinery/button/door{
+ id = "Toilet4";
+ name = "Lock Control";
+ normaldoorcontrol = 1;
+ pixel_x = 0;
+ pixel_y = -25;
+ req_access_txt = "0";
+ specialfunctions = 4
+ },
+/obj/effect/landmark/start{
+ name = "Assistant"
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/locker/locker_toilet{
+ name = "\improper Restrooms"
+ })
+"aJd" = (
+/obj/machinery/light/small,
+/obj/machinery/recharge_station,
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/locker/locker_toilet{
+ name = "\improper Restrooms"
+ })
+"aJe" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/crew_quarters/sleep)
+"aJf" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"aJg" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/crew_quarters/sleep)
+"aJh" = (
+/turf/closed/wall,
+/area/hallway/secondary/construction{
+ name = "\improper Garden"
+ })
+"aJi" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"aJj" = (
+/obj/effect/decal/cleanable/cobweb,
+/obj/machinery/field/generator,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"aJk" = (
+/obj/machinery/field/generator,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"aJl" = (
+/obj/machinery/shieldgen,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/camera{
+ c_tag = "Engineering - Secure Storage";
+ dir = 2;
+ network = list("SS13")
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"aJm" = (
+/obj/machinery/shieldgen,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"aJn" = (
+/obj/structure/table,
+/obj/item/weapon/airlock_painter,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/engine/engineering)
+"aJo" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aJp" = (
+/obj/structure/table,
+/obj/effect/turf_decal/delivery,
+/obj/item/clothing/glasses/meson/engine,
+/obj/item/clothing/glasses/meson/engine,
+/obj/item/clothing/glasses/meson/engine,
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/item/weapon/pipe_dispenser,
+/obj/item/weapon/pipe_dispenser,
+/obj/item/weapon/pipe_dispenser,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aJq" = (
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "Singularity";
+ name = "radiation shutters"
+ },
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ dir = 1
+ },
+/area/engine/engineering)
+"aJr" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"aJs" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"aJt" = (
+/obj/effect/landmark/start{
+ name = "Station Engineer"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"aJu" = (
+/turf/open/floor/plating,
+/area/engine/engineering)
+"aJv" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 6
+ },
+/turf/closed/wall/r_wall,
+/area/engine/engineering)
+"aJw" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"aJx" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plating/airless,
+/area/space)
+"aJy" = (
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"aJz" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plating/airless,
+/area/space)
+"aJA" = (
+/obj/item/weapon/crowbar,
+/turf/open/space,
+/area/space)
+"aJB" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 0
+ },
+/turf/open/floor/plating,
+/area/quartermaster/storage)
+"aJC" = (
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "QMLoad2";
+ movedir = 2
+ },
+/turf/open/floor/plating,
+/area/quartermaster/storage)
+"aJD" = (
+/obj/machinery/conveyor_switch/oneway{
+ convdir = 1;
+ id = "QMLoad2";
+ pixel_x = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aJE" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aJF" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aJG" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aJH" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aJI" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aJJ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/turf/open/floor/plasteel/loadingarea{
+ dir = 8
+ },
+/area/quartermaster/storage)
+"aJK" = (
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=8";
+ dir = 8;
+ freq = 1400;
+ location = "QM #1"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/window/northleft,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/turf_decal/delivery,
+/mob/living/simple_animal/bot/mulebot{
+ beacon_freq = 1400;
+ home_destination = "QM #1";
+ suffix = "#1"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aJL" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "0";
+ req_one_access_txt = "12;63;48;50"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"aJM" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "0";
+ req_one_access_txt = "12;63;48;50"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"aJN" = (
+/turf/closed/wall,
+/area/storage/primary)
+"aJO" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/turf/open/floor/plating,
+/area/storage/primary)
+"aJP" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Primary Tool Storage"
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 2
+ },
+/area/storage/primary)
+"aJQ" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Primary Tool Storage"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/brown{
+ dir = 2
+ },
+/area/storage/primary)
+"aJR" = (
+/turf/closed/wall/r_wall,
+/area/storage/primary)
+"aJS" = (
+/turf/closed/wall/r_wall,
+/area/ai_monitored/turret_protected/ai_upload)
+"aJT" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 8
+ },
+/area/hallway/primary/fore)
+"aJU" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"aJV" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 2
+ },
+/area/hallway/primary/fore)
+"aJW" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security{
+ name = "Brig";
+ req_access = null;
+ req_access_txt = "63; 42"
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/courtroom)
+"aJX" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/courtroom)
+"aJY" = (
+/turf/open/floor/plasteel/neutral/side{
+ dir = 9
+ },
+/area/crew_quarters/courtroom)
+"aJZ" = (
+/obj/structure/table/wood,
+/obj/item/device/radio/intercom{
+ broadcasting = 1;
+ dir = 8;
+ listening = 0;
+ name = "Station Intercom (Court)";
+ pixel_x = 0
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 1
+ },
+/area/crew_quarters/courtroom)
+"aKa" = (
+/obj/structure/table/wood,
+/obj/item/weapon/gavelblock,
+/obj/item/weapon/gavelhammer,
+/turf/open/floor/plasteel/neutral/side{
+ dir = 1
+ },
+/area/crew_quarters/courtroom)
+"aKb" = (
+/obj/structure/table/wood,
+/obj/item/weapon/book/manual/wiki/security_space_law,
+/turf/open/floor/plasteel/neutral/side{
+ dir = 1
+ },
+/area/crew_quarters/courtroom)
+"aKc" = (
+/turf/open/floor/plasteel/neutral/side{
+ dir = 5
+ },
+/area/crew_quarters/courtroom)
+"aKd" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/crew_quarters/courtroom)
+"aKe" = (
+/obj/machinery/door/window/southleft{
+ name = "Court Cell";
+ req_access_txt = "2"
+ },
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/courtroom)
+"aKf" = (
+/obj/effect/landmark/start{
+ name = "Lawyer"
+ },
+/obj/structure/chair/office/dark{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -28
+ },
+/turf/open/floor/wood,
+/area/lawoffice)
+"aKg" = (
+/obj/structure/table/wood,
+/obj/item/weapon/folder/blue,
+/obj/item/weapon/folder/blue,
+/obj/item/weapon/folder/blue,
+/obj/item/weapon/folder/blue,
+/obj/item/weapon/stamp/law,
+/turf/open/floor/wood,
+/area/lawoffice)
+"aKh" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/lawoffice)
+"aKi" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/wood,
+/area/lawoffice)
+"aKj" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/open/floor/wood,
+/area/lawoffice)
+"aKk" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "0";
+ req_one_access_txt = "1;4;38;12"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fore)
+"aKl" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock{
+ name = "Unisex Restrooms";
+ req_access_txt = "0"
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/locker/locker_toilet{
+ name = "\improper Restrooms"
+ })
+"aKm" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/airlock{
+ name = "Dormitories";
+ req_access_txt = "0"
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/crew_quarters/sleep)
+"aKn" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/tinted/fulltile,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/crew_quarters/sleep)
+"aKo" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/airlock{
+ name = "Dormitories";
+ req_access_txt = "0"
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/crew_quarters/sleep)
+"aKp" = (
+/obj/item/weapon/reagent_containers/spray/plantbgone,
+/obj/item/weapon/reagent_containers/spray/pestspray{
+ pixel_x = 3;
+ pixel_y = 4
+ },
+/obj/item/weapon/reagent_containers/glass/bottle/nutrient/ez,
+/obj/item/weapon/reagent_containers/glass/bottle/nutrient/rh{
+ pixel_x = 2;
+ pixel_y = 1
+ },
+/obj/structure/table,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27;
+ pixel_y = 0
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/construction{
+ name = "\improper Garden"
+ })
+"aKq" = (
+/obj/machinery/biogenerator,
+/obj/machinery/firealarm{
+ pixel_y = 27
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/construction{
+ name = "\improper Garden"
+ })
+"aKr" = (
+/obj/structure/table,
+/obj/item/weapon/cultivator,
+/obj/item/weapon/hatchet,
+/obj/item/weapon/crowbar,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/item/device/plant_analyzer,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/construction{
+ name = "\improper Garden"
+ })
+"aKs" = (
+/obj/machinery/seed_extractor,
+/obj/machinery/airalarm{
+ pixel_y = 23
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/construction{
+ name = "\improper Garden"
+ })
+"aKt" = (
+/obj/item/seeds/apple,
+/obj/item/seeds/banana,
+/obj/item/seeds/cocoapod,
+/obj/item/seeds/grape,
+/obj/item/seeds/orange,
+/obj/item/seeds/sugarcane,
+/obj/item/seeds/wheat,
+/obj/item/seeds/watermelon,
+/obj/structure/table,
+/obj/item/seeds/tower,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/construction{
+ name = "\improper Garden"
+ })
+"aKu" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/grass,
+/area/hallway/secondary/construction{
+ name = "\improper Garden"
+ })
+"aKv" = (
+/mob/living/simple_animal/chicken{
+ name = "Featherbottom";
+ real_name = "Featherbottom"
+ },
+/turf/open/floor/grass,
+/area/hallway/secondary/construction{
+ name = "\improper Garden"
+ })
+"aKw" = (
+/obj/effect/decal/cleanable/cobweb,
+/obj/structure/closet/crate{
+ icon_state = "crateopen";
+ opened = 1
+ },
+/obj/item/weapon/wirecutters,
+/obj/item/weapon/weldingtool,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"aKx" = (
+/obj/machinery/portable_atmospherics/canister/toxins,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"aKy" = (
+/obj/effect/landmark{
+ name = "revenantspawn"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"aKz" = (
+/obj/machinery/door/poddoor{
+ id = "Secure Storage";
+ name = "Secure Storage"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"aKA" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aKB" = (
+/obj/machinery/holopad,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aKC" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aKD" = (
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for monitoring the singularity engine safely.";
+ dir = 8;
+ name = "Singularity Monitor";
+ network = list("Singulo");
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/obj/machinery/camera{
+ c_tag = "Engineering - Central";
+ dir = 8;
+ network = list("SS13")
+ },
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aKE" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"aKF" = (
+/obj/machinery/button/door{
+ id = "engsm";
+ name = "Radiation Shutters Control";
+ pixel_x = 24;
+ pixel_y = 0;
+ req_access_txt = "24"
+ },
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"aKG" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ icon_state = "intact";
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/engine/engineering)
+"aKH" = (
+/obj/machinery/atmospherics/components/binary/pump/on{
+ dir = 4;
+ name = "Gas to Chamber"
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"aKI" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 9
+ },
+/obj/machinery/meter,
+/turf/closed/wall/r_wall,
+/area/engine/engineering)
+"aKJ" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/obj/machinery/power/grounding_rod,
+/turf/open/floor/plating/airless,
+/area/space)
+"aKK" = (
+/obj/item/weapon/wrench,
+/turf/open/floor/plating/airless,
+/area/space)
+"aKL" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ icon_state = "intact";
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/engine,
+/area/engine/engineering)
+"aKM" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating/airless,
+/area/space)
+"aKN" = (
+/obj/machinery/door/poddoor{
+ density = 1;
+ icon_state = "closed";
+ id = "QMLoaddoor2";
+ name = "Supply Dock Loading Door";
+ opacity = 1
+ },
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "QMLoad2";
+ movedir = 8
+ },
+/turf/open/floor/plating,
+/area/quartermaster/storage)
+"aKO" = (
+/obj/structure/plasticflaps,
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "QMLoad2";
+ movedir = 8
+ },
+/turf/open/floor/plating,
+/area/quartermaster/storage)
+"aKP" = (
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "QMLoad2";
+ movedir = 2
+ },
+/turf/open/floor/plating,
+/area/quartermaster/storage)
+"aKQ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aKR" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aKS" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/quartermaster/storage)
+"aKT" = (
+/obj/structure/closet/crate,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/obj/item/weapon/ore/glass,
+/obj/item/weapon/ore/iron,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aKU" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aKV" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aKW" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4;
+ initialize_directions = 11
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aKX" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/loadingarea{
+ dir = 8
+ },
+/area/quartermaster/storage)
+"aKY" = (
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=8";
+ dir = 8;
+ freq = 1400;
+ location = "QM #2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aKZ" = (
+/obj/machinery/door/window/northleft{
+ dir = 8;
+ name = "MuleBot Supply Access";
+ req_access_txt = "50"
+ },
+/obj/structure/plasticflaps{
+ opacity = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"aLa" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"aLb" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"aLc" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"aLd" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"aLe" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"aLf" = (
+/obj/structure/table,
+/obj/item/clothing/gloves/color/fyellow,
+/obj/item/device/gps{
+ gpstag = "AUX0"
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 9
+ },
+/area/storage/primary)
+"aLg" = (
+/turf/open/floor/plasteel/brown{
+ dir = 1
+ },
+/area/storage/primary)
+"aLh" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/brown{
+ dir = 1
+ },
+/area/storage/primary)
+"aLi" = (
+/obj/structure/table,
+/obj/item/stack/cable_coil{
+ pixel_x = 2;
+ pixel_y = -2
+ },
+/obj/item/stack/cable_coil{
+ pixel_x = 3;
+ pixel_y = 5
+ },
+/obj/item/weapon/screwdriver{
+ pixel_y = 16
+ },
+/obj/item/weapon/stock_parts/cell/high{
+ charge = 100;
+ maxcharge = 15000
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 1
+ },
+/area/storage/primary)
+"aLj" = (
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/obj/item/weapon/stock_parts/cell/high{
+ charge = 100;
+ maxcharge = 15000
+ },
+/obj/machinery/light_switch{
+ pixel_y = 28
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 1
+ },
+/area/storage/primary)
+"aLk" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/obj/item/weapon/cigbutt,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"aLl" = (
+/obj/machinery/vending/tool,
+/turf/open/floor/plasteel/brown{
+ dir = 1
+ },
+/area/storage/primary)
+"aLm" = (
+/obj/structure/table,
+/obj/item/device/assembly/signaler,
+/obj/item/device/assembly/signaler,
+/obj/item/device/multitool,
+/obj/item/device/multitool{
+ pixel_x = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 5
+ },
+/area/storage/primary)
+"aLn" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/storage/primary)
+"aLo" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/space,
+/area/space)
+"aLp" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/ai_monitored/turret_protected/ai_upload)
+"aLq" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/porta_turret/ai,
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/ai_upload)
+"aLr" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/machinery/flasher{
+ pixel_x = 0;
+ pixel_y = 24;
+ id = "AI"
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/ai_upload)
+"aLs" = (
+/obj/structure/sign/kiddieplaque{
+ pixel_y = 32
+ },
+/obj/structure/table,
+/obj/machinery/camera/motion{
+ c_tag = "AI Upload Chamber - Fore";
+ network = list("SS13","RD","AIUpload")
+ },
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-07";
+ name = "Photosynthetic Potted plant";
+ pixel_y = 10
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/ai_upload)
+"aLt" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/obj/machinery/airalarm{
+ pixel_y = 23
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/ai_upload)
+"aLu" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/porta_turret/ai,
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/ai_upload)
+"aLv" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/ai_monitored/turret_protected/ai_upload)
+"aLw" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/space,
+/area/space)
+"aLx" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/hallway/primary/fore)
+"aLy" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/airalarm{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 8
+ },
+/area/hallway/primary/fore)
+"aLz" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/crew_quarters/courtroom)
+"aLA" = (
+/turf/open/floor/plasteel/neutral/side{
+ dir = 8
+ },
+/area/crew_quarters/courtroom)
+"aLB" = (
+/obj/effect/landmark/start{
+ name = "Lawyer"
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/courtroom)
+"aLC" = (
+/turf/open/floor/plasteel/neutral/side{
+ dir = 4
+ },
+/area/crew_quarters/courtroom)
+"aLD" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/lawoffice)
+"aLE" = (
+/obj/structure/table/wood,
+/obj/item/weapon/folder/red,
+/obj/item/weapon/folder/red,
+/obj/item/weapon/folder/red,
+/obj/item/clothing/glasses/sunglasses/big,
+/turf/open/floor/wood,
+/area/lawoffice)
+"aLF" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 2;
+ on = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/wood,
+/area/lawoffice)
+"aLG" = (
+/obj/machinery/photocopier,
+/obj/machinery/camera{
+ c_tag = "Law Office";
+ dir = 8;
+ network = list("SS13")
+ },
+/turf/open/floor/wood,
+/area/lawoffice)
+"aLH" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/vault,
+/area/crew_quarters/locker)
+"aLI" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/stack/sheet/cardboard,
+/obj/item/stack/rods{
+ amount = 50
+ },
+/obj/item/weapon/paper,
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/structure/sign/poster{
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/quartermaster/sorting{
+ name = "\improper Warehouse"
+ })
+"aLJ" = (
+/obj/structure/rack,
+/obj/item/weapon/stock_parts/matter_bin,
+/turf/open/floor/plating{
+ icon_state = "platingdmg2"
+ },
+/area/maintenance/starboard)
+"aLK" = (
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/crew_quarters/locker)
+"aLL" = (
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/crew_quarters/locker)
+"aLM" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/obj/structure/sign/poster{
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/locker/locker_toilet{
+ name = "\improper Restrooms"
+ })
+"aLN" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/obj/machinery/portable_atmospherics/pump,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ pixel_y = 27
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"aLO" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/obj/machinery/portable_atmospherics/scrubber,
+/obj/machinery/status_display{
+ density = 0;
+ layer = 4;
+ pixel_x = 0;
+ pixel_y = 30
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"aLP" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/obj/machinery/portable_atmospherics/scrubber,
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = 26
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"aLQ" = (
+/obj/machinery/disposal/bin{
+ pixel_x = 0;
+ pixel_y = 0
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/camera{
+ c_tag = "Locker Room Starboard";
+ dir = 2;
+ network = list("SS13")
+ },
+/obj/structure/sign/pods{
+ pixel_y = 30
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"aLR" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/crew_quarters/locker)
+"aLS" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/floorgrime,
+/area/crew_quarters/locker)
+"aLT" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/crew_quarters/locker)
+"aLU" = (
+/obj/structure/sink{
+ icon_state = "sink";
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/obj/machinery/light_switch{
+ pixel_x = -26
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 9
+ },
+/area/hallway/secondary/construction{
+ name = "\improper Garden"
+ })
+"aLV" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 1
+ },
+/area/hallway/secondary/construction{
+ name = "\improper Garden"
+ })
+"aLW" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 5
+ },
+/area/hallway/secondary/construction{
+ name = "\improper Garden"
+ })
+"aLX" = (
+/obj/machinery/door/firedoor/border_only{
+ density = 1;
+ dir = 8;
+ icon_state = "door_closed";
+ name = "Animal Pen A";
+ opacity = 1
+ },
+/turf/open/floor/grass,
+/area/hallway/secondary/construction{
+ name = "\improper Garden"
+ })
+"aLY" = (
+/turf/open/floor/grass,
+/area/hallway/secondary/construction{
+ name = "\improper Garden"
+ })
+"aLZ" = (
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg1"
+ },
+/area/maintenance/starboard)
+"aMa" = (
+/obj/machinery/power/emitter,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"aMb" = (
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"aMc" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aMd" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aMe" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aMf" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aMg" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Supermatter Engine";
+ req_access_txt = "10"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"aMh" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"aMi" = (
+/obj/machinery/atmospherics/components/binary/pump/on{
+ name = "Gas to Filter"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"aMj" = (
+/obj/machinery/door/airlock/glass_engineering{
+ heat_proof = 1;
+ name = "Supermatter Chamber";
+ req_access_txt = "10"
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"aMk" = (
+/turf/open/floor/engine,
+/area/engine/engineering)
+"aMl" = (
+/obj/structure/particle_accelerator/particle_emitter/left{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"aMm" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"aMn" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plating/airless,
+/area/space)
+"aMo" = (
+/obj/structure/reflector/box{
+ anchored = 1;
+ dir = 8
+ },
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"aMp" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plating/airless,
+/area/space)
+"aMq" = (
+/obj/structure/window/reinforced,
+/turf/open/space,
+/area/space)
+"aMr" = (
+/obj/structure/window/reinforced,
+/obj/structure/lattice,
+/turf/open/space,
+/area/space)
+"aMs" = (
+/obj/machinery/door/airlock/external{
+ name = "Supply Dock Airlock";
+ req_access_txt = "31"
+ },
+/turf/open/floor/plating,
+/area/quartermaster/storage)
+"aMt" = (
+/obj/machinery/light/small,
+/turf/open/floor/plating,
+/area/quartermaster/storage)
+"aMu" = (
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/quartermaster/storage)
+"aMv" = (
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aMw" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aMx" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/landmark/start{
+ name = "Cargo Technician"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aMy" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/loadingarea{
+ dir = 8
+ },
+/area/quartermaster/storage)
+"aMz" = (
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=8";
+ dir = 8;
+ freq = 1400;
+ location = "QM #3"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/delivery,
+/mob/living/simple_animal/bot/mulebot{
+ home_destination = "QM #3";
+ suffix = "#3"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aMA" = (
+/obj/machinery/camera/autoname{
+ dir = 4;
+ network = list("SS13")
+ },
+/obj/structure/rack,
+/obj/item/weapon/storage/toolbox/electrical{
+ pixel_x = 1;
+ pixel_y = -1
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 8
+ },
+/area/storage/primary)
+"aMB" = (
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"aMC" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"aMD" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"aME" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"aMF" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 4
+ },
+/area/storage/primary)
+"aMG" = (
+/obj/structure/table,
+/obj/item/weapon/aiModule/core/full/asimov,
+/obj/item/weapon/aiModule/core/freeformcore,
+/obj/machinery/door/window{
+ base_state = "right";
+ dir = 4;
+ icon_state = "right";
+ name = "Core Modules";
+ req_access_txt = "20"
+ },
+/obj/structure/window/reinforced,
+/obj/item/weapon/aiModule/core/full/corp,
+/obj/item/weapon/aiModule/core/full/custom,
+/obj/machinery/flasher{
+ pixel_x = 0;
+ pixel_y = 24;
+ id = "AI"
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/ai_upload)
+"aMH" = (
+/turf/open/floor/bluegrid,
+/area/ai_monitored/turret_protected/ai_upload)
+"aMI" = (
+/obj/structure/table,
+/obj/machinery/door/window{
+ base_state = "left";
+ dir = 8;
+ icon_state = "left";
+ name = "High-Risk Modules";
+ req_access_txt = "20"
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/flasher{
+ pixel_x = 0;
+ pixel_y = 24;
+ id = "AI"
+ },
+/obj/item/weapon/aiModule/core/full/antimov,
+/obj/item/weapon/aiModule/supplied/oxygen,
+/obj/item/weapon/aiModule/supplied/protectStation,
+/obj/item/weapon/aiModule/zeroth/oneHuman,
+/obj/item/weapon/aiModule/reset/purge,
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/ai_upload)
+"aMJ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = -29
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 8
+ },
+/area/hallway/primary/fore)
+"aMK" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/crew_quarters/courtroom)
+"aML" = (
+/obj/structure/chair{
+ dir = 4;
+ name = "Prosecution"
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 9
+ },
+/area/crew_quarters/courtroom)
+"aMM" = (
+/obj/structure/table/wood,
+/obj/item/weapon/folder/red,
+/turf/open/floor/plasteel/neutral/side{
+ dir = 8
+ },
+/area/crew_quarters/courtroom)
+"aMN" = (
+/obj/machinery/holopad,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/crew_quarters/courtroom)
+"aMO" = (
+/obj/structure/table/wood,
+/obj/item/weapon/folder/blue,
+/turf/open/floor/plasteel/neutral/side{
+ dir = 4
+ },
+/area/crew_quarters/courtroom)
+"aMP" = (
+/obj/structure/chair{
+ dir = 8;
+ name = "Defense"
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 5
+ },
+/area/crew_quarters/courtroom)
+"aMQ" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock{
+ name = "Law Office";
+ req_access_txt = "38"
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/courtroom)
+"aMR" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/open/floor/wood,
+/area/lawoffice)
+"aMS" = (
+/obj/effect/landmark/start{
+ name = "Lawyer"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/wood,
+/area/lawoffice)
+"aMT" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/wood,
+/area/lawoffice)
+"aMU" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9;
+ pixel_y = 0
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/wood,
+/area/lawoffice)
+"aMV" = (
+/obj/structure/filingcabinet/employment,
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/turf/open/floor/wood,
+/area/lawoffice)
+"aMW" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/crew_quarters/locker)
+"aMX" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/crew_quarters/locker)
+"aMY" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/crew_quarters/locker)
+"aMZ" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/crew_quarters/locker)
+"aNa" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 2
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/crew_quarters/locker)
+"aNb" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/crew_quarters/locker)
+"aNc" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/crew_quarters/locker)
+"aNd" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9;
+ pixel_y = 0
+ },
+/obj/structure/disposalpipe/junction{
+ icon_state = "pipe-j1";
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/crew_quarters/locker)
+"aNe" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"aNf" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=14.5-Recreation";
+ location = "14.3-Lockers-Dorms"
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/crew_quarters/locker)
+"aNg" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/tinted/fulltile,
+/turf/open/floor/plating,
+/area/hallway/secondary/construction{
+ name = "\improper Garden"
+ })
+"aNh" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/neutral/side{
+ dir = 8
+ },
+/area/hallway/secondary/construction{
+ name = "\improper Garden"
+ })
+"aNi" = (
+/obj/machinery/hydroponics/constructable,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/construction{
+ name = "\improper Garden"
+ })
+"aNj" = (
+/turf/open/floor/plasteel/neutral/side{
+ dir = 4
+ },
+/area/hallway/secondary/construction{
+ name = "\improper Garden"
+ })
+"aNk" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/mob/living/simple_animal/chicken{
+ name = "Kentucky";
+ real_name = "Kentucky"
+ },
+/turf/open/floor/grass,
+/area/hallway/secondary/construction{
+ name = "\improper Garden"
+ })
+"aNl" = (
+/obj/structure/window/reinforced,
+/turf/open/floor/grass,
+/area/hallway/secondary/construction{
+ name = "\improper Garden"
+ })
+"aNm" = (
+/obj/structure/rack,
+/obj/item/clothing/suit/hazardvest,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"aNn" = (
+/obj/machinery/power/emitter,
+/obj/machinery/light/small,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"aNo" = (
+/obj/structure/closet/crate,
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/obj/item/stack/rods{
+ amount = 50
+ },
+/obj/item/stack/sheet/glass{
+ amount = 50
+ },
+/obj/item/weapon/electronics/airlock,
+/obj/item/weapon/electronics/airlock,
+/obj/item/weapon/stock_parts/cell/high{
+ charge = 100;
+ maxcharge = 15000
+ },
+/obj/item/stack/sheet/mineral/plasma{
+ amount = 30
+ },
+/obj/item/device/gps,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"aNp" = (
+/obj/machinery/the_singularitygen{
+ anchored = 0
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"aNq" = (
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/obj/item/weapon/stock_parts/cell/high{
+ charge = 100;
+ maxcharge = 15000
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/engine/engineering)
+"aNr" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aNs" = (
+/obj/structure/table,
+/obj/item/weapon/book/manual/wiki/engineering_guide{
+ pixel_x = 3;
+ pixel_y = 4
+ },
+/obj/item/weapon/book/manual/engineering_particle_accelerator{
+ pixel_x = -2;
+ pixel_y = 3
+ },
+/obj/machinery/button/door{
+ id = "Singularity";
+ name = "Shutters Control";
+ pixel_x = 25;
+ pixel_y = 0;
+ req_access_txt = "11"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/engine/engineering)
+"aNt" = (
+/obj/machinery/button/door{
+ id = "Singularity";
+ name = "Shutters Control";
+ pixel_x = -25;
+ pixel_y = 0;
+ req_access_txt = "11"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"aNu" = (
+/obj/machinery/atmospherics/components/binary/pump/on{
+ dir = 8;
+ name = "Gas to Filter"
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"aNv" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ on = 1
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"aNw" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/space,
+/area/space)
+"aNx" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/plasteel/black,
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"aNy" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/turf/open/floor/plasteel/black,
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"aNz" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/obj/structure/window/reinforced,
+/turf/open/floor/plasteel/black,
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"aNA" = (
+/obj/structure/closet{
+ name = "Evidence Closet 3"
+ },
+/obj/item/weapon/storage/backpack{
+ name = "Evidence Bag 3"
+ },
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 4
+ },
+/area/security/warden)
+"aNB" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"aNC" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/lattice,
+/turf/open/space,
+/area/space)
+"aND" = (
+/obj/structure/grille,
+/obj/structure/window/shuttle,
+/turf/open/floor/plating,
+/area/shuttle/pod_1)
+"aNE" = (
+/obj/machinery/button/door{
+ id = "QMLoaddoor";
+ layer = 4;
+ name = "Loading Doors";
+ pixel_x = -27;
+ pixel_y = -5
+ },
+/obj/machinery/button/door{
+ dir = 2;
+ id = "QMLoaddoor2";
+ layer = 4;
+ name = "Loading Doors";
+ pixel_x = -27;
+ pixel_y = 5
+ },
+/obj/machinery/computer/cargo,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aNF" = (
+/obj/effect/landmark/start{
+ name = "Cargo Technician"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aNG" = (
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/quartermaster/storage)
+"aNH" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aNI" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aNJ" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aNK" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aNL" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/turf/open/floor/plasteel/loadingarea{
+ dir = 8
+ },
+/area/quartermaster/storage)
+"aNM" = (
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=8";
+ dir = 8;
+ freq = 1400;
+ location = "QM #4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/window/southleft,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aNN" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/quartermaster/qm)
+"aNO" = (
+/obj/structure/closet/secure_closet/quartermaster,
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 9
+ },
+/area/quartermaster/qm)
+"aNP" = (
+/obj/machinery/camera/autoname{
+ dir = 2;
+ network = list("SS13")
+ },
+/obj/machinery/holopad,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "Quartermaster's Office APC";
+ pixel_x = 0;
+ pixel_y = 30
+ },
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 1
+ },
+/area/quartermaster/qm)
+"aNQ" = (
+/obj/structure/filingcabinet/chestdrawer,
+/obj/machinery/airalarm{
+ pixel_y = 23
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 1
+ },
+/area/quartermaster/qm)
+"aNR" = (
+/obj/structure/table,
+/obj/machinery/computer/stockexchange,
+/turf/open/floor/plasteel/brown{
+ dir = 1
+ },
+/area/quartermaster/qm)
+"aNS" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/starboard)
+"aNT" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/obj/structure/closet/crate/internals,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"aNU" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"aNV" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"aNW" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"aNX" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"aNY" = (
+/obj/structure/table,
+/obj/item/device/assembly/igniter{
+ pixel_x = -4;
+ pixel_y = -4
+ },
+/obj/item/device/assembly/igniter,
+/obj/item/weapon/screwdriver{
+ pixel_y = 16
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 4
+ },
+/area/storage/primary)
+"aNZ" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/open/floor/plating,
+/area/ai_monitored/turret_protected/ai_upload)
+"aOa" = (
+/obj/machinery/porta_turret/ai{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/ai_upload)
+"aOb" = (
+/obj/machinery/computer/upload/borg,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/window/westleft{
+ base_state = "left";
+ dir = 2;
+ icon_state = "left";
+ layer = 3.1;
+ name = "Cyborg Upload Console Window";
+ req_access_txt = "16"
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/ai_upload)
+"aOc" = (
+/obj/machinery/holopad,
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/ai_upload)
+"aOd" = (
+/obj/machinery/computer/upload/ai,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/window/westleft{
+ base_state = "right";
+ dir = 2;
+ icon_state = "right";
+ layer = 3.1;
+ name = "Upload Console Window";
+ req_access_txt = "16"
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/ai_upload)
+"aOe" = (
+/obj/machinery/porta_turret/ai{
+ dir = 8
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/ai_upload)
+"aOf" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/courtroom)
+"aOg" = (
+/obj/structure/chair{
+ dir = 4;
+ name = "Prosecution"
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 10
+ },
+/area/crew_quarters/courtroom)
+"aOh" = (
+/obj/structure/table/wood,
+/obj/item/weapon/paper,
+/turf/open/floor/plasteel/neutral/side{
+ dir = 10
+ },
+/area/crew_quarters/courtroom)
+"aOi" = (
+/turf/open/floor/plasteel/neutral/side,
+/area/crew_quarters/courtroom)
+"aOj" = (
+/obj/item/device/radio/beacon,
+/turf/open/floor/plasteel/neutral/side,
+/area/crew_quarters/courtroom)
+"aOk" = (
+/obj/structure/table/wood,
+/turf/open/floor/plasteel/neutral/side{
+ dir = 6
+ },
+/area/crew_quarters/courtroom)
+"aOl" = (
+/obj/structure/chair{
+ dir = 8;
+ name = "Defense"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 6
+ },
+/area/crew_quarters/courtroom)
+"aOm" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 27;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/courtroom)
+"aOn" = (
+/obj/item/device/taperecorder{
+ pixel_y = 0
+ },
+/obj/item/weapon/cartridge/lawyer,
+/obj/structure/table/wood,
+/obj/machinery/button/door{
+ id = "lawyer_shutters";
+ name = "law office shutters control";
+ pixel_x = 0;
+ pixel_y = -26;
+ req_access_txt = "38"
+ },
+/turf/open/floor/wood,
+/area/lawoffice)
+"aOo" = (
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/weapon/pen,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/table/wood,
+/turf/open/floor/wood,
+/area/lawoffice)
+"aOp" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/wood,
+/area/lawoffice)
+"aOq" = (
+/obj/machinery/holopad,
+/turf/open/floor/wood,
+/area/lawoffice)
+"aOr" = (
+/obj/structure/closet/lawcloset,
+/obj/machinery/light_switch{
+ pixel_x = 0;
+ pixel_y = -28
+ },
+/turf/open/floor/wood,
+/area/lawoffice)
+"aOs" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/structure/table,
+/obj/item/weapon/folder,
+/obj/item/weapon/storage/firstaid/regular,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/crew_quarters/locker)
+"aOt" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"aOu" = (
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"aOv" = (
+/turf/open/floor/plasteel/floorgrime,
+/area/crew_quarters/locker)
+"aOw" = (
+/obj/structure/chair/stool{
+ pixel_y = 8
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"aOx" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"aOy" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"aOz" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/crew_quarters/locker)
+"aOA" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"aOB" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 2;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"aOC" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"aOD" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"aOE" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"aOF" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 2;
+ initialize_directions = 11
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/crew_quarters/locker)
+"aOG" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock{
+ name = "Garden";
+ req_access_txt = "0"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/construction{
+ name = "\improper Garden"
+ })
+"aOH" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 8
+ },
+/area/hallway/secondary/construction{
+ name = "\improper Garden"
+ })
+"aOI" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/hallway/secondary/construction{
+ name = "\improper Garden"
+ })
+"aOJ" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/holopad,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/construction{
+ name = "\improper Garden"
+ })
+"aOK" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/construction{
+ name = "\improper Garden"
+ })
+"aOL" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 4
+ },
+/area/hallway/secondary/construction{
+ name = "\improper Garden"
+ })
+"aOM" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/construction{
+ name = "\improper Garden"
+ })
+"aON" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "Garden APC";
+ pixel_x = 27;
+ pixel_y = 2
+ },
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/disposal/bin,
+/obj/machinery/camera{
+ c_tag = "Garden";
+ dir = 8;
+ network = list("SS13")
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 4
+ },
+/area/hallway/secondary/construction{
+ name = "\improper Garden"
+ })
+"aOO" = (
+/obj/machinery/power/apc{
+ cell_type = 10000;
+ dir = 8;
+ name = "Engine Room APC";
+ pixel_x = -26;
+ pixel_y = 0
+ },
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aOP" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aOQ" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aOR" = (
+/obj/effect/turf_decal/delivery,
+/obj/structure/closet/firecloset,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aOS" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = 21
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"aOT" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/plasteel/black,
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"aOU" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/turf/open/space,
+/area/space)
+"aOV" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/turf/open/space,
+/area/space)
+"aOW" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"aOX" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/turf/open/space,
+/area/space)
+"aOY" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/space,
+/area/space)
+"aOZ" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/pod_1)
+"aPa" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/item/device/radio/intercom{
+ pixel_x = 25
+ },
+/obj/item/weapon/storage/pod{
+ pixel_x = -26
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/pod_2)
+"aPb" = (
+/obj/structure/closet/secure_closet/miner{
+ locked = 0
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/shuttle/auxillary_base)
+"aPc" = (
+/obj/structure/grille,
+/obj/machinery/door/poddoor/shutters{
+ id = "syndieshutters";
+ name = "blast shutters"
+ },
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/shuttle/syndicate)
+"aPd" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/quartermaster/storage)
+"aPe" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aPf" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aPg" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_mining{
+ name = "Quartermaster";
+ req_access_txt = "41"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/qm)
+"aPh" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 8
+ },
+/area/quartermaster/qm)
+"aPi" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/qm)
+"aPj" = (
+/obj/effect/landmark/start{
+ name = "Quartermaster"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/chair/office/dark{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/qm)
+"aPk" = (
+/obj/structure/table,
+/obj/item/weapon/folder/yellow,
+/obj/item/weapon/pen{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/weapon/pen/red,
+/obj/machinery/requests_console{
+ department = "Cargo Bay";
+ departmentType = 2;
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/qm)
+"aPl" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"aPm" = (
+/obj/structure/plasticflaps{
+ opacity = 1
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=4";
+ dir = 4;
+ freq = 1400;
+ location = "Tool Storage"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"aPn" = (
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"aPo" = (
+/obj/structure/table,
+/obj/item/weapon/weldingtool,
+/obj/item/weapon/crowbar,
+/obj/item/stack/packageWrap,
+/obj/item/stack/packageWrap,
+/obj/item/stack/packageWrap,
+/obj/item/stack/packageWrap,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/brown/corner{
+ dir = 2
+ },
+/area/storage/primary)
+"aPp" = (
+/obj/structure/table,
+/obj/item/weapon/storage/toolbox/mechanical{
+ pixel_x = -2;
+ pixel_y = -1
+ },
+/turf/open/floor/plasteel/brown/corner{
+ dir = 8
+ },
+/area/storage/primary)
+"aPq" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"aPr" = (
+/obj/structure/table,
+/obj/item/weapon/wirecutters,
+/obj/item/device/flashlight{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/obj/machinery/requests_console{
+ department = "Tool Storage";
+ departmentType = 0;
+ pixel_x = 30;
+ pixel_y = 0
+ },
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Tool Storage";
+ dir = 8;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 4
+ },
+/area/storage/primary)
+"aPs" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/structure/cable/yellow,
+/turf/open/floor/plating,
+/area/ai_monitored/turret_protected/ai_upload)
+"aPt" = (
+/obj/structure/table,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/item/weapon/aiModule/supplied/quarantine,
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/ai_upload)
+"aPu" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/bluegrid,
+/area/ai_monitored/turret_protected/ai_upload)
+"aPv" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/ai_upload)
+"aPw" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/ai_slipper{
+ uses = 8
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/ai_upload)
+"aPx" = (
+/obj/structure/table,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/item/weapon/aiModule/supplied/freeform,
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/ai_upload)
+"aPy" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable/yellow,
+/turf/open/floor/plating,
+/area/ai_monitored/turret_protected/ai_upload)
+"aPz" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=0-SecurityDesk";
+ location = "16-Fore"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"aPA" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/machinery/camera{
+ c_tag = "Fore Primary Hallway Aft";
+ dir = 8;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 2
+ },
+/area/hallway/primary/fore)
+"aPB" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/crew_quarters/courtroom)
+"aPC" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Courtroom";
+ req_access_txt = "42"
+ },
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/courtroom)
+"aPD" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/courtroom)
+"aPE" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "lawyer_shutters";
+ name = "law office shutters"
+ },
+/turf/open/floor/plating,
+/area/lawoffice)
+"aPF" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock{
+ name = "Law Office";
+ req_access_txt = "38"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/wood,
+/area/lawoffice)
+"aPG" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "lawyer_shutters";
+ name = "law office shutters"
+ },
+/turf/open/floor/plating,
+/area/lawoffice)
+"aPH" = (
+/obj/structure/table,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/weapon/pen,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/crew_quarters/locker)
+"aPI" = (
+/obj/structure/table,
+/obj/item/weapon/storage/pill_bottle/dice,
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"aPJ" = (
+/obj/structure/chair/stool{
+ pixel_y = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"aPK" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/crew_quarters/locker)
+"aPL" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"aPM" = (
+/obj/structure/rack,
+/obj/item/weapon/storage/toolbox/mechanical{
+ pixel_x = -2;
+ pixel_y = -1
+ },
+/obj/item/weapon/storage/toolbox/mechanical{
+ pixel_x = 4;
+ pixel_y = -4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/crew_quarters/locker)
+"aPN" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/tinted/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/hallway/secondary/construction{
+ name = "\improper Garden"
+ })
+"aPO" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 8
+ },
+/area/hallway/secondary/construction{
+ name = "\improper Garden"
+ })
+"aPP" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/hydroponics/constructable,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/construction{
+ name = "\improper Garden"
+ })
+"aPQ" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/grass,
+/area/hallway/secondary/construction{
+ name = "\improper Garden"
+ })
+"aPR" = (
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 29
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/open/floor/grass,
+/area/hallway/secondary/construction{
+ name = "\improper Garden"
+ })
+"aPS" = (
+/obj/structure/rack,
+/obj/item/clothing/gloves/color/fyellow,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"aPT" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/maintenance/starboard)
+"aPU" = (
+/obj/machinery/computer/atmos_alert,
+/obj/structure/sign/map/left{
+ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";
+ icon_state = "map-left-MS";
+ pixel_y = 32
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -26;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/vault,
+/area/engine/engineering)
+"aPV" = (
+/obj/machinery/computer/station_alert,
+/obj/structure/sign/map/right{
+ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";
+ icon_state = "map-right-MS";
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/vault,
+/area/engine/engineering)
+"aPW" = (
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/computer/monitor{
+ name = "Engineering Power Monitoring Console"
+ },
+/obj/machinery/status_display{
+ density = 0;
+ layer = 4;
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/obj/machinery/camera{
+ c_tag = "Engineering - Power Monitoring";
+ dir = 2;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/vault,
+/area/engine/engineering)
+"aPX" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"aPY" = (
+/obj/machinery/vending/engivend,
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/engine/engineering)
+"aPZ" = (
+/obj/machinery/vending/tool,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/engine/engineering)
+"aQa" = (
+/obj/structure/table,
+/obj/effect/turf_decal/delivery,
+/obj/item/clothing/glasses/meson,
+/obj/item/clothing/glasses/meson,
+/obj/item/clothing/glasses/meson,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aQb" = (
+/obj/structure/sign/securearea,
+/turf/closed/wall/r_wall,
+/area/engine/engineering)
+"aQc" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/clothing/gloves/color/black,
+/obj/item/weapon/extinguisher{
+ pixel_x = 8
+ },
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = 21
+ },
+/obj/item/clothing/glasses/meson,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/engine/engineering)
+"aQd" = (
+/obj/machinery/atmospherics/components/trinary/filter/flipped{
+ dir = 1;
+ on = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"aQe" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"aQf" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/machinery/status_display{
+ density = 0;
+ layer = 3;
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/obj/machinery/computer/shuttle/pod{
+ pixel_y = -32;
+ possible_destinations = "pod_asteroid3";
+ shuttleId = "pod3"
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/pod_3)
+"aQg" = (
+/obj/machinery/door/poddoor{
+ density = 1;
+ icon_state = "closed";
+ id = "QMLoaddoor";
+ name = "Supply Dock Loading Door";
+ opacity = 1
+ },
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "QMLoad"
+ },
+/turf/open/floor/plating,
+/area/quartermaster/storage)
+"aQh" = (
+/obj/structure/plasticflaps,
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "QMLoad"
+ },
+/turf/open/floor/plating,
+/area/quartermaster/storage)
+"aQi" = (
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "QMLoad"
+ },
+/turf/open/floor/plating,
+/area/quartermaster/storage)
+"aQj" = (
+/obj/effect/landmark/start{
+ name = "Cargo Technician"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/quartermaster/storage)
+"aQk" = (
+/obj/structure/closet/crate{
+ icon_state = "crateopen";
+ opened = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aQl" = (
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aQm" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aQn" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aQo" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/table,
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/obj/machinery/camera{
+ c_tag = "Cargo Bay - Starboard";
+ dir = 8;
+ network = list("SS13")
+ },
+/obj/item/weapon/paper_bin{
+ pixel_x = -1;
+ pixel_y = 6
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aQp" = (
+/turf/closed/wall,
+/area/quartermaster/qm)
+"aQq" = (
+/obj/machinery/computer/security/mining{
+ network = list("MINE","AuxBase")
+ },
+/obj/machinery/light_switch{
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 8
+ },
+/area/quartermaster/qm)
+"aQr" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/qm)
+"aQs" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/quartermaster/qm)
+"aQt" = (
+/obj/structure/table,
+/obj/item/weapon/clipboard,
+/obj/item/weapon/stamp/qm{
+ pixel_x = 0;
+ pixel_y = 0
+ },
+/obj/machinery/status_display{
+ density = 0;
+ pixel_x = 32;
+ pixel_y = 0;
+ supply_display = 1
+ },
+/obj/item/weapon/cartridge/quartermaster{
+ pixel_x = 6;
+ pixel_y = 5
+ },
+/obj/item/weapon/cartridge/quartermaster,
+/obj/item/weapon/cartridge/quartermaster{
+ pixel_x = -4;
+ pixel_y = 7
+ },
+/obj/item/device/gps{
+ gpstag = "QM0"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/qm)
+"aQu" = (
+/obj/structure/closet/crate{
+ icon_state = "crateopen";
+ opened = 1
+ },
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"aQv" = (
+/obj/structure/table,
+/obj/item/weapon/storage/toolbox/mechanical{
+ pixel_x = -2;
+ pixel_y = -1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/brown/corner{
+ dir = 4
+ },
+/area/storage/primary)
+"aQw" = (
+/obj/structure/table,
+/obj/item/weapon/folder/yellow,
+/obj/item/weapon/folder/yellow,
+/obj/item/weapon/storage/firstaid/regular,
+/turf/open/floor/plasteel/brown/corner{
+ dir = 1
+ },
+/area/storage/primary)
+"aQx" = (
+/obj/machinery/holopad,
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"aQy" = (
+/obj/structure/table,
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 27
+ },
+/obj/item/clothing/gloves/color/yellow,
+/obj/item/device/t_scanner,
+/turf/open/floor/plasteel/brown{
+ dir = 4
+ },
+/area/storage/primary)
+"aQz" = (
+/obj/structure/table,
+/obj/item/weapon/aiModule/reset,
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/obj/machinery/ai_status_display{
+ pixel_x = -32;
+ pixel_y = 0
+ },
+/obj/machinery/flasher{
+ id = "AI";
+ pixel_x = 0;
+ pixel_y = -24
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/ai_upload)
+"aQA" = (
+/obj/machinery/power/apc{
+ cell_type = 5000;
+ dir = 2;
+ name = "Upload APC";
+ pixel_y = -24
+ },
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/camera/motion{
+ c_tag = "AI Upload Chamber - Port";
+ dir = 1;
+ network = list("SS13","RD","AIUpload")
+ },
+/turf/open/floor/bluegrid,
+/area/ai_monitored/turret_protected/ai_upload)
+"aQB" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/ai_upload)
+"aQC" = (
+/obj/item/device/radio/intercom{
+ broadcasting = 1;
+ frequency = 1447;
+ name = "Private AI Channel";
+ pixel_y = -25
+ },
+/obj/machinery/camera/motion{
+ c_tag = "AI Upload Chamber - Starboard";
+ dir = 1;
+ network = list("SS13","RD","AIUpload")
+ },
+/turf/open/floor/bluegrid,
+/area/ai_monitored/turret_protected/ai_upload)
+"aQD" = (
+/obj/structure/table,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/status_display{
+ density = 0;
+ layer = 4;
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/obj/machinery/flasher{
+ id = "AI";
+ pixel_x = 0;
+ pixel_y = -24
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/ai_upload)
+"aQE" = (
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 8
+ },
+/area/hallway/primary/fore)
+"aQF" = (
+/obj/structure/grille,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/window/reinforced/tinted/fulltile,
+/turf/open/floor/plating,
+/area/crew_quarters/courtroom)
+"aQG" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/obj/machinery/vending/cigarette,
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/courtroom)
+"aQH" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/courtroom)
+"aQI" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/courtroom)
+"aQJ" = (
+/obj/machinery/vending/coffee,
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/courtroom)
+"aQK" = (
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27;
+ pixel_y = 0
+ },
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-03";
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/crew_quarters/locker)
+"aQL" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/crew_quarters/locker)
+"aQM" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/crew_quarters/locker)
+"aQN" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/crew_quarters/locker)
+"aQO" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/camera{
+ c_tag = "Crew Quarters Entrance";
+ dir = 2;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/crew_quarters/locker)
+"aQP" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock{
+ name = "Locker Room";
+ req_access_txt = "0"
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/crew_quarters/locker)
+"aQQ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"aQR" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"aQS" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/structure/chair/stool{
+ pixel_y = 8
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"aQT" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 2
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/crew_quarters/locker)
+"aQU" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"aQV" = (
+/obj/structure/chair/stool{
+ pixel_y = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"aQW" = (
+/obj/structure/table,
+/obj/item/clothing/head/soft/grey{
+ pixel_x = -2;
+ pixel_y = 3
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"aQX" = (
+/obj/structure/table,
+/obj/item/weapon/razor{
+ pixel_y = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"aQY" = (
+/obj/structure/table,
+/obj/item/device/paicard,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"aQZ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"aRa" = (
+/obj/structure/rack,
+/obj/effect/landmark/costume,
+/obj/effect/landmark/costume,
+/obj/item/clothing/mask/balaclava,
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/crew_quarters/locker)
+"aRb" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/obj/structure/sink{
+ icon_state = "sink";
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 10
+ },
+/area/hallway/secondary/construction{
+ name = "\improper Garden"
+ })
+"aRc" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
+ },
+/turf/open/floor/plasteel/neutral/side,
+/area/hallway/secondary/construction{
+ name = "\improper Garden"
+ })
+"aRd" = (
+/turf/open/floor/plasteel/neutral/side,
+/area/hallway/secondary/construction{
+ name = "\improper Garden"
+ })
+"aRe" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/neutral/side,
+/area/hallway/secondary/construction{
+ name = "\improper Garden"
+ })
+"aRf" = (
+/turf/open/floor/plasteel/neutral/side{
+ dir = 6
+ },
+/area/hallway/secondary/construction{
+ name = "\improper Garden"
+ })
+"aRg" = (
+/obj/machinery/door/firedoor/border_only{
+ density = 1;
+ dir = 8;
+ icon_state = "door_closed";
+ name = "Animal Pen B";
+ opacity = 1
+ },
+/turf/open/floor/grass,
+/area/hallway/secondary/construction{
+ name = "\improper Garden"
+ })
+"aRh" = (
+/mob/living/simple_animal/cow{
+ name = "Betsy";
+ real_name = "Betsy"
+ },
+/turf/open/floor/grass,
+/area/hallway/secondary/construction{
+ name = "\improper Garden"
+ })
+"aRi" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/item/weapon/cigbutt,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"aRj" = (
+/obj/effect/landmark/start{
+ name = "Station Engineer"
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'HIGH VOLTAGE'";
+ icon_state = "shock";
+ name = "HIGH VOLTAGE";
+ pixel_x = -31
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aRk" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aRl" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aRm" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"aRn" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aRo" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aRp" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aRq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Station Engineer"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aRr" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/sortjunction{
+ sortType = 5
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aRs" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aRt" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aRu" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aRv" = (
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 5
+ },
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"aRw" = (
+/obj/machinery/status_display,
+/turf/closed/wall/r_wall,
+/area/engine/engineering)
+"aRx" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating/airless,
+/area/space)
+"aRy" = (
+/turf/closed/wall/r_wall,
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"aRz" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall/r_wall,
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"aRA" = (
+/turf/closed/wall,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"aRB" = (
+/obj/structure/shuttle/engine/propulsion/burst,
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/pod_1)
+"aRC" = (
+/obj/machinery/door/airlock/titanium{
+ name = "Escape Pod Airlock"
+ },
+/obj/docking_port/mobile/pod{
+ id = "pod1";
+ name = "escape pod 1";
+ port_angle = 180
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/pod_1)
+"aRD" = (
+/obj/structure/closet/toolcloset,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 9
+ },
+/area/mining_construction)
+"aRE" = (
+/turf/open/floor/plasteel/yellow/side{
+ dir = 1
+ },
+/area/mining_construction)
+"aRF" = (
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 4
+ },
+/obj/machinery/computer/camera_advanced/base_construction,
+/turf/open/floor/plasteel/yellow/side{
+ dir = 5
+ },
+/area/mining_construction)
+"aRG" = (
+/obj/effect/landmark{
+ name = "revenantspawn"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"aRH" = (
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "QMLoad";
+ movedir = 2
+ },
+/turf/open/floor/plating,
+/area/quartermaster/storage)
+"aRI" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/chair/office/dark{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aRJ" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 27
+ },
+/obj/structure/table,
+/obj/item/weapon/folder/yellow,
+/obj/item/weapon/folder/yellow,
+/obj/item/weapon/paper,
+/obj/item/weapon/paper,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aRK" = (
+/obj/machinery/computer/cargo,
+/turf/open/floor/plasteel/brown{
+ dir = 10
+ },
+/area/quartermaster/qm)
+"aRL" = (
+/obj/structure/chair/office/dark{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/obj/item/device/radio/intercom{
+ broadcasting = 0;
+ listening = 1;
+ name = "Station Intercom (General)";
+ pixel_y = -28
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 2
+ },
+/area/quartermaster/qm)
+"aRM" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 2
+ },
+/area/quartermaster/qm)
+"aRN" = (
+/obj/structure/table,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 2
+ },
+/area/quartermaster/qm)
+"aRO" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 2
+ },
+/obj/machinery/disposal/deliveryChute{
+ dir = 4;
+ name = "Crate Disposal Chute";
+ pixel_x = -5;
+ pixel_y = 2
+ },
+/obj/machinery/door/window/westleft{
+ base_state = "right";
+ dir = 4;
+ icon_state = "right";
+ name = "Crate Disposal Chute";
+ req_access_txt = "0"
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"aRP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"aRQ" = (
+/obj/structure/disposalpipe/junction{
+ icon_state = "pipe-j1";
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"aRR" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"aRS" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 4
+ },
+/area/storage/primary)
+"aRT" = (
+/obj/machinery/flasher{
+ id = "AI";
+ pixel_x = 0;
+ pixel_y = -24
+ },
+/obj/machinery/porta_turret/ai{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/ai_upload)
+"aRU" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/ai_upload)
+"aRV" = (
+/obj/machinery/porta_turret/ai{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/ai_upload)
+"aRW" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"aRX" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/centcom{
+ name = "Courtroom";
+ opacity = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/courtroom)
+"aRY" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/courtroom)
+"aRZ" = (
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=16-Fore";
+ location = "15-Court"
+ },
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/courtroom)
+"aSa" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/courtroom)
+"aSb" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"aSc" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/crew_quarters/locker)
+"aSd" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"aSe" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/turf/open/floor/plating,
+/area/crew_quarters/locker)
+"aSf" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"aSg" = (
+/obj/machinery/holopad,
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"aSh" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/floorgrime,
+/area/crew_quarters/locker)
+"aSi" = (
+/obj/structure/rack,
+/obj/item/weapon/storage/briefcase,
+/obj/item/weapon/storage/briefcase{
+ pixel_x = 4;
+ pixel_y = -2
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/crew_quarters/locker)
+"aSj" = (
+/obj/structure/table,
+/obj/item/weapon/cultivator,
+/obj/item/weapon/hatchet,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27;
+ pixel_y = 0
+ },
+/obj/item/weapon/paper/hydroponics,
+/obj/item/weapon/coin/silver,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/construction{
+ name = "\improper Garden"
+ })
+"aSk" = (
+/obj/structure/table,
+/obj/item/weapon/hatchet,
+/obj/item/weapon/cultivator,
+/obj/item/weapon/crowbar,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/item/device/plant_analyzer,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/construction{
+ name = "\improper Garden"
+ })
+"aSl" = (
+/obj/structure/table,
+/obj/item/weapon/reagent_containers/food/snacks/grown/wheat,
+/obj/item/weapon/reagent_containers/food/snacks/grown/watermelon,
+/obj/item/weapon/reagent_containers/food/snacks/grown/citrus/orange,
+/obj/item/weapon/reagent_containers/food/snacks/grown/grapes,
+/obj/item/weapon/reagent_containers/food/snacks/grown/cocoapod,
+/obj/item/weapon/reagent_containers/food/snacks/grown/apple,
+/obj/item/weapon/reagent_containers/food/snacks/grown/chili,
+/obj/item/weapon/reagent_containers/food/snacks/grown/cherries,
+/obj/item/weapon/reagent_containers/food/snacks/grown/soybeans,
+/obj/item/weapon/reagent_containers/food/snacks/grown/citrus/lime,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/construction{
+ name = "\improper Garden"
+ })
+"aSm" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/construction{
+ name = "\improper Garden"
+ })
+"aSn" = (
+/obj/item/weapon/storage/bag/plants/portaseeder,
+/obj/structure/table,
+/obj/machinery/light,
+/obj/item/device/plant_analyzer,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/construction{
+ name = "\improper Garden"
+ })
+"aSo" = (
+/obj/item/weapon/book/manual/wiki/engineering_hacking{
+ pixel_x = 4;
+ pixel_y = 5
+ },
+/obj/item/weapon/book/manual/wiki/engineering_construction{
+ pixel_x = 0;
+ pixel_y = 3
+ },
+/obj/structure/closet/crate,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"aSp" = (
+/obj/machinery/power/terminal,
+/obj/structure/cable,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27;
+ pixel_y = 0
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aSq" = (
+/obj/machinery/power/terminal,
+/obj/structure/cable,
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aSr" = (
+/obj/machinery/power/terminal,
+/obj/structure/cable,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aSs" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Power Monitoring";
+ req_access_txt = "32"
+ },
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ dir = 1
+ },
+/area/engine/engineering)
+"aSt" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aSu" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aSv" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aSw" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aSx" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aSy" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aSz" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"aSA" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ icon_state = "intact";
+ dir = 5
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"aSB" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aSC" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/turf/open/floor/plating/airless,
+/area/space)
+"aSD" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/space,
+/area/space)
+"aSE" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/closed/wall/r_wall,
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"aSF" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/closed/wall/r_wall,
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"aSG" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/turf/open/space,
+/area/space)
+"aSH" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg1"
+ },
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"aSI" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/plating,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"aSJ" = (
+/obj/structure/closet/toolcloset,
+/turf/open/floor/plasteel/yellow/side{
+ dir = 10
+ },
+/area/mining_construction)
+"aSK" = (
+/turf/open/floor/plasteel/yellow/side,
+/area/mining_construction)
+"aSL" = (
+/obj/structure/rack{
+ dir = 4
+ },
+/obj/item/weapon/electronics/airlock,
+/obj/item/weapon/electronics/airlock,
+/obj/item/weapon/electronics/airlock,
+/obj/item/weapon/electronics/airlock,
+/obj/item/stack/cable_coil,
+/obj/item/stack/cable_coil,
+/obj/item/wallframe/camera,
+/obj/item/wallframe/camera,
+/obj/item/wallframe/camera,
+/obj/item/wallframe/camera,
+/obj/item/device/assault_pod/mining,
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "Auxillary Base Construction APC";
+ pixel_x = 0;
+ pixel_y = -24
+ },
+/turf/open/floor/plasteel/yellow/side,
+/area/mining_construction)
+"aSM" = (
+/obj/structure/table,
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/obj/item/stack/sheet/glass{
+ amount = 50
+ },
+/obj/item/weapon/pipe_dispenser,
+/obj/machinery/airalarm{
+ dir = 1;
+ icon_state = "alarm0";
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel/yellow/side,
+/area/mining_construction)
+"aSN" = (
+/obj/structure/table,
+/obj/item/stack/sheet/plasteel{
+ amount = 10
+ },
+/obj/item/stack/rods{
+ amount = 50
+ },
+/obj/item/weapon/storage/box/lights/mixed,
+/turf/open/floor/plasteel/yellow/side{
+ dir = 6
+ },
+/area/mining_construction)
+"aSO" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"aSP" = (
+/obj/structure/closet/crate{
+ icon_state = "crateopen";
+ opened = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"aSQ" = (
+/obj/machinery/conveyor_switch/oneway{
+ convdir = 1;
+ id = "QMLoad";
+ pixel_x = 6
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aSR" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aSS" = (
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aST" = (
+/obj/structure/closet/crate,
+/obj/structure/disposalpipe/segment,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 3;
+ name = "3maintenance loot spawner"
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aSU" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aSV" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aSW" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/status_display{
+ density = 0;
+ pixel_x = 32;
+ pixel_y = 0;
+ supply_display = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aSX" = (
+/turf/closed/wall,
+/area/security/checkpoint/supply{
+ name = "Security Post - Cargo"
+ })
+"aSY" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"aSZ" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Tool Storage Maintenance";
+ req_access_txt = "12"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"aTa" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 8
+ },
+/area/storage/primary)
+"aTb" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"aTc" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"aTd" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"aTe" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"aTf" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"aTg" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 4
+ },
+/area/storage/primary)
+"aTh" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/storage/primary)
+"aTi" = (
+/obj/machinery/door/airlock/highsecurity{
+ icon_state = "door_closed";
+ locked = 0;
+ name = "AI Upload";
+ req_access_txt = "16"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/ai_upload)
+"aTj" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"aTk" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/tinted/fulltile,
+/turf/open/floor/plating,
+/area/crew_quarters/courtroom)
+"aTl" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/courtroom)
+"aTm" = (
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = -26
+ },
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/courtroom)
+"aTn" = (
+/obj/machinery/newscaster{
+ pixel_x = 0;
+ pixel_y = -32
+ },
+/obj/machinery/light,
+/obj/machinery/camera{
+ c_tag = "Courtroom - Gallery";
+ dir = 1;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/courtroom)
+"aTo" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/courtroom)
+"aTp" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/courtroom)
+"aTq" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"aTr" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"aTs" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=14.3-Lockers-Dorms";
+ location = "14.2-Central-CrewQuarters"
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/crew_quarters/locker)
+"aTt" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/crew_quarters/locker)
+"aTu" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock{
+ name = "Locker Room";
+ req_access_txt = "0"
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/crew_quarters/locker)
+"aTv" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "Locker Room APC";
+ pixel_x = -1;
+ pixel_y = -26
+ },
+/obj/structure/cable/yellow,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/crew_quarters/locker)
+"aTw" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = -26
+ },
+/obj/machinery/camera{
+ c_tag = "Locker Room Port";
+ dir = 1;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/crew_quarters/locker)
+"aTx" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/light,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/crew_quarters/locker)
+"aTy" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/crew_quarters/locker)
+"aTz" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/light,
+/obj/machinery/newscaster{
+ pixel_x = 0;
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/crew_quarters/locker)
+"aTA" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/crew_quarters/locker)
+"aTB" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 27;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/crew_quarters/locker)
+"aTC" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/hallway/secondary/construction{
+ name = "\improper Garden"
+ })
+"aTD" = (
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/light_switch{
+ pixel_x = -24
+ },
+/obj/machinery/power/smes/engineering,
+/turf/open/floor/plasteel/vault,
+/area/engine/engineering)
+"aTE" = (
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/power/smes/engineering,
+/turf/open/floor/plasteel/vault,
+/area/engine/engineering)
+"aTF" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aTG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aTH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aTI" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aTJ" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/structure/cable/white{
+ tag = "icon-1-4";
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aTK" = (
+/obj/structure/cable/white{
+ tag = "icon-4-8";
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aTL" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/white{
+ tag = "icon-4-8";
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"aTM" = (
+/obj/structure/cable/white{
+ tag = "icon-4-8";
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"aTN" = (
+/obj/structure/cable/white{
+ tag = "icon-4-8";
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/engine,
+/area/engine/engineering)
+"aTO" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aTP" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"aTQ" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/lattice,
+/turf/open/space,
+/area/space)
+"aTR" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/window{
+ dir = 2;
+ name = "MiniSat Walkway Access";
+ req_access_txt = "0"
+ },
+/turf/open/floor/plasteel/black,
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"aTS" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "MiniSat Exterior - Fore Port";
+ dir = 8;
+ network = list("MiniSat")
+ },
+/turf/open/floor/plasteel/black,
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"aTT" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/lattice,
+/turf/open/space,
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"aTU" = (
+/obj/structure/lattice,
+/turf/open/space,
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"aTV" = (
+/turf/closed/wall/r_wall,
+/area/ai_monitored/turret_protected/ai)
+"aTW" = (
+/obj/machinery/power/smes{
+ charge = 5e+006
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/ai)
+"aTX" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall/r_wall,
+/area/ai_monitored/turret_protected/ai)
+"aTY" = (
+/obj/structure/lattice,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/space,
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"aTZ" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/camera{
+ c_tag = "MiniSat Exterior - Fore Starboard";
+ dir = 4;
+ network = list("MiniSat")
+ },
+/turf/open/floor/plasteel/black,
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"aUa" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/obj/machinery/door/window{
+ base_state = "right";
+ dir = 2;
+ icon_state = "right";
+ name = "MiniSat Walkway Access";
+ req_access_txt = "0"
+ },
+/turf/open/floor/plasteel/black,
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"aUb" = (
+/obj/structure/sign/pods,
+/turf/closed/wall,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"aUc" = (
+/obj/machinery/door/airlock/external{
+ name = "Escape Pod One"
+ },
+/turf/open/floor/plating,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"aUd" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"aUe" = (
+/turf/closed/wall,
+/area/quartermaster/storage)
+"aUf" = (
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/obj/machinery/camera{
+ c_tag = "Cargo Bay - Port";
+ dir = 4;
+ network = list("SS13")
+ },
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "QMLoad";
+ movedir = 2
+ },
+/turf/open/floor/plating,
+/area/quartermaster/storage)
+"aUg" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aUh" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aUi" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aUj" = (
+/obj/structure/closet/secure_closet/security/cargo,
+/obj/machinery/light_switch{
+ pixel_x = -25;
+ pixel_y = 0
+ },
+/obj/machinery/airalarm{
+ pixel_y = 23
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 9
+ },
+/area/security/checkpoint/supply{
+ name = "Security Post - Cargo"
+ })
+"aUk" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "Security Post - Cargo APC";
+ pixel_x = 1;
+ pixel_y = 24
+ },
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 1
+ },
+/area/security/checkpoint/supply{
+ name = "Security Post - Cargo"
+ })
+"aUl" = (
+/obj/item/weapon/screwdriver{
+ pixel_y = 10
+ },
+/obj/item/device/radio/off,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/requests_console{
+ department = "Security";
+ departmentType = 5;
+ pixel_y = 30
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 1
+ },
+/area/security/checkpoint/supply{
+ name = "Security Post - Cargo"
+ })
+"aUm" = (
+/obj/structure/filingcabinet,
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_x = 30;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 5
+ },
+/area/security/checkpoint/supply{
+ name = "Security Post - Cargo"
+ })
+"aUn" = (
+/obj/structure/closet/wardrobe/pjs,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/sign/poster{
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel/vault,
+/area/crew_quarters/sleep)
+"aUo" = (
+/obj/structure/table,
+/obj/item/weapon/storage/belt/utility,
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/item/weapon/storage/box/lights/mixed,
+/turf/open/floor/plasteel/brown{
+ dir = 2
+ },
+/area/storage/primary)
+"aUp" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/plasteel/brown{
+ dir = 2
+ },
+/area/storage/primary)
+"aUq" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 2
+ },
+/area/storage/primary)
+"aUr" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/brown{
+ dir = 2
+ },
+/area/storage/primary)
+"aUs" = (
+/obj/structure/table,
+/obj/item/weapon/crowbar,
+/obj/item/device/assembly/prox_sensor{
+ pixel_x = -8;
+ pixel_y = 4
+ },
+/obj/item/clothing/gloves/color/fyellow,
+/obj/machinery/light/small,
+/turf/open/floor/plasteel/brown{
+ dir = 2
+ },
+/area/storage/primary)
+"aUt" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 2
+ },
+/area/storage/primary)
+"aUu" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/light_switch{
+ pixel_x = 28;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 6
+ },
+/area/storage/primary)
+"aUv" = (
+/turf/closed/wall/r_wall,
+/area/hallway/primary/central)
+"aUw" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/open/floor/plating,
+/area/hallway/primary/central)
+"aUx" = (
+/turf/closed/wall/r_wall,
+/area/ai_monitored/turret_protected/ai_upload_foyer)
+"aUy" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/machinery/turretid{
+ control_area = "AI Upload Chamber";
+ icon_state = "control_stun";
+ name = "AI Upload turret control";
+ pixel_x = 0;
+ pixel_y = 28
+ },
+/obj/item/device/radio/intercom{
+ broadcasting = 1;
+ frequency = 1447;
+ name = "Private AI Channel";
+ pixel_x = -24;
+ pixel_y = 24
+ },
+/obj/effect/landmark/start{
+ name = "Cyborg"
+ },
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "AI Upload Access APC";
+ pixel_x = 0;
+ pixel_y = -27
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for watching the AI Upload.";
+ dir = 4;
+ name = "AI Upload Monitor";
+ network = list("AIUpload");
+ pixel_x = -29;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 6
+ },
+/area/ai_monitored/turret_protected/ai_upload_foyer)
+"aUz" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/vault,
+/area/ai_monitored/turret_protected/ai_upload_foyer)
+"aUA" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 2;
+ on = 1
+ },
+/obj/effect/landmark/start{
+ name = "Cyborg"
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for watching areas on the MiniSat.";
+ dir = 8;
+ name = "MiniSat Monitor";
+ network = list("MiniSat","tcomm");
+ pixel_x = 29;
+ pixel_y = 0
+ },
+/obj/machinery/camera/motion{
+ c_tag = "AI Upload Foyer";
+ network = list("SS13","RD","AIUpload")
+ },
+/obj/machinery/airalarm{
+ pixel_y = 26
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 10
+ },
+/area/ai_monitored/turret_protected/ai_upload_foyer)
+"aUB" = (
+/obj/structure/sign/directions/security{
+ desc = "A direction sign, pointing out which way the security department is.";
+ dir = 1;
+ icon_state = "direction_sec";
+ pixel_x = 0;
+ pixel_y = 8
+ },
+/obj/structure/sign/directions/engineering{
+ desc = "A direction sign, pointing out which way the engineering department is.";
+ dir = 4;
+ icon_state = "direction_eng";
+ pixel_y = 0
+ },
+/obj/structure/sign/directions/engineering{
+ desc = "A direction sign, pointing out which way the bridge is.";
+ dir = 2;
+ icon_state = "direction_bridge";
+ name = "bridge";
+ pixel_y = -8
+ },
+/turf/closed/wall/r_wall,
+/area/hallway/primary/fore)
+"aUC" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Fore Primary Hallway"
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 8
+ },
+/area/hallway/primary/fore)
+"aUD" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Fore Primary Hallway"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"aUE" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Fore Primary Hallway"
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 2
+ },
+/area/hallway/primary/fore)
+"aUF" = (
+/obj/structure/sign/directions/engineering{
+ desc = "A direction sign, pointing out which way the escape arm is.";
+ icon_state = "direction_evac";
+ name = "escape arm"
+ },
+/obj/structure/sign/directions/engineering{
+ desc = "A direction sign, pointing out which way the medical department is.";
+ icon_state = "direction_med";
+ name = "medical department";
+ pixel_y = 8
+ },
+/obj/structure/sign/directions/engineering{
+ desc = "A direction sign, pointing out which way the research department is.";
+ icon_state = "direction_sci";
+ name = "research department";
+ pixel_y = -8
+ },
+/turf/closed/wall,
+/area/crew_quarters/courtroom)
+"aUG" = (
+/obj/machinery/power/apc{
+ cell_type = 2500;
+ dir = 2;
+ name = "Courtroom APC";
+ pixel_x = 1;
+ pixel_y = -24
+ },
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/structure/table,
+/obj/item/weapon/storage/fancy/donut_box,
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/courtroom)
+"aUH" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/courtroom)
+"aUI" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/courtroom)
+"aUJ" = (
+/obj/structure/table,
+/obj/item/weapon/book/manual/wiki/security_space_law{
+ pixel_x = -3;
+ pixel_y = 5
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/item/weapon/book/manual/wiki/security_space_law{
+ pixel_x = -3;
+ pixel_y = 5
+ },
+/obj/item/weapon/book/manual/wiki/security_space_law{
+ pixel_x = -3;
+ pixel_y = 5
+ },
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/courtroom)
+"aUK" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"aUL" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/crew_quarters/locker)
+"aUM" = (
+/turf/closed/wall,
+/area/crew_quarters/locker)
+"aUN" = (
+/obj/structure/closet/wardrobe/black,
+/turf/open/floor/plasteel/vault,
+/area/crew_quarters/locker)
+"aUO" = (
+/obj/structure/closet/wardrobe/grey,
+/turf/open/floor/plasteel/vault,
+/area/crew_quarters/locker)
+"aUP" = (
+/obj/structure/closet/wardrobe/white,
+/turf/open/floor/plasteel/vault,
+/area/crew_quarters/locker)
+"aUQ" = (
+/turf/open/floor/plasteel/vault,
+/area/crew_quarters/locker)
+"aUR" = (
+/obj/structure/closet/wardrobe/green,
+/turf/open/floor/plasteel/vault,
+/area/crew_quarters/locker)
+"aUS" = (
+/obj/machinery/vending/clothing,
+/turf/open/floor/plasteel/vault,
+/area/crew_quarters/locker)
+"aUT" = (
+/obj/structure/closet/wardrobe/mixed,
+/turf/open/floor/plasteel/vault,
+/area/crew_quarters/locker)
+"aUU" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"aUV" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"aUW" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/starboard)
+"aUX" = (
+/obj/structure/closet/secure_closet/personal,
+/obj/item/clothing/under/assistantformal,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 2;
+ initialize_directions = 11
+ },
+/obj/item/clothing/suit/hooded/wintercoat,
+/obj/item/clothing/shoes/winterboots,
+/turf/open/floor/plasteel/vault,
+/area/crew_quarters/sleep)
+"aUY" = (
+/obj/structure/closet/firecloset,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/engine/engineering)
+"aUZ" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ dir = 1
+ },
+/area/engine/engineering)
+"aVa" = (
+/obj/machinery/requests_console{
+ announcementConsole = 0;
+ department = "Engineering";
+ departmentType = 4;
+ name = "Engineering RC";
+ pixel_y = 0
+ },
+/turf/closed/wall,
+/area/engine/engineering)
+"aVb" = (
+/obj/structure/table,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/weapon/pen,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/engine/engineering)
+"aVc" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ dir = 1
+ },
+/area/engine/engineering)
+"aVd" = (
+/obj/structure/table,
+/obj/item/weapon/folder/yellow,
+/obj/item/weapon/folder/yellow,
+/obj/item/weapon/storage/firstaid/fire,
+/obj/effect/turf_decal/delivery,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/engine/engineering)
+"aVe" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/engine/engineering)
+"aVf" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/engineering{
+ name = "Supermatter Engine";
+ req_access_txt = "10"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"aVg" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'RADIOACTIVE AREA'";
+ icon_state = "radiation";
+ name = "RADIOACTIVE AREA";
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aVh" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"aVi" = (
+/obj/item/weapon/wrench,
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"aVj" = (
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"aVk" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/space,
+/area/space)
+"aVl" = (
+/obj/machinery/porta_turret/ai{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/ai)
+"aVm" = (
+/obj/machinery/status_display{
+ density = 0;
+ layer = 4;
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/ai)
+"aVn" = (
+/obj/structure/showcase{
+ density = 0;
+ desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze.";
+ dir = 2;
+ icon = 'icons/mob/robots.dmi';
+ icon_state = "robot_old";
+ name = "Cyborg Statue";
+ pixel_x = 0;
+ pixel_y = 20
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/ai)
+"aVo" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/sign/poster{
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel/brown/corner{
+ dir = 4
+ },
+/area/construction/Storage{
+ name = "Storage Wing"
+ })
+"aVp" = (
+/obj/machinery/camera{
+ c_tag = "AI Chamber - Fore";
+ dir = 2;
+ network = list("RD")
+ },
+/obj/structure/showcase{
+ density = 0;
+ desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze.";
+ dir = 2;
+ icon = 'icons/mob/robots.dmi';
+ icon_state = "robot_old";
+ name = "Cyborg Statue";
+ pixel_x = 0;
+ pixel_y = 20
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/ai)
+"aVq" = (
+/obj/machinery/status_display{
+ density = 0;
+ layer = 4;
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 2;
+ on = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/ai)
+"aVr" = (
+/obj/machinery/porta_turret/ai{
+ dir = 8
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/ai)
+"aVs" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/hallway/secondary/entry)
+"aVt" = (
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-13";
+ layer = 4.1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"aVu" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"aVv" = (
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = 21
+ },
+/obj/structure/chair,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"aVw" = (
+/obj/structure/chair,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"aVx" = (
+/obj/structure/chair,
+/obj/machinery/camera{
+ c_tag = "Arrivals - Fore Arm - Far";
+ dir = 2;
+ network = list("SS13")
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"aVy" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/obj/machinery/status_display{
+ density = 0;
+ layer = 4;
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"aVz" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"aVA" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4";
+ d1 = 1;
+ d2 = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/yellow/side{
+ dir = 1
+ },
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"aVB" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 2
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8";
+ d1 = 4;
+ d2 = 8
+ },
+/turf/open/floor/plasteel/yellow/corner{
+ dir = 1
+ },
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"aVC" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/sign/map/left{
+ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";
+ icon_state = "map-left-MS";
+ pixel_y = 32
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"aVD" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/sign/map/right{
+ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";
+ icon_state = "map-right-MS";
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/white/corner{
+ dir = 4
+ },
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"aVE" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/arrival{
+ dir = 1
+ },
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"aVF" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/structure/sign/poster{
+ pixel_x = -32;
+ pixel_y = 0
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"aVG" = (
+/obj/machinery/status_display{
+ density = 0;
+ pixel_x = 0;
+ pixel_y = 0;
+ supply_display = 1
+ },
+/turf/closed/wall,
+/area/quartermaster/storage)
+"aVH" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = 0;
+ pixel_y = 0
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/quartermaster/storage)
+"aVI" = (
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aVJ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/obj/effect/landmark/start{
+ name = "Cargo Technician"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aVK" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aVL" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aVM" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_security{
+ name = "Security Post - Cargo";
+ req_access_txt = "63"
+ },
+/turf/open/floor/plasteel,
+/area/security/checkpoint/supply{
+ name = "Security Post - Cargo"
+ })
+"aVN" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/security/checkpoint/supply{
+ name = "Security Post - Cargo"
+ })
+"aVO" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel,
+/area/security/checkpoint/supply{
+ name = "Security Post - Cargo"
+ })
+"aVP" = (
+/obj/structure/chair/office/dark,
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 2;
+ on = 1
+ },
+/obj/effect/landmark/start/depsec/supply,
+/turf/open/floor/plasteel,
+/area/security/checkpoint/supply{
+ name = "Security Post - Cargo"
+ })
+"aVQ" = (
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 27
+ },
+/obj/machinery/computer/security/mining{
+ network = list("MINE","AuxBase")
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 4
+ },
+/area/security/checkpoint/supply{
+ name = "Security Post - Cargo"
+ })
+"aVR" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/storage/primary)
+"aVS" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Primary Tool Storage"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 1
+ },
+/area/storage/primary)
+"aVT" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Primary Tool Storage"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/brown{
+ dir = 1
+ },
+/area/storage/primary)
+"aVU" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/plasteel/vault,
+/area/hallway/primary/central)
+"aVV" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/closet/emcloset,
+/turf/open/floor/plasteel/vault,
+/area/hallway/primary/central)
+"aVW" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/plasteel/vault,
+/area/hallway/primary/central)
+"aVX" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall/r_wall,
+/area/ai_monitored/turret_protected/ai_upload_foyer)
+"aVY" = (
+/obj/machinery/door/airlock/highsecurity{
+ name = "Secure Network Access";
+ req_access_txt = "19"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/vault,
+/area/ai_monitored/turret_protected/ai_upload_foyer)
+"aVZ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall/r_wall,
+/area/ai_monitored/turret_protected/ai_upload_foyer)
+"aWa" = (
+/obj/machinery/airalarm{
+ pixel_y = 23
+ },
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "applebush";
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 9
+ },
+/area/hallway/primary/central)
+"aWb" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"aWc" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/status_display{
+ density = 0;
+ layer = 4;
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"aWd" = (
+/obj/machinery/camera{
+ c_tag = "Central Primary Hallway - Fore";
+ dir = 2;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"aWe" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/red/corner{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"aWf" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aWg" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plasteel/red/corner{
+ dir = 4
+ },
+/area/hallway/primary/central)
+"aWh" = (
+/turf/open/floor/plasteel/red/corner{
+ dir = 4
+ },
+/area/hallway/primary/central)
+"aWi" = (
+/obj/structure/sign/map/left{
+ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";
+ icon_state = "map-left-MS";
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"aWj" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/sign/map/right{
+ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";
+ icon_state = "map-right-MS";
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"aWk" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 27;
+ pixel_y = 0
+ },
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-16";
+ layer = 4.1
+ },
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = 21
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 5
+ },
+/area/hallway/primary/central)
+"aWl" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/centcom{
+ name = "Courtroom";
+ opacity = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/courtroom)
+"aWm" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Crew Quarters Access"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"aWn" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Crew Quarters Access"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"aWo" = (
+/obj/structure/sign/pods,
+/turf/closed/wall,
+/area/crew_quarters/locker)
+"aWp" = (
+/obj/machinery/vending/snack/random,
+/turf/open/floor/plasteel/vault,
+/area/hallway/primary/central)
+"aWq" = (
+/obj/machinery/newscaster{
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk,
+/turf/open/floor/plasteel/vault,
+/area/hallway/primary/central)
+"aWr" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel/vault,
+/area/hallway/primary/central)
+"aWs" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"aWt" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"aWu" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"aWv" = (
+/turf/closed/wall,
+/area/storage/tech)
+"aWw" = (
+/turf/closed/wall/r_wall,
+/area/engine/chiefs_office)
+"aWx" = (
+/obj/machinery/keycard_auth{
+ pixel_x = -25;
+ pixel_y = 25
+ },
+/obj/machinery/status_display{
+ density = 0;
+ layer = 4;
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27;
+ pixel_y = 0
+ },
+/obj/machinery/modular_computer/console/preset/engineering,
+/turf/open/floor/plasteel/vault,
+/area/engine/chiefs_office)
+"aWy" = (
+/obj/machinery/requests_console{
+ announcementConsole = 1;
+ department = "Chief Engineer's Desk";
+ departmentType = 3;
+ name = "Chief Engineer RC";
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/obj/machinery/computer/card/minor/ce,
+/turf/open/floor/plasteel/vault,
+/area/engine/chiefs_office)
+"aWz" = (
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/obj/machinery/computer/station_alert,
+/turf/open/floor/plasteel/vault,
+/area/engine/chiefs_office)
+"aWA" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/engine/chiefs_office)
+"aWB" = (
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/airlock/command{
+ name = "Chief Engineer's Office";
+ req_access_txt = "56";
+ req_one_access_txt = "0"
+ },
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ dir = 1
+ },
+/area/engine/chiefs_office)
+"aWC" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/engine/engineering)
+"aWD" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/engineering{
+ name = "Engine Room";
+ req_access_txt = "10"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ dir = 1
+ },
+/area/engine/engineering)
+"aWE" = (
+/obj/machinery/airalarm{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aWF" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/light/small,
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aWG" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 0;
+ pixel_y = -32
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aWH" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"aWI" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"aWJ" = (
+/obj/structure/cable{
+ icon_state = "0-2";
+ pixel_y = 1;
+ d2 = 2
+ },
+/obj/machinery/power/emitter{
+ anchored = 1;
+ dir = 1;
+ state = 2
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"aWK" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 10
+ },
+/turf/open/space,
+/area/space)
+"aWL" = (
+/obj/machinery/ai_status_display{
+ pixel_x = -32;
+ pixel_y = 0
+ },
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/turf/open/floor/bluegrid,
+/area/ai_monitored/turret_protected/ai)
+"aWM" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/bluegrid,
+/area/ai_monitored/turret_protected/ai)
+"aWN" = (
+/turf/open/floor/bluegrid,
+/area/ai_monitored/turret_protected/ai)
+"aWO" = (
+/obj/machinery/ai_slipper{
+ uses = 10
+ },
+/turf/open/floor/bluegrid,
+/area/ai_monitored/turret_protected/ai)
+"aWP" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/bluegrid,
+/area/ai_monitored/turret_protected/ai)
+"aWQ" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/bluegrid,
+/area/ai_monitored/turret_protected/ai)
+"aWR" = (
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 4
+ },
+/obj/machinery/ai_status_display{
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/turf/open/floor/bluegrid,
+/area/ai_monitored/turret_protected/ai)
+"aWS" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"aWT" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"aWU" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"aWV" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 0;
+ pixel_y = -32
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"aWW" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"aWX" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"aWY" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"aWZ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"aXa" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"aXb" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"aXc" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"aXd" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 27;
+ pixel_y = 0
+ },
+/obj/machinery/camera{
+ c_tag = "Arrivals - Fore Arm";
+ dir = 8;
+ network = list("SS13")
+ },
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/turf/open/floor/plasteel/arrival{
+ dir = 4
+ },
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"aXe" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "QMLoad"
+ },
+/turf/open/floor/plating,
+/area/quartermaster/storage)
+"aXf" = (
+/obj/machinery/holopad,
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aXg" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aXh" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/quartermaster/storage)
+"aXi" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aXj" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aXk" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aXl" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 27;
+ pixel_y = 0
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aXm" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/security/checkpoint/supply{
+ name = "Security Post - Cargo"
+ })
+"aXn" = (
+/obj/machinery/recharger{
+ pixel_y = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/table/reinforced,
+/turf/open/floor/plasteel/red/side{
+ dir = 10
+ },
+/area/security/checkpoint/supply{
+ name = "Security Post - Cargo"
+ })
+"aXo" = (
+/obj/item/weapon/paper_bin{
+ pixel_x = 1;
+ pixel_y = 9
+ },
+/obj/item/weapon/pen,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/camera{
+ c_tag = "Security Post - Cargo";
+ dir = 1;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/red/side,
+/area/security/checkpoint/supply{
+ name = "Security Post - Cargo"
+ })
+"aXp" = (
+/obj/item/weapon/book/manual/wiki/security_space_law,
+/obj/machinery/newscaster{
+ pixel_x = 0;
+ pixel_y = -32
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9;
+ pixel_y = 0
+ },
+/obj/structure/table/reinforced,
+/turf/open/floor/plasteel/red/side,
+/area/security/checkpoint/supply{
+ name = "Security Post - Cargo"
+ })
+"aXq" = (
+/obj/machinery/computer/secure_data,
+/turf/open/floor/plasteel/red/side{
+ dir = 6
+ },
+/area/security/checkpoint/supply{
+ name = "Security Post - Cargo"
+ })
+"aXr" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"aXs" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/item/trash/popcorn,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"aXt" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"aXu" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "0";
+ req_one_access_txt = "12;63;48;50"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"aXv" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"aXw" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"aXx" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"aXy" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"aXz" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 2
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"aXA" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"aXB" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"aXC" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"aXD" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"aXE" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/machinery/camera{
+ c_tag = "Central Primary Hallway - Fore - AI Upload";
+ dir = 2;
+ network = list("SS13")
+ },
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'HIGH-POWER TURRETS AHEAD'.";
+ name = "\improper HIGH-POWER TURRETS AHEAD";
+ pixel_y = 32
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aXF" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = 21
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aXG" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aXH" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 2
+ },
+/obj/machinery/ai_status_display{
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aXI" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/sign/securearea{
+ pixel_y = 32
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aXJ" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aXK" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel{
+ icon_state = "L1"
+ },
+/area/hallway/primary/central)
+"aXL" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel{
+ icon_state = "L3"
+ },
+/area/hallway/primary/central)
+"aXM" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel{
+ icon_state = "L5"
+ },
+/area/hallway/primary/central)
+"aXN" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "L7"
+ },
+/area/hallway/primary/central)
+"aXO" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 2
+ },
+/turf/open/floor/plasteel{
+ icon_state = "L9"
+ },
+/area/hallway/primary/central)
+"aXP" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel{
+ icon_state = "L11"
+ },
+/area/hallway/primary/central)
+"aXQ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel{
+ desc = "";
+ icon_state = "L13";
+ name = "floor"
+ },
+/area/hallway/primary/central)
+"aXR" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aXS" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/hallway/primary/central)
+"aXT" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/hallway/primary/central)
+"aXU" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 2
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/hallway/primary/central)
+"aXV" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/hallway/primary/central)
+"aXW" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/hallway/primary/central)
+"aXX" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 2
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/hallway/primary/central)
+"aXY" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/hallway/primary/central)
+"aXZ" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/hallway/primary/central)
+"aYa" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"aYb" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg1"
+ },
+/area/maintenance/starboard)
+"aYc" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating{
+ icon_plating = "warnplate"
+ },
+/area/maintenance/starboard)
+"aYd" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/obj/machinery/holopad,
+/turf/open/floor/plasteel/black,
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"aYe" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"aYf" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"aYg" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating{
+ icon_plating = "warnplate"
+ },
+/area/maintenance/starboard)
+"aYh" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"aYi" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/weapon/storage/toolbox/electrical{
+ pixel_x = 1;
+ pixel_y = -1
+ },
+/obj/item/clothing/gloves/color/yellow,
+/obj/item/device/t_scanner,
+/obj/item/device/multitool,
+/turf/open/floor/plasteel/black,
+/area/storage/tech)
+"aYj" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/weapon/circuitboard/computer/pandemic{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/weapon/circuitboard/computer/rdconsole,
+/obj/item/weapon/circuitboard/machine/rdserver{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/weapon/circuitboard/machine/destructive_analyzer,
+/obj/item/weapon/circuitboard/machine/protolathe,
+/obj/item/weapon/circuitboard/computer/aifixer,
+/obj/item/weapon/circuitboard/computer/teleporter,
+/obj/item/weapon/circuitboard/machine/circuit_imprinter,
+/obj/item/weapon/circuitboard/machine/mechfab,
+/turf/open/floor/plasteel/black,
+/area/storage/tech)
+"aYk" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/weapon/circuitboard/computer/mining,
+/obj/item/weapon/circuitboard/machine/autolathe{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/weapon/circuitboard/computer/arcade/battle,
+/obj/machinery/ai_status_display{
+ pixel_x = 0;
+ pixel_y = 31
+ },
+/turf/open/floor/plasteel/black,
+/area/storage/tech)
+"aYl" = (
+/obj/structure/rack,
+/obj/item/weapon/circuitboard/machine/telecomms/processor,
+/obj/item/weapon/circuitboard/machine/telecomms/receiver,
+/obj/item/weapon/circuitboard/machine/telecomms/server,
+/obj/item/weapon/circuitboard/machine/telecomms/bus,
+/obj/item/weapon/circuitboard/machine/telecomms/broadcaster,
+/obj/item/weapon/circuitboard/computer/message_monitor{
+ pixel_y = -5
+ },
+/turf/open/floor/plasteel/black,
+/area/storage/tech)
+"aYm" = (
+/obj/structure/table,
+/obj/item/device/flashlight{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/obj/item/device/flashlight{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/item/device/assembly/flash/handheld,
+/obj/item/device/assembly/flash/handheld,
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = 28
+ },
+/turf/open/floor/plasteel/black,
+/area/storage/tech)
+"aYn" = (
+/obj/structure/table,
+/obj/item/device/aicard,
+/obj/item/weapon/aiModule/reset,
+/turf/open/floor/plasteel/black,
+/area/storage/tech)
+"aYo" = (
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = -29
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/engine/chiefs_office)
+"aYp" = (
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/engine/chiefs_office)
+"aYq" = (
+/obj/item/weapon/storage/secure/safe{
+ pixel_x = 6;
+ pixel_y = 30
+ },
+/obj/machinery/camera{
+ c_tag = "Chief Engineer's Office";
+ dir = 2;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/engine/chiefs_office)
+"aYr" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "CE Office APC";
+ pixel_x = 28;
+ pixel_y = 0
+ },
+/obj/structure/cable/yellow,
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/obj/machinery/light_switch{
+ pixel_x = 26;
+ pixel_y = 26
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/engine/chiefs_office)
+"aYs" = (
+/obj/structure/sign/securearea{
+ pixel_y = 32
+ },
+/obj/structure/closet/radiation,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/turf_decal/delivery,
+/obj/item/clothing/glasses/meson/engine,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/engine/engineering)
+"aYt" = (
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 29
+ },
+/obj/effect/turf_decal/delivery,
+/obj/structure/closet/firecloset,
+/obj/item/clothing/glasses/meson/engine,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/engine/engineering)
+"aYu" = (
+/turf/closed/wall,
+/area/security/checkpoint/engineering)
+"aYv" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 9
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/space)
+"aYw" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 4
+ },
+/obj/structure/lattice,
+/turf/open/space,
+/area/space)
+"aYx" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 4
+ },
+/obj/structure/lattice,
+/turf/open/space,
+/area/space)
+"aYy" = (
+/obj/machinery/camera{
+ c_tag = "AI Chamber - Port";
+ dir = 4;
+ network = list("RD")
+ },
+/obj/structure/showcase{
+ density = 0;
+ desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze.";
+ dir = 4;
+ icon = 'icons/mob/robots.dmi';
+ icon_state = "robot_old";
+ name = "Cyborg Statue";
+ pixel_x = -9;
+ pixel_y = 2
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 1
+ },
+/area/ai_monitored/turret_protected/ai)
+"aYz" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "AI Core shutters";
+ name = "AI core shutters"
+ },
+/turf/open/floor/plating,
+/area/ai_monitored/turret_protected/ai)
+"aYA" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/bluegrid,
+/area/ai_monitored/turret_protected/ai)
+"aYB" = (
+/obj/structure/showcase{
+ density = 0;
+ desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze.";
+ dir = 8;
+ icon = 'icons/mob/robots.dmi';
+ icon_state = "robot_old";
+ name = "Cyborg Statue";
+ pixel_x = 9;
+ pixel_y = 2
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 4
+ },
+/area/ai_monitored/turret_protected/ai)
+"aYC" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";
+ name = "KEEP CLEAR: DOCKING AREA";
+ pixel_y = 0
+ },
+/turf/closed/wall,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"aYD" = (
+/obj/machinery/door/airlock/external{
+ name = "Arrival Airlock"
+ },
+/turf/open/floor/plating,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"aYE" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"aYF" = (
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-05";
+ layer = 4.1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"aYG" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 0;
+ pixel_y = -32
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"aYH" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"aYI" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/arrival{
+ dir = 4
+ },
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"aYJ" = (
+/obj/machinery/light_switch{
+ pixel_x = -38
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/open/floor/plasteel/loadingarea{
+ dir = 1
+ },
+/area/quartermaster/storage)
+"aYK" = (
+/turf/open/floor/plasteel/loadingarea{
+ dir = 1
+ },
+/area/quartermaster/storage)
+"aYL" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aYM" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aYN" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aYO" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aYP" = (
+/obj/machinery/camera{
+ c_tag = "Cargo Bay - Aft";
+ dir = 1;
+ network = list("SS13")
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aYQ" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aYR" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/light_switch{
+ pixel_x = 27
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aYS" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/security/checkpoint/supply{
+ name = "Security Post - Cargo"
+ })
+"aYT" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "0";
+ req_one_access_txt = "12;63;48;50"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"aYU" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"aYV" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 1;
+ icon_state = "pipe-j1"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aYW" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aYX" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aYY" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=3-Central-Port";
+ location = "2.2-Leaving-Storage"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aYZ" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aZa" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aZb" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aZc" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ on = 1;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aZd" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aZe" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/holopad,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aZf" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8";
+ d1 = 4;
+ d2 = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aZg" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "L2"
+ },
+/area/hallway/primary/central)
+"aZh" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "L4"
+ },
+/area/hallway/primary/central)
+"aZi" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=2.1-Storage";
+ location = "1.5-Fore-Central"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "L6"
+ },
+/area/hallway/primary/central)
+"aZj" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4";
+ d1 = 1;
+ d2 = 4
+ },
+/turf/open/floor/plasteel{
+ icon_state = "L8"
+ },
+/area/hallway/primary/central)
+"aZk" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "L10"
+ },
+/area/hallway/primary/central)
+"aZl" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "L12"
+ },
+/area/hallway/primary/central)
+"aZm" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel{
+ desc = "";
+ icon_state = "L14"
+ },
+/area/hallway/primary/central)
+"aZn" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aZo" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aZp" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=15-Court";
+ location = "14.9-CrewQuarters-Central"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aZq" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aZr" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ on = 1;
+ scrub_Toxins = 0
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aZs" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/hallway/primary/central)
+"aZt" = (
+/turf/closed/wall,
+/area/storage/tools)
+"aZu" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/storage/tools)
+"aZv" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/airlock/maintenance{
+ name = "Storage Room";
+ req_access_txt = "12"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"aZw" = (
+/turf/closed/wall/r_wall,
+/area/storage/tech)
+"aZx" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Tech Storage APC";
+ pixel_x = -27;
+ pixel_y = 0
+ },
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/effect/landmark{
+ name = "revenantspawn"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/storage/tech)
+"aZy" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/storage/tech)
+"aZz" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/storage/tech)
+"aZA" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/storage/tech)
+"aZB" = (
+/obj/structure/table,
+/obj/item/stack/cable_coil{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/stack/cable_coil,
+/obj/item/weapon/stock_parts/cell/high{
+ charge = 100;
+ maxcharge = 15000
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 27;
+ pixel_y = 0
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/storage/tech)
+"aZC" = (
+/obj/machinery/button/door{
+ desc = "A remote control-switch for the engineering security doors.";
+ id = "Engineering";
+ name = "Engineering Lockdown";
+ pixel_x = -24;
+ pixel_y = -5;
+ req_access_txt = "10"
+ },
+/obj/machinery/button/door{
+ id = "atmos";
+ name = "Atmospherics Lockdown";
+ pixel_x = -24;
+ pixel_y = 5;
+ req_access_txt = "24"
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/engine/chiefs_office)
+"aZD" = (
+/obj/structure/table/reinforced,
+/obj/item/device/flashlight/lamp,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/engine/chiefs_office)
+"aZE" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/folder/yellow,
+/obj/item/weapon/stamp/ce,
+/obj/item/weapon/reagent_containers/pill/patch/silver_sulf,
+/turf/open/floor/plasteel/neutral/side,
+/area/engine/chiefs_office)
+"aZF" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/clipboard,
+/obj/item/weapon/paper/monitorkey,
+/turf/open/floor/plasteel/neutral/side,
+/area/engine/chiefs_office)
+"aZG" = (
+/obj/structure/table/reinforced,
+/obj/machinery/cell_charger,
+/obj/item/weapon/stock_parts/cell/high{
+ charge = 100;
+ maxcharge = 15000
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/engine/chiefs_office)
+"aZH" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/engine/chiefs_office)
+"aZI" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/shower{
+ icon_state = "shower";
+ dir = 4
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27;
+ pixel_y = 0
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aZJ" = (
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9;
+ pixel_y = 0
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aZK" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/machinery/shower{
+ icon_state = "shower";
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"aZL" = (
+/obj/structure/filingcabinet,
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_x = 0;
+ pixel_y = 30
+ },
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 9
+ },
+/area/security/checkpoint/engineering)
+"aZM" = (
+/obj/structure/table,
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = 29
+ },
+/obj/machinery/recharger{
+ pixel_y = 4
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 1
+ },
+/area/security/checkpoint/engineering)
+"aZN" = (
+/obj/structure/table,
+/obj/item/weapon/paper_bin{
+ pixel_x = -1;
+ pixel_y = 5
+ },
+/obj/item/weapon/pen,
+/obj/machinery/newscaster/security_unit{
+ pixel_x = 30;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 5
+ },
+/area/security/checkpoint/engineering)
+"aZO" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Library"
+ },
+/turf/open/floor/wood,
+/area/library)
+"aZP" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 4
+ },
+/turf/open/space,
+/area/space)
+"aZQ" = (
+/obj/effect/landmark{
+ name = "tripai"
+ },
+/obj/item/device/radio/intercom{
+ anyai = 1;
+ freerange = 1;
+ listening = 0;
+ name = "Custom Channel";
+ pixel_x = -10;
+ pixel_y = 22
+ },
+/obj/item/device/radio/intercom{
+ broadcasting = 0;
+ freerange = 1;
+ listening = 1;
+ name = "Common Channel";
+ pixel_x = -27;
+ pixel_y = 0
+ },
+/obj/item/device/radio/intercom{
+ anyai = 1;
+ broadcasting = 0;
+ freerange = 1;
+ frequency = 1447;
+ name = "Private Channel";
+ pixel_x = -10;
+ pixel_y = -25
+ },
+/obj/machinery/door/window{
+ base_state = "rightsecure";
+ dir = 4;
+ obj_integrity = 300;
+ icon_state = "rightsecure";
+ layer = 4.1;
+ name = "Secondary AI Core Access";
+ pixel_x = 4;
+ req_access_txt = "16"
+ },
+/turf/open/floor/greengrid,
+/area/ai_monitored/turret_protected/ai)
+"aZR" = (
+/obj/machinery/holopad,
+/obj/machinery/flasher{
+ id = "AI";
+ pixel_x = -25;
+ pixel_y = -25
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 1
+ },
+/area/ai_monitored/turret_protected/ai)
+"aZS" = (
+/obj/machinery/ai_slipper{
+ uses = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/bluegrid,
+/area/ai_monitored/turret_protected/ai)
+"aZT" = (
+/obj/machinery/vending/assist,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/sign/poster{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 1
+ },
+/area/storage/primary)
+"aZU" = (
+/obj/structure/closet/secure_closet/personal,
+/obj/item/clothing/under/assistantformal,
+/obj/item/clothing/suit/hooded/wintercoat,
+/obj/item/clothing/shoes/winterboots,
+/turf/open/floor/plasteel/vault,
+/area/crew_quarters/locker)
+"aZV" = (
+/obj/machinery/door/window{
+ base_state = "rightsecure";
+ dir = 4;
+ obj_integrity = 300;
+ icon_state = "rightsecure";
+ name = "Primary AI Core Access";
+ req_access_txt = "16"
+ },
+/obj/machinery/camera{
+ c_tag = "AI Chamber - Core";
+ dir = 2;
+ network = list("RD")
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 10
+ },
+/area/ai_monitored/turret_protected/ai)
+"aZW" = (
+/obj/machinery/ai_slipper{
+ uses = 10
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/bluegrid,
+/area/ai_monitored/turret_protected/ai)
+"aZX" = (
+/obj/machinery/holopad,
+/obj/machinery/flasher{
+ id = "AI";
+ pixel_x = 25;
+ pixel_y = 25
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 4
+ },
+/area/ai_monitored/turret_protected/ai)
+"aZY" = (
+/obj/effect/landmark{
+ name = "tripai"
+ },
+/obj/item/device/radio/intercom{
+ anyai = 1;
+ freerange = 1;
+ listening = 0;
+ name = "Custom Channel";
+ pixel_x = 10;
+ pixel_y = 22
+ },
+/obj/item/device/radio/intercom{
+ broadcasting = 0;
+ freerange = 1;
+ listening = 1;
+ name = "Common Channel";
+ pixel_x = 27;
+ pixel_y = 0
+ },
+/obj/item/device/radio/intercom{
+ anyai = 1;
+ broadcasting = 0;
+ freerange = 1;
+ frequency = 1447;
+ name = "Private Channel";
+ pixel_x = 10;
+ pixel_y = -25
+ },
+/obj/machinery/door/window{
+ base_state = "leftsecure";
+ dir = 8;
+ obj_integrity = 300;
+ icon_state = "leftsecure";
+ layer = 4.1;
+ name = "Tertiary AI Core Access";
+ pixel_x = -3;
+ req_access_txt = "16"
+ },
+/turf/open/floor/greengrid,
+/area/ai_monitored/turret_protected/ai)
+"aZZ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"baa" = (
+/obj/structure/closet/emcloset,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bab" = (
+/obj/machinery/vending/cigarette,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bac" = (
+/obj/machinery/vending/coffee,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bad" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bae" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/arrival{
+ dir = 4
+ },
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"baf" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "0";
+ req_one_access_txt = "12;48;50;1"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bag" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bah" = (
+/obj/structure/closet/secure_closet/personal,
+/obj/item/clothing/under/assistantformal,
+/obj/structure/sign/map/right{
+ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";
+ icon_state = "map-right-MS";
+ pixel_y = 32
+ },
+/obj/item/clothing/suit/hooded/wintercoat,
+/obj/item/clothing/shoes/winterboots,
+/turf/open/floor/plasteel/vault,
+/area/crew_quarters/locker)
+"bai" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"baj" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bak" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Cargo Bay Maintenance";
+ req_access_txt = "0";
+ req_one_access_txt = "48;50"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/quartermaster/storage)
+"bal" = (
+/obj/item/device/radio/intercom{
+ broadcasting = 0;
+ listening = 1;
+ name = "Station Intercom (General)";
+ pixel_y = -28
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/quartermaster/storage)
+"bam" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/quartermaster/storage)
+"ban" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"bao" = (
+/obj/machinery/conveyor_switch/oneway{
+ id = "packageSort2";
+ pixel_x = -8;
+ pixel_y = -2
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"bap" = (
+/obj/structure/rack,
+/obj/item/stack/packageWrap{
+ pixel_x = 2;
+ pixel_y = -3
+ },
+/obj/item/stack/packageWrap{
+ pixel_x = 2;
+ pixel_y = -3
+ },
+/obj/item/stack/packageWrap{
+ pixel_x = 2;
+ pixel_y = -3
+ },
+/obj/item/stack/packageWrap{
+ pixel_x = 2;
+ pixel_y = -3
+ },
+/obj/item/stack/packageWrap{
+ pixel_x = 2;
+ pixel_y = -3
+ },
+/obj/item/stack/wrapping_paper,
+/obj/item/stack/wrapping_paper,
+/obj/item/device/destTagger{
+ pixel_x = 4;
+ pixel_y = 3
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"baq" = (
+/obj/structure/rack,
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "Cargo Bay APC";
+ pixel_x = 1;
+ pixel_y = -24
+ },
+/obj/structure/cable/yellow,
+/obj/machinery/light,
+/obj/item/weapon/hand_labeler,
+/obj/item/weapon/hand_labeler,
+/obj/item/weapon/screwdriver{
+ pixel_y = 10
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"bar" = (
+/obj/structure/closet/wardrobe/cargotech,
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"bas" = (
+/obj/structure/closet/wardrobe/cargotech,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"bat" = (
+/turf/closed/wall,
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"bau" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_mining{
+ glass = 0;
+ name = "Cargo Bay";
+ opacity = 1;
+ req_access_txt = "0";
+ req_one_access_txt = "48;50"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"bav" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_mining{
+ glass = 0;
+ name = "Cargo Bay";
+ opacity = 1;
+ req_access_txt = "0";
+ req_one_access_txt = "48;50"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"baw" = (
+/obj/item/weapon/stamp{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/weapon/stamp/denied{
+ pixel_x = 4;
+ pixel_y = -2
+ },
+/obj/structure/table/reinforced,
+/obj/structure/noticeboard{
+ desc = "A board for pinning important notices upon. Probably helpful for keeping track of requests.";
+ name = "requests board";
+ pixel_x = 32;
+ pixel_y = 32
+ },
+/obj/machinery/requests_console{
+ department = "Cargo Bay";
+ departmentType = 2;
+ pixel_x = 0;
+ pixel_y = 30
+ },
+/obj/item/weapon/pen/red,
+/turf/open/floor/plasteel/brown{
+ dir = 9
+ },
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"bax" = (
+/obj/structure/table/reinforced,
+/obj/machinery/computer/stockexchange,
+/turf/open/floor/plasteel/brown{
+ dir = 5
+ },
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"bay" = (
+/obj/structure/sign/directions/engineering{
+ desc = "A direction sign, pointing out which way the Cargo department is.";
+ icon_state = "direction_supply";
+ name = "cargo department";
+ pixel_y = -5
+ },
+/turf/closed/wall,
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"baz" = (
+/obj/machinery/computer/cargo/request,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"baA" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/machinery/status_display{
+ density = 0;
+ pixel_x = 0;
+ pixel_y = 32;
+ supply_display = 1
+ },
+/obj/structure/table,
+/obj/item/weapon/folder/yellow,
+/turf/open/floor/plasteel/brown{
+ dir = 1
+ },
+/area/hallway/primary/port)
+"baB" = (
+/obj/machinery/firealarm{
+ dir = 2;
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 1
+ },
+/area/hallway/primary/port)
+"baC" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/brown{
+ dir = 1
+ },
+/area/hallway/primary/port)
+"baD" = (
+/obj/machinery/airalarm{
+ pixel_y = 23
+ },
+/obj/structure/table,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 5
+ },
+/area/hallway/primary/port)
+"baE" = (
+/turf/closed/wall,
+/area/hallway/primary/port)
+"baF" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27;
+ pixel_y = 0
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/camera{
+ c_tag = "Central Primary Hallway - Fore - Port Corner";
+ dir = 4;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"baG" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"baH" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/hallway/primary/central)
+"baI" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/hallway/primary/central)
+"baJ" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 2;
+ initialize_directions = 11
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/mob/living/simple_animal/bot/cleanbot{
+ auto_patrol = 1;
+ icon_state = "cleanbot1";
+ mode = 0;
+ name = "Mopficcer Sweepsky"
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/hallway/primary/central)
+"baK" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/hallway/primary/central)
+"baL" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1;
+ initialize_directions = 11
+ },
+/obj/machinery/light,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 0;
+ pixel_y = -30
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/hallway/primary/central)
+"baM" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/hallway/primary/central)
+"baN" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 2;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/hallway/primary/central)
+"baO" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/hallway/primary/central)
+"baP" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 2;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/hallway/primary/central)
+"baQ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/hallway/primary/central)
+"baR" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 2;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/hallway/primary/central)
+"baS" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/holopad,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"baT" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/hallway/primary/central)
+"baU" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/hallway/primary/central)
+"baV" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Central Primary Hallway - Fore - Courtroom";
+ dir = 1;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/hallway/primary/central)
+"baW" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1;
+ initialize_directions = 11
+ },
+/obj/machinery/light,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/hallway/primary/central)
+"baX" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/hallway/primary/central)
+"baY" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 2;
+ initialize_directions = 11
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 0;
+ pixel_y = -30
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/hallway/primary/central)
+"baZ" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1;
+ initialize_directions = 11
+ },
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = -27;
+ pixel_y = -29
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/hallway/primary/central)
+"bba" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bbb" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/machinery/camera{
+ c_tag = "Central Primary Hallway - Fore - Starboard Corner";
+ dir = 8;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/hallway/primary/central)
+"bbc" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plasteel/yellow/side{
+ dir = 9
+ },
+/area/storage/tools)
+"bbd" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "Auxiliary Tool Storage APC";
+ pixel_y = 24
+ },
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 1
+ },
+/area/storage/tools)
+"bbe" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 1
+ },
+/area/storage/tools)
+"bbf" = (
+/obj/structure/closet/toolcloset,
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = 28
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 1
+ },
+/area/storage/tools)
+"bbg" = (
+/obj/structure/closet/toolcloset,
+/turf/open/floor/plasteel/yellow/side{
+ dir = 5
+ },
+/area/storage/tools)
+"bbh" = (
+/obj/effect/decal/cleanable/cobweb,
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bbi" = (
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/obj/item/weapon/cigbutt,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bbj" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating{
+ icon_state = "platingdmg1"
+ },
+/area/maintenance/starboard)
+"bbk" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/weapon/circuitboard/computer/borgupload{
+ pixel_x = -1;
+ pixel_y = 1
+ },
+/obj/item/weapon/circuitboard/computer/aiupload{
+ pixel_x = 2;
+ pixel_y = -2
+ },
+/turf/open/floor/plasteel/black,
+/area/storage/tech)
+"bbl" = (
+/obj/machinery/camera{
+ c_tag = "Secure Tech Storage";
+ dir = 8
+ },
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 29
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/storage/tech)
+"bbm" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/storage/tech)
+"bbn" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/weapon/circuitboard/computer/cloning{
+ pixel_x = 0
+ },
+/obj/item/weapon/circuitboard/computer/med_data{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/weapon/circuitboard/machine/clonescanner,
+/obj/item/weapon/circuitboard/machine/clonepod,
+/obj/item/weapon/circuitboard/computer/scan_consolenew,
+/turf/open/floor/plasteel/black,
+/area/storage/tech)
+"bbo" = (
+/turf/closed/wall,
+/area/maintenance/auxsolarport)
+"bbp" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/weapon/circuitboard/computer/powermonitor{
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/obj/item/weapon/circuitboard/computer/stationalert{
+ pixel_x = 1;
+ pixel_y = -1
+ },
+/obj/item/weapon/circuitboard/computer/atmos_alert{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/black,
+/area/storage/tech)
+"bbq" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/storage/tech)
+"bbr" = (
+/obj/structure/table,
+/obj/item/weapon/electronics/apc,
+/obj/item/weapon/electronics/airlock,
+/turf/open/floor/plasteel/black,
+/area/storage/tech)
+"bbs" = (
+/obj/machinery/button/door{
+ id = "transittube";
+ name = "Transit Tube Lockdown";
+ pixel_x = -24;
+ pixel_y = -5;
+ req_access_txt = "24"
+ },
+/obj/machinery/button/door{
+ desc = "A remote control-switch for secure storage.";
+ id = "Secure Storage";
+ name = "Engineering Secure Storage";
+ pixel_x = -24;
+ pixel_y = 5;
+ req_access_txt = "11"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/engine/chiefs_office)
+"bbt" = (
+/obj/item/weapon/cartridge/engineering{
+ pixel_x = 4;
+ pixel_y = 5
+ },
+/obj/item/weapon/cartridge/engineering{
+ pixel_x = -3;
+ pixel_y = 2
+ },
+/obj/item/weapon/cartridge/engineering{
+ pixel_x = 3
+ },
+/obj/structure/table/reinforced,
+/obj/item/weapon/cartridge/atmos,
+/turf/open/floor/plasteel/neutral/side{
+ dir = 4
+ },
+/area/engine/chiefs_office)
+"bbu" = (
+/obj/effect/landmark/start{
+ name = "Chief Engineer"
+ },
+/obj/structure/chair/office/light{
+ dir = 1;
+ pixel_y = 3
+ },
+/turf/open/floor/plasteel/neutral{
+ dir = 8
+ },
+/area/engine/chiefs_office)
+"bbv" = (
+/obj/machinery/holopad,
+/turf/open/floor/plasteel/neutral{
+ dir = 8
+ },
+/area/engine/chiefs_office)
+"bbw" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/weapon/pen,
+/turf/open/floor/plasteel/neutral/side{
+ dir = 8
+ },
+/area/engine/chiefs_office)
+"bbx" = (
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for monitoring the singularity engine safely.";
+ dir = 8;
+ name = "Singularity Monitor";
+ network = list("Singulo");
+ pixel_x = 29;
+ pixel_y = 0
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/engine/chiefs_office)
+"bby" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"bbz" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1;
+ initialize_directions = 11
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"bbA" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Engineering - Entrance";
+ dir = 8;
+ network = list("SS13")
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"bbB" = (
+/obj/item/weapon/screwdriver{
+ pixel_y = 10
+ },
+/obj/item/device/radio/off,
+/obj/machinery/computer/security/telescreen{
+ dir = 4;
+ name = "MiniSat Monitor";
+ network = list("MiniSat","tcomm");
+ pixel_x = -29;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/security/checkpoint/engineering)
+"bbC" = (
+/obj/structure/chair/office/dark{
+ dir = 4
+ },
+/obj/effect/landmark/start/depsec/engineering,
+/turf/open/floor/plasteel,
+/area/security/checkpoint/engineering)
+"bbD" = (
+/obj/structure/table,
+/obj/item/weapon/book/manual/wiki/security_space_law,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/requests_console{
+ department = "Security";
+ departmentType = 5;
+ pixel_x = 30;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 4
+ },
+/area/security/checkpoint/engineering)
+"bbE" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 32;
+ pixel_y = -32
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bbF" = (
+/obj/structure/showcase{
+ density = 0;
+ desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze.";
+ dir = 4;
+ icon = 'icons/mob/robots.dmi';
+ icon_state = "robot_old";
+ name = "Cyborg Statue";
+ pixel_x = -9;
+ pixel_y = 2
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 1
+ },
+/area/ai_monitored/turret_protected/ai)
+"bbG" = (
+/obj/structure/closet/secure_closet/personal,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/item/clothing/under/assistantformal,
+/obj/structure/sign/map/left{
+ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";
+ icon_state = "map-left-MS";
+ pixel_y = 32
+ },
+/obj/item/clothing/suit/hooded/wintercoat,
+/obj/item/clothing/shoes/winterboots,
+/turf/open/floor/plasteel/vault,
+/area/crew_quarters/locker)
+"bbH" = (
+/obj/machinery/camera{
+ c_tag = "AI Chamber - Starboard";
+ dir = 8;
+ network = list("RD")
+ },
+/obj/structure/showcase{
+ density = 0;
+ desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze.";
+ dir = 8;
+ icon = 'icons/mob/robots.dmi';
+ icon_state = "robot_old";
+ name = "Cyborg Statue";
+ pixel_x = 9;
+ pixel_y = 2
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 4
+ },
+/area/ai_monitored/turret_protected/ai)
+"bbI" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bbJ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/arrival{
+ dir = 4
+ },
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bbK" = (
+/turf/closed/wall,
+/area/security/checkpoint2{
+ name = "Customs"
+ })
+"bbL" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bbM" = (
+/obj/item/stack/sheet/cardboard,
+/obj/item/weapon/storage/box/lights/mixed,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bbN" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"bbO" = (
+/obj/structure/plasticflaps{
+ opacity = 1
+ },
+/obj/machinery/conveyor{
+ backwards = 1;
+ dir = 2;
+ forwards = 2;
+ id = "packageSort2"
+ },
+/turf/open/floor/plasteel/loadingarea,
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"bbP" = (
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall,
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"bbQ" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Cargo Office APC";
+ pixel_x = -24;
+ pixel_y = 0
+ },
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 9
+ },
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"bbR" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 1
+ },
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"bbS" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/machinery/status_display{
+ density = 0;
+ pixel_x = 0;
+ pixel_y = 32;
+ supply_display = 1
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 1
+ },
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"bbT" = (
+/turf/open/floor/plasteel/brown/corner{
+ dir = 1
+ },
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"bbU" = (
+/obj/effect/landmark/start{
+ name = "Cargo Technician"
+ },
+/obj/structure/chair/office/dark{
+ dir = 4
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 4
+ },
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"bbV" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/window/westleft{
+ dir = 8;
+ name = "Cargo Desk";
+ req_access_txt = "50"
+ },
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/weapon/pen,
+/turf/open/floor/plasteel,
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"bbW" = (
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"bbX" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"bbY" = (
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"bbZ" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"bca" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Cargo - Foyer";
+ dir = 8;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 4
+ },
+/area/hallway/primary/port)
+"bcb" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = -29
+ },
+/obj/machinery/status_display{
+ density = 0;
+ layer = 4;
+ pixel_x = -32;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"bcc" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/hallway/primary/central)
+"bcd" = (
+/turf/closed/wall,
+/area/janitor)
+"bce" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock{
+ name = "Custodial Closet";
+ req_access_txt = "26"
+ },
+/turf/open/floor/plasteel,
+/area/janitor)
+"bcf" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/janitor)
+"bcg" = (
+/turf/closed/wall,
+/area/maintenance/maintcentral{
+ name = "Central Maintenance"
+ })
+"bch" = (
+/obj/machinery/door/airlock{
+ name = "Central Emergency Storage";
+ req_access_txt = "0"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/maintcentral{
+ name = "Central Maintenance"
+ })
+"bci" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/hallway/primary/central)
+"bcj" = (
+/turf/closed/wall/r_wall,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"bck" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall/r_wall,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"bcl" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/hallway/primary/central)
+"bcm" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/hallway/primary/central)
+"bcn" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -26;
+ pixel_y = 0
+ },
+/obj/item/clothing/gloves/color/fyellow,
+/obj/item/clothing/suit/hazardvest,
+/obj/item/device/multitool,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plasteel/yellow/side{
+ dir = 8
+ },
+/area/storage/tools)
+"bco" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 2;
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/storage/tools)
+"bcp" = (
+/obj/machinery/holopad,
+/turf/open/floor/plasteel,
+/area/storage/tools)
+"bcq" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel,
+/area/storage/tools)
+"bcr" = (
+/obj/machinery/camera{
+ c_tag = "Auxiliary Tool Storage";
+ dir = 8;
+ network = list("SS13")
+ },
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 4
+ },
+/area/storage/tools)
+"bcs" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bct" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bcu" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/storage/tech)
+"bcv" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/weapon/circuitboard/computer/crew{
+ pixel_x = -1;
+ pixel_y = 1
+ },
+/obj/item/weapon/circuitboard/computer/card{
+ pixel_x = 2;
+ pixel_y = -2
+ },
+/obj/item/weapon/circuitboard/computer/communications{
+ pixel_x = 5;
+ pixel_y = -5
+ },
+/turf/open/floor/plasteel/black,
+/area/storage/tech)
+"bcw" = (
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/storage/tech)
+"bcx" = (
+/obj/machinery/door/airlock/highsecurity{
+ name = "Secure Tech Storage";
+ req_access_txt = "19;23"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/storage/tech)
+"bcy" = (
+/obj/machinery/holopad,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/storage/tech)
+"bcz" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/storage/tech)
+"bcA" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/storage/tech)
+"bcB" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/storage/tech)
+"bcC" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/storage/tech)
+"bcD" = (
+/obj/structure/table,
+/obj/item/weapon/screwdriver{
+ pixel_y = 16
+ },
+/obj/item/weapon/wirecutters,
+/obj/item/device/multitool,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/storage/tech)
+"bcE" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -26;
+ pixel_y = 0
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/engine/chiefs_office)
+"bcF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/engine/chiefs_office)
+"bcG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 1
+ },
+/area/engine/chiefs_office)
+"bcH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/engine/chiefs_office)
+"bcI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/newscaster{
+ pixel_x = 30;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/engine/chiefs_office)
+"bcJ" = (
+/obj/structure/closet/toolcloset,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/engine/engineering)
+"bcK" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ dir = 1
+ },
+/area/engine/engineering)
+"bcL" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Engineering Security APC";
+ pixel_x = -24
+ },
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/security/checkpoint/engineering)
+"bcM" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel,
+/area/security/checkpoint/engineering)
+"bcN" = (
+/obj/machinery/computer/secure_data,
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for monitoring the singularity engine safely.";
+ dir = 8;
+ name = "Singularity Monitor";
+ network = list("Singulo");
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 4
+ },
+/area/security/checkpoint/engineering)
+"bcO" = (
+/obj/structure/easel,
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/starboard)
+"bcP" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/ai_status_display{
+ pixel_x = -32;
+ pixel_y = 0
+ },
+/turf/open/floor/bluegrid,
+/area/ai_monitored/turret_protected/ai)
+"bcQ" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/space,
+/area/space)
+"bcR" = (
+/turf/closed/wall/mineral/titanium/overspace,
+/area/shuttle/arrival)
+"bcS" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/arrival)
+"bcT" = (
+/obj/machinery/door/airlock/titanium{
+ name = "Arrivals Shuttle Airlock"
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/arrival)
+"bcU" = (
+/obj/structure/grille,
+/obj/structure/window/shuttle,
+/turf/open/floor/plating,
+/area/shuttle/arrival)
+"bcV" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/arrival{
+ dir = 4
+ },
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bcW" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/security/checkpoint2{
+ name = "Customs"
+ })
+"bcX" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1;
+ initialize_directions = 11
+ },
+/obj/structure/table/reinforced,
+/obj/item/weapon/book/manual/wiki/security_space_law{
+ pixel_x = -3;
+ pixel_y = 5
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 9
+ },
+/area/security/checkpoint2{
+ name = "Customs"
+ })
+"bcY" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "Customs APC";
+ pixel_y = 24
+ },
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 1
+ },
+/area/security/checkpoint2{
+ name = "Customs"
+ })
+"bcZ" = (
+/obj/item/device/radio/intercom{
+ broadcasting = 0;
+ name = "Station Intercom (General)";
+ pixel_y = 20
+ },
+/obj/machinery/computer/security,
+/turf/open/floor/plasteel/red/side{
+ dir = 1
+ },
+/area/security/checkpoint2{
+ name = "Customs"
+ })
+"bda" = (
+/obj/machinery/computer/card,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/requests_console{
+ department = "Security";
+ departmentType = 5;
+ pixel_y = 30
+ },
+/obj/machinery/camera{
+ c_tag = "Customs Checkpoint";
+ dir = 2;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 1
+ },
+/area/security/checkpoint2{
+ name = "Customs"
+ })
+"bdb" = (
+/obj/machinery/computer/secure_data,
+/obj/machinery/newscaster/security_unit{
+ pixel_x = 0;
+ pixel_y = 30
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 1
+ },
+/area/security/checkpoint2{
+ name = "Customs"
+ })
+"bdc" = (
+/obj/machinery/light_switch{
+ pixel_x = 27
+ },
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_x = 0;
+ pixel_y = 30
+ },
+/obj/structure/closet/secure_closet/security,
+/turf/open/floor/plasteel/red/side{
+ dir = 5
+ },
+/area/security/checkpoint2{
+ name = "Customs"
+ })
+"bdd" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bde" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/space_heater,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bdf" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/closed/wall,
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"bdg" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "packageSort2"
+ },
+/obj/structure/disposaloutlet{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"bdh" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "packageSort2"
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"bdi" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "packageSort2"
+ },
+/turf/open/floor/plating,
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"bdj" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "packageSort2"
+ },
+/obj/structure/plasticflaps{
+ opacity = 0
+ },
+/turf/open/floor/plating,
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"bdk" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/disposal/deliveryChute{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"bdl" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 8
+ },
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"bdm" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"bdn" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"bdo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"bdp" = (
+/obj/machinery/computer/cargo,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 4
+ },
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"bdq" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"bdr" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"bds" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"bdt" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"bdu" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"bdv" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 4
+ },
+/area/hallway/primary/port)
+"bdw" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/turf/open/floor/plating,
+/area/hallway/primary/port)
+"bdx" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/brown/corner{
+ dir = 8
+ },
+/area/hallway/primary/central)
+"bdy" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/sortjunction{
+ dir = 1;
+ icon_state = "pipe-j1s";
+ sortType = 22
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bdz" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/hallway/primary/central)
+"bdA" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/machinery/light_switch{
+ pixel_x = 8;
+ pixel_y = 30
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/janitor)
+"bdB" = (
+/turf/open/floor/plasteel/floorgrime,
+/area/janitor)
+"bdC" = (
+/obj/structure/closet/l3closet/janitor,
+/obj/machinery/airalarm{
+ pixel_y = 28
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/janitor)
+"bdD" = (
+/obj/structure/closet/jcloset,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/janitor)
+"bdE" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/plating,
+/area/maintenance/maintcentral{
+ name = "Central Maintenance"
+ })
+"bdF" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/maintcentral{
+ name = "Central Maintenance"
+ })
+"bdG" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/maintcentral{
+ name = "Central Maintenance"
+ })
+"bdH" = (
+/obj/structure/table/wood,
+/obj/item/device/flashlight/lamp/green{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/obj/item/device/radio/intercom{
+ dir = 0;
+ name = "Station Intercom (General)";
+ pixel_x = -27;
+ pixel_y = 0
+ },
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"bdI" = (
+/obj/machinery/status_display{
+ density = 0;
+ layer = 4;
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/table/wood,
+/obj/item/weapon/pinpointer,
+/obj/item/weapon/disk/nuclear,
+/turf/open/floor/carpet,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"bdJ" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/computer/security/wooden_tv,
+/turf/open/floor/carpet,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"bdK" = (
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"bdL" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"bdM" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/filingcabinet{
+ pixel_x = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"bdN" = (
+/obj/machinery/light_switch{
+ pixel_x = 28;
+ pixel_y = 0
+ },
+/obj/structure/dresser,
+/obj/item/weapon/storage/secure/safe{
+ pixel_x = 6;
+ pixel_y = 28
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"bdO" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/hallway/primary/central)
+"bdP" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bdQ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/hallway/primary/central)
+"bdR" = (
+/obj/structure/table,
+/obj/item/weapon/storage/toolbox/emergency,
+/obj/machinery/light_switch{
+ pixel_x = -26
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 10
+ },
+/area/storage/tools)
+"bdS" = (
+/obj/structure/table,
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/yellow/side{
+ dir = 2
+ },
+/area/storage/tools)
+"bdT" = (
+/turf/open/floor/plasteel/yellow/side{
+ dir = 2
+ },
+/area/storage/tools)
+"bdU" = (
+/obj/structure/rack,
+/obj/item/weapon/electronics/apc,
+/obj/item/weapon/electronics/airlock,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plasteel/yellow/side{
+ dir = 2
+ },
+/area/storage/tools)
+"bdV" = (
+/obj/structure/table,
+/obj/item/stack/sheet/glass{
+ amount = 50
+ },
+/obj/item/stack/rods{
+ amount = 50
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 6
+ },
+/area/storage/tools)
+"bdW" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating{
+ icon_plating = "warnplate"
+ },
+/area/maintenance/starboard)
+"bdX" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/weapon/circuitboard/computer/robotics{
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/obj/item/weapon/circuitboard/computer/mecha_control{
+ pixel_x = 1;
+ pixel_y = -1
+ },
+/turf/open/floor/plasteel/black,
+/area/storage/tech)
+"bdY" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/storage/tech)
+"bdZ" = (
+/obj/machinery/vending/assist,
+/turf/open/floor/plasteel/black,
+/area/storage/tech)
+"bea" = (
+/obj/structure/table,
+/obj/item/device/plant_analyzer,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/open/floor/plasteel/black,
+/area/storage/tech)
+"beb" = (
+/obj/structure/table,
+/obj/item/device/analyzer,
+/obj/item/device/healthanalyzer,
+/obj/machinery/camera/autoname{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/storage/tech)
+"bec" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/weapon/storage/toolbox/electrical{
+ pixel_x = 1;
+ pixel_y = -1
+ },
+/obj/item/device/multitool,
+/obj/item/clothing/glasses/meson,
+/obj/machinery/light_switch{
+ pixel_x = 0;
+ pixel_y = -28
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/black,
+/area/storage/tech)
+"bed" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/storage/tech)
+"bee" = (
+/obj/structure/table,
+/obj/machinery/cell_charger{
+ pixel_y = 0
+ },
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/obj/item/weapon/stock_parts/cell/high{
+ charge = 100;
+ maxcharge = 15000
+ },
+/turf/open/floor/plasteel/black,
+/area/storage/tech)
+"bef" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = -28
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/engine/chiefs_office)
+"beg" = (
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_x = 0;
+ pixel_y = -29
+ },
+/obj/machinery/suit_storage_unit/ce,
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/engine/chiefs_office)
+"beh" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/weapon/storage/secure/briefcase,
+/obj/item/clothing/mask/cigarette/cigar,
+/obj/machinery/computer/security/telescreen{
+ dir = 1;
+ name = "MiniSat Monitor";
+ network = list("MiniSat","tcomm");
+ pixel_x = 0;
+ pixel_y = -30
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/engine/chiefs_office)
+"bei" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/weapon/lighter,
+/obj/item/clothing/glasses/meson,
+/obj/machinery/button/door{
+ id = "ceprivacy";
+ name = "Privacy Shutters Control";
+ pixel_x = 0;
+ pixel_y = -26
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/engine/chiefs_office)
+"bej" = (
+/obj/structure/filingcabinet/chestdrawer,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/mob/living/simple_animal/parrot/Poly,
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/engine/chiefs_office)
+"bek" = (
+/obj/structure/closet/secure_closet/engineering_chief{
+ req_access_txt = "0"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/engine/chiefs_office)
+"bel" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/engineering{
+ name = "Engine Room";
+ req_access_txt = "10"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ dir = 1
+ },
+/area/engine/engineering)
+"bem" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ on = 1
+ },
+/obj/machinery/camera/autoname{
+ dir = 4;
+ network = list("SS13")
+ },
+/obj/machinery/button/door{
+ desc = "A remote control-switch for the engineering security doors.";
+ id = "Engineering";
+ name = "Engineering Lockdown";
+ pixel_x = -24;
+ pixel_y = -6;
+ req_access_txt = "1"
+ },
+/obj/machinery/button/door{
+ id = "atmos";
+ name = "Atmospherics Lockdown";
+ pixel_x = -24;
+ pixel_y = 5;
+ req_access_txt = "1"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 10
+ },
+/area/security/checkpoint/engineering)
+"ben" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/red/side,
+/area/security/checkpoint/engineering)
+"beo" = (
+/obj/structure/closet/secure_closet/security/engine,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 6
+ },
+/area/security/checkpoint/engineering)
+"bep" = (
+/turf/closed/wall,
+/area/engine/break_room)
+"beq" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 0;
+ pixel_y = 0
+ },
+/turf/closed/wall/r_wall,
+/area/space)
+"ber" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 0
+ },
+/turf/open/space,
+/area/space)
+"bes" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/black,
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"bet" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "MiniSat Exterior - Port Fore";
+ dir = 8;
+ network = list("MiniSat")
+ },
+/turf/open/floor/plasteel/black,
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"beu" = (
+/obj/machinery/airalarm{
+ pixel_y = 23
+ },
+/turf/open/floor/bluegrid,
+/area/ai_monitored/turret_protected/ai)
+"bev" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/obj/machinery/portable_atmospherics/pump,
+/obj/structure/sign/poster{
+ pixel_y = 32
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"bew" = (
+/obj/machinery/power/apc{
+ aidisabled = 0;
+ dir = 1;
+ name = "AI Chamber APC";
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/turf/open/floor/bluegrid,
+/area/ai_monitored/turret_protected/ai)
+"bex" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/bluegrid,
+/area/ai_monitored/turret_protected/ai)
+"bey" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/camera{
+ c_tag = "MiniSat Exterior - Starboard Fore";
+ dir = 4;
+ network = list("MiniSat")
+ },
+/turf/open/floor/plasteel/black,
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"bez" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/structure/window/reinforced,
+/turf/open/floor/plasteel/black,
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"beA" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/turf/open/floor/plasteel/black,
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"beB" = (
+/obj/structure/table,
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/arrival)
+"beC" = (
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/arrival)
+"beD" = (
+/obj/machinery/computer/arcade,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/arrival)
+"beE" = (
+/obj/structure/closet/wardrobe/green,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/arrival)
+"beF" = (
+/obj/structure/closet/wardrobe/black,
+/obj/structure/sign/map/left{
+ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";
+ icon_state = "map-left-MS";
+ pixel_y = 32
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/arrival)
+"beG" = (
+/obj/structure/closet/wardrobe/mixed,
+/obj/structure/sign/map/right{
+ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";
+ icon_state = "map-right-MS";
+ pixel_y = 32
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/arrival)
+"beH" = (
+/obj/structure/closet/wardrobe/grey,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/arrival)
+"beI" = (
+/obj/machinery/camera{
+ c_tag = "Arrivals Shuttle";
+ dir = 2;
+ network = list("SS13")
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/arrival)
+"beJ" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 4;
+ icon_state = "burst_r"
+ },
+/turf/open/floor/plating,
+/area/shuttle/arrival)
+"beK" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/security/checkpoint2{
+ name = "Customs"
+ })
+"beL" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/table/reinforced,
+/obj/item/weapon/folder/red,
+/obj/item/weapon/folder/red,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/security/checkpoint2{
+ name = "Customs"
+ })
+"beM" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/security/checkpoint2{
+ name = "Customs"
+ })
+"beN" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel,
+/area/security/checkpoint2{
+ name = "Customs"
+ })
+"beO" = (
+/obj/structure/chair/office/dark,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/security/checkpoint2{
+ name = "Customs"
+ })
+"beP" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel,
+/area/security/checkpoint2{
+ name = "Customs"
+ })
+"beQ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 4
+ },
+/area/security/checkpoint2{
+ name = "Customs"
+ })
+"beR" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Security Maintenance";
+ req_access_txt = "1"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/security/checkpoint2{
+ name = "Customs"
+ })
+"beS" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"beT" = (
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"beU" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Mailroom Maintenance";
+ req_access_txt = "50"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"beV" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"beW" = (
+/obj/structure/chair/stool,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"beX" = (
+/obj/machinery/conveyor_switch/oneway{
+ id = "packageSort2";
+ pixel_x = -2;
+ pixel_y = 12
+ },
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"beY" = (
+/obj/machinery/airalarm{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/camera{
+ c_tag = "Cargo - Office";
+ dir = 4;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 8
+ },
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"beZ" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"bfa" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"bfb" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"bfc" = (
+/obj/structure/filingcabinet/filingcabinet,
+/turf/open/floor/plasteel/brown{
+ dir = 4
+ },
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"bfd" = (
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"bfe" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"bff" = (
+/turf/open/floor/plasteel/brown/corner{
+ dir = 4
+ },
+/area/hallway/primary/port)
+"bfg" = (
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/brown{
+ dir = 1
+ },
+/area/hallway/primary/port)
+"bfh" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/brown/corner{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"bfi" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/hallway/primary/central)
+"bfj" = (
+/obj/item/weapon/restraints/legcuffs/beartrap,
+/obj/item/weapon/restraints/legcuffs/beartrap,
+/obj/structure/table,
+/obj/machinery/requests_console{
+ department = "Janitorial";
+ departmentType = 1;
+ pixel_x = -29;
+ pixel_y = 0
+ },
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/obj/machinery/camera{
+ c_tag = "Custodial Closet";
+ dir = 4;
+ network = list("SS13")
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/janitor)
+"bfk" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/turf/open/floor/plating,
+/area/janitor)
+"bfl" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/janitor)
+"bfm" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/janitor)
+"bfn" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Custodial Maintenance";
+ req_access_txt = "26"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/janitor)
+"bfo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/maintcentral{
+ name = "Central Maintenance"
+ })
+"bfp" = (
+/obj/item/device/flashlight{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/maintcentral{
+ name = "Central Maintenance"
+ })
+"bfq" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/maintenance/maintcentral{
+ name = "Central Maintenance"
+ })
+"bfr" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "bridge blast";
+ layer = 2.9;
+ name = "bridge blast door"
+ },
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/open/floor/plating,
+/area/bridge)
+"bfs" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "bridge blast";
+ layer = 2.9;
+ name = "bridge blast door"
+ },
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/open/floor/plating,
+/area/bridge)
+"bft" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "bridge blast";
+ layer = 2.9;
+ name = "bridge blast door"
+ },
+/turf/open/floor/plating,
+/area/bridge)
+"bfu" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "bridge blast";
+ layer = 2.9;
+ name = "bridge blast door"
+ },
+/turf/open/floor/plating,
+/area/bridge)
+"bfv" = (
+/turf/closed/wall/r_wall,
+/area/bridge)
+"bfw" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "bridge blast";
+ layer = 2.9;
+ name = "bridge blast door"
+ },
+/turf/open/floor/plating,
+/area/bridge)
+"bfx" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "bridge blast";
+ layer = 2.9;
+ name = "bridge blast door"
+ },
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/open/floor/plating,
+/area/bridge)
+"bfy" = (
+/obj/structure/table/wood,
+/obj/machinery/newscaster/security_unit{
+ pixel_x = -30;
+ pixel_y = 1
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"bfz" = (
+/obj/effect/landmark/start{
+ name = "Captain"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/chair/comfy/brown{
+ icon_state = "comfychair";
+ dir = 8
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"bfA" = (
+/turf/open/floor/carpet,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"bfB" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/carpet,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"bfC" = (
+/obj/machinery/door/window/westright,
+/turf/open/floor/wood,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"bfD" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet/captain,
+/obj/effect/landmark/start{
+ name = "Captain"
+ },
+/obj/machinery/camera{
+ c_tag = "Captain's Quarters";
+ dir = 8;
+ network = list("SS13")
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"bfE" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/airalarm{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/hallway/primary/central)
+"bfF" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plasteel/yellow/corner{
+ dir = 4
+ },
+/area/hallway/primary/central)
+"bfG" = (
+/obj/structure/sign/directions/security{
+ desc = "A direction sign, pointing out which way the security department is.";
+ dir = 1;
+ icon_state = "direction_sec";
+ pixel_x = 0;
+ pixel_y = 8
+ },
+/obj/structure/sign/directions/engineering{
+ desc = "A direction sign, pointing out which way the engineering department is.";
+ dir = 4;
+ icon_state = "direction_eng";
+ pixel_y = 0
+ },
+/obj/structure/sign/directions/engineering{
+ desc = "A direction sign, pointing out which way the bridge is.";
+ dir = 2;
+ icon_state = "direction_bridge";
+ name = "bridge";
+ pixel_y = -8
+ },
+/turf/closed/wall/r_wall,
+/area/storage/tools)
+"bfH" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/storage/tools)
+"bfI" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Auxiliary Tool Storage";
+ req_access_txt = "12"
+ },
+/turf/open/floor/plasteel,
+/area/storage/tools)
+"bfJ" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/storage/tools)
+"bfK" = (
+/obj/structure/closet/emcloset,
+/obj/structure/sign/map/left{
+ icon_state = "map-left-MS";
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/vault,
+/area/hallway/primary/starboard)
+"bfL" = (
+/obj/structure/sign/map/right{
+ desc = "A framed picture of the station. Clockwise from security in red at the top, you see engineering in yellow, science in purple, escape in checkered red-and-white, medbay in green, arrivals in checkered red-and-blue, and then cargo in brown.";
+ icon_state = "map-right-MS";
+ pixel_y = 32
+ },
+/obj/structure/closet/firecloset,
+/turf/open/floor/plasteel/vault,
+/area/hallway/primary/starboard)
+"bfM" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bfN" = (
+/turf/closed/wall,
+/area/hallway/primary/starboard)
+"bfO" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/storage/tech)
+"bfP" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/engineering{
+ name = "Tech Storage";
+ req_access_txt = "0";
+ req_one_access_txt = "23;30"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/storage/tech)
+"bfQ" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "ceprivacy";
+ name = "privacy shutter"
+ },
+/turf/open/floor/plating,
+/area/engine/chiefs_office)
+"bfR" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow,
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "ceprivacy";
+ name = "privacy shutter"
+ },
+/turf/open/floor/plating,
+/area/engine/chiefs_office)
+"bfS" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 2;
+ on = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"bfT" = (
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id = "Engineering";
+ name = "Engineering Security Doors";
+ opacity = 0
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/engine/break_room)
+"bfU" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bfV" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow,
+/turf/open/floor/plating,
+/area/security/checkpoint/engineering)
+"bfW" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_security{
+ name = "Engineering Security Post";
+ req_access_txt = "63"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/security/checkpoint/engineering)
+"bfX" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow,
+/turf/open/floor/plating,
+/area/security/checkpoint/engineering)
+"bfY" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/plating,
+/area/engine/break_room)
+"bfZ" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/engine/break_room)
+"bga" = (
+/obj/structure/shuttle/engine/propulsion/burst{
+ dir = 8
+ },
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/pod_4)
+"bgb" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/pod_4)
+"bgc" = (
+/obj/machinery/door/airlock/hatch{
+ icon_state = "door_closed";
+ name = "MiniSat Space Access Airlock";
+ req_one_access_txt = "32;19"
+ },
+/turf/open/floor/plating,
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"bgd" = (
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"bge" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"bgf" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"bgg" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 0
+ },
+/obj/machinery/door/window{
+ base_state = "right";
+ dir = 8;
+ icon_state = "right";
+ name = "MiniSat Airlock Access";
+ req_access_txt = "0"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"bgh" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -26;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/ai)
+"bgi" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/ai)
+"bgj" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/obj/machinery/ai_slipper{
+ uses = 10
+ },
+/turf/open/floor/bluegrid,
+/area/ai_monitored/turret_protected/ai)
+"bgk" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/bluegrid,
+/area/ai_monitored/turret_protected/ai)
+"bgl" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/ai)
+"bgm" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/phone{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/weapon/cigbutt/cigarbutt{
+ pixel_x = 5;
+ pixel_y = -1
+ },
+/obj/item/device/radio/intercom{
+ broadcasting = 1;
+ frequency = 1447;
+ listening = 0;
+ name = "Station Intercom (AI Private)";
+ pixel_x = 28;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/ai)
+"bgn" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/turf/open/space,
+/area/space)
+"bgo" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/turf/open/space,
+/area/space)
+"bgp" = (
+/obj/structure/table,
+/obj/item/device/analyzer,
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "Tool Storage APC";
+ pixel_x = 0;
+ pixel_y = -27
+ },
+/obj/structure/cable/yellow,
+/obj/item/weapon/wrench,
+/obj/structure/sign/poster{
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 10
+ },
+/area/storage/primary)
+"bgq" = (
+/obj/structure/chair,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/arrival)
+"bgr" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/effect/landmark{
+ name = "JoinLate"
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/arrival)
+"bgs" = (
+/obj/effect/landmark{
+ name = "JoinLate"
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/arrival)
+"bgt" = (
+/obj/structure/shuttle/engine/heater{
+ icon_state = "heater";
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/shuttle/arrival)
+"bgu" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 4;
+ icon_state = "propulsion"
+ },
+/turf/open/floor/plating,
+/area/shuttle/arrival)
+"bgv" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/arrival{
+ dir = 4
+ },
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bgw" = (
+/obj/machinery/airalarm{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/closet,
+/obj/item/weapon/crowbar,
+/obj/item/device/assembly/flash/handheld,
+/obj/item/device/radio,
+/turf/open/floor/plasteel/red/side{
+ dir = 10
+ },
+/area/security/checkpoint2{
+ name = "Customs"
+ })
+"bgx" = (
+/turf/open/floor/plasteel/red/side,
+/area/security/checkpoint2{
+ name = "Customs"
+ })
+"bgy" = (
+/obj/item/weapon/paper_bin{
+ pixel_x = 1;
+ pixel_y = 9
+ },
+/obj/item/weapon/pen,
+/obj/structure/table/reinforced,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/red/side,
+/area/security/checkpoint2{
+ name = "Customs"
+ })
+"bgz" = (
+/obj/item/weapon/paper,
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/brigdoor{
+ dir = 2;
+ name = "Arrivals Security Checkpoint";
+ pixel_y = -8;
+ req_access_txt = "1"
+ },
+/turf/open/floor/plasteel/red/side,
+/area/security/checkpoint2{
+ name = "Customs"
+ })
+"bgA" = (
+/obj/machinery/recharger{
+ pixel_y = 4
+ },
+/obj/structure/table/reinforced,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/red/side,
+/area/security/checkpoint2{
+ name = "Customs"
+ })
+"bgB" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/airalarm{
+ pixel_y = 28
+ },
+/obj/structure/closet/crate/secure/weapon{
+ desc = "A secure clothing crate.";
+ name = "formal uniform crate";
+ req_access_txt = "3"
+ },
+/obj/item/clothing/under/rank/security/navyblue,
+/obj/item/clothing/under/rank/security/navyblue,
+/obj/item/clothing/under/rank/security/navyblue,
+/obj/item/clothing/under/rank/security/navyblue,
+/obj/item/clothing/under/rank/security/navyblue,
+/obj/item/clothing/under/rank/security/navyblue,
+/obj/item/clothing/suit/security/officer,
+/obj/item/clothing/suit/security/officer,
+/obj/item/clothing/suit/security/officer,
+/obj/item/clothing/suit/security/officer,
+/obj/item/clothing/suit/security/officer,
+/obj/item/clothing/suit/security/officer,
+/obj/item/clothing/under/rank/warden/navyblue,
+/obj/item/clothing/suit/security/warden,
+/obj/item/clothing/under/rank/head_of_security/navyblue,
+/obj/item/clothing/suit/security/hos,
+/obj/item/clothing/head/beret/sec/navyofficer,
+/obj/item/clothing/head/beret/sec/navyofficer,
+/obj/item/clothing/head/beret/sec/navyofficer,
+/obj/item/clothing/head/beret/sec/navyofficer,
+/obj/item/clothing/head/beret/sec/navyofficer,
+/obj/item/clothing/head/beret/sec/navyofficer,
+/obj/item/clothing/head/beret/sec/navywarden,
+/obj/item/clothing/head/beret/sec/navyhos,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/security/warden)
+"bgC" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bgD" = (
+/obj/machinery/space_heater,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bgE" = (
+/obj/structure/disposalpipe/wrapsortjunction{
+ dir = 1
+ },
+/turf/closed/wall,
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"bgF" = (
+/obj/structure/disposaloutlet{
+ dir = 4
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"bgG" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/door/window/eastleft{
+ name = "Mail";
+ req_access_txt = "50"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"bgH" = (
+/turf/open/floor/plasteel/loadingarea{
+ dir = 4
+ },
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"bgI" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"bgJ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"bgK" = (
+/obj/machinery/firealarm{
+ dir = 2;
+ pixel_y = 24
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"bgL" = (
+/obj/machinery/status_display{
+ density = 0;
+ pixel_x = 0;
+ pixel_y = 32;
+ supply_display = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"bgM" = (
+/obj/machinery/light_switch{
+ pixel_y = 28
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"bgN" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_mining{
+ name = "Mailroom";
+ req_access_txt = "0";
+ req_one_access_txt = "48;50"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"bgO" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 2
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 8
+ },
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"bgP" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"bgQ" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"bgR" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/landmark/start{
+ name = "Cargo Technician"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"bgS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 4
+ },
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"bgT" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_mining{
+ name = "Cargo Office";
+ req_access_txt = "0";
+ req_one_access_txt = "48;50"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"bgU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 8
+ },
+/area/hallway/primary/port)
+"bgV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"bgW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"bgX" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 2;
+ icon_state = "pipe-j1"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"bgY" = (
+/turf/open/floor/plasteel/brown/corner{
+ dir = 2
+ },
+/area/hallway/primary/port)
+"bgZ" = (
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/brown{
+ dir = 2
+ },
+/area/hallway/primary/port)
+"bha" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Custodial Closet APC";
+ pixel_x = -24
+ },
+/obj/structure/table,
+/obj/item/clothing/gloves/color/orange,
+/obj/item/weapon/storage/box/mousetraps,
+/obj/item/weapon/storage/box/mousetraps,
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/janitor)
+"bhb" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/portable_atmospherics/canister/water_vapor,
+/mob/living/simple_animal/hostile/lizard{
+ name = "Wags-His-Tail";
+ real_name = "Wags-His-Tail"
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/janitor)
+"bhc" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/effect/landmark/start{
+ name = "Janitor"
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/janitor)
+"bhd" = (
+/obj/structure/sink{
+ dir = 4;
+ icon_state = "sink";
+ pixel_x = 11;
+ pixel_y = 0
+ },
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/item/weapon/mop,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/janitor)
+"bhe" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/maintcentral{
+ name = "Central Maintenance"
+ })
+"bhf" = (
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/obj/machinery/power/apc{
+ cell_type = 2500;
+ dir = 4;
+ name = "Central Maintenance APC";
+ pixel_x = 26;
+ pixel_y = 0
+ },
+/obj/structure/cable/yellow,
+/turf/open/floor/plating,
+/area/maintenance/maintcentral{
+ name = "Central Maintenance"
+ })
+"bhg" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/poddoor/preopen{
+ id = "bridge blast";
+ layer = 2.9;
+ name = "bridge blast door"
+ },
+/obj/structure/cable/yellow,
+/turf/open/floor/plating,
+/area/bridge)
+"bhh" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/computer/card,
+/turf/open/floor/plasteel/darkgreen/side{
+ dir = 9
+ },
+/area/bridge)
+"bhi" = (
+/obj/machinery/computer/med_data,
+/turf/open/floor/plasteel/darkgreen/side{
+ dir = 1
+ },
+/area/bridge)
+"bhj" = (
+/obj/machinery/computer/crew,
+/turf/open/floor/plasteel/darkgreen/side{
+ dir = 1
+ },
+/area/bridge)
+"bhk" = (
+/obj/machinery/status_display{
+ density = 0;
+ layer = 4;
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/obj/item/weapon/folder/yellow{
+ pixel_y = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Bridge - Central";
+ dir = 2;
+ network = list("SS13")
+ },
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/darkbrown/side{
+ dir = 1
+ },
+/area/bridge)
+"bhl" = (
+/obj/machinery/computer/station_alert,
+/turf/open/floor/plasteel/darkbrown/side{
+ dir = 1
+ },
+/area/bridge)
+"bhm" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/computer/monitor{
+ name = "Bridge Power Monitoring Console"
+ },
+/turf/open/floor/plasteel/darkbrown/side{
+ dir = 1
+ },
+/area/bridge)
+"bhn" = (
+/obj/machinery/computer/atmos_alert,
+/turf/open/floor/plasteel/darkbrown/side{
+ dir = 1
+ },
+/area/bridge)
+"bho" = (
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/obj/item/weapon/storage/toolbox/mechanical{
+ pixel_x = -1;
+ pixel_y = 4
+ },
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/darkbrown/side{
+ dir = 1
+ },
+/area/bridge)
+"bhp" = (
+/obj/machinery/computer/security,
+/turf/open/floor/plasteel/darkred/side{
+ dir = 1
+ },
+/area/bridge)
+"bhq" = (
+/obj/machinery/computer/secure_data,
+/turf/open/floor/plasteel/darkred/side{
+ dir = 1
+ },
+/area/bridge)
+"bhr" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/computer/prisoner,
+/turf/open/floor/plasteel/darkred/side{
+ dir = 5
+ },
+/area/bridge)
+"bhs" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "bridge blast";
+ layer = 2.9;
+ name = "bridge blast door"
+ },
+/obj/structure/cable/yellow,
+/turf/open/floor/plating,
+/area/bridge)
+"bht" = (
+/obj/structure/table/wood,
+/obj/item/weapon/storage/photo_album{
+ pixel_y = -4
+ },
+/obj/item/device/camera{
+ pixel_y = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ freerange = 1;
+ name = "Station Intercom (Captain)";
+ pixel_x = -28
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"bhu" = (
+/obj/machinery/light_switch{
+ pixel_y = -25
+ },
+/obj/structure/table/wood,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/obj/item/weapon/razor{
+ pixel_x = -4;
+ pixel_y = 2
+ },
+/obj/item/clothing/mask/cigarette/cigar,
+/obj/item/weapon/reagent_containers/food/drinks/flask/gold,
+/turf/open/floor/carpet,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"bhv" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"bhw" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/carpet,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"bhx" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"bhy" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/holopad,
+/turf/open/floor/wood,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"bhz" = (
+/obj/structure/table/wood,
+/obj/machinery/recharger{
+ pixel_y = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"bhA" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/hallway/primary/central)
+"bhB" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=14.2-Central-CrewQuarters";
+ location = "14-Starboard-Central"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bhC" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/yellow/corner{
+ dir = 4
+ },
+/area/hallway/primary/central)
+"bhD" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Starboard Primary Hallway"
+ },
+/turf/open/floor/plasteel/yellow/corner{
+ dir = 1
+ },
+/area/hallway/primary/starboard)
+"bhE" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/yellow/corner{
+ dir = 1
+ },
+/area/hallway/primary/starboard)
+"bhF" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 2
+ },
+/turf/open/floor/plasteel/yellow/corner{
+ dir = 1
+ },
+/area/hallway/primary/starboard)
+"bhG" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/yellow/corner{
+ dir = 1
+ },
+/area/hallway/primary/starboard)
+"bhH" = (
+/obj/machinery/firealarm{
+ pixel_y = 32
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/yellow/corner{
+ dir = 1
+ },
+/area/hallway/primary/starboard)
+"bhI" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/machinery/camera{
+ c_tag = "Starboard Primary Hallway - Tech Storage";
+ dir = 2;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/yellow/corner{
+ dir = 1
+ },
+/area/hallway/primary/starboard)
+"bhJ" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 2
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/yellow/corner{
+ dir = 1
+ },
+/area/hallway/primary/starboard)
+"bhK" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/yellow/corner{
+ dir = 1
+ },
+/area/hallway/primary/starboard)
+"bhL" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/yellow/corner{
+ dir = 1
+ },
+/area/hallway/primary/starboard)
+"bhM" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel/yellow/corner{
+ dir = 1
+ },
+/area/hallway/primary/starboard)
+"bhN" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/airalarm{
+ pixel_y = 23
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/yellow/corner{
+ dir = 1
+ },
+/area/hallway/primary/starboard)
+"bhO" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/yellow/corner{
+ dir = 1
+ },
+/area/hallway/primary/starboard)
+"bhP" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/structure/sign/securearea{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/yellow/corner{
+ dir = 1
+ },
+/area/hallway/primary/starboard)
+"bhQ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "Starboard Hallway APC";
+ pixel_x = 0;
+ pixel_y = 26
+ },
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/open/floor/plasteel/yellow/corner{
+ dir = 1
+ },
+/area/hallway/primary/starboard)
+"bhR" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/caution/corner{
+ dir = 4
+ },
+/area/hallway/primary/starboard)
+"bhS" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=14-Starboard-Central";
+ location = "13.3-Engineering-Central"
+ },
+/turf/open/floor/plasteel/caution/corner{
+ dir = 4
+ },
+/area/hallway/primary/starboard)
+"bhT" = (
+/turf/closed/wall/r_wall,
+/area/engine/break_room)
+"bhU" = (
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/weapon/pen,
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/yellow/side{
+ dir = 1
+ },
+/area/engine/break_room)
+"bhV" = (
+/obj/item/weapon/book/manual/wiki/engineering_hacking{
+ pixel_x = 4;
+ pixel_y = 5
+ },
+/obj/item/weapon/book/manual/wiki/engineering_construction{
+ pixel_y = 3
+ },
+/obj/item/weapon/book/manual/wiki/engineering_guide{
+ pixel_x = -4;
+ pixel_y = 0
+ },
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/yellow/side{
+ dir = 1
+ },
+/area/engine/break_room)
+"bhW" = (
+/obj/item/weapon/folder/yellow,
+/obj/item/weapon/folder/yellow,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/sign/securearea{
+ pixel_y = 32
+ },
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/yellow/side{
+ dir = 1
+ },
+/area/engine/break_room)
+"bhX" = (
+/turf/open/floor/plasteel/yellow/side{
+ dir = 1
+ },
+/area/engine/break_room)
+"bhY" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/junction{
+ icon_state = "pipe-j2";
+ dir = 2
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 1
+ },
+/area/engine/break_room)
+"bhZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 1
+ },
+/area/engine/break_room)
+"bia" = (
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = 21
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 1
+ },
+/area/engine/break_room)
+"bib" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 1
+ },
+/area/engine/break_room)
+"bic" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 1
+ },
+/area/engine/break_room)
+"bid" = (
+/obj/machinery/disposal/bin{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 1
+ },
+/area/engine/break_room)
+"bie" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/engine/break_room)
+"bif" = (
+/turf/open/floor/plating,
+/area/engine/break_room)
+"big" = (
+/obj/machinery/door/airlock/titanium{
+ name = "Escape Pod Airlock"
+ },
+/obj/docking_port/mobile/pod{
+ dir = 4;
+ id = "pod4";
+ name = "escape pod 4";
+ port_angle = 180;
+ preferred_direction = 4
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/pod_4)
+"bih" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ pixel_y = 25
+ },
+/obj/item/weapon/storage/pod{
+ pixel_x = 6;
+ pixel_y = -32
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/pod_3)
+"bii" = (
+/obj/docking_port/stationary/random{
+ dir = 4;
+ id = "pod_asteroid3";
+ name = "asteroid"
+ },
+/turf/open/space,
+/area/space)
+"bij" = (
+/obj/structure/grille,
+/obj/structure/window/shuttle,
+/turf/open/floor/plating,
+/area/shuttle/pod_4)
+"bik" = (
+/obj/machinery/light/small,
+/obj/machinery/camera{
+ c_tag = "MiniSat Exterior - Space Access";
+ dir = 1;
+ network = list("MiniSat")
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"bil" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 0
+ },
+/obj/machinery/door/window{
+ dir = 8;
+ name = "MiniSat Airlock Access";
+ req_access_txt = "0"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/black,
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"bim" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/folder/blue{
+ pixel_y = 2
+ },
+/obj/item/weapon/pen,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/ai)
+"bin" = (
+/obj/structure/chair/office/dark{
+ dir = 8
+ },
+/obj/machinery/ai_status_display{
+ pixel_x = 0;
+ pixel_y = -32
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/ai)
+"bio" = (
+/obj/machinery/camera{
+ c_tag = "AI Chamber - Aft";
+ dir = 1;
+ network = list("RD")
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/ai)
+"bip" = (
+/obj/machinery/holopad,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/ai)
+"biq" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bir" = (
+/obj/structure/chair/office/dark{
+ dir = 4
+ },
+/obj/machinery/status_display{
+ density = 0;
+ layer = 4;
+ pixel_x = 0;
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/ai)
+"bis" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/folder/blue{
+ pixel_y = 2
+ },
+/obj/item/weapon/pen,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/ai)
+"bit" = (
+/obj/effect/landmark{
+ name = "Observer-Start"
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/arrival)
+"biu" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"biv" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/arrival{
+ dir = 4
+ },
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"biw" = (
+/obj/structure/sign/pods,
+/turf/closed/wall,
+/area/security/checkpoint2{
+ name = "Customs"
+ })
+"bix" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/closed/wall,
+/area/security/checkpoint2{
+ name = "Customs"
+ })
+"biy" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/security{
+ name = "Customs Desk";
+ req_access = null;
+ req_access_txt = "1"
+ },
+/turf/open/floor/plasteel,
+/area/security/checkpoint2{
+ name = "Customs"
+ })
+"biz" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/security/checkpoint2)
+"biA" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"biB" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "0";
+ req_one_access_txt = "12;48;50;1"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"biC" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"biD" = (
+/obj/machinery/door/window/eastleft{
+ base_state = "right";
+ icon_state = "right";
+ name = "Deliveries";
+ req_access_txt = "50"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"biE" = (
+/obj/machinery/conveyor_switch/oneway{
+ convdir = -1;
+ id = "packageExternal";
+ pixel_y = 18
+ },
+/turf/open/floor/plasteel/loadingarea{
+ dir = 4
+ },
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"biF" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"biG" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"biH" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"biI" = (
+/obj/structure/chair/office/dark{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"biJ" = (
+/obj/structure/table,
+/obj/item/device/destTagger{
+ pixel_x = 4;
+ pixel_y = 3
+ },
+/obj/machinery/light_switch{
+ pixel_x = 27
+ },
+/turf/open/floor/plasteel/arrival{
+ dir = 4
+ },
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"biK" = (
+/obj/structure/table,
+/obj/item/weapon/clipboard,
+/obj/item/weapon/folder/yellow,
+/obj/item/weapon/folder/yellow,
+/obj/item/device/multitool,
+/obj/item/weapon/pen/red,
+/turf/open/floor/plasteel/brown{
+ dir = 8
+ },
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"biL" = (
+/obj/structure/chair/office/dark{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"biM" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/light_switch{
+ pixel_x = 27;
+ pixel_y = 0
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 4
+ },
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"biN" = (
+/turf/open/floor/plasteel/brown{
+ dir = 8
+ },
+/area/hallway/primary/port)
+"biO" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"biP" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"biQ" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"biR" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/effect/landmark/start{
+ name = "Assistant"
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 4
+ },
+/area/hallway/primary/port)
+"biS" = (
+/obj/structure/table,
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/item/weapon/grenade/chem_grenade/cleaner,
+/obj/item/weapon/grenade/chem_grenade/cleaner,
+/obj/item/weapon/grenade/chem_grenade/cleaner,
+/turf/open/floor/plasteel/floorgrime,
+/area/janitor)
+"biT" = (
+/obj/structure/janitorialcart,
+/turf/open/floor/plasteel/floorgrime,
+/area/janitor)
+"biU" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1
+ },
+/obj/machinery/light/small,
+/obj/item/device/radio/intercom{
+ dir = 0;
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = -28
+ },
+/obj/vehicle/janicart,
+/obj/item/key/janitor,
+/turf/open/floor/plating,
+/area/janitor)
+"biV" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/disposal/bin,
+/turf/open/floor/plasteel/floorgrime,
+/area/janitor)
+"biW" = (
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/maintcentral{
+ name = "Central Maintenance"
+ })
+"biX" = (
+/obj/item/clothing/mask/gas,
+/turf/open/floor/plating,
+/area/maintenance/maintcentral{
+ name = "Central Maintenance"
+ })
+"biY" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "bridge blast";
+ layer = 2.9;
+ name = "bridge blast door"
+ },
+/turf/open/floor/plating,
+/area/bridge)
+"biZ" = (
+/obj/item/weapon/folder/white{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/darkgreen/side{
+ dir = 8
+ },
+/area/bridge)
+"bja" = (
+/obj/structure/chair/office/dark{
+ dir = 8
+ },
+/turf/open/floor/plasteel/black,
+/area/bridge)
+"bjb" = (
+/obj/structure/chair/office/dark{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/bridge)
+"bjc" = (
+/turf/open/floor/plasteel/black,
+/area/bridge)
+"bjd" = (
+/obj/structure/chair/office/dark{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/black,
+/area/bridge)
+"bje" = (
+/obj/structure/chair/office/dark{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/bridge)
+"bjf" = (
+/obj/item/weapon/folder/red{
+ pixel_y = 3
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/table/glass,
+/obj/item/weapon/folder/red{
+ pixel_y = 3
+ },
+/turf/open/floor/plasteel/darkred/side{
+ dir = 4
+ },
+/area/bridge)
+"bjg" = (
+/turf/closed/wall,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"bjh" = (
+/obj/structure/table/wood,
+/obj/item/device/flashlight/lamp/green{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 2
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/item/weapon/bikehorn/rubberducky,
+/obj/machinery/light_switch{
+ pixel_x = -28;
+ pixel_y = 0
+ },
+/obj/item/weapon/card/id/captains_spare,
+/turf/open/floor/wood,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"bji" = (
+/obj/machinery/door/window{
+ dir = 1;
+ name = "Captain's Bedroom";
+ req_access_txt = "20"
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"bjj" = (
+/obj/structure/closet/secure_closet/captains,
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 2
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"bjk" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 2
+ },
+/obj/machinery/suit_storage_unit/captain,
+/turf/open/floor/wood,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"bjl" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27;
+ pixel_y = 0
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/hallway/primary/central)
+"bjm" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bjn" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bjo" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Starboard Primary Hallway"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"bjp" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"bjq" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"bjr" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"bjs" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"bjt" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"bju" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"bjv" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 2;
+ icon_state = "pipe-j1"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"bjw" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"bjx" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"bjy" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"bjz" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"bjA" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"bjB" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"bjC" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"bjD" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"bjE" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 28
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/caution/corner{
+ dir = 4
+ },
+/area/hallway/primary/starboard)
+"bjF" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/light_switch{
+ pixel_x = -22;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"bjG" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"bjH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"bjI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 2;
+ initialize_directions = 11
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"bjJ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"bjK" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4;
+ initialize_directions = 11
+ },
+/obj/machinery/holopad,
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"bjL" = (
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"bjM" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/external{
+ name = "Escape Pod Four";
+ req_access = null;
+ req_access_txt = "32"
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"bjN" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 0
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/turf/open/space,
+/area/space)
+"bjO" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 0
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/black,
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"bjP" = (
+/turf/closed/wall/r_wall,
+/area/ai_monitored/turret_protected/tcomfoyer{
+ name = "\improper MiniSat Foyer"
+ })
+"bjQ" = (
+/turf/closed/wall/r_wall,
+/area/ai_monitored/turret_protected/aisat_interior)
+"bjR" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall/r_wall,
+/area/ai_monitored/turret_protected/aisat_interior)
+"bjS" = (
+/obj/machinery/power/terminal{
+ icon_state = "term";
+ dir = 1
+ },
+/obj/machinery/flasher{
+ id = "AI";
+ pixel_x = -24;
+ pixel_y = 28
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/ai)
+"bjT" = (
+/turf/closed/wall/r_wall,
+/area/ai_monitored/storage/secure{
+ name = "MiniSat Maintenance"
+ })
+"bjU" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/arrival)
+"bjV" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bjW" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/white/corner{
+ dir = 4
+ },
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bjX" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/arrival{
+ dir = 5
+ },
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bjY" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"bjZ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 9
+ },
+/area/hallway/primary/port)
+"bka" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"bkb" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"bkc" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = 21
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 5
+ },
+/area/hallway/primary/port)
+"bkd" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/neutral/side{
+ dir = 9
+ },
+/area/hallway/primary/port)
+"bke" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 2
+ },
+/obj/structure/sign/map/left{
+ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";
+ icon_state = "map-left-MS";
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 1
+ },
+/area/hallway/primary/port)
+"bkf" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 30;
+ pixel_y = 0
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/structure/sign/map/right{
+ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";
+ icon_state = "map-right-MS";
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 5
+ },
+/area/hallway/primary/port)
+"bkg" = (
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "packageExternal"
+ },
+/obj/structure/plasticflaps{
+ opacity = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"bkh" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/folder/yellow,
+/obj/item/weapon/pen{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/machinery/computer/stockexchange,
+/turf/open/floor/plasteel/arrival{
+ dir = 2
+ },
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"bki" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/chair/office/dark,
+/obj/effect/landmark/start{
+ name = "Cargo Technician"
+ },
+/turf/open/floor/plasteel/arrival{
+ dir = 2
+ },
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"bkj" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/arrival{
+ dir = 2
+ },
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"bkk" = (
+/obj/structure/filingcabinet/filingcabinet,
+/obj/item/device/radio/intercom{
+ broadcasting = 0;
+ listening = 1;
+ name = "Station Intercom (General)";
+ pixel_y = -28
+ },
+/obj/machinery/camera{
+ c_tag = "Cargo - Mailroom";
+ dir = 1;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/arrival{
+ dir = 2
+ },
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"bkl" = (
+/obj/structure/table,
+/obj/item/stack/wrapping_paper,
+/obj/item/stack/wrapping_paper,
+/obj/machinery/requests_console{
+ department = "Cargo Bay";
+ departmentType = 2;
+ pixel_y = -30
+ },
+/obj/item/stack/packageWrap{
+ pixel_x = 2;
+ pixel_y = -3
+ },
+/obj/item/stack/packageWrap{
+ pixel_x = 2;
+ pixel_y = -3
+ },
+/obj/item/stack/packageWrap{
+ pixel_x = 2;
+ pixel_y = -3
+ },
+/obj/item/stack/packageWrap{
+ pixel_x = 2;
+ pixel_y = -3
+ },
+/obj/item/stack/packageWrap{
+ pixel_x = 2;
+ pixel_y = -3
+ },
+/obj/item/stack/packageWrap{
+ pixel_x = 2;
+ pixel_y = -3
+ },
+/obj/item/stack/packageWrap{
+ pixel_x = 2;
+ pixel_y = -3
+ },
+/obj/item/stack/packageWrap{
+ pixel_x = 2;
+ pixel_y = -3
+ },
+/obj/item/weapon/storage/box/lights/mixed,
+/turf/open/floor/plasteel/arrival{
+ dir = 2
+ },
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"bkm" = (
+/obj/item/weapon/storage/box,
+/obj/structure/table,
+/obj/item/weapon/storage/box,
+/obj/item/weapon/storage/box,
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/item/weapon/hand_labeler,
+/turf/open/floor/plasteel/arrival{
+ dir = 6
+ },
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"bkn" = (
+/obj/structure/table,
+/obj/machinery/computer/stockexchange,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -26;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 10
+ },
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"bko" = (
+/obj/machinery/photocopier,
+/turf/open/floor/plasteel/brown{
+ dir = 2
+ },
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"bkp" = (
+/turf/open/floor/plasteel/brown{
+ dir = 2
+ },
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"bkq" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/holopad,
+/turf/open/floor/plasteel/brown{
+ dir = 2
+ },
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"bkr" = (
+/obj/machinery/autolathe,
+/obj/machinery/newscaster{
+ pixel_x = 28;
+ pixel_y = 0
+ },
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = -28
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 6
+ },
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"bks" = (
+/obj/structure/closet/crate{
+ icon_state = "crateopen";
+ opened = 1
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plasteel/brown{
+ dir = 10
+ },
+/area/hallway/primary/port)
+"bkt" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/holopad,
+/turf/open/floor/plasteel/brown/corner{
+ dir = 8
+ },
+/area/hallway/primary/port)
+"bku" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel/brown/corner{
+ dir = 2
+ },
+/area/hallway/primary/port)
+"bkv" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9;
+ pixel_y = 0
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/weapon/storage/box,
+/obj/item/weapon/storage/box,
+/obj/item/weapon/storage/box,
+/obj/item/stack/packageWrap{
+ pixel_x = 2;
+ pixel_y = -3
+ },
+/obj/item/stack/packageWrap{
+ pixel_x = 2;
+ pixel_y = -3
+ },
+/obj/item/stack/packageWrap{
+ pixel_x = 2;
+ pixel_y = -3
+ },
+/obj/item/weapon/hand_labeler,
+/turf/open/floor/plasteel/brown{
+ dir = 2
+ },
+/area/hallway/primary/port)
+"bkw" = (
+/obj/structure/table,
+/obj/item/device/toner,
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 30
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 6
+ },
+/area/hallway/primary/port)
+"bkx" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"bky" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/hallway/primary/central)
+"bkz" = (
+/turf/closed/wall/r_wall,
+/area/crew_quarters/heads)
+"bkA" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/item/weapon/tank/internals/air,
+/turf/open/floor/plating,
+/area/maintenance/maintcentral{
+ name = "Central Maintenance"
+ })
+"bkB" = (
+/obj/item/weapon/extinguisher,
+/turf/open/floor/plating,
+/area/maintenance/maintcentral{
+ name = "Central Maintenance"
+ })
+"bkC" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/obj/machinery/modular_computer/console/preset/command,
+/turf/open/floor/plasteel/darkblue/side{
+ dir = 9
+ },
+/area/bridge)
+"bkD" = (
+/obj/item/device/radio/intercom{
+ dir = 0;
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = 29
+ },
+/obj/machinery/computer/teleporter,
+/turf/open/floor/plasteel/darkblue/side{
+ dir = 1
+ },
+/area/bridge)
+"bkE" = (
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/darkgreen/corner{
+ dir = 1
+ },
+/area/bridge)
+"bkF" = (
+/obj/item/device/radio/beacon,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/black,
+/area/bridge)
+"bkG" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/recharger{
+ pixel_y = 3
+ },
+/obj/item/weapon/restraints/handcuffs{
+ pixel_y = 3
+ },
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/darkred/corner{
+ dir = 4
+ },
+/area/bridge)
+"bkH" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/computer/security/mining{
+ network = list("MINE","AuxBase")
+ },
+/obj/machinery/keycard_auth{
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel/darkblue/side{
+ dir = 1
+ },
+/area/bridge)
+"bkI" = (
+/obj/machinery/requests_console{
+ announcementConsole = 1;
+ department = "Bridge";
+ departmentType = 5;
+ name = "Bridge RC";
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/computer/cargo/request,
+/turf/open/floor/plasteel/darkblue/side{
+ dir = 5
+ },
+/area/bridge)
+"bkJ" = (
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/obj/item/weapon/soap/deluxe,
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/obj/machinery/shower{
+ pixel_y = 12
+ },
+/obj/structure/curtain,
+/turf/open/floor/plasteel/white,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"bkK" = (
+/obj/structure/mirror{
+ pixel_y = 28
+ },
+/obj/structure/sink{
+ pixel_y = 17
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/landmark{
+ name = "revenantspawn"
+ },
+/turf/open/floor/plasteel/white,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"bkL" = (
+/obj/structure/toilet{
+ pixel_y = 13
+ },
+/obj/machinery/light{
+ dir = 2;
+ icon_state = "tube1"
+ },
+/obj/effect/landmark/start{
+ name = "Captain"
+ },
+/obj/machinery/light_switch{
+ pixel_y = -25
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"bkM" = (
+/obj/machinery/door/airlock/silver{
+ name = "Bathroom"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"bkN" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"bkO" = (
+/turf/open/floor/wood,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"bkP" = (
+/obj/effect/landmark/start{
+ name = "Captain"
+ },
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"bkQ" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/hallway/primary/central)
+"bkR" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=13.1-Engineering-Enter";
+ location = "12-Central-Starboard"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bkS" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/yellow/corner{
+ dir = 2
+ },
+/area/hallway/primary/central)
+"bkT" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Starboard Primary Hallway"
+ },
+/turf/open/floor/plasteel/caution/corner{
+ dir = 8
+ },
+/area/hallway/primary/starboard)
+"bkU" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/caution/corner{
+ dir = 8
+ },
+/area/hallway/primary/starboard)
+"bkV" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1;
+ initialize_directions = 11
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/caution/corner{
+ dir = 8
+ },
+/area/hallway/primary/starboard)
+"bkW" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 2;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/caution/corner{
+ dir = 8
+ },
+/area/hallway/primary/starboard)
+"bkX" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -29
+ },
+/obj/machinery/light,
+/turf/open/floor/plasteel/caution/corner{
+ dir = 8
+ },
+/area/hallway/primary/starboard)
+"bkY" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 0;
+ pixel_y = -30
+ },
+/turf/open/floor/plasteel/caution/corner{
+ dir = 8
+ },
+/area/hallway/primary/starboard)
+"bkZ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/caution/corner{
+ dir = 8
+ },
+/area/hallway/primary/starboard)
+"bla" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/caution/corner{
+ dir = 8
+ },
+/area/hallway/primary/starboard)
+"blb" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 2;
+ initialize_directions = 11
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/machinery/camera{
+ c_tag = "Starboard Primary Hallway - Auxiliary Tool Storage";
+ dir = 1;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/caution/corner{
+ dir = 8
+ },
+/area/hallway/primary/starboard)
+"blc" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/caution/corner{
+ dir = 8
+ },
+/area/hallway/primary/starboard)
+"bld" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/caution/corner{
+ dir = 8
+ },
+/area/hallway/primary/starboard)
+"ble" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/caution/corner{
+ dir = 8
+ },
+/area/hallway/primary/starboard)
+"blf" = (
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Starboard Primary Hallway - Engineering";
+ dir = 1;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/caution/corner{
+ dir = 8
+ },
+/area/hallway/primary/starboard)
+"blg" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1;
+ initialize_directions = 11
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=13.2-Tcommstore";
+ location = "13.1-Engineering-Enter"
+ },
+/turf/open/floor/plasteel/caution/corner{
+ dir = 8
+ },
+/area/hallway/primary/starboard)
+"blh" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"bli" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/caution/corner{
+ dir = 4
+ },
+/area/hallway/primary/starboard)
+"blj" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/engine/break_room)
+"blk" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"bll" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 2;
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"blm" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"bln" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"blo" = (
+/obj/structure/chair/stool{
+ pixel_y = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"blp" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"blq" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"blr" = (
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"bls" = (
+/obj/structure/sign/pods,
+/turf/closed/wall/r_wall,
+/area/engine/break_room)
+"blt" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"blu" = (
+/obj/structure/lattice,
+/obj/structure/transit_tube/curved/flipped{
+ dir = 4
+ },
+/turf/open/space,
+/area/space)
+"blv" = (
+/obj/structure/lattice,
+/obj/structure/transit_tube/crossing/horizontal,
+/turf/open/space,
+/area/space)
+"blw" = (
+/obj/structure/transit_tube/curved{
+ dir = 8
+ },
+/turf/open/space,
+/area/space)
+"blx" = (
+/turf/closed/wall,
+/area/space)
+"bly" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/turf/open/space,
+/area/space)
+"blz" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/black,
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"blA" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/on,
+/obj/structure/window/reinforced,
+/turf/open/floor/plating/airless,
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"blB" = (
+/obj/machinery/computer/teleporter,
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 2;
+ on = 1
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -26;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/ai_monitored/turret_protected/tcomfoyer{
+ name = "\improper MiniSat Foyer"
+ })
+"blC" = (
+/obj/machinery/teleport/station,
+/obj/machinery/status_display{
+ density = 0;
+ layer = 4;
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/ai_monitored/turret_protected/tcomfoyer{
+ name = "\improper MiniSat Foyer"
+ })
+"blD" = (
+/obj/machinery/teleport/hub,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/ai_monitored/turret_protected/tcomfoyer{
+ name = "\improper MiniSat Foyer"
+ })
+"blE" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/ai)
+"blF" = (
+/obj/structure/showcase{
+ density = 0;
+ desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze.";
+ dir = 2;
+ icon = 'icons/mob/robots.dmi';
+ icon_state = "robot_old";
+ name = "Cyborg Statue";
+ pixel_x = 0;
+ pixel_y = 20
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkblue/corner{
+ dir = 1
+ },
+/area/ai_monitored/turret_protected/aisat_interior)
+"blG" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/aisat_interior)
+"blH" = (
+/obj/structure/showcase{
+ density = 0;
+ desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze.";
+ dir = 2;
+ icon = 'icons/mob/robots.dmi';
+ icon_state = "robot_old";
+ name = "Cyborg Statue";
+ pixel_x = 0;
+ pixel_y = 20
+ },
+/turf/open/floor/plasteel/darkblue/corner{
+ dir = 4
+ },
+/area/ai_monitored/turret_protected/aisat_interior)
+"blI" = (
+/obj/machinery/door/airlock/highsecurity{
+ icon_state = "door_closed";
+ locked = 0;
+ name = "AI Chamber";
+ req_access_txt = "16"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "AI Chamber entrance shutters";
+ name = "AI Chamber entrance shutters"
+ },
+/obj/machinery/flasher{
+ id = "AI";
+ pixel_x = -26;
+ pixel_y = 3
+ },
+/obj/item/device/radio/intercom{
+ broadcasting = 1;
+ frequency = 1447;
+ listening = 0;
+ name = "Station Intercom (AI Private)";
+ pixel_x = 28;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/aisat_interior)
+"blJ" = (
+/obj/machinery/power/smes{
+ charge = 5e+006
+ },
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/ai_monitored/storage/secure{
+ name = "MiniSat Maintenance"
+ })
+"blK" = (
+/obj/machinery/recharge_station,
+/obj/machinery/status_display{
+ density = 0;
+ layer = 4;
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/ai_monitored/storage/secure{
+ name = "MiniSat Maintenance"
+ })
+"blL" = (
+/obj/machinery/airalarm{
+ pixel_y = 26
+ },
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 2;
+ name = "Auxiliary MiniSat Distribution Port"
+ },
+/obj/machinery/portable_atmospherics/canister/air,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/ai_monitored/storage/secure{
+ name = "MiniSat Maintenance"
+ })
+"blM" = (
+/obj/machinery/power/port_gen/pacman,
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/ai_monitored/storage/secure{
+ name = "MiniSat Maintenance"
+ })
+"blN" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/arrival)
+"blO" = (
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -29
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/arrival)
+"blP" = (
+/obj/structure/sign/map/left{
+ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";
+ icon_state = "map-left-MS";
+ pixel_y = -32
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/arrival)
+"blQ" = (
+/obj/structure/sign/map/right{
+ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";
+ icon_state = "map-right-MS";
+ pixel_y = -32
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/arrival)
+"blR" = (
+/obj/machinery/requests_console{
+ department = "Arrival shuttle";
+ pixel_y = -30
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/arrival)
+"blS" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 4;
+ icon_state = "burst_l"
+ },
+/turf/open/floor/plating,
+/area/shuttle/arrival)
+"blT" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"blU" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/arrival{
+ dir = 4
+ },
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"blV" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"blW" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 10
+ },
+/area/hallway/primary/port)
+"blX" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/neutral/side,
+/area/hallway/primary/port)
+"blY" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=5-Customs";
+ location = "4-Customs"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel/neutral/side,
+/area/hallway/primary/port)
+"blZ" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/turf/open/floor/plasteel/neutral/side,
+/area/hallway/primary/port)
+"bma" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 6
+ },
+/area/hallway/primary/port)
+"bmb" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 10
+ },
+/area/hallway/primary/port)
+"bmc" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/hallway/primary/port)
+"bmd" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/neutral/side{
+ dir = 4
+ },
+/area/hallway/primary/port)
+"bme" = (
+/obj/machinery/conveyor{
+ dir = 1;
+ id = "packageExternal"
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"bmf" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/firedoor,
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/westleft{
+ dir = 1;
+ name = "Delivery Desk";
+ req_access_txt = "50"
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"bmg" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"bmh" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/mineral/ore_redemption,
+/turf/open/floor/plasteel/black,
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"bmi" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"bmj" = (
+/obj/structure/sign/directions/engineering{
+ desc = "A direction sign, pointing out which way the Suuply department is.";
+ dir = 1;
+ icon_state = "direction_supply";
+ name = "cargo department";
+ pixel_y = 8
+ },
+/turf/closed/wall,
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"bmk" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/brown{
+ dir = 8
+ },
+/area/hallway/primary/port)
+"bml" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/brown{
+ dir = 4
+ },
+/area/hallway/primary/port)
+"bmm" = (
+/obj/structure/sign/directions/security{
+ desc = "A direction sign, pointing out which way the security department is.";
+ dir = 1;
+ icon_state = "direction_sec";
+ pixel_x = 0;
+ pixel_y = 8
+ },
+/obj/structure/sign/directions/engineering{
+ desc = "A direction sign, pointing out which way the engineering department is.";
+ dir = 4;
+ icon_state = "direction_eng";
+ pixel_y = 0
+ },
+/obj/structure/sign/directions/engineering{
+ desc = "A direction sign, pointing out which way the bridge is.";
+ dir = 2;
+ icon_state = "direction_bridge";
+ name = "bridge";
+ pixel_y = -8
+ },
+/turf/closed/wall/r_wall,
+/area/hallway/primary/port)
+"bmn" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/hallway/primary/central)
+"bmo" = (
+/obj/item/device/flashlight/lamp/green{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/obj/machinery/button/door{
+ id = "hop";
+ name = "Privacy Shutters Control";
+ pixel_x = 0;
+ pixel_y = 25;
+ req_access_txt = "28"
+ },
+/obj/structure/table/wood,
+/turf/open/floor/wood,
+/area/crew_quarters/heads)
+"bmp" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/item/weapon/storage/secure/briefcase,
+/obj/structure/table/wood,
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for watching Prison Wing holding areas.";
+ name = "Prison Monitor";
+ network = list("Prison");
+ pixel_x = 0;
+ pixel_y = 30
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/heads)
+"bmq" = (
+/obj/machinery/recharger,
+/obj/item/weapon/storage/secure/safe{
+ pixel_x = 34;
+ pixel_y = 0
+ },
+/obj/structure/table/wood,
+/turf/open/floor/wood,
+/area/crew_quarters/heads)
+"bmr" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/plating,
+/area/maintenance/maintcentral{
+ name = "Central Maintenance"
+ })
+"bms" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/canister/air,
+/turf/open/floor/plating,
+/area/maintenance/maintcentral{
+ name = "Central Maintenance"
+ })
+"bmt" = (
+/obj/item/device/radio/off,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/maintcentral{
+ name = "Central Maintenance"
+ })
+"bmu" = (
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=4";
+ dir = 4;
+ freq = 1400;
+ location = "Bridge"
+ },
+/obj/structure/plasticflaps{
+ opacity = 1
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/maintenance/maintcentral{
+ name = "Central Maintenance"
+ })
+"bmv" = (
+/obj/machinery/door/window/westleft{
+ dir = 4;
+ name = "Bridge Deliveries";
+ req_access_txt = "19"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "bridge blast";
+ name = "bridge blast door"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/bridge)
+"bmw" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel/darkblue/side{
+ dir = 8
+ },
+/area/bridge)
+"bmx" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/black,
+/area/bridge)
+"bmy" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/black,
+/area/bridge)
+"bmz" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/black,
+/area/bridge)
+"bmA" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/darkblue/corner,
+/area/bridge)
+"bmB" = (
+/obj/structure/window/reinforced,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/darkblue/side{
+ dir = 2
+ },
+/area/bridge)
+"bmC" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/window/brigdoor{
+ dir = 2;
+ name = "Command Desk";
+ req_access_txt = "19"
+ },
+/turf/open/floor/plasteel/darkblue/side{
+ dir = 2
+ },
+/area/bridge)
+"bmD" = (
+/obj/structure/window/reinforced,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/darkblue/side{
+ dir = 2
+ },
+/area/bridge)
+"bmE" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/darkblue/corner{
+ dir = 8
+ },
+/area/bridge)
+"bmF" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/black,
+/area/bridge)
+"bmG" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/black,
+/area/bridge)
+"bmH" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/structure/chair/office/dark{
+ dir = 1
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 27;
+ pixel_y = 0
+ },
+/obj/machinery/camera{
+ c_tag = "Bridge - Starboard";
+ dir = 8;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/darkblue/side{
+ dir = 4
+ },
+/area/bridge)
+"bmI" = (
+/obj/machinery/door/airlock/command{
+ name = "Captain's Quarters";
+ req_access = null;
+ req_access_txt = "20"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/carpet,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"bmJ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/status_display{
+ density = 0;
+ layer = 4;
+ pixel_x = -32;
+ pixel_y = 0
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/hallway/primary/central)
+"bmK" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/yellow/corner{
+ dir = 2
+ },
+/area/hallway/primary/central)
+"bmL" = (
+/obj/structure/sign/directions/engineering{
+ desc = "A direction sign, pointing out which way the escape arm is.";
+ icon_state = "direction_evac";
+ name = "escape arm"
+ },
+/obj/structure/sign/directions/engineering{
+ desc = "A direction sign, pointing out which way the medical department is.";
+ icon_state = "direction_med";
+ name = "medical department";
+ pixel_y = 8
+ },
+/obj/structure/sign/directions/engineering{
+ desc = "A direction sign, pointing out which way the research department is.";
+ icon_state = "direction_sci";
+ name = "research department";
+ pixel_y = -8
+ },
+/turf/closed/wall,
+/area/storage/art)
+"bmM" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/turf/open/floor/plating,
+/area/storage/art)
+"bmN" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Art Storage"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/storage/art)
+"bmO" = (
+/turf/closed/wall,
+/area/storage/art)
+"bmP" = (
+/turf/closed/wall,
+/area/crew_quarters/bar)
+"bmQ" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "0";
+ req_one_access_txt = "12;25;46"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bmR" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/maintenance/starboard)
+"bmS" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/airlock{
+ name = "Starboard Emergency Storage";
+ req_access_txt = "0"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bmT" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "0";
+ req_one_access_txt = "12;25;46"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bmU" = (
+/obj/structure/sign/directions/engineering{
+ desc = "A direction sign, pointing out which way the engineering department is.";
+ dir = 4;
+ icon_state = "direction_eng";
+ pixel_y = 8
+ },
+/turf/closed/wall,
+/area/maintenance/starboard)
+"bmV" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/caution/corner{
+ dir = 8
+ },
+/area/hallway/primary/starboard)
+"bmW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"bmX" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/sortjunction{
+ dir = 8;
+ icon_state = "pipe-j2s";
+ sortType = 6
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/caution/corner{
+ dir = 4
+ },
+/area/hallway/primary/starboard)
+"bmY" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Engineering Foyer";
+ req_access_txt = "0";
+ req_one_access_txt = "32;19"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"bmZ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"bna" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"bnb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"bnc" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"bnd" = (
+/obj/structure/table/glass,
+/obj/item/device/lightreplacer{
+ pixel_y = 7
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"bne" = (
+/obj/item/weapon/reagent_containers/food/drinks/soda_cans/thirteenloko{
+ pixel_y = 4
+ },
+/obj/structure/table/glass,
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"bnf" = (
+/obj/structure/chair/stool{
+ pixel_y = 8
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"bng" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 27;
+ pixel_y = 0
+ },
+/obj/machinery/camera{
+ c_tag = "Engineering - Foyer - Starboard";
+ dir = 8;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"bnh" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/book/manual/wiki/security_space_law{
+ pixel_x = -3;
+ pixel_y = 5
+ },
+/obj/item/device/taperecorder{
+ pixel_x = -4;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel,
+/area/security/main)
+"bni" = (
+/obj/structure/table,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/syndicatebomb/training,
+/turf/open/floor/plasteel,
+/area/security/main)
+"bnj" = (
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = 21
+ },
+/obj/structure/sign/poster{
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/arrival{
+ dir = 5
+ },
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bnk" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"bnl" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/plasteel/black,
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"bnm" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"bnn" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"bno" = (
+/obj/structure/transit_tube/diagonal,
+/turf/open/space,
+/area/space)
+"bnp" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/transit_tube/curved/flipped,
+/turf/open/floor/plasteel/darkblue/corner{
+ dir = 1
+ },
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"bnq" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/airalarm{
+ pixel_y = 28
+ },
+/turf/open/floor/plasteel/darkblue/corner{
+ dir = 1
+ },
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"bnr" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/turf/open/floor/plasteel/darkblue/corner{
+ dir = 1
+ },
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"bns" = (
+/obj/machinery/door/window{
+ dir = 1;
+ name = "MiniSat Walkway Access";
+ req_access_txt = "0"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/darkblue/corner{
+ dir = 1
+ },
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"bnt" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/darkblue/corner{
+ dir = 1
+ },
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"bnu" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/obj/structure/showcase{
+ density = 0;
+ desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze.";
+ dir = 8;
+ icon = 'icons/mob/robots.dmi';
+ icon_state = "robot_old";
+ name = "Cyborg Statue";
+ pixel_x = 9;
+ pixel_y = 2
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/turf/open/floor/plasteel/darkblue/corner{
+ dir = 1
+ },
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"bnv" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"bnw" = (
+/obj/structure/showcase{
+ density = 0;
+ desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze.";
+ dir = 4;
+ icon = 'icons/mob/robots.dmi';
+ icon_state = "robot_old";
+ name = "Cyborg Statue";
+ pixel_x = -9;
+ pixel_y = 2
+ },
+/obj/machinery/airalarm{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkblue/corner{
+ dir = 1
+ },
+/area/ai_monitored/turret_protected/tcomfoyer{
+ name = "\improper MiniSat Foyer"
+ })
+"bnx" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkblue/corner{
+ dir = 1
+ },
+/area/ai_monitored/turret_protected/tcomfoyer{
+ name = "\improper MiniSat Foyer"
+ })
+"bny" = (
+/obj/machinery/turretid{
+ control_area = "AI Satellite Antechamber";
+ enabled = 1;
+ icon_state = "control_standby";
+ name = "Antechamber Turret Control";
+ pixel_x = 30;
+ pixel_y = 0;
+ req_access = list(65)
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/obj/machinery/ai_slipper{
+ uses = 10
+ },
+/turf/open/floor/plasteel/darkblue/corner{
+ dir = 1
+ },
+/area/ai_monitored/turret_protected/tcomfoyer{
+ name = "\improper MiniSat Foyer"
+ })
+"bnz" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/ai_monitored/turret_protected/aisat_interior)
+"bnA" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/camera{
+ c_tag = "MiniSat - Antechamber";
+ dir = 4;
+ network = list("MiniSat")
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/darkblue/corner{
+ dir = 1
+ },
+/area/ai_monitored/turret_protected/aisat_interior)
+"bnB" = (
+/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
+/turf/open/floor/plasteel/darkblue/corner{
+ dir = 1
+ },
+/area/ai_monitored/turret_protected/aisat_interior)
+"bnC" = (
+/obj/machinery/holopad,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Cyborg"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/aisat_interior)
+"bnD" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkblue/corner{
+ dir = 4
+ },
+/area/ai_monitored/turret_protected/aisat_interior)
+"bnE" = (
+/obj/machinery/power/apc{
+ aidisabled = 0;
+ cell_type = 2500;
+ dir = 4;
+ name = "MiniSat Antechamber APC";
+ pixel_x = 29;
+ pixel_y = 0
+ },
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkblue/corner{
+ dir = 4
+ },
+/area/ai_monitored/turret_protected/aisat_interior)
+"bnF" = (
+/obj/machinery/power/terminal{
+ icon_state = "term";
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/ai_slipper{
+ uses = 10
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/storage/secure{
+ name = "MiniSat Maintenance"
+ })
+"bnG" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/storage/secure{
+ name = "MiniSat Maintenance"
+ })
+"bnH" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/storage/secure{
+ name = "MiniSat Maintenance"
+ })
+"bnI" = (
+/obj/structure/showcase{
+ density = 0;
+ desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze.";
+ dir = 8;
+ icon = 'icons/mob/robots.dmi';
+ icon_state = "robot_old";
+ name = "Cyborg Statue";
+ pixel_x = 9;
+ pixel_y = 2
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/storage/secure{
+ name = "MiniSat Maintenance"
+ })
+"bnJ" = (
+/obj/machinery/door/airlock/titanium{
+ name = "Arrivals Shuttle Airlock"
+ },
+/obj/docking_port/mobile{
+ dwidth = 5;
+ height = 7;
+ id = "arrival";
+ name = "arrival shuttle";
+ port_angle = -90;
+ preferred_direction = 8;
+ width = 15
+ },
+/obj/docking_port/stationary{
+ dwidth = 5;
+ height = 7;
+ id = "arrival_home";
+ name = "port bay 1";
+ width = 15
+ },
+/turf/open/floor/plating,
+/area/shuttle/arrival)
+"bnK" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/machinery/camera{
+ c_tag = "Arrivals - Station Entrance";
+ dir = 4;
+ network = list("SS13")
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bnL" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bnM" = (
+/turf/open/floor/plasteel/arrival{
+ dir = 4
+ },
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bnN" = (
+/obj/structure/table/wood,
+/obj/item/device/flashlight/lamp/green{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/turf/open/floor/plasteel/grimy,
+/area/hallway/primary/port)
+"bnO" = (
+/obj/structure/chair/comfy/beige,
+/turf/open/floor/plasteel/grimy,
+/area/hallway/primary/port)
+"bnP" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/grimy,
+/area/hallway/primary/port)
+"bnQ" = (
+/obj/structure/table/wood,
+/obj/item/weapon/reagent_containers/food/snacks/chips,
+/turf/open/floor/plasteel/grimy,
+/area/hallway/primary/port)
+"bnR" = (
+/obj/machinery/vending/coffee,
+/turf/open/floor/plasteel/black,
+/area/hallway/primary/port)
+"bnS" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 8
+ },
+/area/hallway/primary/port)
+"bnT" = (
+/obj/structure/disposalpipe/junction{
+ dir = 1;
+ icon_state = "pipe-j2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/hallway/primary/port)
+"bnU" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/hallway/primary/port)
+"bnV" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/hallway/primary/port)
+"bnW" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/hallway/primary/port)
+"bnX" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/hallway/primary/port)
+"bnY" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 2
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/hallway/primary/port)
+"bnZ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/camera{
+ c_tag = "Port Primary Hallway - Middle";
+ dir = 2;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/hallway/primary/port)
+"boa" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/hallway/primary/port)
+"bob" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "Port Hallway APC";
+ pixel_x = -1;
+ pixel_y = 26
+ },
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/hallway/primary/port)
+"boc" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/hallway/primary/port)
+"bod" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = 21
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/hallway/primary/port)
+"boe" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/brown/corner{
+ dir = 4
+ },
+/area/hallway/primary/port)
+"bof" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/brown/corner{
+ dir = 1
+ },
+/area/hallway/primary/port)
+"bog" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 2
+ },
+/turf/open/floor/plasteel/brown/corner{
+ dir = 4
+ },
+/area/hallway/primary/port)
+"boh" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/brown/corner{
+ dir = 1
+ },
+/area/hallway/primary/port)
+"boi" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Port Primary Hallway"
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/hallway/primary/port)
+"boj" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"bok" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=4-Customs";
+ location = "3-Central-Port"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bol" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "hop";
+ name = "privacy shutters"
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/heads)
+"bom" = (
+/obj/item/weapon/folder/blue,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/table/wood,
+/obj/item/device/assembly/flash/handheld,
+/turf/open/floor/wood,
+/area/crew_quarters/heads)
+"bon" = (
+/obj/effect/landmark/start{
+ name = "Head of Personnel"
+ },
+/obj/structure/chair/office/dark{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/heads)
+"boo" = (
+/obj/machinery/newscaster/security_unit{
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/obj/machinery/computer/security/mining,
+/turf/open/floor/wood,
+/area/crew_quarters/heads)
+"bop" = (
+/obj/machinery/power/apc{
+ cell_type = 10000;
+ dir = 8;
+ name = "Bridge APC";
+ pixel_x = -27;
+ pixel_y = 0
+ },
+/obj/structure/cable/yellow,
+/obj/machinery/camera{
+ c_tag = "Bridge - Port";
+ dir = 4;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/darkblue/side{
+ dir = 8
+ },
+/area/bridge)
+"boq" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/black,
+/area/bridge)
+"bor" = (
+/turf/open/floor/plasteel/darkblue/corner,
+/area/bridge)
+"bos" = (
+/turf/open/floor/plasteel/darkblue/side{
+ dir = 2
+ },
+/area/bridge)
+"bot" = (
+/turf/open/floor/plasteel/darkblue/side{
+ dir = 6
+ },
+/area/bridge)
+"bou" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/recharger,
+/obj/item/weapon/restraints/handcuffs,
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/black,
+/area/bridge)
+"bov" = (
+/obj/machinery/computer/communications,
+/turf/open/floor/plasteel/black,
+/area/bridge)
+"bow" = (
+/obj/machinery/computer/security/wooden_tv{
+ pixel_x = 1;
+ pixel_y = 6
+ },
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/black,
+/area/bridge)
+"box" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/table/glass,
+/obj/item/weapon/folder/blue{
+ pixel_y = 2
+ },
+/obj/item/weapon/folder/blue{
+ pixel_y = 2
+ },
+/turf/open/floor/plasteel/black,
+/area/bridge)
+"boy" = (
+/turf/open/floor/plasteel/darkblue/side{
+ dir = 10
+ },
+/area/bridge)
+"boz" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/darkblue/corner{
+ dir = 8
+ },
+/area/bridge)
+"boA" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/black,
+/area/bridge)
+"boB" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/darkblue/side{
+ dir = 4
+ },
+/area/bridge)
+"boC" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/item/weapon/storage/fancy/donut_box,
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/black,
+/area/bridge)
+"boD" = (
+/obj/structure/displaycase/captain{
+ pixel_y = 5
+ },
+/obj/machinery/status_display{
+ density = 0;
+ layer = 4;
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"boE" = (
+/obj/structure/sign/map/left{
+ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";
+ icon_state = "map-left-MS";
+ pixel_y = 32
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"boF" = (
+/obj/structure/sign/map/right{
+ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";
+ icon_state = "map-right-MS";
+ pixel_y = 32
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"boG" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/wood,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"boH" = (
+/obj/machinery/computer/communications,
+/obj/item/device/radio/intercom{
+ dir = 8;
+ freerange = 1;
+ name = "Station Intercom (Captain)";
+ pixel_x = 28
+ },
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/obj/machinery/keycard_auth{
+ pixel_x = 24;
+ pixel_y = 24
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"boI" = (
+/obj/structure/rack,
+/obj/item/weapon/cane,
+/obj/item/weapon/reagent_containers/food/snacks/grown/mushroom/glowshroom,
+/turf/open/floor/plating,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"boJ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/item/device/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -28
+ },
+/obj/machinery/camera{
+ c_tag = "Central Primary Hallway - Starboard - Art Storage";
+ dir = 4;
+ network = list("SS13")
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/hallway/primary/central)
+"boK" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/hallway/primary/central)
+"boL" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/storage/art)
+"boM" = (
+/obj/structure/table,
+/obj/item/weapon/hand_labeler,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/storage/art)
+"boN" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/storage/art)
+"boO" = (
+/obj/machinery/light_switch{
+ pixel_x = 27
+ },
+/obj/machinery/photocopier,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/storage/art)
+"boP" = (
+/obj/structure/closet/secure_closet/bar{
+ req_access_txt = "25"
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"boQ" = (
+/obj/machinery/reagentgrinder,
+/obj/structure/table/wood,
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"boR" = (
+/obj/structure/table/wood,
+/obj/item/stack/packageWrap,
+/obj/item/stack/packageWrap,
+/obj/item/weapon/gun/ballistic/revolver/doublebarrel,
+/obj/machinery/camera{
+ c_tag = "Bar - Backroom";
+ dir = 2;
+ network = list("SS13")
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"boS" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/sleep)
+"boT" = (
+/obj/machinery/door/window/southleft{
+ base_state = "left";
+ dir = 2;
+ icon_state = "left";
+ name = "Bar Delivery";
+ req_access_txt = "25"
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/crew_quarters/bar)
+"boU" = (
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=1";
+ dir = 8;
+ freq = 1400;
+ location = "Bar"
+ },
+/obj/structure/plasticflaps{
+ opacity = 1
+ },
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ dir = 1
+ },
+/area/crew_quarters/bar)
+"boV" = (
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"boW" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"boX" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"boY" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"boZ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/space_heater,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bpa" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bpb" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/plating{
+ icon_state = "platingdmg1"
+ },
+/area/maintenance/starboard)
+"bpc" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bpd" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/caution/corner{
+ dir = 8
+ },
+/area/hallway/primary/starboard)
+"bpe" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"bpf" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/caution/corner{
+ dir = 4
+ },
+/area/hallway/primary/starboard)
+"bpg" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"bph" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"bpi" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"bpj" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"bpk" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"bpl" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"bpm" = (
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id = "transittube";
+ name = "Transit Tube Blast Door";
+ opacity = 0
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/engine/break_room)
+"bpn" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/plasteel/black,
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"bpo" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/sign/poster{
+ pixel_y = 32
+ },
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/maintenance/starboard)
+"bpp" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/black,
+/area/engine/break_room)
+"bpq" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"bpr" = (
+/obj/structure/window/reinforced,
+/turf/open/floor/plasteel/black,
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"bps" = (
+/obj/structure/window/reinforced,
+/obj/machinery/light/small,
+/obj/machinery/camera{
+ c_tag = "MiniSat Exterior - Fore";
+ dir = 1;
+ network = list("MiniSat")
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/black,
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"bpt" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/structure/closet/wardrobe/red,
+/turf/open/floor/plasteel/red/side{
+ dir = 6
+ },
+/area/security/checkpoint2{
+ name = "Customs"
+ })
+"bpu" = (
+/turf/closed/wall/r_wall,
+/area/space)
+"bpv" = (
+/obj/structure/sign/securearea{
+ pixel_y = 32
+ },
+/obj/structure/transit_tube/station/reverse/flipped{
+ dir = 1
+ },
+/obj/structure/transit_tube_pod{
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkblue/corner{
+ dir = 4
+ },
+/area/engine/break_room)
+"bpw" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/structure/transit_tube/horizontal,
+/turf/open/space,
+/area/space)
+"bpx" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/structure/transit_tube/crossing/horizontal,
+/turf/open/space,
+/area/space)
+"bpy" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/structure/transit_tube/horizontal,
+/turf/open/space,
+/area/space)
+"bpz" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/structure/transit_tube/junction/flipped{
+ dir = 8
+ },
+/turf/open/space,
+/area/space)
+"bpA" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf/open/space,
+/area/space)
+"bpB" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf/open/space,
+/area/space)
+"bpC" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/structure/transit_tube/station{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"bpD" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plasteel/black,
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"bpE" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 2;
+ on = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/open/floor/plasteel/black,
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"bpF" = (
+/obj/machinery/holopad,
+/obj/structure/cable/yellow{
+ icon_state = "4-8";
+ d1 = 4;
+ d2 = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/black,
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"bpG" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8";
+ d1 = 4;
+ d2 = 8
+ },
+/turf/open/floor/plasteel/black,
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"bpH" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8";
+ d1 = 4;
+ d2 = 8
+ },
+/obj/machinery/ai_slipper{
+ uses = 10
+ },
+/turf/open/floor/plasteel/black,
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"bpI" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8";
+ d1 = 4;
+ d2 = 8
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/hatch{
+ icon_state = "door_closed";
+ name = "MiniSat Foyer";
+ req_one_access_txt = "32;19"
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/tcomfoyer{
+ name = "\improper MiniSat Foyer"
+ })
+"bpJ" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 2;
+ on = 1
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8";
+ d1 = 4;
+ d2 = 8
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/tcomfoyer{
+ name = "\improper MiniSat Foyer"
+ })
+"bpK" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8";
+ d1 = 4;
+ d2 = 8
+ },
+/obj/machinery/holopad,
+/obj/item/device/radio/beacon,
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/tcomfoyer{
+ name = "\improper MiniSat Foyer"
+ })
+"bpL" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8";
+ d1 = 4;
+ d2 = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/tcomfoyer{
+ name = "\improper MiniSat Foyer"
+ })
+"bpM" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8";
+ d1 = 4;
+ d2 = 8
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/hatch{
+ icon_state = "door_closed";
+ name = "MiniSat Antechamber";
+ req_one_access_txt = "32;19"
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/aisat_interior)
+"bpN" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8";
+ d1 = 4;
+ d2 = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/aisat_interior)
+"bpO" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8";
+ d1 = 4;
+ d2 = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/aisat_interior)
+"bpP" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8";
+ d1 = 4;
+ d2 = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/ai_slipper{
+ uses = 10
+ },
+/mob/living/simple_animal/bot/secbot/pingsky,
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/aisat_interior)
+"bpQ" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8";
+ d1 = 4;
+ d2 = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 2;
+ on = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/aisat_interior)
+"bpR" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8";
+ d1 = 4;
+ d2 = 8
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4";
+ d1 = 1;
+ d2 = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/aisat_interior)
+"bpS" = (
+/obj/structure/cable/yellow{
+ icon_state = "4-8";
+ d1 = 4;
+ d2 = 8
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "MiniSat Maintenance";
+ req_access_txt = "32"
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/aisat_interior)
+"bpT" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/storage/secure{
+ name = "MiniSat Maintenance"
+ })
+"bpU" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 2;
+ on = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/storage/secure{
+ name = "MiniSat Maintenance"
+ })
+"bpV" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/storage/secure{
+ name = "MiniSat Maintenance"
+ })
+"bpW" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/storage/secure{
+ name = "MiniSat Maintenance"
+ })
+"bpX" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance_hatch{
+ name = "MiniSat Maintenance";
+ req_access_txt = "32"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/storage/secure{
+ name = "MiniSat Maintenance"
+ })
+"bpY" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 0
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/ai_slipper{
+ uses = 10
+ },
+/turf/open/floor/plasteel/black,
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"bpZ" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 0
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"bqa" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"bqb" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bqc" = (
+/obj/machinery/holopad,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bqd" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "Arrivals APC";
+ pixel_x = 24;
+ pixel_y = 0
+ },
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/open/floor/plasteel/arrival{
+ dir = 4
+ },
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bqe" = (
+/obj/structure/chair/comfy/beige{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Arrivals - Lounge";
+ dir = 4;
+ network = list("SS13")
+ },
+/obj/effect/landmark/start{
+ name = "Assistant"
+ },
+/turf/open/floor/plasteel/grimy,
+/area/hallway/primary/port)
+"bqf" = (
+/turf/open/floor/carpet,
+/area/hallway/primary/port)
+"bqg" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/holopad{
+ pixel_y = -16
+ },
+/turf/open/floor/carpet,
+/area/hallway/primary/port)
+"bqh" = (
+/obj/structure/chair/comfy/beige{
+ dir = 8
+ },
+/turf/open/floor/plasteel/grimy,
+/area/hallway/primary/port)
+"bqi" = (
+/obj/machinery/vending/cola/random,
+/obj/machinery/newscaster{
+ pixel_x = -28;
+ pixel_y = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/hallway/primary/port)
+"bqj" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 8
+ },
+/area/hallway/primary/port)
+"bqk" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"bql" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"bqm" = (
+/obj/machinery/turretid{
+ icon_state = "control_stun";
+ name = "AI Chamber turret control";
+ pixel_x = 3;
+ pixel_y = -23
+ },
+/obj/machinery/door/window{
+ base_state = "leftsecure";
+ dir = 8;
+ obj_integrity = 300;
+ icon_state = "leftsecure";
+ name = "Primary AI Core Access";
+ req_access_txt = "16"
+ },
+/obj/machinery/newscaster/security_unit{
+ pixel_x = 4;
+ pixel_y = 33
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 6
+ },
+/area/ai_monitored/turret_protected/ai)
+"bqn" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"bqo" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"bqp" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"bqq" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"bqr" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"bqs" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"bqt" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/structure/disposalpipe/sortjunction{
+ dir = 8;
+ icon_state = "pipe-j1s";
+ sortType = 3
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"bqu" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"bqv" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"bqw" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"bqx" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Port Primary Hallway"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"bqy" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bqz" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1;
+ scrub_Toxins = 0
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bqA" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/hallway/primary/central)
+"bqB" = (
+/obj/item/weapon/paper_bin{
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/item/weapon/pen,
+/obj/structure/window/reinforced,
+/obj/structure/table/wood,
+/turf/open/floor/wood,
+/area/crew_quarters/heads)
+"bqC" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/window{
+ dir = 2;
+ name = "HoP's Desk";
+ pixel_y = 0;
+ req_access_txt = "57"
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/heads)
+"bqD" = (
+/obj/structure/window/reinforced,
+/obj/machinery/computer/cargo/request,
+/turf/open/floor/wood,
+/area/crew_quarters/heads)
+"bqE" = (
+/obj/machinery/vending/cart{
+ req_access_txt = "57"
+ },
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = 21
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/heads)
+"bqF" = (
+/obj/machinery/status_display{
+ density = 0;
+ layer = 4;
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/darkblue/corner{
+ dir = 4
+ },
+/area/engine/break_room)
+"bqG" = (
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/obj/structure/filingcabinet/chestdrawer{
+ pixel_y = 2
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/heads)
+"bqH" = (
+/turf/closed/wall,
+/area/crew_quarters/heads)
+"bqI" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/darkblue/side{
+ dir = 2
+ },
+/area/bridge)
+"bqJ" = (
+/obj/machinery/light,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/structure/rack,
+/obj/item/weapon/storage/secure/briefcase,
+/obj/item/clothing/mask/cigarette/cigar,
+/turf/open/floor/plasteel/darkblue/side{
+ dir = 1
+ },
+/area/bridge)
+"bqK" = (
+/obj/structure/rack,
+/obj/item/device/aicard,
+/obj/item/device/radio/off,
+/obj/machinery/computer/security/telescreen{
+ dir = 1;
+ name = "MiniSat Monitor";
+ network = list("MiniSat","tcomm");
+ pixel_x = 0;
+ pixel_y = -29
+ },
+/turf/open/floor/plasteel/darkblue/side{
+ dir = 1
+ },
+/area/bridge)
+"bqL" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/cell_charger{
+ pixel_y = 4
+ },
+/obj/structure/table/glass,
+/obj/item/weapon/stock_parts/cell/high{
+ charge = 100;
+ maxcharge = 15000
+ },
+/turf/open/floor/plasteel/black,
+/area/bridge)
+"bqM" = (
+/turf/open/floor/carpet,
+/area/bridge)
+"bqN" = (
+/obj/structure/chair/comfy/black{
+ dir = 1
+ },
+/turf/open/floor/carpet,
+/area/bridge)
+"bqO" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/item/weapon/paper_bin{
+ pixel_x = -2;
+ pixel_y = 8
+ },
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/black,
+/area/bridge)
+"bqP" = (
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = -29
+ },
+/obj/structure/rack,
+/obj/item/device/assembly/signaler,
+/obj/item/device/assembly/signaler,
+/obj/item/device/assembly/timer,
+/turf/open/floor/plasteel/darkblue/side{
+ dir = 1
+ },
+/area/bridge)
+"bqQ" = (
+/obj/machinery/light,
+/obj/structure/rack,
+/obj/item/weapon/storage/toolbox/emergency,
+/obj/item/weapon/storage/toolbox/emergency{
+ pixel_x = -2;
+ pixel_y = -3
+ },
+/obj/item/weapon/wrench,
+/obj/item/device/multitool,
+/obj/machinery/newscaster{
+ pixel_x = 0;
+ pixel_y = -30
+ },
+/turf/open/floor/plasteel/darkblue/side{
+ dir = 1
+ },
+/area/bridge)
+"bqR" = (
+/obj/machinery/light_switch{
+ pixel_x = 8;
+ pixel_y = -26
+ },
+/turf/open/floor/plasteel/darkblue/side{
+ dir = 10
+ },
+/area/bridge)
+"bqS" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/darkblue/side{
+ dir = 2
+ },
+/area/bridge)
+"bqT" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/darkblue/side{
+ dir = 6
+ },
+/area/bridge)
+"bqU" = (
+/obj/structure/fireaxecabinet{
+ pixel_y = -32
+ },
+/obj/item/weapon/paper_bin{
+ pixel_x = -2;
+ pixel_y = 7
+ },
+/obj/item/weapon/pen{
+ pixel_y = 3
+ },
+/obj/machinery/light_switch{
+ pixel_x = 28;
+ pixel_y = 0
+ },
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/black,
+/area/bridge)
+"bqV" = (
+/obj/structure/table/wood,
+/obj/item/weapon/book/manual/wiki/security_space_law,
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Captain's Quarters APC";
+ pixel_x = -24;
+ pixel_y = 0
+ },
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/item/weapon/paper{
+ info = "Congratulations,
Your station has been selected to carry out the Gateway Project.
The equipment will be shipped to you at the start of the next quarter.
You are to prepare a secure location to house the equipment as outlined in the attached documents.
--Nanotrasen Blue Space Research";
+ name = "Confidential Correspondence, Pg 1";
+ pixel_x = 0;
+ pixel_y = 0
+ },
+/obj/item/weapon/coin/plasma,
+/obj/item/weapon/melee/chainofcommand,
+/turf/open/floor/wood,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"bqW" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"bqX" = (
+/obj/structure/table/wood,
+/obj/item/weapon/stamp/captain,
+/obj/machinery/computer/security/wooden_tv,
+/turf/open/floor/wood,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"bqY" = (
+/obj/effect/landmark/start{
+ name = "Captain"
+ },
+/obj/structure/chair/comfy/brown,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/wood,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"bqZ" = (
+/obj/machinery/computer/card,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/requests_console{
+ announcementConsole = 1;
+ department = "Captain's Desk";
+ departmentType = 5;
+ name = "Captain RC";
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"bra" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/hallway/primary/central)
+"brb" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"brc" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/hallway/primary/central)
+"brd" = (
+/obj/structure/table,
+/obj/machinery/power/apc{
+ cell_type = 2500;
+ dir = 8;
+ name = "Art Storage APC";
+ pixel_x = -25;
+ pixel_y = 0
+ },
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/item/stack/cable_coil/random,
+/obj/item/stack/cable_coil/random,
+/obj/item/stack/cable_coil/random,
+/obj/item/stack/cable_coil/random,
+/obj/item/stack/cable_coil/random,
+/turf/open/floor/plasteel,
+/area/storage/art)
+"bre" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel,
+/area/storage/art)
+"brf" = (
+/obj/structure/table,
+/obj/item/weapon/airlock_painter,
+/turf/open/floor/plasteel,
+/area/storage/art)
+"brg" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/item/weapon/vending_refill/cigarette,
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"brh" = (
+/obj/effect/landmark/start{
+ name = "Bartender"
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"bri" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"brj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"brk" = (
+/obj/machinery/light/small,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1;
+ scrub_Toxins = 0
+ },
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = -30
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"brl" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Bar Maintenance";
+ req_access_txt = "25"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/bar)
+"brm" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"brn" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bro" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/sortjunction{
+ dir = 2;
+ icon_state = "pipe-j1s";
+ sortType = 19
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1;
+ initialize_directions = 11
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"brp" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "0";
+ req_one_access_txt = "12;25;46"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"brq" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"brr" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg1"
+ },
+/area/maintenance/starboard)
+"brs" = (
+/obj/item/device/assembly/prox_sensor,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 2;
+ initialize_directions = 11
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"brt" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bru" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"brv" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "0";
+ req_one_access_txt = "12;25;46"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"brw" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"brx" = (
+/obj/machinery/requests_console{
+ department = "AI";
+ departmentType = 5;
+ pixel_x = 30;
+ pixel_y = 30
+ },
+/obj/machinery/ai_slipper{
+ uses = 10
+ },
+/obj/machinery/flasher{
+ id = "AI";
+ pixel_x = 23;
+ pixel_y = -23
+ },
+/turf/open/floor/plasteel/vault,
+/area/ai_monitored/turret_protected/ai)
+"bry" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"brz" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/sign/securearea{
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/black/corner{
+ dir = 2
+ },
+/area/hallway/primary/starboard)
+"brA" = (
+/obj/machinery/vending/coffee,
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/engine/break_room)
+"brB" = (
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_x = 0;
+ pixel_y = -30
+ },
+/obj/machinery/vending/cigarette,
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/engine/break_room)
+"brC" = (
+/obj/machinery/microwave{
+ pixel_x = 0;
+ pixel_y = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Engineering - Foyer - Port";
+ dir = 1;
+ network = list("SS13")
+ },
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/engine/break_room)
+"brD" = (
+/obj/machinery/newscaster{
+ pixel_x = 0;
+ pixel_y = -32
+ },
+/obj/item/weapon/storage/box/donkpockets,
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/engine/break_room)
+"brE" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"brF" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "Engineering Foyer APC";
+ pixel_x = -1;
+ pixel_y = -26
+ },
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/light,
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"brG" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"brH" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"brI" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"brJ" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 0
+ },
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/obj/structure/transit_tube/curved{
+ dir = 8
+ },
+/turf/open/floor/plasteel/darkblue/corner{
+ dir = 4
+ },
+/area/engine/break_room)
+"brK" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/hatch{
+ name = "MiniSat Access";
+ req_one_access_txt = "32;19"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/black,
+/area/engine/break_room)
+"brL" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/engine/break_room)
+"brM" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/transit_tube/curved{
+ dir = 4
+ },
+/turf/open/space,
+/area/space)
+"brN" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 0
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/structure/table/glass,
+/obj/item/weapon/phone{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/weapon/cigbutt/cigarbutt{
+ pixel_x = 5;
+ pixel_y = -1
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/engine/break_room)
+"brO" = (
+/obj/structure/transit_tube/diagonal/topleft,
+/turf/open/space,
+/area/space)
+"brP" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/transit_tube/curved{
+ dir = 1
+ },
+/turf/open/floor/plasteel/darkblue/corner{
+ dir = 8
+ },
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"brQ" = (
+/obj/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/obj/machinery/light/small,
+/obj/machinery/camera{
+ c_tag = "MiniSat Exterior Access";
+ dir = 1;
+ network = list("MiniSat")
+ },
+/obj/machinery/power/apc{
+ aidisabled = 0;
+ dir = 2;
+ name = "MiniSat Exterior APC";
+ pixel_y = -24
+ },
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/open/floor/plasteel/darkblue/corner{
+ dir = 8
+ },
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"brR" = (
+/obj/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/darkblue/corner{
+ dir = 8
+ },
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"brS" = (
+/obj/machinery/door/window{
+ dir = 2;
+ name = "MiniSat Walkway Access";
+ req_access_txt = "0"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
+/turf/open/floor/plasteel/darkblue/corner{
+ dir = 8
+ },
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"brT" = (
+/obj/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkblue/corner{
+ dir = 8
+ },
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"brU" = (
+/obj/structure/window/reinforced,
+/obj/structure/showcase{
+ density = 0;
+ desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze.";
+ dir = 8;
+ icon = 'icons/mob/robots.dmi';
+ icon_state = "robot_old";
+ name = "Cyborg Statue";
+ pixel_x = 9;
+ pixel_y = 2
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/darkblue/corner{
+ dir = 8
+ },
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"brV" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"brW" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = -28
+ },
+/turf/open/floor/plasteel/darkblue/corner{
+ dir = 8
+ },
+/area/ai_monitored/turret_protected/tcomfoyer{
+ name = "\improper MiniSat Foyer"
+ })
+"brX" = (
+/obj/machinery/ai_status_display{
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/obj/machinery/porta_turret/ai{
+ dir = 2
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for watching the RD's goons from the safety of his office.";
+ dir = 4;
+ name = "Research Monitor";
+ network = list("RD");
+ pixel_x = -28;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 1
+ },
+/area/ai_monitored/turret_protected/aisat_interior)
+"brY" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ aidisabled = 0;
+ cell_type = 5000;
+ dir = 2;
+ name = "MiniSat Foyer APC";
+ pixel_x = 0;
+ pixel_y = -29
+ },
+/obj/structure/cable/yellow,
+/obj/machinery/camera/motion{
+ c_tag = "MiniSat Foyer";
+ dir = 8;
+ network = list("MiniSat")
+ },
+/turf/open/floor/plasteel/darkblue/corner{
+ dir = 8
+ },
+/area/ai_monitored/turret_protected/tcomfoyer{
+ name = "\improper MiniSat Foyer"
+ })
+"brZ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/ai_monitored/turret_protected/aisat_interior)
+"bsa" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/airalarm{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22
+ },
+/mob/living/simple_animal/bot/floorbot,
+/turf/open/floor/plasteel/darkblue/corner{
+ dir = 8
+ },
+/area/ai_monitored/turret_protected/aisat_interior)
+"bsb" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/darkblue/corner{
+ dir = 8
+ },
+/area/ai_monitored/turret_protected/aisat_interior)
+"bsc" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/aisat_interior)
+"bsd" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/turf/open/floor/plasteel/darkblue/corner,
+/area/ai_monitored/turret_protected/aisat_interior)
+"bse" = (
+/obj/machinery/status_display{
+ density = 0;
+ layer = 4;
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/obj/machinery/porta_turret/ai{
+ dir = 2
+ },
+/obj/machinery/computer/security/telescreen{
+ dir = 8;
+ name = "MiniSat Monitor";
+ network = list("MiniSat","tcomm");
+ pixel_x = 28;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 4
+ },
+/area/ai_monitored/turret_protected/aisat_interior)
+"bsf" = (
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkblue/corner{
+ dir = 8
+ },
+/area/ai_monitored/turret_protected/tcomfoyer{
+ name = "\improper MiniSat Foyer"
+ })
+"bsg" = (
+/obj/machinery/computer/station_alert,
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/obj/machinery/computer/security/telescreen{
+ dir = 1;
+ name = "MiniSat Monitor";
+ network = list("MiniSat","tcomm");
+ pixel_x = 0;
+ pixel_y = -29
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/storage/secure{
+ name = "MiniSat Maintenance"
+ })
+"bsh" = (
+/obj/structure/table,
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = -28
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/computer/monitor,
+/obj/structure/cable/yellow,
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/storage/secure{
+ name = "MiniSat Maintenance"
+ })
+"bsi" = (
+/obj/machinery/camera/motion{
+ c_tag = "MiniSat Maintenance";
+ dir = 8;
+ network = list("MiniSat")
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9;
+ pixel_y = 0
+ },
+/obj/structure/rack,
+/obj/item/weapon/storage/toolbox/electrical{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/toolbox/mechanical,
+/obj/item/device/multitool,
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/storage/secure{
+ name = "MiniSat Maintenance"
+ })
+"bsj" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/space,
+/area/space)
+"bsk" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bsl" = (
+/obj/machinery/vending/cola/random,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bsm" = (
+/obj/item/device/radio/beacon,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bsn" = (
+/obj/structure/closet/firecloset,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bso" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bsp" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/newscaster{
+ pixel_x = 28;
+ pixel_y = 1
+ },
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/turf/open/floor/plasteel/arrival{
+ dir = 4
+ },
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bsq" = (
+/obj/structure/chair/comfy/beige{
+ dir = 4
+ },
+/turf/open/floor/plasteel/grimy,
+/area/hallway/primary/port)
+"bsr" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/carpet,
+/area/hallway/primary/port)
+"bss" = (
+/obj/structure/chair/comfy/beige{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/obj/effect/landmark/start{
+ name = "Assistant"
+ },
+/turf/open/floor/plasteel/grimy,
+/area/hallway/primary/port)
+"bst" = (
+/obj/machinery/vending/snack/random,
+/turf/open/floor/plasteel/black,
+/area/hallway/primary/port)
+"bsu" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 8
+ },
+/area/hallway/primary/port)
+"bsv" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/hallway/primary/port)
+"bsw" = (
+/obj/item/device/radio/intercom{
+ broadcasting = 0;
+ listening = 1;
+ name = "Station Intercom (General)";
+ pixel_y = -28
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/hallway/primary/port)
+"bsx" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/hallway/primary/port)
+"bsy" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/hallway/primary/port)
+"bsz" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 2;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/hallway/primary/port)
+"bsA" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 0;
+ pixel_y = -30
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/hallway/primary/port)
+"bsB" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/hallway/primary/port)
+"bsC" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/hallway/primary/port)
+"bsD" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/hallway/primary/port)
+"bsE" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/status_display{
+ density = 0;
+ layer = 4;
+ pixel_x = 0;
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/hallway/primary/port)
+"bsF" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/hallway/primary/port)
+"bsG" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/light,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/hallway/primary/port)
+"bsH" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Port Primary Hallway - Starboard";
+ dir = 1;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/hallway/primary/port)
+"bsI" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 2;
+ initialize_directions = 11
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 0;
+ pixel_y = -30
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/hallway/primary/port)
+"bsJ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Port Primary Hallway"
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/hallway/primary/port)
+"bsK" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/hallway/primary/central)
+"bsL" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=7-Command-Starboard";
+ location = "6-Port-Central"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bsM" = (
+/obj/machinery/button/door{
+ id = "hop";
+ name = "Privacy Shutters Control";
+ pixel_x = -24;
+ pixel_y = -6;
+ req_access_txt = "28"
+ },
+/obj/machinery/light_switch{
+ pixel_x = -25;
+ pixel_y = 5
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/heads)
+"bsN" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/heads)
+"bsO" = (
+/mob/living/simple_animal/pet/dog/corgi/Ian,
+/turf/open/floor/carpet,
+/area/crew_quarters/heads)
+"bsP" = (
+/obj/machinery/status_display{
+ density = 0;
+ layer = 4;
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/obj/structure/bed/dogbed{
+ anchored = 1;
+ desc = "Ian's bed! Looks comfy.";
+ name = "Ian's bed";
+ pixel_y = 2
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/heads)
+"bsQ" = (
+/turf/open/floor/carpet,
+/area/crew_quarters/heads)
+"bsR" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 2;
+ on = 1
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/heads)
+"bsS" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_command{
+ name = "Bridge";
+ req_access_txt = "19"
+ },
+/turf/open/floor/plasteel/darkblue/side{
+ dir = 1
+ },
+/area/bridge)
+"bsT" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_command{
+ name = "Bridge";
+ req_access_txt = "19"
+ },
+/turf/open/floor/plasteel/darkblue/side{
+ dir = 1
+ },
+/area/bridge)
+"bsU" = (
+/turf/closed/wall,
+/area/bridge)
+"bsV" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/light_switch{
+ pixel_y = -25
+ },
+/obj/machinery/vending/cola/random,
+/turf/open/floor/plasteel/black,
+/area/bridge)
+"bsW" = (
+/obj/machinery/button/door{
+ id = "bridge blast";
+ name = "Bridge Access Blast Door Control";
+ pixel_x = -1;
+ pixel_y = -24;
+ req_access_txt = "19"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
+ },
+/obj/machinery/button/door{
+ id = "council blast";
+ name = "Council Chamber Blast Door Control";
+ pixel_x = -1;
+ pixel_y = -34;
+ req_access_txt = "19"
+ },
+/obj/machinery/camera{
+ c_tag = "Bridge - Command Chair";
+ dir = 1;
+ network = list("SS13")
+ },
+/turf/open/floor/carpet,
+/area/bridge)
+"bsX" = (
+/obj/machinery/holopad,
+/turf/open/floor/carpet,
+/area/bridge)
+"bsY" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 2;
+ on = 1
+ },
+/obj/machinery/button/door{
+ id = "evashutter";
+ name = "E.V.A. Storage Shutter Control";
+ pixel_x = 0;
+ pixel_y = -24;
+ req_access_txt = "19"
+ },
+/obj/machinery/button/door{
+ id = "gateshutter";
+ name = "Gateway Shutter Control";
+ pixel_x = 0;
+ pixel_y = -34;
+ req_access_txt = "19"
+ },
+/turf/open/floor/carpet,
+/area/bridge)
+"bsZ" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 0
+ },
+/obj/machinery/vending/snack/random,
+/turf/open/floor/plasteel/black,
+/area/bridge)
+"bta" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_command{
+ name = "Bridge";
+ req_access_txt = "19"
+ },
+/turf/open/floor/plasteel/darkblue/side{
+ dir = 1
+ },
+/area/bridge)
+"btb" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_command{
+ name = "Bridge";
+ req_access_txt = "19"
+ },
+/turf/open/floor/plasteel/darkblue/side{
+ dir = 1
+ },
+/area/bridge)
+"btc" = (
+/obj/structure/table/wood,
+/obj/structure/window/reinforced,
+/obj/machinery/light_switch{
+ pixel_x = -28;
+ pixel_y = 0
+ },
+/obj/item/weapon/storage/secure/briefcase{
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/item/weapon/storage/lockbox/medal{
+ pixel_y = 0
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"btd" = (
+/obj/machinery/door/window{
+ name = "Captain's Desk";
+ req_access_txt = "20"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"bte" = (
+/obj/structure/table/wood,
+/obj/item/weapon/paper_bin{
+ pixel_x = 1;
+ pixel_y = 9
+ },
+/obj/item/weapon/pen,
+/obj/structure/window/reinforced,
+/turf/open/floor/wood,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"btf" = (
+/obj/structure/table/wood,
+/obj/item/weapon/folder/blue,
+/obj/machinery/door/window{
+ base_state = "right";
+ icon_state = "right";
+ name = "Captain's Desk";
+ req_access_txt = "20"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/item/weapon/stamp/captain,
+/turf/open/floor/wood,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"btg" = (
+/obj/structure/table/wood,
+/obj/item/weapon/hand_tele,
+/obj/structure/window/reinforced,
+/obj/item/device/radio/intercom{
+ dir = 0;
+ name = "Station Intercom (General)";
+ pixel_x = 27;
+ pixel_y = 0
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"bth" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/maintcentral{
+ name = "Central Maintenance"
+ })
+"bti" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "0";
+ req_one_access_txt = "20;12"
+ },
+/turf/open/floor/plating,
+/area/maintenance/maintcentral{
+ name = "Central Maintenance"
+ })
+"btj" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/hallway/primary/central)
+"btk" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"btl" = (
+/obj/structure/table,
+/obj/item/weapon/canvas/twentythreeXtwentythree,
+/obj/item/weapon/canvas/twentythreeXtwentythree,
+/obj/item/weapon/canvas/twentythreeXnineteen,
+/obj/item/weapon/canvas/twentythreeXnineteen,
+/obj/item/weapon/canvas/nineteenXnineteen,
+/obj/item/weapon/canvas/nineteenXnineteen,
+/obj/item/weapon/storage/crayons,
+/obj/item/weapon/storage/crayons,
+/obj/item/weapon/storage/crayons,
+/turf/open/floor/plasteel,
+/area/storage/art)
+"btm" = (
+/obj/structure/table,
+/obj/item/device/camera,
+/turf/open/floor/plasteel,
+/area/storage/art)
+"btn" = (
+/obj/structure/table,
+/obj/item/device/camera_film,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 28
+ },
+/turf/open/floor/plasteel,
+/area/storage/art)
+"bto" = (
+/obj/structure/reagent_dispensers/beerkeg,
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"btp" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 2;
+ on = 1
+ },
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"btq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/closet/gmcloset,
+/obj/item/weapon/wrench,
+/obj/item/stack/sheet/glass{
+ amount = 30
+ },
+/obj/item/stack/sheet/metal{
+ amount = 30
+ },
+/obj/item/stack/cable_coil/random,
+/obj/item/stack/cable_coil/random,
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"btr" = (
+/obj/machinery/chem_master/condimaster{
+ desc = "Looks like a knock-off chem-master. Perhaps useful for separating liquids when mixing drinks precisely. Also dispenses condiments.";
+ name = "HoochMaster Deluxe";
+ pixel_x = -4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"bts" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"btt" = (
+/obj/item/weapon/stock_parts/cell/high{
+ charge = 100;
+ maxcharge = 15000
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg2"
+ },
+/area/maintenance/starboard)
+"btu" = (
+/obj/item/weapon/storage/toolbox/emergency,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"btv" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/item/weapon/cigbutt,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"btw" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/starboard)
+"btx" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/caution{
+ dir = 8
+ },
+/area/hallway/primary/starboard)
+"bty" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/caution{
+ dir = 4
+ },
+/area/hallway/primary/starboard)
+"btz" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Engineering Foyer Maintenance";
+ req_access_txt = "0";
+ req_one_access_txt = "32;19"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/engine/break_room)
+"btA" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/caution{
+ dir = 2
+ },
+/area/engine/break_room)
+"btB" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/caution{
+ dir = 2
+ },
+/area/engine/break_room)
+"btC" = (
+/obj/machinery/requests_console{
+ announcementConsole = 1;
+ department = "Head of Personnel's Desk";
+ departmentType = 5;
+ name = "Head of Personnel RC";
+ pixel_y = 30
+ },
+/obj/machinery/pdapainter{
+ pixel_y = 2
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/heads)
+"btD" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/sign/securearea{
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"btE" = (
+/obj/effect/landmark{
+ name = "revenantspawn"
+ },
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = -28
+ },
+/obj/structure/chair/office/dark{
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkblue/corner,
+/area/engine/break_room)
+"btF" = (
+/obj/machinery/airalarm{
+ dir = 4;
+ locked = 0;
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/turf/open/floor/plasteel/black,
+/area/engine/break_room)
+"btG" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 0
+ },
+/obj/structure/table/glass,
+/obj/item/weapon/folder/blue{
+ pixel_y = 3
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/item/weapon/pen,
+/obj/machinery/computer/security/telescreen{
+ dir = 1;
+ name = "MiniSat Monitor";
+ network = list("MiniSat","tcomm");
+ pixel_x = 0;
+ pixel_y = -28
+ },
+/turf/open/floor/plasteel/darkblue/corner,
+/area/engine/break_room)
+"btH" = (
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "Head of Personnel APC";
+ pixel_y = 24
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/heads)
+"btI" = (
+/obj/structure/lattice,
+/obj/structure/transit_tube/curved{
+ dir = 4
+ },
+/turf/open/space,
+/area/space)
+"btJ" = (
+/obj/structure/lattice,
+/obj/structure/transit_tube/curved/flipped{
+ dir = 8
+ },
+/turf/open/space,
+/area/space)
+"btK" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/obj/structure/lattice,
+/turf/open/space,
+/area/space)
+"btL" = (
+/turf/closed/wall/r_wall,
+/area/tcommsat/computer{
+ name = "\improper Telecoms Control Room"
+ })
+"btM" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall/r_wall,
+/area/tcommsat/computer{
+ name = "\improper Telecoms Control Room"
+ })
+"btN" = (
+/obj/machinery/door/airlock/hatch{
+ name = "Telecoms Control Room";
+ req_one_access_txt = "19; 61"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/tcommsat/computer{
+ name = "\improper Telecoms Control Room"
+ })
+"btO" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"btP" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"btQ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"btR" = (
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-18";
+ layer = 4.1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"btS" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"btT" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"btU" = (
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-08";
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/grimy,
+/area/hallway/primary/port)
+"btV" = (
+/obj/structure/chair/comfy/beige{
+ dir = 1
+ },
+/turf/open/floor/plasteel/grimy,
+/area/hallway/primary/port)
+"btW" = (
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-03";
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/grimy,
+/area/hallway/primary/port)
+"btX" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Port Primary Hallway - Port";
+ dir = 4;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/black,
+/area/hallway/primary/port)
+"btY" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 8
+ },
+/area/hallway/primary/port)
+"btZ" = (
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 4
+ },
+/area/hallway/primary/port)
+"bua" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/plasteel/vault,
+/area/hallway/primary/port)
+"bub" = (
+/obj/structure/closet/emcloset,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/vault,
+/area/hallway/primary/port)
+"buc" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/plasteel/vault,
+/area/hallway/primary/port)
+"bud" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "0";
+ req_one_access_txt = "12;27;37"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bue" = (
+/turf/closed/wall,
+/area/library)
+"buf" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/plasteel/black,
+/area/hallway/primary/central)
+"bug" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/airlock/glass{
+ name = "Library"
+ },
+/turf/open/floor/wood,
+/area/library)
+"buh" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Library"
+ },
+/turf/open/floor/wood,
+/area/library)
+"bui" = (
+/obj/structure/sign/directions/engineering{
+ desc = "A direction sign, pointing out which way the escape arm is.";
+ icon_state = "direction_evac";
+ name = "escape arm"
+ },
+/obj/structure/sign/directions/engineering{
+ desc = "A direction sign, pointing out which way the medical department is.";
+ icon_state = "direction_med";
+ name = "medical department";
+ pixel_y = 8
+ },
+/obj/structure/sign/directions/engineering{
+ desc = "A direction sign, pointing out which way the research department is.";
+ icon_state = "direction_sci";
+ name = "research department";
+ pixel_y = -8
+ },
+/turf/closed/wall,
+/area/library)
+"buj" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/hallway/primary/central)
+"buk" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/sortjunction{
+ dir = 1;
+ icon_state = "pipe-j1s";
+ sortType = 15
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bul" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/hallway/primary/central)
+"bum" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command{
+ name = "Head of Personnel";
+ req_access = null;
+ req_access_txt = "57"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/heads)
+"bun" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/heads)
+"buo" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/heads)
+"bup" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/heads)
+"buq" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/holopad,
+/turf/open/floor/carpet,
+/area/crew_quarters/heads)
+"bur" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/heads)
+"bus" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/heads)
+"but" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/heads)
+"buu" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command{
+ name = "Head of Personnel";
+ req_access = null;
+ req_access_txt = "57"
+ },
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/heads)
+"buv" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/darkblue/corner,
+/area/bridge)
+"buw" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/black,
+/area/bridge)
+"bux" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/bridge)
+"buy" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/bookcase,
+/turf/open/floor/wood,
+/area/bridge)
+"buz" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/closed/wall,
+/area/bridge)
+"buA" = (
+/obj/machinery/door/airlock/command{
+ name = "Command Desk";
+ req_access = null;
+ req_access_txt = "19"
+ },
+/turf/open/floor/plasteel/vault,
+/area/bridge)
+"buB" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall,
+/area/bridge)
+"buC" = (
+/obj/structure/bookcase,
+/turf/open/floor/wood,
+/area/bridge)
+"buD" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/item/device/radio/intercom{
+ dir = 0;
+ name = "Station Intercom (General)";
+ pixel_x = -26;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/darkblue/corner,
+/area/bridge)
+"buE" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/black,
+/area/bridge)
+"buF" = (
+/obj/machinery/vending/boozeomat,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"buG" = (
+/obj/machinery/holopad{
+ pixel_x = 9;
+ pixel_y = -9
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"buH" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"buI" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/carpet,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"buJ" = (
+/obj/machinery/camera{
+ c_tag = "Captain's Office";
+ dir = 8;
+ network = list("SS13")
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"buK" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/camera{
+ c_tag = "Captain's Office - Emergency Escape";
+ dir = 4;
+ network = list("SS13")
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg2"
+ },
+/area/maintenance/maintcentral{
+ name = "Central Maintenance"
+ })
+"buL" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/hallway/primary/central)
+"buM" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 27;
+ pixel_y = 0
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/hallway/primary/central)
+"buN" = (
+/obj/machinery/vending/boozeomat,
+/turf/closed/wall,
+/area/crew_quarters/bar)
+"buO" = (
+/obj/machinery/door/airlock{
+ name = "Bar Storage";
+ req_access_txt = "25"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel{
+ icon_state = "wood"
+ },
+/area/crew_quarters/bar)
+"buP" = (
+/obj/machinery/computer/slot_machine{
+ pixel_y = 2
+ },
+/obj/structure/sign/barsign{
+ pixel_y = 32
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/bar)
+"buQ" = (
+/obj/machinery/computer/slot_machine{
+ pixel_y = 2
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/bar)
+"buR" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"buS" = (
+/obj/machinery/disposal/bin{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/structure/disposalpipe/trunk,
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"buT" = (
+/obj/machinery/computer/arcade,
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"buU" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/canister/air,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"buV" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/plating{
+ icon_state = "platingdmg2"
+ },
+/area/maintenance/starboard)
+"buW" = (
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ icon_state = "connector_map";
+ dir = 8
+ },
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"buX" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"buY" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "0";
+ req_one_access_txt = "12;25;46"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"buZ" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 2;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/caution{
+ dir = 8
+ },
+/area/hallway/primary/starboard)
+"bva" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"bvb" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/caution{
+ dir = 4
+ },
+/area/hallway/primary/starboard)
+"bvc" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bvd" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bve" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg2"
+ },
+/area/maintenance/starboard)
+"bvf" = (
+/obj/item/device/radio/intercom{
+ broadcasting = 0;
+ freerange = 1;
+ listening = 1;
+ name = "Common Channel";
+ pixel_x = -27;
+ pixel_y = -7
+ },
+/obj/item/device/radio/intercom{
+ anyai = 1;
+ freerange = 1;
+ listening = 0;
+ name = "Custom Channel";
+ pixel_x = 0;
+ pixel_y = -27
+ },
+/obj/item/device/radio/intercom{
+ anyai = 1;
+ broadcasting = 0;
+ freerange = 1;
+ frequency = 1447;
+ name = "Private Channel";
+ pixel_x = 27;
+ pixel_y = -7
+ },
+/obj/effect/landmark/start{
+ name = "AI"
+ },
+/obj/machinery/button/door{
+ id = "AI Core shutters";
+ name = "AI Core shutters control";
+ pixel_x = 24;
+ pixel_y = -22;
+ req_access_txt = "16"
+ },
+/obj/machinery/button/door{
+ id = "AI Chamber entrance shutters";
+ name = "AI Chamber entrance shutters control";
+ pixel_x = -23;
+ pixel_y = -23;
+ req_access_txt = "16"
+ },
+/turf/open/floor/greengrid,
+/area/ai_monitored/turret_protected/ai)
+"bvg" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bvh" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg1"
+ },
+/area/maintenance/starboard)
+"bvi" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plating,
+/area/engine/break_room)
+"bvj" = (
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id = "atmos";
+ name = "Atmos Blast Door";
+ opacity = 0
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/engine/break_room)
+"bvk" = (
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id = "atmos";
+ name = "Atmos Blast Door";
+ opacity = 0
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/engine/break_room)
+"bvl" = (
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id = "atmos";
+ name = "Atmos Blast Door";
+ opacity = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/engine/break_room)
+"bvm" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/engine/break_room)
+"bvn" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/caution{
+ dir = 2
+ },
+/area/engine/break_room)
+"bvo" = (
+/obj/structure/table/glass,
+/obj/item/weapon/wrench,
+/obj/item/weapon/crowbar,
+/obj/item/device/flashlight{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/turf/open/floor/plasteel/black,
+/area/engine/break_room)
+"bvp" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/machinery/camera{
+ c_tag = "Engineering - Transit Tube Access";
+ dir = 8;
+ network = list("SS13")
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 2
+ },
+/turf/open/floor/plasteel/black,
+/area/engine/break_room)
+"bvq" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall/r_wall,
+/area/engine/break_room)
+"bvr" = (
+/obj/structure/table/glass,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/item/weapon/tank/internals/emergency_oxygen{
+ pixel_x = -8;
+ pixel_y = 0
+ },
+/obj/item/clothing/mask/breath{
+ pixel_x = 4;
+ pixel_y = 0
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -26;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/black,
+/area/engine/break_room)
+"bvs" = (
+/obj/machinery/door/airlock/hatch{
+ icon_state = "door_closed";
+ name = "MiniSat Space Access Airlock";
+ req_one_access_txt = "32;19"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/engine/break_room)
+"bvt" = (
+/turf/closed/wall,
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"bvu" = (
+/obj/structure/table/wood,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/item/device/radio/off{
+ pixel_y = 4
+ },
+/obj/item/weapon/screwdriver{
+ pixel_y = 10
+ },
+/turf/open/floor/plasteel/grimy,
+/area/tcommsat/computer{
+ name = "\improper Telecoms Control Room"
+ })
+"bvv" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/engine/break_room)
+"bvw" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/showcase{
+ density = 0;
+ desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze.";
+ dir = 2;
+ icon = 'icons/mob/robots.dmi';
+ icon_state = "robot_old";
+ name = "Cyborg Statue";
+ pixel_x = 0;
+ pixel_y = 20
+ },
+/turf/open/floor/plasteel/grimy,
+/area/tcommsat/computer{
+ name = "\improper Telecoms Control Room"
+ })
+"bvx" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/grimy,
+/area/tcommsat/computer{
+ name = "\improper Telecoms Control Room"
+ })
+"bvy" = (
+/obj/machinery/light_switch{
+ pixel_x = 0;
+ pixel_y = 28
+ },
+/obj/structure/showcase{
+ density = 0;
+ desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze.";
+ dir = 2;
+ icon = 'icons/mob/robots.dmi';
+ icon_state = "robot_old";
+ name = "Cyborg Statue";
+ pixel_x = 0;
+ pixel_y = 20
+ },
+/turf/open/floor/plasteel/grimy,
+/area/tcommsat/computer{
+ name = "\improper Telecoms Control Room"
+ })
+"bvz" = (
+/obj/structure/table/wood,
+/obj/machinery/ai_status_display{
+ pixel_x = 0;
+ pixel_y = 31
+ },
+/obj/item/device/flashlight/lamp,
+/turf/open/floor/plasteel/grimy,
+/area/tcommsat/computer{
+ name = "\improper Telecoms Control Room"
+ })
+"bvA" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ freerange = 1;
+ name = "Station Intercom (Telecoms)";
+ pixel_x = 0;
+ pixel_y = 30
+ },
+/obj/structure/table/wood,
+/obj/item/weapon/phone{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/weapon/cigbutt/cigarbutt{
+ pixel_x = 5;
+ pixel_y = -1
+ },
+/turf/open/floor/plasteel/grimy,
+/area/tcommsat/computer{
+ name = "\improper Telecoms Control Room"
+ })
+"bvB" = (
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-20";
+ layer = 4.1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bvC" = (
+/obj/structure/chair,
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bvD" = (
+/obj/structure/chair,
+/obj/effect/landmark/start{
+ name = "Assistant"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bvE" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bvF" = (
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bvG" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bvH" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bvI" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bvJ" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bvK" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bvL" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 2;
+ initialize_directions = 11
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bvM" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/arrival{
+ dir = 4
+ },
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bvN" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"bvO" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 9
+ },
+/area/hallway/primary/port)
+"bvP" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 1
+ },
+/area/hallway/primary/port)
+"bvQ" = (
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=6-Port-Central";
+ location = "5-Customs"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1;
+ initialize_directions = 11
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 1
+ },
+/area/hallway/primary/port)
+"bvR" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 1
+ },
+/area/hallway/primary/port)
+"bvS" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 5
+ },
+/area/hallway/primary/port)
+"bvT" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/toxins/xenobiology)
+"bvU" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4;
+ initialize_directions = 11
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/hallway/primary/port)
+"bvV" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 27;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 4
+ },
+/area/hallway/primary/port)
+"bvW" = (
+/turf/closed/wall,
+/area/crew_quarters/toilet{
+ name = "\improper Auxiliary Restrooms"
+ })
+"bvX" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall,
+/area/crew_quarters/toilet{
+ name = "\improper Auxiliary Restrooms"
+ })
+"bvY" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bvZ" = (
+/obj/structure/closet,
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/item/weapon/poster/contraband,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bwa" = (
+/obj/structure/table/wood,
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_x = -32;
+ pixel_y = 0
+ },
+/obj/effect/decal/cleanable/cobweb,
+/obj/item/device/flashlight/lamp/green{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/turf/open/floor/wood,
+/area/library)
+"bwb" = (
+/obj/structure/table/wood,
+/obj/machinery/computer/libraryconsole,
+/turf/open/floor/wood,
+/area/library)
+"bwc" = (
+/turf/open/floor/carpet,
+/area/library)
+"bwd" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/carpet,
+/area/library)
+"bwe" = (
+/obj/structure/chair/comfy/black{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/library)
+"bwf" = (
+/obj/structure/table/wood,
+/obj/item/device/flashlight/lamp/green{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_y = 30
+ },
+/turf/open/floor/plasteel/cult{
+ dir = 2
+ },
+/area/library)
+"bwg" = (
+/obj/structure/table/wood,
+/obj/machinery/newscaster{
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/obj/item/weapon/folder,
+/obj/item/weapon/folder,
+/turf/open/floor/plasteel/cult{
+ dir = 2
+ },
+/area/library)
+"bwh" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/hallway/primary/central)
+"bwi" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/heads)
+"bwj" = (
+/obj/item/weapon/hand_labeler,
+/obj/item/stack/packageWrap,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/table/wood,
+/turf/open/floor/wood,
+/area/crew_quarters/heads)
+"bwk" = (
+/obj/structure/closet/secure_closet/hop,
+/turf/open/floor/wood,
+/area/crew_quarters/heads)
+"bwl" = (
+/obj/machinery/door/airlock/hatch{
+ icon_state = "door_closed";
+ name = "MiniSat Space Access Airlock";
+ req_one_access_txt = "32;19"
+ },
+/turf/open/floor/plasteel/black,
+/area/engine/break_room)
+"bwm" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/computer/secure_data,
+/turf/open/floor/wood,
+/area/crew_quarters/heads)
+"bwn" = (
+/obj/machinery/computer/card,
+/turf/open/floor/wood,
+/area/crew_quarters/heads)
+"bwo" = (
+/obj/structure/chair/office/dark,
+/obj/effect/landmark/start{
+ name = "Head of Personnel"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/light_switch{
+ pixel_x = 38;
+ pixel_y = -35
+ },
+/obj/machinery/button/door{
+ id = "hopqueue";
+ name = "Queue Shutters Control";
+ pixel_x = 25;
+ pixel_y = -36;
+ req_access_txt = "28"
+ },
+/obj/machinery/button/door{
+ id = "hop";
+ name = "Privacy Shutters Control";
+ pixel_x = 25;
+ pixel_y = -26;
+ req_access_txt = "28"
+ },
+/obj/machinery/button/flasher{
+ id = "hopflash";
+ pixel_x = 38;
+ pixel_y = -25
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/heads)
+"bwp" = (
+/obj/structure/table/wood,
+/obj/item/weapon/paper_bin{
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/item/weapon/stamp/hop{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/heads)
+"bwq" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/darkblue/corner,
+/area/bridge)
+"bwr" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/machinery/camera{
+ c_tag = "Bridge - Port Access";
+ dir = 8;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/darkblue/corner{
+ dir = 1
+ },
+/area/bridge)
+"bws" = (
+/obj/structure/table/wood,
+/obj/item/device/flashlight/lamp/green{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/turf/open/floor/plasteel/black,
+/area/bridge)
+"bwt" = (
+/obj/structure/table/wood,
+/obj/item/weapon/book/manual/wiki/security_space_law{
+ pixel_y = 3
+ },
+/obj/item/device/radio/intercom{
+ dir = 0;
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = 28
+ },
+/turf/open/floor/plasteel/black,
+/area/bridge)
+"bwu" = (
+/obj/machinery/holopad,
+/obj/machinery/status_display{
+ density = 0;
+ layer = 4;
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/bridge)
+"bwv" = (
+/obj/machinery/camera{
+ c_tag = "Council Chamber";
+ dir = 2;
+ network = list("SS13")
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 2;
+ on = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/bridge)
+"bww" = (
+/obj/structure/table/wood,
+/obj/item/weapon/folder/yellow,
+/obj/machinery/firealarm{
+ pixel_y = 28
+ },
+/turf/open/floor/plasteel/black,
+/area/bridge)
+"bwx" = (
+/obj/structure/table/wood,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/weapon/pen,
+/obj/machinery/light_switch{
+ pixel_x = 28;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/black,
+/area/bridge)
+"bwy" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/camera{
+ c_tag = "Bridge - Starboard Access";
+ dir = 4;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/darkblue/corner,
+/area/bridge)
+"bwz" = (
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/darkblue/corner{
+ dir = 1
+ },
+/area/bridge)
+"bwA" = (
+/obj/machinery/vending/cigarette{
+ pixel_y = 2;
+ products = list(/obj/item/weapon/storage/fancy/cigarettes/cigpack_syndicate = 7, /obj/item/weapon/storage/fancy/cigarettes/cigpack_uplift = 3, /obj/item/weapon/storage/fancy/cigarettes/cigpack_robust = 2, /obj/item/weapon/storage/fancy/cigarettes/cigpack_carp = 3, /obj/item/weapon/storage/fancy/cigarettes/cigpack_midori = 1, /obj/item/weapon/storage/box/matches = 10, /obj/item/weapon/lighter/greyscale = 4, /obj/item/weapon/storage/fancy/rollingpapers = 5)
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"bwB" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"bwC" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/chair/comfy/brown{
+ icon_state = "comfychair";
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"bwD" = (
+/obj/structure/table/wood,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/item/weapon/storage/fancy/donut_box,
+/turf/open/floor/carpet,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"bwE" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 2
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/chair/comfy/brown{
+ icon_state = "comfychair";
+ dir = 8
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"bwF" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"bwG" = (
+/obj/machinery/door/airlock/command{
+ name = "Emergency Escape";
+ req_access = null;
+ req_access_txt = "20"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"bwH" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/junction,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/maintcentral{
+ name = "Central Maintenance"
+ })
+"bwI" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bwJ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/hallway/primary/central)
+"bwK" = (
+/obj/structure/table,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -26;
+ pixel_y = 0
+ },
+/obj/machinery/chem_dispenser/drinks,
+/obj/structure/sign/barsign{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"bwL" = (
+/obj/structure/table,
+/obj/machinery/chem_dispenser/drinks/beer,
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"bwM" = (
+/obj/machinery/camera{
+ c_tag = "Bar";
+ dir = 2;
+ network = list("SS13")
+ },
+/obj/machinery/requests_console{
+ department = "Bar";
+ departmentType = 2;
+ pixel_x = 0;
+ pixel_y = 30
+ },
+/obj/structure/table,
+/obj/item/weapon/book/manual/barman_recipes{
+ pixel_y = 5
+ },
+/obj/item/weapon/reagent_containers/food/drinks/shaker,
+/obj/item/weapon/reagent_containers/glass/rag{
+ pixel_y = 5
+ },
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"bwN" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/newscaster{
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"bwO" = (
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"bwP" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"bwQ" = (
+/obj/structure/sign/securearea{
+ desc = "Under the painting a plaque reads: 'While the meat grinder may not have spared you, fear not. Not one part of you has gone to waste... You were delicious.'";
+ icon_state = "monkey_painting";
+ name = "Mr. Deempisi portrait";
+ pixel_x = 0;
+ pixel_y = 28
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/disposal/bin,
+/obj/machinery/light_switch{
+ pixel_x = 25;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"bwR" = (
+/obj/machinery/power/apc{
+ cell_type = 5000;
+ dir = 1;
+ name = "Bar APC";
+ pixel_x = 0;
+ pixel_y = 25
+ },
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27;
+ pixel_y = 0
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"bwS" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"bwT" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"bwU" = (
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = 21
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/camera{
+ c_tag = "Club - Fore";
+ dir = 2;
+ network = list("SS13")
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"bwV" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"bwW" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ on = 1;
+ scrub_Toxins = 0
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"bwX" = (
+/obj/structure/chair/stool{
+ pixel_y = 8
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"bwY" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bwZ" = (
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/caution{
+ dir = 8
+ },
+/area/hallway/primary/starboard)
+"bxa" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"bxb" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 27;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/turf/open/floor/plasteel/caution{
+ dir = 4
+ },
+/area/hallway/primary/starboard)
+"bxc" = (
+/turf/closed/wall/r_wall,
+/area/atmos)
+"bxd" = (
+/turf/closed/wall,
+/area/atmos)
+"bxe" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/atmos{
+ name = "Atmospherics";
+ req_access_txt = "24"
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bxf" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/closed/wall,
+/area/atmos)
+"bxg" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/atmos)
+"bxh" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1;
+ initialize_directions = 11
+ },
+/turf/closed/wall/r_wall,
+/area/atmos)
+"bxi" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4;
+ initialize_directions = 11
+ },
+/turf/closed/wall/r_wall,
+/area/atmos)
+"bxj" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/closed/wall/r_wall,
+/area/atmos)
+"bxk" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/atmos)
+"bxl" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/closed/wall/r_wall,
+/area/atmos)
+"bxm" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9;
+ pixel_y = 0
+ },
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 0;
+ pixel_y = -32
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/engine/break_room)
+"bxn" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/obj/structure/chair/office/dark{
+ dir = 1
+ },
+/turf/open/floor/plasteel/grimy,
+/area/tcommsat/computer{
+ name = "\improper Telecoms Control Room"
+ })
+"bxo" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/grimy,
+/area/tcommsat/computer{
+ name = "\improper Telecoms Control Room"
+ })
+"bxp" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/grimy,
+/area/tcommsat/computer{
+ name = "\improper Telecoms Control Room"
+ })
+"bxq" = (
+/turf/open/floor/plasteel/grimy,
+/area/tcommsat/computer{
+ name = "\improper Telecoms Control Room"
+ })
+"bxr" = (
+/obj/structure/chair/office/dark{
+ dir = 4
+ },
+/turf/open/floor/plasteel/grimy,
+/area/tcommsat/computer{
+ name = "\improper Telecoms Control Room"
+ })
+"bxs" = (
+/obj/machinery/computer/security/telescreen{
+ dir = 8;
+ name = "Telecoms Camera Monitor";
+ network = list("tcomm");
+ pixel_x = 26;
+ pixel_y = 0
+ },
+/obj/machinery/computer/telecomms/monitor{
+ network = "tcommsat"
+ },
+/turf/open/floor/plasteel/grimy,
+/area/tcommsat/computer{
+ name = "\improper Telecoms Control Room"
+ })
+"bxt" = (
+/obj/machinery/light,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bxu" = (
+/obj/machinery/camera{
+ c_tag = "Arrivals - Middle Arm - Far";
+ dir = 1;
+ network = list("SS13")
+ },
+/obj/machinery/status_display{
+ density = 0;
+ layer = 4;
+ pixel_x = 0;
+ pixel_y = -32
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bxv" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bxw" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bxx" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 0;
+ pixel_y = -32
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bxy" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/light,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bxz" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Arrivals - Middle Arm";
+ dir = 1;
+ network = list("SS13")
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bxA" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bxB" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/blue/corner{
+ dir = 2
+ },
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bxC" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 2
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/open/floor/plasteel/arrival{
+ dir = 2
+ },
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bxD" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/arrival{
+ dir = 2
+ },
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bxE" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = -25
+ },
+/turf/open/floor/plasteel/arrival{
+ dir = 6
+ },
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bxF" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 10
+ },
+/area/hallway/primary/port)
+"bxG" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/firealarm{
+ dir = 2;
+ pixel_y = -24
+ },
+/turf/open/floor/plasteel/neutral/side,
+/area/hallway/primary/port)
+"bxH" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/status_display{
+ density = 0;
+ layer = 4;
+ pixel_x = 0;
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel/neutral/side,
+/area/hallway/primary/port)
+"bxI" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/neutral/side,
+/area/hallway/primary/port)
+"bxJ" = (
+/obj/machinery/airalarm{
+ dir = 1;
+ icon_state = "alarm0";
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 6
+ },
+/area/hallway/primary/port)
+"bxK" = (
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"bxL" = (
+/obj/structure/sign/map/left{
+ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";
+ icon_state = "map-left-MS";
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 10
+ },
+/area/hallway/primary/port)
+"bxM" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/sign/map/right{
+ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";
+ icon_state = "map-right-MS";
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel/neutral/side,
+/area/hallway/primary/port)
+"bxN" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 6
+ },
+/area/hallway/primary/port)
+"bxO" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock{
+ name = "Auxiliary Bathrooms";
+ req_access_txt = "0"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/crew_quarters/toilet{
+ name = "\improper Auxiliary Restrooms"
+ })
+"bxP" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/sink/kitchen{
+ desc = "A sink used for washing one's hands and face. It looks rusty and home-made";
+ name = "old sink";
+ pixel_y = 28
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/crew_quarters/toilet{
+ name = "\improper Auxiliary Restrooms"
+ })
+"bxQ" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/obj/structure/sink/kitchen{
+ desc = "A sink used for washing one's hands and face. It looks rusty and home-made";
+ name = "old sink";
+ pixel_y = 28
+ },
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/toilet{
+ name = "\improper Auxiliary Restrooms"
+ })
+"bxR" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/sign/poster{
+ pixel_x = -32
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bxS" = (
+/obj/item/weapon/cigbutt,
+/obj/machinery/power/apc{
+ cell_type = 5000;
+ dir = 2;
+ name = "Port Maintenance APC";
+ pixel_y = -24
+ },
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bxT" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bxU" = (
+/obj/structure/table/wood,
+/obj/machinery/newscaster{
+ pixel_x = -32;
+ pixel_y = 0
+ },
+/turf/open/floor/wood,
+/area/library)
+"bxV" = (
+/obj/structure/chair/office/dark{
+ dir = 1
+ },
+/obj/effect/landmark/start{
+ name = "Librarian"
+ },
+/turf/open/floor/wood,
+/area/library)
+"bxW" = (
+/turf/open/floor/plasteel/cult{
+ dir = 2
+ },
+/area/library)
+"bxX" = (
+/obj/structure/chair/comfy/brown{
+ dir = 1
+ },
+/turf/open/floor/plasteel/cult{
+ dir = 2
+ },
+/area/library)
+"bxY" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/hallway/primary/central)
+"bxZ" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow,
+/obj/machinery/door/poddoor/preopen{
+ id = "hop";
+ name = "privacy shutters"
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/heads)
+"bya" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow,
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "hop";
+ name = "privacy shutters"
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/heads)
+"byb" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/brigdoor{
+ base_state = "rightsecure";
+ dir = 1;
+ icon_state = "rightsecure";
+ name = "Head of Personnel's Desk";
+ req_access_txt = "57"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/window/northleft{
+ dir = 2;
+ icon_state = "left";
+ name = "Reception Window";
+ req_access_txt = "0"
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id = "hop";
+ layer = 3.1;
+ name = "privacy shutters";
+ opacity = 0
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/heads)
+"byc" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/item/device/radio/intercom{
+ dir = 0;
+ name = "Station Intercom (General)";
+ pixel_x = -26;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/darkblue/corner,
+/area/bridge)
+"byd" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/darkblue/corner{
+ dir = 1
+ },
+/area/bridge)
+"bye" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command{
+ name = "Council Chamber";
+ req_access = null;
+ req_access_txt = "19"
+ },
+/turf/open/floor/plasteel/black,
+/area/bridge)
+"byf" = (
+/obj/structure/chair/comfy/beige,
+/turf/open/floor/carpet,
+/area/bridge)
+"byg" = (
+/obj/structure/chair/comfy/black,
+/turf/open/floor/carpet,
+/area/bridge)
+"byh" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/obj/structure/chair/comfy/beige,
+/turf/open/floor/carpet,
+/area/bridge)
+"byi" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/turf/open/floor/carpet,
+/area/bridge)
+"byj" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/bridge)
+"byk" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/bridge)
+"byl" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command{
+ name = "Council Chamber";
+ req_access = null;
+ req_access_txt = "19"
+ },
+/turf/open/floor/plasteel/black,
+/area/bridge)
+"bym" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/darkblue/corner,
+/area/bridge)
+"byn" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkblue/corner{
+ dir = 1
+ },
+/area/bridge)
+"byo" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command{
+ name = "Captain's Quarters";
+ req_access = null;
+ req_access_txt = "20"
+ },
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"byp" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/carpet,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"byq" = (
+/obj/structure/chair/comfy/brown{
+ icon_state = "comfychair";
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"byr" = (
+/obj/structure/table/wood,
+/obj/item/weapon/reagent_containers/food/drinks/shaker,
+/turf/open/floor/carpet,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"bys" = (
+/obj/structure/chair/comfy/brown{
+ icon_state = "comfychair";
+ dir = 8
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"byt" = (
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"byu" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/maintcentral{
+ name = "Central Maintenance"
+ })
+"byv" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/hallway/primary/central)
+"byw" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/hallway/primary/central)
+"byx" = (
+/obj/machinery/porta_turret/ai{
+ dir = 2
+ },
+/obj/machinery/flasher{
+ id = "AI";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/ai_monitored/turret_protected/ai)
+"byy" = (
+/obj/effect/landmark/start{
+ name = "Bartender"
+ },
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"byz" = (
+/mob/living/carbon/monkey/punpun,
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"byA" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/landmark/start{
+ name = "Bartender"
+ },
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"byB" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock{
+ name = "Bar Access";
+ req_access_txt = "25"
+ },
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"byC" = (
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"byD" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/table/wood/poker,
+/obj/item/clothing/head/fedora,
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"byE" = (
+/obj/structure/table/wood/poker,
+/obj/item/toy/cards/deck{
+ pixel_y = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"byF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/obj/structure/chair/stool{
+ pixel_y = 8
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"byG" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 2;
+ initialize_directions = 11
+ },
+/obj/structure/disposalpipe/junction{
+ icon_state = "pipe-j2";
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"byH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"byI" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office{
+ name = "\improper Cargo Office"
+ })
+"byJ" = (
+/obj/structure/chair/wood/wings{
+ dir = 8
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/theatre)
+"byK" = (
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id = "Engineering";
+ name = "Engineering Security Doors";
+ opacity = 0
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/engine/break_room)
+"byL" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "Theatre APC";
+ pixel_x = 0;
+ pixel_y = 25
+ },
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/table/wood,
+/obj/item/clothing/glasses/monocle,
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"byM" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/mob/living/simple_animal/bot/cleanbot,
+/turf/open/floor/plasteel/darkblue/corner,
+/area/ai_monitored/turret_protected/aisat_interior)
+"byN" = (
+/turf/closed/wall,
+/area/crew_quarters/theatre)
+"byO" = (
+/obj/structure/table,
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/obj/item/stack/sheet/glass{
+ amount = 50
+ },
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "MiniSat Maint APC";
+ pixel_x = 0;
+ pixel_y = -26
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow,
+/obj/item/stack/sheet/mineral/plasma{
+ amount = 35;
+ layer = 3.1
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/storage/secure{
+ name = "MiniSat Maintenance"
+ })
+"byP" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/item/device/radio/beacon,
+/turf/open/floor/plasteel/caution{
+ dir = 8
+ },
+/area/hallway/primary/starboard)
+"byQ" = (
+/turf/open/floor/plasteel/caution{
+ dir = 4
+ },
+/area/hallway/primary/starboard)
+"byR" = (
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = -30
+ },
+/obj/item/weapon/crowbar/red,
+/obj/item/weapon/wrench,
+/obj/item/clothing/mask/gas,
+/obj/machinery/airalarm{
+ pixel_y = 23
+ },
+/obj/structure/table,
+/obj/item/weapon/storage/box,
+/obj/item/weapon/storage/box,
+/turf/open/floor/plasteel/caution{
+ dir = 9
+ },
+/area/atmos)
+"byS" = (
+/obj/machinery/status_display{
+ density = 0;
+ layer = 4;
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/table,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/weapon/pen,
+/turf/open/floor/plasteel/caution{
+ dir = 1
+ },
+/area/atmos)
+"byT" = (
+/obj/machinery/computer/atmos_alert,
+/obj/structure/sign/map/left{
+ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";
+ icon_state = "map-left-MS";
+ pixel_y = 32
+ },
+/obj/machinery/camera{
+ c_tag = "Atmospherics - Control Room";
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/caution{
+ dir = 1
+ },
+/area/atmos)
+"byU" = (
+/obj/structure/sign/map/right{
+ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";
+ icon_state = "map-right-MS";
+ pixel_y = 32
+ },
+/obj/machinery/computer/station_alert,
+/turf/open/floor/plasteel/caution{
+ dir = 1
+ },
+/area/atmos)
+"byV" = (
+/obj/structure/sign/atmosplaque{
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/obj/item/weapon/phone{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/weapon/cigbutt/cigarbutt{
+ pixel_x = 5;
+ pixel_y = -1
+ },
+/obj/structure/table,
+/obj/machinery/light_switch{
+ pixel_x = 26;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/caution{
+ dir = 5
+ },
+/area/atmos)
+"byW" = (
+/obj/structure/table,
+/obj/item/clothing/head/welding{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/clothing/head/welding{
+ pixel_x = -5;
+ pixel_y = 3
+ },
+/obj/machinery/airalarm{
+ pixel_y = 23
+ },
+/obj/machinery/light_switch{
+ pixel_x = -26;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/caution{
+ dir = 8
+ },
+/area/atmos)
+"byX" = (
+/obj/machinery/power/apc{
+ cell_type = 10000;
+ dir = 1;
+ name = "Atmospherics APC";
+ pixel_x = 0;
+ pixel_y = 28
+ },
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/camera{
+ c_tag = "Atmospherics - Entrance";
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"byY" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"byZ" = (
+/obj/machinery/space_heater,
+/obj/machinery/firealarm{
+ dir = 2;
+ pixel_y = 24
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bza" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/atmos)
+"bzb" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
+ dir = 8
+ },
+/obj/machinery/meter{
+ frequency = 1441;
+ id_tag = "waste_meter";
+ name = "Waste Loop"
+ },
+/turf/open/floor/plasteel/caution{
+ dir = 1
+ },
+/area/atmos)
+"bzc" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "Distro to Waste";
+ on = 0
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/caution{
+ dir = 1
+ },
+/area/atmos)
+"bzd" = (
+/obj/machinery/meter{
+ frequency = 1441;
+ id_tag = "distro_meter";
+ name = "Distribution Loop"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/supply/visible,
+/turf/open/floor/plasteel/caution{
+ dir = 1
+ },
+/area/atmos)
+"bze" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/visible{
+ dir = 1
+ },
+/turf/open/floor/plasteel/caution{
+ dir = 1
+ },
+/area/atmos)
+"bzf" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "Air to Distro";
+ on = 1;
+ target_pressure = 101
+ },
+/obj/machinery/airalarm{
+ pixel_y = 25
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/camera{
+ c_tag = "Atmospherics - Distro Loop";
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/caution{
+ dir = 1
+ },
+/area/atmos)
+"bzg" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 10;
+ initialize_directions = 10
+ },
+/turf/open/floor/plasteel/caution{
+ dir = 1
+ },
+/area/atmos)
+"bzh" = (
+/obj/machinery/atmospherics/components/unary/thermomachine/heater{
+ dir = 2;
+ on = 1
+ },
+/turf/open/floor/plasteel/caution{
+ dir = 1
+ },
+/area/atmos)
+"bzi" = (
+/obj/structure/lattice,
+/obj/structure/grille,
+/turf/closed/wall/r_wall,
+/area/space)
+"bzj" = (
+/obj/structure/grille,
+/obj/structure/lattice,
+/turf/closed/wall/r_wall,
+/area/space)
+"bzk" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/black,
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"bzl" = (
+/obj/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/turf/open/floor/plasteel/black,
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"bzm" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "MiniSat Exterior - Port Aft";
+ dir = 8;
+ network = list("MiniSat")
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"bzn" = (
+/obj/machinery/computer/message_monitor,
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/grimy,
+/area/tcommsat/computer{
+ name = "\improper Telecoms Control Room"
+ })
+"bzo" = (
+/obj/structure/chair/office/dark{
+ dir = 8
+ },
+/turf/open/floor/plasteel/grimy,
+/area/tcommsat/computer{
+ name = "\improper Telecoms Control Room"
+ })
+"bzp" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/grimy,
+/area/tcommsat/computer{
+ name = "\improper Telecoms Control Room"
+ })
+"bzq" = (
+/obj/machinery/holopad,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/grimy,
+/area/tcommsat/computer{
+ name = "\improper Telecoms Control Room"
+ })
+"bzr" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/grimy,
+/area/tcommsat/computer{
+ name = "\improper Telecoms Control Room"
+ })
+"bzs" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/chair/office/dark,
+/turf/open/floor/plasteel/grimy,
+/area/tcommsat/computer{
+ name = "\improper Telecoms Control Room"
+ })
+"bzt" = (
+/obj/machinery/power/apc{
+ cell_type = 5000;
+ dir = 4;
+ name = "Telecoms Control Room APC";
+ pixel_x = 26;
+ pixel_y = 0
+ },
+/obj/machinery/computer/telecomms/server{
+ network = "tcommsat"
+ },
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plasteel/grimy,
+/area/tcommsat/computer{
+ name = "\improper Telecoms Control Room"
+ })
+"bzu" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/camera{
+ c_tag = "MiniSat Exterior - Starboard Aft";
+ dir = 4;
+ network = list("MiniSat")
+ },
+/turf/open/floor/plasteel/black,
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"bzv" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/turf/open/floor/plasteel/black,
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"bzw" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/airlock{
+ name = "Port Emergency Storage";
+ req_access_txt = "0"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bzx" = (
+/turf/closed/wall,
+/area/security/vacantoffice)
+"bzy" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/security/vacantoffice)
+"bzz" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/centcom{
+ name = "Vacant Office";
+ opacity = 1;
+ req_access_txt = "32"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/wood,
+/area/security/vacantoffice)
+"bzA" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/crew_quarters/toilet{
+ name = "\improper Auxiliary Restrooms"
+ })
+"bzB" = (
+/obj/structure/mirror{
+ pixel_x = 28
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/toilet{
+ name = "\improper Auxiliary Restrooms"
+ })
+"bzC" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bzD" = (
+/obj/machinery/photocopier{
+ pixel_y = 3
+ },
+/turf/open/floor/wood,
+/area/library)
+"bzE" = (
+/turf/open/floor/wood,
+/area/library)
+"bzF" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/camera/autoname{
+ dir = 8;
+ network = list("SS13")
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/carpet,
+/area/library)
+"bzG" = (
+/obj/machinery/door/morgue{
+ name = "Study #1";
+ req_access_txt = "0"
+ },
+/turf/open/floor/plasteel/cult{
+ dir = 2
+ },
+/area/library)
+"bzH" = (
+/obj/machinery/door/morgue{
+ name = "Study #2";
+ req_access_txt = "0"
+ },
+/turf/open/floor/plasteel/cult{
+ dir = 2
+ },
+/area/library)
+"bzI" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/hallway/primary/central)
+"bzJ" = (
+/turf/closed/wall,
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bzK" = (
+/obj/machinery/vending/cola/random,
+/turf/open/floor/plasteel/black,
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bzL" = (
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bzM" = (
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = 21
+ },
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'HIGH VOLTAGE'";
+ icon_state = "shock";
+ name = "HIGH VOLTAGE";
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bzN" = (
+/obj/machinery/status_display{
+ density = 0;
+ layer = 4;
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bzO" = (
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = 21
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bzP" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/flasher{
+ id = "hopflash";
+ pixel_x = 28;
+ pixel_y = -28
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bzQ" = (
+/obj/structure/table,
+/obj/item/weapon/paper_bin{
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/item/weapon/pen,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bzR" = (
+/turf/closed/wall/r_wall,
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bzS" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/obj/machinery/button/door{
+ id = "bridge blast";
+ name = "Bridge Access Blast Door Control";
+ pixel_x = 24;
+ pixel_y = -24;
+ req_access_txt = "19"
+ },
+/turf/open/floor/plasteel/darkblue/corner{
+ dir = 1
+ },
+/area/bridge)
+"bzT" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
+ },
+/obj/machinery/vending/coffee{
+ pixel_x = -3
+ },
+/obj/machinery/button/door{
+ id = "council blast";
+ name = "Council Chamber Blast Door Control";
+ pixel_x = -28;
+ pixel_y = 0;
+ req_access_txt = "19"
+ },
+/turf/open/floor/plasteel/black,
+/area/bridge)
+"bzU" = (
+/obj/structure/chair/comfy/teal{
+ icon_state = "comfychair";
+ dir = 4
+ },
+/obj/structure/chair/comfy/black{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/bridge)
+"bzV" = (
+/obj/structure/table/wood,
+/obj/item/weapon/folder/white{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/turf/open/floor/carpet,
+/area/bridge)
+"bzW" = (
+/obj/structure/table/wood,
+/obj/item/weapon/folder/blue,
+/obj/item/weapon/lighter,
+/turf/open/floor/carpet,
+/area/bridge)
+"bzX" = (
+/obj/structure/table/wood,
+/obj/item/weapon/folder/red,
+/turf/open/floor/carpet,
+/area/bridge)
+"bzY" = (
+/obj/structure/chair/comfy/black{
+ dir = 8
+ },
+/turf/open/floor/carpet,
+/area/bridge)
+"bzZ" = (
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/obj/machinery/vending/cigarette{
+ pixel_x = 2
+ },
+/turf/open/floor/plasteel/black,
+/area/bridge)
+"bAa" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/button/door{
+ id = "bridge blast";
+ name = "Bridge Access Blast Door Control";
+ pixel_x = -24;
+ pixel_y = -24;
+ req_access_txt = "19"
+ },
+/turf/open/floor/plasteel/black,
+/area/bridge)
+"bAb" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/darkblue/corner{
+ dir = 1
+ },
+/area/bridge)
+"bAc" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"bAd" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9;
+ pixel_y = 0
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"bAe" = (
+/obj/machinery/light,
+/obj/machinery/computer/security/telescreen{
+ dir = 1;
+ name = "MiniSat Monitor";
+ network = list("MiniSat","tcomm");
+ pixel_x = 0;
+ pixel_y = -29
+ },
+/mob/living/simple_animal/pet/fox/Renault,
+/turf/open/floor/carpet,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"bAf" = (
+/obj/item/device/radio/intercom{
+ dir = 0;
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = -26
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"bAg" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 27;
+ pixel_y = 0
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"bAh" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating,
+/area/maintenance/maintcentral{
+ name = "Central Maintenance"
+ })
+"bAi" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/lighter,
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_x = -31;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"bAj" = (
+/obj/structure/table/reinforced,
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"bAk" = (
+/obj/structure/table/reinforced,
+/obj/item/clothing/head/that{
+ throwforce = 1
+ },
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"bAl" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/storage/box/matches{
+ pixel_y = 5
+ },
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"bAm" = (
+/obj/structure/table/reinforced,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"bAn" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/reagent_containers/food/condiment/saltshaker{
+ pixel_x = -3;
+ pixel_y = 0
+ },
+/obj/item/weapon/reagent_containers/food/condiment/peppermill{
+ pixel_x = 3
+ },
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"bAo" = (
+/obj/machinery/smartfridge/drinks{
+ icon_state = "boozeomat"
+ },
+/turf/closed/wall,
+/area/crew_quarters/bar)
+"bAp" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/table/wood/poker,
+/obj/item/toy/cards/deck{
+ pixel_y = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"bAq" = (
+/obj/structure/table/wood/poker,
+/obj/effect/spawner/lootdrop{
+ loot = list(/obj/item/weapon/gun/ballistic/revolver/russian = 5, /obj/item/weapon/storage/box/syndie_kit/throwing_weapons, /obj/item/toy/cards/deck/syndicate = 2);
+ name = "gambling valuables spawner"
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"bAr" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/obj/structure/chair/stool{
+ pixel_y = 8
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"bAs" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/theatre)
+"bAt" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1;
+ initialize_directions = 11
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/theatre)
+"bAu" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/theatre)
+"bAv" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/theatre)
+"bAw" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/sign/poster{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"bAx" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/pump,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/camera{
+ c_tag = "Starboard Primary Hallway - Atmospherics";
+ dir = 4;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/arrival{
+ dir = 8
+ },
+/area/hallway/primary/starboard)
+"bAy" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"bAz" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/caution{
+ dir = 4
+ },
+/area/hallway/primary/starboard)
+"bAA" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id = "atmos";
+ name = "Atmos Blast Door";
+ opacity = 0
+ },
+/turf/open/floor/plating,
+/area/atmos)
+"bAB" = (
+/obj/item/clothing/mask/breath{
+ pixel_x = 4;
+ pixel_y = 0
+ },
+/obj/item/weapon/tank/internals/emergency_oxygen{
+ pixel_x = -8;
+ pixel_y = 0
+ },
+/obj/structure/table,
+/turf/open/floor/plasteel/caution{
+ dir = 8
+ },
+/area/atmos)
+"bAC" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bAD" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bAE" = (
+/obj/structure/chair/office/dark{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Atmospheric Technician"
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bAF" = (
+/obj/machinery/computer/atmos_control,
+/obj/machinery/requests_console{
+ department = "Atmospherics";
+ departmentType = 4;
+ name = "Atmos RC";
+ pixel_x = 30;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/caution{
+ dir = 4
+ },
+/area/atmos)
+"bAG" = (
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/obj/structure/table,
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/obj/item/weapon/grenade/chem_grenade/metalfoam,
+/obj/item/weapon/grenade/chem_grenade/metalfoam,
+/turf/open/floor/plasteel/caution{
+ dir = 8
+ },
+/area/atmos)
+"bAH" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bAI" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bAJ" = (
+/obj/machinery/space_heater,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bAK" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/turf/open/floor/plasteel,
+/area/atmos)
+"bAL" = (
+/obj/machinery/atmospherics/components/unary/thermomachine/freezer,
+/turf/open/floor/plasteel,
+/area/atmos)
+"bAM" = (
+/obj/machinery/atmospherics/components/unary/thermomachine/heater{
+ dir = 1;
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bAN" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1;
+ name = "Mix to Distro";
+ on = 0
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bAO" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bAP" = (
+/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
+ dir = 8;
+ initialize_directions = 11
+ },
+/obj/machinery/meter,
+/turf/open/floor/plasteel,
+/area/atmos)
+"bAQ" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bAR" = (
+/obj/structure/grille,
+/turf/closed/wall/r_wall,
+/area/atmos)
+"bAS" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 2
+ },
+/obj/structure/lattice,
+/turf/open/space,
+/area/space)
+"bAT" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 2
+ },
+/turf/open/space,
+/area/space)
+"bAU" = (
+/obj/machinery/microwave{
+ pixel_x = 0;
+ pixel_y = 4
+ },
+/obj/structure/table/wood,
+/turf/open/floor/plasteel/grimy,
+/area/tcommsat/computer{
+ name = "\improper Telecoms Control Room"
+ })
+"bAV" = (
+/obj/machinery/light/small,
+/obj/item/weapon/storage/box/donkpockets,
+/obj/structure/table/wood,
+/turf/open/floor/plasteel/grimy,
+/area/tcommsat/computer{
+ name = "\improper Telecoms Control Room"
+ })
+"bAW" = (
+/obj/structure/table/wood,
+/obj/item/weapon/folder/blue,
+/obj/machinery/status_display{
+ density = 0;
+ layer = 4;
+ pixel_x = 0;
+ pixel_y = 31
+ },
+/obj/item/weapon/folder/blue,
+/obj/item/weapon/pen,
+/turf/open/floor/plasteel/grimy,
+/area/tcommsat/computer{
+ name = "\improper Telecoms Control Room"
+ })
+"bAX" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/grimy,
+/area/tcommsat/computer{
+ name = "\improper Telecoms Control Room"
+ })
+"bAY" = (
+/obj/structure/filingcabinet{
+ pixel_x = 3
+ },
+/turf/open/floor/plasteel/grimy,
+/area/tcommsat/computer{
+ name = "\improper Telecoms Control Room"
+ })
+"bAZ" = (
+/obj/machinery/camera{
+ c_tag = "Head of Personnel's Office";
+ dir = 1;
+ network = list("SS13")
+ },
+/obj/structure/table/wood,
+/obj/item/weapon/storage/box/PDAs{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/weapon/storage/box/silver_ids,
+/obj/item/weapon/storage/box/ids,
+/obj/machinery/light,
+/turf/open/floor/wood,
+/area/crew_quarters/heads)
+"bBa" = (
+/obj/machinery/requests_console{
+ announcementConsole = 1;
+ department = "Telecoms Admin";
+ departmentType = 5;
+ name = "Telecoms RC";
+ pixel_x = 0;
+ pixel_y = -30
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/item/weapon/paper_bin{
+ pixel_x = -1;
+ pixel_y = 6
+ },
+/obj/structure/table/wood,
+/turf/open/floor/plasteel/grimy,
+/area/tcommsat/computer{
+ name = "\improper Telecoms Control Room"
+ })
+"bBb" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/structure/lattice,
+/turf/open/space,
+/area/space)
+"bBc" = (
+/obj/structure/closet/emcloset,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bBd" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/arrival{
+ dir = 4
+ },
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bBe" = (
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bBf" = (
+/obj/structure/table/wood,
+/obj/machinery/light_switch{
+ pixel_x = -28;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/item/weapon/folder,
+/turf/open/floor/wood,
+/area/security/vacantoffice)
+"bBg" = (
+/turf/open/floor/wood,
+/area/security/vacantoffice)
+"bBh" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/wood,
+/area/security/vacantoffice)
+"bBi" = (
+/obj/structure/table/wood,
+/obj/item/device/flashlight/lamp,
+/turf/open/floor/wood,
+/area/security/vacantoffice)
+"bBj" = (
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/maintenance/starboard)
+"bBk" = (
+/obj/structure/table/wood,
+/obj/item/device/camera_film{
+ pixel_y = 9
+ },
+/obj/item/device/camera_film{
+ pixel_x = -3;
+ pixel_y = 5
+ },
+/turf/open/floor/wood,
+/area/security/vacantoffice)
+"bBl" = (
+/obj/structure/urinal{
+ pixel_y = 29
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/toilet{
+ name = "\improper Auxiliary Restrooms"
+ })
+"bBm" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/crew_quarters/toilet{
+ name = "\improper Auxiliary Restrooms"
+ })
+"bBn" = (
+/turf/open/floor/plasteel/floorgrime,
+/area/crew_quarters/toilet{
+ name = "\improper Auxiliary Restrooms"
+ })
+"bBo" = (
+/obj/machinery/door/airlock{
+ id_tag = "AuxToilet1";
+ name = "Unit 1"
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/toilet{
+ name = "\improper Auxiliary Restrooms"
+ })
+"bBp" = (
+/obj/structure/toilet{
+ pixel_y = 8
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/button/door{
+ id = "AuxToilet1";
+ name = "Lock Control";
+ normaldoorcontrol = 1;
+ pixel_x = 25;
+ pixel_y = 0;
+ req_access_txt = "0";
+ specialfunctions = 4
+ },
+/obj/machinery/newscaster{
+ pixel_x = 0;
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/toilet{
+ name = "\improper Auxiliary Restrooms"
+ })
+"bBq" = (
+/obj/structure/rack,
+/obj/item/device/flashlight,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bBr" = (
+/obj/structure/table/wood,
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/turf/open/floor/wood,
+/area/library)
+"bBs" = (
+/obj/structure/chair/office/dark{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/library)
+"bBt" = (
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/atmos)
+"bBu" = (
+/obj/machinery/vending/coffee,
+/obj/machinery/newscaster{
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/turf/open/floor/wood,
+/area/library)
+"bBv" = (
+/obj/structure/chair/comfy/black,
+/obj/effect/landmark/start{
+ name = "Assistant"
+ },
+/turf/open/floor/wood,
+/area/library)
+"bBw" = (
+/obj/machinery/bookbinder,
+/turf/open/floor/wood,
+/area/library)
+"bBx" = (
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-22"
+ },
+/turf/open/floor/wood,
+/area/library)
+"bBy" = (
+/obj/structure/sign/directions/engineering{
+ desc = "A direction sign, pointing out which way the bridge is.";
+ dir = 4;
+ icon_state = "direction_bridge";
+ name = "bridge";
+ pixel_y = -8
+ },
+/obj/structure/sign/directions/security{
+ desc = "A direction sign, pointing out which way the security department is.";
+ dir = 1;
+ icon_state = "direction_sec";
+ pixel_x = 0;
+ pixel_y = 8
+ },
+/obj/structure/sign/directions/engineering{
+ desc = "A direction sign, pointing out which way the engineering department is.";
+ dir = 4;
+ icon_state = "direction_eng";
+ pixel_y = 0
+ },
+/turf/closed/wall,
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bBz" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bBA" = (
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "hopqueue";
+ name = "HoP Queue Shutters"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/loadingarea{
+ dir = 1
+ },
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bBB" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bBC" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "hopqueue";
+ name = "HoP Queue Shutters"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/loadingarea,
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bBD" = (
+/obj/structure/sign/directions/engineering{
+ desc = "A direction sign, pointing out which way the bridge is.";
+ dir = 1;
+ icon_state = "direction_bridge";
+ name = "bridge";
+ pixel_y = -8
+ },
+/turf/closed/wall/r_wall,
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bBE" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/poddoor/preopen{
+ id = "bridge blast";
+ name = "bridge blast door"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_command{
+ name = "Bridge Access";
+ req_access_txt = "19"
+ },
+/turf/open/floor/plasteel/vault,
+/area/bridge)
+"bBF" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "bridge blast";
+ name = "bridge blast door"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/airlock/glass_command{
+ name = "Bridge Access";
+ req_access_txt = "19"
+ },
+/turf/open/floor/plasteel/vault,
+/area/bridge)
+"bBG" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/goonplaque{
+ desc = "\"This is a plaque in honour of our comrades on the G4407 Stations. Hopefully TG4407 model can live up to your fame and fortune.\" Scratched in beneath that is a crude image of sentient postcards in a realm of darkness. The station model number is MSv42A-160516"
+ },
+/area/hallway/primary/port)
+"bBH" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id = "council blast";
+ layer = 2.9;
+ name = "Council Blast Doors";
+ opacity = 0
+ },
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/bridge)
+"bBI" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id = "council blast";
+ layer = 2.9;
+ name = "Council Blast Doors";
+ opacity = 0
+ },
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/bridge)
+"bBJ" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id = "council blast";
+ layer = 2.9;
+ name = "Council Blast Doors";
+ opacity = 0
+ },
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/bridge)
+"bBK" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id = "council blast";
+ layer = 2.9;
+ name = "Council Blast Doors";
+ opacity = 0
+ },
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/bridge)
+"bBL" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id = "council blast";
+ layer = 2.9;
+ name = "Council Blast Doors";
+ opacity = 0
+ },
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/bridge)
+"bBM" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "bridge blast";
+ name = "bridge blast door"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_command{
+ name = "Bridge Access";
+ req_access_txt = "19"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/vault,
+/area/bridge)
+"bBN" = (
+/obj/structure/sign/directions/engineering{
+ desc = "A direction sign, pointing out which way the bridge is.";
+ dir = 1;
+ icon_state = "direction_bridge";
+ name = "bridge";
+ pixel_y = -8
+ },
+/turf/closed/wall/r_wall,
+/area/crew_quarters/captain{
+ name = "\improper Captain's Quarters"
+ })
+"bBO" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "0";
+ req_one_access_txt = "20;12"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/maintenance/maintcentral{
+ name = "Central Maintenance"
+ })
+"bBP" = (
+/obj/structure/sign/directions/engineering{
+ desc = "A direction sign, pointing out which way the engineering department is.";
+ dir = 4;
+ icon_state = "direction_eng";
+ pixel_y = 0
+ },
+/obj/structure/sign/directions/security{
+ desc = "A direction sign, pointing out which way the security department is.";
+ dir = 1;
+ icon_state = "direction_sec";
+ pixel_x = 0;
+ pixel_y = 8
+ },
+/obj/structure/sign/directions/engineering{
+ desc = "A direction sign, pointing out which way the bridge is.";
+ dir = 8;
+ icon_state = "direction_bridge";
+ name = "bridge";
+ pixel_y = -8
+ },
+/turf/closed/wall,
+/area/maintenance/maintcentral{
+ name = "Central Maintenance"
+ })
+"bBQ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/hallway/primary/central)
+"bBR" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=12-Central-Starboard";
+ location = "11.1-Command-Starboard"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bBS" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/crew_quarters/bar)
+"bBT" = (
+/obj/structure/chair/stool/bar,
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"bBU" = (
+/obj/machinery/holopad,
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"bBV" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/landmark/start{
+ name = "Assistant"
+ },
+/obj/structure/chair/stool/bar,
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"bBW" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/sign/poster{
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bBX" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"bBY" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/table/wood/poker,
+/obj/item/toy/cards/deck{
+ pixel_y = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"bBZ" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/theatre)
+"bCa" = (
+/obj/structure/chair/wood/wings,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/landmark/start{
+ name = "Mime"
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/theatre)
+"bCb" = (
+/turf/open/floor/carpet,
+/area/crew_quarters/theatre)
+"bCc" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/theatre)
+"bCd" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/structure/table/wood,
+/obj/item/weapon/reagent_containers/food/snacks/pie/cream,
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"bCe" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/pump,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/arrival{
+ dir = 8
+ },
+/area/hallway/primary/starboard)
+"bCf" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/caution{
+ dir = 4
+ },
+/area/hallway/primary/starboard)
+"bCg" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "pdoor0";
+ id = "atmos";
+ name = "Atmos Blast Door";
+ opacity = 0
+ },
+/obj/machinery/door/window/northleft{
+ dir = 4;
+ icon_state = "left";
+ name = "Atmospherics Desk";
+ req_access_txt = "24"
+ },
+/obj/item/weapon/folder/yellow,
+/obj/item/weapon/folder/yellow,
+/obj/item/weapon/pen,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id = "atmos";
+ name = "Atmos Blast Door";
+ opacity = 0
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/atmos)
+"bCh" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/effect/landmark/start{
+ name = "Atmospheric Technician"
+ },
+/turf/open/floor/plasteel/caution{
+ dir = 8
+ },
+/area/atmos)
+"bCi" = (
+/turf/open/floor/plasteel,
+/area/atmos)
+"bCj" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bCk" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bCl" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/computer/atmos_control,
+/turf/open/floor/plasteel/caution{
+ dir = 4
+ },
+/area/atmos)
+"bCm" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/atmos)
+"bCn" = (
+/obj/structure/table,
+/obj/item/weapon/storage/belt/utility,
+/obj/item/device/t_scanner,
+/obj/item/device/t_scanner,
+/obj/item/device/t_scanner,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/caution{
+ dir = 8
+ },
+/area/atmos)
+"bCo" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bCp" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bCq" = (
+/obj/machinery/space_heater,
+/obj/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bCr" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 0;
+ name = "Waste to Filter";
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bCs" = (
+/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+ color = "purple";
+ dir = 5;
+ icon_state = "intact"
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bCt" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
+ color = "purple";
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bCu" = (
+/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
+ color = "purple"
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bCv" = (
+/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+ color = "purple";
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bCw" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 0;
+ name = "Air to Mix";
+ on = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+ color = "purple";
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bCx" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+ color = "purple";
+ dir = 4
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 5
+ },
+/area/atmos)
+"bCy" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+ color = "purple";
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/atmos)
+"bCz" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+ color = "purple";
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/turf/open/space,
+/area/space)
+"bCA" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+ dir = 4
+ },
+/obj/structure/grille,
+/turf/closed/wall/r_wall,
+/area/atmos)
+"bCB" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ external_pressure_bound = 0;
+ frequency = 1441;
+ id_tag = "mix_in";
+ initialize_directions = 1;
+ internal_pressure_bound = 4000;
+ on = 1;
+ pressure_checks = 2;
+ pump_direction = 0
+ },
+/turf/open/floor/engine/vacuum,
+/area/atmos)
+"bCC" = (
+/turf/open/floor/engine{
+ name = "vacuum floor";
+ initial_gas_mix = "o2=0.01;n2=0.01"
+ },
+/area/atmos)
+"bCD" = (
+/turf/closed/wall/r_wall,
+/area/tcommsat/server)
+"bCE" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/tcommsat/server)
+"bCF" = (
+/obj/machinery/door/airlock/hatch{
+ name = "Telecoms Server Room"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/black,
+/area/tcommsat/server)
+"bCG" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 0
+ },
+/turf/open/floor/plating,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bCH" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 27;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/arrival{
+ dir = 4
+ },
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bCI" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bCJ" = (
+/obj/item/weapon/storage/toolbox/emergency,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bCK" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bCL" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/wood,
+/area/security/vacantoffice)
+"bCM" = (
+/obj/structure/table/wood,
+/turf/open/floor/wood,
+/area/security/vacantoffice)
+"bCN" = (
+/obj/structure/chair/office/dark{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/security/vacantoffice)
+"bCO" = (
+/obj/machinery/vending/cigarette,
+/obj/structure/sign/poster{
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/toilet{
+ name = "\improper Auxiliary Restrooms"
+ })
+"bCP" = (
+/obj/machinery/light/small,
+/turf/open/floor/plating,
+/area/crew_quarters/toilet{
+ name = "\improper Auxiliary Restrooms"
+ })
+"bCQ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/crew_quarters/toilet{
+ name = "\improper Auxiliary Restrooms"
+ })
+"bCR" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/obj/machinery/power/apc{
+ cell_type = 5000;
+ dir = 2;
+ name = "Auxiliary Restrooms APC";
+ pixel_y = -24
+ },
+/obj/structure/cable/yellow,
+/turf/open/floor/plasteel/floorgrime,
+/area/crew_quarters/toilet{
+ name = "\improper Auxiliary Restrooms"
+ })
+"bCS" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/crew_quarters/toilet{
+ name = "\improper Auxiliary Restrooms"
+ })
+"bCT" = (
+/obj/structure/table/wood,
+/obj/item/device/flashlight/lamp/green{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/obj/machinery/newscaster{
+ pixel_x = -32;
+ pixel_y = 0
+ },
+/turf/open/floor/wood,
+/area/library)
+"bCU" = (
+/obj/structure/table/wood,
+/obj/item/weapon/folder,
+/obj/item/weapon/pen/blue{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/turf/open/floor/wood,
+/area/library)
+"bCV" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/carpet,
+/area/library)
+"bCW" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/hallway/primary/central)
+"bCX" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 1;
+ icon_state = "pipe-j1"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bCY" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/hallway/primary/central)
+"bCZ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/glass{
+ name = "Command Hallway"
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bDa" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bDb" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bDc" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bDd" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bDe" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bDf" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bDg" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bDh" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = 21
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bDi" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/status_display{
+ density = 0;
+ layer = 4;
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bDj" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bDk" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 1
+ },
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bDl" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 1
+ },
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bDm" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 1
+ },
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bDn" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bDo" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bDp" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ cell_type = 10000;
+ dir = 1;
+ name = "Command Hallway APC";
+ pixel_x = 0;
+ pixel_y = 25
+ },
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bDq" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bDr" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bDs" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bDt" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bDu" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = 21
+ },
+/obj/machinery/camera{
+ c_tag = "Command Hallway - Starboard";
+ dir = 2;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bDv" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/status_display{
+ density = 0;
+ layer = 4;
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bDw" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/airalarm{
+ pixel_y = 32
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bDx" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 2
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bDy" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Command Hallway"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bDz" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"bDA" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bDB" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/hallway/primary/central)
+"bDC" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Bar"
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/bar)
+"bDD" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ on = 1;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"bDE" = (
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"bDF" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"bDG" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/centcom{
+ name = "Club";
+ opacity = 1
+ },
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"bDH" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/chair/stool{
+ pixel_y = 8
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"bDI" = (
+/obj/structure/chair/stool{
+ pixel_y = 8
+ },
+/obj/effect/landmark/start{
+ name = "Assistant"
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"bDJ" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/table/wood/poker,
+/obj/item/clothing/mask/cigarette/cigar,
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"bDK" = (
+/obj/machinery/holopad,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/carpet,
+/area/crew_quarters/theatre)
+"bDL" = (
+/obj/structure/sign/poster,
+/turf/closed/wall,
+/area/crew_quarters/bar)
+"bDM" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/scrubber,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/open/floor/plasteel/escape{
+ dir = 8
+ },
+/area/hallway/primary/starboard)
+"bDN" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"bDO" = (
+/obj/structure/tank_dispenser{
+ pixel_x = -1
+ },
+/turf/open/floor/plasteel/black/corner{
+ dir = 1
+ },
+/area/atmos)
+"bDP" = (
+/obj/machinery/holopad,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/atmos)
+"bDQ" = (
+/turf/open/floor/plasteel/caution{
+ dir = 4
+ },
+/area/atmos)
+"bDR" = (
+/obj/machinery/door/airlock/glass_atmos{
+ name = "Atmospherics Monitoring";
+ req_access_txt = "24"
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bDS" = (
+/turf/open/floor/plasteel/caution{
+ dir = 8
+ },
+/area/atmos)
+"bDT" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bDU" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/atmos)
+"bDV" = (
+/obj/structure/closet/crate,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/atmos)
+"bDW" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bDX" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "Mix to Filter";
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bDY" = (
+/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
+ color = "purple";
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bDZ" = (
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 6
+ },
+/obj/effect/landmark/start{
+ name = "Atmospheric Technician"
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bEa" = (
+/obj/machinery/atmospherics/pipe/manifold/green/visible{
+ dir = 1
+ },
+/obj/machinery/meter,
+/turf/open/floor/plasteel,
+/area/atmos)
+"bEb" = (
+/obj/machinery/atmospherics/pipe/manifold/green/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bEc" = (
+/obj/machinery/computer/atmos_control/tank{
+ frequency = 1441;
+ input_tag = "mix_in";
+ name = "Gas Mix Tank Control";
+ output_tag = "mix_in";
+ sensors = list("mix_sensor" = "Tank")
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/turf/open/floor/plasteel/green/side{
+ dir = 4
+ },
+/area/atmos)
+"bEd" = (
+/obj/machinery/air_sensor{
+ frequency = 1441;
+ id_tag = "mix_sensor"
+ },
+/turf/open/floor/engine/vacuum,
+/area/atmos)
+"bEe" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/engine/vacuum,
+/area/atmos)
+"bEf" = (
+/obj/machinery/telecomms/processor/preset_one,
+/obj/machinery/camera{
+ c_tag = "Telecoms - Server Room - Fore-Port";
+ dir = 2;
+ network = list("SS13","tcomm")
+ },
+/turf/open/floor/plasteel/circuit/gcircuit{
+ name = "Mainframe Base";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/server)
+"bEg" = (
+/obj/structure/showcase{
+ density = 0;
+ desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze.";
+ dir = 2;
+ icon = 'icons/mob/robots.dmi';
+ icon_state = "robot_old";
+ name = "Cyborg Statue";
+ pixel_x = 0;
+ pixel_y = 20
+ },
+/turf/open/floor/plasteel/black{
+ name = "Mainframe Floor";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/server)
+"bEh" = (
+/obj/machinery/telecomms/receiver/preset_left,
+/turf/open/floor/plasteel/circuit/gcircuit{
+ name = "Mainframe Base";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/server)
+"bEi" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/black,
+/area/tcommsat/server)
+"bEj" = (
+/obj/machinery/telecomms/receiver/preset_right,
+/turf/open/floor/plasteel/circuit/gcircuit{
+ name = "Mainframe Base";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/server)
+"bEk" = (
+/obj/machinery/telecomms/processor/preset_three,
+/obj/machinery/camera{
+ c_tag = "Telecoms - Server Room - Fore-Starboard";
+ dir = 2;
+ network = list("SS13","tcomm")
+ },
+/turf/open/floor/plasteel/circuit/gcircuit{
+ name = "Mainframe Base";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/server)
+"bEl" = (
+/obj/machinery/door/airlock/external{
+ name = "Transport Airlock"
+ },
+/turf/open/floor/plating,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bEm" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bEn" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/status_display{
+ density = 0;
+ layer = 4;
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/arrival{
+ dir = 4
+ },
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bEo" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/item/weapon/storage/box/lights/mixed,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bEp" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/canister/air,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bEq" = (
+/obj/structure/light_construct{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/security/vacantoffice)
+"bEr" = (
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/turf/open/floor/wood,
+/area/security/vacantoffice)
+"bEs" = (
+/obj/item/weapon/paper_bin{
+ pixel_x = -2;
+ pixel_y = 6
+ },
+/obj/structure/table/wood,
+/turf/open/floor/carpet,
+/area/security/vacantoffice)
+"bEt" = (
+/obj/machinery/door/airlock{
+ id_tag = "AuxShower";
+ name = "Shower"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/floorgrime,
+/area/crew_quarters/toilet{
+ name = "\improper Auxiliary Restrooms"
+ })
+"bEu" = (
+/obj/machinery/door/airlock{
+ id_tag = "AuxToilet2";
+ name = "Unit 2"
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/toilet{
+ name = "\improper Auxiliary Restrooms"
+ })
+"bEv" = (
+/obj/structure/toilet{
+ pixel_y = 8
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/button/door{
+ id = "AuxToilet2";
+ name = "Lock Control";
+ normaldoorcontrol = 1;
+ pixel_x = 25;
+ pixel_y = 0;
+ req_access_txt = "0";
+ specialfunctions = 4
+ },
+/obj/machinery/newscaster{
+ pixel_x = 0;
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/toilet{
+ name = "\improper Auxiliary Restrooms"
+ })
+"bEw" = (
+/obj/structure/table/wood,
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_x = -32;
+ pixel_y = 0
+ },
+/obj/machinery/camera/autoname{
+ dir = 4;
+ network = list("SS13")
+ },
+/turf/open/floor/wood,
+/area/library)
+"bEx" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/turf/open/floor/carpet,
+/area/library)
+"bEy" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/carpet,
+/area/library)
+"bEz" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/library)
+"bEA" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/carpet,
+/area/library)
+"bEB" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=11.1-Command-Starboard";
+ location = "11-Command-Port"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bEC" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/hallway/primary/central)
+"bED" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/glass{
+ name = "Command Hallway"
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bEE" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bEF" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bEG" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bEH" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bEI" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 0;
+ pixel_y = -30
+ },
+/obj/machinery/camera{
+ c_tag = "Command Hallway - Port";
+ dir = 1;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bEJ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bEK" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bEL" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bEM" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 2;
+ initialize_directions = 11
+ },
+/obj/machinery/newscaster{
+ pixel_y = -29
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bEN" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bEO" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 2;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bEP" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bEQ" = (
+/obj/machinery/holopad,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel,
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bER" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bES" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bET" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bEU" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bEV" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/newscaster{
+ pixel_y = -29
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bEW" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bEX" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bEY" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bEZ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 0;
+ pixel_y = -30
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bFa" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bFb" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bFc" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 2;
+ initialize_directions = 11
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bFd" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 2;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bFe" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bFf" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Command Hallway"
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bFg" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/hallway/primary/central)
+"bFh" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=7.5-Starboard-Aft-Corner";
+ location = "7-Command-Starboard"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bFi" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/hallway/primary/central)
+"bFj" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/glass{
+ name = "Bar"
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/bar)
+"bFk" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"bFl" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"bFm" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"bFn" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"bFo" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 2
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"bFp" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/centcom{
+ name = "Club";
+ opacity = 1
+ },
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"bFq" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"bFr" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/chair/stool{
+ pixel_y = 8
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"bFs" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/structure/table/wood/poker,
+/obj/item/weapon/storage/pill_bottle/dice,
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"bFt" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 2;
+ on = 1
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"bFu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/item/toy/cards/deck{
+ pixel_y = 4
+ },
+/obj/structure/table/wood/poker,
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"bFv" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/theatre)
+"bFw" = (
+/obj/structure/chair/wood/wings{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/landmark/start{
+ name = "Clown"
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/theatre)
+"bFx" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/theatre)
+"bFy" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/theatre)
+"bFz" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"bFA" = (
+/obj/machinery/door/airlock{
+ name = "Theatre Stage";
+ req_access_txt = "0";
+ req_one_access_txt = "12;46"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/theatre)
+"bFB" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bFC" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/scrubber,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/window/reinforced,
+/turf/open/floor/plasteel/escape{
+ dir = 8
+ },
+/area/hallway/primary/starboard)
+"bFD" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4;
+ initialize_directions = 11
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"bFE" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/caution{
+ dir = 4
+ },
+/area/hallway/primary/starboard)
+"bFF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/plasticflaps{
+ opacity = 1
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=4";
+ dir = 4;
+ freq = 1400;
+ location = "Atmospherics"
+ },
+/obj/machinery/door/poddoor{
+ density = 0;
+ icon_state = "open";
+ id = "atmos";
+ name = "Atmos Blast Door";
+ opacity = 0
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/atmos)
+"bFG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/loadingarea{
+ dir = 4
+ },
+/area/atmos)
+"bFH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bFI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/atmos)
+"bFJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 2;
+ on = 1
+ },
+/turf/open/floor/plasteel/black/corner{
+ dir = 2
+ },
+/area/atmos)
+"bFK" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/machinery/button/door{
+ id = "atmos";
+ name = "Atmospherics Lockdown";
+ pixel_x = 26;
+ pixel_y = -26;
+ req_access_txt = "24"
+ },
+/turf/open/floor/plasteel/caution{
+ dir = 6
+ },
+/area/atmos)
+"bFL" = (
+/obj/machinery/holopad,
+/turf/open/floor/plasteel/caution{
+ dir = 8
+ },
+/area/atmos)
+"bFM" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 6
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bFN" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/atmos)
+"bFO" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/atmos)
+"bFP" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 4
+ },
+/obj/machinery/door/airlock/glass_atmos{
+ name = "Distribution Loop";
+ req_access_txt = "24"
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bFQ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bFR" = (
+/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+ color = "purple";
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bFS" = (
+/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+ color = "purple";
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bFT" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1;
+ name = "Pure to Mix";
+ on = 0
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bFU" = (
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 5;
+ initialize_directions = 12
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bFV" = (
+/obj/machinery/atmospherics/pipe/simple/green/visible,
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 4;
+ name = "Unfiltered & Air to Mix";
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bFW" = (
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/turf/open/floor/plasteel/green/side{
+ dir = 6
+ },
+/area/atmos)
+"bFX" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/atmos)
+"bFY" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 4
+ },
+/turf/open/space,
+/area/space)
+"bFZ" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 4
+ },
+/obj/structure/grille,
+/turf/closed/wall/r_wall,
+/area/atmos)
+"bGa" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/on{
+ dir = 8;
+ frequency = 1441;
+ id = "mix_in";
+ pixel_y = 1
+ },
+/turf/open/floor/engine/vacuum,
+/area/atmos)
+"bGb" = (
+/obj/machinery/camera{
+ c_tag = "Atmospherics Tank - Mix";
+ dir = 8;
+ network = list("SS13");
+ pixel_x = 0;
+ pixel_y = 0
+ },
+/turf/open/floor/engine/vacuum,
+/area/atmos)
+"bGc" = (
+/obj/machinery/telecomms/bus/preset_one,
+/turf/open/floor/plasteel/circuit/gcircuit{
+ name = "Mainframe Base";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/server)
+"bGd" = (
+/turf/open/floor/plasteel/black{
+ name = "Mainframe Floor";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/server)
+"bGe" = (
+/turf/open/floor/plasteel/circuit/gcircuit{
+ name = "Mainframe Base";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/server)
+"bGf" = (
+/obj/machinery/telecomms/bus/preset_three,
+/turf/open/floor/plasteel/circuit/gcircuit{
+ name = "Mainframe Base";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/server)
+"bGg" = (
+/obj/structure/chair/wood/wings{
+ dir = 8
+ },
+/obj/machinery/light_switch{
+ pixel_y = 28
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/theatre)
+"bGh" = (
+/obj/machinery/announcement_system,
+/turf/open/floor/plasteel/grimy,
+/area/tcommsat/computer{
+ name = "\improper Telecoms Control Room"
+ })
+"bGi" = (
+/obj/structure/piano,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/sign/poster{
+ pixel_y = 32
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/theatre)
+"bGj" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/wood,
+/area/security/vacantoffice)
+"bGk" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9;
+ pixel_y = 0
+ },
+/turf/open/floor/wood,
+/area/security/vacantoffice)
+"bGl" = (
+/obj/machinery/shower{
+ icon_state = "shower";
+ dir = 4
+ },
+/obj/machinery/button/door{
+ id = "AuxShower";
+ name = "Lock Control";
+ normaldoorcontrol = 1;
+ pixel_x = 0;
+ pixel_y = 25;
+ req_access_txt = "0";
+ specialfunctions = 4
+ },
+/obj/item/weapon/soap/nanotrasen,
+/turf/open/floor/plasteel/floorgrime,
+/area/crew_quarters/toilet{
+ name = "\improper Auxiliary Restrooms"
+ })
+"bGm" = (
+/obj/machinery/shower{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/floorgrime,
+/area/crew_quarters/toilet{
+ name = "\improper Auxiliary Restrooms"
+ })
+"bGn" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/sign/poster{
+ pixel_y = 32
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/theatre)
+"bGo" = (
+/obj/structure/table/wood,
+/obj/item/weapon/staff/broom,
+/obj/item/weapon/wrench,
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/obj/structure/sign/poster{
+ pixel_y = 32
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"bGp" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bGq" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Library Maintenance";
+ req_access_txt = "0";
+ req_one_access_txt = "12;37"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bGr" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/carpet,
+/area/library)
+"bGs" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
+ },
+/turf/open/floor/wood,
+/area/library)
+"bGt" = (
+/turf/open/floor/wood{
+ icon_state = "wood-broken7"
+ },
+/area/library)
+"bGu" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/wood,
+/area/library)
+"bGv" = (
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 0
+ },
+/turf/closed/wall,
+/area/library)
+"bGw" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/camera{
+ c_tag = "Central Primary Hallway - Port";
+ dir = 8;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/hallway/primary/central)
+"bGx" = (
+/obj/structure/sign/directions/engineering{
+ desc = "A direction sign, pointing out which way the research department is.";
+ icon_state = "direction_sci";
+ name = "research department";
+ pixel_y = -8
+ },
+/obj/structure/sign/directions/engineering{
+ desc = "A direction sign, pointing out which way the medical department is.";
+ icon_state = "direction_med";
+ name = "medical department";
+ pixel_y = 8
+ },
+/obj/structure/sign/directions/engineering{
+ desc = "A direction sign, pointing out which way the escape arm is.";
+ icon_state = "direction_evac";
+ name = "escape arm"
+ },
+/turf/closed/wall/r_wall,
+/area/ai_monitored/storage/eva{
+ name = "E.V.A. Storage"
+ })
+"bGy" = (
+/turf/closed/wall/r_wall,
+/area/ai_monitored/storage/eva{
+ name = "E.V.A. Storage"
+ })
+"bGz" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/airlock/command{
+ name = "E.V.A. Storage";
+ req_access_txt = "18"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/ai_monitored/storage/eva{
+ name = "E.V.A. Storage"
+ })
+"bGA" = (
+/obj/structure/sign/securearea,
+/turf/closed/wall/r_wall,
+/area/ai_monitored/storage/eva{
+ name = "E.V.A. Storage"
+ })
+"bGB" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/door/airlock/command{
+ name = "E.V.A. Storage";
+ req_access_txt = "18"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/ai_monitored/storage/eva{
+ name = "E.V.A. Storage"
+ })
+"bGC" = (
+/turf/closed/wall/r_wall,
+/area/teleporter{
+ name = "\improper Teleporter Room"
+ })
+"bGD" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command{
+ name = "Teleport Access";
+ req_access_txt = "0";
+ req_one_access_txt = "17;19"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/teleporter{
+ name = "\improper Teleporter Room"
+ })
+"bGE" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/sign/securearea,
+/turf/closed/wall/r_wall,
+/area/teleporter{
+ name = "\improper Teleporter Room"
+ })
+"bGF" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow,
+/turf/open/floor/plating,
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bGG" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bGH" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bGI" = (
+/turf/open/floor/plasteel,
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bGJ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bGK" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bGL" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 27;
+ pixel_y = 0
+ },
+/obj/machinery/camera{
+ c_tag = "Command Hallway - Central";
+ dir = 8;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bGM" = (
+/turf/closed/wall/r_wall,
+/area/gateway)
+"bGN" = (
+/obj/structure/sign/securearea,
+/turf/closed/wall/r_wall,
+/area/gateway)
+"bGO" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command{
+ name = "Gateway Atrium";
+ req_access_txt = "62"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/gateway)
+"bGP" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall/r_wall,
+/area/gateway)
+"bGQ" = (
+/obj/machinery/vending/cola/random,
+/turf/open/floor/plasteel/vault,
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bGR" = (
+/obj/machinery/vending/cigarette,
+/obj/machinery/newscaster{
+ pixel_x = 0;
+ pixel_y = -29
+ },
+/turf/open/floor/plasteel/vault,
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bGS" = (
+/obj/machinery/vending/coffee,
+/turf/open/floor/plasteel/vault,
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bGT" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "0";
+ req_one_access_txt = "12;17"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/maintcentral{
+ name = "Central Maintenance"
+ })
+"bGU" = (
+/obj/structure/sign/directions/engineering{
+ desc = "A direction sign, pointing out which way the escape arm is.";
+ icon_state = "direction_evac";
+ name = "escape arm"
+ },
+/obj/structure/sign/directions/engineering{
+ desc = "A direction sign, pointing out which way the medical department is.";
+ icon_state = "direction_med";
+ name = "medical department";
+ pixel_y = 8
+ },
+/obj/structure/sign/directions/engineering{
+ desc = "A direction sign, pointing out which way the research department is.";
+ icon_state = "direction_sci";
+ name = "research department";
+ pixel_y = -8
+ },
+/turf/closed/wall,
+/area/maintenance/maintcentral{
+ name = "Central Maintenance"
+ })
+"bGV" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"bGW" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bGX" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/hallway/primary/central)
+"bGY" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/bar)
+"bGZ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"bHa" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 2;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"bHb" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"bHc" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"bHd" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/obj/structure/chair/stool{
+ pixel_y = 8
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"bHe" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"bHf" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 2
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"bHg" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/theatre)
+"bHh" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/carpet,
+/area/crew_quarters/theatre)
+"bHi" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/theatre)
+"bHj" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/theatre)
+"bHk" = (
+/obj/structure/table/wood,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/item/clothing/head/sombrero,
+/obj/structure/sign/poster{
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"bHl" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bHm" = (
+/obj/item/weapon/crowbar,
+/obj/item/weapon/wrench,
+/obj/structure/table,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/caution/corner{
+ dir = 8
+ },
+/area/hallway/primary/starboard)
+"bHn" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=13.3-Engineering-Central";
+ location = "13.2-Tcommstore"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"bHo" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/caution{
+ dir = 4
+ },
+/area/hallway/primary/starboard)
+"bHp" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/atmos)
+"bHq" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/atmos)
+"bHr" = (
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/atmos)
+"bHs" = (
+/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 2
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/atmos)
+"bHt" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/caution{
+ dir = 8
+ },
+/area/atmos)
+"bHu" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bHv" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/atmos)
+"bHw" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 6;
+ initialize_directions = 6
+ },
+/turf/open/floor/plating,
+/area/atmos)
+"bHx" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+ color = "purple"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/atmos)
+"bHy" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/atmos)
+"bHz" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/yellow/visible,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/atmos)
+"bHA" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/green/visible,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/atmos)
+"bHB" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
+ dir = 4;
+ initialize_directions = 11
+ },
+/turf/open/floor/plating,
+/area/atmos)
+"bHC" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plasteel/black{
+ name = "Mainframe Floor";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/server)
+"bHD" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black{
+ name = "Mainframe Floor";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/server)
+"bHE" = (
+/obj/machinery/holopad,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/black{
+ name = "Mainframe Floor";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/server)
+"bHF" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black{
+ name = "Mainframe Floor";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/server)
+"bHG" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black{
+ name = "Mainframe Floor";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/server)
+"bHH" = (
+/obj/structure/closet/firecloset,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bHI" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/arrival{
+ dir = 4
+ },
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bHJ" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/plating{
+ icon_state = "platingdmg1"
+ },
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bHK" = (
+/obj/item/weapon/book/manual/wiki/security_space_law{
+ pixel_x = -3;
+ pixel_y = 5
+ },
+/obj/structure/table/wood,
+/turf/open/floor/wood,
+/area/security/vacantoffice)
+"bHL" = (
+/obj/structure/chair/comfy/black{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/security/vacantoffice)
+"bHM" = (
+/obj/item/weapon/folder/white{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/structure/table/wood,
+/turf/open/floor/carpet,
+/area/security/vacantoffice)
+"bHN" = (
+/obj/machinery/shower{
+ icon_state = "shower";
+ dir = 4
+ },
+/obj/machinery/light/small,
+/obj/effect/landmark{
+ name = "revenantspawn"
+ },
+/obj/effect/decal/cleanable/blood/old,
+/obj/effect/decal/cleanable/blood/gibs/old,
+/turf/open/floor/plasteel/floorgrime,
+/area/crew_quarters/toilet{
+ name = "\improper Auxiliary Restrooms"
+ })
+"bHO" = (
+/obj/machinery/shower{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/toilet{
+ name = "\improper Auxiliary Restrooms"
+ })
+"bHP" = (
+/obj/machinery/door/airlock{
+ id_tag = "AuxToilet3";
+ name = "Unit 3"
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/toilet{
+ name = "\improper Auxiliary Restrooms"
+ })
+"bHQ" = (
+/obj/structure/toilet{
+ pixel_y = 8
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/button/door{
+ id = "AuxToilet3";
+ name = "Lock Control";
+ normaldoorcontrol = 1;
+ pixel_x = 25;
+ pixel_y = 0;
+ req_access_txt = "0";
+ specialfunctions = 4
+ },
+/obj/machinery/newscaster{
+ pixel_x = 0;
+ pixel_y = -32
+ },
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/toilet{
+ name = "\improper Auxiliary Restrooms"
+ })
+"bHR" = (
+/obj/structure/bookcase/random/nonfiction,
+/turf/open/floor/wood,
+/area/library)
+"bHS" = (
+/obj/structure/bookcase/random/fiction,
+/turf/open/floor/wood,
+/area/library)
+"bHT" = (
+/obj/structure/table/wood,
+/obj/item/device/flashlight/lamp/green{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/turf/open/floor/wood,
+/area/library)
+"bHU" = (
+/obj/machinery/holopad,
+/turf/open/floor/wood,
+/area/library)
+"bHV" = (
+/obj/structure/table/wood,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/turf/open/floor/wood,
+/area/library)
+"bHW" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bHX" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/hallway/primary/central)
+"bHY" = (
+/obj/machinery/suit_storage_unit/standard_unit,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/ai_monitored/storage/eva{
+ name = "E.V.A. Storage"
+ })
+"bHZ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/storage/eva{
+ name = "E.V.A. Storage"
+ })
+"bIa" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/storage/eva{
+ name = "E.V.A. Storage"
+ })
+"bIb" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/storage/eva{
+ name = "E.V.A. Storage"
+ })
+"bIc" = (
+/obj/machinery/suit_storage_unit/standard_unit,
+/obj/machinery/light_switch{
+ pixel_x = -8;
+ pixel_y = 30
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/ai_monitored/storage/eva{
+ name = "E.V.A. Storage"
+ })
+"bId" = (
+/turf/closed/wall,
+/area/ai_monitored/storage/eva{
+ name = "E.V.A. Storage"
+ })
+"bIe" = (
+/obj/structure/table,
+/obj/item/weapon/hand_tele,
+/obj/item/device/radio/beacon,
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 4
+ },
+/area/teleporter{
+ name = "\improper Teleporter Room"
+ })
+"bIf" = (
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/obj/item/weapon/stock_parts/cell/high{
+ charge = 100;
+ maxcharge = 15000
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 4
+ },
+/area/teleporter{
+ name = "\improper Teleporter Room"
+ })
+"bIg" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/teleporter{
+ name = "\improper Teleporter Room"
+ })
+"bIh" = (
+/obj/structure/closet/crate{
+ icon_state = "crate";
+ opened = 0
+ },
+/obj/item/stack/cable_coil,
+/obj/item/weapon/crowbar,
+/obj/item/weapon/screwdriver{
+ pixel_y = 16
+ },
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "Teleporter APC";
+ pixel_x = 24
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 1
+ },
+/area/teleporter{
+ name = "\improper Teleporter Room"
+ })
+"bIi" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bIj" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bIk" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bIl" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bIm" = (
+/obj/structure/closet/secure_closet/exile,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27;
+ pixel_y = 0
+ },
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ dir = 1
+ },
+/area/gateway)
+"bIn" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/gateway)
+"bIo" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/gateway)
+"bIp" = (
+/obj/structure/closet/crate{
+ icon_state = "crateopen";
+ opened = 1
+ },
+/obj/item/stack/sheet/rglass{
+ amount = 50
+ },
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/obj/item/stack/rods{
+ amount = 50
+ },
+/obj/item/weapon/storage/toolbox/emergency,
+/obj/item/device/flashlight,
+/obj/machinery/power/apc{
+ cell_type = 5000;
+ dir = 4;
+ name = "Gateway APC";
+ pixel_x = 28;
+ pixel_y = 0
+ },
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ dir = 1
+ },
+/area/gateway)
+"bIq" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/maintcentral{
+ name = "Central Maintenance"
+ })
+"bIr" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bIs" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/hallway/primary/central)
+"bIt" = (
+/obj/structure/table,
+/obj/item/clothing/head/hardhat/cakehat,
+/obj/machinery/newscaster{
+ pixel_x = -30;
+ pixel_y = 0
+ },
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"bIu" = (
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = -28
+ },
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"bIv" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 10;
+ initialize_directions = 10
+ },
+/turf/open/floor/plating,
+/area/toxins/xenobiology)
+"bIw" = (
+/obj/machinery/light,
+/obj/machinery/camera{
+ c_tag = "Kitchen Hatch";
+ dir = 1;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"bIx" = (
+/obj/structure/rack,
+/obj/item/clothing/shoes/winterboots,
+/obj/item/clothing/suit/hooded/wintercoat,
+/turf/open/floor/plating,
+/area/toxins/xenobiology)
+"bIy" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/machinery/light,
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"bIz" = (
+/obj/structure/table/wood,
+/obj/item/weapon/clipboard,
+/obj/item/weapon/paper,
+/obj/structure/sign/poster{
+ pixel_y = 32
+ },
+/turf/open/floor/wood,
+/area/security/vacantoffice)
+"bIA" = (
+/obj/machinery/light_switch{
+ pixel_y = -28
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/obj/machinery/light,
+/turf/open/floor/carpet,
+/area/crew_quarters/theatre)
+"bIB" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/theatre)
+"bIC" = (
+/obj/structure/table/wood,
+/obj/machinery/light/small,
+/obj/item/clothing/glasses/regular/hipster{
+ name = "Hipster Glasses"
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"bID" = (
+/obj/structure/urinal{
+ pixel_y = 29
+ },
+/obj/structure/sign/poster{
+ pixel_x = -32;
+ pixel_y = 0
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/toilet{
+ name = "\improper Auxiliary Restrooms"
+ })
+"bIE" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg2"
+ },
+/area/maintenance/starboard)
+"bIF" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/yellow/side{
+ dir = 10
+ },
+/area/hallway/primary/starboard)
+"bIG" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 2
+ },
+/area/hallway/primary/starboard)
+"bIH" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-22"
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 6
+ },
+/area/hallway/primary/starboard)
+"bII" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/atmos)
+"bIJ" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/atmos)
+"bIK" = (
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 2;
+ initialize_directions = 11
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/atmos)
+"bIL" = (
+/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/atmos)
+"bIM" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/closed/wall/r_wall,
+/area/atmos)
+"bIN" = (
+/obj/structure/table,
+/obj/item/stack/sheet/glass{
+ amount = 50
+ },
+/obj/item/stack/sheet/glass{
+ amount = 50
+ },
+/obj/item/stack/rods{
+ amount = 50
+ },
+/obj/item/stack/rods{
+ amount = 50
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ dir = 1
+ },
+/area/atmos)
+"bIO" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "Air to External Air Ports";
+ on = 1
+ },
+/turf/open/floor/plasteel/caution{
+ dir = 8
+ },
+/area/atmos)
+"bIP" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bIQ" = (
+/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
+ dir = 1;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bIR" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/atmos)
+"bIS" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bIT" = (
+/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
+ dir = 4;
+ initialize_directions = 11
+ },
+/obj/machinery/meter,
+/turf/open/floor/plasteel,
+/area/atmos)
+"bIU" = (
+/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+ color = "purple"
+ },
+/obj/machinery/meter,
+/turf/open/floor/plasteel,
+/area/atmos)
+"bIV" = (
+/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+ dir = 6
+ },
+/obj/machinery/meter,
+/turf/open/floor/plasteel,
+/area/atmos)
+"bIW" = (
+/obj/machinery/atmospherics/pipe/manifold/yellow/visible,
+/turf/open/floor/plasteel,
+/area/atmos)
+"bIX" = (
+/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bIY" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 0
+ },
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "N2O to Pure";
+ on = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/green/visible,
+/turf/open/floor/plasteel/escape{
+ dir = 5
+ },
+/area/atmos)
+"bIZ" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/atmos)
+"bJa" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/atmos)
+"bJb" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+ dir = 4
+ },
+/turf/open/space,
+/area/space)
+"bJc" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ external_pressure_bound = 0;
+ frequency = 1441;
+ id_tag = "n2o_out";
+ initialize_directions = 1;
+ internal_pressure_bound = 4000;
+ on = 1;
+ pressure_checks = 2;
+ pump_direction = 0
+ },
+/turf/open/floor/engine/n2o,
+/area/atmos)
+"bJd" = (
+/turf/open/floor/engine/n2o,
+/area/atmos)
+"bJe" = (
+/obj/structure/lattice,
+/obj/structure/grille,
+/obj/structure/lattice,
+/obj/structure/lattice,
+/turf/closed/wall/r_wall,
+/area/space)
+"bJf" = (
+/obj/structure/lattice,
+/obj/structure/grille,
+/obj/structure/lattice,
+/turf/closed/wall/r_wall,
+/area/space)
+"bJg" = (
+/obj/machinery/message_server,
+/turf/open/floor/bluegrid{
+ name = "Mainframe Base";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/server)
+"bJh" = (
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-21";
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/grimy,
+/area/tcommsat/computer{
+ name = "\improper Telecoms Control Room"
+ })
+"bJi" = (
+/obj/machinery/light/small,
+/obj/item/weapon/folder,
+/obj/item/weapon/folder,
+/obj/machinery/camera{
+ c_tag = "Telecoms - Control Room";
+ dir = 1;
+ network = list("SS13","tcomm")
+ },
+/obj/structure/table/wood,
+/obj/item/weapon/pen,
+/turf/open/floor/plasteel/grimy,
+/area/tcommsat/computer{
+ name = "\improper Telecoms Control Room"
+ })
+"bJj" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "0";
+ req_one_access_txt = "12;27;37"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bJk" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/black{
+ name = "Mainframe Floor";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/server)
+"bJl" = (
+/obj/structure/lattice,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/space,
+/area/space)
+"bJm" = (
+/obj/machinery/telecomms/bus/preset_two,
+/turf/open/floor/bluegrid{
+ name = "Mainframe Base";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/server)
+"bJn" = (
+/obj/machinery/blackbox_recorder,
+/turf/open/floor/bluegrid{
+ name = "Mainframe Base";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/server)
+"bJo" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/arrival{
+ dir = 4
+ },
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bJp" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "0";
+ req_one_access_txt = "12;27;37"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bJq" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 2
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bJr" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bJs" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bJt" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = -29
+ },
+/turf/open/floor/wood,
+/area/security/vacantoffice)
+"bJu" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9;
+ pixel_y = 0
+ },
+/turf/open/floor/wood,
+/area/security/vacantoffice)
+"bJv" = (
+/obj/item/weapon/folder/blue,
+/obj/structure/table/wood,
+/turf/open/floor/carpet,
+/area/security/vacantoffice)
+"bJw" = (
+/obj/structure/chair/office/dark{
+ dir = 8
+ },
+/turf/open/floor/carpet,
+/area/security/vacantoffice)
+"bJx" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/open/floor/wood,
+/area/security/vacantoffice)
+"bJy" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/effect/decal/cleanable/cobweb,
+/turf/open/floor/wood,
+/area/library)
+"bJz" = (
+/turf/open/floor/wood{
+ icon_state = "wood-broken5"
+ },
+/area/library)
+"bJA" = (
+/obj/machinery/door/window/northright{
+ base_state = "left";
+ dir = 8;
+ icon_state = "left";
+ name = "Library Desk Door";
+ pixel_x = 3;
+ req_access_txt = "37"
+ },
+/turf/open/floor/wood,
+/area/library)
+"bJB" = (
+/obj/effect/landmark/start{
+ name = "Librarian"
+ },
+/obj/structure/chair/office/dark{
+ dir = 1
+ },
+/turf/open/floor/wood,
+/area/library)
+"bJC" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 27;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/hallway/primary/central)
+"bJD" = (
+/obj/machinery/suit_storage_unit/standard_unit,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/ai_monitored/storage/eva{
+ name = "E.V.A. Storage"
+ })
+"bJE" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/storage/eva{
+ name = "E.V.A. Storage"
+ })
+"bJF" = (
+/obj/structure/table,
+/obj/item/weapon/storage/belt/utility,
+/obj/item/weapon/storage/belt/utility,
+/obj/item/device/radio/off,
+/obj/item/device/radio/off,
+/obj/item/device/radio/off,
+/obj/item/device/radio/off,
+/obj/item/device/multitool,
+/turf/open/floor/plasteel,
+/area/ai_monitored/storage/eva{
+ name = "E.V.A. Storage"
+ })
+"bJG" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/storage/eva{
+ name = "E.V.A. Storage"
+ })
+"bJH" = (
+/obj/machinery/suit_storage_unit/standard_unit,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/ai_monitored/storage/eva{
+ name = "E.V.A. Storage"
+ })
+"bJI" = (
+/obj/structure/window/reinforced,
+/obj/structure/table,
+/obj/item/stack/packageWrap,
+/obj/item/stack/packageWrap,
+/obj/item/stack/packageWrap,
+/obj/item/stack/packageWrap,
+/obj/item/weapon/hand_labeler,
+/turf/open/floor/plasteel/vault{
+ dir = 4
+ },
+/area/teleporter{
+ name = "\improper Teleporter Room"
+ })
+"bJJ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/teleporter{
+ name = "\improper Teleporter Room"
+ })
+"bJK" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/teleporter{
+ name = "\improper Teleporter Room"
+ })
+"bJL" = (
+/obj/structure/closet/crate{
+ icon_state = "crate";
+ opened = 0
+ },
+/obj/item/stack/sheet/rglass{
+ amount = 50
+ },
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/obj/item/weapon/storage/toolbox/emergency,
+/obj/item/device/flashlight,
+/obj/structure/window/reinforced,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 1
+ },
+/area/teleporter{
+ name = "\improper Teleporter Room"
+ })
+"bJM" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/teleporter{
+ name = "\improper Teleporter Room"
+ })
+"bJN" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bJO" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bJP" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bJQ" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/item/device/radio/beacon,
+/turf/open/floor/plasteel/neutral/side{
+ dir = 2
+ },
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bJR" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/bridge/meeting_room{
+ name = "\improper Command Hallway"
+ })
+"bJS" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/gateway)
+"bJT" = (
+/obj/structure/closet/l3closet/scientist,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ dir = 1
+ },
+/area/gateway)
+"bJU" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/gateway)
+"bJV" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/gateway)
+"bJW" = (
+/obj/structure/table,
+/obj/item/weapon/folder/yellow,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ dir = 1
+ },
+/area/gateway)
+"bJX" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/open/floor/plating,
+/area/gateway)
+"bJY" = (
+/obj/machinery/gateway{
+ dir = 9
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 1
+ },
+/area/gateway)
+"bJZ" = (
+/obj/machinery/gateway{
+ dir = 1
+ },
+/obj/machinery/status_display{
+ density = 0;
+ layer = 4;
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/gateway)
+"bKa" = (
+/obj/machinery/gateway{
+ dir = 5
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 4
+ },
+/area/gateway)
+"bKb" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/maintenance/maintcentral{
+ name = "Central Maintenance"
+ })
+"bKc" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"bKd" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/hallway/primary/central)
+"bKe" = (
+/turf/closed/wall,
+/area/crew_quarters/kitchen)
+"bKf" = (
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "kitchen";
+ name = "Serving Hatch"
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/crew_quarters/kitchen)
+"bKg" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "kitchen";
+ name = "Serving Hatch"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/item/weapon/reagent_containers/food/snacks/pie/cream,
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/crew_quarters/kitchen)
+"bKh" = (
+/obj/machinery/computer/security/telescreen/entertainment,
+/turf/closed/wall,
+/area/crew_quarters/kitchen)
+"bKi" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "kitchen";
+ name = "Serving Hatch"
+ },
+/obj/item/weapon/reagent_containers/food/condiment/saltshaker{
+ pixel_x = -3;
+ pixel_y = 0
+ },
+/obj/item/weapon/reagent_containers/food/condiment/peppermill{
+ pixel_x = 3
+ },
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/crew_quarters/kitchen)
+"bKj" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "kitchen";
+ name = "Serving Hatch"
+ },
+/obj/item/weapon/storage/fancy/donut_box,
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/crew_quarters/kitchen)
+"bKk" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock{
+ name = "Kitchen";
+ req_access_txt = "28"
+ },
+/turf/open/floor/plasteel/cafeteria{
+ dir = 2
+ },
+/area/crew_quarters/kitchen)
+"bKl" = (
+/obj/machinery/vending/snack/random,
+/obj/machinery/newscaster{
+ pixel_y = -29
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/bar)
+"bKm" = (
+/obj/machinery/vending/coffee,
+/turf/open/floor/carpet,
+/area/crew_quarters/bar)
+"bKn" = (
+/obj/machinery/camera{
+ c_tag = "Club - Aft";
+ dir = 1;
+ network = list("SS13")
+ },
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_x = 0;
+ pixel_y = -29
+ },
+/obj/item/clothing/mask/cigarette/pipe,
+/obj/structure/table/wood,
+/turf/open/floor/carpet,
+/area/crew_quarters/bar)
+"bKo" = (
+/obj/machinery/vending/cigarette{
+ pixel_y = 1
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/bar)
+"bKp" = (
+/obj/machinery/vending/cola/random,
+/turf/open/floor/carpet,
+/area/crew_quarters/bar)
+"bKq" = (
+/obj/machinery/door/airlock{
+ name = "Theatre Backstage";
+ req_access_txt = "46"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"bKr" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/atmos_control{
+ name = "Telecoms Storage"
+ })
+"bKs" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall/r_wall,
+/area/maintenance/atmos_control{
+ name = "Telecoms Storage"
+ })
+"bKt" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/airlock/engineering{
+ name = "Telecoms Storage";
+ req_access_txt = "61"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/maintenance/atmos_control{
+ name = "Telecoms Storage"
+ })
+"bKu" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/closed/wall/r_wall,
+/area/atmos)
+"bKv" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 4;
+ name = "External Waste Ports to Filter";
+ on = 1
+ },
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/caution{
+ dir = 8
+ },
+/area/atmos)
+"bKw" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bKx" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bKy" = (
+/obj/item/device/radio/beacon,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bKz" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bKA" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 0;
+ name = "Air to Ports";
+ on = 0
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bKB" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 0;
+ name = "Mix to Ports";
+ on = 0
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bKC" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 0;
+ name = "Pure to Ports";
+ on = 0
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bKD" = (
+/obj/effect/landmark/start{
+ name = "Atmospheric Technician"
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bKE" = (
+/obj/machinery/atmospherics/pipe/simple/yellow/visible,
+/turf/open/floor/plasteel,
+/area/atmos)
+"bKF" = (
+/obj/machinery/computer/atmos_control/tank{
+ frequency = 1441;
+ input_tag = "n2o_in";
+ name = "Nitrous Oxide Supply Control";
+ output_tag = "n2o_out";
+ sensors = list("n2o_sensor" = "Tank")
+ },
+/obj/machinery/atmospherics/pipe/simple/green/visible,
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 0
+ },
+/turf/open/floor/plasteel/escape{
+ dir = 4
+ },
+/area/atmos)
+"bKG" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/turf/open/floor/plasteel/black,
+/area/atmos)
+"bKH" = (
+/obj/machinery/air_sensor{
+ frequency = 1441;
+ id_tag = "n2o_sensor"
+ },
+/turf/open/floor/engine/n2o,
+/area/atmos)
+"bKI" = (
+/obj/machinery/portable_atmospherics/canister/nitrous_oxide{
+ valve_open = 1
+ },
+/turf/open/floor/engine/n2o,
+/area/atmos)
+"bKJ" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/engine/n2o,
+/area/atmos)
+"bKK" = (
+/obj/structure/grille,
+/obj/structure/lattice,
+/obj/structure/lattice,
+/turf/closed/wall/r_wall,
+/area/space)
+"bKL" = (
+/obj/machinery/telecomms/processor/preset_two,
+/turf/open/floor/bluegrid{
+ name = "Mainframe Base";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/server)
+"bKM" = (
+/obj/structure/table/glass,
+/obj/item/weapon/folder{
+ pixel_y = 2
+ },
+/obj/item/weapon/folder{
+ pixel_y = 2
+ },
+/obj/item/weapon/pen,
+/turf/open/floor/plasteel/circuit/gcircuit{
+ name = "Mainframe Base";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/server)
+"bKN" = (
+/obj/machinery/telecomms/bus/preset_four,
+/turf/open/floor/bluegrid{
+ name = "Mainframe Base";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/server)
+"bKO" = (
+/obj/machinery/telecomms/hub/preset,
+/turf/open/floor/plasteel/circuit/gcircuit{
+ name = "Mainframe Base";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/server)
+"bKP" = (
+/obj/machinery/telecomms/processor/preset_four,
+/turf/open/floor/bluegrid{
+ name = "Mainframe Base";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/server)
+"bKQ" = (
+/obj/structure/lattice,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/space,
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"bKR" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/door/window{
+ base_state = "right";
+ dir = 2;
+ icon_state = "right";
+ name = "MiniSat Walkway Access";
+ req_access_txt = "0"
+ },
+/obj/machinery/camera{
+ c_tag = "MiniSat Exterior - Aft Starboard";
+ dir = 4;
+ network = list("MiniSat")
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"bKS" = (
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-06";
+ level = 4.1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bKT" = (
+/obj/structure/chair,
+/obj/effect/landmark/start{
+ name = "Assistant"
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bKU" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 2;
+ on = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bKV" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bKW" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/machinery/camera{
+ c_tag = "Arrivals - Aft Arm";
+ dir = 8;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/arrival{
+ dir = 4
+ },
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bKX" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg2"
+ },
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bKY" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Vacant Office APC";
+ pixel_x = -25
+ },
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/open/floor/wood,
+/area/security/vacantoffice)
+"bKZ" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/wood,
+/area/security/vacantoffice)
+"bLa" = (
+/obj/structure/light_construct{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/security/vacantoffice)
+"bLb" = (
+/obj/structure/table,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bLc" = (
+/obj/structure/closet/crate{
+ icon_state = "crateopen";
+ opened = 1
+ },
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 3;
+ name = "3maintenance loot spawner"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bLd" = (
+/obj/structure/closet,
+/obj/item/clothing/shoes/jackboots,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bLe" = (
+/obj/machinery/vending/autodrobe{
+ req_access_txt = "0"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bLf" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/effect/landmark/costume,
+/obj/effect/landmark/costume,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bLg" = (
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/effect/landmark/costume,
+/obj/effect/landmark/costume,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bLh" = (
+/obj/structure/bookcase/random/religion,
+/turf/open/floor/wood,
+/area/library)
+"bLi" = (
+/obj/structure/bookcase/random/adult,
+/turf/open/floor/wood,
+/area/library)
+"bLj" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/turf/open/floor/carpet,
+/area/library)
+"bLk" = (
+/obj/structure/bookcase/random/reference,
+/turf/open/floor/wood,
+/area/library)
+"bLl" = (
+/obj/structure/table/wood,
+/obj/item/weapon/pen/red,
+/obj/item/weapon/pen/blue{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/turf/open/floor/wood,
+/area/library)
+"bLm" = (
+/obj/item/stack/sheet/rglass{
+ amount = 50
+ },
+/obj/item/stack/sheet/rglass{
+ amount = 50
+ },
+/obj/item/stack/rods{
+ amount = 50
+ },
+/obj/item/stack/rods{
+ amount = 50
+ },
+/obj/structure/table,
+/obj/item/weapon/storage/toolbox/mechanical{
+ pixel_x = -2;
+ pixel_y = -1
+ },
+/obj/item/weapon/storage/toolbox/mechanical{
+ pixel_x = -2;
+ pixel_y = -1
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "E.V.A. Storage APC";
+ pixel_x = -24
+ },
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/ai_monitored/storage/eva{
+ name = "E.V.A. Storage"
+ })
+"bLn" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/storage/eva{
+ name = "E.V.A. Storage"
+ })
+"bLo" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/storage/eva{
+ name = "E.V.A. Storage"
+ })
+"bLp" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/storage/eva{
+ name = "E.V.A. Storage"
+ })
+"bLq" = (
+/obj/machinery/door/window/northleft{
+ dir = 8;
+ name = "Magboot Storage";
+ pixel_x = -1;
+ pixel_y = 0;
+ req_access_txt = "19"
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/clothing/shoes/magboots{
+ pixel_x = -4;
+ pixel_y = 3
+ },
+/obj/item/clothing/shoes/magboots{
+ pixel_x = 0;
+ pixel_y = 0
+ },
+/obj/item/clothing/shoes/magboots{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/ai_monitored/storage/eva{
+ name = "E.V.A. Storage"
+ })
+"bLr" = (
+/obj/machinery/teleport/hub,
+/turf/open/floor/plating,
+/area/teleporter{
+ name = "\improper Teleporter Room"
+ })
+"bLs" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/teleporter{
+ name = "\improper Teleporter Room"
+ })
+"bLt" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/teleporter{
+ name = "\improper Teleporter Room"
+ })
+"bLu" = (
+/obj/machinery/door/window/northleft{
+ dir = 8;
+ name = "Disposals Chute";
+ pixel_x = -1;
+ pixel_y = 0;
+ req_access_txt = "0"
+ },
+/obj/machinery/disposal/deliveryChute{
+ dir = 8;
+ name = "disposals chute";
+ pixel_x = 5
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 1
+ },
+/area/teleporter{
+ name = "\improper Teleporter Room"
+ })
+"bLv" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "corporate_privacy";
+ name = "showroom shutters"
+ },
+/turf/open/floor/plating,
+/area/assembly/showroom{
+ name = "\improper Corporate Showroom"
+ })
+"bLw" = (
+/turf/closed/wall/r_wall,
+/area/assembly/showroom{
+ name = "\improper Corporate Showroom"
+ })
+"bLx" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command{
+ name = "Corporate Showroom";
+ req_access_txt = "19"
+ },
+/turf/open/floor/wood,
+/area/assembly/showroom{
+ name = "\improper Corporate Showroom"
+ })
+"bLy" = (
+/obj/structure/closet/secure_closet/medical1{
+ pixel_x = 0
+ },
+/obj/machinery/airalarm{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22
+ },
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ dir = 1
+ },
+/area/gateway)
+"bLz" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/gateway)
+"bLA" = (
+/obj/structure/chair/stool,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/gateway)
+"bLB" = (
+/obj/structure/table,
+/obj/item/weapon/paper/pamphlet,
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ dir = 1
+ },
+/area/gateway)
+"bLC" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow,
+/turf/open/floor/plating,
+/area/gateway)
+"bLD" = (
+/obj/machinery/gateway{
+ dir = 8
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/gateway)
+"bLE" = (
+/obj/machinery/gateway/centerstation,
+/turf/open/floor/plasteel/black,
+/area/gateway)
+"bLF" = (
+/obj/machinery/gateway{
+ dir = 4
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/gateway)
+"bLG" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/item/weapon/cigbutt,
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/turf/open/floor/plating,
+/area/maintenance/maintcentral{
+ name = "Central Maintenance"
+ })
+"bLH" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/status_display{
+ density = 0;
+ layer = 4;
+ pixel_x = -32;
+ pixel_y = 0
+ },
+/obj/machinery/camera{
+ c_tag = "Central Primary Hallway - Starboard - Kitchen";
+ dir = 4;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"bLI" = (
+/obj/structure/table,
+/obj/machinery/microwave{
+ pixel_x = -3;
+ pixel_y = 6
+ },
+/obj/machinery/button/door{
+ id = "kitchenwindow";
+ name = "Window Shutter Control";
+ pixel_x = -26;
+ pixel_y = 0;
+ req_access_txt = "28"
+ },
+/turf/open/floor/plasteel/cafeteria{
+ dir = 2
+ },
+/area/crew_quarters/kitchen)
+"bLJ" = (
+/obj/structure/table,
+/obj/machinery/microwave{
+ pixel_x = -3;
+ pixel_y = 6
+ },
+/obj/machinery/button/door{
+ id = "kitchen";
+ name = "Kitchen Shutters Control";
+ pixel_x = -4;
+ pixel_y = 26;
+ req_access_txt = "28"
+ },
+/obj/machinery/light_switch{
+ pixel_x = 6;
+ pixel_y = 26
+ },
+/turf/open/floor/plasteel/cafeteria{
+ dir = 2
+ },
+/area/crew_quarters/kitchen)
+"bLK" = (
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/crew_quarters/kitchen)
+"bLL" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/crew_quarters/kitchen)
+"bLM" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/crew_quarters/kitchen)
+"bLN" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/crew_quarters/kitchen)
+"bLO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/sink/kitchen{
+ pixel_y = 28
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/crew_quarters/kitchen)
+"bLP" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/crew_quarters/kitchen)
+"bLQ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/light_switch{
+ pixel_x = -26;
+ pixel_y = 0
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"bLR" = (
+/obj/structure/dresser,
+/obj/machinery/newscaster{
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"bLS" = (
+/obj/machinery/vending/autodrobe,
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"bLT" = (
+/obj/structure/sign/securearea,
+/turf/closed/wall/r_wall,
+/area/bridge)
+"bLU" = (
+/obj/structure/rack,
+/obj/item/weapon/circuitboard/machine/telecomms/bus,
+/obj/item/weapon/circuitboard/machine/telecomms/broadcaster,
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/obj/machinery/camera{
+ c_tag = "Telecoms - Storage";
+ dir = 4;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/black,
+/area/maintenance/atmos_control{
+ name = "Telecoms Storage"
+ })
+"bLV" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/holopad,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/black,
+/area/maintenance/atmos_control{
+ name = "Telecoms Storage"
+ })
+"bLW" = (
+/obj/structure/table,
+/obj/item/weapon/stock_parts/subspace/analyzer,
+/obj/item/weapon/stock_parts/subspace/analyzer,
+/obj/item/weapon/stock_parts/subspace/analyzer,
+/obj/machinery/light_switch{
+ pixel_x = 0;
+ pixel_y = 26
+ },
+/turf/open/floor/plasteel/black,
+/area/maintenance/atmos_control{
+ name = "Telecoms Storage"
+ })
+"bLX" = (
+/obj/structure/closet,
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/maintenance/starboard)
+"bLY" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bLZ" = (
+/obj/structure/closet/cardboard,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bMa" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/pump,
+/turf/open/floor/plasteel/barber{
+ dir = 8
+ },
+/area/atmos)
+"bMb" = (
+/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
+ dir = 1;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/arrival{
+ dir = 8
+ },
+/area/atmos)
+"bMc" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bMd" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bMe" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = -26
+ },
+/obj/machinery/camera{
+ c_tag = "Atmospherics - Central";
+ dir = 1;
+ network = list("SS13")
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/atmos)
+"bMf" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/clothing/suit/hazardvest,
+/obj/item/clothing/suit/hazardvest,
+/obj/item/clothing/suit/hazardvest,
+/obj/item/clothing/suit/hazardvest,
+/obj/item/clothing/gloves/color/black,
+/obj/item/clothing/gloves/color/black,
+/obj/item/clothing/gloves/color/black,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/turf/open/floor/plasteel,
+/area/atmos)
+"bMg" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bMh" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible,
+/obj/machinery/meter,
+/turf/open/floor/plasteel,
+/area/atmos)
+"bMi" = (
+/obj/machinery/atmospherics/pipe/manifold4w/general/visible,
+/turf/open/floor/plasteel,
+/area/atmos)
+"bMj" = (
+/obj/machinery/holopad,
+/turf/open/floor/plasteel,
+/area/atmos)
+"bMk" = (
+/obj/machinery/atmospherics/components/trinary/filter{
+ dir = 1;
+ filter_type = "n2o";
+ on = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 0
+ },
+/obj/structure/window/reinforced,
+/turf/open/floor/plasteel/escape{
+ dir = 6
+ },
+/area/atmos)
+"bMl" = (
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/turf/open/floor/plasteel/black,
+/area/atmos)
+"bMm" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/on{
+ dir = 8;
+ frequency = 1441;
+ id = "n2o_in";
+ pixel_y = 1
+ },
+/turf/open/floor/engine/n2o,
+/area/atmos)
+"bMn" = (
+/obj/machinery/camera{
+ c_tag = "Atmospherics Tank - N2O";
+ dir = 8;
+ network = list("SS13");
+ pixel_x = 0;
+ pixel_y = 0
+ },
+/turf/open/floor/engine/n2o,
+/area/atmos)
+"bMo" = (
+/obj/machinery/airalarm/server{
+ dir = 4;
+ pixel_x = -22;
+ pixel_y = 0
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/camera{
+ c_tag = "Telecoms - Server Room - Aft-Port";
+ dir = 4;
+ network = list("SS13","tcomm")
+ },
+/turf/open/floor/plasteel/black{
+ name = "Mainframe Floor";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/server)
+"bMp" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/black{
+ name = "Mainframe Floor";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/server)
+"bMq" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/black{
+ name = "Mainframe Floor";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/server)
+"bMr" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/black{
+ name = "Mainframe Floor";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/server)
+"bMs" = (
+/obj/machinery/power/apc{
+ cell_type = 5000;
+ dir = 4;
+ name = "Telecoms Server Room APC";
+ pixel_x = 25;
+ pixel_y = 0
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Telecoms - Server Room - Aft-Starboard";
+ dir = 8;
+ network = list("SS13","tcomm")
+ },
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plasteel/black{
+ name = "Mainframe Floor";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/server)
+"bMt" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"bMu" = (
+/obj/machinery/camera{
+ c_tag = "Arrivals - Aft Arm - Far";
+ dir = 1;
+ network = list("SS13")
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bMv" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bMw" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = -25
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bMx" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bMy" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/blue/corner{
+ dir = 2
+ },
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bMz" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel/arrival{
+ dir = 2
+ },
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bMA" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 2
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/sign/map/left{
+ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";
+ icon_state = "map-left-MS";
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel/arrival{
+ dir = 2
+ },
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bMB" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/sign/map/right{
+ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";
+ icon_state = "map-right-MS";
+ pixel_y = -32
+ },
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-03";
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/arrival{
+ dir = 6
+ },
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bMC" = (
+/obj/structure/chair/office/dark,
+/turf/open/floor/wood,
+/area/security/vacantoffice)
+"bMD" = (
+/obj/structure/table/wood,
+/obj/item/weapon/paper_bin{
+ pixel_x = 1;
+ pixel_y = 9
+ },
+/turf/open/floor/wood,
+/area/security/vacantoffice)
+"bME" = (
+/obj/structure/mirror{
+ pixel_x = -28
+ },
+/obj/item/weapon/lipstick/black,
+/obj/item/weapon/lipstick/jade{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/weapon/lipstick/purple{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/structure/table,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bMF" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bMG" = (
+/obj/structure/closet/crate{
+ icon_state = "crateopen";
+ opened = 1
+ },
+/obj/item/weapon/rack_parts,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bMH" = (
+/obj/machinery/light/small,
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Library APC";
+ pixel_x = -25
+ },
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/effect/decal/cleanable/cobweb,
+/turf/open/floor/wood,
+/area/library)
+"bMI" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/wood,
+/area/library)
+"bMJ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/carpet,
+/area/library)
+"bMK" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/carpet,
+/area/library)
+"bML" = (
+/obj/machinery/light/small,
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/open/floor/wood,
+/area/library)
+"bMM" = (
+/obj/item/weapon/folder,
+/obj/item/weapon/folder,
+/obj/machinery/camera/autoname{
+ dir = 1;
+ network = list("SS13")
+ },
+/obj/structure/table/wood,
+/obj/item/device/taperecorder,
+/obj/item/device/tape,
+/turf/open/floor/wood,
+/area/library)
+"bMN" = (
+/obj/machinery/light/small,
+/obj/machinery/libraryscanner,
+/turf/open/floor/wood,
+/area/library)
+"bMO" = (
+/obj/machinery/newscaster{
+ pixel_x = -1;
+ pixel_y = -29
+ },
+/turf/open/floor/wood,
+/area/library)
+"bMP" = (
+/obj/structure/chair/stool/bar,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"bMQ" = (
+/obj/structure/easel,
+/obj/item/weapon/canvas/twentythreeXtwentythree,
+/obj/item/weapon/canvas/twentythreeXtwentythree,
+/turf/open/floor/wood,
+/area/library)
+"bMR" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/hallway/primary/central)
+"bMS" = (
+/obj/structure/closet/crate/rcd{
+ pixel_y = 4
+ },
+/obj/machinery/door/window/northleft{
+ dir = 4;
+ name = "RCD Storage";
+ pixel_x = 1;
+ pixel_y = 0;
+ req_access_txt = "19"
+ },
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/ai_monitored/storage/eva{
+ name = "E.V.A. Storage"
+ })
+"bMT" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/storage/eva{
+ name = "E.V.A. Storage"
+ })
+"bMU" = (
+/obj/structure/tank_dispenser/oxygen{
+ layer = 2.9;
+ pixel_x = -1;
+ pixel_y = 2
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/storage/eva{
+ name = "E.V.A. Storage"
+ })
+"bMV" = (
+/obj/machinery/camera/motion{
+ c_tag = "E.V.A. Storage";
+ dir = 8
+ },
+/obj/machinery/requests_console{
+ department = "EVA";
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/storage/eva{
+ name = "E.V.A. Storage"
+ })
+"bMW" = (
+/obj/machinery/teleport/station,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24;
+ pixel_y = 0
+ },
+/turf/open/floor/plating,
+/area/teleporter{
+ name = "\improper Teleporter Room"
+ })
+"bMX" = (
+/obj/machinery/bluespace_beacon,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/teleporter{
+ name = "\improper Teleporter Room"
+ })
+"bMY" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/teleporter{
+ name = "\improper Teleporter Room"
+ })
+"bMZ" = (
+/obj/machinery/camera{
+ c_tag = "Teleporter Room";
+ dir = 8;
+ network = list("SS13")
+ },
+/obj/structure/rack,
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/item/clothing/suit/hazardvest,
+/obj/item/clothing/suit/hazardvest,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/turf/open/floor/plasteel/vault{
+ dir = 1
+ },
+/area/teleporter{
+ name = "\improper Teleporter Room"
+ })
+"bNa" = (
+/obj/structure/window/reinforced,
+/obj/structure/showcase{
+ desc = "A stand with an retired construction mech bolted to it. The clamps are rated at 9300PSI. It seems to be falling apart.";
+ icon = 'icons/mecha/mecha.dmi';
+ icon_state = "firefighter";
+ name = "construction mech exhibit"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/decal/cleanable/cobweb,
+/turf/open/floor/carpet,
+/area/assembly/showroom{
+ name = "\improper Corporate Showroom"
+ })
+"bNb" = (
+/obj/structure/sign/atmosplaque{
+ desc = "A guide to the exhibit, detailing the constructive and destructive applications of modern repair drones, as well as the development of the uncorruptable cyborg servants of tomorrow, available today.";
+ icon_state = "kiddieplaque";
+ name = "\improper 'Perfect Drone' sign";
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/obj/machinery/droneDispenser,
+/obj/machinery/door/window/southleft,
+/turf/open/floor/carpet,
+/area/assembly/showroom{
+ name = "\improper Corporate Showroom"
+ })
+"bNc" = (
+/obj/structure/showcase{
+ desc = "A stand with an empty old NanoTrasen Corporation combat mech bolted to it. It is described as the premier unit used to defend corporate interests and employees.";
+ icon = 'icons/mecha/mecha.dmi';
+ icon_state = "marauder";
+ name = "combat mech exhibit"
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/carpet,
+/area/assembly/showroom{
+ name = "\improper Corporate Showroom"
+ })
+"bNd" = (
+/obj/item/weapon/tank/internals/air,
+/obj/item/weapon/tank/internals/air,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bNe" = (
+/obj/structure/table/wood,
+/obj/item/weapon/phone{
+ desc = "Supposedly a direct line to NanoTrasen Central Command. It's not even plugged in.";
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/weapon/cigbutt/cigarbutt{
+ pixel_x = 5;
+ pixel_y = -1
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = 21
+ },
+/turf/open/floor/wood,
+/area/assembly/showroom{
+ name = "\improper Corporate Showroom"
+ })
+"bNf" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/wood,
+/area/assembly/showroom{
+ name = "\improper Corporate Showroom"
+ })
+"bNg" = (
+/obj/machinery/light_switch{
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/table/wood,
+/obj/item/clothing/shoes/laceup,
+/obj/item/clothing/under/suit_jacket/really_black,
+/obj/item/clothing/glasses/sunglasses,
+/obj/machinery/camera{
+ c_tag = "Corporate Showroom";
+ dir = 2;
+ network = list("SS13")
+ },
+/turf/open/floor/wood,
+/area/assembly/showroom{
+ name = "\improper Corporate Showroom"
+ })
+"bNh" = (
+/obj/structure/table/wood,
+/obj/item/weapon/folder/red,
+/obj/item/weapon/pen/red,
+/obj/machinery/newscaster{
+ pixel_x = 30;
+ pixel_y = 2
+ },
+/turf/open/floor/wood,
+/area/security/vacantoffice)
+"bNi" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/window/reinforced,
+/obj/structure/showcase{
+ desc = "Signs describe how cloning pods like these ensure that every NanoTrasen employee can carry out their contracts in full, even in the unlikely event of their catastrophic death. Hopefully they aren't all made of cardboard, like this one.";
+ icon = 'icons/obj/cloning.dmi';
+ icon_state = "pod_0";
+ layer = 4;
+ name = "cloning pod exhibit";
+ pixel_x = 2;
+ pixel_y = 5
+ },
+/turf/open/floor/carpet,
+/area/assembly/showroom{
+ name = "\improper Corporate Showroom"
+ })
+"bNj" = (
+/obj/structure/showcase{
+ desc = "A stand with a model of the perfect Nanotrasen Employee bolted to it. Signs indicate it is robustly genetically engineered, as well as being ruthlessly loyal.";
+ name = "'Perfect Man' employee exhibit"
+ },
+/obj/structure/sign/atmosplaque{
+ desc = "A guide to the exhibit, explaining how recent developments in loyalty implant and cloning technologies by NanoTrasen Corporation have led to the development and the effective immortality of the 'perfect man', the loyal Nanotrasen Employee.";
+ icon_state = "kiddieplaque";
+ name = "\improper 'Perfect Man' sign";
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/obj/structure/window/reinforced,
+/turf/open/floor/carpet,
+/area/assembly/showroom{
+ name = "\improper Corporate Showroom"
+ })
+"bNk" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/window/reinforced,
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/structure/showcase{
+ desc = "A flimsy model of a standard NanoTrasen automated loyalty implant machine. With secure positioning harnesses and a robotic surgical injector, brain damage and other serious medical anomalies are now up to 60% less likely!";
+ icon = 'icons/obj/machines/implantchair.dmi';
+ icon_state = "implantchair";
+ layer = 2.7;
+ name = "NanoTrasen automated loyalty implanter exhibit";
+ pixel_x = 0;
+ pixel_y = 4
+ },
+/turf/open/floor/carpet,
+/area/assembly/showroom{
+ name = "\improper Corporate Showroom"
+ })
+"bNl" = (
+/turf/closed/wall,
+/area/gateway)
+"bNm" = (
+/obj/structure/bed/roller,
+/obj/machinery/vending/wallmed{
+ pixel_x = -28;
+ pixel_y = 0
+ },
+/obj/machinery/camera{
+ c_tag = "Gateway - Atrium";
+ dir = 4;
+ network = list("SS13")
+ },
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ dir = 1
+ },
+/area/gateway)
+"bNn" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/gateway)
+"bNo" = (
+/obj/structure/tank_dispenser/oxygen{
+ pixel_x = -1;
+ pixel_y = 2
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 0;
+ name = "Station Intercom (General)";
+ pixel_x = 29;
+ pixel_y = 0
+ },
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ dir = 1
+ },
+/area/gateway)
+"bNp" = (
+/obj/machinery/gateway{
+ dir = 10
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 4
+ },
+/area/gateway)
+"bNq" = (
+/obj/machinery/gateway,
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/gateway)
+"bNr" = (
+/obj/machinery/gateway{
+ dir = 6
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 1
+ },
+/area/gateway)
+"bNs" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/maintcentral{
+ name = "Central Maintenance"
+ })
+"bNt" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/item/device/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -28
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"bNu" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/hallway/primary/central)
+"bNv" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "kitchenwindow";
+ name = "kitchen shutters"
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/kitchen)
+"bNw" = (
+/obj/structure/rack,
+/obj/item/weapon/book/manual/chef_recipes{
+ pixel_x = 2;
+ pixel_y = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/item/stack/packageWrap,
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/crew_quarters/kitchen)
+"bNx" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/crew_quarters/kitchen)
+"bNy" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
+ },
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/crew_quarters/kitchen)
+"bNz" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/crew_quarters/kitchen)
+"bNA" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/crew_quarters/kitchen)
+"bNB" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/crew_quarters/kitchen)
+"bNC" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/machinery/vending/dinnerware,
+/turf/open/floor/plasteel/cafeteria{
+ dir = 2
+ },
+/area/crew_quarters/kitchen)
+"bND" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27;
+ pixel_y = 0
+ },
+/obj/structure/closet/secure_closet/freezer/meat,
+/turf/open/floor/plasteel/showroomfloor,
+/area/crew_quarters/kitchen)
+"bNE" = (
+/obj/structure/sink/kitchen{
+ desc = "A sink used for washing one's hands and face. It looks rusty and home-made";
+ name = "old sink";
+ pixel_y = 28
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/crew_quarters/kitchen)
+"bNF" = (
+/obj/machinery/gibber,
+/turf/open/floor/plasteel/showroomfloor,
+/area/crew_quarters/kitchen)
+"bNG" = (
+/obj/structure/kitchenspike,
+/turf/open/floor/plasteel/showroomfloor,
+/area/crew_quarters/kitchen)
+"bNH" = (
+/obj/structure/table/wood,
+/obj/item/weapon/lipstick{
+ pixel_y = 5
+ },
+/obj/machinery/camera{
+ c_tag = "Theatre - Stage";
+ dir = 8;
+ network = list("SS13")
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/item/device/instrument/guitar,
+/obj/structure/sign/poster{
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"bNI" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"bNJ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Mime"
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"bNK" = (
+/obj/item/weapon/paper_bin{
+ pixel_x = -2;
+ pixel_y = 6
+ },
+/obj/structure/table/wood,
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/turf/open/floor/wood,
+/area/security/vacantoffice)
+"bNL" = (
+/obj/structure/table,
+/obj/item/weapon/stock_parts/subspace/transmitter,
+/obj/item/weapon/stock_parts/subspace/transmitter,
+/obj/item/weapon/stock_parts/subspace/amplifier,
+/obj/item/weapon/stock_parts/subspace/amplifier,
+/obj/item/weapon/stock_parts/subspace/amplifier,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Telecoms Storage APC";
+ pixel_x = -28;
+ pixel_y = 0
+ },
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/open/floor/plasteel/black,
+/area/maintenance/atmos_control{
+ name = "Telecoms Storage"
+ })
+"bNM" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/black,
+/area/maintenance/atmos_control{
+ name = "Telecoms Storage"
+ })
+"bNN" = (
+/obj/structure/table,
+/obj/item/weapon/stock_parts/subspace/treatment,
+/obj/item/weapon/stock_parts/subspace/treatment,
+/obj/item/weapon/stock_parts/subspace/treatment,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/black,
+/area/maintenance/atmos_control{
+ name = "Telecoms Storage"
+ })
+"bNO" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bNP" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 9
+ },
+/turf/open/floor/plasteel/arrival{
+ dir = 8
+ },
+/area/atmos)
+"bNQ" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 27;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bNR" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/atmos)
+"bNS" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 0;
+ name = "Port Mix to West Ports";
+ on = 0
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bNT" = (
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bNU" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 0;
+ name = "Port Mix to East Ports";
+ on = 0
+ },
+/obj/item/weapon/crowbar,
+/turf/open/floor/plasteel,
+/area/atmos)
+"bNV" = (
+/obj/machinery/atmospherics/pipe/simple/green/visible,
+/obj/machinery/door/window/northleft{
+ dir = 8;
+ icon_state = "left";
+ name = "Inner Pipe Access";
+ req_access_txt = "24"
+ },
+/turf/open/floor/plasteel/black,
+/area/atmos)
+"bNW" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/door/window{
+ dir = 2;
+ name = "MiniSat Walkway Access";
+ req_access_txt = "0"
+ },
+/obj/machinery/camera{
+ c_tag = "MiniSat Exterior - Aft Port";
+ dir = 8;
+ network = list("MiniSat")
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"bNX" = (
+/obj/machinery/telecomms/server/presets/common,
+/turf/open/floor/bluegrid{
+ name = "Mainframe Base";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/server)
+"bNY" = (
+/obj/machinery/telecomms/server/presets/engineering,
+/turf/open/floor/bluegrid{
+ name = "Mainframe Base";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/server)
+"bNZ" = (
+/obj/machinery/light/small,
+/obj/machinery/camera{
+ c_tag = "Telecoms - Server Room - Aft";
+ dir = 1;
+ network = list("SS13","tcomm")
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/ntnet_relay,
+/turf/open/floor/plasteel/black{
+ name = "Mainframe Floor";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/server)
+"bOa" = (
+/obj/machinery/telecomms/server/presets/medical,
+/turf/open/floor/bluegrid{
+ name = "Mainframe Base";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/server)
+"bOb" = (
+/obj/machinery/telecomms/server/presets/science,
+/turf/open/floor/bluegrid{
+ name = "Mainframe Base";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/server)
+"bOc" = (
+/obj/machinery/telecomms/broadcaster/preset_left,
+/turf/open/floor/bluegrid{
+ name = "Mainframe Base";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/server)
+"bOd" = (
+/obj/machinery/door/airlock/external{
+ name = "Auxiliary Airlock"
+ },
+/turf/open/floor/plating,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bOe" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "0";
+ req_one_access_txt = "12;27"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bOf" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bOg" = (
+/obj/structure/table/wood,
+/obj/item/weapon/folder/white{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/turf/open/floor/wood,
+/area/security/vacantoffice)
+"bOh" = (
+/obj/item/toy/cards/deck,
+/obj/structure/table/wood,
+/turf/open/floor/wood,
+/area/security/vacantoffice)
+"bOi" = (
+/obj/structure/table,
+/obj/item/clothing/mask/cigarette/pipe,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bOj" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bOk" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/centcom{
+ name = "Quiet Room";
+ opacity = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/wood,
+/area/library)
+"bOl" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/centcom{
+ name = "Quiet Room";
+ opacity = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/wood,
+/area/library)
+"bOm" = (
+/obj/machinery/door/morgue{
+ name = "Private Study";
+ req_access_txt = "37"
+ },
+/turf/open/floor/engine/cult,
+/area/library)
+"bOn" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/hallway/primary/central)
+"bOo" = (
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/obj/structure/table,
+/obj/item/stack/sheet/plasteel{
+ amount = 10
+ },
+/obj/machinery/airalarm{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22
+ },
+/obj/item/stack/sheet/glass{
+ amount = 50
+ },
+/obj/item/stack/sheet/glass{
+ amount = 50
+ },
+/obj/item/weapon/crowbar,
+/obj/item/weapon/wrench,
+/obj/item/weapon/storage/toolbox/electrical{
+ pixel_x = 1;
+ pixel_y = -1
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/ai_monitored/storage/eva{
+ name = "E.V.A. Storage"
+ })
+"bOp" = (
+/obj/machinery/holopad,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/storage/eva{
+ name = "E.V.A. Storage"
+ })
+"bOq" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg1"
+ },
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bOr" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/storage/eva{
+ name = "E.V.A. Storage"
+ })
+"bOs" = (
+/obj/machinery/door/window/northleft{
+ dir = 8;
+ name = "Jetpack Storage";
+ pixel_x = -1;
+ pixel_y = 0;
+ req_access_txt = "19"
+ },
+/obj/structure/window/reinforced,
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/weapon/tank/jetpack/carbondioxide{
+ pixel_x = 4;
+ pixel_y = -1
+ },
+/obj/item/weapon/tank/jetpack/carbondioxide{
+ pixel_x = 0;
+ pixel_y = 0
+ },
+/obj/item/weapon/tank/jetpack/carbondioxide{
+ pixel_x = -4;
+ pixel_y = 1
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/ai_monitored/storage/eva{
+ name = "E.V.A. Storage"
+ })
+"bOt" = (
+/obj/machinery/computer/teleporter,
+/turf/open/floor/plating,
+/area/teleporter{
+ name = "\improper Teleporter Room"
+ })
+"bOu" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/teleporter{
+ name = "\improper Teleporter Room"
+ })
+"bOv" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bOw" = (
+/turf/closed/wall,
+/area/teleporter{
+ name = "\improper Teleporter Room"
+ })
+"bOx" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/assembly/showroom{
+ name = "\improper Corporate Showroom"
+ })
+"bOy" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/oil,
+/turf/open/floor/wood,
+/area/assembly/showroom{
+ name = "\improper Corporate Showroom"
+ })
+"bOz" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/wood,
+/area/assembly/showroom{
+ name = "\improper Corporate Showroom"
+ })
+"bOA" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/wood,
+/area/assembly/showroom{
+ name = "\improper Corporate Showroom"
+ })
+"bOB" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/wood,
+/area/assembly/showroom{
+ name = "\improper Corporate Showroom"
+ })
+"bOC" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/wood,
+/area/assembly/showroom{
+ name = "\improper Corporate Showroom"
+ })
+"bOD" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/wood{
+ icon_state = "wood-broken6"
+ },
+/area/assembly/showroom{
+ name = "\improper Corporate Showroom"
+ })
+"bOE" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/wood,
+/area/assembly/showroom{
+ name = "\improper Corporate Showroom"
+ })
+"bOF" = (
+/obj/machinery/power/apc{
+ cell_type = 5000;
+ dir = 4;
+ name = "Nanotrasen Corporate Showroom APC";
+ pixel_x = 28;
+ pixel_y = 0
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/item/weapon/cigbutt,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/assembly/showroom{
+ name = "\improper Corporate Showroom"
+ })
+"bOG" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/stack/medical/ointment,
+/obj/item/stack/medical/bruise_pack,
+/obj/item/weapon/reagent_containers/syringe/charcoal,
+/obj/item/weapon/reagent_containers/syringe/epinephrine{
+ pixel_x = -1;
+ pixel_y = 2
+ },
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ dir = 1
+ },
+/area/gateway)
+"bOH" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/gateway)
+"bOI" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/gateway)
+"bOJ" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/open/floor/plating,
+/area/gateway)
+"bOK" = (
+/turf/open/floor/plasteel/vault,
+/area/gateway)
+"bOL" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/vault,
+/area/gateway)
+"bOM" = (
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 4
+ },
+/turf/open/floor/plasteel/vault,
+/area/gateway)
+"bON" = (
+/obj/structure/sign/securearea{
+ pixel_x = -32;
+ pixel_y = 0
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg2"
+ },
+/area/maintenance/maintcentral{
+ name = "Central Maintenance"
+ })
+"bOO" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"bOP" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/obj/machinery/door/poddoor/preopen{
+ id = "kitchenwindow";
+ name = "kitchen shutters"
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/kitchen)
+"bOQ" = (
+/obj/machinery/food_cart,
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/crew_quarters/kitchen)
+"bOR" = (
+/obj/effect/landmark/start{
+ name = "Cook"
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"bOS" = (
+/obj/structure/table,
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/crew_quarters/kitchen)
+"bOT" = (
+/obj/structure/table,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/item/weapon/storage/box/donkpockets,
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/crew_quarters/kitchen)
+"bOU" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/table,
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/crew_quarters/kitchen)
+"bOV" = (
+/obj/machinery/deepfryer,
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/crew_quarters/kitchen)
+"bOW" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 27;
+ pixel_y = 0
+ },
+/obj/structure/closet/secure_closet/freezer/fridge,
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/crew_quarters/kitchen)
+"bOX" = (
+/obj/structure/closet/secure_closet/freezer/kitchen,
+/turf/open/floor/plasteel/showroomfloor,
+/area/crew_quarters/kitchen)
+"bOY" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bOZ" = (
+/obj/machinery/chem_master/condimaster{
+ name = "CondiMaster Neo";
+ pixel_x = -4
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/crew_quarters/kitchen)
+"bPa" = (
+/mob/living/simple_animal/hostile/retaliate/goat{
+ name = "Pete"
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/crew_quarters/kitchen)
+"bPb" = (
+/obj/structure/table/wood,
+/obj/structure/mirror{
+ pixel_x = -28
+ },
+/obj/item/weapon/lipstick/black,
+/obj/item/weapon/lipstick/jade{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/weapon/lipstick/purple{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"bPc" = (
+/obj/structure/chair/wood/wings{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"bPd" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/obj/effect/landmark/start{
+ name = "Clown"
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"bPe" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"bPf" = (
+/obj/machinery/door/airlock{
+ name = "Theatre Backstage";
+ req_access_txt = "46"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/theatre)
+"bPg" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/sortjunction{
+ dir = 2;
+ icon_state = "pipe-j1s";
+ sortType = 18
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bPh" = (
+/obj/structure/table,
+/obj/item/weapon/stock_parts/subspace/ansible,
+/obj/item/weapon/stock_parts/subspace/ansible,
+/obj/item/weapon/stock_parts/subspace/ansible,
+/obj/item/weapon/stock_parts/subspace/crystal,
+/obj/item/weapon/stock_parts/subspace/crystal,
+/obj/item/weapon/stock_parts/subspace/crystal,
+/turf/open/floor/plasteel/black,
+/area/maintenance/atmos_control{
+ name = "Telecoms Storage"
+ })
+"bPi" = (
+/obj/structure/table,
+/obj/item/weapon/stock_parts/micro_laser,
+/obj/item/weapon/stock_parts/manipulator,
+/obj/item/weapon/stock_parts/manipulator,
+/obj/item/weapon/stock_parts/manipulator,
+/obj/item/weapon/stock_parts/manipulator,
+/obj/item/weapon/stock_parts/capacitor,
+/obj/item/weapon/stock_parts/micro_laser/high,
+/obj/item/weapon/stock_parts/micro_laser/high,
+/obj/item/weapon/stock_parts/micro_laser/high,
+/obj/item/weapon/stock_parts/micro_laser/high,
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel/black,
+/area/maintenance/atmos_control{
+ name = "Telecoms Storage"
+ })
+"bPj" = (
+/obj/structure/table,
+/obj/item/weapon/stock_parts/subspace/filter,
+/obj/item/weapon/stock_parts/subspace/filter,
+/obj/item/weapon/stock_parts/subspace/filter,
+/obj/item/weapon/stock_parts/subspace/filter,
+/obj/item/weapon/stock_parts/subspace/filter,
+/turf/open/floor/plasteel/black,
+/area/maintenance/atmos_control{
+ name = "Telecoms Storage"
+ })
+"bPk" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bPl" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
+ },
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bPm" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bPn" = (
+/obj/machinery/atmospherics/components/trinary/filter{
+ req_access = "0"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bPo" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/scrubber,
+/turf/open/floor/plasteel/red,
+/area/atmos)
+"bPp" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel/escape{
+ dir = 8
+ },
+/area/atmos)
+"bPq" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bPr" = (
+/obj/structure/closet/secure_closet/atmospherics,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bPs" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/canister,
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ dir = 1
+ },
+/area/atmos)
+"bPt" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 4;
+ initialize_directions = 11
+ },
+/obj/machinery/meter,
+/turf/open/floor/plasteel,
+/area/atmos)
+"bPu" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 8
+ },
+/obj/machinery/portable_atmospherics/canister,
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ dir = 1
+ },
+/area/atmos)
+"bPv" = (
+/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bPw" = (
+/obj/machinery/atmospherics/pipe/simple/green/visible,
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "Plasma to Pure";
+ on = 0
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 0
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/turf/open/floor/plasteel/purple,
+/area/atmos)
+"bPx" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ external_pressure_bound = 0;
+ frequency = 1441;
+ id_tag = "tox_out";
+ initialize_directions = 1;
+ internal_pressure_bound = 4000;
+ on = 1;
+ pressure_checks = 2;
+ pump_direction = 0
+ },
+/turf/open/floor/engine/plasma,
+/area/atmos)
+"bPy" = (
+/turf/open/floor/engine/plasma,
+/area/atmos)
+"bPz" = (
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/turf/open/floor/engine/plasma,
+/area/atmos)
+"bPA" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bPB" = (
+/obj/structure/chair/comfy/beige{
+ dir = 1;
+ icon_state = "comfychair"
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"bPC" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bPD" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/item/weapon/storage/box/lights/mixed,
+/turf/open/floor/plating{
+ icon_state = "platingdmg2"
+ },
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bPE" = (
+/obj/structure/closet/crate,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/item/weapon/poster/legit,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bPF" = (
+/obj/structure/grille,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bPG" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bPH" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/obj/item/trash/candy,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bPI" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Vacant Office Maintenance";
+ req_access_txt = "32";
+ req_one_access_txt = "0"
+ },
+/turf/open/floor/plating,
+/area/security/vacantoffice)
+"bPJ" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/clothing/mask/horsehead,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bPK" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating{
+ icon_plating = "warnplate"
+ },
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bPL" = (
+/obj/structure/rack,
+/obj/item/weapon/storage/box,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bPM" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating{
+ icon_state = "platingdmg2"
+ },
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bPN" = (
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/structure/closet/emcloset,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bPO" = (
+/obj/structure/table/wood,
+/obj/item/weapon/paper_bin{
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/item/weapon/pen,
+/obj/effect/decal/cleanable/cobweb,
+/turf/open/floor/wood,
+/area/library)
+"bPP" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/open/floor/wood,
+/area/library)
+"bPQ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/open/floor/wood,
+/area/library)
+"bPR" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/wood,
+/area/library)
+"bPS" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/wood,
+/area/library)
+"bPT" = (
+/obj/structure/table/wood,
+/obj/item/device/paicard,
+/turf/open/floor/wood,
+/area/library)
+"bPU" = (
+/obj/structure/table/wood,
+/obj/item/weapon/dice/d20,
+/obj/item/weapon/dice,
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/turf/open/floor/wood,
+/area/library)
+"bPV" = (
+/obj/structure/destructible/cult/tome,
+/obj/machinery/newscaster{
+ pixel_x = -30;
+ pixel_y = 0
+ },
+/obj/item/clothing/under/suit_jacket/red,
+/obj/effect/decal/cleanable/cobweb,
+/obj/item/weapon/book/codex_gigas,
+/turf/open/floor/engine/cult,
+/area/library)
+"bPW" = (
+/obj/structure/chair/comfy/brown,
+/turf/open/floor/engine/cult,
+/area/library)
+"bPX" = (
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_x = 30;
+ pixel_y = 0
+ },
+/turf/open/floor/engine/cult,
+/area/library)
+"bPY" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/hallway/primary/central)
+"bPZ" = (
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/obj/item/weapon/stock_parts/cell/high{
+ charge = 100;
+ maxcharge = 15000
+ },
+/obj/item/weapon/stock_parts/cell/high{
+ charge = 100;
+ maxcharge = 15000
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/storage/eva{
+ name = "E.V.A. Storage"
+ })
+"bQa" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/storage/eva{
+ name = "E.V.A. Storage"
+ })
+"bQb" = (
+/obj/structure/cable/yellow,
+/obj/machinery/shieldwallgen,
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 2
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 4
+ },
+/area/teleporter{
+ name = "\improper Teleporter Room"
+ })
+"bQc" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/teleporter{
+ name = "\improper Teleporter Room"
+ })
+"bQd" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/teleporter{
+ name = "\improper Teleporter Room"
+ })
+"bQe" = (
+/obj/structure/cable/yellow,
+/obj/machinery/shieldwallgen,
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 2
+ },
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 4
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 1
+ },
+/area/teleporter{
+ name = "\improper Teleporter Room"
+ })
+"bQf" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/item/bodypart/chest/robot{
+ name = "cyborg torso";
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/obj/item/bodypart/head/robot{
+ name = "cyborg head";
+ pixel_x = 3;
+ pixel_y = 2
+ },
+/obj/structure/table/wood,
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/turf/open/floor/carpet,
+/area/assembly/showroom{
+ name = "\improper Corporate Showroom"
+ })
+"bQg" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/wood,
+/area/assembly/showroom{
+ name = "\improper Corporate Showroom"
+ })
+"bQh" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 2;
+ on = 1
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/wood,
+/area/assembly/showroom{
+ name = "\improper Corporate Showroom"
+ })
+"bQi" = (
+/turf/open/floor/wood{
+ icon_state = "wood-broken3"
+ },
+/area/assembly/showroom{
+ name = "\improper Corporate Showroom"
+ })
+"bQj" = (
+/obj/machinery/cell_charger,
+/obj/item/weapon/stock_parts/cell/crap{
+ name = "\improper NanoTrasen-brand rechargable AA battery"
+ },
+/obj/structure/table/wood,
+/turf/open/floor/carpet,
+/area/assembly/showroom{
+ name = "\improper Corporate Showroom"
+ })
+"bQk" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/holopad,
+/turf/open/floor/carpet,
+/area/assembly/showroom{
+ name = "\improper Corporate Showroom"
+ })
+"bQl" = (
+/obj/structure/table/wood,
+/obj/item/toy/carpplushie{
+ color = "red";
+ name = "NanoTrasen wildlife department space carp plushie"
+ },
+/turf/open/floor/carpet,
+/area/assembly/showroom{
+ name = "\improper Corporate Showroom"
+ })
+"bQm" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
+ },
+/turf/open/floor/wood,
+/area/assembly/showroom{
+ name = "\improper Corporate Showroom"
+ })
+"bQn" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/wood,
+/area/assembly/showroom{
+ name = "\improper Corporate Showroom"
+ })
+"bQo" = (
+/obj/structure/table/wood,
+/obj/machinery/button/door{
+ id = "corporate_privacy";
+ name = "corporate showroom shutters control";
+ pixel_x = 28;
+ pixel_y = 0;
+ req_access_txt = "19"
+ },
+/obj/item/weapon/poster/legit,
+/obj/item/weapon/poster/legit,
+/obj/item/weapon/poster/legit,
+/obj/item/weapon/poster/legit,
+/obj/item/weapon/poster/legit,
+/obj/item/device/paicard{
+ desc = "A real NanoTrasen success, these personal AIs provide all of the companionship of an AI without any law related red-tape.";
+ name = "NanoTrasen-brand personal AI device exhibit"
+ },
+/turf/open/floor/carpet,
+/area/assembly/showroom{
+ name = "\improper Corporate Showroom"
+ })
+"bQp" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/clothing/suit/hazardvest,
+/obj/item/clothing/suit/hazardvest,
+/obj/item/clothing/head/hardhat/orange{
+ name = "protective hat"
+ },
+/obj/item/clothing/head/hardhat/orange{
+ name = "protective hat"
+ },
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ dir = 1
+ },
+/area/gateway)
+"bQq" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/gateway)
+"bQr" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 2;
+ initialize_directions = 11
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/gateway)
+"bQs" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/gateway)
+"bQt" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Gateway Chamber"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel,
+/area/gateway)
+"bQu" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_N2O = 1;
+ scrub_Toxins = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/gateway)
+"bQv" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel,
+/area/gateway)
+"bQw" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/gateway)
+"bQx" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Gateway Maintenance";
+ req_access_txt = "17"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/gateway)
+"bQy" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/maintcentral{
+ name = "Central Maintenance"
+ })
+"bQz" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"bQA" = (
+/obj/structure/rack,
+/obj/item/weapon/storage/box/donkpockets{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/crew_quarters/kitchen)
+"bQB" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/crew_quarters/kitchen)
+"bQC" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/crew_quarters/kitchen)
+"bQD" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/crew_quarters/kitchen)
+"bQE" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/crew_quarters/kitchen)
+"bQF" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/crew_quarters/kitchen)
+"bQG" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/crew_quarters/kitchen)
+"bQH" = (
+/obj/machinery/requests_console{
+ department = "Kitchen";
+ departmentType = 2;
+ pixel_x = 30;
+ pixel_y = 0
+ },
+/obj/machinery/processor,
+/turf/open/floor/plasteel/cafeteria{
+ dir = 2
+ },
+/area/crew_quarters/kitchen)
+"bQI" = (
+/obj/structure/closet/chefcloset,
+/turf/open/floor/plasteel/showroomfloor,
+/area/crew_quarters/kitchen)
+"bQJ" = (
+/obj/effect/landmark/start{
+ name = "Chef"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/crew_quarters/kitchen)
+"bQK" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/crew_quarters/kitchen)
+"bQL" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/obj/structure/sign/poster{
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/arrival{
+ dir = 4
+ },
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"bQM" = (
+/obj/structure/table/wood,
+/obj/item/weapon/folder,
+/obj/structure/sign/poster{
+ pixel_x = -32;
+ pixel_y = 0
+ },
+/turf/open/floor/wood,
+/area/security/vacantoffice)
+"bQN" = (
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/toilet{
+ name = "\improper Auxiliary Restrooms"
+ })
+"bQO" = (
+/obj/item/weapon/soap/nanotrasen,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/table/wood,
+/obj/structure/sign/poster{
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"bQP" = (
+/obj/structure/sign/poster{
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/turf/open/floor/wood,
+/area/security/vacantoffice)
+"bQQ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/item/weapon/wrench,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bQR" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/canister,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bQS" = (
+/obj/machinery/suit_storage_unit/atmos,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bQT" = (
+/obj/structure/sign/nosmoking_2,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/atmos)
+"bQU" = (
+/obj/machinery/atmospherics/components/trinary/filter{
+ filter_type = -1;
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bQV" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 8
+ },
+/obj/machinery/meter,
+/turf/open/floor/plasteel,
+/area/atmos)
+"bQW" = (
+/obj/machinery/computer/atmos_control/tank{
+ frequency = 1441;
+ input_tag = "tox_in";
+ name = "Plasma Supply Control";
+ output_tag = "tox_out";
+ sensors = list("tox_sensor" = "Tank")
+ },
+/obj/machinery/atmospherics/pipe/simple/green/visible,
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 0
+ },
+/turf/open/floor/plasteel/purple,
+/area/atmos)
+"bQX" = (
+/obj/machinery/air_sensor{
+ frequency = 1441;
+ id_tag = "tox_sensor"
+ },
+/turf/open/floor/engine/plasma,
+/area/atmos)
+"bQY" = (
+/obj/machinery/portable_atmospherics/canister/toxins,
+/turf/open/floor/engine/plasma,
+/area/atmos)
+"bQZ" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/engine/plasma,
+/area/atmos)
+"bRa" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall,
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"bRb" = (
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"bRc" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bRd" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bRe" = (
+/obj/item/trash/cheesie,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bRf" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Storage Room";
+ req_access_txt = "12"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bRg" = (
+/obj/machinery/holopad,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27;
+ pixel_y = 0
+ },
+/turf/open/floor/wood,
+/area/library)
+"bRh" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/wood,
+/area/library)
+"bRi" = (
+/obj/structure/chair/office/dark,
+/turf/open/floor/wood,
+/area/library)
+"bRj" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/wood{
+ icon_state = "wood-broken"
+ },
+/area/library)
+"bRk" = (
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_x = 30;
+ pixel_y = 0
+ },
+/obj/machinery/photocopier,
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/turf/open/floor/wood,
+/area/library)
+"bRl" = (
+/obj/structure/table/wood,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/weapon/pen/invisible,
+/turf/open/floor/engine/cult,
+/area/library)
+"bRm" = (
+/obj/item/device/taperecorder{
+ pixel_y = 0
+ },
+/obj/item/device/camera,
+/obj/item/device/radio/intercom{
+ pixel_y = -25
+ },
+/obj/structure/table/wood,
+/turf/open/floor/engine/cult,
+/area/library)
+"bRn" = (
+/obj/structure/bookcase{
+ name = "Forbidden Knowledge"
+ },
+/turf/open/floor/engine/cult,
+/area/library)
+"bRo" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 27
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/hallway/primary/central)
+"bRp" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/storage/eva{
+ name = "E.V.A. Storage"
+ })
+"bRq" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/storage/eva{
+ name = "E.V.A. Storage"
+ })
+"bRr" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/storage/eva{
+ name = "E.V.A. Storage"
+ })
+"bRs" = (
+/obj/structure/cable/yellow,
+/obj/machinery/shieldwallgen,
+/turf/open/floor/plasteel/vault{
+ dir = 4
+ },
+/area/teleporter{
+ name = "\improper Teleporter Room"
+ })
+"bRt" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/teleporter{
+ name = "\improper Teleporter Room"
+ })
+"bRu" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/teleporter{
+ name = "\improper Teleporter Room"
+ })
+"bRv" = (
+/obj/structure/cable/yellow,
+/obj/machinery/shieldwallgen,
+/turf/open/floor/plasteel/vault{
+ dir = 1
+ },
+/area/teleporter{
+ name = "\improper Teleporter Room"
+ })
+"bRw" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/table/wood,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27;
+ pixel_y = 0
+ },
+/obj/item/weapon/folder/blue,
+/obj/item/clothing/head/collectable/HoP{
+ name = "novelty HoP hat"
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/carpet,
+/area/assembly/showroom{
+ name = "\improper Corporate Showroom"
+ })
+"bRx" = (
+/obj/structure/table/wood,
+/obj/item/weapon/storage/secure/briefcase{
+ desc = "A large briefcase with a digital locking system, and the NanoTrasen logo emblazoned on the sides.";
+ name = "NanoTrasen-brand secure briefcase exhibit";
+ pixel_y = 2
+ },
+/turf/open/floor/carpet,
+/area/assembly/showroom{
+ name = "\improper Corporate Showroom"
+ })
+"bRy" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/wood,
+/area/assembly/showroom{
+ name = "\improper Corporate Showroom"
+ })
+"bRz" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/showcase{
+ desc = "The famous NanoTrasen-brand microwave, the multi-purpose cooking appliance every station needs! This one appears to be drawn onto a cardboard box.";
+ dir = 1;
+ icon = 'icons/obj/kitchen.dmi';
+ icon_state = "mw";
+ name = "NanoTrasen-brand microwave";
+ pixel_x = 0;
+ pixel_y = 2
+ },
+/obj/structure/table/wood,
+/turf/open/floor/carpet,
+/area/assembly/showroom{
+ name = "\improper Corporate Showroom"
+ })
+"bRA" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/item/toy/beach_ball{
+ desc = "The simple beach ball is one of Nanotrasen's most popular products. 'Why do we make beach balls? Because we can! (TM)' - Nanotrasen";
+ item_state = "beachball";
+ name = "NanoTrasen-brand beach ball";
+ pixel_y = 7
+ },
+/obj/structure/table/wood,
+/turf/open/floor/carpet,
+/area/assembly/showroom{
+ name = "\improper Corporate Showroom"
+ })
+"bRB" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/reagent_dispensers/beerkeg{
+ desc = "One of the more successful achievements of the NanoTrasen Corporate Warfare Division, their nuclear fission explosives are renowned for being cheap to produce and devastatingly effective. Signs explain that though this particular device has been decommissioned, every NanoTrasen station is equipped with an equivalent one, just in case. All Captains carefully guard the disk needed to detonate them - at least, the sign says they do. There seems to be a tap on the back.";
+ icon = 'icons/obj/machines/nuke.dmi';
+ icon_state = "nuclearbomb_base";
+ name = "NanoTrasen-brand nuclear fission explosive";
+ pixel_x = 2;
+ pixel_y = 6
+ },
+/obj/structure/table/wood,
+/turf/open/floor/carpet,
+/area/assembly/showroom{
+ name = "\improper Corporate Showroom"
+ })
+"bRC" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/item/weapon/storage/box/matches{
+ pixel_x = -2;
+ pixel_y = 3
+ },
+/obj/item/clothing/mask/cigarette/cigar{
+ name = "premium cigar";
+ pixel_x = 4;
+ pixel_y = 1
+ },
+/obj/item/clothing/mask/cigarette/cigar{
+ name = "premium cigar";
+ pixel_x = -4;
+ pixel_y = 1
+ },
+/obj/item/clothing/mask/cigarette/cigar/cohiba{
+ name = "cohiba robusto cigar"
+ },
+/obj/structure/table/wood,
+/turf/open/floor/carpet,
+/area/assembly/showroom{
+ name = "\improper Corporate Showroom"
+ })
+"bRD" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/showcase{
+ desc = "A slightly battered looking TV. Vaious Nanotrasen infomercials play on a loop, accompanied by a jaunty tune.";
+ dir = 1;
+ icon = 'icons/obj/computer.dmi';
+ icon_state = "television";
+ name = "NanoTrasen corporate newsfeed";
+ pixel_x = 2;
+ pixel_y = 3
+ },
+/obj/structure/table/wood,
+/turf/open/floor/carpet,
+/area/assembly/showroom{
+ name = "\improper Corporate Showroom"
+ })
+"bRE" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/wood,
+/area/assembly/showroom{
+ name = "\improper Corporate Showroom"
+ })
+"bRF" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/item/weapon/disk/data{
+ pixel_x = 9;
+ pixel_y = -1
+ },
+/obj/item/weapon/disk/tech_disk{
+ name = "technology disk";
+ pixel_x = -2;
+ pixel_y = -3
+ },
+/obj/item/weapon/disk/design_disk{
+ name = "component design disk";
+ pixel_x = 0;
+ pixel_y = 6
+ },
+/obj/structure/table/wood,
+/obj/item/toy/talking/AI{
+ name = "NanoTrasen-brand toy AI";
+ pixel_y = 6
+ },
+/turf/open/floor/carpet,
+/area/assembly/showroom{
+ name = "\improper Corporate Showroom"
+ })
+"bRG" = (
+/obj/item/weapon/book/manual/wiki/security_space_law{
+ name = "space law";
+ pixel_y = 2
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/item/toy/gun{
+ name = "cap gun"
+ },
+/obj/item/weapon/restraints/handcuffs{
+ name = "handcuffs"
+ },
+/obj/structure/table/wood,
+/obj/item/clothing/head/collectable/HoS{
+ name = "novelty HoS hat"
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/assembly/showroom{
+ name = "\improper Corporate Showroom"
+ })
+"bRH" = (
+/obj/structure/table,
+/obj/item/weapon/storage/fancy/donut_box,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ dir = 1
+ },
+/area/gateway)
+"bRI" = (
+/obj/structure/table,
+/obj/machinery/recharger,
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ dir = 1
+ },
+/area/gateway)
+"bRJ" = (
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/obj/item/weapon/stock_parts/cell/high{
+ charge = 100;
+ maxcharge = 15000
+ },
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ dir = 1
+ },
+/area/gateway)
+"bRK" = (
+/obj/item/weapon/storage/belt/utility,
+/obj/item/device/radio/off,
+/obj/item/device/radio/off,
+/obj/item/device/radio/off,
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/machinery/button/door{
+ id = "gateshutter";
+ name = "Gateway Shutter Control";
+ pixel_x = 0;
+ pixel_y = -26;
+ req_access_txt = "19"
+ },
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ dir = 1
+ },
+/area/gateway)
+"bRL" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/gateway)
+"bRM" = (
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/obj/machinery/camera{
+ c_tag = "Gateway - Access";
+ dir = 8;
+ network = list("SS13")
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/gateway)
+"bRN" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating,
+/area/maintenance/maintcentral{
+ name = "Central Maintenance"
+ })
+"bRO" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"bRP" = (
+/obj/structure/table,
+/obj/item/weapon/reagent_containers/food/snacks/mint,
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "Kitchen APC";
+ pixel_y = -24
+ },
+/obj/structure/cable/yellow,
+/turf/open/floor/plasteel/cafeteria{
+ dir = 2
+ },
+/area/crew_quarters/kitchen)
+"bRQ" = (
+/obj/structure/table,
+/obj/item/weapon/reagent_containers/glass/beaker{
+ pixel_x = 5
+ },
+/obj/item/weapon/reagent_containers/food/condiment/enzyme{
+ layer = 5
+ },
+/turf/open/floor/plasteel/cafeteria{
+ dir = 2
+ },
+/area/crew_quarters/kitchen)
+"bRR" = (
+/obj/structure/table,
+/obj/item/stack/packageWrap,
+/obj/item/weapon/hand_labeler,
+/obj/machinery/button/door{
+ id = "kitchenhydro";
+ name = "Service Shutter Control";
+ pixel_x = 0;
+ pixel_y = -24;
+ req_access_txt = "28"
+ },
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/crew_quarters/kitchen)
+"bRS" = (
+/obj/structure/table,
+/obj/item/weapon/reagent_containers/food/condiment/saltshaker{
+ pixel_x = -3;
+ pixel_y = 0
+ },
+/obj/item/weapon/reagent_containers/food/condiment/peppermill{
+ pixel_x = 3
+ },
+/obj/item/device/radio/intercom{
+ pixel_y = -25
+ },
+/obj/item/weapon/kitchen/rollingpin,
+/obj/machinery/camera{
+ c_tag = "Kitchen";
+ dir = 1;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/cafeteria{
+ dir = 2
+ },
+/area/crew_quarters/kitchen)
+"bRT" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 0;
+ pixel_y = -30
+ },
+/obj/structure/table,
+/obj/machinery/reagentgrinder,
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/crew_quarters/kitchen)
+"bRU" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/crew_quarters/kitchen)
+"bRV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/crew_quarters/kitchen)
+"bRW" = (
+/obj/machinery/door/airlock{
+ name = "Kitchen Cold Room";
+ req_access_txt = "28"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/crew_quarters/kitchen)
+"bRX" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -29
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/crew_quarters/kitchen)
+"bRY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/camera{
+ c_tag = "Kitchen - Coldroom";
+ dir = 1;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/crew_quarters/kitchen)
+"bRZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light_switch{
+ pixel_y = -26
+ },
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/crew_quarters/kitchen)
+"bSa" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/crew_quarters/kitchen)
+"bSb" = (
+/obj/machinery/light/small,
+/obj/structure/sign/poster{
+ pixel_y = -32
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/toilet{
+ name = "\improper Auxiliary Restrooms"
+ })
+"bSc" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg1"
+ },
+/area/maintenance/starboard)
+"bSd" = (
+/obj/machinery/portable_atmospherics/canister,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bSe" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bSf" = (
+/obj/item/weapon/crowbar,
+/turf/open/floor/plating{
+ icon_state = "platingdmg1"
+ },
+/area/maintenance/starboard)
+"bSg" = (
+/obj/structure/fireaxecabinet{
+ pixel_x = -32;
+ pixel_y = 0
+ },
+/obj/machinery/camera{
+ c_tag = "Atmospherics - Port";
+ dir = 4;
+ network = list("SS13")
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/caution{
+ dir = 8
+ },
+/area/atmos)
+"bSh" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/canister,
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ dir = 1
+ },
+/area/atmos)
+"bSi" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 4;
+ initialize_directions = 11
+ },
+/obj/machinery/meter,
+/obj/item/weapon/wrench,
+/turf/open/floor/plasteel,
+/area/atmos)
+"bSj" = (
+/obj/machinery/atmospherics/components/trinary/filter{
+ dir = 1;
+ filter_type = "plasma";
+ on = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 0
+ },
+/obj/structure/window/reinforced,
+/turf/open/floor/plasteel/purple,
+/area/atmos)
+"bSk" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/on{
+ dir = 8;
+ frequency = 1441;
+ id = "tox_in";
+ pixel_y = 1
+ },
+/turf/open/floor/engine/plasma,
+/area/atmos)
+"bSl" = (
+/obj/machinery/camera{
+ c_tag = "Atmospherics Tank - Toxins";
+ dir = 8;
+ network = list("SS13");
+ pixel_x = 0;
+ pixel_y = 0
+ },
+/turf/open/floor/engine/plasma,
+/area/atmos)
+"bSm" = (
+/obj/structure/table,
+/obj/machinery/microwave,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"bSn" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating{
+ icon_plating = "warnplate"
+ },
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bSo" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bSp" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9;
+ pixel_y = 0
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bSq" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating{
+ icon_plating = "warnplate"
+ },
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bSr" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bSs" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bSt" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg1"
+ },
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bSu" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bSv" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 2
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bSw" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bSx" = (
+/obj/machinery/newscaster{
+ pixel_x = -32;
+ pixel_y = 0
+ },
+/turf/open/floor/wood,
+/area/library)
+"bSy" = (
+/obj/structure/chair/office/dark{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/wood,
+/area/library)
+"bSz" = (
+/obj/structure/table/wood,
+/obj/item/weapon/folder,
+/obj/item/weapon/folder,
+/obj/item/weapon/pen,
+/turf/open/floor/wood,
+/area/library)
+"bSA" = (
+/obj/structure/table/wood,
+/obj/item/weapon/storage/crayons,
+/turf/open/floor/wood,
+/area/library)
+"bSB" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/wood,
+/area/library)
+"bSC" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk,
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 27
+ },
+/turf/open/floor/wood,
+/area/library)
+"bSD" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/hallway/primary/central)
+"bSE" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor/shutters{
+ id = "evashutter";
+ name = "E.V.A. Storage Shutter"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/ai_monitored/storage/eva{
+ name = "E.V.A. Storage"
+ })
+"bSF" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor/shutters{
+ id = "evashutter";
+ name = "E.V.A. Storage Shutter"
+ },
+/obj/machinery/button/door{
+ id = "evashutter";
+ name = "E.V.A. Storage Shutter Control";
+ pixel_x = 30;
+ pixel_y = 0;
+ req_access_txt = "19"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/ai_monitored/storage/eva{
+ name = "E.V.A. Storage"
+ })
+"bSG" = (
+/obj/machinery/door/poddoor/shutters{
+ id = "teleshutter";
+ name = "Teleporter Access Shutter"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/teleporter{
+ name = "\improper Teleporter Room"
+ })
+"bSH" = (
+/obj/machinery/door/poddoor/shutters{
+ id = "teleshutter";
+ name = "Teleporter Access Shutter"
+ },
+/obj/machinery/button/door{
+ id = "teleshutter";
+ name = "Teleporter Shutter Control";
+ pixel_x = 30;
+ pixel_y = 5;
+ req_access_txt = "19"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/teleporter{
+ name = "\improper Teleporter Room"
+ })
+"bSI" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "corporate_privacy";
+ name = "showroom shutters"
+ },
+/turf/open/floor/plating,
+/area/assembly/showroom{
+ name = "\improper Corporate Showroom"
+ })
+"bSJ" = (
+/obj/machinery/door/window{
+ base_state = "right";
+ dir = 8;
+ icon_state = "right";
+ name = "Theatre Stage";
+ req_access_txt = "0"
+ },
+/obj/structure/sign/poster{
+ pixel_y = -32
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/theatre)
+"bSK" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command{
+ name = "Corporate Showroom";
+ req_access_txt = "19"
+ },
+/turf/open/floor/wood,
+/area/assembly/showroom{
+ name = "\improper Corporate Showroom"
+ })
+"bSL" = (
+/obj/item/device/instrument/violin,
+/obj/structure/table/wood,
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 29
+ },
+/obj/structure/sign/poster{
+ pixel_y = -32
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"bSM" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command{
+ name = "Corporate Showroom";
+ req_access_txt = "19"
+ },
+/turf/open/floor/wood,
+/area/assembly/showroom{
+ name = "\improper Corporate Showroom"
+ })
+"bSN" = (
+/obj/structure/sign/poster,
+/turf/closed/wall,
+/area/crew_quarters/kitchen)
+"bSO" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor/shutters{
+ id = "gateshutter";
+ name = "Gateway Access Shutter"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/gateway)
+"bSP" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "0";
+ req_one_access_txt = "12;17"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/maintcentral{
+ name = "Central Maintenance"
+ })
+"bSQ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"bSR" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plasteel/green/corner{
+ dir = 2
+ },
+/area/hallway/primary/central)
+"bSS" = (
+/turf/closed/wall,
+/area/hallway/primary/central)
+"bST" = (
+/turf/closed/wall,
+/area/hydroponics)
+"bSU" = (
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "kitchenhydro";
+ name = "Service Shutter"
+ },
+/obj/machinery/door/airlock/glass_medical{
+ id_tag = "";
+ name = "Service Door";
+ req_access_txt = "0";
+ req_one_access_txt = "35;28"
+ },
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/hydroponics)
+"bSV" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/eastleft{
+ dir = 1;
+ name = "Kitchen Window";
+ req_access_txt = "28";
+ req_one_access_txt = "0"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/item/weapon/paper,
+/obj/machinery/door/window/eastleft{
+ dir = 2;
+ name = "Hydroponics Window";
+ req_access_txt = "0";
+ req_one_access_txt = "30;35"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/hydroponics)
+"bSW" = (
+/obj/machinery/smartfridge,
+/turf/closed/wall,
+/area/hydroponics)
+"bSX" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/kitchen)
+"bSY" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/kitchen)
+"bSZ" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Kitchen Maintenance";
+ req_access_txt = "28"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/kitchen)
+"bTa" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bTb" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bTc" = (
+/obj/machinery/power/apc{
+ cell_type = 2500;
+ dir = 1;
+ name = "Starboard Maintenance APC";
+ pixel_x = -1;
+ pixel_y = 26
+ },
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bTd" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bTe" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9;
+ pixel_y = 0
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bTf" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 2
+ },
+/obj/machinery/meter,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bTg" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bTh" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bTi" = (
+/obj/structure/closet/wardrobe/atmospherics_yellow,
+/turf/open/floor/plasteel/black,
+/area/atmos)
+"bTj" = (
+/obj/machinery/requests_console{
+ department = "Atmospherics";
+ departmentType = 4;
+ name = "Atmos RC";
+ pixel_x = 30;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/shower{
+ dir = 8;
+ icon_state = "shower";
+ name = "emergency shower"
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bTk" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 0;
+ name = "Port to Filter";
+ on = 0
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/camera{
+ c_tag = "Atmospherics - Starboard";
+ dir = 4;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bTl" = (
+/obj/machinery/atmospherics/components/unary/thermomachine/heater{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bTm" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/lattice/catwalk,
+/obj/structure/window/reinforced,
+/turf/open/space,
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"bTn" = (
+/turf/closed/wall,
+/area/maintenance/portsolar)
+"bTo" = (
+/obj/machinery/door/airlock/engineering{
+ name = "Aft Port Solar Access";
+ req_access_txt = "10"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/portsolar)
+"bTp" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'HIGH VOLTAGE'";
+ icon_state = "shock";
+ name = "HIGH VOLTAGE";
+ pixel_y = 0
+ },
+/turf/closed/wall,
+/area/maintenance/portsolar)
+"bTq" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ tag = "icon-intact (SOUTHWEST)";
+ icon_state = "intact";
+ dir = 10
+ },
+/turf/closed/wall/r_wall,
+/area/engine/engineering)
+"bTr" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/airlock/maintenance{
+ name = "Storage Room";
+ req_access_txt = "12"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bTs" = (
+/turf/closed/wall,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"bTt" = (
+/obj/item/weapon/storage/box,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bTu" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bTv" = (
+/obj/structure/rack,
+/obj/item/weapon/paper,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bTw" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/wood,
+/area/library)
+"bTx" = (
+/obj/structure/chair/office/dark{
+ dir = 4
+ },
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/open/floor/wood,
+/area/library)
+"bTy" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/machinery/camera/autoname{
+ dir = 1;
+ network = list("SS13")
+ },
+/obj/item/weapon/storage/pill_bottle/dice,
+/obj/structure/table/wood,
+/turf/open/floor/wood,
+/area/library)
+"bTz" = (
+/obj/structure/table/wood,
+/obj/machinery/light,
+/obj/item/toy/cards/deck/cas/black{
+ pixel_x = -2;
+ pixel_y = 6
+ },
+/obj/item/toy/cards/deck{
+ pixel_x = 2;
+ pixel_y = 7
+ },
+/obj/item/toy/cards/deck/cas{
+ pixel_x = -1;
+ pixel_y = 2
+ },
+/turf/open/floor/wood,
+/area/library)
+"bTA" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/wood,
+/area/library)
+"bTB" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Library Maintenance";
+ req_access_txt = "0";
+ req_one_access_txt = "12;37"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bTC" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bTD" = (
+/obj/machinery/vending/snack/random,
+/obj/machinery/newscaster{
+ pixel_x = -30;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/black,
+/area/hallway/primary/central)
+"bTE" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=11-Command-Port";
+ location = "10.2-Aft-Port-Corner"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bTF" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/hallway/primary/central)
+"bTG" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/hallway/primary/central)
+"bTH" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 2;
+ pixel_y = 24
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bTI" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bTJ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bTK" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/hallway/primary/central)
+"bTL" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ pixel_y = 28
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bTM" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = 21
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bTN" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1;
+ initialize_directions = 11
+ },
+/obj/machinery/status_display{
+ density = 0;
+ layer = 4;
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
+ },
+/area/hallway/primary/central)
+"bTO" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"bTP" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"bTQ" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"bTR" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 2;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"bTS" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"bTT" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/status_display{
+ density = 0;
+ layer = 4;
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"bTU" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1;
+ initialize_directions = 11
+ },
+/obj/machinery/power/apc{
+ cell_type = 10000;
+ dir = 1;
+ name = "Central Primary Hallway APC";
+ pixel_y = 24
+ },
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"bTV" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1;
+ initialize_directions = 11
+ },
+/obj/structure/sign/map/left{
+ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";
+ icon_state = "map-left-MS";
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"bTW" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/sign/map/right{
+ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";
+ icon_state = "map-right-MS";
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"bTX" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = 21
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"bTY" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/button/door{
+ id = "gateshutter";
+ name = "Gateway Shutter Control";
+ pixel_x = 0;
+ pixel_y = 26;
+ req_access_txt = "19"
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bTZ" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/bookcase{
+ name = "bookcase"
+ },
+/turf/open/floor/wood,
+/area/assembly/showroom{
+ name = "\improper Corporate Showroom"
+ })
+"bUa" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"bUb" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"bUc" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/structure/sign/botany{
+ pixel_x = 32;
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 4
+ },
+/area/hallway/primary/central)
+"bUd" = (
+/obj/structure/table,
+/obj/item/weapon/paper_bin{
+ pixel_x = -2;
+ pixel_y = 8
+ },
+/obj/item/weapon/pen,
+/turf/open/floor/plasteel/green,
+/area/hallway/primary/central)
+"bUe" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/turf/open/floor/plating,
+/area/hydroponics)
+"bUf" = (
+/obj/machinery/vending/hydroseeds{
+ slogan_delay = 700
+ },
+/obj/structure/noticeboard{
+ desc = "A board for pinning important notices upon. Probably helpful for keeping track of requests.";
+ name = "requests board";
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"bUg" = (
+/obj/machinery/vending/hydronutrients,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"bUh" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"bUi" = (
+/obj/item/weapon/storage/box/syringes,
+/obj/item/weapon/storage/box/beakers{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/structure/table/glass,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"bUj" = (
+/obj/machinery/reagentgrinder,
+/obj/structure/table/glass,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"bUk" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"bUl" = (
+/obj/machinery/chem_master/condimaster{
+ desc = "Used to separate out liquids - useful for purifying botanical extracts. Also dispenses condiments.";
+ name = "BrewMaster 2199";
+ pixel_x = -4
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"bUm" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = 29
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"bUn" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 0
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"bUo" = (
+/obj/structure/closet/crate/hydroponics,
+/obj/item/weapon/shovel/spade,
+/obj/item/weapon/wrench,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/item/weapon/cultivator,
+/obj/item/weapon/wirecutters,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"bUp" = (
+/obj/structure/closet{
+ name = "spare parts locker"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/obj/item/weapon/rack_parts,
+/obj/item/weapon/rack_parts,
+/obj/item/weapon/wrench,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/crew_quarters/kitchen)
+"bUq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/door/window/eastright{
+ dir = 1;
+ name = "Kitchen Delivery";
+ req_access_txt = "28"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/crew_quarters/kitchen)
+"bUr" = (
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=8";
+ dir = 8;
+ freq = 1400;
+ location = "Kitchen"
+ },
+/obj/structure/plasticflaps{
+ opacity = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ dir = 1
+ },
+/area/crew_quarters/kitchen)
+"bUs" = (
+/obj/structure/disposalpipe/sortjunction{
+ dir = 2;
+ sortType = 20
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bUt" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bUu" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bUv" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/maintenance/starboard)
+"bUw" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"bUx" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bUy" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 8
+ },
+/obj/machinery/portable_atmospherics/canister,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bUz" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk,
+/turf/open/floor/plasteel/black,
+/area/atmos)
+"bUA" = (
+/obj/machinery/pipedispenser,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bUB" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/light_switch{
+ pixel_y = 28
+ },
+/obj/machinery/pipedispenser/disposal,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/atmos)
+"bUC" = (
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = 28
+ },
+/obj/machinery/pipedispenser/disposal/transit_tube,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bUD" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "Port to Filter";
+ on = 0
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bUE" = (
+/obj/item/weapon/cigbutt,
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 4;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bUF" = (
+/obj/machinery/atmospherics/components/unary/thermomachine/heater{
+ dir = 4;
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bUG" = (
+/obj/machinery/atmospherics/pipe/manifold4w/yellow/visible,
+/turf/open/floor/plasteel,
+/area/atmos)
+"bUH" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "CO2 to Pure";
+ on = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/green/visible,
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 0
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/turf/open/floor/plasteel/vault,
+/area/atmos)
+"bUI" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ external_pressure_bound = 0;
+ frequency = 1441;
+ id_tag = "co2_out";
+ initialize_directions = 1;
+ internal_pressure_bound = 4000;
+ on = 1;
+ pressure_checks = 2;
+ pump_direction = 0
+ },
+/turf/open/floor/engine/co2,
+/area/atmos)
+"bUJ" = (
+/turf/open/floor/engine/co2,
+/area/atmos)
+"bUK" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/plasteel/black,
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"bUL" = (
+/obj/machinery/telecomms/server/presets/security,
+/turf/open/floor/bluegrid{
+ name = "Mainframe Base";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/server)
+"bUM" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"bUN" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Aft Port Solar APC";
+ pixel_x = -26;
+ pixel_y = 3
+ },
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg1"
+ },
+/area/maintenance/portsolar)
+"bUO" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/portsolar)
+"bUP" = (
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/power/smes,
+/turf/open/floor/plating,
+/area/maintenance/portsolar)
+"bUQ" = (
+/obj/item/weapon/cigbutt,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bUR" = (
+/obj/structure/closet,
+/obj/item/weapon/storage/box/donkpockets,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bUS" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "0";
+ req_one_access_txt = "12;5;39;25;28"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"bUT" = (
+/obj/structure/rack,
+/obj/item/weapon/weldingtool,
+/obj/item/weapon/screwdriver{
+ pixel_y = 16
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"bUU" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"bUV" = (
+/obj/machinery/recharge_station,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"bUW" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"bUX" = (
+/obj/structure/rack,
+/obj/item/stack/cable_coil{
+ pixel_x = -1;
+ pixel_y = -3
+ },
+/obj/item/stack/cable_coil,
+/obj/item/weapon/wirecutters,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"bUY" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk,
+/turf/open/floor/plasteel/black,
+/area/hallway/primary/central)
+"bUZ" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bVa" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bVb" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bVc" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bVd" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bVe" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plasteel{
+ icon_state = "L1"
+ },
+/area/hallway/primary/central)
+"bVf" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "L3"
+ },
+/area/hallway/primary/central)
+"bVg" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=10.2-Aft-Port-Corner";
+ location = "10.1-Central-from-Aft"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "L5"
+ },
+/area/hallway/primary/central)
+"bVh" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "L7"
+ },
+/area/hallway/primary/central)
+"bVi" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=8.1-Aft-to-Escape";
+ location = "8-Central-to-Aft"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel{
+ icon_state = "L9"
+ },
+/area/hallway/primary/central)
+"bVj" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "L11"
+ },
+/area/hallway/primary/central)
+"bVk" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel{
+ desc = "";
+ icon_state = "L13";
+ name = "floor"
+ },
+/area/hallway/primary/central)
+"bVl" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bVm" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bVn" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bVo" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=8-Central-to-Aft";
+ location = "7.5-Starboard-Aft-Corner"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bVp" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 4
+ },
+/area/hallway/primary/central)
+"bVq" = (
+/turf/open/floor/plasteel/green,
+/area/hallway/primary/central)
+"bVr" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/window/westleft{
+ dir = 4;
+ name = "Hydroponics Desk";
+ req_access_txt = "0";
+ req_one_access_txt = "30;35"
+ },
+/turf/open/floor/plasteel/green{
+ dir = 4
+ },
+/area/hydroponics)
+"bVs" = (
+/turf/open/floor/plasteel/green/side{
+ dir = 9
+ },
+/area/hydroponics)
+"bVt" = (
+/turf/open/floor/plasteel/green/side{
+ dir = 5
+ },
+/area/hydroponics)
+"bVu" = (
+/turf/open/floor/plasteel/green/side{
+ dir = 1
+ },
+/area/hydroponics)
+"bVv" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 5
+ },
+/area/hydroponics)
+"bVw" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 9
+ },
+/area/hydroponics)
+"bVx" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 1
+ },
+/area/hydroponics)
+"bVy" = (
+/obj/structure/sink{
+ dir = 4;
+ icon_state = "sink";
+ pixel_x = 11;
+ pixel_y = 0
+ },
+/obj/effect/turf_decal/bot{
+ dir = 2
+ },
+/turf/open/floor/plasteel{
+ dir = 2
+ },
+/area/hydroponics)
+"bVz" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bVA" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bVB" = (
+/obj/structure/rack,
+/obj/item/weapon/extinguisher,
+/obj/item/weapon/storage/belt/utility,
+/obj/item/clothing/mask/gas,
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bVC" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bVD" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/item/clothing/mask/pig,
+/obj/item/weapon/bikehorn,
+/obj/structure/table/wood,
+/obj/structure/sign/poster{
+ pixel_x = -32;
+ pixel_y = 0
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"bVE" = (
+/obj/structure/closet/crate,
+/obj/item/weapon/storage/belt/utility,
+/obj/item/stack/cable_coil/random,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bVF" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 6
+ },
+/obj/machinery/light_switch{
+ pixel_y = 28
+ },
+/obj/item/clothing/head/cone{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/item/clothing/head/cone{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/item/clothing/head/cone{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/item/clothing/head/cone{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/item/clothing/head/cone{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/turf/open/floor/plasteel/caution{
+ dir = 9
+ },
+/area/atmos)
+"bVG" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
+ dir = 1
+ },
+/turf/open/floor/plasteel/caution{
+ dir = 1
+ },
+/area/atmos)
+"bVH" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/caution{
+ dir = 1
+ },
+/area/atmos)
+"bVI" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black/corner{
+ dir = 1
+ },
+/area/atmos)
+"bVJ" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
+ dir = 2
+ },
+/obj/machinery/meter,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bVK" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bVL" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 0;
+ name = "Port to Fuel Pipe";
+ on = 0
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bVM" = (
+/obj/machinery/computer/atmos_control/tank{
+ frequency = 1441;
+ input_tag = "co2_in";
+ name = "Carbon Dioxide Supply Control";
+ output_tag = "co2_out";
+ sensors = list("co2_sensor" = "Tank")
+ },
+/obj/machinery/atmospherics/pipe/simple/green/visible,
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 0
+ },
+/turf/open/floor/plasteel/vault,
+/area/atmos)
+"bVN" = (
+/obj/machinery/air_sensor{
+ frequency = 1441;
+ id_tag = "co2_sensor"
+ },
+/turf/open/floor/engine/co2,
+/area/atmos)
+"bVO" = (
+/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
+/turf/open/floor/engine/co2,
+/area/atmos)
+"bVP" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/engine/co2,
+/area/atmos)
+"bVQ" = (
+/obj/structure/chair/stool,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/camera{
+ c_tag = "Aft Port Solar Maintenance";
+ dir = 4;
+ network = list("SS13")
+ },
+/turf/open/floor/plating,
+/area/maintenance/portsolar)
+"bVR" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/portsolar)
+"bVS" = (
+/obj/machinery/power/terminal{
+ icon_state = "term";
+ dir = 1
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 27
+ },
+/turf/open/floor/plating,
+/area/maintenance/portsolar)
+"bVT" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bVU" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bVV" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"bVW" = (
+/turf/open/floor/plating{
+ icon_state = "platingdmg1"
+ },
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"bVX" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"bVY" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/obj/structure/sign/poster{
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"bVZ" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"bWa" = (
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"bWb" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bWc" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bWd" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bWe" = (
+/obj/structure/disposalpipe/sortjunction{
+ dir = 4;
+ icon_state = "pipe-j2s";
+ sortType = 16
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bWf" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "0";
+ req_one_access_txt = "12;5;39;37;25;28"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bWg" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction{
+ icon_state = "pipe-j2";
+ dir = 4
+ },
+/turf/open/floor/plasteel/vault,
+/area/hallway/primary/central)
+"bWh" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 2
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/hallway/primary/central)
+"bWi" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/camera{
+ c_tag = "Central Primary Hallway - Aft-Port Corner";
+ dir = 1;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/hallway/primary/central)
+"bWj" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/hallway/primary/central)
+"bWk" = (
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/hallway/primary/central)
+"bWl" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/hallway/primary/central)
+"bWm" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 0;
+ pixel_y = -30
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/hallway/primary/central)
+"bWn" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/hallway/primary/central)
+"bWo" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bWp" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bWq" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bWr" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 2
+ },
+/turf/open/floor/plasteel{
+ icon_state = "L2"
+ },
+/area/hallway/primary/central)
+"bWs" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel{
+ icon_state = "L4"
+ },
+/area/hallway/primary/central)
+"bWt" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ icon_state = "L6"
+ },
+/area/hallway/primary/central)
+"bWu" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/turf/open/floor/plasteel{
+ icon_state = "L8"
+ },
+/area/hallway/primary/central)
+"bWv" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel{
+ icon_state = "L10"
+ },
+/area/hallway/primary/central)
+"bWw" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel{
+ icon_state = "L12"
+ },
+/area/hallway/primary/central)
+"bWx" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel{
+ desc = "";
+ icon_state = "L14"
+ },
+/area/hallway/primary/central)
+"bWy" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bWz" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bWA" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bWB" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/hallway/primary/central)
+"bWC" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/hallway/primary/central)
+"bWD" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/hallway/primary/central)
+"bWE" = (
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 2
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 0;
+ pixel_y = -30
+ },
+/obj/machinery/camera{
+ c_tag = "Central Primary Hallway - Aft-Starboard Corner";
+ dir = 1;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/hallway/primary/central)
+"bWF" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/hallway/primary/central)
+"bWG" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 2
+ },
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/hallway/primary/central)
+"bWH" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/green/corner{
+ dir = 2
+ },
+/area/hallway/primary/central)
+"bWI" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 2
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 6
+ },
+/area/hallway/primary/central)
+"bWJ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/green,
+/area/hallway/primary/central)
+"bWK" = (
+/obj/structure/table/reinforced,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/window/westright{
+ dir = 4;
+ name = "Hydroponics Desk";
+ req_access_txt = "0";
+ req_one_access_txt = "30;35"
+ },
+/obj/item/weapon/folder/white{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/item/weapon/folder/white{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/turf/open/floor/plasteel/green{
+ dir = 4
+ },
+/area/hydroponics)
+"bWL" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/chair/office/dark{
+ dir = 8
+ },
+/obj/effect/landmark/start{
+ name = "Botanist"
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 10
+ },
+/area/hydroponics)
+"bWM" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 6
+ },
+/area/hydroponics)
+"bWN" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 8
+ },
+/area/hydroponics)
+"bWO" = (
+/obj/machinery/hydroponics/constructable,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"bWP" = (
+/obj/machinery/hydroponics/constructable,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"bWQ" = (
+/turf/open/floor/plasteel/green/side{
+ dir = 4
+ },
+/area/hydroponics)
+"bWR" = (
+/turf/open/floor/plasteel/green/side{
+ dir = 8
+ },
+/area/hydroponics)
+"bWS" = (
+/obj/machinery/hydroponics/constructable,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"bWT" = (
+/obj/machinery/hydroponics/constructable,
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"bWU" = (
+/obj/machinery/seed_extractor,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"bWV" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27;
+ pixel_y = 0
+ },
+/obj/structure/closet/wardrobe/botanist,
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"bWW" = (
+/obj/structure/table/wood,
+/obj/item/weapon/paper,
+/obj/structure/sign/poster{
+ pixel_y = -32
+ },
+/turf/open/floor/wood,
+/area/security/vacantoffice)
+"bWX" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating{
+ icon_state = "platingdmg1"
+ },
+/area/maintenance/starboard)
+"bWY" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bWZ" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg2"
+ },
+/area/maintenance/starboard)
+"bXa" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bXb" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bXc" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bXd" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bXe" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Atmospherics Maintenance";
+ req_access_txt = "24"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/atmos)
+"bXf" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/caution{
+ dir = 8
+ },
+/area/atmos)
+"bXg" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bXh" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "Fuel Pipe to Filter";
+ on = 0
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bXi" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ color = "#330000";
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bXj" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ color = "#330000";
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bXk" = (
+/obj/effect/landmark/start{
+ name = "Atmospheric Technician"
+ },
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ color = "#330000";
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bXl" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ color = "#330000";
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bXm" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ color = "#330000";
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bXn" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ color = "#330000"
+ },
+/obj/machinery/meter{
+ color = ""
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bXo" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "Pure to Fuel Pipe";
+ on = 0
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bXp" = (
+/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bXq" = (
+/obj/machinery/atmospherics/components/trinary/filter{
+ dir = 1;
+ filter_type = "co2";
+ on = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 0
+ },
+/obj/structure/window/reinforced,
+/turf/open/floor/plasteel/vault,
+/area/atmos)
+"bXr" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/on{
+ dir = 8;
+ frequency = 1441;
+ id = "co2_in";
+ pixel_y = 1
+ },
+/turf/open/floor/engine/co2,
+/area/atmos)
+"bXs" = (
+/obj/machinery/camera{
+ c_tag = "Atmospherics Tank - CO2";
+ dir = 8;
+ network = list("SS13");
+ pixel_x = 0;
+ pixel_y = 0
+ },
+/turf/open/floor/engine/co2,
+/area/atmos)
+"bXt" = (
+/obj/machinery/power/solar_control{
+ id = "aftport";
+ name = "Aft Port Solar Control";
+ track = 0
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/maintenance/portsolar)
+"bXu" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/maintenance/portsolar)
+"bXv" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/turf/open/floor/plating,
+/area/maintenance/portsolar)
+"bXw" = (
+/obj/structure/rack,
+/obj/item/weapon/poster/contraband,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bXx" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bXy" = (
+/obj/structure/closet,
+/obj/item/device/flashlight,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"bXz" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"bXA" = (
+/obj/structure/table,
+/obj/item/device/flashlight/lamp,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"bXB" = (
+/obj/structure/chair/stool,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"bXC" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"bXD" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg2"
+ },
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"bXE" = (
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"bXF" = (
+/obj/structure/girder,
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"bXG" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bXH" = (
+/obj/structure/closet/crate,
+/obj/item/weapon/coin/silver,
+/obj/item/device/flashlight,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bXI" = (
+/obj/structure/closet,
+/obj/item/clothing/neck/stethoscope,
+/obj/item/weapon/hemostat,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bXJ" = (
+/obj/item/weapon/storage/box/lights/mixed,
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"bXK" = (
+/turf/closed/wall,
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"bXL" = (
+/turf/closed/wall,
+/area/security/checkpoint/medical)
+"bXM" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27;
+ pixel_y = 0
+ },
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "applebush";
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/blue/corner{
+ dir = 8
+ },
+/area/hallway/primary/central)
+"bXN" = (
+/turf/open/floor/plasteel/blue/corner{
+ dir = 8
+ },
+/area/hallway/primary/central)
+"bXO" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plasteel/blue/corner{
+ dir = 8
+ },
+/area/hallway/primary/central)
+"bXP" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/blue/corner{
+ dir = 8
+ },
+/area/hallway/primary/central)
+"bXQ" = (
+/obj/machinery/camera{
+ c_tag = "Central Primary Hallway - Aft-Port";
+ dir = 1;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/blue/corner{
+ dir = 8
+ },
+/area/hallway/primary/central)
+"bXR" = (
+/obj/machinery/light/small,
+/turf/open/floor/plasteel/blue/corner{
+ dir = 8
+ },
+/area/hallway/primary/central)
+"bXS" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plasteel/blue/corner{
+ dir = 8
+ },
+/area/hallway/primary/central)
+"bXT" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/purple/corner{
+ dir = 2
+ },
+/area/hallway/primary/central)
+"bXU" = (
+/obj/machinery/light/small,
+/turf/open/floor/plasteel/purple/corner{
+ dir = 2
+ },
+/area/hallway/primary/central)
+"bXV" = (
+/turf/open/floor/plasteel/purple/corner{
+ dir = 2
+ },
+/area/hallway/primary/central)
+"bXW" = (
+/obj/machinery/camera{
+ c_tag = "Central Primary Hallway - Aft-Starboard";
+ dir = 1;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/purple/corner{
+ dir = 2
+ },
+/area/hallway/primary/central)
+"bXX" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/purple/corner{
+ dir = 2
+ },
+/area/hallway/primary/central)
+"bXY" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/purple/corner{
+ dir = 2
+ },
+/area/hallway/primary/central)
+"bXZ" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-10";
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/purple/corner{
+ dir = 2
+ },
+/area/hallway/primary/central)
+"bYa" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/disposal/bin,
+/obj/machinery/newscaster{
+ pixel_y = -29
+ },
+/turf/open/floor/plasteel/vault,
+/area/hallway/primary/central)
+"bYb" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "0";
+ req_one_access_txt = "12;35;47"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"bYc" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/turf/open/floor/plating,
+/area/hallway/primary/central)
+"bYd" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Hydroponics Storage"
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/hallway/primary/central)
+"bYe" = (
+/obj/machinery/camera/autoname{
+ dir = 4;
+ network = list("SS13")
+ },
+/obj/item/weapon/book/manual/hydroponics_pod_people,
+/obj/item/weapon/paper/hydroponics,
+/obj/machinery/requests_console{
+ department = "Hydroponics";
+ departmentType = 2;
+ pixel_x = -31;
+ pixel_y = -2
+ },
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/green,
+/area/hydroponics)
+"bYf" = (
+/obj/item/stack/packageWrap,
+/obj/item/stack/packageWrap,
+/obj/item/stack/packageWrap,
+/obj/item/stack/packageWrap,
+/obj/item/stack/packageWrap,
+/obj/item/weapon/hand_labeler,
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/green,
+/area/hydroponics)
+"bYg" = (
+/obj/effect/landmark/start{
+ name = "Botanist"
+ },
+/obj/machinery/holopad,
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"bYh" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"bYi" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"bYj" = (
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"bYk" = (
+/obj/effect/landmark/start{
+ name = "Botanist"
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 4
+ },
+/area/hydroponics)
+"bYl" = (
+/obj/item/seeds/wheat,
+/obj/item/seeds/sugarcane,
+/obj/item/seeds/potato,
+/obj/item/seeds/apple,
+/obj/item/weapon/grown/corncob,
+/obj/item/weapon/reagent_containers/food/snacks/grown/carrot,
+/obj/item/weapon/reagent_containers/food/snacks/grown/wheat,
+/obj/item/weapon/reagent_containers/food/snacks/grown/pumpkin{
+ pixel_y = 5
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 27;
+ pixel_y = 0
+ },
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 4
+ },
+/obj/machinery/camera/autoname{
+ dir = 8;
+ network = list("SS13")
+ },
+/obj/structure/table/glass,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"bYm" = (
+/obj/structure/closet/secure_closet/hydroponics,
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"bYn" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/obj/effect/landmark/start{
+ name = "Botanist"
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"bYo" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/junction{
+ icon_state = "pipe-j2";
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bYp" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bYq" = (
+/obj/structure/rack,
+/obj/item/weapon/tank/internals/oxygen,
+/obj/item/weapon/tank/internals/oxygen,
+/obj/item/device/radio/off,
+/obj/item/device/radio/off,
+/obj/item/device/radio/intercom{
+ dir = 0;
+ name = "Station Intercom (General)";
+ pixel_x = 27;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 1
+ },
+/area/teleporter{
+ name = "\improper Teleporter Room"
+ })
+"bYr" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bYs" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bYt" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bYu" = (
+/obj/item/weapon/cigbutt,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bYv" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/obj/machinery/camera{
+ c_tag = "Atmospherics - Port-Aft";
+ dir = 4;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/caution{
+ dir = 8
+ },
+/area/atmos)
+"bYw" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ color = "#330000"
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bYx" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bYy" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 4;
+ name = "N2 to Airmix";
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bYz" = (
+/obj/machinery/atmospherics/components/trinary/mixer{
+ dir = 4;
+ node1_concentration = 0.8;
+ node2_concentration = 0.2;
+ on = 1;
+ pixel_x = 0;
+ pixel_y = 0;
+ target_pressure = 4500
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bYA" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 10;
+ initialize_directions = 10
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bYB" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/turf/open/floor/plasteel/black,
+/area/atmos)
+"bYC" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/maintenance/portsolar)
+"bYD" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/machinery/door/airlock/external{
+ name = "Solar Maintenance";
+ req_access = null;
+ req_access_txt = "10; 13"
+ },
+/turf/open/floor/plating,
+/area/maintenance/portsolar)
+"bYE" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"bYF" = (
+/obj/structure/table,
+/obj/item/weapon/paper_bin{
+ pixel_x = -2;
+ pixel_y = 8
+ },
+/obj/item/weapon/poster/contraband,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"bYG" = (
+/obj/structure/table,
+/obj/item/weapon/folder/white{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/item/weapon/folder/white{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/item/weapon/pen,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 0;
+ pixel_y = -30
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"bYH" = (
+/obj/structure/light_construct,
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"bYI" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"bYJ" = (
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/obj/item/weapon/stock_parts/cell/high{
+ charge = 100;
+ maxcharge = 15000
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"bYK" = (
+/obj/machinery/mech_bay_recharge_port,
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"bYL" = (
+/turf/open/floor/mech_bay_recharge_floor,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"bYM" = (
+/obj/machinery/computer/mech_bay_power_console,
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/open/floor/bluegrid,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"bYN" = (
+/obj/machinery/space_heater,
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"bYO" = (
+/obj/item/weapon/vending_refill/cola,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"bYP" = (
+/obj/structure/closet/crate{
+ icon_state = "crateopen";
+ opened = 1
+ },
+/obj/item/weapon/storage/box/donkpockets,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"bYQ" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "0";
+ req_one_access_txt = "12;5;39;25;28"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"bYR" = (
+/obj/machinery/vending/medical,
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 9
+ },
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"bYS" = (
+/obj/structure/noticeboard{
+ pixel_y = 32
+ },
+/obj/structure/table,
+/obj/item/weapon/reagent_containers/glass/beaker/large{
+ pixel_y = 3
+ },
+/obj/item/weapon/reagent_containers/glass/beaker{
+ pixel_x = 8;
+ pixel_y = 2
+ },
+/obj/item/weapon/reagent_containers/glass/bottle/charcoal{
+ pixel_x = -5;
+ pixel_y = 0
+ },
+/obj/item/weapon/reagent_containers/glass/bottle/morphine,
+/obj/item/weapon/reagent_containers/syringe/epinephrine{
+ pixel_x = 3;
+ pixel_y = -2
+ },
+/obj/item/weapon/reagent_containers/dropper,
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 1
+ },
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"bYT" = (
+/obj/structure/closet/secure_closet/medical3,
+/obj/item/weapon/screwdriver{
+ pixel_y = 6
+ },
+/obj/structure/sign/nosmoking_2{
+ pixel_x = 0;
+ pixel_y = 30
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 1
+ },
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"bYU" = (
+/obj/structure/closet/secure_closet/medical3,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/airalarm{
+ pixel_y = 24
+ },
+/obj/item/weapon/screwdriver{
+ pixel_y = 6
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 1
+ },
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"bYV" = (
+/obj/item/device/radio/intercom{
+ broadcasting = 1;
+ freerange = 0;
+ frequency = 1485;
+ listening = 0;
+ name = "Station Intercom (Medbay)";
+ pixel_x = 0;
+ pixel_y = 30
+ },
+/obj/structure/closet/wardrobe/white/medical,
+/obj/item/clothing/suit/hooded/wintercoat/medical,
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 1
+ },
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"bYW" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk,
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 5
+ },
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"bYX" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Medical Security Checkpoint APC";
+ pixel_x = -24;
+ pixel_y = 0
+ },
+/obj/machinery/airalarm{
+ pixel_y = 28
+ },
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/closet/secure_closet/security/med,
+/turf/open/floor/plasteel/red/side{
+ dir = 9
+ },
+/area/security/checkpoint/medical)
+"bYY" = (
+/obj/machinery/recharger{
+ pixel_y = 4
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/requests_console{
+ department = "Security";
+ departmentType = 5;
+ pixel_y = 30
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/camera{
+ c_tag = "Security Post - Medbay";
+ dir = 2;
+ network = list("SS13","Medbay")
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 1
+ },
+/area/security/checkpoint/medical)
+"bYZ" = (
+/obj/item/weapon/pen,
+/obj/structure/table/reinforced,
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_x = 30;
+ pixel_y = 0
+ },
+/obj/item/weapon/folder/red,
+/obj/item/weapon/book/manual/wiki/security_space_law{
+ pixel_x = 3;
+ pixel_y = 4
+ },
+/obj/machinery/newscaster/security_unit{
+ pixel_y = 32
+ },
+/obj/item/weapon/screwdriver{
+ pixel_y = 10
+ },
+/obj/item/device/radio/off,
+/turf/open/floor/plasteel/red/side{
+ dir = 5
+ },
+/area/security/checkpoint/medical)
+"bZa" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/turf/open/floor/plating,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"bZb" = (
+/obj/structure/sign/bluecross_2,
+/turf/closed/wall,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"bZc" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/white/side{
+ dir = 2
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"bZd" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/white/side{
+ dir = 2
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"bZe" = (
+/obj/structure/sign/directions/security{
+ desc = "A direction sign, pointing out which way the security department is.";
+ dir = 1;
+ icon_state = "direction_sec";
+ pixel_x = 0;
+ pixel_y = 8
+ },
+/obj/structure/sign/directions/engineering{
+ desc = "A direction sign, pointing out which way the engineering department is.";
+ dir = 4;
+ icon_state = "direction_eng";
+ pixel_y = 0
+ },
+/obj/structure/sign/directions/engineering{
+ desc = "A direction sign, pointing out which way the bridge is.";
+ dir = 1;
+ icon_state = "direction_bridge";
+ name = "bridge";
+ pixel_y = -8
+ },
+/turf/closed/wall,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"bZf" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass,
+/turf/open/floor/plasteel/blue/corner{
+ dir = 8
+ },
+/area/hallway/primary/aft)
+"bZg" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bZh" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass,
+/turf/open/floor/plasteel/purple/corner{
+ dir = 2
+ },
+/area/hallway/primary/aft)
+"bZi" = (
+/obj/structure/sign/directions/engineering{
+ desc = "A direction sign, pointing out which way the medical department is.";
+ dir = 8;
+ icon_state = "direction_med";
+ name = "medical department";
+ pixel_y = 8
+ },
+/obj/structure/sign/directions/engineering{
+ desc = "A direction sign, pointing out which way the escape arm is.";
+ icon_state = "direction_evac";
+ name = "escape arm"
+ },
+/obj/structure/sign/directions/engineering{
+ desc = "A direction sign, pointing out which way the research department is.";
+ dir = 4;
+ icon_state = "direction_sci";
+ name = "research department";
+ pixel_y = -8
+ },
+/turf/closed/wall,
+/area/medical/research{
+ name = "Research Division"
+ })
+"bZj" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/turf/open/floor/plating,
+/area/medical/research{
+ name = "Research Division"
+ })
+"bZk" = (
+/obj/structure/sign/science,
+/turf/closed/wall,
+/area/medical/research{
+ name = "Research Division"
+ })
+"bZl" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/white/side{
+ dir = 2
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"bZm" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/white/side{
+ dir = 2
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"bZn" = (
+/turf/closed/wall,
+/area/medical/research{
+ name = "Research Division"
+ })
+"bZo" = (
+/turf/closed/wall,
+/area/security/checkpoint/science{
+ name = "Security Post - Research Division"
+ })
+"bZp" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"bZq" = (
+/obj/item/weapon/reagent_containers/food/snacks/grown/wheat,
+/obj/item/weapon/reagent_containers/food/snacks/grown/watermelon,
+/obj/item/weapon/reagent_containers/food/snacks/grown/citrus/orange,
+/obj/item/weapon/reagent_containers/food/snacks/grown/grapes,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27;
+ pixel_y = 0
+ },
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/hydrofloor,
+/area/hallway/primary/central)
+"bZr" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/hallway/primary/central)
+"bZs" = (
+/obj/item/weapon/cultivator,
+/obj/item/weapon/crowbar,
+/obj/item/device/plant_analyzer,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/hydrofloor,
+/area/hallway/primary/central)
+"bZt" = (
+/obj/structure/sink{
+ icon_state = "sink";
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 9
+ },
+/area/hydroponics)
+"bZu" = (
+/obj/effect/landmark/start{
+ name = "Botanist"
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 8
+ },
+/area/hydroponics)
+"bZv" = (
+/obj/machinery/biogenerator,
+/obj/machinery/light_switch{
+ pixel_x = 26;
+ pixel_y = 0
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"bZw" = (
+/obj/structure/closet/secure_closet/hydroponics,
+/obj/machinery/light_switch{
+ pixel_x = -26;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"bZx" = (
+/obj/machinery/icecream_vat,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/crew_quarters/kitchen)
+"bZy" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg1"
+ },
+/area/maintenance/starboard)
+"bZz" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bZA" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/starboard)
+"bZB" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"bZC" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/maintenance/incinerator)
+"bZD" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Incinerator Access";
+ req_access_txt = "12"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/incinerator)
+"bZE" = (
+/turf/closed/wall,
+/area/maintenance/incinerator)
+"bZF" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 5
+ },
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = -30
+ },
+/turf/open/floor/plasteel/caution{
+ dir = 8
+ },
+/area/atmos)
+"bZG" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bZH" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 4;
+ name = "N2 to Pure"
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bZI" = (
+/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bZJ" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bZK" = (
+/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bZL" = (
+/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
+ dir = 4
+ },
+/obj/machinery/meter,
+/turf/open/floor/plasteel,
+/area/atmos)
+"bZM" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 0
+ },
+/obj/structure/table,
+/obj/machinery/atmospherics/pipe/simple/green/visible,
+/obj/item/weapon/paper_bin{
+ pixel_x = -2;
+ pixel_y = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/turf/open/floor/plasteel/caution{
+ dir = 4
+ },
+/area/atmos)
+"bZN" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/turf/open/floor/plating/airless,
+/area/maintenance/portsolar)
+"bZO" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Storage Room";
+ req_access_txt = "12"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"bZP" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/bluegrid,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"bZQ" = (
+/turf/open/floor/bluegrid,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"bZR" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"bZS" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"bZT" = (
+/obj/machinery/space_heater,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"bZU" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/mopbucket,
+/obj/item/weapon/mop,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"bZV" = (
+/obj/item/weapon/storage/toolbox/emergency,
+/obj/item/weapon/hand_labeler,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"bZW" = (
+/obj/item/weapon/cigbutt,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"bZX" = (
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=4";
+ dir = 4;
+ freq = 1400;
+ location = "Medbay"
+ },
+/obj/structure/plasticflaps{
+ opacity = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/window/northleft{
+ dir = 8;
+ name = "MuleBot Access";
+ req_access_txt = "50"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"bZY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 8
+ },
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"bZZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"caa" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 2;
+ on = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"cab" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"cac" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 4
+ },
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"cad" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_security{
+ name = "Medbay Security Post";
+ req_access_txt = "63"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/red,
+/area/security/checkpoint/medical)
+"cae" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/light_switch{
+ pixel_y = -25
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/security/checkpoint/medical)
+"caf" = (
+/turf/open/floor/plasteel,
+/area/security/checkpoint/medical)
+"cag" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 4
+ },
+/area/security/checkpoint/medical)
+"cah" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/security/checkpoint/medical)
+"cai" = (
+/obj/structure/table,
+/obj/item/weapon/pen,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/item/weapon/storage/firstaid/regular,
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 1
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"caj" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/table,
+/obj/item/weapon/reagent_containers/glass/bottle/epinephrine{
+ pixel_x = 7;
+ pixel_y = -3
+ },
+/obj/item/weapon/reagent_containers/glass/bottle/charcoal{
+ pixel_x = -4;
+ pixel_y = -3
+ },
+/obj/item/weapon/reagent_containers/syringe/epinephrine{
+ pixel_x = 3;
+ pixel_y = -2
+ },
+/obj/item/weapon/reagent_containers/dropper,
+/obj/item/weapon/reagent_containers/glass/beaker{
+ pixel_x = 8;
+ pixel_y = 2
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 1
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"cak" = (
+/obj/structure/chair,
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 1
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"cal" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"cam" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"can" = (
+/obj/structure/chair,
+/obj/effect/landmark/start{
+ name = "Assistant"
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 1
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"cao" = (
+/obj/structure/table,
+/obj/item/weapon/storage/box/bodybags{
+ pixel_x = 3;
+ pixel_y = 2
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 1
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"cap" = (
+/obj/structure/table,
+/obj/item/stack/medical/gauze,
+/obj/item/stack/medical/ointment,
+/obj/item/stack/medical/bruise_pack,
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 1
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"caq" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plasteel/blue/corner{
+ dir = 8
+ },
+/area/hallway/primary/aft)
+"car" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cas" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/purple/corner{
+ dir = 2
+ },
+/area/hallway/primary/aft)
+"cat" = (
+/obj/structure/table,
+/obj/item/weapon/folder/white{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/item/clothing/glasses/science,
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 1
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"cau" = (
+/obj/structure/table,
+/obj/item/weapon/paper/pamphlet,
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 1
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"cav" = (
+/obj/structure/chair,
+/obj/effect/landmark/start{
+ name = "Assistant"
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 1
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"caw" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"cax" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"cay" = (
+/obj/structure/chair,
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 1
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"caz" = (
+/obj/structure/table,
+/obj/item/stack/cable_coil,
+/obj/item/device/assembly/igniter{
+ pixel_x = -4;
+ pixel_y = -4
+ },
+/obj/item/weapon/screwdriver{
+ pixel_y = 16
+ },
+/obj/item/device/gps{
+ gpstag = "RD0"
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 1
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"caA" = (
+/obj/structure/table,
+/obj/item/weapon/stock_parts/console_screen,
+/obj/item/weapon/electronics/airlock,
+/obj/item/device/assembly/timer{
+ pixel_x = -4;
+ pixel_y = 2
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 1
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"caB" = (
+/obj/structure/table,
+/obj/item/weapon/paper_bin{
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/item/weapon/pen,
+/obj/machinery/status_display{
+ density = 0;
+ layer = 4;
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/machinery/camera{
+ c_tag = "Research Division - Lobby";
+ dir = 2;
+ network = list("SS13","RD")
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 1
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"caC" = (
+/obj/structure/table,
+/obj/machinery/recharger{
+ pixel_y = 4
+ },
+/obj/machinery/light_switch{
+ pixel_x = -27;
+ pixel_y = 6
+ },
+/obj/machinery/newscaster/security_unit{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 9
+ },
+/area/security/checkpoint/science{
+ name = "Security Post - Research Division"
+ })
+"caD" = (
+/obj/structure/table,
+/obj/machinery/requests_console{
+ department = "Security";
+ departmentType = 5;
+ pixel_y = 30
+ },
+/obj/machinery/button/door{
+ id = "Biohazard";
+ name = "Biohazard Shutter Control";
+ pixel_x = -7;
+ pixel_y = 0;
+ req_access_txt = "47"
+ },
+/obj/machinery/button/door{
+ desc = "A remote control switch for the research division entryway.";
+ id = "ResearchExt";
+ name = "Research Exterior Airlock";
+ normaldoorcontrol = 1;
+ pixel_x = 7;
+ pixel_y = 7
+ },
+/obj/machinery/button/door{
+ desc = "A remote control switch for the research division entryway.";
+ id = "ResearchInt";
+ name = "Research Interior Airlock";
+ normaldoorcontrol = 1;
+ pixel_x = 7;
+ pixel_y = -2
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 1
+ },
+/area/security/checkpoint/science{
+ name = "Security Post - Research Division"
+ })
+"caE" = (
+/obj/structure/table,
+/obj/item/weapon/paper_bin{
+ pixel_x = 1;
+ pixel_y = 9
+ },
+/obj/item/weapon/pen,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 5
+ },
+/area/security/checkpoint/science{
+ name = "Security Post - Research Division"
+ })
+"caF" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/item/clothing/mask/horsehead,
+/obj/structure/table/wood,
+/obj/structure/sign/poster{
+ pixel_x = -32;
+ pixel_y = 0
+ },
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"caG" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/structure/sink{
+ icon_state = "sink";
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/hallway/primary/central)
+"caH" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/hallway/primary/central)
+"caI" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/hallway/primary/central)
+"caJ" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_medical{
+ id_tag = "";
+ name = "Hydroponics";
+ req_access_txt = "35"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"caK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 10
+ },
+/area/hydroponics)
+"caL" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 6
+ },
+/area/hydroponics)
+"caM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 10
+ },
+/area/hydroponics)
+"caN" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 2
+ },
+/area/hydroponics)
+"caO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 2
+ },
+/area/hydroponics)
+"caP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/bot{
+ dir = 2
+ },
+/turf/open/floor/plasteel{
+ dir = 2
+ },
+/area/hydroponics)
+"caQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock{
+ name = "Hydroponics Backroom";
+ req_access_txt = "35";
+ req_one_access_txt = "0"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/bot{
+ dir = 2
+ },
+/turf/open/floor/plasteel{
+ dir = 2
+ },
+/area/hydroponics)
+"caR" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"caS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"caT" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance{
+ name = "Hydroponics Maintenance";
+ req_access_txt = "35";
+ req_one_access_txt = "0"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/hydroponics)
+"caU" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/sortjunction{
+ sortType = 21
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"caV" = (
+/obj/structure/rack,
+/obj/item/weapon/extinguisher,
+/obj/item/clothing/mask/gas,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"caW" = (
+/obj/structure/closet,
+/obj/item/stack/cable_coil/random,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"caX" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/light_switch{
+ pixel_x = 0;
+ pixel_y = 0
+ },
+/turf/closed/wall,
+/area/maintenance/incinerator)
+"caY" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/incinerator)
+"caZ" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk,
+/obj/structure/sign/deathsposal{
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/incinerator)
+"cba" = (
+/obj/machinery/power/smes{
+ capacity = 9e+006;
+ charge = 10000
+ },
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/incinerator)
+"cbb" = (
+/obj/machinery/door/window/northleft{
+ dir = 1;
+ icon_state = "left";
+ name = "Inner Pipe Access";
+ req_access_txt = "24"
+ },
+/turf/open/floor/plasteel/black,
+/area/atmos)
+"cbc" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 0
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
+ dir = 8
+ },
+/turf/open/floor/plasteel/black,
+/area/atmos)
+"cbd" = (
+/obj/machinery/atmospherics/components/trinary/filter{
+ dir = 4;
+ filter_type = "n2";
+ on = 1
+ },
+/obj/structure/window/reinforced,
+/turf/open/floor/plasteel/red,
+/area/atmos)
+"cbe" = (
+/obj/structure/window/reinforced,
+/obj/machinery/computer/atmos_control/tank{
+ frequency = 1441;
+ input_tag = "n2_in";
+ name = "Nitrogen Supply Control";
+ output_tag = "n2_out";
+ sensors = list("n2_sensor" = "Tank")
+ },
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ color = "#330000"
+ },
+/turf/open/floor/plasteel/red,
+/area/atmos)
+"cbf" = (
+/obj/structure/window/reinforced,
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1;
+ name = "Nitrogen Outlet";
+ on = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel/red,
+/area/atmos)
+"cbg" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 0
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/door/window/northleft{
+ dir = 1;
+ icon_state = "left";
+ name = "Inner Pipe Access";
+ req_access_txt = "24"
+ },
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/atmos)
+"cbh" = (
+/obj/structure/window/reinforced,
+/obj/machinery/atmospherics/components/trinary/filter{
+ dir = 4;
+ filter_type = "o2";
+ on = 1
+ },
+/turf/open/floor/plasteel/blue,
+/area/atmos)
+"cbi" = (
+/obj/structure/window/reinforced,
+/obj/machinery/computer/atmos_control/tank{
+ frequency = 1441;
+ input_tag = "o2_in";
+ name = "Oxygen Supply Control";
+ output_tag = "o2_out";
+ sensors = list("o2_sensor" = "Tank")
+ },
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel/blue,
+/area/atmos)
+"cbj" = (
+/obj/structure/window/reinforced,
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1;
+ name = "O2 to Airmix";
+ on = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel/blue,
+/area/atmos)
+"cbk" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 0
+ },
+/obj/machinery/door/window/northleft{
+ dir = 1;
+ icon_state = "left";
+ name = "Inner Pipe Access";
+ req_access_txt = "24"
+ },
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1;
+ name = "O2 to Pure"
+ },
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/atmos)
+"cbl" = (
+/obj/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel/barber{
+ dir = 8
+ },
+/area/atmos)
+"cbm" = (
+/obj/docking_port/mobile{
+ dheight = 0;
+ dir = 2;
+ dwidth = 11;
+ height = 15;
+ id = "whiteship";
+ launch_status = 0;
+ name = "NT Recovery White-Ship";
+ port_angle = -90;
+ preferred_direction = 4;
+ roundstart_move = "whiteship_away";
+ width = 27
+ },
+/obj/machinery/door/airlock/titanium{
+ name = "recovery shuttle external airlock"
+ },
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/obj/docking_port/stationary{
+ dir = 2;
+ dwidth = 11;
+ height = 15;
+ id = "whiteship_home";
+ name = "SS13: Auxiliary Dock, Station-Port";
+ width = 27
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/abandoned)
+"cbn" = (
+/obj/structure/window/reinforced,
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1;
+ name = "Air to Pure"
+ },
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel/barber{
+ dir = 8
+ },
+/area/atmos)
+"cbo" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 0
+ },
+/obj/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 9
+ },
+/turf/open/floor/plasteel/barber{
+ dir = 8
+ },
+/area/atmos)
+"cbp" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cbq" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cbr" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cbs" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cbt" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9;
+ pixel_y = 0
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cbu" = (
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cbv" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/light_construct{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cbw" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cbx" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cby" = (
+/obj/machinery/mecha_part_fabricator{
+ dir = 2;
+ name = "counterfeit exosuit fabricator";
+ req_access = null
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cbz" = (
+/obj/structure/rack,
+/obj/item/stack/sheet/cardboard,
+/obj/item/device/radio/off,
+/obj/structure/light_construct{
+ dir = 1
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cbA" = (
+/obj/structure/closet,
+/obj/item/stack/sheet/metal{
+ amount = 34
+ },
+/obj/item/weapon/extinguisher/mini,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cbB" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/sortjunction{
+ dir = 1;
+ icon_state = "pipe-j1s";
+ sortType = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cbC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cbD" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "0";
+ req_one_access_txt = "12;5"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cbE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/item/hand_labeler_refill,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cbF" = (
+/obj/item/weapon/reagent_containers/glass/bottle/morphine,
+/obj/item/trash/candy,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/item/clothing/neck/stethoscope,
+/turf/open/floor/plating{
+ icon_state = "platingdmg1"
+ },
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cbG" = (
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cbH" = (
+/obj/item/weapon/tank/internals/air,
+/obj/item/weapon/tank/internals/air,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cbI" = (
+/obj/machinery/door/airlock{
+ name = "Medbay Emergency Storage";
+ req_access_txt = "5"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"cbJ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 8
+ },
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"cbK" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"cbL" = (
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 2
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"cbM" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"cbN" = (
+/obj/machinery/holopad,
+/obj/effect/landmark/start{
+ name = "Medical Doctor"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"cbO" = (
+/obj/machinery/camera{
+ c_tag = "Medbay Storage";
+ dir = 8;
+ network = list("SS13","Medbay")
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/closet/crate/freezer/surplus_limbs,
+/obj/item/weapon/reagent_containers/glass/beaker/synthflesh,
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 4
+ },
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"cbP" = (
+/obj/machinery/requests_console{
+ announcementConsole = 0;
+ department = "Medbay";
+ departmentType = 1;
+ name = "Medbay RC";
+ pixel_x = 0;
+ pixel_y = 0;
+ pixel_z = 0
+ },
+/turf/closed/wall,
+/area/security/checkpoint/medical)
+"cbQ" = (
+/obj/machinery/computer/secure_data,
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for monitoring medbay to ensure patient safety.";
+ dir = 1;
+ name = "Medbay Monitor";
+ network = list("Medbay");
+ pixel_x = 0;
+ pixel_y = -29
+ },
+/obj/item/device/radio/intercom{
+ dir = 0;
+ name = "Station Intercom (General)";
+ pixel_x = -27;
+ pixel_y = -10
+ },
+/turf/open/floor/plasteel/red/side,
+/area/security/checkpoint/medical)
+"cbR" = (
+/obj/structure/chair/office/dark,
+/obj/machinery/button/door{
+ desc = "A remote control switch for the medbay foyer.";
+ id = "MedbayFoyer";
+ name = "Medbay Doors Control";
+ normaldoorcontrol = 1;
+ pixel_x = 24;
+ pixel_y = -24
+ },
+/obj/effect/landmark/start/depsec/medical,
+/turf/open/floor/plasteel/red/side{
+ dir = 6
+ },
+/area/security/checkpoint/medical)
+"cbS" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/security/checkpoint/medical)
+"cbT" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"cbU" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"cbV" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"cbW" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 2
+ },
+/obj/machinery/holopad,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"cbX" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"cbY" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"cbZ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"cca" = (
+/turf/open/floor/plasteel/white,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"ccb" = (
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/white/side{
+ dir = 8
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"ccc" = (
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/white/side{
+ dir = 4
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"ccd" = (
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"cce" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"ccf" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"ccg" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"cch" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/obj/machinery/holopad,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"cci" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"ccj" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"cck" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/security/checkpoint/science{
+ name = "Security Post - Research Division"
+ })
+"ccl" = (
+/obj/item/weapon/screwdriver{
+ pixel_y = 10
+ },
+/obj/item/device/radio/off,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/security/checkpoint/science{
+ name = "Security Post - Research Division"
+ })
+"ccm" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ on = 1
+ },
+/obj/structure/chair/office/dark{
+ dir = 1
+ },
+/obj/effect/landmark/start/depsec/science,
+/turf/open/floor/plasteel,
+/area/security/checkpoint/science{
+ name = "Security Post - Research Division"
+ })
+"ccn" = (
+/obj/machinery/computer/secure_data,
+/obj/item/weapon/book/manual/wiki/security_space_law,
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for watching the RD's goons from the safety of his office.";
+ dir = 8;
+ name = "Research Monitor";
+ network = list("RD");
+ pixel_x = 28;
+ pixel_y = 2
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 4
+ },
+/area/security/checkpoint/science{
+ name = "Security Post - Research Division"
+ })
+"cco" = (
+/obj/machinery/light/small,
+/obj/item/toy/dummy,
+/obj/item/toy/prize/honk{
+ pixel_y = 12
+ },
+/obj/structure/table/wood,
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -29
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"ccp" = (
+/obj/machinery/vending/hydroseeds{
+ slogan_delay = 700
+ },
+/turf/open/floor/plasteel/vault,
+/area/hallway/primary/central)
+"ccq" = (
+/obj/structure/table,
+/obj/item/weapon/book/manual/hydroponics_pod_people,
+/obj/machinery/light,
+/obj/item/weapon/paper/hydroponics,
+/obj/machinery/camera{
+ c_tag = "Hydroponics - Foyer";
+ dir = 1;
+ network = list("SS13")
+ },
+/obj/item/device/radio/intercom{
+ pixel_y = -25
+ },
+/turf/open/floor/plasteel/vault,
+/area/hallway/primary/central)
+"ccr" = (
+/obj/machinery/vending/hydronutrients,
+/turf/open/floor/plasteel/vault,
+/area/hallway/primary/central)
+"ccs" = (
+/obj/machinery/disposal/bin{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/light_switch{
+ pixel_y = -28
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"cct" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"ccu" = (
+/obj/machinery/hydroponics/constructable,
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -29
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"ccv" = (
+/obj/machinery/hydroponics/constructable,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"ccw" = (
+/obj/machinery/hydroponics/constructable,
+/obj/machinery/light,
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "Hydroponics APC";
+ pixel_x = 0;
+ pixel_y = -28
+ },
+/obj/structure/cable/yellow,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"ccx" = (
+/obj/machinery/hydroponics/constructable,
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"ccy" = (
+/obj/machinery/hydroponics/constructable,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"ccz" = (
+/obj/item/weapon/wrench,
+/obj/item/clothing/suit/apron,
+/obj/item/clothing/tie/armband/hydro,
+/obj/structure/table/glass,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"ccA" = (
+/obj/item/weapon/reagent_containers/spray/plantbgone{
+ pixel_x = 0;
+ pixel_y = 3
+ },
+/obj/item/weapon/reagent_containers/spray/plantbgone{
+ pixel_x = 8;
+ pixel_y = 8
+ },
+/obj/item/weapon/reagent_containers/spray/plantbgone{
+ pixel_x = 13;
+ pixel_y = 5
+ },
+/obj/item/weapon/watertank,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/obj/item/weapon/grenade/chem_grenade/antiweed,
+/obj/structure/table/glass,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"ccB" = (
+/obj/machinery/door/window/eastright{
+ dir = 1;
+ name = "Hydroponics Delivery";
+ req_access_txt = "35"
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"ccC" = (
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=8";
+ dir = 8;
+ freq = 1400;
+ location = "Hydroponics"
+ },
+/obj/structure/plasticflaps{
+ opacity = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ dir = 1
+ },
+/area/hydroponics)
+"ccD" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"ccE" = (
+/obj/machinery/atmospherics/components/unary/tank/toxins{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/cobweb,
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/incinerator)
+"ccF" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 4;
+ name = "plasma tank pump"
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/incinerator)
+"ccG" = (
+/obj/structure/sink/kitchen{
+ desc = "A sink used for washing one's hands and face. It looks rusty and home-made";
+ name = "old sink";
+ pixel_y = 28
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 10
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/incinerator)
+"ccH" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/table,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/weapon/pen,
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/incinerator)
+"ccI" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/incinerator)
+"ccJ" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/incinerator)
+"ccK" = (
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/power/terminal{
+ icon_state = "term";
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ color = "#330000";
+ dir = 6
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/incinerator)
+"ccL" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ color = "#330000";
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/atmos)
+"ccM" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ color = "#330000";
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/atmos)
+"ccN" = (
+/obj/machinery/atmospherics/pipe/simple/green/visible,
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ color = "#330000";
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/atmos)
+"ccO" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ color = "#330000";
+ dir = 9
+ },
+/turf/open/floor/plasteel/black,
+/area/atmos)
+"ccP" = (
+/obj/machinery/atmospherics/pipe/simple/yellow/visible,
+/turf/open/floor/plasteel/black,
+/area/atmos)
+"ccQ" = (
+/turf/open/floor/plasteel/black,
+/area/atmos)
+"ccR" = (
+/obj/machinery/atmospherics/pipe/simple/green/visible,
+/turf/open/floor/plasteel/black,
+/area/atmos)
+"ccS" = (
+/obj/machinery/light,
+/turf/open/floor/plasteel/black,
+/area/atmos)
+"ccT" = (
+/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
+ dir = 8;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/black,
+/area/atmos)
+"ccU" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/atmos)
+"ccV" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 9
+ },
+/obj/machinery/camera{
+ c_tag = "Atmospherics - Starboard Aft";
+ dir = 1;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/black,
+/area/atmos)
+"ccW" = (
+/obj/machinery/door/airlock/external{
+ req_access_txt = "24";
+ req_one_access_txt = "0"
+ },
+/turf/open/floor/plating,
+/area/atmos)
+"ccX" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 0;
+ pixel_y = -32
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/atmos)
+"ccY" = (
+/turf/open/floor/plating,
+/area/atmos)
+"ccZ" = (
+/obj/machinery/door/window/northleft{
+ dir = 8;
+ icon_state = "left";
+ name = "glass door";
+ req_access_txt = "24"
+ },
+/obj/machinery/door/window/northleft{
+ dir = 4;
+ icon_state = "left";
+ name = "glass door";
+ req_access_txt = "24"
+ },
+/turf/open/floor/plating,
+/area/atmos)
+"cda" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable,
+/turf/open/space,
+/area/solar/port)
+"cdb" = (
+/obj/structure/girder,
+/obj/structure/grille,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cdc" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cdd" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cde" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Storage Room";
+ req_access_txt = "12"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cdf" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cdg" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cdh" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cdi" = (
+/obj/structure/closet,
+/obj/item/stack/sheet/glass{
+ amount = 12
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cdj" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cdk" = (
+/obj/item/trash/semki,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cdl" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cdm" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cdn" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/canister/air,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cdo" = (
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/obj/structure/closet/firecloset,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cdp" = (
+/obj/machinery/light_switch{
+ pixel_x = -26;
+ pixel_y = 0
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/closet/l3closet,
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 10
+ },
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"cdq" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/structure/closet/l3closet,
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 2
+ },
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"cdr" = (
+/obj/item/weapon/storage/box/bodybags{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/box/beakers{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/weapon/storage/box/rxglasses{
+ pixel_x = 1;
+ pixel_y = 1
+ },
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/obj/structure/table/glass,
+/obj/item/clothing/glasses/hud/health,
+/obj/item/clothing/glasses/hud/health,
+/obj/item/clothing/glasses/hud/health,
+/turf/open/floor/plasteel/whiteblue/corner{
+ dir = 8
+ },
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"cds" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"cdt" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"cdu" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/whiteblue/corner{
+ dir = 4
+ },
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"cdv" = (
+/obj/item/weapon/storage/belt/medical{
+ pixel_x = 0;
+ pixel_y = 2
+ },
+/obj/item/weapon/storage/belt/medical{
+ pixel_x = 0;
+ pixel_y = 2
+ },
+/obj/item/weapon/storage/belt/medical{
+ pixel_x = 0;
+ pixel_y = 2
+ },
+/obj/item/clothing/neck/stethoscope,
+/obj/item/clothing/neck/stethoscope,
+/obj/item/weapon/gun/syringe,
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 5
+ },
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"cdw" = (
+/turf/closed/wall,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"cdx" = (
+/obj/machinery/computer/crew,
+/turf/open/floor/plasteel/vault,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"cdy" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/machinery/shower{
+ dir = 4;
+ icon_state = "shower";
+ name = "emergency shower"
+ },
+/obj/machinery/airalarm{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"cdz" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"cdA" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"cdB" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/mob/living/simple_animal/bot/medbot{
+ auto_patrol = 1;
+ desc = "A little medical robot, officially part of the NanoTrasen medical inspectorate. He looks somewhat underwhelmed.";
+ name = "Inspector Johnson"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"cdC" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"cdD" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"cdE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"cdF" = (
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white/side{
+ dir = 8
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"cdG" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/blue/corner{
+ dir = 8
+ },
+/area/hallway/primary/aft)
+"cdH" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cdI" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/purple/corner{
+ dir = 2
+ },
+/area/hallway/primary/aft)
+"cdJ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"cdK" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"cdL" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"cdM" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"cdN" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"cdO" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"cdP" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/security/checkpoint/science{
+ name = "Security Post - Research Division"
+ })
+"cdQ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/security/checkpoint/science{
+ name = "Security Post - Research Division"
+ })
+"cdR" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/security/checkpoint/science{
+ name = "Security Post - Research Division"
+ })
+"cdS" = (
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_x = 30;
+ pixel_y = 0
+ },
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/machinery/camera{
+ c_tag = "Security Post - Research Division";
+ dir = 8;
+ network = list("SS13","RD");
+ pixel_x = 0
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 4
+ },
+/area/security/checkpoint/science{
+ name = "Security Post - Research Division"
+ })
+"cdT" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cdU" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Hydroponics Maintenance";
+ req_access_txt = "35";
+ req_one_access_txt = "0"
+ },
+/turf/open/floor/plating,
+/area/hydroponics)
+"cdV" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/maintenance/starboard)
+"cdW" = (
+/obj/item/device/flashlight,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"cdX" = (
+/obj/structure/closet/crate,
+/obj/item/weapon/coin/silver,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"cdY" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"cdZ" = (
+/obj/structure/sign/nosmoking_2{
+ pixel_x = -28
+ },
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4;
+ name = "input gas connector port"
+ },
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/incinerator)
+"cea" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 4;
+ name = "input port pump"
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/incinerator)
+"ceb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 4;
+ initialize_directions = 11
+ },
+/obj/machinery/meter,
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/incinerator)
+"cec" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/incinerator)
+"ced" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/incinerator)
+"cee" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/incinerator)
+"cef" = (
+/obj/structure/sign/fire{
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 2;
+ name = "Fuel Pipe to Incinerator";
+ on = 0
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/incinerator)
+"ceg" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/green/visible,
+/turf/open/floor/plating,
+/area/atmos)
+"ceh" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/yellow/visible,
+/turf/open/floor/plating,
+/area/atmos)
+"cei" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/turf/open/floor/plating,
+/area/atmos)
+"cej" = (
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/solar/port)
+"cek" = (
+/obj/machinery/door/airlock/external{
+ req_access_txt = "13"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cel" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cem" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cen" = (
+/obj/structure/girder,
+/obj/structure/grille,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"ceo" = (
+/obj/structure/girder,
+/obj/structure/grille,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9;
+ pixel_y = 0
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cep" = (
+/obj/structure/rack,
+/obj/item/weapon/screwdriver{
+ pixel_y = 16
+ },
+/obj/item/weapon/hand_labeler,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"ceq" = (
+/obj/structure/rack,
+/obj/item/stack/cable_coil{
+ pixel_x = -1;
+ pixel_y = -3
+ },
+/obj/item/weapon/wrench,
+/obj/item/device/flashlight/seclite,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cer" = (
+/obj/structure/rack,
+/obj/item/stack/rods{
+ amount = 23
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"ces" = (
+/obj/structure/table,
+/obj/item/weapon/folder/white{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/item/weapon/folder/white{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/item/weapon/pen,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cet" = (
+/obj/item/clothing/mask/fakemoustache,
+/obj/item/clothing/mask/cigarette/pipe,
+/obj/machinery/camera{
+ c_tag = "Theatre - Backstage";
+ dir = 1;
+ network = list("SS13")
+ },
+/obj/structure/table/wood,
+/obj/structure/sign/poster{
+ pixel_y = -32
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"ceu" = (
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cev" = (
+/turf/closed/wall,
+/area/medical/sleeper{
+ name = "Sleepers"
+ })
+"cew" = (
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/weapon/storage/firstaid/fire{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/firstaid/fire,
+/obj/item/weapon/storage/firstaid/fire{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 8
+ },
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"cex" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"cey" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"cez" = (
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/weapon/storage/firstaid/toxin{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/firstaid/toxin,
+/obj/item/weapon/storage/firstaid/toxin{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 4
+ },
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"ceA" = (
+/obj/structure/sink{
+ dir = 8;
+ icon_state = "sink";
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 2;
+ on = 1
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -26;
+ pixel_y = 28
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/newscaster{
+ pixel_x = -30;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 9
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"ceB" = (
+/obj/structure/chair/office/light{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Medical Doctor"
+ },
+/obj/machinery/button/door{
+ desc = "A remote control switch for the medbay foyer.";
+ id = "MedbayFoyer";
+ name = "Medbay Doors Control";
+ normaldoorcontrol = 1;
+ pixel_x = 24;
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 5
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"ceC" = (
+/obj/machinery/telecomms/server/presets/command,
+/turf/open/floor/bluegrid{
+ name = "Mainframe Base";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/server)
+"ceD" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 2
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"ceE" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 2
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"ceF" = (
+/obj/structure/bed/roller,
+/obj/item/device/radio/intercom{
+ broadcasting = 0;
+ freerange = 0;
+ frequency = 1485;
+ listening = 1;
+ name = "Station Intercom (Medbay)";
+ pixel_x = 0;
+ pixel_y = -30
+ },
+/obj/machinery/camera{
+ c_tag = "Medbay Foyer";
+ dir = 1;
+ network = list("SS13","Medbay")
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 2
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"ceG" = (
+/obj/machinery/light,
+/obj/structure/bed/roller,
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 2
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"ceH" = (
+/obj/structure/bed/roller,
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 2
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"ceI" = (
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-11"
+ },
+/turf/open/floor/plasteel/whiteyellow/side{
+ dir = 2
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"ceJ" = (
+/turf/open/floor/plasteel/whiteyellow/side{
+ dir = 2
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"ceK" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_x = 26;
+ pixel_y = -26
+ },
+/turf/open/floor/plasteel/whiteyellow/side{
+ dir = 2
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"ceL" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"ceM" = (
+/obj/machinery/autolathe{
+ icon_state = "autolathe";
+ name = "public autolathe"
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 2
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"ceN" = (
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/obj/item/weapon/stock_parts/cell/high{
+ charge = 100;
+ maxcharge = 15000
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 2
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"ceO" = (
+/obj/structure/table,
+/obj/item/device/paicard,
+/obj/machinery/newscaster{
+ pixel_x = -1;
+ pixel_y = -29
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 2
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"ceP" = (
+/obj/structure/table,
+/obj/item/weapon/stock_parts/cell/potato,
+/obj/machinery/light,
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 2
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"ceQ" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 2
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"ceR" = (
+/obj/structure/disposalpipe/junction{
+ icon_state = "pipe-j2";
+ dir = 4
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 2
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"ceS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = -30
+ },
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-08";
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 2
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"ceT" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 2
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"ceU" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/obj/structure/sink{
+ dir = 4;
+ icon_state = "sink";
+ pixel_x = 11;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 2
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"ceV" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/security/checkpoint/science{
+ name = "Security Post - Research Division"
+ })
+"ceW" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel,
+/area/security/checkpoint/science{
+ name = "Security Post - Research Division"
+ })
+"ceX" = (
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 27
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 4
+ },
+/area/security/checkpoint/science{
+ name = "Security Post - Research Division"
+ })
+"ceY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"ceZ" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cfa" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg2"
+ },
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cfb" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cfc" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cfd" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg1"
+ },
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cfe" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/structure/sign/poster{
+ pixel_y = -32
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"cff" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cfg" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cfh" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cfi" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cfj" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"cfk" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"cfl" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Storage Room";
+ req_access_txt = "12"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"cfm" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"cfn" = (
+/obj/machinery/portable_atmospherics/canister,
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4;
+ name = "input gas connector port"
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/incinerator)
+"cfo" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/general/visible,
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/incinerator)
+"cfp" = (
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/incinerator)
+"cfq" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/incinerator)
+"cfr" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 4;
+ name = "input port pump"
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/incinerator)
+"cfs" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 4;
+ initialize_directions = 11
+ },
+/obj/machinery/meter,
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/incinerator)
+"cft" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/maintenance/incinerator)
+"cfu" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/green/visible,
+/turf/open/space,
+/area/space)
+"cfv" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/yellow/visible,
+/turf/open/space,
+/area/space)
+"cfw" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
+ dir = 8
+ },
+/turf/open/space,
+/area/space)
+"cfx" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+ dir = 9
+ },
+/turf/open/space,
+/area/space)
+"cfy" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/turf/open/space,
+/area/space)
+"cfz" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/turf/open/space,
+/area/solar/port)
+"cfA" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/external{
+ req_access_txt = "13"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cfB" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cfC" = (
+/obj/item/trash/pistachios,
+/obj/structure/closet,
+/obj/item/weapon/stock_parts/console_screen,
+/obj/item/weapon/extinguisher,
+/obj/item/weapon/storage/belt/utility,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cfD" = (
+/obj/item/weapon/storage/box,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cfE" = (
+/obj/structure/closet/crate,
+/obj/item/weapon/reagent_containers/dropper,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cfF" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cfG" = (
+/obj/structure/closet/wardrobe/pjs,
+/turf/open/floor/plasteel/vault,
+/area/medical/sleeper{
+ name = "Sleepers"
+ })
+"cfH" = (
+/obj/structure/closet/wardrobe/pjs,
+/obj/machinery/airalarm{
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel/vault,
+/area/medical/sleeper{
+ name = "Sleepers"
+ })
+"cfI" = (
+/obj/machinery/computer/med_data,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/sign/nosmoking_2{
+ pixel_x = 0;
+ pixel_y = 30
+ },
+/turf/open/floor/plasteel/vault,
+/area/medical/sleeper{
+ name = "Sleepers"
+ })
+"cfJ" = (
+/obj/structure/table,
+/obj/item/weapon/folder/white{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/item/weapon/folder/white{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/item/weapon/pen,
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "Sleeper Room APC";
+ pixel_y = 24
+ },
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/item/clothing/neck/stethoscope,
+/turf/open/floor/plasteel/vault,
+/area/medical/sleeper{
+ name = "Sleepers"
+ })
+"cfK" = (
+/obj/structure/table,
+/obj/item/weapon/paper_bin{
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/machinery/light_switch{
+ pixel_x = 11;
+ pixel_y = 23
+ },
+/turf/open/floor/plasteel/vault,
+/area/medical/sleeper{
+ name = "Sleepers"
+ })
+"cfL" = (
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/weapon/storage/firstaid/brute{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/firstaid/brute,
+/obj/item/weapon/storage/firstaid/brute{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "Medbay Storage APC";
+ pixel_y = -24
+ },
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/light_switch{
+ pixel_x = -26;
+ pixel_y = 0
+ },
+/obj/machinery/light/small,
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 10
+ },
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"cfM" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 2
+ },
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"cfN" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/mob/living/simple_animal/bot/cleanbot{
+ name = "Scrubs, MD";
+ on = 0
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 2
+ },
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"cfO" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 2
+ },
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"cfP" = (
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/weapon/storage/firstaid/o2{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/firstaid/o2,
+/obj/item/weapon/storage/firstaid/o2{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 6
+ },
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"cfQ" = (
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 10
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"cfR" = (
+/obj/structure/chair/office/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 6
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"cfS" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/item/weapon/reagent_containers/food/drinks/britcup,
+/turf/open/floor/plasteel/whitegreen,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"cfT" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plasteel/whiteblue,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"cfU" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/sink{
+ dir = 4;
+ icon_state = "sink";
+ pixel_x = 11;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/whiteblue,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"cfV" = (
+/obj/structure/sign/directions/medical{
+ pixel_y = -7
+ },
+/turf/closed/wall,
+/area/medical/chemistry)
+"cfW" = (
+/obj/structure/sign/chemistry,
+/turf/closed/wall,
+/area/medical/chemistry)
+"cfX" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "chemistry_shutters";
+ name = "chemistry shutters"
+ },
+/turf/open/floor/plating,
+/area/medical/chemistry)
+"cfY" = (
+/obj/machinery/smartfridge/chemistry,
+/turf/closed/wall,
+/area/medical/chemistry)
+"cfZ" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/folder/white{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/machinery/door/window/northleft{
+ dir = 2;
+ name = "Chemistry Desk";
+ req_access_txt = "5; 33"
+ },
+/obj/machinery/door/firedoor,
+/obj/item/weapon/folder/white{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "chemistry_shutters";
+ name = "chemistry shutters"
+ },
+/turf/open/floor/plasteel/whiteyellow{
+ dir = 4
+ },
+/area/medical/chemistry)
+"cga" = (
+/turf/closed/wall,
+/area/medical/chemistry)
+"cgb" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/hallway/primary/aft)
+"cgc" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/hallway/primary/aft)
+"cgd" = (
+/turf/closed/wall/r_wall,
+/area/toxins/lab)
+"cge" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "research_shutters";
+ name = "research shutters"
+ },
+/turf/open/floor/plating,
+/area/toxins/lab)
+"cgf" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/pen,
+/obj/item/weapon/folder/white{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/item/weapon/folder/white{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/window/eastright{
+ dir = 2;
+ name = "Research and Development Desk";
+ req_access_txt = "7"
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "research_shutters";
+ name = "research shutters"
+ },
+/turf/open/floor/plating,
+/area/toxins/lab)
+"cgg" = (
+/obj/structure/sign/directions/science{
+ pixel_y = -8
+ },
+/turf/closed/wall/r_wall,
+/area/toxins/lab)
+"cgh" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/poddoor/preopen{
+ id = "Biohazard";
+ name = "biohazard containment door"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/medical/research{
+ name = "Research Division"
+ })
+"cgi" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/poddoor/preopen{
+ id = "Biohazard";
+ name = "biohazard containment door"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/medical/research{
+ name = "Research Division"
+ })
+"cgj" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Security Post - Research Division APC";
+ pixel_x = -24
+ },
+/obj/structure/cable/yellow,
+/turf/open/floor/plasteel/red/side{
+ dir = 10
+ },
+/area/security/checkpoint/science{
+ name = "Security Post - Research Division"
+ })
+"cgk" = (
+/obj/structure/closet/secure_closet/security/science,
+/turf/open/floor/plasteel/red/side,
+/area/security/checkpoint/science{
+ name = "Security Post - Research Division"
+ })
+"cgl" = (
+/obj/structure/filingcabinet,
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 6
+ },
+/area/security/checkpoint/science{
+ name = "Security Post - Research Division"
+ })
+"cgm" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cgn" = (
+/obj/item/weapon/cigbutt,
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cgo" = (
+/turf/closed/wall/r_wall,
+/area/medical/research{
+ name = "Research Division"
+ })
+"cgp" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Research Maintenance";
+ req_access_txt = "47";
+ req_one_access_txt = "0"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plating,
+/area/medical/research{
+ name = "Research Division"
+ })
+"cgq" = (
+/turf/closed/wall/r_wall,
+/area/toxins/explab)
+"cgr" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cgs" = (
+/turf/open/floor/plating{
+ icon_state = "platingdmg2"
+ },
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cgt" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Incinerator APC";
+ pixel_x = -24;
+ pixel_y = 0
+ },
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/incinerator)
+"cgu" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/incinerator)
+"cgv" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 6
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/incinerator)
+"cgw" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 10
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/incinerator)
+"cgx" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/incinerator)
+"cgy" = (
+/obj/machinery/telecomms/server/presets/service,
+/turf/open/floor/bluegrid{
+ name = "Mainframe Base";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/server)
+"cgz" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/incinerator)
+"cgA" = (
+/obj/machinery/atmospherics/pipe/simple,
+/obj/machinery/meter,
+/obj/structure/grille,
+/turf/closed/wall/r_wall,
+/area/atmos)
+"cgB" = (
+/obj/machinery/atmospherics/pipe/simple,
+/obj/machinery/meter{
+ name = "Mixed Air Tank In"
+ },
+/obj/structure/grille,
+/turf/closed/wall/r_wall,
+/area/atmos)
+"cgC" = (
+/obj/machinery/atmospherics/pipe/simple,
+/obj/machinery/meter{
+ name = "Mixed Air Tank Out"
+ },
+/obj/structure/grille,
+/turf/closed/wall/r_wall,
+/area/atmos)
+"cgD" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/atmos)
+"cgE" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/atmos)
+"cgF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 28
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/crew_quarters/kitchen)
+"cgG" = (
+/obj/structure/closet/emcloset{
+ anchored = 1;
+ desc = "It's a storage unit for emergency breath masks and O2 tanks, and is securely bolted in place.";
+ name = "anchored emergency closet"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cgH" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"cgI" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cgJ" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cgK" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/sign/poster{
+ pixel_y = 32
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"cgL" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 2
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cgM" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cgN" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cgO" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Medbay Maintenance";
+ req_access_txt = "5"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/medical/sleeper{
+ name = "Sleepers"
+ })
+"cgP" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 9
+ },
+/area/medical/sleeper{
+ name = "Sleepers"
+ })
+"cgQ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 1
+ },
+/area/medical/sleeper{
+ name = "Sleepers"
+ })
+"cgR" = (
+/obj/structure/chair/office/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/landmark/start{
+ name = "Medical Doctor"
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 1
+ },
+/area/medical/sleeper{
+ name = "Sleepers"
+ })
+"cgS" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 1
+ },
+/area/medical/sleeper{
+ name = "Sleepers"
+ })
+"cgT" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/machinery/shower{
+ dir = 8;
+ icon_state = "shower";
+ name = "emergency shower"
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 5
+ },
+/area/medical/sleeper{
+ name = "Sleepers"
+ })
+"cgU" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_medical{
+ id_tag = null;
+ name = "Medbay Storage";
+ req_access_txt = "5"
+ },
+/turf/open/floor/plasteel/whiteblue,
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"cgV" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"cgW" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/airlock/glass_medical{
+ id_tag = null;
+ name = "Medbay Storage";
+ req_access_txt = "5"
+ },
+/turf/open/floor/plasteel/whiteblue,
+/area/medical/medbay2{
+ name = "Medbay Storage"
+ })
+"cgX" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/airlock/glass_medical{
+ id_tag = null;
+ name = "Medbay Desk";
+ req_access_txt = "5"
+ },
+/turf/open/floor/plasteel/whiteblue,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"cgY" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"cgZ" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_medical{
+ id_tag = "MedbayFoyer";
+ name = "Medbay";
+ req_access_txt = "5"
+ },
+/turf/open/floor/plasteel/whiteblue,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"cha" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_medical{
+ id_tag = "MedbayFoyer";
+ name = "Medbay";
+ req_access_txt = "5"
+ },
+/turf/open/floor/plasteel/whiteblue,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"chb" = (
+/obj/machinery/chem_heater,
+/obj/machinery/light_switch{
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/whiteyellow/side{
+ dir = 9
+ },
+/area/medical/chemistry)
+"chc" = (
+/obj/machinery/disposal/bin{
+ pixel_x = 0
+ },
+/obj/structure/disposalpipe/trunk,
+/turf/open/floor/plasteel/whiteyellow/side{
+ dir = 5
+ },
+/area/medical/chemistry)
+"chd" = (
+/obj/item/weapon/reagent_containers/glass/beaker/large,
+/obj/item/weapon/reagent_containers/glass/beaker/large,
+/obj/item/weapon/reagent_containers/glass/beaker{
+ pixel_x = 8;
+ pixel_y = 2
+ },
+/obj/item/weapon/reagent_containers/glass/beaker{
+ pixel_x = 8;
+ pixel_y = 2
+ },
+/obj/item/weapon/reagent_containers/dropper,
+/obj/item/weapon/reagent_containers/dropper,
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/whiteyellow{
+ dir = 4
+ },
+/area/medical/chemistry)
+"che" = (
+/obj/structure/chair/office/light{
+ dir = 1
+ },
+/obj/effect/landmark/start{
+ name = "Chemist"
+ },
+/turf/open/floor/plasteel/whiteyellow{
+ dir = 4
+ },
+/area/medical/chemistry)
+"chf" = (
+/obj/machinery/chem_dispenser{
+ layer = 2.7
+ },
+/obj/machinery/button/door{
+ id = "chemistry_shutters";
+ name = "chemistry shutters control";
+ pixel_x = 24;
+ pixel_y = 24;
+ req_access_txt = "5; 33"
+ },
+/turf/open/floor/plasteel/whiteyellow{
+ dir = 4
+ },
+/area/medical/chemistry)
+"chg" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/hallway/primary/aft)
+"chh" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/hallway/primary/aft)
+"chi" = (
+/obj/structure/table,
+/obj/item/weapon/crowbar,
+/obj/item/weapon/wrench,
+/obj/item/clothing/mask/gas,
+/obj/item/device/multitool{
+ pixel_x = 3
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/toxins/lab)
+"chj" = (
+/obj/structure/sink/kitchen{
+ desc = "A sink used for washing one's hands and face. It looks rusty and home-made";
+ name = "old sink";
+ pixel_y = 28
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 9
+ },
+/area/toxins/lab)
+"chk" = (
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 1
+ },
+/area/toxins/lab)
+"chl" = (
+/obj/structure/noticeboard{
+ desc = "A board for pinning important notices upon.";
+ name = "notice board";
+ pixel_x = 0;
+ pixel_y = 31
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 1
+ },
+/area/toxins/lab)
+"chm" = (
+/obj/structure/chair/office/light{
+ dir = 1;
+ pixel_y = 3
+ },
+/obj/machinery/button/door{
+ id = "research_shutters";
+ name = "research shutters control";
+ pixel_x = 28;
+ pixel_y = 0;
+ req_access_txt = "7"
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 5
+ },
+/area/toxins/lab)
+"chn" = (
+/obj/machinery/telecomms/broadcaster/preset_right,
+/turf/open/floor/bluegrid{
+ name = "Mainframe Base";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/server)
+"cho" = (
+/obj/machinery/telecomms/server/presets/supply,
+/turf/open/floor/bluegrid{
+ name = "Mainframe Base";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/server)
+"chp" = (
+/turf/closed/wall/r_wall,
+/area/security/checkpoint/science{
+ name = "Security Post - Research Division"
+ })
+"chq" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_security{
+ name = "Security Post - Research Division";
+ req_access_txt = "63"
+ },
+/turf/open/floor/plasteel/red,
+/area/security/checkpoint/science{
+ name = "Security Post - Research Division"
+ })
+"chr" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "0";
+ req_one_access_txt = "12;47"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"chs" = (
+/obj/item/weapon/paper,
+/obj/structure/sign/map/left{
+ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";
+ icon_state = "map-left-MS";
+ pixel_y = 32
+ },
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_x = -32;
+ pixel_y = 0
+ },
+/obj/item/weapon/storage/box/donkpockets,
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"cht" = (
+/obj/structure/sign/map/right{
+ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";
+ icon_state = "map-right-MS";
+ pixel_y = 32
+ },
+/obj/structure/table/glass,
+/obj/item/device/radio/off,
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"chu" = (
+/obj/machinery/ai_status_display{
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/obj/structure/chair/stool,
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"chv" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"chw" = (
+/obj/structure/sign/securearea,
+/turf/closed/wall/r_wall,
+/area/assembly/showroom{
+ name = "\improper Corporate Showroom"
+ })
+"chx" = (
+/turf/open/floor/engine,
+/area/toxins/explab)
+"chy" = (
+/obj/structure/sign/nosmoking_2{
+ pixel_y = 32
+ },
+/obj/machinery/camera{
+ c_tag = "Experimentation Lab - Test Chamber";
+ dir = 2;
+ network = list("SS13","RD")
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/toxins/explab)
+"chz" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/turf/open/floor/plasteel/black,
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"chA" = (
+/obj/item/device/radio/intercom{
+ pixel_y = 25
+ },
+/turf/open/floor/engine,
+/area/toxins/explab)
+"chB" = (
+/obj/machinery/space_heater,
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"chC" = (
+/obj/structure/closet/crate,
+/obj/item/weapon/storage/belt/utility,
+/obj/item/stack/cable_coil/random,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"chD" = (
+/obj/structure/closet/crate{
+ icon_state = "crateopen";
+ opened = 1
+ },
+/obj/item/weapon/cane,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"chE" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"chF" = (
+/obj/structure/closet,
+/obj/item/device/flashlight,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"chG" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/item/weapon/storage/toolbox/emergency,
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -29
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/incinerator)
+"chH" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/item/weapon/extinguisher,
+/obj/machinery/light/small,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 0;
+ pixel_y = -31
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/incinerator)
+"chI" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/components/binary/valve{
+ dir = 2;
+ name = "output gas to space"
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/incinerator)
+"chJ" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 0;
+ pixel_y = -31
+ },
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/canister,
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/incinerator)
+"chK" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 4
+ },
+/obj/machinery/meter,
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/incinerator)
+"chL" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/incinerator)
+"chM" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/camera{
+ c_tag = "MiniSat Exterior - Aft";
+ dir = 2;
+ network = list("MiniSat")
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/black,
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"chN" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/on{
+ dir = 1;
+ frequency = 1441;
+ id = "n2_in"
+ },
+/turf/open/floor/engine/n2,
+/area/atmos)
+"chO" = (
+/obj/machinery/air_sensor{
+ frequency = 1441;
+ id_tag = "n2_sensor"
+ },
+/turf/open/floor/engine/n2,
+/area/atmos)
+"chP" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ external_pressure_bound = 0;
+ frequency = 1441;
+ id_tag = "n2_out";
+ initialize_directions = 1;
+ internal_pressure_bound = 4000;
+ on = 1;
+ pressure_checks = 2;
+ pump_direction = 0
+ },
+/turf/open/floor/engine/n2,
+/area/atmos)
+"chQ" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/on{
+ dir = 1;
+ frequency = 1441;
+ id = "o2_in"
+ },
+/turf/open/floor/engine/o2,
+/area/atmos)
+"chR" = (
+/obj/machinery/air_sensor{
+ frequency = 1441;
+ id_tag = "o2_sensor"
+ },
+/turf/open/floor/engine/o2,
+/area/atmos)
+"chS" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ external_pressure_bound = 0;
+ frequency = 1441;
+ id_tag = "o2_out";
+ initialize_directions = 1;
+ internal_pressure_bound = 4000;
+ on = 1;
+ pressure_checks = 2;
+ pump_direction = 0
+ },
+/turf/open/floor/engine/o2,
+/area/atmos)
+"chT" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/on{
+ dir = 1;
+ frequency = 1441;
+ id = "air_in"
+ },
+/turf/open/floor/engine/air,
+/area/atmos)
+"chU" = (
+/obj/machinery/air_sensor{
+ frequency = 1441;
+ id_tag = "air_sensor"
+ },
+/turf/open/floor/engine/air,
+/area/atmos)
+"chV" = (
+/obj/machinery/atmospherics/components/unary/vent_pump/high_volume{
+ dir = 1;
+ external_pressure_bound = 0;
+ frequency = 1441;
+ icon_state = "in";
+ id_tag = "air_out";
+ internal_pressure_bound = 2000;
+ on = 1;
+ pressure_checks = 2;
+ pump_direction = 0
+ },
+/turf/open/floor/engine/air,
+/area/atmos)
+"chW" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/turf/open/floor/plating,
+/area/atmos)
+"chX" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/turf/open/floor/plating,
+/area/atmos)
+"chY" = (
+/obj/structure/cable,
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/solar/port)
+"chZ" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cia" = (
+/turf/closed/wall,
+/area/medical/surgery)
+"cib" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/closed/wall,
+/area/medical/surgery)
+"cic" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/medical/surgery)
+"cid" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Medbay Maintenance";
+ req_access_txt = "5"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1;
+ initialize_directions = 11
+ },
+/turf/open/floor/plating,
+/area/medical/surgery)
+"cie" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 8
+ },
+/area/medical/sleeper{
+ name = "Sleepers"
+ })
+"cif" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/sleeper{
+ name = "Sleepers"
+ })
+"cig" = (
+/turf/open/floor/plasteel/white,
+/area/medical/sleeper{
+ name = "Sleepers"
+ })
+"cih" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 2;
+ on = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/sleeper{
+ name = "Sleepers"
+ })
+"cii" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 4
+ },
+/area/medical/sleeper{
+ name = "Sleepers"
+ })
+"cij" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/whiteblue,
+/area/medical/sleeper{
+ name = "Sleepers"
+ })
+"cik" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 9
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"cil" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 1
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"cim" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 2
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 1
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"cin" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 1
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"cio" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/sign/nosmoking_2{
+ pixel_x = 0;
+ pixel_y = 28
+ },
+/turf/open/floor/plasteel/whiteblue/corner{
+ dir = 1
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"cip" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "Medbay Central APC";
+ pixel_y = 24
+ },
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Medbay Hallway Fore";
+ dir = 2;
+ network = list("SS13","Medbay")
+ },
+/turf/open/floor/plasteel/whiteblue/corner{
+ dir = 4
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"ciq" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 2
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 1
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"cir" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/whiteblue/corner{
+ dir = 1
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"cis" = (
+/obj/machinery/button/door{
+ desc = "A remote control switch for the medbay foyer.";
+ id = "MedbayFoyer";
+ name = "Medbay Exit Button";
+ normaldoorcontrol = 1;
+ pixel_x = 0;
+ pixel_y = 26
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteblue/corner{
+ dir = 4
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"cit" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 1
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"ciu" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 1
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"civ" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_medical{
+ id_tag = null;
+ name = "Chemistry Lab";
+ req_access_txt = "5; 33"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"ciw" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteyellow/side{
+ dir = 8
+ },
+/area/medical/chemistry)
+"cix" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/whiteyellow/corner{
+ dir = 4
+ },
+/area/medical/chemistry)
+"ciy" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/whiteyellow/side{
+ dir = 1
+ },
+/area/medical/chemistry)
+"ciz" = (
+/turf/open/floor/plasteel/whiteyellow/side{
+ dir = 5
+ },
+/area/medical/chemistry)
+"ciA" = (
+/obj/machinery/chem_master{
+ layer = 2.7;
+ pixel_x = -2
+ },
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 4
+ },
+/obj/structure/noticeboard{
+ desc = "A board for pinning important notices upon. Probably helpful for keeping track of requests.";
+ name = "requests board";
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/whiteyellow{
+ dir = 4
+ },
+/area/medical/chemistry)
+"ciB" = (
+/obj/machinery/r_n_d/destructive_analyzer,
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/toxins/lab)
+"ciC" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/toxins/lab)
+"ciD" = (
+/obj/machinery/r_n_d/protolathe,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/toxins/lab)
+"ciE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/lab)
+"ciF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 2;
+ on = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/lab)
+"ciG" = (
+/obj/machinery/disposal/bin{
+ pixel_x = 5
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 24;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 4
+ },
+/area/toxins/lab)
+"ciH" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/shower{
+ icon_state = "shower";
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"ciI" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1;
+ scrub_Toxins = 0
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"ciJ" = (
+/obj/machinery/power/apc{
+ cell_type = 10000;
+ dir = 1;
+ name = "Research Division APC";
+ pixel_x = 0;
+ pixel_y = 25
+ },
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/obj/machinery/camera{
+ c_tag = "Research Division - Airlock";
+ dir = 2;
+ network = list("SS13","RD")
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"ciK" = (
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/medical/research{
+ name = "Research Division"
+ })
+"ciL" = (
+/obj/effect/landmark{
+ name = "revenantspawn"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"ciM" = (
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/item/weapon/cigbutt,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"ciN" = (
+/obj/structure/chair/stool,
+/obj/machinery/newscaster{
+ pixel_x = -30;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"ciO" = (
+/obj/structure/chair/stool,
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"ciP" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 2;
+ on = 1
+ },
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"ciQ" = (
+/obj/item/weapon/cigbutt,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"ciR" = (
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/obj/machinery/vending/cola/random,
+/turf/open/floor/plasteel/white/side{
+ dir = 4
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"ciS" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/mob/living/simple_animal/pet/dog/pug{
+ desc = "It's Pugley IV, the research department's lovable pug clone. Hopefully nothing happens to this one - fourth time lucky!";
+ name = "Pugley IV";
+ real_name = "Pugley IV"
+ },
+/turf/open/floor/engine,
+/area/toxins/explab)
+"ciT" = (
+/obj/item/device/radio/beacon,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/engine,
+/area/toxins/explab)
+"ciU" = (
+/obj/machinery/r_n_d/experimentor,
+/turf/open/floor/engine,
+/area/toxins/explab)
+"ciV" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/engine,
+/area/toxins/explab)
+"ciW" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/engine,
+/area/toxins/explab)
+"ciX" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg1"
+ },
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"ciY" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/maintenance/incinerator)
+"ciZ" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 2
+ },
+/turf/closed/wall/r_wall,
+/area/maintenance/incinerator)
+"cja" = (
+/obj/machinery/door/airlock/glass{
+ autoclose = 0;
+ frequency = 1449;
+ heat_proof = 1;
+ icon_state = "door_locked";
+ id_tag = "incinerator_airlock_interior";
+ locked = 1;
+ name = "Incinerator Interior Airlock";
+ req_access_txt = "12"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/engine,
+/area/maintenance/incinerator)
+"cjb" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/turf/closed/wall/r_wall,
+/area/maintenance/incinerator)
+"cjc" = (
+/turf/open/floor/engine/n2,
+/area/atmos)
+"cjd" = (
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/turf/open/floor/engine/n2,
+/area/atmos)
+"cje" = (
+/obj/machinery/camera{
+ c_tag = "Atmospherics Tank - N2";
+ dir = 8;
+ network = list("SS13");
+ pixel_x = 0;
+ pixel_y = 0
+ },
+/turf/open/floor/engine/n2,
+/area/atmos)
+"cjf" = (
+/turf/open/floor/engine/o2,
+/area/atmos)
+"cjg" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/open/floor/engine/o2,
+/area/atmos)
+"cjh" = (
+/obj/machinery/camera{
+ c_tag = "Atmospherics Tank - O2";
+ dir = 8;
+ network = list("SS13");
+ pixel_x = 0;
+ pixel_y = 0
+ },
+/turf/open/floor/engine/o2,
+/area/atmos)
+"cji" = (
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/turf/open/floor/engine/air,
+/area/atmos)
+"cjj" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/turf/open/floor/engine/air,
+/area/atmos)
+"cjk" = (
+/obj/machinery/camera{
+ c_tag = "Atmospherics Tank - Air";
+ dir = 8;
+ network = list("SS13");
+ pixel_x = 0;
+ pixel_y = 0
+ },
+/turf/open/floor/engine/air,
+/area/atmos)
+"cjl" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 2
+ },
+/turf/closed/wall/r_wall,
+/area/atmos)
+"cjm" = (
+/obj/machinery/door/airlock/glass_atmos{
+ heat_proof = 1;
+ name = "Auxiliary Chamber";
+ req_access_txt = "24"
+ },
+/turf/open/floor/plating,
+/area/atmos)
+"cjn" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1
+ },
+/turf/closed/wall/r_wall,
+/area/atmos)
+"cjo" = (
+/obj/structure/girder/reinforced,
+/turf/open/floor/plating/airless,
+/area/atmos)
+"cjp" = (
+/obj/machinery/vending/boozeomat,
+/turf/open/floor/wood,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cjq" = (
+/obj/structure/sink/kitchen{
+ desc = "A sink used for washing one's hands and face. It looks rusty and home-made";
+ name = "old sink";
+ pixel_y = 28
+ },
+/turf/open/floor/wood{
+ icon_state = "wood-broken3"
+ },
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cjr" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"cjs" = (
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass{
+ pixel_x = 4;
+ pixel_y = 5
+ },
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass{
+ pixel_x = 6;
+ pixel_y = -1
+ },
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass{
+ pixel_x = -4;
+ pixel_y = 6
+ },
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass{
+ pixel_x = -5;
+ pixel_y = 2
+ },
+/obj/structure/table/wood,
+/obj/structure/light_construct/small{
+ dir = 1
+ },
+/obj/machinery/newscaster{
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,
+/turf/open/floor/wood,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cjt" = (
+/obj/structure/chair/stool,
+/turf/open/floor/wood,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cju" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/structure/sign/poster{
+ pixel_y = 32
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"cjv" = (
+/obj/machinery/computer/arcade,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cjw" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1
+ },
+/obj/effect/landmark{
+ name = "revenantspawn"
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/surgery)
+"cjx" = (
+/obj/structure/chair,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/surgery)
+"cjy" = (
+/obj/item/weapon/cigbutt,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/surgery)
+"cjz" = (
+/obj/structure/chair,
+/obj/machinery/airalarm{
+ frequency = 1439;
+ pixel_y = 23
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/surgery)
+"cjA" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/surgery)
+"cjB" = (
+/obj/item/weapon/cigbutt,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/black,
+/area/medical/surgery)
+"cjC" = (
+/obj/structure/chair,
+/turf/open/floor/plasteel/black,
+/area/medical/surgery)
+"cjD" = (
+/obj/structure/chair,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/surgery)
+"cjE" = (
+/obj/structure/bed/roller,
+/obj/item/device/radio/intercom{
+ broadcasting = 1;
+ freerange = 0;
+ frequency = 1485;
+ listening = 0;
+ name = "Station Intercom (Medbay)";
+ pixel_x = -30;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/obj/machinery/camera{
+ c_tag = "Medbay Sleepers";
+ dir = 4;
+ network = list("SS13","Medbay")
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 10
+ },
+/area/medical/sleeper{
+ name = "Sleepers"
+ })
+"cjF" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/whiteblue/corner{
+ dir = 8
+ },
+/area/medical/sleeper{
+ name = "Sleepers"
+ })
+"cjG" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/obj/machinery/holopad,
+/turf/open/floor/plasteel/white,
+/area/medical/sleeper{
+ name = "Sleepers"
+ })
+"cjH" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 2
+ },
+/turf/open/floor/plasteel/whiteblue/corner{
+ dir = 2
+ },
+/area/medical/sleeper{
+ name = "Sleepers"
+ })
+"cjI" = (
+/obj/structure/bed/roller,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 6
+ },
+/area/medical/sleeper{
+ name = "Sleepers"
+ })
+"cjJ" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/whiteblue,
+/area/medical/sleeper{
+ name = "Sleepers"
+ })
+"cjK" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 8
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"cjL" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"cjM" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1;
+ initialize_directions = 11
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"cjN" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 2;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"cjO" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"cjP" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"cjQ" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"cjR" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/obj/machinery/shower{
+ dir = 8;
+ icon_state = "shower";
+ name = "emergency shower"
+ },
+/turf/open/floor/plasteel/whiteyellow/corner{
+ dir = 2
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"cjS" = (
+/obj/item/stack/sheet/mineral/plasma{
+ layer = 2.9
+ },
+/obj/item/stack/sheet/mineral/plasma{
+ layer = 2.9
+ },
+/obj/structure/table/glass,
+/obj/item/weapon/reagent_containers/glass/bottle/epinephrine,
+/obj/item/weapon/reagent_containers/glass/bottle/charcoal{
+ pixel_x = 7;
+ pixel_y = 4
+ },
+/obj/item/weapon/storage/pill_bottle/epinephrine{
+ pixel_x = 3
+ },
+/turf/open/floor/plasteel/whiteyellow/side{
+ dir = 8
+ },
+/area/medical/chemistry)
+"cjT" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"cjU" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_Toxins = 0
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"cjV" = (
+/turf/open/floor/plasteel/whiteyellow/side{
+ dir = 4
+ },
+/area/medical/chemistry)
+"cjW" = (
+/obj/item/device/assembly/timer{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/device/assembly/timer{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/device/assembly/igniter{
+ pixel_x = 3;
+ pixel_y = -7
+ },
+/obj/item/device/assembly/igniter{
+ pixel_x = 3;
+ pixel_y = -7
+ },
+/obj/item/device/assembly/igniter{
+ pixel_x = 3;
+ pixel_y = -7
+ },
+/obj/item/device/assembly/igniter{
+ pixel_x = 3;
+ pixel_y = -7
+ },
+/obj/item/device/assembly/timer{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/device/assembly/timer{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/whiteyellow{
+ dir = 4
+ },
+/area/medical/chemistry)
+"cjX" = (
+/obj/machinery/computer/rdconsole/core,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/toxins/lab)
+"cjY" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/toxins/lab)
+"cjZ" = (
+/obj/machinery/r_n_d/circuit_imprinter{
+ pixel_y = 4
+ },
+/obj/item/weapon/reagent_containers/glass/beaker/sulphuric,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/toxins/lab)
+"cka" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/lab)
+"ckb" = (
+/obj/effect/landmark/start{
+ name = "Scientist"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/lab)
+"ckc" = (
+/obj/structure/table,
+/obj/item/weapon/stock_parts/manipulator,
+/obj/item/weapon/stock_parts/capacitor,
+/obj/item/weapon/stock_parts/capacitor,
+/obj/item/weapon/stock_parts/manipulator,
+/obj/item/weapon/stock_parts/micro_laser,
+/obj/item/weapon/stock_parts/micro_laser,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/item/clothing/glasses/science,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/toxins/lab)
+"ckd" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/toxins/lab)
+"cke" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/obj/structure/sink{
+ dir = 8;
+ icon_state = "sink";
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"ckf" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"ckg" = (
+/obj/structure/sink{
+ dir = 4;
+ icon_state = "sink";
+ pixel_x = 11;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"ckh" = (
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/obj/structure/closet/firecloset,
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/medical/research{
+ name = "Research Division"
+ })
+"cki" = (
+/obj/item/weapon/storage/toolbox/emergency,
+/obj/item/clothing/mask/gas,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"ckj" = (
+/obj/machinery/light/small,
+/obj/item/weapon/stock_parts/cell/high{
+ charge = 100;
+ maxcharge = 15000
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"ckk" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/item/device/flashlight,
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"ckl" = (
+/obj/item/stack/packageWrap,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"ckm" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/structure/sink{
+ dir = 8;
+ icon_state = "sink";
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/obj/item/weapon/cigbutt,
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"ckn" = (
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"cko" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"ckp" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"ckq" = (
+/obj/machinery/vending/coffee,
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 29
+ },
+/turf/open/floor/plasteel/white/side{
+ dir = 4
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"ckr" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/engine,
+/area/toxins/explab)
+"cks" = (
+/obj/machinery/button/door{
+ id = "telelab";
+ name = "Test Chamber Blast Doors";
+ pixel_x = 0;
+ pixel_y = -25
+ },
+/turf/open/floor/engine,
+/area/toxins/explab)
+"ckt" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/engine,
+/area/toxins/explab)
+"cku" = (
+/obj/structure/closet,
+/obj/item/weapon/storage/box/donkpockets,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 3;
+ name = "3maintenance loot spawner"
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"ckv" = (
+/obj/structure/closet/crate,
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 2;
+ on = 1
+ },
+/obj/item/device/assembly/infra,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"ckw" = (
+/obj/structure/table,
+/obj/effect/decal/cleanable/cobweb,
+/obj/item/weapon/shard,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"ckx" = (
+/obj/structure/table,
+/obj/structure/sign/bluecross{
+ pixel_y = 32
+ },
+/obj/item/weapon/reagent_containers/glass/beaker/large,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"cky" = (
+/obj/structure/sink/kitchen{
+ desc = "A sink used for washing one's hands and face. It looks rusty and home-made";
+ name = "old sink";
+ pixel_y = 28
+ },
+/obj/effect/decal/cleanable/blood/old,
+/obj/effect/decal/cleanable/blood/gibs/old,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"ckz" = (
+/obj/structure/table,
+/obj/item/weapon/storage/toolbox/emergency,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"ckA" = (
+/obj/structure/table,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass{
+ pixel_x = 4;
+ pixel_y = 5
+ },
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass{
+ pixel_x = 6;
+ pixel_y = -1
+ },
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass{
+ pixel_x = -4;
+ pixel_y = 6
+ },
+/obj/item/weapon/reagent_containers/dropper,
+/obj/item/weapon/reagent_containers/dropper,
+/obj/item/weapon/reagent_containers/syringe,
+/obj/item/weapon/reagent_containers/syringe,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"ckB" = (
+/obj/item/weapon/reagent_containers/glass/bottle/toxin{
+ pixel_x = 4;
+ pixel_y = 2
+ },
+/obj/structure/table,
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/machinery/reagentgrinder{
+ pixel_y = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"ckC" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 2;
+ name = "Incinerator Output Pump";
+ on = 1;
+ use_power = 0
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/space,
+/area/space)
+"ckD" = (
+/obj/machinery/doorButtons/access_button{
+ idDoor = "incinerator_airlock_exterior";
+ layer = 3.1;
+ idSelf = "incinerator_access_control";
+ name = "Incinerator airlock control";
+ pixel_x = 8;
+ pixel_y = -24
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/sign/fire{
+ pixel_x = -32;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1;
+ on = 1
+ },
+/obj/machinery/doorButtons/access_button{
+ idDoor = "incinerator_airlock_interior";
+ idSelf = "incinerator_access_control";
+ name = "Incinerator airlock control";
+ pixel_x = 8;
+ pixel_y = 24
+ },
+/turf/open/floor/engine,
+/area/maintenance/incinerator)
+"ckE" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/turf/open/floor/engine,
+/area/maintenance/incinerator)
+"ckF" = (
+/obj/structure/sign/fire{
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 2;
+ on = 1
+ },
+/turf/open/floor/engine,
+/area/maintenance/incinerator)
+"ckG" = (
+/obj/machinery/light/small,
+/turf/open/floor/engine/n2,
+/area/atmos)
+"ckH" = (
+/obj/machinery/light/small,
+/turf/open/floor/engine/o2,
+/area/atmos)
+"ckI" = (
+/turf/open/floor/engine/air,
+/area/atmos)
+"ckJ" = (
+/obj/machinery/light/small,
+/turf/open/floor/engine/air,
+/area/atmos)
+"ckK" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/on{
+ dir = 1
+ },
+/turf/open/floor/engine{
+ name = "vacuum floor";
+ initial_gas_mix = "o2=0.01;n2=0.01"
+ },
+/area/atmos)
+"ckL" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/turf/open/floor/engine{
+ name = "vacuum floor";
+ initial_gas_mix = "o2=0.01;n2=0.01"
+ },
+/area/atmos)
+"ckM" = (
+/obj/structure/girder,
+/turf/open/floor/plating/airless,
+/area/atmos)
+"ckN" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"ckO" = (
+/obj/structure/closet/secure_closet/bar{
+ pixel_x = -3;
+ pixel_y = -1;
+ req_access_txt = "25"
+ },
+/turf/open/floor/wood,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"ckP" = (
+/turf/open/floor/wood,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"ckQ" = (
+/turf/open/floor/wood{
+ icon_state = "wood-broken7"
+ },
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"ckR" = (
+/obj/item/weapon/reagent_containers/glass/rag,
+/obj/structure/table/wood,
+/turf/open/floor/wood{
+ icon_state = "wood-broken4"
+ },
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"ckS" = (
+/turf/open/floor/wood{
+ icon_state = "wood-broken5"
+ },
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"ckT" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"ckU" = (
+/obj/structure/chair,
+/obj/structure/sign/nosmoking_2{
+ pixel_x = -28
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/surgery)
+"ckV" = (
+/obj/structure/chair,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/black,
+/area/medical/surgery)
+"ckW" = (
+/obj/machinery/holopad,
+/turf/open/floor/plasteel/black,
+/area/medical/surgery)
+"ckX" = (
+/obj/structure/chair,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/surgery)
+"ckY" = (
+/obj/structure/chair,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/surgery)
+"ckZ" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/medical{
+ name = "Observation";
+ req_access_txt = "0"
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/surgery)
+"cla" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/surgery)
+"clb" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/surgery)
+"clc" = (
+/obj/item/weapon/cigbutt,
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
+ },
+/obj/structure/sign/nosmoking_2{
+ pixel_x = 28
+ },
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/surgery)
+"cld" = (
+/obj/machinery/sleeper{
+ icon_state = "sleeper-open";
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteblue,
+/area/medical/sleeper{
+ name = "Sleepers"
+ })
+"cle" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 10
+ },
+/area/medical/sleeper{
+ name = "Sleepers"
+ })
+"clf" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 2
+ },
+/area/medical/sleeper{
+ name = "Sleepers"
+ })
+"clg" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 6
+ },
+/area/medical/sleeper{
+ name = "Sleepers"
+ })
+"clh" = (
+/obj/machinery/sleeper{
+ icon_state = "sleeper-open";
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteblue,
+/area/medical/sleeper{
+ name = "Sleepers"
+ })
+"cli" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/medical/sleeper{
+ name = "Sleepers"
+ })
+"clj" = (
+/obj/structure/sink{
+ dir = 8;
+ icon_state = "sink";
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/turf/open/floor/plasteel/whiteblue/corner{
+ dir = 1
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"clk" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"cll" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"clm" = (
+/obj/item/device/radio/intercom{
+ broadcasting = 1;
+ freerange = 0;
+ frequency = 1485;
+ listening = 0;
+ name = "Station Intercom (Medbay)";
+ pixel_x = 0;
+ pixel_y = -30
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"cln" = (
+/turf/open/floor/plasteel/whiteblue/corner{
+ dir = 2
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"clo" = (
+/obj/structure/bed/roller,
+/obj/machinery/iv_drip{
+ density = 0
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 2
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"clp" = (
+/obj/machinery/light,
+/turf/open/floor/plasteel/whiteblue/corner{
+ dir = 8
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"clq" = (
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel/whiteyellow/corner{
+ dir = 2
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"clr" = (
+/turf/open/floor/plasteel/whiteyellow/side{
+ dir = 6
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"cls" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/window/eastright{
+ name = "Chemistry Desk";
+ req_access_txt = "5; 33"
+ },
+/obj/machinery/door/window/eastright{
+ dir = 8;
+ name = "Chemistry Desk";
+ req_access_txt = "5"
+ },
+/obj/item/weapon/reagent_containers/glass/bottle/morphine,
+/obj/item/weapon/reagent_containers/glass/bottle/toxin{
+ pixel_x = 5;
+ pixel_y = 4
+ },
+/obj/item/weapon/reagent_containers/glass/bottle/epinephrine{
+ pixel_x = 8
+ },
+/obj/item/weapon/reagent_containers/glass/bottle/charcoal{
+ pixel_x = -5;
+ pixel_y = 0
+ },
+/obj/item/weapon/reagent_containers/syringe/epinephrine,
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"clt" = (
+/obj/structure/chair/office/light{
+ dir = 8
+ },
+/obj/effect/landmark/start{
+ name = "Chemist"
+ },
+/turf/open/floor/plasteel/whiteyellow/side{
+ dir = 8
+ },
+/area/medical/chemistry)
+"clu" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/landmark/start{
+ name = "Chemist"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"clv" = (
+/obj/structure/chair/office/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteyellow/side{
+ dir = 4
+ },
+/area/medical/chemistry)
+"clw" = (
+/obj/structure/table/glass,
+/obj/item/weapon/folder/white{
+ pixel_y = 2
+ },
+/obj/item/weapon/grenade/chem_grenade,
+/obj/item/weapon/grenade/chem_grenade,
+/obj/item/weapon/grenade/chem_grenade,
+/obj/item/weapon/grenade/chem_grenade,
+/obj/item/weapon/screwdriver{
+ pixel_x = -2;
+ pixel_y = 6
+ },
+/obj/item/device/radio/headset/headset_med,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 24;
+ pixel_y = 0
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/open/floor/plasteel/whiteyellow{
+ dir = 4
+ },
+/area/medical/chemistry)
+"clx" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/hallway/primary/aft)
+"cly" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/camera{
+ c_tag = "Aft Primary Hallway - Fore";
+ dir = 8;
+ network = list("SS13")
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/hallway/primary/aft)
+"clz" = (
+/obj/item/stack/sheet/glass{
+ amount = 50;
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/obj/item/clothing/glasses/welding,
+/obj/structure/table,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/toxins/lab)
+"clA" = (
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 8
+ },
+/area/toxins/lab)
+"clB" = (
+/obj/structure/chair/stool,
+/turf/open/floor/plasteel/white,
+/area/toxins/lab)
+"clC" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/chair/stool,
+/turf/open/floor/plasteel/white,
+/area/toxins/lab)
+"clD" = (
+/obj/machinery/holopad,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/lab)
+"clE" = (
+/obj/structure/table,
+/obj/item/weapon/stock_parts/matter_bin,
+/obj/item/weapon/stock_parts/matter_bin,
+/obj/item/weapon/stock_parts/scanning_module,
+/obj/item/weapon/stock_parts/scanning_module,
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/obj/structure/sign/nosmoking_2{
+ pixel_x = 30;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel,
+/area/toxins/lab)
+"clF" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/shower{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"clG" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"clH" = (
+/obj/machinery/shower{
+ icon_state = "shower";
+ dir = 8
+ },
+/obj/item/device/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = -28
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"clI" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/structure/closet/firecloset,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/medical/research{
+ name = "Research Division"
+ })
+"clJ" = (
+/obj/structure/plasticflaps{
+ opacity = 1
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=2";
+ freq = 1400;
+ location = "Research Division"
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"clK" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"clL" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"clM" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/sign/poster{
+ pixel_y = 32
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"clN" = (
+/obj/machinery/microwave{
+ pixel_x = -3;
+ pixel_y = 6
+ },
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"clO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"clP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"clQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_Toxins = 0
+ },
+/obj/structure/noticeboard{
+ pixel_y = -32
+ },
+/obj/machinery/light,
+/obj/machinery/camera{
+ c_tag = "Research Division - Break Room";
+ dir = 1;
+ network = list("SS13","RD")
+ },
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"clR" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white/side{
+ dir = 4
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"clS" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'HIGH VOLTAGE'";
+ icon_state = "shock";
+ name = "HIGH VOLTAGE"
+ },
+/turf/closed/wall/r_wall,
+/area/toxins/explab)
+"clT" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/poddoor/preopen{
+ id = "telelab";
+ name = "test chamber blast door"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/toxins/explab)
+"clU" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/poddoor/preopen{
+ id = "telelab";
+ name = "test chamber blast door"
+ },
+/turf/open/floor/plating,
+/area/toxins/explab)
+"clV" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "telelab";
+ name = "test chamber blast door"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/engine,
+/area/toxins/explab)
+"clW" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"clX" = (
+/obj/machinery/door/airlock/maintenance{
+ icon_state = "door_closed";
+ locked = 0;
+ name = "Storage Room";
+ req_access_txt = "0";
+ req_one_access_txt = "12;47"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"clY" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"clZ" = (
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/blood/old,
+/obj/effect/decal/cleanable/blood/gibs/old,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cma" = (
+/obj/structure/rack,
+/obj/item/clothing/suit/apron,
+/obj/item/clothing/mask/surgical,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cmb" = (
+/obj/machinery/chem_master/condimaster{
+ name = "CondiMaster Neo";
+ pixel_x = -4
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cmc" = (
+/obj/structure/lattice,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/turf/open/space,
+/area/space)
+"cmd" = (
+/obj/machinery/door/airlock/glass{
+ autoclose = 0;
+ frequency = 1449;
+ heat_proof = 1;
+ icon_state = "door_locked";
+ id_tag = "incinerator_airlock_exterior";
+ locked = 1;
+ name = "Incinerator Exterior Airlock";
+ req_access_txt = "12"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/turf/open/floor/engine,
+/area/maintenance/incinerator)
+"cme" = (
+/obj/item/stack/rods{
+ amount = 25
+ },
+/turf/open/floor/engine{
+ name = "vacuum floor";
+ initial_gas_mix = "o2=0.01;n2=0.01"
+ },
+/area/atmos)
+"cmf" = (
+/turf/open/floor/plating/airless,
+/area/atmos)
+"cmg" = (
+/obj/structure/table/wood,
+/obj/item/weapon/reagent_containers/food/drinks/shaker,
+/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone,
+/obj/item/weapon/reagent_containers/glass/beaker{
+ pixel_x = 8;
+ pixel_y = 2
+ },
+/obj/item/weapon/reagent_containers/dropper,
+/turf/open/floor/wood,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cmh" = (
+/obj/item/weapon/reagent_containers/food/drinks/ale,
+/obj/structure/table/wood,
+/turf/open/floor/wood,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cmi" = (
+/obj/structure/light_construct/small{
+ dir = 4
+ },
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_x = 30;
+ pixel_y = 0
+ },
+/turf/open/floor/wood,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cmj" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 2;
+ on = 1
+ },
+/obj/machinery/firealarm{
+ pixel_y = 29
+ },
+/obj/structure/sign/poster{
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"cmk" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/turf/open/floor/plating,
+/area/medical/surgery)
+"cml" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/medical/surgery)
+"cmm" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/medical/surgery)
+"cmn" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/medical{
+ name = "Observation";
+ req_access_txt = "0"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plasteel,
+/area/medical/surgery)
+"cmo" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/medical/sleeper{
+ name = "Sleepers"
+ })
+"cmp" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/medical/sleeper{
+ name = "Sleepers"
+ })
+"cmq" = (
+/obj/structure/lattice,
+/obj/machinery/camera/emp_proof{
+ c_tag = "Fore Arm - Far";
+ dir = 8;
+ network = list("Singulo")
+ },
+/turf/open/space,
+/area/space)
+"cmr" = (
+/obj/machinery/door/firedoor,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"cms" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"cmt" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"cmu" = (
+/turf/closed/wall,
+/area/medical/cmo)
+"cmv" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "cmoprivacy";
+ name = "privacy shutter"
+ },
+/turf/open/floor/plating,
+/area/medical/cmo)
+"cmw" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "cmoprivacy";
+ name = "privacy shutter"
+ },
+/turf/open/floor/plating,
+/area/medical/cmo)
+"cmx" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "cmoprivacy";
+ name = "privacy shutter"
+ },
+/turf/open/floor/plating,
+/area/medical/cmo)
+"cmy" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Medbay Maintenance";
+ req_access_txt = "5"
+ },
+/turf/open/floor/plating,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"cmz" = (
+/obj/machinery/reagentgrinder,
+/obj/machinery/requests_console{
+ department = "Chemistry";
+ departmentType = 2;
+ pixel_x = -30;
+ pixel_y = 0
+ },
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/whiteyellow/side{
+ dir = 8
+ },
+/area/medical/chemistry)
+"cmA" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/holopad,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"cmB" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"cmC" = (
+/obj/item/stack/packageWrap,
+/obj/item/stack/packageWrap,
+/obj/item/stack/packageWrap,
+/obj/item/stack/packageWrap,
+/obj/item/stack/packageWrap,
+/obj/item/weapon/hand_labeler,
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/whiteyellow/side{
+ dir = 4
+ },
+/area/medical/chemistry)
+"cmD" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/structure/sign/chemistry{
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel/yellow/corner{
+ dir = 8
+ },
+/area/hallway/primary/aft)
+"cmE" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/obj/structure/sign/science{
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel/purple/corner{
+ dir = 2
+ },
+/area/hallway/primary/aft)
+"cmF" = (
+/obj/item/device/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -28
+ },
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 8
+ },
+/area/toxins/lab)
+"cmG" = (
+/obj/item/weapon/paper_bin{
+ pixel_x = -2;
+ pixel_y = 6
+ },
+/obj/structure/table,
+/turf/open/floor/plasteel/white,
+/area/toxins/lab)
+"cmH" = (
+/obj/structure/table,
+/obj/structure/disposalpipe/segment,
+/obj/item/weapon/folder/white{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/item/weapon/disk/tech_disk{
+ pixel_x = 0;
+ pixel_y = 0
+ },
+/obj/item/weapon/disk/tech_disk{
+ pixel_x = 0;
+ pixel_y = 0
+ },
+/obj/item/weapon/disk/design_disk,
+/obj/item/weapon/disk/design_disk,
+/turf/open/floor/plasteel/white,
+/area/toxins/lab)
+"cmI" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/lab)
+"cmJ" = (
+/obj/machinery/camera{
+ c_tag = "Research and Development";
+ dir = 8;
+ network = list("SS13","RD")
+ },
+/obj/machinery/light_switch{
+ pixel_x = 27
+ },
+/obj/structure/table,
+/obj/item/stack/cable_coil,
+/obj/item/stack/cable_coil,
+/obj/item/weapon/stock_parts/scanning_module{
+ pixel_x = 2;
+ pixel_y = 3
+ },
+/obj/item/weapon/stock_parts/scanning_module,
+/turf/open/floor/plasteel,
+/area/toxins/lab)
+"cmK" = (
+/obj/structure/chair,
+/turf/open/floor/plasteel/black,
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"cmL" = (
+/obj/machinery/door/window/westleft{
+ dir = 2;
+ name = "Research Division Deliveries";
+ req_access_txt = "47"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cmM" = (
+/obj/machinery/door/airlock{
+ name = "Research Emergency Storage";
+ req_access_txt = "0";
+ req_one_access_txt = "47"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/medical/research{
+ name = "Research Division"
+ })
+"cmN" = (
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/glass_medical{
+ glass = 0;
+ id_tag = "";
+ name = "Research Break Room";
+ opacity = 1;
+ req_access_txt = "0";
+ req_one_access_txt = "47"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"cmO" = (
+/obj/structure/grille,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/window/reinforced/tinted/fulltile,
+/turf/open/floor/plating,
+/area/medical/research{
+ name = "Research Division"
+ })
+"cmP" = (
+/turf/closed/wall,
+/area/toxins/explab)
+"cmQ" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27;
+ pixel_y = 0
+ },
+/obj/machinery/requests_console{
+ department = "Science";
+ departmentType = 2;
+ name = "Science Requests Console";
+ pixel_x = 0;
+ pixel_y = 30
+ },
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk,
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/toxins/explab)
+"cmR" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/paper_bin{
+ pixel_x = -2;
+ pixel_y = 6
+ },
+/obj/item/weapon/pen,
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/toxins/explab)
+"cmS" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/hand_labeler,
+/obj/item/stack/packageWrap,
+/obj/item/stack/packageWrap,
+/obj/item/stack/packageWrap,
+/obj/item/device/taperecorder{
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/toxins/explab)
+"cmT" = (
+/obj/machinery/computer/rdconsole/experiment,
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/toxins/explab)
+"cmU" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/clipboard,
+/obj/item/weapon/book/manual/experimentor,
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/toxins/explab)
+"cmV" = (
+/obj/machinery/button/door{
+ id = "telelab";
+ name = "Test Chamber Blast Doors";
+ pixel_x = 0;
+ pixel_y = 25
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/obj/structure/table/reinforced,
+/obj/item/weapon/reagent_containers/glass/bottle/epinephrine{
+ pixel_x = 7;
+ pixel_y = 2
+ },
+/obj/item/weapon/reagent_containers/glass/bottle/charcoal{
+ pixel_x = -2;
+ pixel_y = -1
+ },
+/obj/item/weapon/reagent_containers/dropper,
+/obj/item/stack/medical/bruise_pack{
+ pixel_x = -2;
+ pixel_y = 6
+ },
+/obj/item/stack/medical/ointment,
+/obj/item/device/healthanalyzer,
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/toxins/explab)
+"cmW" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/toxins/explab)
+"cmX" = (
+/obj/structure/window/reinforced,
+/obj/machinery/holopad,
+/turf/open/floor/plasteel/black,
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"cmY" = (
+/obj/structure/closet/crate{
+ icon_state = "crateopen";
+ opened = 1
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cmZ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cna" = (
+/obj/structure/rack,
+/obj/item/clothing/under/color/white,
+/obj/item/clothing/head/soft/mime,
+/obj/item/clothing/under/color/white,
+/obj/item/clothing/head/soft/mime,
+/obj/item/clothing/mask/surgical,
+/obj/item/clothing/mask/surgical,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cnb" = (
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cnc" = (
+/obj/machinery/chem_heater,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cnd" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ external_pressure_bound = 0;
+ initialize_directions = 1;
+ internal_pressure_bound = 4000;
+ name = "incinerator output intake";
+ on = 0;
+ pressure_checks = 2;
+ pump_direction = 0
+ },
+/turf/open/floor/engine/vacuum,
+/area/maintenance/incinerator)
+"cne" = (
+/obj/machinery/igniter{
+ icon_state = "igniter0";
+ id = "Incinerator";
+ luminosity = 2;
+ on = 0
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/turf/open/floor/engine/vacuum,
+/area/maintenance/incinerator)
+"cnf" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 0;
+ pixel_y = -32
+ },
+/obj/machinery/atmospherics/components/unary/outlet_injector/on{
+ dir = 1;
+ frequency = 1441;
+ id = "air_in"
+ },
+/turf/open/floor/engine/vacuum,
+/area/maintenance/incinerator)
+"cng" = (
+/obj/machinery/door/poddoor{
+ id = "auxincineratorvent";
+ name = "Incineration Chamber Vent"
+ },
+/turf/open/floor/engine/vacuum,
+/area/maintenance/incinerator)
+"cnh" = (
+/obj/item/device/flashlight/lamp,
+/obj/structure/table/wood,
+/turf/open/floor/wood,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cni" = (
+/obj/item/weapon/reagent_containers/food/drinks/bottle/tequila,
+/obj/structure/table/wood,
+/turf/open/floor/wood,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cnj" = (
+/obj/item/weapon/reagent_containers/food/drinks/beer,
+/obj/structure/table/wood,
+/turf/open/floor/wood,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cnk" = (
+/turf/open/floor/wood{
+ icon_state = "wood-broken"
+ },
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cnl" = (
+/obj/structure/mineral_door/wood{
+ name = "The Gobbetting Barmaid"
+ },
+/turf/open/floor/wood,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cnm" = (
+/obj/structure/table,
+/obj/item/weapon/hemostat,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel,
+/area/medical/surgery)
+"cnn" = (
+/obj/structure/table,
+/obj/item/weapon/surgicaldrill,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/white/side{
+ dir = 2
+ },
+/area/medical/surgery)
+"cno" = (
+/obj/structure/table,
+/obj/item/weapon/scalpel{
+ pixel_y = 12
+ },
+/obj/item/weapon/circular_saw,
+/turf/open/floor/plasteel/white/side{
+ dir = 2
+ },
+/area/medical/surgery)
+"cnp" = (
+/obj/structure/table,
+/obj/item/weapon/cautery{
+ pixel_x = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/item/weapon/razor{
+ pixel_y = 5
+ },
+/turf/open/floor/plasteel/white/side{
+ dir = 2
+ },
+/area/medical/surgery)
+"cnq" = (
+/obj/structure/table,
+/obj/item/weapon/retractor,
+/turf/open/floor/plasteel,
+/area/medical/surgery)
+"cnr" = (
+/obj/machinery/computer/med_data,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/white/side{
+ dir = 2
+ },
+/area/medical/surgery)
+"cns" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plasteel/white/side{
+ dir = 2
+ },
+/area/medical/surgery)
+"cnt" = (
+/obj/structure/table/reinforced,
+/obj/item/device/radio/intercom{
+ broadcasting = 1;
+ freerange = 0;
+ frequency = 1485;
+ listening = 0;
+ name = "Station Intercom (Medbay)";
+ pixel_x = 30;
+ pixel_y = 0
+ },
+/obj/structure/bedsheetbin{
+ pixel_x = 2
+ },
+/obj/item/clothing/suit/straight_jacket,
+/obj/item/clothing/mask/muzzle,
+/obj/item/weapon/gun/syringe,
+/obj/item/clothing/glasses/eyepatch,
+/obj/item/clothing/glasses/sunglasses/blindfold,
+/obj/item/clothing/ears/earmuffs,
+/turf/open/floor/plasteel/white/side{
+ dir = 2
+ },
+/area/medical/surgery)
+"cnu" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "Cryogenics APC";
+ pixel_y = 24
+ },
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{
+ pixel_x = -2;
+ pixel_y = 9
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{
+ pixel_x = 5;
+ pixel_y = 9
+ },
+/obj/structure/table/glass,
+/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{
+ pixel_x = -3;
+ pixel_y = 1
+ },
+/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{
+ pixel_x = 6;
+ pixel_y = 2
+ },
+/obj/item/weapon/reagent_containers/syringe/epinephrine{
+ pixel_x = 3;
+ pixel_y = -2
+ },
+/obj/item/weapon/reagent_containers/dropper,
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 8
+ },
+/area/medical/cryo)
+"cnv" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4;
+ initialize_directions = 11
+ },
+/obj/structure/closet/secure_closet/medical1{
+ pixel_x = -3
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/cryo)
+"cnw" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/medical/cryo)
+"cnx" = (
+/obj/machinery/atmospherics/components/unary/cryo_cell,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/medical/cryo)
+"cny" = (
+/obj/machinery/atmospherics/components/unary/cryo_cell,
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/medical/cryo)
+"cnz" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/turf/open/floor/plating,
+/area/medical/cryo)
+"cnA" = (
+/turf/open/floor/plasteel/whiteblue/corner{
+ dir = 8
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"cnB" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 27;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"cnC" = (
+/obj/machinery/status_display{
+ density = 0;
+ layer = 4;
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/obj/structure/table/glass,
+/obj/item/weapon/paper_bin{
+ pixel_x = -2;
+ pixel_y = 8
+ },
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/turf/open/floor/plasteel/barber{
+ dir = 8
+ },
+/area/medical/cmo)
+"cnD" = (
+/obj/item/weapon/cartridge/medical{
+ pixel_x = -2;
+ pixel_y = 6
+ },
+/obj/item/weapon/cartridge/medical{
+ pixel_x = 6;
+ pixel_y = 3
+ },
+/obj/item/weapon/cartridge/medical,
+/obj/item/weapon/cartridge/chemistry{
+ pixel_y = 2
+ },
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/barber{
+ dir = 8
+ },
+/area/medical/cmo)
+"cnE" = (
+/obj/item/weapon/folder/blue,
+/obj/structure/table/glass,
+/obj/item/weapon/stamp/cmo,
+/turf/open/floor/plasteel/barber{
+ dir = 8
+ },
+/area/medical/cmo)
+"cnF" = (
+/obj/item/weapon/folder/white{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/item/clothing/glasses/hud/health,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/barber{
+ dir = 8
+ },
+/area/medical/cmo)
+"cnG" = (
+/obj/structure/closet/secure_closet/CMO,
+/obj/item/weapon/storage/secure/safe{
+ pixel_x = 5;
+ pixel_y = 26
+ },
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_x = 30;
+ pixel_y = 0
+ },
+/obj/item/weapon/screwdriver{
+ pixel_y = 6
+ },
+/turf/open/floor/plasteel/barber{
+ dir = 8
+ },
+/area/medical/cmo)
+"cnH" = (
+/obj/item/clothing/glasses/science{
+ pixel_x = 2;
+ pixel_y = 4
+ },
+/obj/item/clothing/glasses/science,
+/obj/item/device/radio/intercom{
+ dir = 8;
+ name = "Station Intercom (General)";
+ pixel_x = -28
+ },
+/obj/structure/table/glass,
+/obj/item/stack/cable_coil,
+/obj/item/stack/cable_coil,
+/obj/machinery/camera{
+ c_tag = "Chemistry";
+ dir = 4;
+ network = list("SS13","Medbay")
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/whiteyellow/side{
+ dir = 10
+ },
+/area/medical/chemistry)
+"cnI" = (
+/obj/structure/disposalpipe/junction{
+ icon_state = "pipe-j2";
+ dir = 2
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/whiteyellow/corner{
+ dir = 8
+ },
+/area/medical/chemistry)
+"cnJ" = (
+/obj/machinery/disposal/bin{
+ pixel_x = 5
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"cnK" = (
+/obj/machinery/chem_dispenser{
+ layer = 2.7
+ },
+/turf/open/floor/plasteel/whiteyellow/side{
+ dir = 4
+ },
+/area/medical/chemistry)
+"cnL" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "chemistry_shutters_2";
+ name = "chemistry shutters"
+ },
+/turf/open/floor/plating,
+/area/medical/chemistry)
+"cnM" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/paper_bin{
+ pixel_x = -2;
+ pixel_y = 6
+ },
+/turf/open/floor/plasteel/yellow{
+ dir = 4
+ },
+/area/hallway/primary/aft)
+"cnN" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 8
+ },
+/area/hallway/primary/aft)
+"cnO" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cnP" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/purple/side{
+ dir = 4
+ },
+/area/hallway/primary/aft)
+"cnQ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/purple,
+/area/hallway/primary/aft)
+"cnR" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "research_shutters_2";
+ name = "research shutters"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/toxins/lab)
+"cnS" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 8
+ },
+/area/toxins/lab)
+"cnT" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/chair/stool,
+/turf/open/floor/plasteel/white,
+/area/toxins/lab)
+"cnU" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/chair/stool,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/lab)
+"cnV" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_Toxins = 0
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/lab)
+"cnW" = (
+/obj/structure/table,
+/obj/item/weapon/stock_parts/console_screen,
+/obj/item/weapon/stock_parts/console_screen,
+/obj/item/weapon/stock_parts/console_screen,
+/obj/item/weapon/stock_parts/cell/high{
+ charge = 100;
+ maxcharge = 15000
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/toxins/lab)
+"cnX" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/turf/open/floor/plating,
+/area/toxins/lab)
+"cnY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 9
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"cnZ" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 1
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"coa" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whitepurple/corner{
+ dir = 1
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"cob" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/sign/nosmoking_2{
+ pixel_y = 32
+ },
+/obj/machinery/camera{
+ c_tag = "Research Division Hallway - Central";
+ dir = 2;
+ network = list("SS13","RD")
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"coc" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"cod" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 0;
+ pixel_y = 29
+ },
+/turf/open/floor/plasteel/white/side{
+ dir = 10
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"coe" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/white/side{
+ dir = 2
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"cof" = (
+/turf/open/floor/plasteel/white/side{
+ dir = 6
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"cog" = (
+/obj/item/device/radio/intercom{
+ broadcasting = 0;
+ listening = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 20
+ },
+/turf/open/floor/plasteel/whitepurple/corner{
+ dir = 4
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"coh" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 1
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"coi" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/whitepurple/corner{
+ dir = 1
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"coj" = (
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-10";
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/whitepurple/corner{
+ dir = 2
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"cok" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -26;
+ pixel_y = 0
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/whitepurple/corner{
+ dir = 8
+ },
+/area/toxins/explab)
+"col" = (
+/obj/structure/chair/office/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/explab)
+"com" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/folder/white{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/item/weapon/folder/white{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/obj/item/stack/sheet/mineral/plasma{
+ layer = 2.9;
+ pixel_y = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/explab)
+"con" = (
+/obj/effect/landmark/start{
+ name = "Scientist"
+ },
+/obj/structure/chair/office/light{
+ dir = 1;
+ pixel_y = 3
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/explab)
+"coo" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/table/reinforced,
+/obj/item/weapon/wrench,
+/obj/item/weapon/crowbar,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/glasses/science,
+/obj/item/device/multitool{
+ pixel_x = 3
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/explab)
+"cop" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/holopad,
+/turf/open/floor/plasteel/white,
+/area/toxins/explab)
+"coq" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 27;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/toxins/explab)
+"cor" = (
+/obj/structure/girder,
+/obj/structure/grille,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cos" = (
+/obj/structure/table,
+/obj/item/weapon/paper_bin{
+ pixel_x = 0;
+ pixel_y = 6
+ },
+/obj/item/weapon/pen,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cot" = (
+/obj/structure/table,
+/obj/item/weapon/folder/white{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/item/weapon/reagent_containers/blood/random,
+/obj/item/weapon/reagent_containers/blood/random,
+/obj/item/weapon/reagent_containers/blood/empty{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/item/weapon/reagent_containers/blood/empty{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cou" = (
+/obj/effect/decal/cleanable/blood/old,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cov" = (
+/obj/structure/bed,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cow" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"cox" = (
+/obj/structure/mineral_door/wood{
+ name = "The Gobbetting Barmaid"
+ },
+/turf/open/floor/wood{
+ icon_state = "wood-broken6"
+ },
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"coy" = (
+/obj/structure/table,
+/obj/item/clothing/gloves/color/latex,
+/obj/item/clothing/mask/surgical,
+/obj/item/clothing/suit/apron/surgical,
+/obj/machinery/airalarm{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22
+ },
+/turf/open/floor/plasteel/white/side{
+ dir = 4
+ },
+/area/medical/surgery)
+"coz" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/surgery)
+"coA" = (
+/obj/effect/landmark/start{
+ name = "Medical Doctor"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/surgery)
+"coB" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/surgery)
+"coC" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "Surgery APC";
+ pixel_x = 26;
+ pixel_y = 0
+ },
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/table,
+/obj/item/weapon/surgical_drapes,
+/turf/open/floor/plasteel/white/side{
+ dir = 8
+ },
+/area/medical/surgery)
+"coD" = (
+/obj/structure/bed/roller,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/iv_drip{
+ density = 0
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/surgery)
+"coE" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/surgery)
+"coF" = (
+/obj/structure/bed,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/item/weapon/bedsheet/medical,
+/turf/open/floor/plasteel/white,
+/area/medical/surgery)
+"coG" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/medical/surgery)
+"coH" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 8
+ },
+/area/medical/cryo)
+"coI" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/cryo)
+"coJ" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/medical/cryo)
+"coK" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 2
+ },
+/obj/effect/landmark/start{
+ name = "Medical Doctor"
+ },
+/turf/open/floor/plasteel,
+/area/medical/cryo)
+"coL" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 9
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/medical/cryo)
+"coM" = (
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/medical/cryo)
+"coN" = (
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 8
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"coO" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/filingcabinet/chestdrawer,
+/turf/open/floor/plasteel/barber{
+ dir = 8
+ },
+/area/medical/cmo)
+"coP" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 2;
+ on = 1
+ },
+/turf/open/floor/plasteel/barber{
+ dir = 8
+ },
+/area/medical/cmo)
+"coQ" = (
+/obj/structure/chair/office/light{
+ dir = 1
+ },
+/obj/effect/landmark/start{
+ name = "Chief Medical Officer"
+ },
+/turf/open/floor/plasteel/barber{
+ dir = 8
+ },
+/area/medical/cmo)
+"coR" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/mob/living/simple_animal/pet/cat/Runtime,
+/turf/open/floor/plasteel/barber{
+ dir = 8
+ },
+/area/medical/cmo)
+"coS" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "CMO's Office APC";
+ pixel_x = 26;
+ pixel_y = 0
+ },
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/camera{
+ c_tag = "CMO's Office";
+ dir = 8;
+ network = list("SS13","Medbay")
+ },
+/turf/open/floor/plasteel/barber{
+ dir = 8
+ },
+/area/medical/cmo)
+"coT" = (
+/obj/structure/closet/wardrobe/chemistry_white{
+ pixel_x = -3
+ },
+/obj/item/weapon/storage/backpack/satchel/chem,
+/obj/machinery/airalarm{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"coU" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/whiteyellow/side{
+ dir = 8
+ },
+/area/medical/chemistry)
+"coV" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"coW" = (
+/obj/structure/chair/office/light{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Chemist"
+ },
+/turf/open/floor/plasteel/whiteyellow/side{
+ dir = 4
+ },
+/area/medical/chemistry)
+"coX" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/folder/white{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/window/eastright{
+ dir = 8;
+ name = "Chemistry Desk";
+ req_access_txt = "5; 33"
+ },
+/obj/item/weapon/folder/white{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/item/weapon/pen,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "chemistry_shutters_2";
+ name = "chemistry shutters"
+ },
+/turf/open/floor/plasteel/whiteyellow{
+ dir = 4
+ },
+/area/medical/chemistry)
+"coY" = (
+/turf/open/floor/plasteel/yellow{
+ dir = 4
+ },
+/area/hallway/primary/aft)
+"coZ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 8
+ },
+/area/hallway/primary/aft)
+"cpa" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/purple/side{
+ dir = 4
+ },
+/area/hallway/primary/aft)
+"cpb" = (
+/turf/open/floor/plasteel/purple,
+/area/hallway/primary/aft)
+"cpc" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/eastright{
+ dir = 4;
+ name = "Research and Development Desk";
+ req_access_txt = "7"
+ },
+/obj/item/weapon/folder/white{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/item/weapon/folder/white{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/machinery/door/firedoor,
+/obj/item/weapon/pen,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "research_shutters_2";
+ name = "research shutters"
+ },
+/turf/open/floor/plating,
+/area/toxins/lab)
+"cpd" = (
+/obj/effect/landmark/start{
+ name = "Scientist"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 8
+ },
+/area/toxins/lab)
+"cpe" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/lab)
+"cpf" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/lab)
+"cpg" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/lab)
+"cph" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 4
+ },
+/area/toxins/lab)
+"cpi" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/sink{
+ dir = 4;
+ icon_state = "sink";
+ pixel_x = 11;
+ pixel_y = 0
+ },
+/obj/structure/sign/poster{
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"cpj" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 8
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"cpk" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"cpl" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"cpm" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"cpn" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"cpo" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"cpp" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"cpq" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/junction{
+ icon_state = "pipe-j2";
+ dir = 2
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 2
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"cpr" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"cps" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"cpt" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 8;
+ icon_state = "pipe-j1"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"cpu" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 2
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"cpv" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ on = 1;
+ scrub_Toxins = 0
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"cpw" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 8;
+ icon_state = "pipe-j2"
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 4
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"cpx" = (
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/research{
+ name = "Experimentation Lab";
+ req_access_txt = "8"
+ },
+/turf/open/floor/plasteel/whitepurple{
+ dir = 4
+ },
+/area/toxins/explab)
+"cpy" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 8
+ },
+/area/toxins/explab)
+"cpz" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/explab)
+"cpA" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9;
+ pixel_y = 0
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/explab)
+"cpB" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/explab)
+"cpC" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/explab)
+"cpD" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4;
+ initialize_directions = 11
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/explab)
+"cpE" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/toxins/explab)
+"cpF" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Experimentation Lab Maintenance";
+ req_access_txt = "8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/toxins/explab)
+"cpG" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cpH" = (
+/obj/structure/bed/roller,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cpI" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cpJ" = (
+/obj/structure/barricade/wooden,
+/obj/structure/girder,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cpK" = (
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cpL" = (
+/obj/effect/decal/cleanable/blood/gibs/limb,
+/obj/structure/rack,
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = 0;
+ pixel_y = 0
+ },
+/obj/item/stack/medical/bruise_pack,
+/obj/item/stack/medical/bruise_pack,
+/obj/item/stack/medical/ointment,
+/obj/item/clothing/glasses/hud/health,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cpM" = (
+/obj/structure/lattice,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 5
+ },
+/turf/open/space,
+/area/space)
+"cpN" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/on{
+ dir = 8
+ },
+/turf/open/floor/plating/airless,
+/area/maintenance/incinerator)
+"cpO" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/turf/open/floor/plasteel/black,
+/area/construction/hallway{
+ name = "\improper MiniSat Exterior"
+ })
+"cpP" = (
+/obj/structure/lattice/catwalk,
+/obj/item/weapon/wrench,
+/turf/open/space,
+/area/space)
+"cpQ" = (
+/obj/structure/chair/stool,
+/turf/open/floor/wood{
+ icon_state = "wood-broken7"
+ },
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cpR" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Engineering - Supermatter West";
+ dir = 8;
+ network = list("SS13")
+ },
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ locked = 0;
+ pixel_x = 24;
+ req_access = null;
+ req_one_access_txt = "24;10"
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cpS" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cpT" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Surgery Maintenance";
+ req_access_txt = "45"
+ },
+/turf/open/floor/plating,
+/area/medical/surgery)
+"cpU" = (
+/turf/open/floor/plasteel/white,
+/area/medical/surgery)
+"cpV" = (
+/obj/machinery/porta_turret/syndicate{
+ dir = 4
+ },
+/turf/closed/wall/mineral/plastitanium,
+/area/shuttle/syndicate)
+"cpW" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/surgery)
+"cpX" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/medical{
+ name = "Operating Theatre";
+ req_access_txt = "45"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/surgery)
+"cpY" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/surgery)
+"cpZ" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/obj/effect/landmark/start{
+ name = "Medical Doctor"
+ },
+/obj/machinery/holopad,
+/turf/open/floor/plasteel/white,
+/area/medical/surgery)
+"cqa" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/surgery)
+"cqb" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_medical{
+ id_tag = "";
+ name = "Surgery Observation";
+ req_access_txt = "0"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/surgery)
+"cqc" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 8
+ },
+/area/medical/cryo)
+"cqd" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/cryo)
+"cqe" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/medical/cryo)
+"cqf" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/medical/cryo)
+"cqg" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 10
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/medical/cryo)
+"cqh" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/medical/cryo)
+"cqi" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 8
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"cqj" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"cqk" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "cmoprivacy";
+ name = "privacy shutter"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/medical/cmo)
+"cql" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/barber{
+ dir = 8
+ },
+/area/medical/cmo)
+"cqm" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/barber{
+ dir = 8
+ },
+/area/medical/cmo)
+"cqn" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/barber{
+ dir = 8
+ },
+/area/medical/cmo)
+"cqo" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/barber{
+ dir = 8
+ },
+/area/medical/cmo)
+"cqp" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance{
+ name = "CMO Maintenance";
+ req_access_txt = "40"
+ },
+/turf/open/floor/plating,
+/area/medical/cmo)
+"cqq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cqr" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Chemistry APC";
+ pixel_x = -24;
+ pixel_y = 0
+ },
+/obj/structure/closet/secure_closet/chemical{
+ pixel_x = -3
+ },
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"cqs" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/whiteyellow/side{
+ dir = 10
+ },
+/area/medical/chemistry)
+"cqt" = (
+/obj/machinery/chem_heater{
+ pixel_x = 4
+ },
+/turf/open/floor/plasteel/whiteyellow/side{
+ dir = 2
+ },
+/area/medical/chemistry)
+"cqu" = (
+/obj/machinery/chem_master{
+ layer = 2.7;
+ pixel_x = -2
+ },
+/obj/structure/noticeboard{
+ desc = "A board for pinning important notices upon. Probably helpful for keeping track of requests.";
+ dir = 1;
+ name = "requests board";
+ pixel_x = 0;
+ pixel_y = -32
+ },
+/obj/machinery/button/door{
+ id = "chemistry_shutters_2";
+ name = "chemistry shutters control";
+ pixel_x = 26;
+ pixel_y = -26;
+ req_access_txt = "5; 33"
+ },
+/turf/open/floor/plasteel/whiteyellow/side{
+ dir = 6
+ },
+/area/medical/chemistry)
+"cqv" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/paper_bin{
+ pixel_x = -2;
+ pixel_y = 6
+ },
+/turf/open/floor/plasteel/purple,
+/area/hallway/primary/aft)
+"cqw" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "research_shutters_2";
+ name = "research shutters"
+ },
+/turf/open/floor/plating,
+/area/toxins/lab)
+"cqx" = (
+/obj/machinery/cell_charger,
+/obj/item/weapon/stock_parts/cell/high{
+ charge = 100;
+ maxcharge = 15000
+ },
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "Research Lab APC";
+ pixel_x = 0;
+ pixel_y = -26
+ },
+/obj/structure/cable/yellow,
+/obj/structure/table,
+/obj/machinery/button/door{
+ id = "research_shutters_2";
+ name = "research shutters control";
+ pixel_x = -26;
+ pixel_y = -26;
+ req_access_txt = "7"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/toxins/lab)
+"cqy" = (
+/obj/item/weapon/storage/toolbox/mechanical{
+ pixel_x = 2;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/toolbox/mechanical{
+ pixel_x = -2;
+ pixel_y = -1
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/item/stack/cable_coil,
+/obj/item/stack/cable_coil,
+/obj/structure/table,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/toxins/lab)
+"cqz" = (
+/obj/item/stack/packageWrap,
+/obj/item/stack/packageWrap,
+/obj/item/weapon/hand_labeler,
+/obj/machinery/requests_console{
+ department = "Science";
+ departmentType = 2;
+ name = "Science Requests Console";
+ pixel_x = 0;
+ pixel_y = -30
+ },
+/obj/structure/table,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/toxins/lab)
+"cqA" = (
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 0
+ },
+/obj/machinery/door/window/eastleft{
+ dir = 1;
+ name = "Research and Development Deliveries";
+ req_access_txt = "7"
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/toxins/lab)
+"cqB" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/toxins/lab)
+"cqC" = (
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/structure/sink{
+ dir = 8;
+ icon_state = "sink";
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/turf/open/floor/plasteel/whitepurple/corner{
+ dir = 1
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"cqD" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"cqE" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"cqF" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"cqG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"cqH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"cqI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"cqJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"cqK" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Research Division Hallway - Starboard";
+ dir = 1;
+ network = list("SS13","RD")
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"cqL" = (
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 2;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"cqM" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"cqN" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 2;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/whitepurple/corner{
+ dir = 2
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"cqO" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1;
+ initialize_directions = 11
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 6
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"cqP" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/toxins/explab)
+"cqQ" = (
+/obj/machinery/light_switch{
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whitepurple/corner{
+ dir = 1
+ },
+/area/toxins/explab)
+"cqR" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "Experimentation Lab APC";
+ pixel_y = -24
+ },
+/obj/structure/cable/yellow,
+/turf/open/floor/plasteel/white,
+/area/toxins/explab)
+"cqS" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -29
+ },
+/obj/machinery/camera{
+ c_tag = "Experimentation Lab";
+ dir = 1;
+ network = list("SS13","RD")
+ },
+/obj/machinery/light,
+/turf/open/floor/plasteel/white,
+/area/toxins/explab)
+"cqT" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/explab)
+"cqU" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/explab)
+"cqV" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/explab)
+"cqW" = (
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/toxins/explab)
+"cqX" = (
+/obj/structure/bed/roller,
+/obj/effect/decal/cleanable/blood/old,
+/obj/effect/decal/cleanable/blood/gibs/old,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cqY" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cqZ" = (
+/obj/structure/barricade/wooden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/girder,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cra" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
+ },
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"crb" = (
+/obj/structure/bed,
+/obj/effect/decal/cleanable/blood/old,
+/obj/effect/decal/cleanable/blood/gibs/old,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"crc" = (
+/obj/structure/lattice,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/open/space,
+/area/space)
+"crd" = (
+/obj/structure/disposaloutlet{
+ dir = 2
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/space)
+"cre" = (
+/obj/structure/sign/fire{
+ pixel_x = 0;
+ pixel_y = 0
+ },
+/turf/closed/wall/r_wall,
+/area/maintenance/incinerator)
+"crf" = (
+/obj/machinery/door/poddoor{
+ id = "turbinevent";
+ name = "Turbine Vent"
+ },
+/turf/open/floor/engine/vacuum,
+/area/maintenance/incinerator)
+"crg" = (
+/obj/item/toy/cards/deck,
+/obj/structure/table/wood/poker,
+/turf/open/floor/wood,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"crh" = (
+/turf/open/floor/wood{
+ icon_state = "wood-broken4"
+ },
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cri" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/structure/sign/poster{
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"crj" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/structure/sink{
+ dir = 8;
+ icon_state = "sink";
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/obj/machinery/light_switch{
+ pixel_x = -28;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/white/side{
+ dir = 4
+ },
+/area/medical/surgery)
+"crk" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/surgery)
+"crl" = (
+/obj/machinery/computer/operating,
+/turf/open/floor/plasteel/white,
+/area/medical/surgery)
+"crm" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/surgery)
+"crn" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/white/side{
+ dir = 8
+ },
+/area/medical/surgery)
+"cro" = (
+/obj/structure/bed/roller,
+/obj/machinery/iv_drip{
+ density = 0
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/surgery)
+"crp" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/surgery)
+"crq" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet/medical,
+/obj/machinery/light_switch{
+ pixel_x = 26;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/surgery)
+"crr" = (
+/obj/machinery/airalarm{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 8
+ },
+/area/medical/cryo)
+"crs" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/structure/table/reinforced,
+/obj/item/weapon/crowbar,
+/obj/machinery/camera{
+ c_tag = "Medbay Cryo";
+ dir = 1;
+ network = list("SS13","Medbay")
+ },
+/obj/item/weapon/screwdriver{
+ pixel_y = 6
+ },
+/obj/item/clothing/neck/stethoscope,
+/obj/item/weapon/wrench/medical,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/cryo)
+"crt" = (
+/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
+ dir = 1
+ },
+/obj/item/device/radio/intercom{
+ broadcasting = 1;
+ freerange = 0;
+ frequency = 1485;
+ listening = 0;
+ name = "Station Intercom (Medbay)";
+ pixel_x = 0;
+ pixel_y = -30
+ },
+/obj/machinery/light,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/medical/cryo)
+"cru" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 1;
+ name = "Connector Port (Air Supply)"
+ },
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/medical/cryo)
+"crv" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 1;
+ name = "Connector Port (Air Supply)"
+ },
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/machinery/light_switch{
+ pixel_x = 0;
+ pixel_y = -24
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/medical/cryo)
+"crw" = (
+/turf/open/floor/plasteel/whiteblue/corner{
+ dir = 1
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"crx" = (
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/whiteblue/corner{
+ dir = 2
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"cry" = (
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/barber{
+ dir = 8
+ },
+/area/medical/cmo)
+"crz" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/holopad,
+/turf/open/floor/plasteel/barber{
+ dir = 8
+ },
+/area/medical/cmo)
+"crA" = (
+/obj/structure/table/glass,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/item/weapon/storage/secure/briefcase,
+/turf/open/floor/plasteel/barber{
+ dir = 8
+ },
+/area/medical/cmo)
+"crB" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/barber{
+ dir = 8
+ },
+/area/medical/cmo)
+"crC" = (
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/obj/machinery/keycard_auth{
+ pixel_x = 26;
+ pixel_y = -7
+ },
+/obj/machinery/computer/med_data/laptop,
+/obj/structure/table/glass,
+/obj/machinery/button/door{
+ id = "cmoprivacy";
+ name = "Privacy Shutters Control";
+ pixel_x = 26;
+ pixel_y = 4
+ },
+/turf/open/floor/plasteel/barber{
+ dir = 8
+ },
+/area/medical/cmo)
+"crD" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"crE" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Chemistry Lab Maintenance";
+ req_access_txt = "5; 33"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plating,
+/area/medical/chemistry)
+"crF" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = -29
+ },
+/turf/open/floor/plasteel/yellow/corner{
+ dir = 1
+ },
+/area/hallway/primary/aft)
+"crG" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"crH" = (
+/obj/machinery/power/apc{
+ cell_type = 5000;
+ dir = 4;
+ name = "Aft Hallway APC";
+ pixel_x = 24;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plasteel/purple/corner{
+ dir = 4
+ },
+/area/hallway/primary/aft)
+"crI" = (
+/obj/structure/plasticflaps{
+ opacity = 1
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=1";
+ dir = 1;
+ freq = 1400;
+ location = "Research and Development"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/toxins/lab)
+"crJ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"crK" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/white/side{
+ dir = 5
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"crL" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"crM" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"crN" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow,
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "rdprivacy";
+ name = "privacy shutter"
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/hor)
+"crO" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "rdprivacy";
+ name = "privacy shutter"
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/hor)
+"crP" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "rdprivacy";
+ name = "privacy shutter"
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/hor)
+"crQ" = (
+/turf/closed/wall,
+/area/crew_quarters/hor)
+"crR" = (
+/turf/closed/wall/r_wall,
+/area/toxins/storage)
+"crS" = (
+/obj/structure/sign/biohazard,
+/turf/closed/wall/r_wall,
+/area/toxins/storage)
+"crT" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/research{
+ name = "Toxins Storage";
+ req_access_txt = "8"
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "toxins_blastdoor";
+ name = "biohazard containment shutters"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/toxins/storage)
+"crU" = (
+/obj/structure/closet/emcloset,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/toxins/explab)
+"crV" = (
+/obj/structure/closet/radiation,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/toxins/explab)
+"crW" = (
+/obj/structure/closet/l3closet/scientist{
+ pixel_x = -2
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/toxins/explab)
+"crX" = (
+/obj/structure/closet/wardrobe/science_white,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/toxins/explab)
+"crY" = (
+/obj/structure/rack,
+/obj/item/weapon/reagent_containers/blood/random,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"crZ" = (
+/obj/structure/table,
+/obj/structure/bedsheetbin{
+ pixel_x = 2
+ },
+/obj/item/clothing/mask/muzzle,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"csa" = (
+/obj/structure/table,
+/obj/item/weapon/restraints/handcuffs/cable/white,
+/obj/item/weapon/gun/syringe,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"csb" = (
+/obj/structure/rack,
+/obj/item/weapon/hatchet,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"csc" = (
+/obj/machinery/iv_drip{
+ density = 0
+ },
+/obj/item/roller,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"csd" = (
+/obj/structure/rack,
+/obj/item/weapon/tank/internals/anesthetic,
+/obj/item/clothing/mask/gas,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cse" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"csf" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg1"
+ },
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"csg" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"csh" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"csi" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"csj" = (
+/obj/structure/closet/secure_closet/medical2,
+/obj/structure/sign/nosmoking_2{
+ pixel_x = -28
+ },
+/turf/open/floor/plasteel,
+/area/medical/surgery)
+"csk" = (
+/obj/machinery/airalarm{
+ dir = 1;
+ icon_state = "alarm0";
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel/white/side{
+ dir = 1
+ },
+/area/medical/surgery)
+"csl" = (
+/obj/machinery/light,
+/obj/machinery/camera{
+ c_tag = "Medbay Surgery";
+ dir = 1;
+ network = list("SS13","Medbay")
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/surgery)
+"csm" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/open/floor/plasteel/white/side{
+ dir = 1
+ },
+/area/medical/surgery)
+"csn" = (
+/obj/item/device/radio/intercom{
+ broadcasting = 1;
+ freerange = 0;
+ frequency = 1485;
+ listening = 0;
+ name = "Station Intercom (Medbay)";
+ pixel_x = 0;
+ pixel_y = -30
+ },
+/obj/structure/closet/crate/freezer/blood,
+/turf/open/floor/plasteel,
+/area/medical/surgery)
+"cso" = (
+/obj/structure/bed/roller,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/airalarm{
+ dir = 1;
+ icon_state = "alarm0";
+ pixel_y = -22
+ },
+/obj/structure/sign/nosmoking_2{
+ pixel_x = -28
+ },
+/obj/machinery/iv_drip{
+ density = 0
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 2
+ },
+/area/medical/surgery)
+"csp" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 2
+ },
+/area/medical/surgery)
+"csq" = (
+/obj/structure/bed,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/item/weapon/bedsheet/medical,
+/obj/machinery/newscaster{
+ pixel_x = 0;
+ pixel_y = -32
+ },
+/obj/machinery/camera{
+ c_tag = "Medbay Recovery Room";
+ dir = 1;
+ network = list("SS13","Medbay")
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 2
+ },
+/area/medical/surgery)
+"csr" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Medbay Maintenance";
+ req_access_txt = "5"
+ },
+/turf/open/floor/plating,
+/area/medical/cryo)
+"css" = (
+/turf/closed/wall,
+/area/medical/cryo)
+"cst" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/machinery/camera{
+ c_tag = "Medbay Hallway Central";
+ dir = 4;
+ network = list("SS13","Medbay")
+ },
+/turf/open/floor/plasteel/whiteblue/corner{
+ dir = 8
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"csu" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"csv" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 4
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"csw" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command{
+ name = "Chief Medical Officer's Office";
+ req_access_txt = "40";
+ req_one_access_txt = "0"
+ },
+/turf/open/floor/plasteel/barber{
+ dir = 8
+ },
+/area/medical/cmo)
+"csx" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/sortjunction{
+ dir = 8;
+ icon_state = "pipe-j2s";
+ sortType = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/barber{
+ dir = 8
+ },
+/area/medical/cmo)
+"csy" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/barber{
+ dir = 8
+ },
+/area/medical/cmo)
+"csz" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/table/glass,
+/obj/item/weapon/folder/blue,
+/obj/item/weapon/folder/blue,
+/obj/item/weapon/pen,
+/turf/open/floor/plasteel/barber{
+ dir = 8
+ },
+/area/medical/cmo)
+"csA" = (
+/obj/structure/chair/office/light{
+ dir = 8
+ },
+/obj/machinery/requests_console{
+ announcementConsole = 1;
+ department = "Chief Medical Officer's Desk";
+ departmentType = 5;
+ name = "Chief Medical Officer RC";
+ pixel_x = 0;
+ pixel_y = -32
+ },
+/obj/effect/landmark/start{
+ name = "Chief Medical Officer"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/barber{
+ dir = 8
+ },
+/area/medical/cmo)
+"csB" = (
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for monitoring medbay to ensure patient safety.";
+ dir = 8;
+ name = "Medbay Monitor";
+ network = list("Medbay");
+ pixel_x = 29;
+ pixel_y = 0
+ },
+/obj/item/device/radio/intercom{
+ dir = 1;
+ name = "Station Intercom (General)";
+ pixel_y = -29
+ },
+/obj/machinery/computer/card/minor/cmo,
+/turf/open/floor/plasteel/barber{
+ dir = 8
+ },
+/area/medical/cmo)
+"csC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"csD" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"csE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg1"
+ },
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"csF" = (
+/obj/structure/disposalpipe/sortjunction{
+ dir = 8;
+ icon_state = "pipe-j1s";
+ sortType = 11
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9;
+ pixel_y = 0
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"csG" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/sign/poster{
+ pixel_y = 32
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"csH" = (
+/obj/structure/disposalpipe/sortjunction{
+ dir = 8;
+ icon_state = "pipe-j2s";
+ sortType = 23
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"csI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "0";
+ req_one_access_txt = "12;5;9"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"csJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/hallway/primary/aft)
+"csK" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 8;
+ icon_state = "pipe-j1"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"csL" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/hallway/primary/aft)
+"csM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock{
+ name = "Aft Emergency Storage";
+ req_access_txt = "0"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"csN" = (
+/obj/structure/disposalpipe/sortjunction{
+ dir = 8;
+ icon_state = "pipe-j2s";
+ sortType = 14
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"csO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"csP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "0";
+ req_one_access_txt = "7;47;29;12"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"csQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"csR" = (
+/obj/structure/disposalpipe/sortjunction{
+ dir = 8;
+ icon_state = "pipe-j1s";
+ sortType = 12
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"csS" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"csT" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"csU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance{
+ name = "Research Maintenance";
+ req_access_txt = "0";
+ req_one_access_txt = "7;47;29"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/medical/research{
+ name = "Research Division"
+ })
+"csV" = (
+/obj/structure/disposalpipe/junction{
+ dir = 8;
+ icon_state = "pipe-j1"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white/side{
+ dir = 4
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"csW" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/sortjunction{
+ dir = 8;
+ icon_state = "pipe-j2s";
+ sortType = 13
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"csX" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"csY" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow,
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "rdprivacy";
+ name = "privacy shutter"
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/hor)
+"csZ" = (
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for watching the RD's goons from the safety of his office.";
+ name = "Research Monitor";
+ network = list("RD");
+ pixel_x = 0;
+ pixel_y = 2
+ },
+/obj/structure/table/reinforced,
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/crew_quarters/hor)
+"cta" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/modular_computer/console/preset/research,
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/crew_quarters/hor)
+"ctb" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/requests_console{
+ announcementConsole = 1;
+ department = "Research Director's Desk";
+ departmentType = 5;
+ name = "Research Director RC";
+ pixel_x = 0;
+ pixel_y = 30
+ },
+/obj/machinery/modular_computer/console/preset/research,
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/crew_quarters/hor)
+"ctc" = (
+/obj/machinery/status_display{
+ density = 0;
+ layer = 4;
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/obj/effect/landmark/xmastree/rdrod,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/crew_quarters/hor)
+"ctd" = (
+/obj/structure/displaycase/labcage,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/sign/biohazard{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/white,
+/area/crew_quarters/hor)
+"cte" = (
+/obj/item/weapon/storage/secure/safe{
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/crew_quarters/hor)
+"ctf" = (
+/obj/machinery/portable_atmospherics/scrubber/huge,
+/obj/machinery/light_switch{
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/toxins/storage)
+"ctg" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/toxins/storage)
+"cth" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/sign/nosmoking_2{
+ pixel_y = 32
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/toxins/storage)
+"cti" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/machinery/power/apc{
+ cell_type = 5000;
+ dir = 1;
+ name = "Toxins Storage APC";
+ pixel_x = 0;
+ pixel_y = 25
+ },
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/toxins/storage)
+"ctj" = (
+/obj/machinery/portable_atmospherics/scrubber/huge,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/toxins/storage)
+"ctk" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg2"
+ },
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"ctl" = (
+/obj/machinery/camera{
+ active_power_usage = 0;
+ c_tag = "Turbine Vent";
+ dir = 4;
+ network = list("Turbine");
+ use_power = 0
+ },
+/turf/open/space,
+/area/space)
+"ctm" = (
+/obj/structure/grille/broken,
+/turf/open/space,
+/area/space)
+"ctn" = (
+/obj/machinery/vending/cigarette,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cto" = (
+/obj/machinery/vending/assist,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"ctp" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Medbay Maintenance";
+ req_access_txt = "5"
+ },
+/turf/open/floor/plating,
+/area/medical/surgery)
+"ctq" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"ctr" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet/medical,
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 8
+ },
+/area/medical/patients_rooms{
+ name = "Patient Room A"
+ })
+"cts" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/vending/wallmed{
+ pixel_x = 0;
+ pixel_y = 28
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/patients_rooms{
+ name = "Patient Room A"
+ })
+"ctt" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/machinery/light_switch{
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 4
+ },
+/area/medical/patients_rooms{
+ name = "Patient Room A"
+ })
+"ctu" = (
+/obj/machinery/door/airlock/medical{
+ name = "Patient Room A";
+ req_access_txt = "5"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/patients_rooms{
+ name = "Patient Room A"
+ })
+"ctv" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"ctw" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/whiteblue/corner{
+ dir = 4
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"ctx" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/light_switch{
+ pixel_x = -28;
+ pixel_y = 0
+ },
+/obj/machinery/newscaster{
+ pixel_x = 0;
+ pixel_y = -30
+ },
+/turf/open/floor/plasteel/barber{
+ dir = 8
+ },
+/area/medical/cmo)
+"cty" = (
+/obj/machinery/suit_storage_unit/cmo,
+/turf/open/floor/plasteel/barber{
+ dir = 8
+ },
+/area/medical/cmo)
+"ctz" = (
+/obj/structure/table/glass,
+/obj/item/weapon/pen,
+/obj/item/clothing/neck/stethoscope,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 6;
+ pixel_y = -30
+ },
+/turf/open/floor/plasteel/barber{
+ dir = 8
+ },
+/area/medical/cmo)
+"ctA" = (
+/turf/closed/wall/r_wall,
+/area/medical/genetics)
+"ctB" = (
+/turf/closed/wall,
+/area/medical/genetics)
+"ctC" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Genetics Maintenance";
+ req_access_txt = "9";
+ req_one_access_txt = "0"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/medical/genetics)
+"ctD" = (
+/obj/structure/sign/directions/evac{
+ pixel_y = 0
+ },
+/turf/closed/wall,
+/area/medical/genetics)
+"ctE" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/blue/corner{
+ dir = 8
+ },
+/area/hallway/primary/aft)
+"ctF" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"ctG" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/hallway/primary/aft)
+"ctH" = (
+/obj/structure/sign/directions/evac{
+ pixel_y = 0
+ },
+/turf/closed/wall,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"ctI" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/sign/poster{
+ pixel_y = 32
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"ctJ" = (
+/obj/item/weapon/storage/toolbox/emergency,
+/obj/structure/closet/firecloset,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"ctK" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"ctL" = (
+/turf/closed/wall/r_wall,
+/area/toxins/misc_lab{
+ name = "\improper Research Testing Range"
+ })
+"ctM" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Research Testing Range Maintenance";
+ req_access_txt = "0";
+ req_one_access_txt = "7;47;29"
+ },
+/turf/open/floor/plating,
+/area/toxins/misc_lab{
+ name = "\improper Research Testing Range"
+ })
+"ctN" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/turf/open/floor/plasteel/white/side{
+ dir = 6
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"ctO" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"ctP" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"ctQ" = (
+/obj/machinery/button/door{
+ id = "xeno_blastdoor";
+ name = "Secure Lab Shutter Control";
+ pixel_x = -5;
+ pixel_y = -5;
+ req_access_txt = "47"
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/button/door{
+ id = "rdprivacy";
+ name = "Privacy Shutters Control";
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/obj/machinery/button/door{
+ id = "Biohazard";
+ name = "Entrance Shutter Control";
+ pixel_x = -5;
+ pixel_y = 5;
+ req_access_txt = "47"
+ },
+/obj/machinery/button/door{
+ id = "toxins_blastdoor";
+ name = "Toxins Shutter Control";
+ pixel_x = 5;
+ pixel_y = -5;
+ req_access_txt = "47"
+ },
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/crew_quarters/hor)
+"ctR" = (
+/obj/structure/chair/office/light{
+ dir = 8
+ },
+/obj/effect/landmark/start{
+ name = "Research Director"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/crew_quarters/hor)
+"ctS" = (
+/obj/machinery/computer/robotics,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/crew_quarters/hor)
+"ctT" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel/white,
+/area/crew_quarters/hor)
+"ctU" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel/white,
+/area/crew_quarters/hor)
+"ctV" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel/white,
+/area/crew_quarters/hor)
+"ctW" = (
+/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
+/obj/machinery/airalarm{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/toxins/storage)
+"ctX" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/toxins/storage)
+"ctY" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/obj/structure/chair/stool,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/toxins/storage)
+"ctZ" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/toxins/storage)
+"cua" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/toxins/storage)
+"cub" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cuc" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cud" = (
+/obj/structure/closet,
+/obj/item/weapon/storage/toolbox/emergency,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cue" = (
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/machinery/power/solar{
+ id = "aftport";
+ name = "Aft-Port Solar Array"
+ },
+/turf/open/floor/plasteel/airless/solarpanel,
+/area/solar/port)
+"cuf" = (
+/obj/structure/closet,
+/obj/item/weapon/extinguisher,
+/obj/effect/decal/cleanable/cobweb,
+/obj/item/device/flashlight,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cug" = (
+/obj/structure/closet,
+/obj/item/weapon/reagent_containers/glass/beaker{
+ pixel_x = 8;
+ pixel_y = 2
+ },
+/obj/item/weapon/reagent_containers/dropper,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cuh" = (
+/obj/structure/closet/crate,
+/obj/item/stack/cable_coil,
+/obj/item/weapon/grenade/chem_grenade,
+/obj/item/device/flashlight,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cui" = (
+/obj/structure/closet/crate,
+/obj/item/weapon/coin/silver,
+/obj/item/weapon/reagent_containers/spray/weedspray,
+/obj/item/weapon/paper,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cuj" = (
+/obj/effect/decal/cleanable/cobweb,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cuk" = (
+/obj/structure/table,
+/obj/item/weapon/folder/white{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/item/clothing/neck/stethoscope,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Patient Room A APC";
+ pixel_x = -26;
+ pixel_y = 0
+ },
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 8
+ },
+/area/medical/patients_rooms{
+ name = "Patient Room A"
+ })
+"cul" = (
+/obj/structure/chair/office/light{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/patients_rooms{
+ name = "Patient Room A"
+ })
+"cum" = (
+/obj/structure/closet/secure_closet/personal/patient,
+/obj/machinery/button/door{
+ id = "isola";
+ name = "Privacy Shutters";
+ pixel_y = -25
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 4
+ },
+/area/medical/patients_rooms{
+ name = "Patient Room A"
+ })
+"cun" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "isola";
+ name = "privacy shutters"
+ },
+/turf/open/floor/plating,
+/area/medical/patients_rooms{
+ name = "Patient Room A"
+ })
+"cuo" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/whiteblue/corner{
+ dir = 1
+ },
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"cup" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"cuq" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 27;
+ pixel_y = 0
+ },
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"cur" = (
+/obj/item/weapon/storage/box/rxglasses{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/box/bodybags,
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = -29
+ },
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/vault,
+/area/medical/genetics)
+"cus" = (
+/obj/item/clothing/gloves/color/latex,
+/obj/item/clothing/gloves/color/latex,
+/obj/item/weapon/storage/box/disks{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/vault,
+/area/medical/genetics)
+"cut" = (
+/obj/machinery/requests_console{
+ department = "Genetics";
+ departmentType = 0;
+ name = "Genetics Requests Console";
+ pixel_x = 0;
+ pixel_y = 30
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/item/weapon/storage/box/monkeycubes,
+/obj/item/device/radio/headset/headset_medsci,
+/obj/item/device/flashlight/pen{
+ pixel_x = 4;
+ pixel_y = 3
+ },
+/obj/item/device/flashlight/pen{
+ pixel_x = 4;
+ pixel_y = 3
+ },
+/obj/structure/noticeboard{
+ desc = "A board for pinning important notices upon.";
+ name = "notice board";
+ pixel_x = -32;
+ pixel_y = 32
+ },
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/vault,
+/area/medical/genetics)
+"cuu" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "Genetics Lab APC";
+ pixel_y = 24
+ },
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/item/weapon/folder/white{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/item/weapon/folder/white{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/item/weapon/storage/pill_bottle/mutadone,
+/obj/item/weapon/storage/pill_bottle/mannitol,
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/vault,
+/area/medical/genetics)
+"cuv" = (
+/obj/item/weapon/reagent_containers/dropper,
+/obj/item/weapon/reagent_containers/glass/beaker{
+ pixel_x = 8;
+ pixel_y = 2
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/structure/sign/nosmoking_2{
+ pixel_y = 32
+ },
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/vault,
+/area/medical/genetics)
+"cuw" = (
+/obj/structure/filingcabinet/chestdrawer,
+/turf/open/floor/plasteel/blue/side{
+ dir = 9
+ },
+/area/medical/genetics)
+"cux" = (
+/obj/structure/noticeboard{
+ desc = "A board for pinning important notices upon. Probably helpful for keeping track of requests.";
+ name = "requests board";
+ pixel_x = -32;
+ pixel_y = 32
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/blue/side{
+ dir = 5
+ },
+/area/medical/genetics)
+"cuy" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "genetics_shutters";
+ name = "genetics shutters"
+ },
+/turf/open/floor/plating,
+/area/medical/genetics)
+"cuz" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/paper_bin{
+ pixel_x = -2;
+ pixel_y = 6
+ },
+/turf/open/floor/plasteel/blue,
+/area/medical/genetics)
+"cuA" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plasteel/blue/side{
+ dir = 8
+ },
+/area/hallway/primary/aft)
+"cuB" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating{
+ icon_plating = "warnplate"
+ },
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cuC" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 8
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/item/weapon/wrench,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cuD" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cuE" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cuF" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/toxins/misc_lab{
+ name = "\improper Research Testing Range"
+ })
+"cuG" = (
+/turf/open/floor/engine{
+ dir = 9;
+ icon_state = "floor"
+ },
+/area/toxins/misc_lab{
+ name = "\improper Research Testing Range"
+ })
+"cuH" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/toxins/misc_lab{
+ name = "\improper Research Testing Range"
+ })
+"cuI" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white/side{
+ dir = 5
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"cuJ" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"cuK" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/whiteblue/corner{
+ dir = 2
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"cuL" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow,
+/obj/machinery/door/poddoor/preopen{
+ id = "rdprivacy";
+ name = "privacy shutter"
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/hor)
+"cuM" = (
+/obj/machinery/computer/card/minor/rd,
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/crew_quarters/hor)
+"cuN" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/crew_quarters/hor)
+"cuO" = (
+/obj/machinery/computer/mecha,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/crew_quarters/hor)
+"cuP" = (
+/obj/structure/table,
+/obj/item/device/aicard,
+/obj/item/weapon/circuitboard/aicore{
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/crew_quarters/hor)
+"cuQ" = (
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/crew_quarters/hor)
+"cuR" = (
+/obj/structure/table,
+/obj/item/device/taperecorder{
+ pixel_x = -3
+ },
+/obj/item/device/paicard{
+ pixel_x = 4
+ },
+/obj/item/weapon/storage/secure/briefcase,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/crew_quarters/hor)
+"cuS" = (
+/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/toxins/storage)
+"cuT" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/toxins/storage)
+"cuU" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/toxins/storage)
+"cuV" = (
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/toxins/storage)
+"cuW" = (
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Toxins Storage";
+ dir = 8;
+ network = list("SS13","RD")
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/toxins/storage)
+"cuX" = (
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cuY" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cuZ" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Storage Room";
+ req_access_txt = "0";
+ req_one_access_txt = "12;47"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cva" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cvb" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cvc" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cvd" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/solar/port)
+"cve" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/solar/port)
+"cvf" = (
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/solar/port)
+"cvg" = (
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/solar/port)
+"cvh" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/solar/port)
+"cvi" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/solar/port)
+"cvj" = (
+/obj/structure/closet/emcloset,
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = -32;
+ pixel_y = 0
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cvk" = (
+/obj/structure/closet/crate,
+/obj/item/weapon/crowbar/red,
+/obj/item/weapon/pen,
+/obj/item/device/flashlight/pen{
+ pixel_x = 4;
+ pixel_y = 3
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cvl" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cvm" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cvn" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cvo" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/medical/patients_rooms{
+ name = "Patient Room A"
+ })
+"cvp" = (
+/turf/closed/wall,
+/area/medical/patients_rooms{
+ name = "Patient Room A"
+ })
+"cvq" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/structure/sign/examroom{
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"cvr" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"cvs" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"cvt" = (
+/turf/closed/wall,
+/area/medical/genetics_cloning)
+"cvu" = (
+/obj/machinery/shower{
+ icon_state = "shower";
+ dir = 4
+ },
+/obj/machinery/door/window/southleft{
+ dir = 2;
+ name = "Cloning Shower"
+ },
+/obj/structure/mirror{
+ pixel_x = -28
+ },
+/turf/open/floor/plasteel/vault,
+/area/medical/genetics_cloning)
+"cvv" = (
+/obj/machinery/door/window/southleft{
+ base_state = "right";
+ dir = 2;
+ icon_state = "right";
+ name = "Cloning Shower"
+ },
+/obj/structure/sink/kitchen{
+ desc = "A sink used for washing one's hands and face. It looks rusty and home-made";
+ name = "sink";
+ pixel_y = 28
+ },
+/turf/open/floor/plasteel/vault,
+/area/medical/genetics_cloning)
+"cvw" = (
+/obj/machinery/clonepod{
+ pixel_y = 2
+ },
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 29
+ },
+/obj/structure/window/reinforced,
+/turf/open/floor/plasteel/vault,
+/area/medical/genetics_cloning)
+"cvx" = (
+/obj/machinery/computer/scan_consolenew,
+/obj/machinery/camera{
+ c_tag = "Genetics Lab";
+ dir = 4;
+ network = list("SS13","Medbay")
+ },
+/turf/open/floor/plasteel/whiteblue,
+/area/medical/genetics)
+"cvy" = (
+/obj/structure/chair/office/light{
+ dir = 8
+ },
+/obj/effect/landmark/start{
+ name = "Geneticist"
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 9
+ },
+/area/medical/genetics)
+"cvz" = (
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 1
+ },
+/area/medical/genetics)
+"cvA" = (
+/obj/structure/chair/office/light{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/landmark/start{
+ name = "Geneticist"
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 5
+ },
+/area/medical/genetics)
+"cvB" = (
+/obj/machinery/computer/scan_consolenew,
+/turf/open/floor/plasteel/whiteblue,
+/area/medical/genetics)
+"cvC" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/item/weapon/storage/box/syringes,
+/obj/item/weapon/storage/box/beakers{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/blue/side{
+ dir = 8
+ },
+/area/medical/genetics)
+"cvD" = (
+/obj/structure/chair/office/light{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/landmark/start{
+ name = "Geneticist"
+ },
+/turf/open/floor/plasteel/blue/side{
+ dir = 4
+ },
+/area/medical/genetics)
+"cvE" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/folder/white{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/item/weapon/pen,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/window/eastright{
+ dir = 8;
+ name = "Genetics Desk";
+ req_access_txt = "5;9"
+ },
+/obj/machinery/door/window/southleft{
+ dir = 4;
+ name = "Outer Window"
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "genetics_shutters";
+ name = "genetics shutters"
+ },
+/turf/open/floor/plating,
+/area/medical/genetics)
+"cvF" = (
+/turf/open/floor/plasteel/blue,
+/area/medical/genetics)
+"cvG" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 27;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/hallway/primary/aft)
+"cvH" = (
+/turf/closed/wall,
+/area/assembly/chargebay)
+"cvI" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Mech Bay Maintenance";
+ req_access_txt = "29"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/assembly/chargebay)
+"cvJ" = (
+/obj/structure/sign/nosmoking_2{
+ pixel_x = -29;
+ pixel_y = 0
+ },
+/turf/open/floor/engine{
+ dir = 9;
+ icon_state = "floor"
+ },
+/area/toxins/misc_lab{
+ name = "\improper Research Testing Range"
+ })
+"cvK" = (
+/obj/machinery/magnetic_module,
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/obj/structure/target_stake,
+/obj/effect/turf_decal/bot{
+ dir = 9
+ },
+/turf/open/floor/plasteel{
+ dir = 9
+ },
+/area/toxins/misc_lab{
+ name = "\improper Research Testing Range"
+ })
+"cvL" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/poddoor/preopen{
+ id = "researchrangeshutters";
+ name = "blast door"
+ },
+/turf/open/floor/plating,
+/area/toxins/misc_lab{
+ name = "\improper Research Testing Range"
+ })
+"cvM" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/white/side{
+ dir = 4
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"cvN" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"cvO" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 4
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"cvP" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command{
+ name = "Research Director's Office";
+ req_access_txt = "30";
+ req_one_access_txt = "0"
+ },
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/crew_quarters/hor)
+"cvQ" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/crew_quarters/hor)
+"cvR" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/crew_quarters/hor)
+"cvS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/crew_quarters/hor)
+"cvT" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_Toxins = 0
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/crew_quarters/hor)
+"cvU" = (
+/obj/machinery/holopad,
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/crew_quarters/hor)
+"cvV" = (
+/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27;
+ pixel_y = 0
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/toxins/storage)
+"cvW" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/disposalpipe/segment,
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/toxins/storage)
+"cvX" = (
+/obj/machinery/portable_atmospherics/canister/toxins,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/toxins/storage)
+"cvY" = (
+/obj/machinery/portable_atmospherics/canister/toxins,
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 29
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/toxins/storage)
+"cvZ" = (
+/obj/structure/closet/crate,
+/obj/item/device/multitool,
+/obj/item/clothing/gloves/color/fyellow,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cwa" = (
+/obj/structure/rack,
+/obj/item/hand_labeler_refill,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cwb" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cwc" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cwd" = (
+/obj/structure/closet/crate,
+/obj/item/weapon/coin/silver,
+/obj/item/device/flashlight/seclite,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cwe" = (
+/obj/structure/cable,
+/obj/machinery/power/solar{
+ id = "aftport";
+ name = "Aft-Port Solar Array"
+ },
+/turf/open/floor/plasteel/airless/solarpanel,
+/area/solar/port)
+"cwf" = (
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/space)
+"cwg" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/space)
+"cwh" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cwi" = (
+/obj/machinery/door/airlock/external{
+ req_access_txt = "13"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cwj" = (
+/obj/item/weapon/cigbutt,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cwk" = (
+/obj/machinery/vending/cigarette,
+/obj/machinery/status_display{
+ density = 0;
+ layer = 4;
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/obj/structure/sign/poster{
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/white/side{
+ dir = 4
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"cwl" = (
+/obj/structure/rack,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka{
+ pixel_x = 3;
+ pixel_y = 2
+ },
+/obj/item/weapon/reagent_containers/food/drinks/bottle/vermouth{
+ pixel_x = -4;
+ pixel_y = 3
+ },
+/obj/item/weapon/reagent_containers/food/drinks/bottle/whiskey,
+/obj/structure/sign/poster{
+ pixel_y = 32
+ },
+/turf/open/floor/wood,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cwm" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cwn" = (
+/obj/structure/rack,
+/obj/item/clothing/glasses/sunglasses,
+/obj/item/device/flashlight/pen{
+ pixel_x = 0
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cwo" = (
+/obj/structure/table,
+/obj/item/weapon/folder/white{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/item/clothing/neck/stethoscope,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Patient Room B APC";
+ pixel_x = -26;
+ pixel_y = 0
+ },
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
+ },
+/obj/machinery/light_switch{
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 8
+ },
+/area/medical/exam_room{
+ name = "Patient Room B"
+ })
+"cwp" = (
+/obj/structure/chair/office/light{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/effect/landmark/start{
+ name = "Medical Doctor"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/vending/wallmed{
+ pixel_y = 28
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/exam_room{
+ name = "Patient Room B"
+ })
+"cwq" = (
+/obj/structure/closet/secure_closet/personal/patient,
+/obj/machinery/button/door{
+ id = "isolb";
+ name = "Privacy Shutters";
+ pixel_y = 25
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 4
+ },
+/area/medical/exam_room{
+ name = "Patient Room B"
+ })
+"cwr" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "isolb";
+ name = "privacy shutters"
+ },
+/turf/open/floor/plating,
+/area/medical/exam_room{
+ name = "Patient Room B"
+ })
+"cws" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteblue/corner{
+ dir = 8
+ },
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cwt" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cwu" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/sink{
+ dir = 4;
+ icon_state = "sink";
+ pixel_x = 11;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cwv" = (
+/obj/structure/sink{
+ dir = 8;
+ icon_state = "sink";
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/obj/machinery/light_switch{
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 9
+ },
+/area/medical/genetics_cloning)
+"cww" = (
+/obj/effect/landmark/start{
+ name = "Geneticist"
+ },
+/obj/machinery/holopad,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 1
+ },
+/area/medical/genetics_cloning)
+"cwx" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/obj/machinery/computer/cloning,
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 5
+ },
+/area/medical/genetics_cloning)
+"cwy" = (
+/obj/machinery/dna_scannernew,
+/obj/machinery/light_switch{
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/whiteblue,
+/area/medical/genetics)
+"cwz" = (
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 8
+ },
+/area/medical/genetics)
+"cwA" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 2;
+ on = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"cwB" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 4
+ },
+/area/medical/genetics)
+"cwC" = (
+/obj/machinery/dna_scannernew,
+/turf/open/floor/plasteel/whiteblue,
+/area/medical/genetics)
+"cwD" = (
+/obj/item/weapon/storage/box/disks{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = -29
+ },
+/obj/machinery/camera{
+ c_tag = "Genetics Desk";
+ dir = 4;
+ network = list("SS13","Medbay")
+ },
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/blue/side{
+ dir = 8
+ },
+/area/medical/genetics)
+"cwE" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/button/door{
+ id = "genetics_shutters";
+ name = "genetics shutters control";
+ pixel_x = 28;
+ pixel_y = 0;
+ req_access_txt = "9"
+ },
+/turf/open/floor/plasteel/blue/side{
+ dir = 4
+ },
+/area/medical/genetics)
+"cwF" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/open/floor/plasteel/blue/corner{
+ dir = 1
+ },
+/area/hallway/primary/aft)
+"cwG" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/sign/nosmoking_2{
+ pixel_x = -28;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel,
+/area/assembly/chargebay)
+"cwH" = (
+/obj/machinery/mech_bay_recharge_port,
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/assembly/chargebay)
+"cwI" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'HIGH VOLTAGE'";
+ icon_state = "shock";
+ name = "HIGH VOLTAGE";
+ pixel_y = 31
+ },
+/turf/open/floor/mech_bay_recharge_floor,
+/area/assembly/chargebay)
+"cwJ" = (
+/obj/machinery/computer/mech_bay_power_console,
+/obj/item/device/radio/intercom{
+ broadcasting = 0;
+ listening = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 20
+ },
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/open/floor/plasteel/circuit/gcircuit,
+/area/assembly/chargebay)
+"cwK" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/toxins/misc_lab{
+ name = "\improper Research Testing Range"
+ })
+"cwL" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/toxins/misc_lab{
+ name = "\improper Research Testing Range"
+ })
+"cwM" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/camera{
+ c_tag = "Research Division Hallway - Mech Bay";
+ dir = 4;
+ network = list("SS13","RD")
+ },
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/white/side{
+ dir = 6
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"cwN" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"cwO" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/whiteblue/corner{
+ dir = 4
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"cwP" = (
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "RD Office APC";
+ pixel_x = 0;
+ pixel_y = -27
+ },
+/obj/structure/cable/yellow,
+/obj/machinery/light_switch{
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/obj/item/weapon/twohanded/required/kirbyplants/dead,
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/crew_quarters/hor)
+"cwQ" = (
+/obj/item/weapon/paper_bin{
+ pixel_x = 0;
+ pixel_y = 7
+ },
+/obj/structure/table,
+/obj/machinery/newscaster{
+ pixel_x = 0;
+ pixel_y = -30
+ },
+/obj/item/weapon/stamp/rd{
+ pixel_x = -11;
+ pixel_y = 0;
+ pixel_x = 3;
+ pixel_y = -2
+ },
+/obj/item/weapon/folder/white{
+ pixel_x = 9;
+ pixel_y = -1
+ },
+/obj/item/weapon/pen,
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/crew_quarters/hor)
+"cwR" = (
+/obj/structure/table,
+/obj/item/weapon/cartridge/signal/toxins,
+/obj/item/weapon/cartridge/signal/toxins{
+ pixel_x = -4;
+ pixel_y = 2
+ },
+/obj/item/weapon/cartridge/signal/toxins{
+ pixel_x = 4;
+ pixel_y = 6
+ },
+/obj/machinery/camera{
+ c_tag = "Research Director's Office";
+ dir = 1;
+ network = list("SS13","RD")
+ },
+/obj/machinery/light,
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/crew_quarters/hor)
+"cwS" = (
+/obj/structure/closet/secure_closet/RD,
+/obj/machinery/keycard_auth{
+ pixel_x = 0;
+ pixel_y = -24
+ },
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/crew_quarters/hor)
+"cwT" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_x = 0;
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/crew_quarters/hor)
+"cwU" = (
+/obj/structure/filingcabinet/chestdrawer,
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -29
+ },
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/crew_quarters/hor)
+"cwV" = (
+/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/toxins/storage)
+"cwW" = (
+/obj/item/weapon/cigbutt,
+/obj/machinery/light_switch{
+ pixel_y = -23
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/toxins/storage)
+"cwX" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/disposalpipe/segment,
+/obj/effect/landmark/start{
+ name = "Scientist"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/toxins/storage)
+"cwY" = (
+/obj/machinery/portable_atmospherics/canister/toxins,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/machinery/light/small,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/toxins/storage)
+"cwZ" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "airlock access";
+ req_access_txt = "0";
+ req_one_access_txt = "12;47"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cxa" = (
+/obj/item/stack/cable_coil,
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/solar/port)
+"cxb" = (
+/obj/structure/rack,
+/obj/item/weapon/tank/internals/air,
+/obj/item/weapon/wrench,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating{
+ icon_state = "platingdmg2"
+ },
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cxc" = (
+/obj/item/trash/chips,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cxd" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cxe" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet/medical,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 8
+ },
+/area/medical/exam_room{
+ name = "Patient Room B"
+ })
+"cxf" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/exam_room{
+ name = "Patient Room B"
+ })
+"cxg" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 4
+ },
+/area/medical/exam_room{
+ name = "Patient Room B"
+ })
+"cxh" = (
+/obj/machinery/door/airlock/medical{
+ name = "Patient Room B";
+ req_access_txt = "5"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/exam_room{
+ name = "Patient Room B"
+ })
+"cxi" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 8
+ },
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cxj" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cxk" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/whiteblue/corner{
+ dir = 2
+ },
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cxl" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/medical/genetics_cloning)
+"cxm" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 8
+ },
+/area/medical/genetics_cloning)
+"cxn" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/genetics_cloning)
+"cxo" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 2;
+ initialize_directions = 11
+ },
+/obj/machinery/dna_scannernew,
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 4
+ },
+/area/medical/genetics_cloning)
+"cxp" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/medical/genetics)
+"cxq" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 9
+ },
+/area/medical/genetics)
+"cxr" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteblue/corner{
+ dir = 1
+ },
+/area/medical/genetics)
+"cxs" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"cxt" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteblue/corner{
+ dir = 4
+ },
+/area/medical/genetics)
+"cxu" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 5
+ },
+/area/medical/genetics)
+"cxv" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/turf/open/floor/plating,
+/area/medical/genetics)
+"cxw" = (
+/obj/item/weapon/folder/white{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/item/stack/packageWrap,
+/obj/item/weapon/pen,
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/blue/side{
+ dir = 8
+ },
+/area/medical/genetics)
+"cxx" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel/blue/corner{
+ dir = 4
+ },
+/area/medical/genetics)
+"cxy" = (
+/obj/structure/sign/nosmoking_2{
+ pixel_x = 28
+ },
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/open/floor/plasteel/blue/side{
+ dir = 5
+ },
+/area/medical/genetics)
+"cxz" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=10.1-Central-from-Aft";
+ location = "10-Aft-To-Central"
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/hallway/primary/aft)
+"cxA" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cxB" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4;
+ initialize_directions = 11
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=9.1-Escape-1";
+ location = "8.1-Aft-to-Escape"
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/hallway/primary/aft)
+"cxC" = (
+/obj/machinery/door/poddoor/shutters{
+ id = "Skynet_launch";
+ name = "Mech Bay"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/assembly/chargebay)
+"cxD" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/assembly/chargebay)
+"cxE" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/circuit/gcircuit,
+/area/assembly/chargebay)
+"cxF" = (
+/turf/open/floor/plasteel/circuit/gcircuit,
+/area/assembly/chargebay)
+"cxG" = (
+/obj/machinery/camera{
+ c_tag = "Mech Bay";
+ dir = 8;
+ network = list("SS13","RD")
+ },
+/turf/open/floor/plasteel/circuit/gcircuit,
+/area/assembly/chargebay)
+"cxH" = (
+/turf/open/floor/plating,
+/area/toxins/misc_lab{
+ name = "\improper Research Testing Range"
+ })
+"cxI" = (
+/obj/machinery/camera{
+ c_tag = "Research Testing Range";
+ dir = 8;
+ network = list("SS13","RD");
+ pixel_y = -22
+ },
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/turf/open/floor/plating,
+/area/toxins/misc_lab{
+ name = "\improper Research Testing Range"
+ })
+"cxJ" = (
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 29
+ },
+/obj/structure/sink{
+ dir = 4;
+ icon_state = "sink";
+ pixel_x = 11;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"cxK" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/research{
+ name = "Toxins Storage";
+ req_access_txt = "8"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/toxins/storage)
+"cxL" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg1"
+ },
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cxM" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9;
+ pixel_y = 0
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cxN" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cxO" = (
+/obj/machinery/door/airlock/external{
+ req_access_txt = "0";
+ req_one_access_txt = "13;8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cxP" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cxQ" = (
+/obj/machinery/computer/slot_machine{
+ pixel_y = 2
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cxR" = (
+/obj/structure/rack,
+/obj/item/clothing/mask/gas,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cxS" = (
+/obj/item/latexballon,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cxT" = (
+/obj/item/clothing/suit/ianshirt,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cxU" = (
+/turf/closed/wall,
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cxV" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/whiteblue/corner{
+ dir = 1
+ },
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cxW" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cxX" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 4
+ },
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cxY" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/glass_medical{
+ id_tag = "CloningDoor";
+ name = "Cloning Lab";
+ req_access_txt = "5; 68"
+ },
+/turf/open/floor/plasteel/whiteblue,
+/area/medical/genetics_cloning)
+"cxZ" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 8
+ },
+/area/medical/genetics_cloning)
+"cya" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 2;
+ on = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/genetics_cloning)
+"cyb" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 4
+ },
+/area/medical/genetics_cloning)
+"cyc" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_research{
+ name = "Genetics Lab";
+ req_access_txt = "5; 9; 68"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteblue,
+/area/medical/genetics)
+"cyd" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 8
+ },
+/area/medical/genetics)
+"cye" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"cyf" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/obj/effect/landmark/start{
+ name = "Geneticist"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"cyg" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"cyh" = (
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 4
+ },
+/area/medical/genetics)
+"cyi" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/research{
+ icon_state = "door_closed";
+ id_tag = "AuxGenetics";
+ locked = 0;
+ name = "Genetics Lab";
+ req_access_txt = "9";
+ req_one_access_txt = "0"
+ },
+/turf/open/floor/plasteel,
+/area/medical/genetics)
+"cyj" = (
+/turf/open/floor/plasteel/blue/side{
+ dir = 8
+ },
+/area/medical/genetics)
+"cyk" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/medical/genetics)
+"cyl" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/blue/side{
+ dir = 4
+ },
+/area/medical/genetics)
+"cym" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/research{
+ icon_state = "door_closed";
+ id_tag = "AuxGenetics";
+ locked = 0;
+ name = "Genetics Access";
+ req_access_txt = "9";
+ req_one_access_txt = "0"
+ },
+/turf/open/floor/plasteel,
+/area/medical/genetics)
+"cyn" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/hallway/primary/aft)
+"cyo" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/hallway/primary/aft)
+"cyp" = (
+/obj/machinery/door/poddoor/shutters{
+ id = "Skynet_launch";
+ name = "Mech Bay"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/assembly/chargebay)
+"cyq" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/assembly/chargebay)
+"cyr" = (
+/turf/open/floor/bluegrid,
+/area/assembly/chargebay)
+"cys" = (
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/obj/effect/landmark/start{
+ name = "Roboticist"
+ },
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 4
+ },
+/turf/open/floor/bluegrid,
+/area/assembly/chargebay)
+"cyt" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating,
+/area/toxins/misc_lab{
+ name = "\improper Research Testing Range"
+ })
+"cyu" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating,
+/area/toxins/misc_lab{
+ name = "\improper Research Testing Range"
+ })
+"cyv" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"cyw" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"cyx" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"cyy" = (
+/obj/structure/sign/biohazard,
+/turf/closed/wall,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cyz" = (
+/obj/machinery/light_switch{
+ pixel_y = 28
+ },
+/obj/structure/closet/l3closet/scientist{
+ pixel_x = -2
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cyA" = (
+/obj/structure/closet/wardrobe/science_white,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cyB" = (
+/obj/machinery/firealarm{
+ dir = 2;
+ pixel_y = 24
+ },
+/obj/machinery/atmospherics/components/unary/thermomachine/freezer,
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cyC" = (
+/obj/item/device/radio/intercom{
+ pixel_y = 25
+ },
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cyD" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cyE" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Toxins - Lab";
+ dir = 2;
+ network = list("SS13","RD")
+ },
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/obj/machinery/portable_atmospherics/canister,
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cyF" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/machinery/airalarm{
+ frequency = 1439;
+ pixel_y = 23
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cyG" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/obj/structure/sign/nosmoking_2{
+ pixel_y = 32
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cyH" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/portable_atmospherics/canister,
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cyI" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cyJ" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 27;
+ pixel_y = 0
+ },
+/obj/machinery/light_switch{
+ pixel_y = 28
+ },
+/obj/machinery/portable_atmospherics/scrubber,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cyK" = (
+/turf/closed/wall/r_wall,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cyL" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cyM" = (
+/obj/machinery/door/airlock/research{
+ name = "Toxins Space Access";
+ req_access_txt = "8"
+ },
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ dir = 1
+ },
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cyN" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/machinery/airalarm{
+ pixel_y = 24
+ },
+/obj/item/weapon/paper_bin{
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/white/side{
+ dir = 2
+ },
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cyO" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/status_display{
+ density = 0;
+ layer = 4;
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/white/side{
+ dir = 2
+ },
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cyP" = (
+/obj/machinery/vending/coffee,
+/obj/structure/sign/map/left{
+ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";
+ icon_state = "map-left-MS";
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/white/side{
+ dir = 2
+ },
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cyQ" = (
+/obj/structure/sign/map/right{
+ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";
+ icon_state = "map-right-MS";
+ pixel_y = 32
+ },
+/obj/machinery/vending/cola/random,
+/turf/open/floor/plasteel/white/side{
+ dir = 2
+ },
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cyR" = (
+/obj/machinery/vending/cigarette,
+/obj/structure/noticeboard{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/white/side{
+ dir = 2
+ },
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cyS" = (
+/obj/structure/chair/stool,
+/obj/structure/sign/poster{
+ pixel_y = 32
+ },
+/turf/open/floor/wood,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cyT" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cyU" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/sign/nosmoking_2{
+ pixel_x = 28
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/whiteblue/corner{
+ dir = 4
+ },
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cyV" = (
+/obj/machinery/button/door{
+ desc = "A remote control switch for the cloning door.";
+ id = "CloningDoor";
+ name = "Cloning Exit Button";
+ normaldoorcontrol = 1;
+ pixel_x = -23;
+ pixel_y = 8
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 10
+ },
+/area/medical/genetics_cloning)
+"cyW" = (
+/obj/effect/landmark/start{
+ name = "Geneticist"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 2
+ },
+/area/medical/genetics_cloning)
+"cyX" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9;
+ pixel_y = 0
+ },
+/obj/machinery/power/apc{
+ dir = 4;
+ locked = 0;
+ name = "Cloning Lab APC";
+ pixel_x = 24;
+ pixel_y = 0
+ },
+/obj/structure/cable/yellow,
+/obj/machinery/camera{
+ c_tag = "Genetics Cloning Lab";
+ dir = 8;
+ network = list("SS13","Medbay")
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 6
+ },
+/area/medical/genetics_cloning)
+"cyY" = (
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 10
+ },
+/area/medical/genetics)
+"cyZ" = (
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 2
+ },
+/area/medical/genetics)
+"cza" = (
+/obj/structure/sink{
+ dir = 4;
+ icon_state = "sink";
+ pixel_x = 11;
+ pixel_y = 0
+ },
+/obj/structure/mirror{
+ pixel_x = 28
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 6
+ },
+/area/medical/genetics)
+"czb" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/blue/side{
+ dir = 10
+ },
+/area/medical/genetics)
+"czc" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/blue/side{
+ dir = 0
+ },
+/area/medical/genetics)
+"czd" = (
+/obj/machinery/light_switch{
+ pixel_x = 23;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/blue/side{
+ dir = 6
+ },
+/area/medical/genetics)
+"cze" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/medical/genetics)
+"czf" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = -26
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/hallway/primary/aft)
+"czg" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"czh" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4;
+ initialize_directions = 11
+ },
+/obj/machinery/button/door{
+ dir = 2;
+ id = "Skynet_launch";
+ name = "Mech Bay Door Control";
+ pixel_x = 26;
+ pixel_y = 6;
+ req_one_access_txt = "29"
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/hallway/primary/aft)
+"czi" = (
+/obj/machinery/button/door{
+ dir = 2;
+ id = "Skynet_launch";
+ name = "Mech Bay Door Control";
+ pixel_x = -26;
+ pixel_y = 6
+ },
+/obj/machinery/light_switch{
+ pixel_x = -23;
+ pixel_y = -2
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/assembly/chargebay)
+"czj" = (
+/turf/open/floor/mech_bay_recharge_floor,
+/area/assembly/chargebay)
+"czk" = (
+/obj/machinery/computer/mech_bay_power_console,
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/open/floor/bluegrid,
+/area/assembly/chargebay)
+"czl" = (
+/obj/structure/table/reinforced,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27;
+ pixel_y = 0
+ },
+/obj/item/weapon/folder/white{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/item/weapon/paper/range{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/toxins/misc_lab{
+ name = "\improper Research Testing Range"
+ })
+"czm" = (
+/obj/machinery/door/window/westleft{
+ base_state = "right";
+ dir = 1;
+ icon_state = "right";
+ name = "door";
+ req_access_txt = "0"
+ },
+/turf/open/floor/engine{
+ dir = 9;
+ icon_state = "floor"
+ },
+/area/toxins/misc_lab{
+ name = "\improper Research Testing Range"
+ })
+"czn" = (
+/obj/structure/table/reinforced,
+/obj/machinery/magnetic_controller{
+ autolink = 1;
+ pixel_y = 3
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/item/clothing/ears/earmuffs,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/toxins/misc_lab{
+ name = "\improper Research Testing Range"
+ })
+"czo" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/whitepurple/corner{
+ dir = 8
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"czp" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"czq" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whitepurple/corner{
+ dir = 2
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"czr" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"czs" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"czt" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"czu" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 5
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"czv" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible,
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"czw" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible,
+/obj/machinery/meter,
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"czx" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 9
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"czy" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 5
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"czz" = (
+/obj/machinery/atmospherics/components/trinary/filter{
+ density = 0;
+ dir = 8;
+ req_access = "0"
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"czA" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"czB" = (
+/obj/machinery/portable_atmospherics/pump,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"czC" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "0";
+ req_one_access_txt = "12;47"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"czD" = (
+/turf/closed/wall,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"czE" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/folder/white{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/item/weapon/folder/white{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/machinery/door/firedoor,
+/obj/item/weapon/reagent_containers/glass/bottle/epinephrine,
+/obj/item/weapon/reagent_containers/syringe,
+/obj/item/weapon/pen,
+/turf/open/floor/plasteel/whitegreen,
+/area/medical/medbay{
+ name = "Medbay Central"
+ })
+"czF" = (
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ dir = 1
+ },
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"czG" = (
+/obj/item/stack/rods{
+ amount = 50
+ },
+/obj/item/stack/sheet/glass{
+ amount = 50
+ },
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/obj/item/target,
+/obj/item/target/syndicate,
+/obj/item/target/alien,
+/obj/item/target/clown,
+/obj/structure/closet/crate/secure{
+ desc = "A secure crate containing various materials for building a customised test-site.";
+ name = "Test Site Materials Crate";
+ req_access_txt = "8"
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ dir = 1
+ },
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"czH" = (
+/obj/machinery/airalarm{
+ desc = "This particular atmos control unit appears to have no access restrictions.";
+ dir = 8;
+ icon_state = "alarm0";
+ locked = 0;
+ name = "all-access air alarm";
+ pixel_x = 24;
+ req_access = "0";
+ req_one_access = "0"
+ },
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/obj/structure/chair/stool{
+ pixel_y = 8
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/incinerator)
+"czI" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'BOMB RANGE";
+ name = "BOMB RANGE"
+ },
+/turf/closed/wall,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"czJ" = (
+/turf/closed/wall,
+/area/toxins/test_area)
+"czK" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/toxins/test_area)
+"czL" = (
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/solar/port)
+"czM" = (
+/obj/structure/chair/stool,
+/obj/structure/sign/poster{
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg1"
+ },
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"czN" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Medbay Maintenance";
+ req_access_txt = "5"
+ },
+/turf/open/floor/plating,
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"czO" = (
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"czP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"czQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"czR" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"czS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/item/weapon/cigbutt,
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"czT" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/medical{
+ name = "Medbay Break Room";
+ req_access_txt = "5"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"czU" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 8
+ },
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"czV" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"czW" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "Medbay Aft APC";
+ pixel_x = 26;
+ pixel_y = 0
+ },
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/disposalpipe/junction,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"czX" = (
+/obj/item/weapon/book/manual/medical_cloning{
+ pixel_y = 6
+ },
+/obj/item/weapon/paper,
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/vault,
+/area/medical/genetics_cloning)
+"czY" = (
+/obj/item/weapon/storage/box/rxglasses{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/box/bodybags,
+/obj/item/weapon/pen,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/vault,
+/area/medical/genetics_cloning)
+"czZ" = (
+/obj/structure/closet/secure_closet/personal/patient,
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/vault,
+/area/medical/genetics_cloning)
+"cAa" = (
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/structure/closet/wardrobe/genetics_white,
+/turf/open/floor/plasteel/vault,
+/area/medical/genetics)
+"cAb" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/bed/roller,
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/mob/living/carbon/monkey,
+/turf/open/floor/plasteel/freezer,
+/area/medical/genetics)
+"cAc" = (
+/obj/structure/bed/roller,
+/obj/machinery/door/window/westleft{
+ dir = 1;
+ name = "Monkey Pen";
+ pixel_y = 2;
+ req_access_txt = "9"
+ },
+/turf/open/floor/plasteel/freezer,
+/area/medical/genetics)
+"cAd" = (
+/obj/machinery/light,
+/obj/machinery/door/window/westleft{
+ base_state = "right";
+ dir = 1;
+ icon_state = "right";
+ name = "Monkey Pen";
+ pixel_y = 2;
+ req_access_txt = "9"
+ },
+/obj/structure/bed/roller,
+/mob/living/carbon/monkey,
+/turf/open/floor/plasteel/freezer,
+/area/medical/genetics)
+"cAe" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 0
+ },
+/obj/structure/bed/roller,
+/mob/living/carbon/monkey,
+/turf/open/floor/plasteel/freezer,
+/area/medical/genetics)
+"cAf" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/machinery/airalarm{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22
+ },
+/turf/open/floor/plasteel/vault,
+/area/medical/genetics)
+"cAg" = (
+/obj/structure/closet/secure_closet/personal/patient,
+/turf/open/floor/plasteel/vault,
+/area/medical/genetics)
+"cAh" = (
+/obj/machinery/airalarm{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22
+ },
+/obj/machinery/camera{
+ c_tag = "Aft Primary Hallway - Middle";
+ dir = 4;
+ network = list("SS13")
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/hallway/primary/aft)
+"cAi" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cAj" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/hallway/primary/aft)
+"cAk" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/research{
+ name = "Mech Bay";
+ req_access_txt = "29";
+ req_one_access_txt = "0"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/assembly/chargebay)
+"cAl" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/assembly/chargebay)
+"cAm" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/assembly/chargebay)
+"cAn" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/assembly/chargebay)
+"cAo" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "Mech Bay APC";
+ pixel_x = 28;
+ pixel_y = 0
+ },
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plasteel,
+/area/assembly/chargebay)
+"cAp" = (
+/obj/structure/rack,
+/obj/item/target,
+/obj/item/target,
+/obj/item/target/alien,
+/obj/item/target/alien,
+/obj/item/target/clown,
+/obj/item/target/clown,
+/obj/item/target/syndicate,
+/obj/item/target/syndicate,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/light_switch{
+ pixel_x = -25
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/toxins/misc_lab{
+ name = "\improper Research Testing Range"
+ })
+"cAq" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/toxins/misc_lab{
+ name = "\improper Research Testing Range"
+ })
+"cAr" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/toxins/misc_lab{
+ name = "\improper Research Testing Range"
+ })
+"cAs" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/research{
+ name = "Research Testing Range";
+ req_access_txt = "0";
+ req_one_access_txt = "7;47;29"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/purple,
+/area/toxins/misc_lab{
+ name = "\improper Research Testing Range"
+ })
+"cAt" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 8
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"cAu" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"cAv" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 4
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"cAw" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/research{
+ name = "Toxins Lab";
+ req_access_txt = "8"
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "toxins_blastdoor";
+ name = "biohazard containment shutters"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cAx" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cAy" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cAz" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 2
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cAA" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cAB" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cAC" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cAD" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cAE" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/holopad,
+/obj/effect/landmark/start{
+ name = "Scientist"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cAF" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4;
+ initialize_directions = 11
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cAG" = (
+/obj/structure/window/reinforced,
+/obj/machinery/portable_atmospherics/scrubber,
+/obj/item/weapon/storage/firstaid/toxin,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cAH" = (
+/obj/structure/sign/biohazard,
+/turf/closed/wall/r_wall,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cAI" = (
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cAJ" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cAK" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cAL" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cAM" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/research{
+ cyclelinkeddir = 2;
+ id_tag = "ResearchExt";
+ name = "Research Division";
+ req_access_txt = "0";
+ req_one_access_txt = "47"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/medical/research{
+ name = "Research Division"
+ })
+"cAN" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cAO" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for watching the test chamber.";
+ dir = 8;
+ layer = 4;
+ name = "Test Chamber Telescreen";
+ network = list("Toxins");
+ pixel_x = 30;
+ pixel_y = 0
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cAP" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cAQ" = (
+/obj/structure/window/reinforced,
+/obj/item/target,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/toxins/test_area)
+"cAR" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 8
+ },
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/structure/sign/poster{
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/turf/open/floor/plating,
+/area/medical/research{
+ name = "Research Division"
+ })
+"cAS" = (
+/obj/structure/chair/stool,
+/obj/item/device/radio/intercom{
+ broadcasting = 1;
+ freerange = 0;
+ frequency = 1485;
+ listening = 0;
+ name = "Station Intercom (Medbay)";
+ pixel_x = -30;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cAT" = (
+/obj/structure/chair/stool,
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cAU" = (
+/obj/item/weapon/cigbutt,
+/obj/machinery/holopad,
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cAV" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cAW" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/sink{
+ dir = 4;
+ icon_state = "sink";
+ pixel_x = 11;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cAX" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/tinted/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cAY" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 2
+ },
+/turf/open/floor/plasteel/whiteblue/corner{
+ dir = 1
+ },
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cAZ" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cBa" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/disposalpipe/segment,
+/obj/item/device/radio/intercom{
+ broadcasting = 1;
+ freerange = 0;
+ frequency = 1485;
+ listening = 0;
+ name = "Station Intercom (Medbay)";
+ pixel_x = 30;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cBb" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/medical/genetics_cloning)
+"cBc" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/centcom{
+ name = "Genetics";
+ opacity = 1;
+ req_access_txt = "9"
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/genetics)
+"cBd" = (
+/obj/structure/sign/directions/evac{
+ pixel_y = 0
+ },
+/turf/closed/wall,
+/area/hallway/primary/aft)
+"cBe" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/hallway/primary/aft)
+"cBf" = (
+/obj/structure/sign/directions/evac{
+ pixel_y = 0
+ },
+/turf/closed/wall,
+/area/assembly/chargebay)
+"cBg" = (
+/obj/machinery/recharge_station,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/assembly/chargebay)
+"cBh" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/assembly/chargebay)
+"cBi" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 28
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/assembly/chargebay)
+"cBj" = (
+/obj/structure/table,
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = -25
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/obj/item/clothing/glasses/science,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/toxins/misc_lab{
+ name = "\improper Research Testing Range"
+ })
+"cBk" = (
+/obj/structure/table,
+/obj/machinery/recharger{
+ pixel_y = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/button/door{
+ id = "researchrangeshutters";
+ name = "Blast Door Control";
+ pixel_x = 0;
+ pixel_y = -24;
+ req_access_txt = "0"
+ },
+/obj/machinery/light,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/toxins/misc_lab{
+ name = "\improper Research Testing Range"
+ })
+"cBl" = (
+/obj/item/weapon/gun/energy/laser/practice,
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "Research Firing Range APC";
+ pixel_x = 0;
+ pixel_y = -28
+ },
+/obj/structure/table,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/toxins/misc_lab{
+ name = "\improper Research Testing Range"
+ })
+"cBm" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/poddoor/preopen{
+ id = "researchrangeshutters";
+ name = "blast door"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/toxins/misc_lab{
+ name = "\improper Research Testing Range"
+ })
+"cBn" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whitepurple/corner{
+ dir = 1
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"cBo" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"cBp" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/whitepurple/corner{
+ dir = 4
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"cBq" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/poddoor/preopen{
+ id = "toxins_blastdoor";
+ name = "biohazard containment door"
+ },
+/turf/open/floor/plating,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cBr" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cBs" = (
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cBt" = (
+/obj/item/device/assembly/prox_sensor{
+ pixel_x = -4;
+ pixel_y = 1
+ },
+/obj/item/device/assembly/prox_sensor{
+ pixel_x = 8;
+ pixel_y = 9
+ },
+/obj/item/device/assembly/prox_sensor{
+ pixel_x = 9;
+ pixel_y = -2
+ },
+/obj/item/device/assembly/prox_sensor{
+ pixel_x = 0;
+ pixel_y = 2
+ },
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cBu" = (
+/obj/structure/chair/stool,
+/obj/effect/landmark/start{
+ name = "Scientist"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cBv" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/wrench,
+/obj/item/weapon/screwdriver{
+ pixel_y = 10
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cBw" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cBx" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cBy" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cBz" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cBA" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 2;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cBB" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cBC" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/research{
+ name = "Toxins Launch Room Access";
+ req_access_txt = "8"
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "toxins_blastdoor";
+ name = "biohazard containment shutters"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cBD" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cBE" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cBF" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cBG" = (
+/obj/machinery/door/airlock/research{
+ name = "Toxins Launch Room";
+ req_access_txt = "8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cBH" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cBI" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_Toxins = 0
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cBJ" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cBK" = (
+/obj/machinery/light/small,
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cBL" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/machinery/button/massdriver{
+ dir = 2;
+ id = "toxinsdriver";
+ pixel_x = 24;
+ pixel_y = -24
+ },
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for watching the test chamber.";
+ dir = 8;
+ layer = 4;
+ name = "Test Chamber Telescreen";
+ network = list("Toxins");
+ pixel_x = 30;
+ pixel_y = 0
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cBM" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'BOMB RANGE";
+ name = "BOMB RANGE"
+ },
+/turf/closed/wall,
+/area/toxins/test_area)
+"cBN" = (
+/obj/structure/chair,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plating/airless,
+/area/toxins/test_area)
+"cBO" = (
+/obj/item/device/flashlight/lamp,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating/airless,
+/area/toxins/test_area)
+"cBP" = (
+/obj/structure/chair,
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plating/airless,
+/area/toxins/test_area)
+"cBQ" = (
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/obj/structure/cable,
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/solar/port)
+"cBR" = (
+/turf/closed/wall/r_wall,
+/area/medical/virology)
+"cBS" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/medical/virology)
+"cBT" = (
+/obj/item/weapon/cigbutt,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cBU" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/newscaster{
+ pixel_x = 0;
+ pixel_y = -30
+ },
+/obj/item/weapon/storage/box/donkpockets{
+ pixel_x = 3;
+ pixel_y = 5
+ },
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cBV" = (
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_x = 0;
+ pixel_y = -30
+ },
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cBW" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/obj/machinery/light/small,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 0;
+ pixel_y = -29
+ },
+/obj/machinery/camera{
+ c_tag = "Medbay Break Room";
+ dir = 1;
+ network = list("SS13","Medbay")
+ },
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cBX" = (
+/obj/machinery/microwave{
+ pixel_x = -3;
+ pixel_y = 6
+ },
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cBY" = (
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cBZ" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cCa" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/white/side{
+ dir = 9
+ },
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cCb" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/structure/closet/secure_closet/personal/patient,
+/turf/open/floor/plasteel/white/corner{
+ dir = 2
+ },
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cCc" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/closet/secure_closet/personal/patient,
+/turf/open/floor/plasteel/white/side{
+ dir = 2
+ },
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cCd" = (
+/obj/structure/closet/secure_closet/personal/patient,
+/turf/open/floor/plasteel/white/corner{
+ dir = 8
+ },
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cCe" = (
+/turf/closed/wall,
+/area/medical/morgue)
+"cCf" = (
+/obj/structure/bodycontainer/morgue,
+/obj/effect/landmark{
+ name = "revenantspawn"
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"cCg" = (
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"cCh" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'HIGH VOLTAGE'";
+ icon_state = "shock";
+ name = "HIGH VOLTAGE";
+ pixel_y = 0
+ },
+/turf/closed/wall/r_wall,
+/area/engine/engineering)
+"cCi" = (
+/obj/machinery/firealarm{
+ dir = 2;
+ pixel_y = 24
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"cCj" = (
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"cCk" = (
+/obj/machinery/airalarm{
+ pixel_y = 32
+ },
+/obj/structure/table,
+/obj/item/weapon/paper_bin{
+ pixel_x = 6;
+ pixel_y = 4
+ },
+/obj/item/weapon/paper/morguereminder{
+ pixel_x = -4
+ },
+/obj/effect/landmark{
+ name = "revenantspawn"
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"cCl" = (
+/obj/machinery/vending/cigarette,
+/turf/open/floor/plasteel/black,
+/area/hallway/primary/aft)
+"cCm" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 29
+ },
+/turf/open/floor/plasteel/purple/corner{
+ dir = 2
+ },
+/area/hallway/primary/aft)
+"cCn" = (
+/turf/closed/wall/r_wall,
+/area/assembly/chargebay)
+"cCo" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "robotics_shutters";
+ name = "robotics shutters"
+ },
+/turf/open/floor/plating,
+/area/assembly/chargebay)
+"cCp" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_research{
+ name = "Robotics Lab";
+ req_access_txt = "29"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/assembly/chargebay)
+"cCq" = (
+/turf/closed/wall/r_wall,
+/area/assembly/robotics)
+"cCr" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"cCs" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"cCt" = (
+/obj/structure/closet/bombcloset,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cCu" = (
+/obj/item/device/assembly/signaler{
+ pixel_x = 0;
+ pixel_y = 8
+ },
+/obj/item/device/assembly/signaler{
+ pixel_x = -8;
+ pixel_y = 5
+ },
+/obj/item/device/assembly/signaler{
+ pixel_x = 6;
+ pixel_y = 5
+ },
+/obj/item/device/assembly/signaler{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cCv" = (
+/obj/item/device/transfer_valve{
+ pixel_x = -5
+ },
+/obj/item/device/transfer_valve{
+ pixel_x = -5
+ },
+/obj/item/device/transfer_valve{
+ pixel_x = 0
+ },
+/obj/item/device/transfer_valve{
+ pixel_x = 0
+ },
+/obj/item/device/transfer_valve{
+ pixel_x = 5
+ },
+/obj/item/device/transfer_valve{
+ pixel_x = 5
+ },
+/obj/machinery/requests_console{
+ department = "Science";
+ departmentType = 2;
+ name = "Science Requests Console";
+ pixel_x = 0;
+ pixel_y = -30
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/light,
+/turf/open/floor/plasteel,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cCw" = (
+/obj/item/device/assembly/timer{
+ pixel_x = 5;
+ pixel_y = 4
+ },
+/obj/item/device/assembly/timer{
+ pixel_x = -4;
+ pixel_y = 2
+ },
+/obj/item/device/assembly/timer{
+ pixel_x = 6;
+ pixel_y = -4
+ },
+/obj/item/device/assembly/timer{
+ pixel_x = 0;
+ pixel_y = 0
+ },
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cCx" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/item/device/radio/intercom{
+ broadcasting = 0;
+ listening = 1;
+ name = "Station Intercom (General)";
+ pixel_y = -28
+ },
+/obj/structure/tank_dispenser,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cCy" = (
+/obj/machinery/disposal/bin{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cCz" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cCA" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cCB" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cCC" = (
+/obj/structure/table,
+/obj/item/device/assembly/igniter{
+ pixel_x = -5;
+ pixel_y = 3
+ },
+/obj/item/device/assembly/igniter{
+ pixel_x = 5;
+ pixel_y = -4
+ },
+/obj/item/device/assembly/igniter{
+ pixel_x = 2;
+ pixel_y = 6
+ },
+/obj/item/device/assembly/igniter{
+ pixel_x = 2;
+ pixel_y = -1
+ },
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "Toxins Lab APC";
+ pixel_x = 26;
+ pixel_y = 0
+ },
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cCD" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cCE" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cCF" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cCG" = (
+/obj/machinery/door/window/southleft{
+ name = "Mass Driver Door";
+ req_access_txt = "7"
+ },
+/turf/open/floor/plasteel/loadingarea,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cCH" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plating/airless,
+/area/toxins/test_area)
+"cCI" = (
+/turf/open/floor/plating/airless,
+/area/toxins/test_area)
+"cCJ" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plating/airless,
+/area/toxins/test_area)
+"cCK" = (
+/mob/living/carbon/monkey,
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"cCL" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"cCM" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ on = 1
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"cCN" = (
+/obj/machinery/camera{
+ c_tag = "Medbay Hallway Aft";
+ dir = 4;
+ network = list("SS13","Medbay")
+ },
+/turf/open/floor/plasteel/white/side{
+ dir = 5
+ },
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cCO" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cCP" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/white/side{
+ dir = 8
+ },
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cCQ" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel,
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cCR" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white/side{
+ dir = 4
+ },
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cCS" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 2
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cCT" = (
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/white/side{
+ dir = 8
+ },
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cCU" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/bodycontainer/morgue,
+/obj/effect/landmark{
+ name = "revenantspawn"
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"cCV" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 2;
+ on = 1
+ },
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"cCW" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"cCX" = (
+/obj/effect/landmark/start{
+ name = "Medical Doctor"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"cCY" = (
+/obj/structure/table,
+/obj/item/weapon/storage/box/bodybags,
+/obj/item/weapon/pen,
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 29
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"cCZ" = (
+/obj/machinery/vending/cola/random,
+/turf/open/floor/plasteel/black,
+/area/hallway/primary/aft)
+"cDa" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "robotics_shutters";
+ name = "robotics shutters"
+ },
+/turf/open/floor/plating,
+/area/assembly/robotics)
+"cDb" = (
+/obj/structure/filingcabinet/chestdrawer{
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/obj/machinery/button/door{
+ id = "robotics_shutters";
+ name = "robotics shutters control";
+ pixel_x = -26;
+ pixel_y = 26;
+ req_access_txt = "29"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/assembly/robotics)
+"cDc" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/assembly/robotics)
+"cDd" = (
+/obj/machinery/mecha_part_fabricator{
+ dir = 2
+ },
+/obj/item/device/radio/intercom{
+ broadcasting = 0;
+ listening = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 20
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/assembly/robotics)
+"cDe" = (
+/obj/structure/sign/nosmoking_2{
+ pixel_y = 32
+ },
+/obj/structure/rack,
+/obj/item/weapon/book/manual/robotics_cyborgs{
+ pixel_x = 2;
+ pixel_y = 5
+ },
+/obj/item/weapon/storage/belt/utility,
+/obj/item/weapon/reagent_containers/glass/beaker/large,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/assembly/robotics)
+"cDf" = (
+/obj/machinery/mecha_part_fabricator{
+ dir = 2
+ },
+/obj/machinery/camera{
+ c_tag = "Robotics - Fore";
+ dir = 2;
+ network = list("SS13","RD")
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/assembly/robotics)
+"cDg" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "Robotics Lab APC";
+ pixel_x = 0;
+ pixel_y = 25
+ },
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/structure/table,
+/obj/item/weapon/paper_bin{
+ pixel_x = -2;
+ pixel_y = 4
+ },
+/obj/item/device/assembly/prox_sensor{
+ pixel_x = -8;
+ pixel_y = 4
+ },
+/obj/item/device/assembly/prox_sensor{
+ pixel_x = -8;
+ pixel_y = 4
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/assembly/robotics)
+"cDh" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/research{
+ cyclelinkeddir = 2;
+ id_tag = "ResearchExt";
+ name = "Research Division";
+ req_access_txt = "0";
+ req_one_access_txt = "47"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/medical/research{
+ name = "Research Division"
+ })
+"cDi" = (
+/turf/closed/wall,
+/area/assembly/robotics)
+"cDj" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"cDk" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall/r_wall,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cDl" = (
+/obj/structure/sign/securearea,
+/turf/closed/wall/r_wall,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cDm" = (
+/obj/machinery/shower{
+ dir = 4;
+ icon_state = "shower";
+ name = "emergency shower"
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cDn" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cDo" = (
+/obj/structure/table,
+/obj/item/weapon/crowbar,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/item/weapon/wrench,
+/obj/item/clothing/mask/gas,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cDp" = (
+/obj/structure/table,
+/obj/item/clothing/glasses/science,
+/obj/item/clothing/glasses/science,
+/obj/item/device/multitool{
+ pixel_x = 3
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cDq" = (
+/obj/machinery/mass_driver{
+ dir = 4;
+ id = "toxinsdriver"
+ },
+/turf/open/floor/plating,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cDr" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 0;
+ pixel_y = -32
+ },
+/obj/machinery/light/small,
+/turf/open/floor/plating,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cDs" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cDt" = (
+/obj/machinery/door/poddoor{
+ id = "toxinsdriver";
+ name = "Toxins Launcher Bay Door"
+ },
+/turf/open/floor/plating,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cDu" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating/airless,
+/area/space)
+"cDv" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating/airless,
+/area/toxins/test_area)
+"cDw" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating/airless,
+/area/toxins/test_area)
+"cDx" = (
+/obj/item/device/radio/beacon,
+/turf/open/floor/plating/airless,
+/area/toxins/test_area)
+"cDy" = (
+/obj/machinery/camera{
+ active_power_usage = 0;
+ c_tag = "Bomb Test Site";
+ desc = "A specially-reinforced camera with a long lasting battery, used to monitor the bomb testing site. An external light is attached to the top.";
+ dir = 8;
+ invuln = 1;
+ light = null;
+ luminosity = 3;
+ name = "Hardened Bomb-Test Camera";
+ network = list("Toxins");
+ use_power = 0
+ },
+/obj/item/target/alien{
+ anchored = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating{
+ luminosity = 2;
+ initial_gas_mix = "o2=0.01;n2=0.01";
+ temperature = 2.7
+ },
+/area/toxins/test_area)
+"cDz" = (
+/turf/closed/indestructible{
+ desc = "A wall impregnated with Fixium, able to withstand massive explosions with ease";
+ icon_state = "riveted";
+ name = "hyper-reinforced wall"
+ },
+/area/toxins/test_area)
+"cDA" = (
+/obj/structure/bed/roller,
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"cDB" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/mob/living/carbon/monkey,
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"cDC" = (
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"cDD" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/mob/living/carbon/monkey,
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"cDE" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/medical/virology)
+"cDF" = (
+/obj/item/weapon/storage/box/beakers{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/weapon/storage/box/syringes,
+/obj/machinery/power/apc{
+ cell_type = 5000;
+ dir = 1;
+ name = "Virology APC";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 9
+ },
+/area/medical/virology)
+"cDG" = (
+/obj/item/weapon/book/manual/wiki/infections{
+ pixel_y = 7
+ },
+/obj/item/weapon/reagent_containers/syringe/antiviral,
+/obj/item/weapon/reagent_containers/dropper,
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 5
+ },
+/area/medical/virology)
+"cDH" = (
+/obj/machinery/smartfridge/chemistry/virology,
+/obj/machinery/airalarm{
+ frequency = 1439;
+ pixel_y = 23
+ },
+/turf/open/floor/plasteel/whitegreen,
+/area/medical/virology)
+"cDI" = (
+/obj/machinery/reagentgrinder{
+ pixel_y = 8
+ },
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 9
+ },
+/area/medical/virology)
+"cDJ" = (
+/obj/item/clothing/gloves/color/latex,
+/obj/item/device/healthanalyzer,
+/obj/item/clothing/glasses/hud/health,
+/obj/structure/reagent_dispensers/virusfood{
+ density = 0;
+ pixel_x = 0;
+ pixel_y = 30
+ },
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 5
+ },
+/area/medical/virology)
+"cDK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cDL" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cDM" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cDN" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating{
+ icon_plating = "warnplate"
+ },
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cDO" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cDP" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance{
+ name = "Medbay Maintenance";
+ req_access_txt = "5"
+ },
+/turf/open/floor/plating,
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cDQ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white/side{
+ dir = 4
+ },
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cDR" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cDS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/white/side{
+ dir = 8
+ },
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cDT" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel,
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cDU" = (
+/obj/structure/disposalpipe/junction{
+ icon_state = "pipe-j1";
+ dir = 4
+ },
+/turf/open/floor/plasteel/white/side{
+ dir = 4
+ },
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cDV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Medical Doctor"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cDW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/white/side{
+ dir = 8
+ },
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cDX" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/centcom{
+ name = "Morgue";
+ opacity = 1;
+ req_access_txt = "5"
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"cDY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"cDZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 2
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"cEa" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"cEb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"cEc" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"cEd" = (
+/obj/structure/table,
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "Morgue APC";
+ pixel_x = 26;
+ pixel_y = 0
+ },
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/item/weapon/folder/white{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/item/clothing/gloves/color/latex,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"cEe" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/medical/morgue)
+"cEf" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/hallway/primary/aft)
+"cEg" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/hallway/primary/aft)
+"cEh" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/purple/side{
+ dir = 4
+ },
+/area/hallway/primary/aft)
+"cEi" = (
+/turf/open/floor/plasteel/purple,
+/area/assembly/robotics)
+"cEj" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/pen,
+/obj/machinery/door/window/eastright{
+ dir = 4;
+ name = "Robotics Desk";
+ req_access_txt = "29"
+ },
+/obj/item/weapon/folder/white{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/item/weapon/folder/white{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "robotics_shutters";
+ name = "robotics shutters"
+ },
+/turf/open/floor/plating,
+/area/assembly/robotics)
+"cEk" = (
+/obj/effect/landmark/start{
+ name = "Roboticist"
+ },
+/obj/structure/chair/office/light{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/assembly/robotics)
+"cEl" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/assembly/robotics)
+"cEm" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/assembly/robotics)
+"cEn" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/assembly/robotics)
+"cEo" = (
+/obj/structure/table,
+/obj/item/stack/sheet/plasteel{
+ amount = 10
+ },
+/obj/item/device/assembly/flash/handheld,
+/obj/item/device/assembly/flash/handheld,
+/obj/item/device/assembly/flash/handheld,
+/obj/item/device/assembly/flash/handheld,
+/obj/item/device/assembly/flash/handheld,
+/obj/item/device/assembly/flash/handheld,
+/obj/item/device/assembly/flash/handheld,
+/obj/machinery/ai_status_display{
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/assembly/robotics)
+"cEp" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 27;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/white/side{
+ dir = 9
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"cEq" = (
+/obj/structure/lattice,
+/turf/open/space,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cEr" = (
+/obj/machinery/door/poddoor{
+ id = "mixvent";
+ name = "Mixer Room Vent"
+ },
+/turf/open/floor/engine/vacuum,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cEs" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/turf/open/floor/engine/vacuum,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cEt" = (
+/obj/machinery/sparker{
+ dir = 2;
+ id = "mixingsparker";
+ pixel_x = 25
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ external_pressure_bound = 0;
+ initialize_directions = 1;
+ internal_pressure_bound = 4000;
+ on = 1;
+ pressure_checks = 2;
+ pump_direction = 0
+ },
+/turf/open/floor/engine/vacuum,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cEu" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cEv" = (
+/obj/machinery/airlock_sensor{
+ id_tag = "tox_airlock_sensor";
+ master_tag = "tox_airlock_control";
+ pixel_y = 24
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 4;
+ on = 1
+ },
+/turf/open/floor/engine,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cEw" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/obj/machinery/meter,
+/obj/machinery/embedded_controller/radio/airlock_controller{
+ airpump_tag = "tox_airlock_pump";
+ exterior_door_tag = "tox_airlock_exterior";
+ id_tag = "tox_airlock_control";
+ interior_door_tag = "tox_airlock_interior";
+ pixel_x = -24;
+ pixel_y = 0;
+ sanitize_external = 1;
+ sensor_tag = "tox_airlock_sensor"
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cEx" = (
+/obj/machinery/atmospherics/components/binary/valve{
+ dir = 4;
+ name = "manual outlet valve"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cEy" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 2
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cEz" = (
+/obj/structure/closet/wardrobe/grey,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cEA" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/space)
+"cEB" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plating/airless,
+/area/toxins/test_area)
+"cEC" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plating/airless,
+/area/toxins/test_area)
+"cED" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/solar/port)
+"cEE" = (
+/turf/closed/wall,
+/area/medical/virology)
+"cEF" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/open/floor/plating,
+/area/medical/virology)
+"cEG" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_virology{
+ name = "Test Subject Cell";
+ req_access_txt = "39"
+ },
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"cEH" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/open/floor/plating,
+/area/medical/virology)
+"cEI" = (
+/obj/item/weapon/paper_bin{
+ pixel_x = -2;
+ pixel_y = 9
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/table/glass,
+/obj/structure/sign/deathsposal{
+ pixel_x = -30;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 8
+ },
+/area/medical/virology)
+"cEJ" = (
+/obj/structure/chair/office/light{
+ dir = 1;
+ pixel_y = 3
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/whitegreen/corner{
+ dir = 4
+ },
+/area/medical/virology)
+"cEK" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ on = 1
+ },
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 1
+ },
+/area/medical/virology)
+"cEL" = (
+/obj/structure/chair/office/light{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Virologist"
+ },
+/turf/open/floor/plasteel/whitegreen/corner{
+ dir = 1
+ },
+/area/medical/virology)
+"cEM" = (
+/obj/item/weapon/folder/white{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/item/weapon/folder/white{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/item/weapon/pen/red,
+/obj/machinery/requests_console{
+ department = "Virology";
+ name = "Virology Requests Console";
+ pixel_x = 29;
+ pixel_y = 0
+ },
+/obj/item/stack/sheet/mineral/plasma{
+ layer = 2.9
+ },
+/obj/item/stack/sheet/mineral/plasma{
+ layer = 2.9
+ },
+/obj/item/stack/sheet/mineral/plasma{
+ layer = 2.9
+ },
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 4
+ },
+/area/medical/virology)
+"cEN" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "0";
+ req_one_access_txt = "12;5;39;6"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cEO" = (
+/turf/open/floor/plasteel/white/side{
+ dir = 6
+ },
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cEP" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cEQ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/white/side{
+ dir = 10
+ },
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cER" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white/corner{
+ dir = 4
+ },
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cES" = (
+/obj/item/device/healthanalyzer{
+ pixel_x = 1;
+ pixel_y = 4
+ },
+/obj/structure/sign/nosmoking_2{
+ pixel_x = 0;
+ pixel_y = -30
+ },
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/white/side{
+ dir = 1
+ },
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cET" = (
+/obj/machinery/vending/medical,
+/turf/open/floor/plasteel/white/corner{
+ dir = 1
+ },
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cEU" = (
+/obj/machinery/light_switch{
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/obj/structure/bodycontainer/morgue,
+/obj/effect/landmark{
+ name = "revenantspawn"
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"cEV" = (
+/obj/structure/disposalpipe/junction{
+ icon_state = "pipe-j2";
+ dir = 2
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"cEW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"cEX" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"cEY" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/centcom{
+ name = "Morgue";
+ opacity = 1;
+ req_access_txt = "6"
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"cEZ" = (
+/turf/open/floor/plasteel/black,
+/area/hallway/primary/aft)
+"cFa" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cFb" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cFc" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/sign/science{
+ name = "\improper ROBOTICS!";
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel/purple/corner{
+ dir = 4
+ },
+/area/hallway/primary/aft)
+"cFd" = (
+/obj/structure/noticeboard{
+ dir = 4;
+ pixel_x = -27;
+ pixel_y = 0
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/assembly/robotics)
+"cFe" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/assembly/robotics)
+"cFf" = (
+/obj/effect/landmark/start{
+ name = "Roboticist"
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/assembly/robotics)
+"cFg" = (
+/turf/open/floor/plasteel,
+/area/assembly/robotics)
+"cFh" = (
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/assembly/robotics)
+"cFi" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/assembly/robotics)
+"cFj" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 28;
+ pixel_y = 5
+ },
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 4
+ },
+/obj/structure/table,
+/obj/item/weapon/wrench,
+/obj/item/weapon/screwdriver{
+ pixel_y = 10
+ },
+/obj/item/device/multitool{
+ pixel_x = 3
+ },
+/obj/item/stack/cable_coil,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/assembly/robotics)
+"cFk" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/obj/machinery/camera{
+ c_tag = "Research Division Hallway - Robotics";
+ dir = 4;
+ network = list("SS13","RD")
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"cFl" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"cFm" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/white/side{
+ dir = 8
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"cFn" = (
+/turf/open/floor/engine/vacuum,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cFo" = (
+/obj/machinery/door/airlock/glass_research{
+ autoclose = 0;
+ frequency = 1449;
+ glass = 1;
+ heat_proof = 1;
+ icon_state = "door_locked";
+ id_tag = "tox_airlock_exterior";
+ locked = 1;
+ name = "Mixing Room Exterior Airlock";
+ req_access_txt = "8"
+ },
+/turf/open/floor/engine,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cFp" = (
+/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume{
+ dir = 2;
+ frequency = 1449;
+ id = "tox_airlock_pump"
+ },
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/turf/open/floor/engine,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cFq" = (
+/obj/machinery/door/airlock/glass_research{
+ autoclose = 0;
+ frequency = 1449;
+ glass = 1;
+ heat_proof = 1;
+ icon_state = "door_locked";
+ id_tag = "tox_airlock_interior";
+ locked = 1;
+ name = "Mixing Room Interior Airlock";
+ req_access_txt = "8"
+ },
+/turf/open/floor/engine,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cFr" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cFs" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 27;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/camera{
+ c_tag = "Toxins - Mixing Area";
+ dir = 8;
+ network = list("SS13","RD")
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cFt" = (
+/obj/effect/decal/cleanable/oil,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cFu" = (
+/obj/structure/closet,
+/obj/item/device/assembly/prox_sensor{
+ pixel_x = 2;
+ pixel_y = -2
+ },
+/obj/item/device/assembly/signaler{
+ pixel_x = -2;
+ pixel_y = 5
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cFv" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plating/airless,
+/area/toxins/test_area)
+"cFw" = (
+/obj/item/device/flashlight/lamp,
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plating/airless,
+/area/toxins/test_area)
+"cFx" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plating/airless,
+/area/toxins/test_area)
+"cFy" = (
+/obj/item/device/radio/intercom{
+ pixel_x = -28;
+ pixel_y = 0
+ },
+/obj/structure/table/glass,
+/obj/item/weapon/hand_labeler,
+/obj/item/device/radio/headset/headset_med,
+/obj/machinery/airalarm{
+ frequency = 1439;
+ pixel_y = 23
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/obj/machinery/camera{
+ c_tag = "Virology - Cells";
+ dir = 4;
+ network = list("SS13","Medbay")
+ },
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 9
+ },
+/area/medical/virology)
+"cFz" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/iv_drip,
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 1
+ },
+/area/medical/virology)
+"cFA" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 1
+ },
+/area/medical/virology)
+"cFB" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 2
+ },
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 1
+ },
+/area/medical/virology)
+"cFC" = (
+/obj/structure/rack,
+/obj/item/weapon/crowbar/red,
+/obj/machinery/light_switch{
+ pixel_x = 0;
+ pixel_y = 26
+ },
+/obj/item/weapon/wrench,
+/obj/item/weapon/restraints/handcuffs,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 5
+ },
+/area/medical/virology)
+"cFD" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/medical/virology)
+"cFE" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 8
+ },
+/area/medical/virology)
+"cFF" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"cFG" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 2
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"cFH" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"cFI" = (
+/obj/machinery/computer/pandemic{
+ layer = 2.5;
+ pixel_x = -4
+ },
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ pixel_x = 28;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 4
+ },
+/area/medical/virology)
+"cFJ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/medical/virology)
+"cFK" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/medical/virology)
+"cFL" = (
+/obj/structure/sign/biohazard{
+ pixel_y = 32
+ },
+/obj/machinery/shower{
+ icon_state = "shower";
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"cFM" = (
+/obj/structure/sink{
+ pixel_y = 28
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"cFN" = (
+/obj/structure/sign/securearea{
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/obj/machinery/shower{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"cFO" = (
+/obj/machinery/firealarm{
+ dir = 2;
+ pixel_y = 24
+ },
+/obj/machinery/iv_drip{
+ density = 0
+ },
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 8
+ },
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cFP" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 29
+ },
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 4
+ },
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cFQ" = (
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-21";
+ layer = 4.1;
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/turf/open/floor/plasteel/whitegreen/corner{
+ dir = 8
+ },
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cFR" = (
+/turf/open/floor/plasteel/white,
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cFS" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cFT" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 27;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/white/side{
+ dir = 9
+ },
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cFU" = (
+/obj/machinery/light/small,
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"cFV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"cFW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"cFX" = (
+/obj/machinery/disposal/bin,
+/obj/machinery/light_switch{
+ pixel_x = 23;
+ pixel_y = 0
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"cFY" = (
+/obj/structure/closet,
+/turf/open/floor/plasteel/black,
+/area/hallway/primary/aft)
+"cFZ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/hallway/primary/aft)
+"cGa" = (
+/obj/machinery/computer/rdconsole/robotics,
+/obj/machinery/requests_console{
+ department = "Robotics";
+ departmentType = 2;
+ name = "Robotics RC";
+ pixel_x = -31;
+ pixel_y = 0
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/assembly/robotics)
+"cGb" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/assembly/robotics)
+"cGc" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/assembly/robotics)
+"cGd" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ on = 1;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel,
+/area/assembly/robotics)
+"cGe" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/assembly/robotics)
+"cGf" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/machinery/disposal/bin,
+/obj/machinery/light_switch{
+ pixel_x = 27
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/assembly/robotics)
+"cGg" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"cGh" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"cGi" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/white/side{
+ dir = 10
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"cGj" = (
+/obj/machinery/sparker{
+ dir = 2;
+ id = "mixingsparker";
+ pixel_x = 25
+ },
+/obj/machinery/atmospherics/components/unary/outlet_injector/on{
+ dir = 4;
+ frequency = 1441;
+ id = "air_in"
+ },
+/turf/open/floor/engine/vacuum,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cGk" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/sign/fire{
+ pixel_y = -32
+ },
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ on = 1
+ },
+/turf/open/floor/engine,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cGl" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/obj/machinery/meter,
+/obj/machinery/button/door{
+ id = "mixvent";
+ name = "Mixing Room Vent Control";
+ pixel_x = -25;
+ pixel_y = 5;
+ req_access_txt = "7"
+ },
+/obj/machinery/button/ignition{
+ id = "mixingsparker";
+ pixel_x = -25;
+ pixel_y = -5
+ },
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cGm" = (
+/obj/machinery/atmospherics/components/binary/valve{
+ dir = 4;
+ name = "manual inlet valve"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cGn" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/portable_atmospherics/canister,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cGo" = (
+/obj/structure/closet/crate,
+/obj/item/clothing/mask/gas,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cGp" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/obj/item/target,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating,
+/area/toxins/test_area)
+"cGq" = (
+/obj/structure/table/glass,
+/obj/item/weapon/folder/white{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/item/weapon/folder/white{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/item/weapon/pen/red,
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 8
+ },
+/area/medical/virology)
+"cGr" = (
+/obj/structure/chair/office/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"cGs" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"cGt" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"cGu" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 4
+ },
+/area/medical/virology)
+"cGv" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_virology{
+ name = "Containment Cells";
+ req_access_txt = "39"
+ },
+/turf/open/floor/plasteel/whitegreen,
+/area/medical/virology)
+"cGw" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 8
+ },
+/area/medical/virology)
+"cGx" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"cGy" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/obj/machinery/holopad,
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"cGz" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"cGA" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 4
+ },
+/area/medical/virology)
+"cGB" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/virology{
+ name = "Virology Access";
+ req_access_txt = "39"
+ },
+/turf/open/floor/plasteel/whitegreen,
+/area/medical/virology)
+"cGC" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 8
+ },
+/area/medical/virology)
+"cGD" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"cGE" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/doorButtons/airlock_controller{
+ idExterior = "virology_airlock_exterior";
+ idSelf = "virology_airlock_control";
+ idInterior = "virology_airlock_interior";
+ name = "Virology Access Console";
+ pixel_x = 26;
+ pixel_y = 26;
+ req_access_txt = "39"
+ },
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 4
+ },
+/area/medical/virology)
+"cGF" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/virology{
+ autoclose = 0;
+ frequency = 1449;
+ icon_state = "door_locked";
+ id_tag = "virology_airlock_interior";
+ locked = 1;
+ name = "Virology Interior Airlock";
+ req_access_txt = "39"
+ },
+/turf/open/floor/plasteel/whitegreen,
+/area/medical/virology)
+"cGG" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/doorButtons/access_button{
+ idDoor = "virology_airlock_interior";
+ idSelf = "virology_airlock_control";
+ name = "Virology Access Button";
+ pixel_x = -26;
+ pixel_y = 28;
+ req_access_txt = "39"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"cGH" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"cGI" = (
+/obj/machinery/doorButtons/access_button{
+ idDoor = "virology_airlock_exterior";
+ idSelf = "virology_airlock_control";
+ name = "Virology Access Button";
+ pixel_x = 0;
+ pixel_y = 24;
+ req_access_txt = "39"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/virology{
+ autoclose = 0;
+ frequency = 1449;
+ icon_state = "door_locked";
+ id_tag = "virology_airlock_exterior";
+ locked = 1;
+ name = "Virology Exterior Airlock";
+ req_access_txt = "39"
+ },
+/turf/open/floor/plasteel/whitegreen,
+/area/medical/virology)
+"cGJ" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 8
+ },
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cGK" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 4
+ },
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cGL" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/virology{
+ name = "Virology Access";
+ req_access_txt = "39"
+ },
+/turf/open/floor/plasteel/whitegreen,
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cGM" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cGN" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cGO" = (
+/turf/open/floor/plasteel/white/side{
+ dir = 8
+ },
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cGP" = (
+/obj/machinery/door/airlock{
+ name = "Medical Surplus Storeroom";
+ req_access_txt = "5"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cGQ" = (
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cGR" = (
+/obj/structure/table,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/item/weapon/storage/backpack/dufflebag/med,
+/obj/item/device/flashlight/pen{
+ pixel_x = 4;
+ pixel_y = 3
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cGS" = (
+/obj/structure/table,
+/obj/item/weapon/retractor,
+/obj/item/weapon/hemostat,
+/obj/item/device/healthanalyzer,
+/obj/item/clothing/glasses/eyepatch,
+/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka{
+ pixel_x = 3;
+ pixel_y = 2
+ },
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cGT" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/airlock/maintenance{
+ name = "Morgue Maintenance";
+ req_access_txt = "6"
+ },
+/turf/open/floor/plating,
+/area/medical/morgue)
+"cGU" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/hallway/primary/aft)
+"cGV" = (
+/obj/machinery/airalarm{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22
+ },
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/obj/machinery/r_n_d/circuit_imprinter,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/assembly/robotics)
+"cGW" = (
+/obj/effect/landmark/start{
+ name = "Roboticist"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/assembly/robotics)
+"cGX" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/assembly/robotics)
+"cGY" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/rack,
+/obj/item/weapon/storage/firstaid/regular{
+ empty = 1;
+ name = "First-Aid (empty)"
+ },
+/obj/item/weapon/storage/firstaid/regular{
+ empty = 1;
+ name = "First-Aid (empty)"
+ },
+/obj/item/weapon/storage/firstaid/regular{
+ empty = 1;
+ name = "First-Aid (empty)"
+ },
+/obj/item/device/healthanalyzer{
+ pixel_x = 4;
+ pixel_y = -4
+ },
+/obj/item/device/healthanalyzer{
+ pixel_x = 4;
+ pixel_y = -4
+ },
+/obj/item/device/healthanalyzer{
+ pixel_x = 4;
+ pixel_y = -4
+ },
+/obj/item/device/radio/headset/headset_sci{
+ pixel_x = -3
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/assembly/robotics)
+"cGZ" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/assembly/robotics)
+"cHa" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/whitepurple/corner{
+ dir = 8
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"cHb" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"cHc" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/whiteblue/corner{
+ dir = 2
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"cHd" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'SERVER ROOM'.";
+ name = "SERVER ROOM";
+ pixel_y = 0
+ },
+/turf/closed/wall/r_wall,
+/area/toxins/server{
+ name = "\improper Research Division Server Room"
+ })
+"cHe" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/toxins/server{
+ name = "\improper Research Division Server Room"
+ })
+"cHf" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 2;
+ initialize_directions = 11
+ },
+/turf/closed/wall/r_wall,
+/area/toxins/server{
+ name = "\improper Research Division Server Room"
+ })
+"cHg" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cHh" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Toxins Lab Maintenance";
+ req_access_txt = "8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "toxins_blastdoor";
+ name = "biohazard containment shutters"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cHi" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/closed/wall/r_wall,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cHj" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg2"
+ },
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cHk" = (
+/obj/structure/cable,
+/obj/machinery/power/tracker,
+/turf/open/floor/plating/airless,
+/area/solar/port)
+"cHl" = (
+/obj/structure/table/glass,
+/obj/item/weapon/paper_bin{
+ pixel_x = -2;
+ pixel_y = 9
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -25;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 10
+ },
+/area/medical/virology)
+"cHm" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/whitegreen/side,
+/area/medical/virology)
+"cHn" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whitegreen/side,
+/area/medical/virology)
+"cHo" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/whitegreen/side,
+/area/medical/virology)
+"cHp" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/sink{
+ dir = 4;
+ icon_state = "sink";
+ pixel_x = 11;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 6
+ },
+/area/medical/virology)
+"cHq" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1;
+ initialize_directions = 11
+ },
+/turf/open/floor/plating,
+/area/medical/virology)
+"cHr" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 10
+ },
+/area/medical/virology)
+"cHs" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whitegreen/side,
+/area/medical/virology)
+"cHt" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/whitegreen/side,
+/area/medical/virology)
+"cHu" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 2;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/whitegreen/side,
+/area/medical/virology)
+"cHv" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/obj/machinery/camera{
+ c_tag = "Virology - Lab";
+ dir = 8;
+ network = list("SS13","Medbay")
+ },
+/obj/structure/sink{
+ dir = 4;
+ icon_state = "sink";
+ pixel_x = 11;
+ pixel_y = 0
+ },
+/obj/machinery/light_switch{
+ pixel_x = 26;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 6
+ },
+/area/medical/virology)
+"cHw" = (
+/obj/structure/closet/emcloset,
+/obj/item/device/radio/intercom{
+ pixel_x = -28;
+ pixel_y = 0
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"cHx" = (
+/obj/machinery/camera{
+ c_tag = "Virology - Airlock";
+ dir = 1;
+ network = list("SS13","Medbay")
+ },
+/obj/machinery/light,
+/obj/structure/closet/l3closet,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"cHy" = (
+/obj/structure/closet/l3closet,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"cHz" = (
+/obj/structure/sign/biohazard{
+ pixel_x = -32
+ },
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 8
+ },
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cHA" = (
+/obj/machinery/camera{
+ c_tag = "Virology - Entrance";
+ dir = 8;
+ network = list("SS13","Medbay")
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 4
+ },
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cHB" = (
+/obj/structure/sign/biohazard{
+ pixel_x = -32
+ },
+/obj/item/weapon/storage/box/gloves{
+ pixel_x = 3;
+ pixel_y = 4
+ },
+/obj/item/weapon/storage/box/masks{
+ pixel_x = 0;
+ pixel_y = 0
+ },
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/whitegreen/corner{
+ dir = 1
+ },
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cHC" = (
+/obj/structure/sign/nosmoking_2{
+ pixel_x = 0;
+ pixel_y = -30
+ },
+/obj/item/weapon/storage/box/beakers{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/weapon/storage/box/bodybags,
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cHD" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/item/weapon/folder/white{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/item/weapon/folder/white{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/machinery/light,
+/obj/item/weapon/hand_labeler,
+/obj/item/weapon/pen,
+/obj/item/weapon/pen,
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cHE" = (
+/obj/item/weapon/paper_bin{
+ pixel_x = -2;
+ pixel_y = 8
+ },
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/white/side{
+ dir = 10
+ },
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cHF" = (
+/obj/structure/sink{
+ icon_state = "sink";
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cHG" = (
+/obj/effect/decal/cleanable/oil,
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cHH" = (
+/obj/structure/table,
+/obj/item/weapon/reagent_containers/glass/beaker{
+ pixel_x = 8;
+ pixel_y = 2
+ },
+/obj/item/weapon/reagent_containers/blood/empty{
+ pixel_x = 0;
+ pixel_y = 0
+ },
+/obj/item/weapon/reagent_containers/blood/empty{
+ pixel_x = 0;
+ pixel_y = 0
+ },
+/obj/item/weapon/reagent_containers/syringe,
+/obj/item/weapon/reagent_containers/dropper,
+/obj/structure/sign/biohazard{
+ pixel_x = 32
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cHI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cHJ" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cHK" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cHL" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 2
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cHM" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "0";
+ req_one_access_txt = "12;5;39;6"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cHN" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/hallway/primary/aft)
+"cHO" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cHP" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/bodycontainer/morgue,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/assembly/robotics)
+"cHQ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/assembly/robotics)
+"cHR" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/assembly/robotics)
+"cHS" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/assembly/robotics)
+"cHT" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/assembly/robotics)
+"cHU" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/assembly/robotics)
+"cHV" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/research{
+ name = "Robotics Lab";
+ req_access_txt = "29";
+ req_one_access_txt = "0"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/purple,
+/area/assembly/robotics)
+"cHW" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 8
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"cHX" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"cHY" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 4
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"cHZ" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command{
+ name = "Research Division Server Room";
+ req_access = null;
+ req_access_txt = "30"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/black,
+/area/toxins/server{
+ name = "\improper Research Division Server Room"
+ })
+"cIa" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light_switch{
+ pixel_y = 28
+ },
+/turf/open/floor/plasteel/black,
+/area/toxins/server{
+ name = "\improper Research Division Server Room"
+ })
+"cIb" = (
+/obj/machinery/camera{
+ c_tag = "Research Division - Server Room";
+ dir = 2;
+ network = list("SS13","RD");
+ pixel_x = 22
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "Research Division Server Room APC";
+ pixel_x = 0;
+ pixel_y = 25
+ },
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/effect/landmark{
+ name = "revenantspawn"
+ },
+/turf/open/floor/plasteel/black,
+/area/toxins/server{
+ name = "\improper Research Division Server Room"
+ })
+"cIc" = (
+/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
+ target_temperature = 80;
+ dir = 2;
+ on = 1
+ },
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/turf/open/floor/plasteel/black,
+/area/toxins/server{
+ name = "\improper Research Division Server Room"
+ })
+"cId" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'SERVER ROOM'.";
+ name = "SERVER ROOM";
+ pixel_y = 32
+ },
+/turf/open/floor/plating,
+/area/toxins/server{
+ name = "\improper Research Division Server Room"
+ })
+"cIe" = (
+/obj/machinery/r_n_d/server/robotics,
+/turf/open/floor/bluegrid{
+ name = "Server Base";
+ initial_gas_mix = "n2=500;TEMP=80"
+ },
+/area/toxins/server{
+ name = "\improper Research Division Server Room"
+ })
+"cIf" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 2;
+ external_pressure_bound = 140;
+ on = 1;
+ pressure_checks = 0
+ },
+/turf/open/floor/bluegrid{
+ name = "Server Base";
+ initial_gas_mix = "n2=500;TEMP=80"
+ },
+/area/toxins/server{
+ name = "\improper Research Division Server Room"
+ })
+"cIg" = (
+/turf/closed/wall/r_wall,
+/area/toxins/server{
+ name = "\improper Research Division Server Room"
+ })
+"cIh" = (
+/obj/structure/closet,
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/item/device/flashlight,
+/obj/effect/decal/cleanable/cobweb,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cIi" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cIj" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/sign/biohazard{
+ pixel_y = 32
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cIk" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cIl" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cIm" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/research{
+ name = "Research and Development Lab";
+ req_access_txt = "0";
+ req_one_access_txt = "7;29"
+ },
+/turf/open/floor/plasteel/whitepurple{
+ dir = 4
+ },
+/area/toxins/lab)
+"cIn" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cIo" = (
+/obj/item/weapon/poster/contraband,
+/obj/item/weapon/poster/contraband,
+/obj/item/weapon/poster/contraband,
+/obj/item/weapon/poster/contraband,
+/obj/item/weapon/poster/contraband,
+/obj/item/weapon/reagent_containers/food/drinks/beer{
+ pixel_x = -3;
+ pixel_y = 2
+ },
+/obj/item/weapon/reagent_containers/food/drinks/ale,
+/obj/structure/table/wood,
+/obj/structure/sign/poster{
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/obj/item/device/instrument/eguitar,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cIp" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/obj/structure/cable/yellow,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/medical/virology)
+"cIq" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_virology{
+ name = "Isolation B";
+ req_access_txt = "39"
+ },
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"cIr" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_virology{
+ name = "Isolation A";
+ req_access_txt = "39"
+ },
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"cIs" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/closed/wall,
+/area/medical/virology)
+"cIt" = (
+/obj/structure/closet/wardrobe/virology_white,
+/obj/item/weapon/storage/backpack/satchel/vir,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -26;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/vault,
+/area/medical/virology)
+"cIu" = (
+/obj/structure/closet/crate/freezer,
+/obj/item/weapon/reagent_containers/blood/empty,
+/obj/item/weapon/reagent_containers/blood/empty{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/item/weapon/reagent_containers/blood/AMinus,
+/obj/item/weapon/reagent_containers/blood/BMinus{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/item/weapon/reagent_containers/blood/BPlus{
+ pixel_x = 1;
+ pixel_y = 2
+ },
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OPlus{
+ pixel_x = -2;
+ pixel_y = -1
+ },
+/obj/item/weapon/reagent_containers/blood/random,
+/obj/item/weapon/reagent_containers/blood/random,
+/obj/item/weapon/reagent_containers/blood/random,
+/turf/open/floor/plasteel/vault,
+/area/medical/virology)
+"cIv" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/vault,
+/area/medical/virology)
+"cIw" = (
+/obj/structure/closet/secure_closet/medical1,
+/turf/open/floor/plasteel/vault,
+/area/medical/virology)
+"cIx" = (
+/obj/structure/closet/l3closet/virology,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 0;
+ pixel_y = -30
+ },
+/turf/open/floor/plasteel/vault,
+/area/medical/virology)
+"cIy" = (
+/obj/structure/sign/biohazard{
+ pixel_x = -32
+ },
+/turf/open/space,
+/area/space)
+"cIz" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "0";
+ req_one_access_txt = "12;5;39;6"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cIA" = (
+/obj/structure/bed/roller,
+/obj/structure/bed/roller,
+/obj/machinery/iv_drip{
+ density = 0
+ },
+/obj/machinery/iv_drip{
+ density = 0
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cIB" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 2;
+ on = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cIC" = (
+/obj/item/clothing/gloves/color/latex/nitrile,
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/clothing/suit/toggle/labcoat,
+/obj/item/clothing/suit/apron/surgical,
+/obj/item/clothing/mask/surgical,
+/obj/item/clothing/mask/breath/medical,
+/turf/open/floor/plating{
+ icon_state = "platingdmg2"
+ },
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cID" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cIE" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/turf/open/floor/plasteel/escape{
+ dir = 2
+ },
+/area/hallway/primary/aft)
+"cIF" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/escape{
+ dir = 2
+ },
+/area/hallway/primary/aft)
+"cIG" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/camera{
+ c_tag = "Aft Primary Hallway - Aft";
+ dir = 8;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/escape{
+ dir = 2
+ },
+/area/hallway/primary/aft)
+"cIH" = (
+/obj/structure/sign/directions/evac{
+ pixel_y = 0
+ },
+/turf/closed/wall/r_wall,
+/area/hallway/primary/aft)
+"cII" = (
+/obj/structure/table,
+/obj/item/weapon/circular_saw,
+/obj/item/weapon/scalpel{
+ pixel_y = 12
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/obj/item/weapon/razor{
+ pixel_y = 5
+ },
+/turf/open/floor/plasteel/white/side{
+ dir = 4
+ },
+/area/assembly/robotics)
+"cIJ" = (
+/obj/effect/landmark/start{
+ name = "Roboticist"
+ },
+/obj/structure/sink{
+ dir = 8;
+ icon_state = "sink";
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/turf/open/floor/plasteel/white,
+/area/assembly/robotics)
+"cIK" = (
+/obj/machinery/holopad,
+/turf/open/floor/plasteel/white,
+/area/assembly/robotics)
+"cIL" = (
+/obj/structure/table,
+/obj/item/clothing/gloves/color/latex,
+/obj/item/weapon/surgical_drapes,
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 0
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/turf/open/floor/plasteel/white/side{
+ dir = 8
+ },
+/area/assembly/robotics)
+"cIM" = (
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/assembly/robotics)
+"cIN" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/table,
+/obj/item/weapon/storage/box/bodybags{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/borg/upgrade/rename,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/assembly/robotics)
+"cIO" = (
+/obj/structure/rack,
+/obj/item/weapon/storage/toolbox/electrical{
+ pixel_x = -1;
+ pixel_y = 4
+ },
+/obj/item/weapon/storage/toolbox/mechanical{
+ pixel_x = 2;
+ pixel_y = -1
+ },
+/obj/item/clothing/head/welding{
+ pixel_x = -3;
+ pixel_y = 5
+ },
+/obj/item/clothing/glasses/welding,
+/obj/item/device/multitool{
+ pixel_x = 3
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/assembly/robotics)
+"cIP" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/turf/open/floor/plating,
+/area/assembly/robotics)
+"cIQ" = (
+/turf/open/floor/plasteel/whitepurple/corner{
+ dir = 1
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"cIR" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1;
+ scrub_Toxins = 0
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"cIS" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 29
+ },
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteblue/corner{
+ dir = 4
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"cIT" = (
+/turf/closed/wall,
+/area/toxins/server{
+ name = "\improper Research Division Server Room"
+ })
+"cIU" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plasteel/black,
+/area/toxins/server{
+ name = "\improper Research Division Server Room"
+ })
+"cIV" = (
+/obj/structure/chair/office/light,
+/turf/open/floor/plasteel/black,
+/area/toxins/server{
+ name = "\improper Research Division Server Room"
+ })
+"cIW" = (
+/obj/machinery/atmospherics/pipe/simple{
+ dir = 5
+ },
+/turf/open/floor/plasteel/black,
+/area/toxins/server{
+ name = "\improper Research Division Server Room"
+ })
+"cIX" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_command{
+ name = "Server Access";
+ req_access_txt = "30"
+ },
+/obj/machinery/atmospherics/pipe/simple{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/toxins/server{
+ name = "\improper Research Division Server Room"
+ })
+"cIY" = (
+/obj/machinery/atmospherics/pipe/simple{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black{
+ name = "Server Walkway";
+ initial_gas_mix = "n2=500;TEMP=80"
+ },
+/area/toxins/server{
+ name = "\improper Research Division Server Room"
+ })
+"cIZ" = (
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/obj/machinery/atmospherics/pipe/manifold{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/airalarm/server{
+ dir = 8;
+ pixel_x = 22;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/black{
+ name = "Server Walkway";
+ initial_gas_mix = "n2=500;TEMP=80"
+ },
+/area/toxins/server{
+ name = "\improper Research Division Server Room"
+ })
+"cJa" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cJb" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cJc" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cJd" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cJe" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 0;
+ pixel_y = -32
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cJf" = (
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/space)
+"cJg" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/item/weapon/bedsheet/medical,
+/obj/structure/bed,
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"cJh" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"cJi" = (
+/obj/structure/bed,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/item/weapon/bedsheet/medical,
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"cJj" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall,
+/area/medical/virology)
+"cJk" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/airlock/virology{
+ name = "Break Room";
+ req_access_txt = "39"
+ },
+/turf/open/floor/plasteel/whitegreen,
+/area/medical/virology)
+"cJl" = (
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cJm" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/maintenance{
+ name = "Research Lab Maintenance";
+ req_access_txt = "0";
+ req_one_access_txt = "7;29"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/toxins/lab)
+"cJn" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cJo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cJp" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/item/weapon/ore/slag,
+/obj/item/weapon/storage/box/lights/mixed,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cJq" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/space_heater,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cJr" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/closet/crate,
+/obj/item/clothing/gloves/color/fyellow,
+/obj/item/weapon/wrench,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cJs" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/structure/closet/firecloset,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cJt" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/weapon/screwdriver{
+ pixel_y = 6
+ },
+/obj/item/weapon/crowbar,
+/obj/item/weapon/storage/pill_bottle,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cJu" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/obj/item/weapon/cigbutt,
+/turf/open/floor/plating{
+ icon_state = "platingdmg1"
+ },
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cJv" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/generic,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cJw" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance{
+ name = "Medical Surplus Storeroom";
+ req_access_txt = "12";
+ req_one_access_txt = "0"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cJx" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cJy" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/plasteel/vault,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cJz" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/plasteel/vault,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cJA" = (
+/obj/machinery/computer/arcade,
+/turf/open/floor/plasteel/vault,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cJB" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk,
+/obj/machinery/newscaster{
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/vault,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cJC" = (
+/obj/machinery/vending/coffee,
+/obj/structure/sign/map/left{
+ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";
+ icon_state = "map-left-MS";
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/vault,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cJD" = (
+/obj/machinery/vending/snack/random,
+/obj/structure/sign/map/right{
+ desc = "A framed picture of the station. Clockwise from security in red at the top, you see engineering in yellow, science in purple, escape in checkered red-and-white, medbay in green, arrivals in checkered red-and-blue, and then cargo in brown.";
+ icon_state = "map-right-MS";
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/vault,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cJE" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Departure Lounge"
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 1
+ },
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cJF" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Departure Lounge"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cJG" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Departure Lounge"
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cJH" = (
+/obj/structure/table,
+/obj/item/weapon/retractor,
+/obj/item/weapon/hemostat,
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = -29
+ },
+/turf/open/floor/plasteel/white/corner{
+ dir = 4
+ },
+/area/assembly/robotics)
+"cJI" = (
+/obj/structure/table/optable,
+/obj/item/weapon/surgical_drapes,
+/obj/item/weapon/storage/firstaid/regular,
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cJJ" = (
+/obj/machinery/computer/operating{
+ name = "Robotics Operating Computer"
+ },
+/turf/open/floor/plasteel/white/side{
+ dir = 1
+ },
+/area/assembly/robotics)
+"cJK" = (
+/obj/structure/table,
+/obj/item/device/mmi,
+/obj/item/device/mmi,
+/obj/item/device/mmi,
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 0
+ },
+/turf/open/floor/plasteel/white/corner{
+ dir = 1
+ },
+/area/assembly/robotics)
+"cJL" = (
+/obj/machinery/door/window/eastleft{
+ dir = 1;
+ name = "Robotics Deliveries";
+ req_access_txt = "29"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/assembly/robotics)
+"cJM" = (
+/obj/structure/closet/wardrobe/robotics_black{
+ pixel_x = 2
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/assembly/robotics)
+"cJN" = (
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/obj/item/weapon/stock_parts/cell/high{
+ charge = 100;
+ maxcharge = 15000
+ },
+/obj/item/weapon/stock_parts/cell/high{
+ charge = 100;
+ maxcharge = 15000
+ },
+/obj/item/weapon/stock_parts/cell/high{
+ charge = 100;
+ maxcharge = 15000
+ },
+/obj/item/weapon/crowbar,
+/obj/item/device/assembly/prox_sensor{
+ pixel_x = -8;
+ pixel_y = 4
+ },
+/obj/item/device/assembly/prox_sensor{
+ pixel_x = -8;
+ pixel_y = 4
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/assembly/robotics)
+"cJO" = (
+/obj/structure/sink{
+ dir = 8;
+ icon_state = "sink";
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/turf/open/floor/plasteel/whitepurple/corner{
+ dir = 2
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"cJP" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 2
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"cJQ" = (
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-10";
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/whitepurple/corner{
+ dir = 8
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"cJR" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/structure/filingcabinet/chestdrawer,
+/turf/open/floor/plasteel/black,
+/area/toxins/server{
+ name = "\improper Research Division Server Room"
+ })
+"cJS" = (
+/obj/item/device/radio/intercom{
+ broadcasting = 0;
+ listening = 1;
+ name = "Station Intercom (General)";
+ pixel_y = -28
+ },
+/obj/machinery/computer/rdservercontrol,
+/turf/open/floor/plasteel/black,
+/area/toxins/server{
+ name = "\improper Research Division Server Room"
+ })
+"cJT" = (
+/obj/structure/table,
+/obj/item/weapon/folder/white{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/item/weapon/pen,
+/turf/open/floor/plasteel/black,
+/area/toxins/server{
+ name = "\improper Research Division Server Room"
+ })
+"cJU" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/toxins/server{
+ name = "\improper Research Division Server Room"
+ })
+"cJV" = (
+/obj/machinery/r_n_d/server/core,
+/turf/open/floor/bluegrid{
+ name = "Server Base";
+ initial_gas_mix = "n2=500;TEMP=80"
+ },
+/area/toxins/server{
+ name = "\improper Research Division Server Room"
+ })
+"cJW" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ external_pressure_bound = 120;
+ initialize_directions = 1;
+ internal_pressure_bound = 4000;
+ on = 1;
+ pressure_checks = 2;
+ pump_direction = 0
+ },
+/turf/open/floor/bluegrid{
+ name = "Server Base";
+ initial_gas_mix = "n2=500;TEMP=80"
+ },
+/area/toxins/server{
+ name = "\improper Research Division Server Room"
+ })
+"cJX" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cJY" = (
+/obj/structure/rack,
+/obj/effect/landmark/costume,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cJZ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/reagent_dispensers/watertank,
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cKa" = (
+/obj/structure/closet,
+/obj/item/clothing/glasses/science,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cKb" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cKc" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cKd" = (
+/obj/structure/light_construct/small,
+/obj/structure/table/wood/poker,
+/obj/item/toy/cards/deck,
+/obj/structure/sign/poster{
+ pixel_y = -32
+ },
+/turf/open/floor/wood,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cKe" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"cKf" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"cKg" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"cKh" = (
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"cKi" = (
+/obj/structure/table/glass,
+/obj/machinery/newscaster{
+ pixel_x = -30
+ },
+/obj/item/weapon/folder/white{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/item/weapon/folder/white{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/item/weapon/paper,
+/obj/item/weapon/pen/red,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 0;
+ pixel_y = 30
+ },
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 9
+ },
+/area/medical/virology)
+"cKj" = (
+/obj/structure/chair/office/light{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_x = 0;
+ pixel_y = 29
+ },
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 1
+ },
+/area/medical/virology)
+"cKk" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 1
+ },
+/area/medical/virology)
+"cKl" = (
+/obj/structure/table/glass,
+/obj/item/weapon/storage/box/donkpockets{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/machinery/light_switch{
+ pixel_x = 0;
+ pixel_y = 26
+ },
+/obj/machinery/camera{
+ c_tag = "Virology - Break Room";
+ dir = 2;
+ network = list("SS13","Medbay")
+ },
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 1
+ },
+/area/medical/virology)
+"cKm" = (
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 29
+ },
+/obj/structure/table/glass,
+/obj/machinery/microwave{
+ pixel_x = -3;
+ pixel_y = 6
+ },
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 5
+ },
+/area/medical/virology)
+"cKn" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cKo" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg1"
+ },
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cKp" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cKq" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cKr" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/obj/structure/disposalpipe/sortjunction{
+ dir = 8;
+ icon_state = "pipe-j2s";
+ sortType = 17
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cKs" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cKt" = (
+/obj/item/weapon/dice/d20,
+/obj/item/weapon/dice,
+/obj/structure/table/wood,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/sign/poster{
+ pixel_y = -32
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cKu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cKv" = (
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cKw" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cKx" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cKy" = (
+/obj/machinery/power/apc{
+ cell_type = 5000;
+ dir = 1;
+ name = "Departure Lounge APC";
+ pixel_y = 24
+ },
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cKz" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cKA" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cKB" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cKC" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ pixel_y = 25
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cKD" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cKE" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cKF" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cKG" = (
+/obj/structure/plasticflaps{
+ opacity = 1
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=1";
+ dir = 1;
+ freq = 1400;
+ location = "Robotics"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/assembly/robotics)
+"cKH" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Robotics Maintenance";
+ req_access_txt = "29"
+ },
+/turf/open/floor/plating,
+/area/assembly/robotics)
+"cKI" = (
+/obj/structure/sign/securearea,
+/turf/closed/wall/r_wall,
+/area/medical/research{
+ name = "Research Division"
+ })
+"cKJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cKK" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cKL" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance{
+ icon_state = "door_closed";
+ locked = 0;
+ name = "Storage Room";
+ req_access_txt = "0";
+ req_one_access_txt = "12;47"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cKM" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cKN" = (
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cKO" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg1"
+ },
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cKP" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/starboardsolar)
+"cKQ" = (
+/obj/machinery/door/airlock/engineering{
+ name = "Aft Starboard Solar Access";
+ req_access_txt = "10"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/starboardsolar)
+"cKR" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'HIGH VOLTAGE'";
+ icon_state = "shock";
+ name = "HIGH VOLTAGE";
+ pixel_y = 0
+ },
+/turf/closed/wall/r_wall,
+/area/maintenance/starboardsolar)
+"cKS" = (
+/obj/structure/table/glass,
+/obj/item/weapon/reagent_containers/dropper,
+/obj/item/weapon/reagent_containers/syringe,
+/obj/item/weapon/reagent_containers/glass/beaker,
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"cKT" = (
+/obj/structure/table/glass,
+/obj/item/weapon/folder/white{
+ pixel_y = 4
+ },
+/obj/item/weapon/pen/red,
+/turf/open/floor/plasteel/freezer,
+/area/medical/virology)
+"cKU" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
+ },
+/turf/closed/wall,
+/area/medical/virology)
+"cKV" = (
+/obj/structure/table/glass,
+/obj/item/weapon/paper_bin{
+ pixel_x = -2;
+ pixel_y = 9
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 8
+ },
+/area/medical/virology)
+"cKW" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"cKX" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"cKY" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"cKZ" = (
+/obj/structure/sink{
+ dir = 4;
+ icon_state = "sink";
+ pixel_x = 11;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 4
+ },
+/area/medical/virology)
+"cLa" = (
+/turf/closed/wall,
+/area/chapel/office)
+"cLb" = (
+/obj/machinery/door/airlock/centcom{
+ layer = 2.7;
+ name = "Crematorium Maintenance";
+ opacity = 1;
+ req_access_txt = "27"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cLc" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Chapel Office Maintenance";
+ opacity = 1;
+ req_access_txt = "27"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cLd" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cLe" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cLf" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cLg" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 8;
+ icon_state = "pipe-j2"
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cLh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cLi" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg2"
+ },
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cLj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cLk" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "0";
+ req_one_access_txt = "12;5;39;6"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cLl" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cLm" = (
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cLn" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=10-Aft-To-Central";
+ location = "9.4-Escape-4"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cLo" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cLp" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cLq" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cLr" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cLs" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cLt" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cLu" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cLv" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "0";
+ req_one_access_txt = "12;47"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cLw" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cLx" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cLy" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cLz" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cLA" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "0";
+ req_one_access_txt = "12;47"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cLB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cLC" = (
+/obj/machinery/doorButtons/airlock_controller{
+ idExterior = "incinerator_airlock_exterior";
+ idInterior = "incinerator_airlock_interior";
+ idSelf = "incinerator_access_control";
+ name = "Incinerator Access Console";
+ pixel_x = 8;
+ pixel_y = -24;
+ req_access_txt = "12"
+ },
+/obj/machinery/button/ignition{
+ id = "Incinerator";
+ pixel_x = 8;
+ pixel_y = -36
+ },
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for watching the turbine vent.";
+ dir = 8;
+ name = "turbine vent monitor";
+ network = list("Turbine");
+ pixel_x = 29;
+ pixel_y = 0
+ },
+/obj/machinery/button/door{
+ id = "turbinevent";
+ name = "Turbine Vent Control";
+ pixel_x = -8;
+ pixel_y = -36;
+ req_access_txt = "12"
+ },
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/obj/machinery/button/door{
+ id = "auxincineratorvent";
+ name = "Auxiliary Vent Control";
+ pixel_x = -8;
+ pixel_y = -24;
+ req_access_txt = "12"
+ },
+/obj/machinery/computer/turbine_computer{
+ id = "incineratorturbine"
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/incinerator)
+"cLD" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cLE" = (
+/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
+ dir = 1;
+ name = "euthanization chamber freezer";
+ on = 1;
+ target_temperature = 80
+ },
+/turf/open/floor/plating,
+/area/toxins/xenobiology)
+"cLF" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg2"
+ },
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cLG" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cLH" = (
+/obj/machinery/space_heater,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cLI" = (
+/obj/structure/closet/crate,
+/obj/item/weapon/poster/legit,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cLJ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/closet,
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cLK" = (
+/obj/machinery/power/smes,
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboardsolar)
+"cLL" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboardsolar)
+"cLM" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "Aft Starboard Solar APC";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboardsolar)
+"cLN" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall/r_wall,
+/area/medical/virology)
+"cLO" = (
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 10
+ },
+/area/medical/virology)
+"cLP" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/whitegreen/side,
+/area/medical/virology)
+"cLQ" = (
+/obj/structure/chair/stool,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/whitegreen/side,
+/area/medical/virology)
+"cLR" = (
+/obj/structure/chair/stool,
+/turf/open/floor/plasteel/whitegreen/side,
+/area/medical/virology)
+"cLS" = (
+/obj/structure/chair/stool,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 6
+ },
+/area/medical/virology)
+"cLT" = (
+/obj/structure/bodycontainer/crematorium,
+/obj/effect/decal/cleanable/cobweb,
+/turf/open/floor/plasteel/black,
+/area/chapel/office)
+"cLU" = (
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/turf/open/floor/engine,
+/area/toxins/explab)
+"cLV" = (
+/obj/item/device/radio/intercom{
+ pixel_y = 25
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -26;
+ pixel_y = 0
+ },
+/obj/structure/table/wood,
+/obj/item/clothing/under/burial,
+/obj/item/clothing/under/burial,
+/obj/item/clothing/under/burial,
+/obj/item/clothing/under/burial,
+/obj/item/clothing/under/burial,
+/obj/item/clothing/under/burial,
+/turf/open/floor/plasteel/grimy,
+/area/chapel/office)
+"cLW" = (
+/obj/machinery/requests_console{
+ department = "Chapel";
+ departmentType = 2;
+ pixel_y = 30
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel/grimy,
+/area/chapel/office)
+"cLX" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/grimy,
+/area/chapel/office)
+"cLY" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/grimy,
+/area/chapel/office)
+"cLZ" = (
+/obj/machinery/door/morgue{
+ name = "Relic Closet";
+ req_access_txt = "22"
+ },
+/turf/open/floor/plasteel/cult{
+ dir = 2
+ },
+/area/chapel/office)
+"cMa" = (
+/obj/structure/table/wood,
+/obj/item/weapon/spellbook/oneuse/smoke{
+ name = "mysterious old book of "
+ },
+/obj/item/weapon/reagent_containers/food/drinks/bottle/holywater{
+ name = "flask of holy water";
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/obj/item/weapon/nullrod{
+ pixel_x = 4
+ },
+/obj/item/organ/heart,
+/obj/item/device/soulstone/anybody/chaplain,
+/obj/effect/landmark{
+ name = "revenantspawn"
+ },
+/turf/open/floor/plasteel/cult{
+ dir = 2
+ },
+/area/chapel/office)
+"cMb" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Chapel Maintenance Access ";
+ req_access_txt = "0";
+ req_one_access_txt = "12;27"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cMc" = (
+/obj/item/weapon/tank/internals/air,
+/obj/item/weapon/tank/internals/air,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/machinery/space_heater,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/structure/sign/poster{
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cMd" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cMe" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cMf" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cMg" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cMh" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cMi" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=9.2-Escape-2";
+ location = "9.1-Escape-1"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cMj" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Departure Lounge - Starboard Fore";
+ dir = 8;
+ network = list("SS13")
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 27;
+ pixel_y = 0
+ },
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-14";
+ layer = 4.1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cMk" = (
+/obj/machinery/power/apc{
+ cell_type = 5000;
+ dir = 2;
+ name = "Aft Maintenance APC";
+ pixel_y = -24
+ },
+/obj/structure/cable/yellow,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cMl" = (
+/obj/machinery/space_heater,
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cMm" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cMn" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/structure/sign/poster{
+ pixel_y = 32
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cMo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9;
+ pixel_y = 0
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 0;
+ pixel_y = -30
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cMp" = (
+/obj/structure/chair,
+/obj/item/weapon/cigbutt,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cMq" = (
+/obj/machinery/power/terminal{
+ icon_state = "term";
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/machinery/camera{
+ c_tag = "Aft Starboard Solar Maintenance";
+ dir = 4;
+ network = list("SS13")
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboardsolar)
+"cMr" = (
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/starboardsolar)
+"cMs" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboardsolar)
+"cMt" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating/airless,
+/area/space)
+"cMu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating/airless,
+/area/space)
+"cMv" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/open/floor/plating/airless,
+/area/medical/virology)
+"cMw" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating,
+/area/medical/virology)
+"cMx" = (
+/obj/machinery/atmospherics/components/unary/tank/air{
+ dir = 1
+ },
+/turf/open/floor/plasteel/vault,
+/area/medical/virology)
+"cMy" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 1;
+ name = "virology air connector port"
+ },
+/obj/machinery/portable_atmospherics/canister/air,
+/turf/open/floor/plasteel/vault,
+/area/medical/virology)
+"cMz" = (
+/obj/item/trash/popcorn,
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/vault,
+/area/medical/virology)
+"cMA" = (
+/obj/item/weapon/reagent_containers/food/snacks/sosjerky,
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/vault,
+/area/medical/virology)
+"cMB" = (
+/obj/item/trash/cheesie{
+ pixel_y = 4
+ },
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/vault,
+/area/medical/virology)
+"cMC" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/machinery/button/crematorium{
+ pixel_x = -25
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/office)
+"cMD" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Chaplain"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/office)
+"cME" = (
+/obj/item/device/flashlight/lamp,
+/obj/machinery/newscaster{
+ pixel_x = -30
+ },
+/obj/structure/table/wood,
+/turf/open/floor/plasteel/grimy,
+/area/chapel/office)
+"cMF" = (
+/obj/structure/chair,
+/obj/effect/landmark/start{
+ name = "Chaplain"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/grimy,
+/area/chapel/office)
+"cMG" = (
+/obj/item/weapon/paper_bin{
+ pixel_x = -2;
+ pixel_y = 8
+ },
+/obj/item/weapon/pen,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/table/wood,
+/turf/open/floor/plasteel/grimy,
+/area/chapel/office)
+"cMH" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_x = 30;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/grimy,
+/area/chapel/office)
+"cMI" = (
+/turf/closed/wall,
+/area/chapel/main)
+"cMJ" = (
+/obj/item/candle,
+/obj/machinery/light_switch{
+ pixel_x = -27
+ },
+/obj/effect/decal/cleanable/cobweb,
+/obj/structure/table/wood,
+/turf/open/floor/plasteel/vault,
+/area/chapel/main)
+"cMK" = (
+/obj/item/weapon/storage/book/bible,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/newscaster{
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/obj/machinery/camera{
+ c_tag = "Chapel - Fore";
+ dir = 2;
+ network = list("SS13")
+ },
+/obj/structure/table/wood,
+/turf/open/floor/plasteel/vault,
+/area/chapel/main)
+"cML" = (
+/obj/structure/table/wood,
+/obj/item/weapon/reagent_containers/food/snacks/grown/poppy{
+ pixel_y = 2
+ },
+/obj/item/weapon/reagent_containers/food/snacks/grown/poppy{
+ pixel_y = 2
+ },
+/obj/item/weapon/reagent_containers/food/snacks/grown/poppy{
+ pixel_y = 2
+ },
+/obj/item/weapon/reagent_containers/food/snacks/grown/poppy{
+ pixel_y = 2
+ },
+/obj/item/weapon/reagent_containers/food/snacks/grown/poppy{
+ pixel_y = 2
+ },
+/turf/open/floor/plasteel/vault,
+/area/chapel/main)
+"cMM" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/vault,
+/area/chapel/main)
+"cMN" = (
+/obj/structure/table/wood,
+/obj/item/weapon/reagent_containers/food/snacks/grown/harebell,
+/obj/item/weapon/reagent_containers/food/snacks/grown/harebell,
+/obj/item/weapon/reagent_containers/food/snacks/grown/harebell,
+/obj/item/weapon/reagent_containers/food/snacks/grown/harebell,
+/obj/item/weapon/reagent_containers/food/snacks/grown/harebell,
+/turf/open/floor/plasteel/vault,
+/area/chapel/main)
+"cMO" = (
+/obj/item/weapon/paper_bin{
+ pixel_x = -2;
+ pixel_y = 8
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/table/wood,
+/obj/structure/noticeboard{
+ pixel_y = 29
+ },
+/turf/open/floor/plasteel/vault,
+/area/chapel/main)
+"cMP" = (
+/obj/item/candle,
+/obj/machinery/light_switch{
+ pixel_x = 0;
+ pixel_y = 25
+ },
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/structure/table/wood,
+/turf/open/floor/plasteel/vault,
+/area/chapel/main)
+"cMQ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/noticeboard{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 1
+ },
+/area/hallway/primary/central)
+"cMR" = (
+/obj/structure/table,
+/obj/item/candle,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cMS" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Assistant"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cMT" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cMU" = (
+/obj/machinery/status_display{
+ density = 0;
+ layer = 4;
+ pixel_x = 0;
+ pixel_y = 0
+ },
+/turf/closed/wall,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cMV" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cMW" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cMX" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cMY" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cMZ" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/westleft{
+ base_state = "right";
+ dir = 8;
+ icon_state = "right";
+ name = "Outer Window";
+ req_access_txt = "0"
+ },
+/obj/machinery/door/window/brigdoor{
+ dir = 4;
+ name = "Security Desk";
+ req_access_txt = "1"
+ },
+/obj/item/weapon/folder/red,
+/obj/item/weapon/pen,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cNa" = (
+/obj/structure/chair/office/dark{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for watching output from station security cameras.";
+ name = "Security Camera Monitor";
+ network = list("SS13");
+ pixel_x = 0;
+ pixel_y = 30
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 9
+ },
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cNb" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
+ },
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_x = 0;
+ pixel_y = 28
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 1
+ },
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cNc" = (
+/obj/structure/chair,
+/obj/structure/sign/map/left{
+ desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown).";
+ icon_state = "map-left-MS";
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 1
+ },
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cNd" = (
+/obj/structure/table,
+/obj/machinery/recharger{
+ pixel_y = 4
+ },
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/obj/structure/sign/map/right{
+ desc = "A framed picture of the station. Clockwise from security in red at the top, you see engineering in yellow, science in purple, escape in checkered red-and-white, medbay in green, arrivals in checkered red-and-blue, and then cargo in brown.";
+ icon_state = "map-right-MS";
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 5
+ },
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cNe" = (
+/obj/machinery/door/airlock/external{
+ name = "Auxiliary Escape Airlock"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cNf" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9;
+ pixel_y = 0
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cNg" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/device/flashlight,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/machinery/light/small,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cNh" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/turf/open/floor/plasteel/whiteblue/corner{
+ dir = 8
+ },
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cNi" = (
+/obj/machinery/biogenerator,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cNj" = (
+/obj/item/weapon/reagent_containers/food/snacks/grown/banana,
+/obj/item/weapon/reagent_containers/food/snacks/grown/banana,
+/obj/item/weapon/reagent_containers/food/snacks/grown/wheat,
+/obj/item/weapon/reagent_containers/food/snacks/grown/watermelon,
+/obj/item/weapon/reagent_containers/food/snacks/grown/watermelon,
+/obj/item/weapon/reagent_containers/food/snacks/grown/watermelon,
+/obj/item/weapon/reagent_containers/food/snacks/grown/citrus/orange,
+/obj/item/weapon/reagent_containers/food/snacks/grown/grapes,
+/obj/item/weapon/reagent_containers/food/snacks/grown/cocoapod,
+/obj/structure/rack{
+ layer = 2.8
+ },
+/obj/item/seeds/wheat,
+/obj/item/seeds/watermelon,
+/obj/item/seeds/watermelon,
+/obj/item/seeds/grape,
+/obj/item/seeds/glowshroom,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cNk" = (
+/obj/item/weapon/storage/bag/plants/portaseeder,
+/obj/item/weapon/storage/bag/plants/portaseeder,
+/obj/item/device/plant_analyzer,
+/obj/item/weapon/cultivator,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/structure/rack{
+ layer = 2.8
+ },
+/obj/item/seeds/corn,
+/obj/item/seeds/cabbage,
+/obj/item/seeds/ambrosia,
+/obj/item/seeds/grass,
+/obj/item/weapon/reagent_containers/food/snacks/grown/mushroom/glowshroom,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cNl" = (
+/obj/machinery/hydroponics/soil{
+ pixel_y = 8
+ },
+/obj/item/seeds/carrot,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cNm" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cNn" = (
+/obj/machinery/hydroponics/soil{
+ pixel_y = 8
+ },
+/obj/item/device/plant_analyzer,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cNo" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4";
+ tag = "90Curve"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboardsolar)
+"cNp" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/structure/chair/stool,
+/turf/open/floor/plating,
+/area/maintenance/starboardsolar)
+"cNq" = (
+/obj/machinery/power/solar_control{
+ id = "aftstarboard";
+ name = "Aft Starboard Solar Control";
+ track = 0
+ },
+/obj/structure/cable,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 0;
+ pixel_y = -32
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboardsolar)
+"cNr" = (
+/obj/structure/disposaloutlet,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/open/floor/plating/airless,
+/area/space)
+"cNs" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/on{
+ dir = 1
+ },
+/turf/open/floor/plating/airless,
+/area/medical/virology)
+"cNt" = (
+/obj/structure/bodycontainer/morgue,
+/turf/open/floor/plasteel/black,
+/area/chapel/office)
+"cNu" = (
+/obj/machinery/camera{
+ c_tag = "Chapel Office - Backroom";
+ dir = 8;
+ network = list("SS13")
+ },
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 27
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/office)
+"cNv" = (
+/obj/item/weapon/storage/crayons,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/table/wood,
+/turf/open/floor/plasteel/grimy,
+/area/chapel/office)
+"cNw" = (
+/obj/structure/cable,
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/machinery/power/compressor{
+ comp_id = "incineratorturbine";
+ dir = 1;
+ luminosity = 2
+ },
+/turf/open/floor/engine/vacuum,
+/area/maintenance/incinerator)
+"cNx" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/item/weapon/storage/fancy/candle_box{
+ pixel_x = 0;
+ pixel_y = 5
+ },
+/obj/structure/table/wood,
+/turf/open/floor/plasteel/grimy,
+/area/chapel/office)
+"cNy" = (
+/turf/open/floor/plasteel/grimy,
+/area/chapel/office)
+"cNz" = (
+/obj/item/device/radio/intercom{
+ broadcasting = 1;
+ frequency = 1480;
+ name = "Confessional Intercom";
+ pixel_x = -25
+ },
+/obj/structure/chair,
+/turf/open/floor/plasteel/black,
+/area/chapel/office)
+"cNA" = (
+/obj/machinery/door/morgue{
+ name = "Confession Booth"
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main)
+"cNB" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/carpet,
+/area/chapel/main)
+"cNC" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/chapel/main)
+"cND" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/carpet,
+/area/chapel/main)
+"cNE" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/carpet,
+/area/chapel/main)
+"cNF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/carpet,
+/area/chapel/main)
+"cNG" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/chapel/main)
+"cNH" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/centcom{
+ name = "Chapel";
+ opacity = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main)
+"cNI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cNJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cNK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cNL" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cNM" = (
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cNN" = (
+/obj/structure/flora/ausbushes/fernybush,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/flora/ausbushes/palebush,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/grass,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cNO" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cNP" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cNQ" = (
+/obj/machinery/computer/secure_data,
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cNR" = (
+/obj/structure/chair/office/dark{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cNS" = (
+/obj/structure/table,
+/obj/item/weapon/folder/red{
+ pixel_x = 3
+ },
+/obj/item/weapon/folder/white{
+ pixel_x = -4;
+ pixel_y = 2
+ },
+/obj/item/weapon/restraints/handcuffs,
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 4
+ },
+/obj/item/device/radio/off,
+/obj/machinery/requests_console{
+ department = "Security";
+ departmentType = 5;
+ pixel_x = 30;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 4
+ },
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cNT" = (
+/obj/structure/sign/vacuum{
+ pixel_x = 32
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cNU" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ req_access_txt = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cNV" = (
+/obj/structure/chair/stool,
+/obj/structure/sign/poster{
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/medical/medbay3{
+ name = "Medbay Aft"
+ })
+"cNW" = (
+/obj/structure/sink/kitchen{
+ desc = "A sink used for washing one's hands and face. It looks rusty and home-made";
+ name = "old sink";
+ pixel_y = 28
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cNX" = (
+/obj/item/seeds/watermelon,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cNY" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cNZ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9;
+ pixel_y = 0
+ },
+/obj/structure/chair,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cOa" = (
+/obj/structure/cable,
+/obj/machinery/power/turbine{
+ luminosity = 2
+ },
+/turf/open/floor/engine/vacuum,
+/area/maintenance/incinerator)
+"cOb" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ external_pressure_bound = 101.325;
+ on = 1;
+ pressure_checks = 1
+ },
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/office)
+"cOc" = (
+/obj/machinery/door/airlock/centcom{
+ layer = 2.7;
+ name = "Crematorium";
+ opacity = 1;
+ req_access_txt = "27"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/office)
+"cOd" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/grimy,
+/area/chapel/office)
+"cOe" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/grimy,
+/area/chapel/office)
+"cOf" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/grimy,
+/area/chapel/office)
+"cOg" = (
+/obj/machinery/light_switch{
+ pixel_x = 28;
+ pixel_y = 0
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/machinery/camera{
+ c_tag = "Chapel Office";
+ dir = 8;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/grimy,
+/area/chapel/office)
+"cOh" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/tinted/fulltile,
+/turf/open/floor/plasteel/black,
+/area/chapel/office)
+"cOi" = (
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Chapel APC";
+ pixel_x = -25
+ },
+/turf/open/floor/carpet,
+/area/chapel/main)
+"cOj" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/carpet,
+/area/chapel/main)
+"cOk" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/obj/effect/landmark/xmastree,
+/turf/open/floor/carpet,
+/area/chapel/main)
+"cOl" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/chapel/main)
+"cOm" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/carpet,
+/area/chapel/main)
+"cOn" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/centcom{
+ name = "Chapel";
+ opacity = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main)
+"cOo" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cOp" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cOq" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cOr" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cOs" = (
+/obj/machinery/ai_status_display{
+ pixel_x = 0;
+ pixel_y = 0
+ },
+/turf/closed/wall,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cOt" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cOu" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cOv" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_security{
+ name = "Departure Lounge Security Post";
+ req_access_txt = "63"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/red,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cOw" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 10
+ },
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cOx" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/red/side,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cOy" = (
+/obj/structure/table,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/weapon/pen,
+/turf/open/floor/plasteel/red/side,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cOz" = (
+/obj/structure/table,
+/obj/machinery/newscaster/security_unit{
+ pixel_x = 29;
+ pixel_y = 1
+ },
+/obj/machinery/camera{
+ c_tag = "Departure Lounge - Security Post";
+ dir = 1;
+ network = list("SS13")
+ },
+/obj/item/weapon/book/manual/wiki/security_space_law{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/item/device/taperecorder{
+ pixel_x = 4;
+ pixel_y = 0
+ },
+/obj/item/device/radio/intercom{
+ broadcasting = 0;
+ listening = 1;
+ name = "Station Intercom (General)";
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 6
+ },
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cOA" = (
+/obj/structure/rack,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/glasses/sunglasses,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cOB" = (
+/obj/item/seeds/sunflower/moonflower,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cOC" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cOD" = (
+/obj/item/seeds/berry,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cOE" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cOF" = (
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/office)
+"cOG" = (
+/obj/structure/closet/wardrobe/chaplain_black,
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/grimy,
+/area/chapel/office)
+"cOH" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/open/floor/plasteel/grimy,
+/area/chapel/office)
+"cOI" = (
+/obj/machinery/power/apc{
+ dir = 2;
+ lighting = 3;
+ name = "Chapel Office APC";
+ pixel_x = 0;
+ pixel_y = -25
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/obj/structure/cable/yellow,
+/turf/open/floor/plasteel/grimy,
+/area/chapel/office)
+"cOJ" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/grimy,
+/area/chapel/office)
+"cOK" = (
+/obj/machinery/door/morgue{
+ name = "Confession Booth (Chaplain)";
+ req_access_txt = "22"
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/office)
+"cOL" = (
+/obj/item/device/radio/intercom{
+ broadcasting = 1;
+ frequency = 1480;
+ name = "Confessional Intercom";
+ pixel_x = 25
+ },
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/effect/landmark/start{
+ name = "Chaplain"
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/office)
+"cOM" = (
+/turf/open/floor/plasteel/chapel{
+ dir = 4
+ },
+/area/chapel/main)
+"cON" = (
+/obj/structure/chair/stool,
+/turf/open/floor/plasteel/chapel{
+ dir = 1
+ },
+/area/chapel/main)
+"cOO" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/chair/stool,
+/turf/open/floor/plasteel/chapel{
+ dir = 4
+ },
+/area/chapel/main)
+"cOP" = (
+/turf/open/floor/plasteel/black,
+/area/chapel/main)
+"cOQ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/chair/stool,
+/turf/open/floor/plasteel/chapel{
+ dir = 1
+ },
+/area/chapel/main)
+"cOR" = (
+/obj/structure/chair/stool,
+/turf/open/floor/plasteel/chapel{
+ dir = 4
+ },
+/area/chapel/main)
+"cOS" = (
+/turf/open/floor/plasteel/chapel{
+ dir = 1
+ },
+/area/chapel/main)
+"cOT" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cOU" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 2;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cOV" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cOW" = (
+/obj/structure/flora/ausbushes/fernybush,
+/obj/structure/flora/ausbushes/fullgrass,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/ausbushes/sunnybush,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/grass,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cOX" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cOY" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cOZ" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cPa" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/structure/sign/electricshock{
+ pixel_x = 32
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cPb" = (
+/turf/closed/wall,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cPc" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow,
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/open/floor/plating,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cPd" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cPe" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cPf" = (
+/obj/machinery/hydroponics/soil{
+ pixel_y = 8
+ },
+/obj/item/seeds/glowshroom,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cPg" = (
+/obj/machinery/hydroponics/soil{
+ pixel_y = 8
+ },
+/obj/item/weapon/cultivator,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cPh" = (
+/obj/machinery/hydroponics/soil{
+ pixel_y = 8
+ },
+/obj/item/seeds/ambrosia,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cPi" = (
+/obj/machinery/hydroponics/soil{
+ pixel_y = 8
+ },
+/obj/item/seeds/watermelon,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cPj" = (
+/obj/machinery/hydroponics/soil{
+ pixel_y = 8
+ },
+/obj/item/seeds/berry,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cPk" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/chapel/office)
+"cPl" = (
+/obj/machinery/door/airlock/centcom{
+ name = "Chapel Office";
+ opacity = 1;
+ req_access_txt = "27"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/black,
+/area/chapel/office)
+"cPm" = (
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/turf/open/floor/plasteel/chapel,
+/area/chapel/main)
+"cPn" = (
+/obj/structure/chair/stool,
+/turf/open/floor/plasteel/chapel{
+ dir = 8
+ },
+/area/chapel/main)
+"cPo" = (
+/obj/structure/chair/stool,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/chapel,
+/area/chapel/main)
+"cPp" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/chair/stool,
+/turf/open/floor/plasteel/chapel{
+ dir = 8
+ },
+/area/chapel/main)
+"cPq" = (
+/obj/structure/chair/stool,
+/turf/open/floor/plasteel/chapel,
+/area/chapel/main)
+"cPr" = (
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/turf/open/floor/plasteel/chapel{
+ dir = 8
+ },
+/area/chapel/main)
+"cPs" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cPt" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cPu" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/effect/landmark/start{
+ name = "Assistant"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cPv" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cPw" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/obj/structure/sign/poster{
+ pixel_y = -32
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cPx" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cPy" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/sign/poster{
+ pixel_y = 32
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg2"
+ },
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cPz" = (
+/obj/structure/closet,
+/obj/item/device/flashlight,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 3;
+ name = "3maintenance loot spawner"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cPA" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "chapel_shutters_parlour";
+ name = "chapel shutters"
+ },
+/turf/open/floor/plating,
+/area/chapel/main)
+"cPB" = (
+/obj/structure/closet/coffin,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/cobweb,
+/turf/open/floor/plating,
+/area/chapel/main)
+"cPC" = (
+/obj/structure/closet/coffin,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/chapel/main)
+"cPD" = (
+/obj/structure/noticeboard{
+ desc = "A memorial wall for pinning up momentos";
+ name = "memorial board";
+ pixel_y = 32
+ },
+/obj/item/weapon/storage/fancy/candle_box,
+/obj/item/weapon/storage/fancy/candle_box{
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/obj/effect/decal/cleanable/cobweb,
+/obj/structure/table/wood,
+/turf/open/floor/carpet,
+/area/chapel/main)
+"cPE" = (
+/obj/structure/sign/atmosplaque{
+ desc = "A plaque commemorating the fallen, may they rest in peace, forever asleep amongst the stars. Someone has drawn a picture of a crying badger at the bottom.";
+ icon_state = "kiddieplaque";
+ name = "Remembrance Plaque";
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/obj/item/weapon/reagent_containers/food/snacks/grown/poppy{
+ pixel_y = 2
+ },
+/obj/item/weapon/reagent_containers/food/snacks/grown/poppy{
+ pixel_y = 2
+ },
+/obj/item/weapon/reagent_containers/food/snacks/grown/poppy{
+ pixel_y = 2
+ },
+/obj/item/weapon/reagent_containers/food/snacks/grown/poppy{
+ pixel_y = 2
+ },
+/obj/item/weapon/reagent_containers/food/snacks/grown/poppy{
+ pixel_y = 2
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/table/wood,
+/turf/open/floor/carpet,
+/area/chapel/main)
+"cPF" = (
+/obj/structure/noticeboard{
+ desc = "A memorial wall for pinning up momentos";
+ name = "memorial board";
+ pixel_y = 32
+ },
+/obj/item/weapon/storage/book/bible,
+/obj/structure/table/wood,
+/turf/open/floor/carpet,
+/area/chapel/main)
+"cPG" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/chapel/main)
+"cPH" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/black,
+/area/chapel/main)
+"cPI" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/light_switch{
+ pixel_y = 28
+ },
+/obj/item/weapon/paper_bin{
+ pixel_x = -2;
+ pixel_y = 8
+ },
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/structure/table/wood,
+/turf/open/floor/plasteel/black,
+/area/chapel/main)
+"cPJ" = (
+/obj/structure/chair/comfy/black{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/cobweb,
+/turf/open/floor/plasteel/chapel{
+ dir = 1
+ },
+/area/chapel/main)
+"cPK" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/chapel{
+ dir = 4
+ },
+/area/chapel/main)
+"cPL" = (
+/obj/structure/chair/stool,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/chapel{
+ dir = 1
+ },
+/area/chapel/main)
+"cPM" = (
+/obj/structure/chair/stool,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/chapel{
+ dir = 4
+ },
+/area/chapel/main)
+"cPN" = (
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/structure/chair/comfy/black{
+ dir = 8
+ },
+/turf/open/floor/plasteel/chapel{
+ dir = 4
+ },
+/area/chapel/main)
+"cPO" = (
+/obj/machinery/camera{
+ c_tag = "Departure Lounge - Port Aft";
+ dir = 4;
+ network = list("SS13")
+ },
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27;
+ pixel_y = 0
+ },
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-04";
+ layer = 4.1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cPP" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cPQ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cPR" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cPS" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/item/device/radio/beacon,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cPT" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cPU" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cPV" = (
+/obj/machinery/camera{
+ c_tag = "Departure Lounge - Starboard Aft";
+ dir = 8;
+ network = list("SS13")
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 29
+ },
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-16";
+ layer = 4.1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cPW" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/grille,
+/turf/open/floor/plating{
+ icon_state = "panelscorched"
+ },
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cPX" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/research{
+ name = "Xenobiology Lab";
+ req_access_txt = "47"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/whitepurple{
+ dir = 4
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"cPY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cPZ" = (
+/obj/structure/closet/coffin,
+/turf/open/floor/plating,
+/area/chapel/main)
+"cQa" = (
+/obj/machinery/newscaster{
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main)
+"cQb" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main)
+"cQc" = (
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = 21
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/black,
+/area/chapel/main)
+"cQd" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 2
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main)
+"cQe" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main)
+"cQf" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock/centcom{
+ name = "Funeral Parlour";
+ opacity = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main)
+"cQg" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/chapel{
+ dir = 8
+ },
+/area/chapel/main)
+"cQh" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/chapel,
+/area/chapel/main)
+"cQi" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/chapel,
+/area/chapel/main)
+"cQj" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 2
+ },
+/turf/open/floor/plasteel/chapel{
+ dir = 8
+ },
+/area/chapel/main)
+"cQk" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/chapel{
+ dir = 8
+ },
+/area/chapel/main)
+"cQl" = (
+/turf/open/floor/plasteel/chapel,
+/area/chapel/main)
+"cQm" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cQn" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cQo" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=9.4-Escape-4";
+ location = "9.3-Escape-3"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cQp" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=9.3-Escape-3";
+ location = "9.2-Escape-2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cQq" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cQr" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Research Division Hallway - Xenobiology Lab Access";
+ dir = 2;
+ network = list("SS13","RD")
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 1
+ },
+/area/toxins/xenobiology)
+"cQs" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ dir = 2;
+ pixel_y = 24
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 1
+ },
+/area/toxins/xenobiology)
+"cQt" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 2
+ },
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 1
+ },
+/area/toxins/xenobiology)
+"cQu" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/sign/poster{
+ pixel_y = 32
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cQv" = (
+/obj/machinery/camera{
+ c_tag = "Toxins - Launch Area";
+ dir = 2;
+ network = list("SS13","RD")
+ },
+/obj/machinery/suit_storage_unit/rd,
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ dir = 1
+ },
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cQw" = (
+/obj/machinery/door/window/eastleft{
+ dir = 4;
+ name = "Coffin Storage";
+ req_access_txt = "22"
+ },
+/turf/open/floor/plating,
+/area/chapel/main)
+"cQx" = (
+/obj/structure/chair{
+ pixel_y = -2
+ },
+/turf/open/floor/plasteel/vault,
+/area/chapel/main)
+"cQy" = (
+/obj/structure/chair{
+ pixel_y = -2
+ },
+/obj/effect/landmark/start{
+ name = "Chaplain"
+ },
+/turf/open/floor/plasteel/vault,
+/area/chapel/main)
+"cQz" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main)
+"cQA" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main)
+"cQB" = (
+/obj/machinery/doppler_array{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ broadcasting = 0;
+ listening = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 22
+ },
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ dir = 1
+ },
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cQC" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/light_switch{
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/toxins/mixing{
+ name = "\improper Toxins Lab"
+ })
+"cQD" = (
+/obj/structure/table,
+/obj/item/stack/sheet/glass{
+ amount = 20;
+ pixel_x = 3;
+ pixel_y = -4
+ },
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 27;
+ pixel_y = 0
+ },
+/obj/item/stack/packageWrap,
+/obj/item/stack/packageWrap,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/assembly/robotics)
+"cQE" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/chapel{
+ dir = 4
+ },
+/area/chapel/main)
+"cQF" = (
+/obj/structure/table/wood,
+/turf/open/floor/plasteel/black,
+/area/chapel/main)
+"cQG" = (
+/obj/item/weapon/storage/book/bible,
+/obj/structure/table/wood,
+/turf/open/floor/plasteel/black,
+/area/chapel/main)
+"cQH" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/chapel{
+ dir = 1
+ },
+/area/chapel/main)
+"cQI" = (
+/obj/structure/chair/comfy/black{
+ dir = 8
+ },
+/obj/machinery/camera{
+ c_tag = "Chapel - Starboard";
+ dir = 8;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/chapel{
+ dir = 4
+ },
+/area/chapel/main)
+"cQJ" = (
+/obj/structure/sign/vacuum{
+ pixel_x = -32
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cQK" = (
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cQL" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cQM" = (
+/obj/machinery/holopad,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cQN" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cQO" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cQP" = (
+/obj/structure/sign/vacuum{
+ pixel_x = 32
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cQQ" = (
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/obj/machinery/camera{
+ c_tag = "Departure Lounge - Port Fore";
+ dir = 4;
+ network = list("SS13")
+ },
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-24";
+ layer = 4.1
+ },
+/obj/structure/sign/poster{
+ pixel_x = -32;
+ pixel_y = 0
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cQR" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "xeno_blastdoor";
+ name = "biohazard containment door"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/toxins/xenobiology)
+"cQS" = (
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 29
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "xeno_blastdoor";
+ name = "biohazard containment door"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/toxins/xenobiology)
+"cQT" = (
+/obj/structure/closet/coffin,
+/obj/machinery/light/small,
+/turf/open/floor/plating,
+/area/chapel/main)
+"cQU" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/obj/machinery/camera{
+ c_tag = "Chapel - Funeral Parlour";
+ dir = 8;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main)
+"cQV" = (
+/obj/item/device/flashlight/lantern{
+ pixel_y = 7
+ },
+/obj/structure/table/wood,
+/turf/open/floor/plasteel/black,
+/area/chapel/main)
+"cQW" = (
+/obj/effect/landmark/start{
+ name = "Chaplain"
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main)
+"cQX" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/turf/open/floor/plasteel/chapel{
+ dir = 8
+ },
+/area/chapel/main)
+"cQY" = (
+/obj/machinery/door/airlock/external{
+ name = "Departure Lounge Airlock"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cQZ" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "xeno_blastdoor";
+ name = "biohazard containment door"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/toxins/xenobiology)
+"cRa" = (
+/obj/structure/sign/biohazard,
+/turf/closed/wall,
+/area/toxins/xenobiology)
+"cRb" = (
+/obj/structure/sign/securearea,
+/turf/closed/wall,
+/area/toxins/xenobiology)
+"cRc" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/research{
+ name = "Xenobiology Lab";
+ req_access_txt = "47"
+ },
+/turf/open/floor/plasteel/whitepurple{
+ dir = 4
+ },
+/area/toxins/xenobiology)
+"cRd" = (
+/obj/machinery/hydroponics/soil{
+ pixel_y = 8
+ },
+/obj/item/seeds/glowshroom,
+/obj/item/seeds/corn,
+/obj/structure/sign/poster{
+ pixel_y = 32
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"cRe" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/toxins/xenobiology)
+"cRf" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 1
+ },
+/area/toxins/xenobiology)
+"cRg" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"cRh" = (
+/obj/structure/sink{
+ dir = 8;
+ icon_state = "sink";
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/obj/machinery/light_switch{
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 9
+ },
+/area/toxins/xenobiology)
+"cRi" = (
+/turf/closed/wall/r_wall,
+/area/toxins/xenobiology)
+"cRj" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main)
+"cRk" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"cRl" = (
+/obj/machinery/door/window{
+ dir = 4;
+ name = "Mass Driver";
+ req_access_txt = "22"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main)
+"cRm" = (
+/obj/machinery/mass_driver{
+ dir = 2;
+ id = "chapelgun"
+ },
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/item/device/gps,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main)
+"cRn" = (
+/obj/machinery/camera{
+ c_tag = "Chapel - Port";
+ dir = 4;
+ network = list("SS13")
+ },
+/obj/structure/chair/comfy/black{
+ dir = 4
+ },
+/turf/open/floor/plasteel/chapel{
+ dir = 8
+ },
+/area/chapel/main)
+"cRo" = (
+/obj/machinery/light/small,
+/turf/open/floor/plasteel/chapel{
+ dir = 4
+ },
+/area/chapel/main)
+"cRp" = (
+/turf/open/floor/plasteel/vault,
+/area/chapel/main)
+"cRq" = (
+/obj/machinery/holopad,
+/turf/open/floor/plasteel/vault,
+/area/chapel/main)
+"cRr" = (
+/obj/machinery/light/small,
+/obj/machinery/button/door{
+ id = "chapel_shutters_space";
+ name = "chapel shutters control";
+ pixel_x = -6;
+ pixel_y = -25;
+ req_access_txt = "0"
+ },
+/obj/machinery/light_switch{
+ pixel_x = 6;
+ pixel_y = -25
+ },
+/turf/open/floor/plasteel/chapel{
+ dir = 1
+ },
+/area/chapel/main)
+"cRs" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cRt" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cRu" = (
+/obj/structure/sign/biohazard,
+/turf/closed/wall/r_wall,
+/area/toxins/xenobiology)
+"cRv" = (
+/obj/machinery/doorButtons/access_button{
+ idDoor = "xeno_airlock_exterior";
+ idSelf = "xeno_airlock_control";
+ name = "Access Button";
+ pixel_x = -24;
+ pixel_y = 0;
+ req_access_txt = "0"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/research{
+ autoclose = 0;
+ frequency = 1449;
+ icon_state = "door_locked";
+ id_tag = "xeno_airlock_exterior";
+ locked = 1;
+ name = "Xenobiology Lab External Airlock";
+ req_access_txt = "55"
+ },
+/turf/open/floor/plasteel/whitepurple{
+ dir = 4
+ },
+/area/toxins/xenobiology)
+"cRw" = (
+/obj/structure/sign/securearea,
+/turf/closed/wall/r_wall,
+/area/toxins/xenobiology)
+"cRx" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/toxins/xenobiology)
+"cRy" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"cRz" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 8
+ },
+/area/toxins/xenobiology)
+"cRA" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"cRB" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 8
+ },
+/area/toxins/xenobiology)
+"cRC" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"cRD" = (
+/obj/machinery/atmospherics/components/unary/tank/air{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/toxins/xenobiology)
+"cRE" = (
+/obj/machinery/hydroponics/soil{
+ pixel_y = 8
+ },
+/obj/item/weapon/reagent_containers/food/snacks/grown/harebell,
+/obj/item/weapon/reagent_containers/food/snacks/grown/harebell,
+/obj/item/weapon/reagent_containers/food/snacks/grown/harebell,
+/obj/item/weapon/reagent_containers/food/snacks/grown/harebell,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plasteel/cult{
+ dir = 2
+ },
+/area/chapel/main)
+"cRF" = (
+/obj/machinery/door/morgue{
+ name = "Chapel Garden";
+ req_access_txt = "0"
+ },
+/turf/open/floor/plasteel/cult{
+ dir = 2
+ },
+/area/chapel/main)
+"cRG" = (
+/obj/machinery/light/small,
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/obj/machinery/button/door{
+ id = "chapel_shutters_parlour";
+ name = "chapel shutters control";
+ pixel_x = 0;
+ pixel_y = -25;
+ req_access_txt = "0"
+ },
+/turf/open/floor/plasteel/vault,
+/area/chapel/main)
+"cRH" = (
+/obj/structure/chair,
+/turf/open/floor/plasteel/vault,
+/area/chapel/main)
+"cRI" = (
+/obj/structure/chair,
+/obj/effect/landmark/start{
+ name = "Chaplain"
+ },
+/turf/open/floor/plasteel/vault,
+/area/chapel/main)
+"cRJ" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/item/weapon/reagent_containers/food/snacks/grown/harebell,
+/obj/item/weapon/reagent_containers/food/snacks/grown/harebell,
+/obj/item/weapon/reagent_containers/food/snacks/grown/harebell,
+/obj/item/weapon/reagent_containers/food/snacks/grown/harebell,
+/obj/item/weapon/reagent_containers/food/snacks/grown/harebell,
+/obj/machinery/button/massdriver{
+ id = "chapelgun";
+ name = "Chapel Mass Driver";
+ pixel_x = -4;
+ pixel_y = -26
+ },
+/obj/structure/table/wood,
+/turf/open/floor/plasteel/vault,
+/area/chapel/main)
+"cRK" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main)
+"cRL" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "chapel_shutters_space";
+ name = "chapel shutters"
+ },
+/turf/open/floor/plating,
+/area/chapel/main)
+"cRM" = (
+/obj/machinery/processor{
+ desc = "A machine used to process slimes and retrieve their extract.";
+ name = "Slime Processor"
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 2
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"cRN" = (
+/obj/machinery/monkey_recycler,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 8
+ },
+/area/toxins/xenobiology)
+"cRO" = (
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/solar/starboard)
+"cRP" = (
+/obj/machinery/door/poddoor{
+ id = "chapelgun";
+ name = "Chapel Launcher Door"
+ },
+/turf/open/floor/plating,
+/area/chapel/main)
+"cRQ" = (
+/obj/machinery/computer/shuttle/syndicate,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"cRR" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/toxins/xenobiology)
+"cRS" = (
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 1
+ },
+/area/toxins/xenobiology)
+"cRT" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/light_switch{
+ pixel_x = 25;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/office)
+"cRU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio3";
+ name = "containment blast door"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/toxins/xenobiology)
+"cRV" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"cRW" = (
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio8";
+ name = "containment blast door"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/toxins/xenobiology)
+"cRX" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"cRY" = (
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "Xenolab";
+ name = "test chamber blast door"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/toxins/xenobiology)
+"cRZ" = (
+/obj/structure/cable/yellow,
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio3";
+ name = "containment blast door"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/toxins/xenobiology)
+"cSa" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"cSb" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 2
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"cSc" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable/yellow,
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio8";
+ name = "containment blast door"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/toxins/xenobiology)
+"cSd" = (
+/turf/closed/wall,
+/area/toxins/xenobiology)
+"cSe" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/toxins/xenobiology)
+"cSf" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/toxins/xenobiology)
+"cSg" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/toxins/xenobiology)
+"cSh" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/structure/disposaloutlet,
+/turf/open/floor/engine,
+/area/toxins/xenobiology)
+"cSi" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"cSj" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/toxins/xenobiology)
+"cSk" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"cSl" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"cSm" = (
+/obj/structure/window/reinforced,
+/obj/structure/table/reinforced,
+/obj/machinery/button/door{
+ id = "xenobio8";
+ name = "Containment Blast Doors";
+ pixel_x = 0;
+ pixel_y = 4;
+ req_access_txt = "55"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/toxins/xenobiology)
+"cSn" = (
+/turf/open/floor/engine,
+/area/toxins/xenobiology)
+"cSo" = (
+/obj/effect/landmark{
+ name = "revenantspawn"
+ },
+/turf/open/floor/engine,
+/area/toxins/xenobiology)
+"cSp" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/camera{
+ c_tag = "Xenobiology Lab - Pen #1";
+ dir = 4;
+ network = list("SS13","RD","Xeno")
+ },
+/turf/open/floor/engine,
+/area/toxins/xenobiology)
+"cSq" = (
+/obj/machinery/door/window/northleft{
+ base_state = "right";
+ dir = 8;
+ icon_state = "right";
+ name = "Containment Pen #1";
+ req_access_txt = "55"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio3";
+ name = "containment blast door"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/engine,
+/area/toxins/xenobiology)
+"cSr" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"cSs" = (
+/obj/machinery/door/window/northleft{
+ dir = 4;
+ name = "Containment Pen #1";
+ req_access_txt = "55"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/toxins/xenobiology)
+"cSt" = (
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"cSu" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"cSv" = (
+/obj/machinery/door/window/northleft{
+ dir = 4;
+ name = "Containment Pen #2";
+ req_access_txt = "55"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio8";
+ name = "containment blast door"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/engine,
+/area/toxins/xenobiology)
+"cSw" = (
+/obj/machinery/door/window/northleft{
+ base_state = "right";
+ dir = 8;
+ icon_state = "right";
+ name = "Containment Pen #2";
+ req_access_txt = "55"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/toxins/xenobiology)
+"cSx" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Xenobiology Lab - Pen #2";
+ dir = 8;
+ network = list("SS13","RD","Xeno")
+ },
+/turf/open/floor/engine,
+/area/toxins/xenobiology)
+"cSy" = (
+/mob/living/simple_animal/slime,
+/turf/open/floor/engine,
+/area/toxins/xenobiology)
+"cSz" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/space,
+/area/solar/starboard)
+"cSA" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"cSB" = (
+/obj/structure/table/reinforced,
+/obj/machinery/button/door{
+ id = "xenobio3";
+ name = "Containment Blast Doors";
+ pixel_x = 0;
+ pixel_y = 4;
+ req_access_txt = "55"
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/toxins/xenobiology)
+"cSC" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/turf/open/space,
+/area/solar/starboard)
+"cSD" = (
+/obj/structure/cable/yellow,
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio2";
+ name = "containment blast door"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/toxins/xenobiology)
+"cSE" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/toxins/xenobiology)
+"cSF" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/structure/disposaloutlet{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/toxins/xenobiology)
+"cSG" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"cSH" = (
+/obj/structure/chair/stool{
+ pixel_y = 8
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"cSI" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'HIGH VOLTAGE'";
+ icon_state = "shock";
+ name = "HIGH VOLTAGE"
+ },
+/turf/closed/wall,
+/area/toxins/xenobiology)
+"cSJ" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"cSK" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"cSL" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 4
+ },
+/obj/machinery/airalarm{
+ frequency = 1439;
+ pixel_y = 23
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"cSM" = (
+/obj/structure/window/reinforced,
+/obj/structure/table/reinforced,
+/obj/machinery/button/door{
+ id = "xenobio7";
+ name = "Containment Blast Doors";
+ pixel_x = 0;
+ pixel_y = 4;
+ req_access_txt = "55"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/toxins/xenobiology)
+"cSN" = (
+/obj/machinery/door/window/northleft{
+ base_state = "right";
+ dir = 8;
+ icon_state = "right";
+ name = "Containment Pen #3";
+ req_access_txt = "55"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio2";
+ name = "containment blast door"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/engine,
+/area/toxins/xenobiology)
+"cSO" = (
+/obj/machinery/door/window/northleft{
+ dir = 4;
+ name = "Containment Pen #3";
+ req_access_txt = "55"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/toxins/xenobiology)
+"cSP" = (
+/obj/docking_port/stationary/random{
+ id = "pod_asteroid1";
+ name = "asteroid"
+ },
+/turf/open/space,
+/area/space)
+"cSQ" = (
+/obj/machinery/door/window/northleft{
+ dir = 4;
+ name = "Containment Pen #4";
+ req_access_txt = "55"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio7";
+ name = "containment blast door"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/engine,
+/area/toxins/xenobiology)
+"cSR" = (
+/obj/machinery/door/window/northleft{
+ base_state = "right";
+ dir = 8;
+ icon_state = "right";
+ name = "Containment Pen #4";
+ req_access_txt = "55"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/toxins/xenobiology)
+"cSS" = (
+/obj/structure/table/reinforced,
+/obj/machinery/button/door{
+ id = "xenobio2";
+ name = "Containment Blast Doors";
+ pixel_x = 0;
+ pixel_y = 4;
+ req_access_txt = "55"
+ },
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/toxins/xenobiology)
+"cST" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/table/reinforced,
+/obj/machinery/button/door{
+ id = "xenobio1";
+ name = "Containment Blast Doors";
+ pixel_x = 0;
+ pixel_y = 4;
+ req_access_txt = "55"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/toxins/xenobiology)
+"cSU" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/machinery/status_display{
+ density = 0;
+ layer = 3;
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/obj/machinery/computer/shuttle/pod{
+ pixel_x = -32;
+ possible_destinations = "pod_asteroid1";
+ shuttleId = "pod1"
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/pod_1)
+"cSV" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"cSW" = (
+/obj/structure/sink{
+ icon_state = "sink";
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"cSX" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"cSY" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/table/wood,
+/obj/item/weapon/folder{
+ pixel_y = 2
+ },
+/turf/open/floor/plasteel/grimy,
+/area/chapel/office)
+"cSZ" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8
+ },
+/obj/machinery/firealarm{
+ dir = 2;
+ pixel_y = 26
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"cTa" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"cTb" = (
+/obj/machinery/door/window/northleft{
+ dir = 4;
+ name = "Containment Pen #5";
+ req_access_txt = "55"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/toxins/xenobiology)
+"cTc" = (
+/obj/machinery/door/window/northleft{
+ base_state = "right";
+ dir = 8;
+ icon_state = "right";
+ name = "Containment Pen #5";
+ req_access_txt = "55"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio1";
+ name = "containment blast door"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/engine,
+/area/toxins/xenobiology)
+"cTd" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/item/device/radio/intercom{
+ pixel_x = 25
+ },
+/obj/item/weapon/storage/pod{
+ pixel_x = -26
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/pod_1)
+"cTe" = (
+/obj/machinery/door/window/northleft{
+ base_state = "right";
+ dir = 8;
+ icon_state = "right";
+ name = "Containment Pen #6";
+ req_access_txt = "55"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/toxins/xenobiology)
+"cTf" = (
+/obj/structure/table,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/airalarm{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22
+ },
+/obj/item/weapon/storage/box/bodybags{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/office)
+"cTg" = (
+/obj/machinery/door/window/northleft{
+ dir = 4;
+ name = "Containment Pen #6";
+ req_access_txt = "55"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio6";
+ name = "containment blast door"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/engine,
+/area/toxins/xenobiology)
+"cTh" = (
+/obj/machinery/door/poddoor{
+ id = "QMLoaddoor";
+ name = "supply dock loading door"
+ },
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "QMLoad"
+ },
+/turf/open/floor/plating,
+/area/shuttle/supply)
+"cTi" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/machinery/status_display{
+ density = 0;
+ layer = 3;
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/obj/machinery/computer/shuttle/pod{
+ pixel_y = -32;
+ possible_destinations = "pod_asteroid4";
+ shuttleId = "pod4"
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/pod_4)
+"cTj" = (
+/obj/item/weapon/crowbar/red,
+/obj/item/weapon/wrench,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/toxins/xenobiology)
+"cTk" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/button/ignition{
+ id = "Xenobio";
+ pixel_x = -6;
+ pixel_y = -3
+ },
+/obj/machinery/button/door{
+ id = "Xenolab";
+ name = "Test Chamber Blast Doors";
+ pixel_x = 4;
+ pixel_y = -3;
+ req_access_txt = "55"
+ },
+/obj/structure/table/reinforced,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/toxins/xenobiology)
+"cTl" = (
+/obj/machinery/door/poddoor{
+ id = "smindicate";
+ name = "outer blast door"
+ },
+/obj/machinery/button/door{
+ id = "smindicate";
+ name = "external door control";
+ pixel_x = -26;
+ pixel_y = 0;
+ req_access_txt = "150"
+ },
+/obj/docking_port/mobile{
+ dheight = 9;
+ dir = 2;
+ dwidth = 5;
+ height = 24;
+ id = "syndicate";
+ name = "syndicate infiltrator";
+ port_angle = 0;
+ roundstart_move = "syndicate_away";
+ width = 18
+ },
+/obj/docking_port/stationary{
+ dheight = 9;
+ dir = 2;
+ dwidth = 5;
+ height = 24;
+ id = "syndicate_nw";
+ name = "northwest of station";
+ turf_type = /turf/open/space;
+ width = 18
+ },
+/turf/open/floor/plating,
+/area/shuttle/syndicate)
+"cTm" = (
+/obj/structure/cable/yellow,
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/obj/machinery/door/poddoor/preopen{
+ id = "Xenolab";
+ name = "test chamber blast door"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/toxins/xenobiology)
+"cTn" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating,
+/area/toxins/xenobiology)
+"cTo" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/chapel/main)
+"cTp" = (
+/obj/structure/closet,
+/turf/open/floor/plating,
+/area/toxins/xenobiology)
+"cTq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/hatch{
+ icon_state = "door_closed";
+ name = "Test Chamber Maintenance";
+ req_access_txt = "47";
+ req_one_access_txt = "0"
+ },
+/turf/open/floor/plating,
+/area/toxins/xenobiology)
+"cTr" = (
+/obj/machinery/computer/security/telescreen{
+ dir = 1;
+ name = "Test Chamber Monitor";
+ network = list("Xeno");
+ pixel_x = 0;
+ pixel_y = 2
+ },
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/toxins/xenobiology)
+"cTs" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 2
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/toxins/xenobiology)
+"cTt" = (
+/obj/machinery/door/window/southleft{
+ dir = 1;
+ name = "Maximum Security Test Chamber";
+ req_access_txt = "55"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/toxins/xenobiology)
+"cTu" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ pixel_y = 25
+ },
+/obj/item/weapon/storage/pod{
+ pixel_x = 6;
+ pixel_y = -32
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/pod_4)
+"cTv" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 0
+ },
+/turf/closed/wall/mineral/plastitanium,
+/area/shuttle/syndicate)
+"cTw" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/obj/item/weapon/storage/box/lights/mixed,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"cTx" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 2;
+ initialize_directions = 11
+ },
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-21";
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main)
+"cTy" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/chair/comfy/black{
+ dir = 4
+ },
+/turf/open/floor/plasteel/chapel{
+ dir = 1
+ },
+/area/chapel/main)
+"cTz" = (
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/glasses/science,
+/obj/item/clothing/glasses/science,
+/obj/structure/table,
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/toxins/xenobiology)
+"cTA" = (
+/turf/open/floor/plating,
+/area/toxins/xenobiology)
+"cTB" = (
+/obj/machinery/space_heater,
+/turf/open/floor/plating,
+/area/toxins/xenobiology)
+"cTC" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/toxins/xenobiology)
+"cTD" = (
+/obj/machinery/shieldwallgen{
+ req_access = list(55)
+ },
+/obj/structure/cable/yellow,
+/turf/open/floor/plating,
+/area/toxins/xenobiology)
+"cTE" = (
+/obj/structure/table,
+/obj/item/device/flashlight/lamp{
+ pixel_x = 4;
+ pixel_y = 1
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"cTF" = (
+/obj/structure/frame/computer,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"cTG" = (
+/obj/structure/table,
+/obj/machinery/button/door{
+ id = "syndieshutters";
+ name = "remote shutter control";
+ req_access_txt = "150"
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"cTH" = (
+/obj/structure/table,
+/obj/item/weapon/storage/box/donkpockets{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"cTI" = (
+/obj/structure/table,
+/obj/item/weapon/c4{
+ pixel_x = 2;
+ pixel_y = -5
+ },
+/obj/item/weapon/c4{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/weapon/c4{
+ pixel_x = 2;
+ pixel_y = -3
+ },
+/obj/item/weapon/c4{
+ pixel_x = -2;
+ pixel_y = -1
+ },
+/obj/item/weapon/c4{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"cTJ" = (
+/obj/structure/table,
+/obj/item/stack/sheet/glass{
+ amount = 10
+ },
+/obj/item/device/multitool,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"cTK" = (
+/obj/item/device/radio/intercom{
+ desc = "Talk through this. Evilly";
+ freerange = 1;
+ frequency = 1213;
+ name = "Syndicate Intercom";
+ pixel_y = -32;
+ subspace_transmission = 1;
+ syndie = 1
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"cTL" = (
+/obj/structure/closet/syndicate/personal,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"cTM" = (
+/turf/open/space,
+/turf/closed/wall/mineral/plastitanium{
+ icon_state = "diagonalWall3"
+ },
+/area/shuttle/syndicate)
+"cTN" = (
+/obj/machinery/door/window{
+ name = "Cockpit";
+ req_access_txt = "150"
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"cTO" = (
+/turf/open/space,
+/turf/closed/wall/mineral/plastitanium{
+ dir = 4;
+ icon_state = "diagonalWall3"
+ },
+/area/shuttle/syndicate)
+"cTP" = (
+/obj/structure/table,
+/obj/item/stack/cable_coil,
+/obj/item/weapon/crowbar/red,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"cTQ" = (
+/obj/structure/table,
+/obj/item/weapon/storage/box/zipties{
+ pixel_x = 1;
+ pixel_y = 2
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"cTR" = (
+/obj/effect/landmark/xmastree,
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"cTS" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"cTT" = (
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall/r_wall,
+/area/toxins/xenobiology)
+"cTU" = (
+/obj/machinery/door/window{
+ name = "Ready Room";
+ req_access_txt = "150"
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"cTV" = (
+/obj/machinery/suit_storage_unit/syndicate,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"cTW" = (
+/obj/structure/closet/syndicate/nuclear,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"cTX" = (
+/obj/docking_port/stationary{
+ dheight = 9;
+ dir = 2;
+ dwidth = 5;
+ height = 24;
+ id = "syndicate_ne";
+ name = "northeast of station";
+ turf_type = /turf/open/space;
+ width = 18
+ },
+/turf/open/space,
+/area/space)
+"cTY" = (
+/obj/structure/table,
+/obj/item/device/aicard,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"cTZ" = (
+/turf/open/floor/mineral/titanium,
+/area/shuttle/syndicate)
+"cUa" = (
+/turf/open/space,
+/turf/closed/wall/mineral/plastitanium{
+ dir = 1;
+ icon_state = "diagonalWall3"
+ },
+/area/shuttle/syndicate)
+"cUb" = (
+/obj/machinery/sleeper/syndie{
+ dir = 4
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/syndicate)
+"cUc" = (
+/obj/structure/tank_dispenser/oxygen,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/syndicate)
+"cUd" = (
+/obj/machinery/door/window{
+ dir = 4;
+ name = "EVA Storage";
+ req_access_txt = "150"
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"cUe" = (
+/obj/machinery/door/airlock/external{
+ req_access_txt = "150"
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"cUf" = (
+/obj/machinery/door/window{
+ base_state = "right";
+ dir = 4;
+ icon_state = "right";
+ name = "EVA Storage";
+ req_access_txt = "150"
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"cUg" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/shuttle/syndicate)
+"cUh" = (
+/obj/structure/rack,
+/obj/item/clothing/suit/space/syndicate/black/red,
+/obj/item/clothing/head/helmet/space/syndicate/black/red,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"cUi" = (
+/obj/item/device/radio/intercom{
+ desc = "Talk through this. Evilly";
+ freerange = 1;
+ frequency = 1213;
+ name = "Syndicate Intercom";
+ pixel_x = -32;
+ subspace_transmission = 1;
+ syndie = 1
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"cUj" = (
+/obj/machinery/recharge_station,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"cUk" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/syndicate)
+"cUl" = (
+/obj/structure/table,
+/obj/item/stack/medical/ointment,
+/obj/item/stack/medical/bruise_pack,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -5;
+ pixel_y = 30
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/syndicate)
+"cUm" = (
+/obj/structure/bed/roller,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/syndicate)
+"cUn" = (
+/obj/structure/table,
+/obj/item/weapon/screwdriver{
+ pixel_y = 9
+ },
+/obj/item/device/assembly/voice{
+ pixel_y = 3
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"cUo" = (
+/obj/structure/table,
+/obj/item/weapon/stock_parts/cell/high{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/weapon/stock_parts/cell/high,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"cUp" = (
+/obj/structure/table,
+/obj/item/device/assembly/signaler,
+/obj/item/device/assembly/signaler,
+/obj/item/device/assembly/prox_sensor{
+ pixel_x = -8;
+ pixel_y = 4
+ },
+/obj/item/device/assembly/prox_sensor{
+ pixel_x = -8;
+ pixel_y = 4
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"cUq" = (
+/obj/structure/table,
+/obj/item/weapon/wrench,
+/obj/item/device/assembly/infra,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"cUr" = (
+/obj/structure/table,
+/obj/item/weapon/weldingtool/largetank{
+ pixel_y = 3
+ },
+/obj/item/device/multitool,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"cUs" = (
+/obj/structure/sign/bluecross_2,
+/turf/closed/wall/mineral/plastitanium,
+/area/shuttle/syndicate)
+"cUt" = (
+/obj/machinery/door/window/westright{
+ name = "Tool Storage";
+ req_access_txt = "150"
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"cUu" = (
+/obj/structure/table,
+/obj/item/weapon/storage/toolbox/syndicate,
+/obj/item/weapon/crowbar/red,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"cUv" = (
+/obj/machinery/door/window{
+ dir = 4;
+ name = "Infirmary";
+ req_access_txt = "150"
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/syndicate)
+"cUw" = (
+/obj/machinery/door/window{
+ base_state = "right";
+ dir = 4;
+ icon_state = "right";
+ name = "Infirmary";
+ req_access_txt = "150"
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/syndicate)
+"cUx" = (
+/obj/machinery/door/window{
+ dir = 8;
+ name = "Tool Storage";
+ req_access_txt = "150"
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"cUy" = (
+/obj/machinery/door/window{
+ dir = 1;
+ name = "Surgery";
+ req_access_txt = "150"
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/syndicate)
+"cUz" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/table,
+/obj/item/bodypart/r_arm/robot,
+/obj/item/bodypart/l_arm/robot,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/syndicate)
+"cUA" = (
+/obj/structure/table,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/firstaid/brute,
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/syndicate)
+"cUB" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/syndicate)
+"cUC" = (
+/obj/structure/table,
+/obj/item/weapon/grenade/syndieminibomb{
+ pixel_x = 4;
+ pixel_y = 2
+ },
+/obj/item/weapon/grenade/syndieminibomb{
+ pixel_x = -1
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"cUD" = (
+/obj/structure/table,
+/obj/item/device/sbeacondrop/bomb{
+ pixel_y = 5
+ },
+/obj/item/device/sbeacondrop/bomb,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"cUE" = (
+/obj/structure/table,
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/firstaid/fire,
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/syndicate)
+"cUF" = (
+/obj/structure/table,
+/obj/item/weapon/surgicaldrill,
+/obj/item/weapon/circular_saw,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/syndicate)
+"cUG" = (
+/obj/machinery/telecomms/allinone{
+ intercept = 1
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"cUH" = (
+/obj/structure/table/optable,
+/turf/open/floor/plasteel/white,
+/area/medical/surgery)
+"cUI" = (
+/obj/structure/sink{
+ dir = 4;
+ icon_state = "sink";
+ pixel_x = 11;
+ pixel_y = 0
+ },
+/obj/structure/mirror{
+ pixel_x = 30
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/syndicate)
+"cUJ" = (
+/obj/machinery/nuclearbomb/syndicate,
+/obj/machinery/door/window{
+ dir = 1;
+ name = "Secure Storage";
+ req_access_txt = "150"
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"cUK" = (
+/obj/structure/shuttle/engine/heater,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/shuttle/syndicate)
+"cUL" = (
+/obj/docking_port/stationary/random{
+ dir = 4;
+ id = "pod_asteroid4";
+ name = "asteroid"
+ },
+/turf/open/space,
+/area/space)
+"cUM" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/landmark{
+ name = "lightsout"
+ },
+/obj/machinery/holopad,
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"cUN" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/effect/landmark/start{
+ name = "Scientist"
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"cUO" = (
+/obj/structure/shuttle/engine/propulsion,
+/turf/open/floor/plating,
+/area/shuttle/syndicate)
+"cUP" = (
+/obj/structure/shuttle/engine/propulsion{
+ icon_state = "propulsion_l"
+ },
+/turf/open/floor/plating,
+/area/shuttle/syndicate)
+"cUQ" = (
+/obj/structure/shuttle/engine/propulsion{
+ icon_state = "propulsion_r"
+ },
+/turf/open/floor/plating,
+/area/shuttle/syndicate)
+"cUR" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ color = "#330000";
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/binary/valve/digital{
+ name = "Waste Release"
+ },
+/turf/open/floor/plasteel/black,
+/area/atmos)
+"cUS" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/supply)
+"cUT" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/status_display{
+ pixel_y = 30
+ },
+/obj/machinery/photocopier{
+ pixel_y = 3
+ },
+/turf/open/floor/wood,
+/area/library)
+"cUU" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/wood,
+/area/library)
+"cUV" = (
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/supply)
+"cUW" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "QMLoad2"
+ },
+/obj/machinery/door/poddoor{
+ id = "QMLoaddoor2";
+ name = "supply dock loading door"
+ },
+/turf/open/floor/plating,
+/area/shuttle/supply)
+"cUX" = (
+/obj/machinery/door/airlock/titanium{
+ name = "Supply Shuttle Airlock";
+ req_access_txt = "31"
+ },
+/turf/open/floor/plating,
+/area/shuttle/supply)
+"cUY" = (
+/obj/machinery/button/door{
+ dir = 2;
+ id = "QMLoaddoor2";
+ name = "Loading Doors";
+ pixel_x = 24;
+ pixel_y = 8
+ },
+/obj/machinery/button/door{
+ id = "QMLoaddoor";
+ name = "Loading Doors";
+ pixel_x = 24;
+ pixel_y = -8
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/supply)
+"cUZ" = (
+/obj/machinery/door/airlock/titanium{
+ name = "Supply Shuttle Airlock";
+ req_access_txt = "31"
+ },
+/obj/docking_port/mobile/supply{
+ dwidth = 5;
+ roundstart_move = "supply_away";
+ width = 12
+ },
+/obj/docking_port/stationary{
+ dir = 8;
+ dwidth = 5;
+ height = 7;
+ id = "supply_home";
+ name = "Cargo Bay";
+ width = 12
+ },
+/turf/open/floor/plating,
+/area/shuttle/supply)
+"cVa" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"cVb" = (
+/obj/structure/table/wood,
+/obj/item/device/camera_film{
+ pixel_x = -3;
+ pixel_y = 5
+ },
+/obj/item/device/camera_film{
+ pixel_y = 9
+ },
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 27
+ },
+/turf/open/floor/wood,
+/area/library)
+"cVc" = (
+/turf/open/floor/mineral/titanium/blue,
+/turf/closed/wall/mineral/titanium/interior,
+/area/shuttle/supply)
+"cVd" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/obj/item/device/radio/intercom{
+ freerange = 1;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = -30
+ },
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/hallway/primary/central)
+"cVe" = (
+/obj/structure/table/wood,
+/obj/machinery/computer/libraryconsole/bookmanagement,
+/obj/structure/noticeboard{
+ desc = "A board for pinning important notices upon. Probably helpful for keeping track of requests.";
+ dir = 8;
+ name = "requests board";
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/turf/open/floor/wood,
+/area/library)
+"cVf" = (
+/obj/machinery/light_switch{
+ pixel_x = 28;
+ pixel_y = 0
+ },
+/turf/open/floor/wood,
+/area/library)
+"cVg" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/shuttle/engine/heater,
+/turf/open/floor/plating,
+/area/shuttle/supply)
+"cVh" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/plasteel/black,
+/area/hallway/primary/central)
+"cVi" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/open/floor/wood,
+/area/library)
+"cVj" = (
+/obj/structure/shuttle/engine/propulsion,
+/turf/open/floor/plating,
+/area/shuttle/supply)
+"cVk" = (
+/obj/structure/shuttle/engine/propulsion{
+ icon_state = "burst_l"
+ },
+/turf/open/floor/plating,
+/area/shuttle/supply)
+"cVl" = (
+/obj/structure/shuttle/engine/propulsion{
+ icon_state = "burst_r"
+ },
+/turf/open/floor/plating,
+/area/shuttle/supply)
+"cVm" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 8;
+ icon_state = "propulsion_l"
+ },
+/turf/open/floor/plating,
+/area/shuttle/transport)
+"cVn" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/transport)
+"cVo" = (
+/obj/structure/window/shuttle,
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/shuttle/transport)
+"cVp" = (
+/obj/structure/grille,
+/obj/structure/window/shuttle,
+/turf/open/floor/plating,
+/area/shuttle/transport)
+"cVq" = (
+/turf/closed/wall/mineral/titanium/overspace,
+/area/shuttle/transport)
+"cVr" = (
+/obj/structure/shuttle/engine/heater{
+ icon_state = "heater";
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/shuttle/transport)
+"cVs" = (
+/obj/machinery/computer/shuttle/ferry/request,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/transport)
+"cVt" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/transport)
+"cVu" = (
+/obj/structure/chair,
+/turf/open/floor/pod/dark,
+/area/shuttle/transport)
+"cVv" = (
+/turf/open/floor/pod/light,
+/area/shuttle/transport)
+"cVw" = (
+/obj/structure/shuttle/engine/heater{
+ icon_state = "heater";
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 0
+ },
+/turf/open/floor/plating,
+/area/shuttle/transport)
+"cVx" = (
+/obj/machinery/door/airlock/titanium,
+/obj/docking_port/mobile{
+ dir = 8;
+ dwidth = 2;
+ height = 13;
+ id = "ferry";
+ name = "ferry shuttle";
+ port_angle = 0;
+ preferred_direction = 4;
+ roundstart_move = "ferry_away";
+ width = 5
+ },
+/obj/docking_port/stationary{
+ dir = 8;
+ dwidth = 2;
+ height = 13;
+ id = "ferry_home";
+ name = "port bay 2";
+ turf_type = /turf/open/space;
+ width = 5
+ },
+/turf/open/floor/pod/light,
+/area/shuttle/transport)
+"cVy" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/atmos)
+"cVz" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/on{
+ dir = 1;
+ frequency = 1441;
+ id = "n2_in"
+ },
+/turf/open/floor/plating,
+/area/atmos)
+"cVA" = (
+/obj/structure/closet/crate,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/transport)
+"cVB" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/pod/dark,
+/area/shuttle/transport)
+"cVC" = (
+/mob/living/simple_animal/sloth/citrus,
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"cVD" = (
+/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/atmos)
+"cVE" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/shuttle/auxillary_base)
+"cVF" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/abandoned)
+"cVG" = (
+/obj/structure/grille,
+/obj/structure/window/shuttle,
+/turf/open/floor/plating,
+/area/shuttle/abandoned)
+"cVH" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/shuttle/auxillary_base)
+"cVI" = (
+/obj/machinery/door/airlock/titanium{
+ name = "recovery shuttle external airlock"
+ },
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/abandoned)
+"cVJ" = (
+/obj/structure/window/reinforced,
+/obj/machinery/computer/atmos_control/tank{
+ frequency = 1441;
+ input_tag = "air_in";
+ name = "Mixed Air Supply Control";
+ output_tag = "air_out";
+ sensors = list("air_sensor" = "Tank")
+ },
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel/barber{
+ dir = 8
+ },
+/area/atmos)
+"cVK" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/shuttle/auxillary_base)
+"cVL" = (
+/turf/open/floor/plating,
+/area/shuttle/auxillary_base)
+"cVM" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating{
+ luminosity = 2;
+ initial_gas_mix = "o2=0.01;n2=0.01"
+ },
+/area/shuttle/auxillary_base)
+"cVN" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 8;
+ icon_state = "propulsion_l"
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/abandoned)
+"cVO" = (
+/obj/structure/toilet{
+ pixel_y = 9
+ },
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/obj/effect/decal/cleanable/greenglow{
+ desc = "Looks like something's sprung a leak"
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cVP" = (
+/obj/structure/sign/poster{
+ pixel_x = 32
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"cVQ" = (
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/shuttle/auxillary_base)
+"cVR" = (
+/obj/structure/mirror{
+ pixel_x = 28;
+ pixel_y = 0
+ },
+/obj/structure/sink{
+ dir = 4;
+ icon_state = "sink";
+ pixel_x = 11;
+ pixel_y = 0
+ },
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cVS" = (
+/obj/structure/table,
+/obj/item/weapon/storage/pill_bottle/dice{
+ pixel_y = 3
+ },
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cVT" = (
+/obj/structure/closet/wardrobe/mixed,
+/obj/item/clothing/under/rank/centcom_officer{
+ desc = "A badge on the arm indicates that it's meant to be worn by Centcom recovery teams. This one seems dusty and clearly hasn't been cleaned in some time.";
+ name = "\improper dusty old Centcom jumpsuit"
+ },
+/obj/item/clothing/under/rank/centcom_commander{
+ desc = "A badge on the arm indicates that it's meant to be worn by Centcom recovery teams. This one seems dusty and clearly hasn't been cleaned in some time.";
+ name = "\improper dusty old Centcom jumpsuit"
+ },
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cVU" = (
+/obj/structure/table,
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/obj/item/weapon/stock_parts/cell/high{
+ charge = 100;
+ maxcharge = 15000;
+ pixel_y = 2
+ },
+/obj/effect/decal/cleanable/cobweb,
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cVV" = (
+/obj/machinery/suit_storage_unit/standard_unit,
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cVW" = (
+/turf/closed/wall/shuttle{
+ icon_state = "swall1"
+ },
+/area/shuttle/abandoned)
+"cVX" = (
+/obj/structure/tank_dispenser/oxygen{
+ layer = 2.7;
+ pixel_x = -1;
+ pixel_y = 2
+ },
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cVY" = (
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/abandoned)
+"cVZ" = (
+/obj/structure/sign/vacuum{
+ pixel_x = -32
+ },
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/abandoned)
+"cWa" = (
+/obj/structure/closet/crate/medical{
+ name = "medical crate"
+ },
+/obj/item/weapon/storage/firstaid/o2{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/roller{
+ pixel_y = 4
+ },
+/obj/item/device/healthanalyzer,
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/shuttle/abandoned)
+"cWb" = (
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/item/weapon/cigbutt,
+/obj/structure/closet/crate{
+ icon_state = "crateopen";
+ name = "spare equipment crate";
+ opened = 1
+ },
+/obj/item/weapon/tank/internals/oxygen/red,
+/obj/item/weapon/tank/internals/air,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
+ },
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/shuttle/abandoned)
+"cWc" = (
+/obj/structure/closet/crate{
+ name = "spare equipment crate"
+ },
+/obj/item/weapon/grenade/chem_grenade/metalfoam,
+/obj/item/weapon/relic,
+/obj/item/device/t_scanner,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 3;
+ name = "3maintenance loot spawner"
+ },
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/shuttle/abandoned)
+"cWd" = (
+/obj/structure/closet/crate{
+ name = "emergency supplies crate"
+ },
+/obj/item/weapon/storage/toolbox/emergency,
+/obj/item/weapon/storage/toolbox/emergency,
+/obj/item/device/flashlight/flare{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/device/flashlight/flare{
+ pixel_x = -6;
+ pixel_y = -2
+ },
+/obj/item/weapon/crowbar,
+/obj/item/weapon/wrench,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/item/weapon/extinguisher,
+/obj/item/weapon/extinguisher,
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/shuttle/abandoned)
+"cWe" = (
+/obj/structure/shuttle/engine/heater{
+ icon_state = "heater";
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/abandoned)
+"cWf" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 8;
+ icon_state = "propulsion"
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/abandoned)
+"cWg" = (
+/obj/docking_port/mobile/auxillary_base{
+ dheight = 4;
+ dir = 2;
+ dwidth = 4;
+ height = 9;
+ width = 9
+ },
+/obj/machinery/bluespace_beacon,
+/obj/machinery/computer/auxillary_base,
+/turf/closed/wall,
+/area/shuttle/auxillary_base)
+"cWh" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/shuttle/auxillary_base)
+"cWi" = (
+/obj/machinery/door/airlock/titanium{
+ name = "bathroom"
+ },
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/abandoned)
+"cWj" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet/centcom,
+/obj/effect/decal/remains/human,
+/obj/effect/decal/cleanable/blood/old,
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cWk" = (
+/obj/effect/decal/cleanable/blood/old,
+/obj/effect/decal/cleanable/blood/gibs/old,
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/obj/effect/decal/cleanable/ash{
+ desc = "They look like human remains, and have clearly been gnawed at.";
+ icon = 'icons/effects/blood.dmi';
+ icon_state = "remains";
+ name = "remains"
+ },
+/obj/item/weapon/gun/energy/laser/retro,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/abandoned)
+"cWl" = (
+/obj/structure/table,
+/obj/item/weapon/storage/belt/utility,
+/obj/item/weapon/storage/belt/utility,
+/obj/item/device/radio/off,
+/obj/item/device/radio/off,
+/obj/item/device/radio/off,
+/obj/item/device/radio/off,
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cWm" = (
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/obj/effect/decal/cleanable/oil,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/abandoned)
+"cWn" = (
+/obj/machinery/door/airlock/titanium{
+ name = "E.V.A. equipment"
+ },
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/abandoned)
+"cWo" = (
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/abandoned)
+"cWp" = (
+/obj/effect/decal/cleanable/blood/old,
+/obj/effect/decal/cleanable/blood/gibs/old,
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/obj/effect/decal/cleanable/ash{
+ desc = "They look like human remains, and have clearly been gnawed at.";
+ icon = 'icons/effects/blood.dmi';
+ icon_state = "remains";
+ name = "remains"
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/abandoned)
+"cWq" = (
+/obj/effect/decal/cleanable/oil,
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/obj/effect/turf_decal/delivery{
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ dir = 1
+ },
+/area/shuttle/abandoned)
+"cWr" = (
+/obj/machinery/door/airlock/titanium{
+ name = "cargo bay"
+ },
+/obj/effect/turf_decal/delivery{
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ dir = 1
+ },
+/area/shuttle/abandoned)
+"cWs" = (
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/obj/effect/turf_decal/delivery{
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ dir = 1
+ },
+/area/shuttle/abandoned)
+"cWt" = (
+/obj/effect/decal/cleanable/robot_debris/old,
+/obj/effect/decal/cleanable/oil,
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/obj/effect/turf_decal/delivery{
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ dir = 1
+ },
+/area/shuttle/abandoned)
+"cWu" = (
+/obj/machinery/shower{
+ icon_state = "shower";
+ dir = 4
+ },
+/obj/machinery/door/window/westright{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/obj/item/weapon/soap/nanotrasen,
+/obj/effect/decal/cleanable/ash{
+ desc = "They look like human remains, and have clearly been gnawed at.";
+ icon = 'icons/effects/blood.dmi';
+ icon_state = "remains";
+ name = "remains"
+ },
+/obj/effect/decal/cleanable/blood/gibs/old,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cWv" = (
+/obj/effect/decal/cleanable/blood/old,
+/obj/structure/mirror{
+ pixel_x = 28;
+ pixel_y = 0
+ },
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/abandoned)
+"cWw" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet/centcom,
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cWx" = (
+/obj/effect/decal/cleanable/blood/old,
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/obj/effect/decal/cleanable/blood/gibs/limb,
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/abandoned)
+"cWy" = (
+/obj/structure/table,
+/obj/item/stack/sheet/glass{
+ amount = 50;
+ pixel_x = -2;
+ pixel_y = 2
+ },
+/obj/item/stack/rods{
+ amount = 50
+ },
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/obj/item/weapon/wrench,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cWz" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9;
+ pixel_y = 2
+ },
+/obj/item/weapon/storage/toolbox/electrical{
+ pixel_x = 1;
+ pixel_y = 6
+ },
+/obj/item/weapon/storage/toolbox/mechanical{
+ pixel_x = -2;
+ pixel_y = -1
+ },
+/obj/item/clothing/head/welding{
+ pixel_x = -3;
+ pixel_y = 5
+ },
+/obj/item/clothing/glasses/welding,
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cWA" = (
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"cWB" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cWC" = (
+/obj/effect/decal/cleanable/oil,
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/shuttle/abandoned)
+"cWD" = (
+/obj/structure/closet/emcloset,
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/shuttle/abandoned)
+"cWE" = (
+/obj/structure/closet/firecloset/full,
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/shuttle/abandoned)
+"cWF" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/shuttle/auxillary_base)
+"cWG" = (
+/obj/machinery/door/airlock/titanium{
+ name = "bathroom"
+ },
+/obj/effect/decal/cleanable/blood/old,
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/abandoned)
+"cWH" = (
+/obj/machinery/vending/boozeomat{
+ icon_deny = "smartfridge";
+ icon_state = "smartfridge";
+ req_access_txt = "0";
+ use_power = 0
+ },
+/turf/closed/wall/shuttle{
+ icon_state = "swall12";
+ dir = 2
+ },
+/area/shuttle/abandoned)
+"cWI" = (
+/obj/machinery/door/airlock/titanium{
+ name = "dormitory"
+ },
+/obj/effect/decal/cleanable/blood/old,
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/abandoned)
+"cWJ" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating,
+/area/shuttle/auxillary_base)
+"cWK" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/mining_construction)
+"cWL" = (
+/obj/machinery/door/airlock/titanium{
+ name = "recovery shuttle interior airlock"
+ },
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/abandoned)
+"cWM" = (
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 1;
+ name = "Construction Zone";
+ req_access = null;
+ req_access_txt = "0";
+ req_one_access_txt = "0"
+ },
+/turf/open/floor/plating,
+/area/mining_construction)
+"cWN" = (
+/obj/machinery/door/airlock/titanium{
+ name = "cargo bay"
+ },
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/obj/effect/turf_decal/delivery{
+ dir = 1
+ },
+/turf/open/floor/plasteel{
+ dir = 1
+ },
+/area/shuttle/abandoned)
+"cWO" = (
+/obj/machinery/vending/cigarette{
+ use_power = 0
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cWP" = (
+/obj/effect/decal/cleanable/blood/gibs/old,
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/abandoned)
+"cWQ" = (
+/obj/effect/decal/cleanable/blood/old,
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/obj/effect/decal/cleanable/blood/gibs/limb,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/abandoned)
+"cWR" = (
+/obj/effect/decal/cleanable/blood/old,
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/abandoned)
+"cWS" = (
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/abandoned)
+"cWT" = (
+/obj/structure/table,
+/obj/item/device/camera,
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cWU" = (
+/obj/effect/decal/cleanable/cobweb,
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cWV" = (
+/obj/structure/table,
+/obj/item/weapon/paper_bin{
+ pixel_x = -1;
+ pixel_y = 6
+ },
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cWW" = (
+/obj/structure/table,
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/obj/item/weapon/storage/photo_album,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cWX" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/structure/sign/vacuum{
+ pixel_x = -32
+ },
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/abandoned)
+"cWY" = (
+/obj/machinery/vending/coffee{
+ pixel_x = -2;
+ use_power = 0
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cWZ" = (
+/obj/structure/chair,
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cXa" = (
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cXb" = (
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cXc" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/easel,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"cXd" = (
+/obj/structure/lattice,
+/obj/machinery/camera/emp_proof{
+ c_tag = "Aft Arm - Far";
+ dir = 8;
+ network = list("Singulo")
+ },
+/turf/open/space,
+/area/space)
+"cXe" = (
+/obj/structure/chair/office/light{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cXf" = (
+/obj/structure/table,
+/obj/item/weapon/folder/blue,
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/obj/item/device/gps{
+ gpstag = "NTREC1";
+ pixel_x = -1;
+ pixel_y = 2
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cXg" = (
+/obj/machinery/door/airlock/titanium{
+ name = "recovery shuttle interior airlock"
+ },
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/abandoned)
+"cXh" = (
+/obj/structure/table,
+/obj/item/weapon/reagent_containers/food/drinks/shaker,
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cXi" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cXj" = (
+/obj/structure/table,
+/obj/item/weapon/storage/fancy/donut_box,
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cXk" = (
+/obj/structure/table,
+/obj/item/weapon/reagent_containers/food/condiment/peppermill{
+ pixel_x = 3;
+ pixel_y = 4
+ },
+/obj/item/weapon/reagent_containers/food/condiment/saltshaker{
+ pixel_x = -3;
+ pixel_y = 4
+ },
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cXl" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cXm" = (
+/obj/machinery/door/airlock/titanium{
+ name = "living quarters"
+ },
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/abandoned)
+"cXn" = (
+/obj/item/clothing/suit/bio_suit,
+/obj/item/clothing/suit/bio_suit,
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/obj/item/clothing/gloves/color/latex,
+/obj/item/clothing/gloves/color/latex,
+/obj/item/clothing/head/bio_hood,
+/obj/item/clothing/head/bio_hood,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/structure/table,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cXo" = (
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/obj/item/roller{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/roller{
+ pixel_x = 3;
+ pixel_y = 4
+ },
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/obj/structure/table,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cXp" = (
+/obj/effect/decal/cleanable/blood/old,
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/obj/effect/decal/cleanable/blood/gibs/limb,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cXq" = (
+/obj/effect/decal/cleanable/blood/gibs/old,
+/obj/effect/decal/cleanable/blood/old,
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/obj/effect/decal/cleanable/ash{
+ desc = "They look like human remains, and have clearly been gnawed at.";
+ icon = 'icons/effects/blood.dmi';
+ icon_state = "remains";
+ name = "remains"
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cXr" = (
+/obj/item/weapon/storage/toolbox/emergency{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/toolbox/emergency,
+/obj/item/weapon/storage/toolbox/emergency{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/obj/structure/table,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cXs" = (
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/obj/item/clothing/gloves/color/black,
+/obj/item/clothing/gloves/color/black,
+/obj/item/clothing/suit/armor/vest,
+/obj/item/clothing/suit/armor/vest,
+/obj/structure/table,
+/obj/item/clothing/head/helmet/swat/nanotrasen,
+/obj/item/clothing/head/helmet/swat/nanotrasen,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cXt" = (
+/obj/machinery/door/airlock/titanium{
+ name = "bridge"
+ },
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/abandoned)
+"cXu" = (
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/obj/machinery/computer/shuttle/white_ship,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cXv" = (
+/obj/effect/decal/cleanable/blood/old,
+/obj/structure/chair/comfy/black{
+ dir = 4
+ },
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cXw" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/abandoned)
+"cXx" = (
+/obj/machinery/vending/cola/random,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cXy" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cXz" = (
+/obj/structure/cable/white{
+ tag = "icon-4-8";
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/camera{
+ c_tag = "Engineering - Supermatter South";
+ dir = 1;
+ network = list("SS13")
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cXA" = (
+/turf/closed/wall/r_wall,
+/area/security/checkpoint/engineering)
+"cXB" = (
+/obj/structure/chair/office/light,
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cXC" = (
+/obj/item/weapon/phone{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/weapon/cigbutt/cigarbutt{
+ pixel_x = 5;
+ pixel_y = -1
+ },
+/obj/structure/table,
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cXD" = (
+/obj/effect/decal/cleanable/blood/old,
+/obj/effect/decal/cleanable/blood/gibs/old,
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/obj/item/clothing/head/centhat{
+ desc = "There's a gouge through the top where something has clawed clean through it. Whoever was wearing it probably doesn't need a hat any more.";
+ name = "\improper damaged CentCom hat"
+ },
+/obj/effect/decal/cleanable/ash{
+ desc = "They look like human remains, and have clearly been gnawed at.";
+ icon = 'icons/effects/blood.dmi';
+ icon_state = "remains";
+ name = "remains"
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/abandoned)
+"cXE" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 1
+ },
+/area/mining_construction)
+"cXF" = (
+/obj/machinery/vending/snack/random,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cXG" = (
+/obj/structure/sign/science{
+ pixel_y = -32
+ },
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/abandoned)
+"cXH" = (
+/obj/structure/table,
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/obj/item/device/megaphone,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cXI" = (
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"cXJ" = (
+/obj/structure/table,
+/obj/item/device/radio/off{
+ pixel_y = 6
+ },
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cXK" = (
+/obj/structure/table,
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/obj/item/device/mass_spectrometer,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cXL" = (
+/obj/machinery/door/airlock/titanium{
+ name = "hydroponics"
+ },
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/abandoned)
+"cXM" = (
+/obj/structure/sign/botany,
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/abandoned)
+"cXN" = (
+/obj/machinery/door/airlock/titanium{
+ name = "kitchen"
+ },
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/abandoned)
+"cXO" = (
+/obj/machinery/door/airlock/titanium{
+ name = "laboratory"
+ },
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/abandoned)
+"cXP" = (
+/obj/structure/sign/bluecross_2,
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/abandoned)
+"cXQ" = (
+/obj/machinery/door/airlock/titanium{
+ icon_state = "door_closed";
+ name = "medbay";
+ welded = 0
+ },
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/abandoned)
+"cXR" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 1
+ },
+/area/mining_construction)
+"cXS" = (
+/obj/item/weapon/storage/bag/plants/portaseeder,
+/obj/structure/table,
+/obj/item/weapon/reagent_containers/spray/plantbgone{
+ pixel_x = 13;
+ pixel_y = 5
+ },
+/obj/item/weapon/reagent_containers/glass/bottle/nutrient/ez,
+/obj/item/weapon/reagent_containers/glass/bottle/nutrient/ez,
+/obj/item/weapon/reagent_containers/glass/bottle/nutrient/ez,
+/obj/item/weapon/reagent_containers/glass/bottle/nutrient/rh{
+ pixel_x = -2;
+ pixel_y = 3
+ },
+/obj/effect/decal/cleanable/cobweb,
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cXT" = (
+/obj/machinery/biogenerator{
+ idle_power_usage = 0;
+ use_power = 0
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cXU" = (
+/obj/machinery/vending/hydroseeds{
+ pixel_x = 2;
+ use_power = 0
+ },
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cXV" = (
+/obj/machinery/processor,
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cXW" = (
+/obj/structure/table,
+/obj/machinery/microwave{
+ pixel_x = -3;
+ pixel_y = 6
+ },
+/obj/item/weapon/storage/box/donkpockets,
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cXX" = (
+/obj/structure/kitchenspike,
+/obj/effect/decal/cleanable/blood/gibs/old,
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cXY" = (
+/obj/effect/decal/cleanable/oil,
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cXZ" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"cYa" = (
+/obj/machinery/sleeper{
+ dir = 4;
+ use_power = 0
+ },
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cYb" = (
+/obj/structure/closet/crate/freezer,
+/obj/item/weapon/reagent_containers/blood/empty{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/random,
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/obj/effect/decal/cleanable/xenoblood,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cYc" = (
+/obj/structure/table/optable{
+ name = "Robotics Operating Table"
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 0;
+ pixel_y = -30
+ },
+/obj/machinery/camera{
+ c_tag = "Robotics - Aft";
+ dir = 1;
+ network = list("SS13","RD")
+ },
+/turf/open/floor/plasteel/white/side{
+ dir = 1
+ },
+/area/assembly/robotics)
+"cYd" = (
+/obj/structure/table,
+/obj/item/weapon/wrench,
+/obj/item/weapon/crowbar,
+/obj/item/clothing/suit/apron,
+/obj/item/weapon/shovel/spade,
+/obj/item/weapon/cultivator,
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/obj/item/weapon/wirecutters,
+/obj/item/device/plant_analyzer,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cYe" = (
+/obj/machinery/smartfridge{
+ use_power = 0
+ },
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/abandoned)
+"cYf" = (
+/obj/structure/sink{
+ dir = 4;
+ icon_state = "sink";
+ pixel_x = 11;
+ pixel_y = 0
+ },
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/abandoned)
+"cYg" = (
+/obj/structure/sink{
+ icon_state = "sink";
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/abandoned)
+"cYh" = (
+/obj/structure/table,
+/obj/item/weapon/kitchen/rollingpin,
+/obj/item/weapon/kitchen/knife,
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cYi" = (
+/obj/effect/decal/cleanable/egg_smudge,
+/obj/effect/decal/cleanable/flour,
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/abandoned)
+"cYj" = (
+/obj/structure/closet/firecloset,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"cYk" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"cYl" = (
+/obj/structure/chair/office/light,
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/abandoned)
+"cYm" = (
+/obj/machinery/vending/wallmed{
+ name = "Emergency NanoMed";
+ pixel_x = -28;
+ pixel_y = 0;
+ req_access_txt = "0";
+ use_power = 0
+ },
+/obj/machinery/iv_drip{
+ density = 0;
+ pixel_x = -8
+ },
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/abandoned)
+"cYn" = (
+/obj/effect/decal/cleanable/xenoblood,
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/obj/effect/decal/cleanable/ash{
+ desc = "A pile of remains that look vaguely humanoid. The skull is abnormally elongated, and there are burns through some of the other bones.";
+ icon = 'icons/effects/blood.dmi';
+ icon_state = "remainsxeno";
+ name = "remains"
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/abandoned)
+"cYo" = (
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/obj/effect/decal/cleanable/ash,
+/obj/effect/decal/cleanable/xenoblood,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/abandoned)
+"cYp" = (
+/obj/structure/sink{
+ dir = 4;
+ icon_state = "sink";
+ pixel_x = 11;
+ pixel_y = 0
+ },
+/obj/effect/decal/cleanable/xenoblood,
+/obj/effect/decal/cleanable/xenoblood/xgibs/limb,
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/abandoned)
+"cYq" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 8;
+ icon_state = "propulsion_r"
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/abandoned)
+"cYr" = (
+/obj/machinery/hydroponics/constructable,
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cYs" = (
+/obj/machinery/hydroponics/constructable,
+/obj/item/seeds/glowshroom,
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cYt" = (
+/obj/structure/table,
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/obj/item/weapon/storage/box/monkeycubes{
+ pixel_y = 4
+ },
+/obj/item/weapon/storage/fancy/egg_box{
+ pixel_y = 5
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cYu" = (
+/obj/structure/table,
+/obj/machinery/reagentgrinder{
+ pixel_y = 6
+ },
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cYv" = (
+/obj/structure/table,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/flour,
+/obj/item/weapon/reagent_containers/food/condiment/milk,
+/obj/item/weapon/reagent_containers/food/condiment/milk,
+/obj/item/weapon/reagent_containers/food/condiment/milk,
+/obj/item/weapon/reagent_containers/food/condiment/soymilk,
+/obj/item/weapon/reagent_containers/food/condiment/soymilk,
+/obj/item/weapon/reagent_containers/food/condiment/sugar,
+/obj/item/weapon/reagent_containers/food/condiment/sugar,
+/obj/item/weapon/reagent_containers/food/condiment/sugar,
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cYw" = (
+/obj/structure/table,
+/obj/item/weapon/reagent_containers/glass/beaker{
+ pixel_x = 5
+ },
+/obj/item/weapon/reagent_containers/food/condiment/enzyme{
+ layer = 5
+ },
+/obj/item/weapon/reagent_containers/dropper,
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cYx" = (
+/obj/structure/table,
+/obj/item/weapon/reagent_containers/glass/beaker{
+ pixel_x = 5;
+ pixel_y = 2
+ },
+/obj/item/weapon/reagent_containers/glass/beaker,
+/obj/item/weapon/reagent_containers/dropper,
+/obj/item/weapon/reagent_containers/syringe,
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cYy" = (
+/obj/structure/table,
+/obj/item/weapon/hand_labeler,
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cYz" = (
+/obj/structure/table,
+/obj/item/weapon/folder/white{
+ pixel_x = 4;
+ pixel_y = -3
+ },
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cYA" = (
+/obj/structure/table,
+/obj/item/weapon/defibrillator,
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cYB" = (
+/obj/structure/table,
+/obj/item/clothing/gloves/color/latex,
+/obj/item/clothing/mask/surgical,
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/obj/item/clothing/suit/apron/surgical,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cYC" = (
+/obj/structure/table,
+/obj/item/weapon/reagent_containers/glass/bottle/epinephrine{
+ pixel_x = 6;
+ pixel_y = 0
+ },
+/obj/item/weapon/reagent_containers/glass/bottle/charcoal{
+ pixel_x = -3
+ },
+/obj/item/weapon/reagent_containers/syringe,
+/obj/effect/decal/cleanable/dirt{
+ desc = "A thin layer of dust coating the floor.";
+ name = "dust"
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cYD" = (
+/obj/structure/table,
+/obj/item/weapon/storage/backpack/dufflebag/med{
+ contents = newlist(/obj/item/weapon/scalpel,/obj/item/weapon/hemostat,/obj/item/weapon/retractor,/obj/item/weapon/cautery,/obj/item/weapon/circular_saw,/obj/item/weapon/surgicaldrill,/obj/item/weapon/razor);
+ desc = "A large dufflebag for holding extra medical supplies - this one seems to be designed for holding surgical tools.";
+ name = "surgical dufflebag";
+ pixel_y = 4
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cYE" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ on = 1
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 1
+ },
+/area/mining_construction)
+"cYF" = (
+/obj/structure/grille,
+/obj/structure/window/shuttle,
+/turf/open/floor/plating,
+/area/shuttle/escape)
+"cYG" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel/yellow/side,
+/area/mining_construction)
+"cYH" = (
+/obj/machinery/door/airlock/titanium{
+ name = "Emergency Shuttle Airlock"
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"cYI" = (
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/shuttle/escape)
+"cYJ" = (
+/obj/machinery/door/airlock/titanium{
+ name = "Emergency Shuttle Airlock"
+ },
+/obj/docking_port/mobile/emergency{
+ dir = 2;
+ dwidth = 5;
+ height = 14;
+ name = "Meta emergency shuttle";
+ width = 25
+ },
+/obj/docking_port/stationary{
+ dheight = 0;
+ dir = 2;
+ dwidth = 9;
+ height = 25;
+ id = "emergency_home";
+ name = "MetaStation emergency evac bay";
+ width = 29
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"cYK" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ icon_state = "4-8";
+ d1 = 4;
+ d2 = 8
+ },
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for the Auxillary Mining Base.";
+ dir = 1;
+ name = "Auxillary Base Monitor";
+ network = list("AuxBase");
+ pixel_x = 0;
+ pixel_y = -28
+ },
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plasteel/yellow/side,
+/area/mining_construction)
+"cYL" = (
+/obj/machinery/door/poddoor/shutters{
+ id = "aux_base_shutters";
+ name = "Auxillary Base Shutters"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/mining_construction)
+"cYM" = (
+/obj/structure/tank_dispenser/oxygen{
+ layer = 2.7;
+ pixel_x = -1;
+ pixel_y = 2
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape)
+"cYN" = (
+/obj/item/clothing/suit/hazardvest{
+ desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks.";
+ name = "emergency lifejacket"
+ },
+/obj/item/clothing/suit/hazardvest{
+ desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks.";
+ name = "emergency lifejacket"
+ },
+/obj/item/clothing/suit/hazardvest{
+ desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks.";
+ name = "emergency lifejacket"
+ },
+/obj/item/clothing/suit/hazardvest{
+ desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks.";
+ name = "emergency lifejacket"
+ },
+/obj/item/clothing/suit/hazardvest{
+ desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks.";
+ name = "emergency lifejacket"
+ },
+/obj/item/weapon/tank/internals/emergency_oxygen/double{
+ pixel_x = 3
+ },
+/obj/item/weapon/tank/internals/emergency_oxygen/double{
+ pixel_x = 3
+ },
+/obj/item/weapon/tank/internals/emergency_oxygen/double{
+ pixel_x = 3
+ },
+/obj/item/weapon/tank/internals/emergency_oxygen/double{
+ pixel_x = 3
+ },
+/obj/item/weapon/tank/internals/emergency_oxygen/double{
+ pixel_x = 3
+ },
+/obj/item/clothing/mask/breath{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/item/clothing/mask/breath{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/item/clothing/mask/breath{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/item/clothing/mask/breath{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/item/clothing/mask/breath{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/obj/item/clothing/head/hardhat/orange{
+ name = "protective hat";
+ pixel_y = 9
+ },
+/obj/item/clothing/head/hardhat/orange{
+ name = "protective hat";
+ pixel_y = 9
+ },
+/obj/item/clothing/head/hardhat/orange{
+ name = "protective hat";
+ pixel_y = 9
+ },
+/obj/item/clothing/head/hardhat/orange{
+ name = "protective hat";
+ pixel_y = 9
+ },
+/obj/item/clothing/head/hardhat/orange{
+ name = "protective hat";
+ pixel_y = 9
+ },
+/obj/structure/closet/crate{
+ name = "lifejackets"
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape)
+"cYO" = (
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"cYP" = (
+/obj/machinery/door/airlock/engineering{
+ cyclelinkeddir = 1;
+ name = "Auxillary Base Construction";
+ req_access_txt = "0";
+ req_one_access_txt = "32;47;48"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/mining_construction)
+"cYQ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall,
+/area/mining_construction)
+"cYR" = (
+/obj/structure/table,
+/obj/item/stack/medical/gauze,
+/obj/item/stack/medical/bruise_pack,
+/obj/item/stack/medical/ointment,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape)
+"cYS" = (
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = 27
+ },
+/obj/structure/chair,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape)
+"cYT" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"cYU" = (
+/obj/structure/table,
+/obj/item/weapon/clipboard,
+/obj/item/weapon/folder/yellow,
+/obj/item/weapon/pen,
+/obj/item/hand_labeler_refill,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/shuttle/escape)
+"cYV" = (
+/turf/open/floor/plasteel/floorgrime,
+/area/shuttle/escape)
+"cYW" = (
+/obj/structure/closet/crate/medical{
+ name = "medical crate"
+ },
+/obj/item/weapon/storage/firstaid/regular,
+/obj/item/weapon/storage/firstaid/o2{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/firstaid/toxin{
+ pixel_x = -4;
+ pixel_y = 3
+ },
+/obj/item/device/healthanalyzer{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/lazarus_injector,
+/obj/effect/turf_decal/bot,
+/mob/living/simple_animal/bot/medbot{
+ name = "\improper emergency medibot";
+ pixel_x = -3;
+ pixel_y = 2
+ },
+/turf/open/floor/plasteel,
+/area/shuttle/escape)
+"cYX" = (
+/obj/item/weapon/cigbutt,
+/turf/open/floor/plasteel/floorgrime,
+/area/shuttle/escape)
+"cYY" = (
+/obj/structure/extinguisher_cabinet,
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/shuttle/escape)
+"cYZ" = (
+/obj/machinery/vending/wallmed{
+ name = "Emergency NanoMed";
+ pixel_x = 0;
+ pixel_y = 0;
+ req_access_txt = "0";
+ use_power = 0
+ },
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/shuttle/escape)
+"cZa" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"cZb" = (
+/obj/structure/closet/crate{
+ name = "emergency supplies crate"
+ },
+/obj/item/weapon/storage/toolbox/emergency,
+/obj/item/weapon/storage/toolbox/emergency,
+/obj/item/device/flashlight/flare{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/device/flashlight/flare{
+ pixel_x = -6;
+ pixel_y = -2
+ },
+/obj/item/weapon/crowbar,
+/obj/item/weapon/wrench,
+/obj/item/device/radio,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/shuttle/escape)
+"cZc" = (
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 29
+ },
+/turf/open/floor/plasteel/chapel,
+/area/chapel/main)
+"cZd" = (
+/obj/structure/chair/comfy/black{
+ dir = 8
+ },
+/turf/open/floor/plasteel/chapel{
+ dir = 4
+ },
+/area/chapel/main)
+"cZe" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/escape)
+"cZf" = (
+/obj/structure/chair,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"cZg" = (
+/obj/structure/sign/nosmoking_2,
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/escape)
+"cZh" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/yellow/corner{
+ dir = 4
+ },
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"cZi" = (
+/obj/structure/chair,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape)
+"cZj" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 8
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/escape)
+"cZk" = (
+/obj/item/device/radio/intercom{
+ dir = 2;
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = -31
+ },
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape)
+"cZl" = (
+/obj/structure/shuttle/engine/heater{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/escape)
+"cZm" = (
+/obj/structure/chair/office/dark{
+ dir = 1
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"cZn" = (
+/obj/machinery/status_display,
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/escape)
+"cZo" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape)
+"cZp" = (
+/obj/machinery/door/airlock/glass_medical{
+ id_tag = null;
+ name = "Escape Shuttle Infirmary";
+ req_access_txt = "0"
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"cZq" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "4-8";
+ d1 = 4;
+ d2 = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry{
+ name = "Arrivals"
+ })
+"cZr" = (
+/obj/structure/sign/bluecross_2,
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/escape)
+"cZs" = (
+/obj/structure/table,
+/obj/item/weapon/storage/firstaid/toxin,
+/obj/item/weapon/storage/firstaid/o2{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape)
+"cZt" = (
+/obj/structure/table,
+/obj/item/weapon/storage/firstaid/fire,
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = 2;
+ pixel_y = 3
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape)
+"cZu" = (
+/obj/machinery/status_display{
+ dir = 8;
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/obj/machinery/holopad,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"cZv" = (
+/turf/open/floor/bluegrid{
+ name = "Killroom Floor";
+ initial_gas_mix = "n2=500;TEMP=80"
+ },
+/area/toxins/xenobiology)
+"cZw" = (
+/obj/structure/table,
+/obj/item/weapon/reagent_containers/glass/bottle/epinephrine{
+ pixel_x = 6;
+ pixel_y = 0
+ },
+/obj/item/weapon/reagent_containers/glass/bottle/charcoal{
+ pixel_x = -3
+ },
+/obj/item/weapon/reagent_containers/glass/bottle/epinephrine{
+ pixel_x = -3;
+ pixel_y = 8
+ },
+/obj/item/weapon/reagent_containers/glass/bottle/charcoal{
+ pixel_x = 6;
+ pixel_y = 8
+ },
+/obj/item/weapon/reagent_containers/syringe/epinephrine{
+ pixel_x = 3;
+ pixel_y = -2
+ },
+/obj/item/weapon/reagent_containers/syringe/epinephrine{
+ pixel_x = 4;
+ pixel_y = 1
+ },
+/obj/item/weapon/reagent_containers/syringe/epinephrine{
+ pixel_x = -2;
+ pixel_y = 5
+ },
+/obj/item/weapon/reagent_containers/syringe/epinephrine{
+ pixel_x = 2;
+ pixel_y = 8
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape)
+"cZx" = (
+/obj/structure/table,
+/obj/item/weapon/defibrillator/loaded,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape)
+"cZy" = (
+/obj/structure/table,
+/obj/item/weapon/paper_bin{
+ pixel_x = -2;
+ pixel_y = 8
+ },
+/obj/item/device/radio/intercom{
+ dir = 2;
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = -31
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"cZz" = (
+/obj/structure/table/optable,
+/obj/item/weapon/surgical_drapes,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape)
+"cZA" = (
+/obj/structure/table,
+/obj/item/weapon/folder/blue,
+/obj/structure/extinguisher_cabinet{
+ dir = 4;
+ pixel_x = 0;
+ pixel_y = -27
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"cZB" = (
+/obj/machinery/space_heater,
+/obj/structure/extinguisher_cabinet{
+ dir = 4;
+ pixel_x = 0;
+ pixel_y = -27
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/shuttle/escape)
+"cZC" = (
+/obj/machinery/door/airlock/titanium{
+ name = "Emergency Shuttle Cargo Bay Airlock"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/shuttle/escape)
+"cZD" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/mineral/plastitanium/brig,
+/area/shuttle/escape)
+"cZE" = (
+/obj/structure/table,
+/obj/item/weapon/storage/box/handcuffs{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/turf/open/floor/mineral/plastitanium/brig,
+/area/shuttle/escape)
+"cZF" = (
+/obj/structure/chair,
+/turf/open/floor/mineral/plastitanium/brig,
+/area/shuttle/escape)
+"cZG" = (
+/turf/open/floor/mineral/plastitanium/brig,
+/area/shuttle/escape)
+"cZH" = (
+/obj/structure/table,
+/obj/machinery/recharger{
+ active_power_usage = 0;
+ idle_power_usage = 0;
+ use_power = 0
+ },
+/turf/open/floor/mineral/plastitanium/brig,
+/area/shuttle/escape)
+"cZI" = (
+/obj/machinery/door/airlock/glass_security{
+ name = "Brig";
+ req_access_txt = "2"
+ },
+/turf/open/floor/mineral/plastitanium/brig,
+/area/shuttle/escape)
+"cZJ" = (
+/obj/structure/table,
+/obj/item/weapon/restraints/handcuffs{
+ pixel_y = 3
+ },
+/turf/open/floor/mineral/plastitanium/brig,
+/area/shuttle/escape)
+"cZK" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape)
+"cZL" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/shuttle/escape)
+"cZM" = (
+/obj/machinery/shower,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"cZN" = (
+/obj/machinery/sleeper{
+ dir = 8
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape)
+"cZO" = (
+/obj/structure/rack,
+/obj/item/weapon/crowbar,
+/obj/item/weapon/wrench,
+/obj/item/weapon/weldingtool,
+/obj/item/weapon/wirecutters,
+/obj/item/stack/cable_coil,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/shuttle/escape)
+"cZP" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/shuttle/escape)
+"cZQ" = (
+/obj/machinery/door/airlock/glass_command{
+ name = "Cockpit";
+ req_access_txt = "19"
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"cZR" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Security Officer"
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/security/main)
+"cZS" = (
+/obj/structure/table,
+/obj/item/weapon/restraints/handcuffs{
+ pixel_y = 3
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"cZT" = (
+/obj/structure/table,
+/obj/item/weapon/storage/firstaid/regular,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"cZU" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/shuttle/escape)
+"cZV" = (
+/obj/machinery/door/airlock/command{
+ name = "Emergency Recovery Airlock";
+ req_access = null;
+ req_access_txt = "19"
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"cZW" = (
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/shuttle/escape)
+"cZX" = (
+/obj/machinery/recharge_station,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/shuttle/escape)
+"cZY" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/mineral/plastitanium/brig,
+/area/shuttle/escape)
+"cZZ" = (
+/obj/structure/chair/office/dark{
+ dir = 8
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"daa" = (
+/obj/machinery/computer/security,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"dab" = (
+/obj/structure/reagent_dispensers/peppertank,
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/escape)
+"dac" = (
+/obj/structure/rack,
+/obj/item/weapon/storage/toolbox/electrical{
+ pixel_x = -3;
+ pixel_y = 1
+ },
+/obj/item/weapon/storage/toolbox/mechanical{
+ pixel_x = 0;
+ pixel_y = -1
+ },
+/obj/item/weapon/storage/toolbox/emergency{
+ pixel_x = 3;
+ pixel_y = -5
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/shuttle/escape)
+"dad" = (
+/obj/machinery/suit_storage_unit/standard_unit,
+/turf/open/floor/plasteel/floorgrime,
+/area/shuttle/escape)
+"dae" = (
+/obj/machinery/door/airlock/external{
+ name = "Emergency Recovery Airlock"
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/shuttle/escape)
+"daf" = (
+/obj/machinery/computer/crew,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"dag" = (
+/obj/structure/chair/office/dark,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"dah" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/shuttle/escape)
+"dai" = (
+/obj/structure/table,
+/obj/item/weapon/storage/fancy/donut_box,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"daj" = (
+/obj/structure/table,
+/obj/item/weapon/phone{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/weapon/cigbutt/cigarbutt{
+ pixel_x = 5;
+ pixel_y = -1
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"dak" = (
+/obj/machinery/computer/communications,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"dal" = (
+/obj/machinery/computer/emergency_shuttle,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"dam" = (
+/obj/structure/table,
+/obj/item/weapon/storage/toolbox/emergency{
+ pixel_y = 3
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"dan" = (
+/obj/machinery/computer/station_alert,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"dao" = (
+/obj/structure/table,
+/obj/machinery/recharger{
+ active_power_usage = 0;
+ idle_power_usage = 0;
+ pixel_y = 4;
+ use_power = 0
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"dap" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/effect/landmark/start{
+ name = "Security Officer"
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 4
+ },
+/area/security/main)
+"daq" = (
+/obj/structure/table,
+/obj/item/weapon/folder/red{
+ pixel_x = 3
+ },
+/obj/item/weapon/folder/white{
+ pixel_x = -4;
+ pixel_y = 2
+ },
+/obj/item/device/radio/intercom{
+ dir = 2;
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = -31
+ },
+/obj/item/weapon/book/manual/wiki/security_space_law{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/turf/open/floor/mineral/plastitanium/brig,
+/area/shuttle/escape)
+"dar" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/plasteel/floorgrime,
+/area/shuttle/escape)
+"das" = (
+/obj/structure/table,
+/obj/item/weapon/scalpel{
+ pixel_y = 12
+ },
+/obj/item/weapon/circular_saw,
+/obj/item/weapon/retractor{
+ pixel_x = 4
+ },
+/obj/item/weapon/hemostat{
+ pixel_x = -4
+ },
+/obj/item/clothing/gloves/color/latex,
+/obj/item/clothing/mask/surgical,
+/obj/item/device/radio/intercom{
+ dir = 2;
+ name = "Station Intercom (General)";
+ pixel_x = -27;
+ pixel_y = 0
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape)
+"dat" = (
+/obj/machinery/vending/wallmed{
+ name = "Emergency NanoMed";
+ pixel_x = 0;
+ pixel_y = 0;
+ req_access_txt = "0";
+ use_power = 0
+ },
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/escape)
+"dau" = (
+/obj/structure/sink,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"dav" = (
+/obj/structure/rack{
+ dir = 1
+ },
+/obj/item/weapon/tank/internals/oxygen/red,
+/obj/item/clothing/suit/fire/firefighter,
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/head/hardhat/red,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/shuttle/escape)
+"daw" = (
+/obj/item/device/radio/intercom{
+ dir = 2;
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = -31
+ },
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/shuttle/escape)
+"dax" = (
+/obj/structure/extinguisher_cabinet,
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/escape)
+"day" = (
+/turf/open/space,
+/area/shuttle/syndicate)
+"daz" = (
+/obj/machinery/porta_turret/syndicate{
+ dir = 5
+ },
+/turf/closed/wall/mineral/plastitanium,
+/area/shuttle/syndicate)
+"daA" = (
+/obj/machinery/door/window/southleft{
+ dir = 2;
+ name = "Maximum Security Test Chamber";
+ req_access_txt = "55"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "Xenolab";
+ name = "test chamber blast door"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/engine,
+/area/toxins/xenobiology)
+"daB" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/turf/open/floor/engine,
+/area/toxins/xenobiology)
+"daC" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'HIGH VOLTAGE'";
+ icon_state = "shock";
+ name = "HIGH VOLTAGE"
+ },
+/turf/closed/wall/r_wall,
+/area/toxins/xenobiology)
+"daD" = (
+/obj/structure/disposaloutlet{
+ dir = 2
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/toxins/xenobiology)
+"daE" = (
+/obj/structure/table,
+/obj/item/stack/sheet/metal{
+ amount = 10
+ },
+/obj/item/device/electropack,
+/turf/open/floor/engine,
+/area/toxins/xenobiology)
+"daF" = (
+/obj/machinery/sparker{
+ id = "Xenobio";
+ pixel_x = -25
+ },
+/turf/open/floor/engine,
+/area/toxins/xenobiology)
+"daG" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/on{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/toxins/xenobiology)
+"daH" = (
+/obj/item/device/radio/beacon,
+/turf/open/floor/engine,
+/area/toxins/xenobiology)
+"daI" = (
+/obj/structure/table,
+/obj/machinery/cell_charger{
+ pixel_y = 5
+ },
+/obj/item/stack/cable_coil,
+/obj/item/device/multitool,
+/obj/item/weapon/stock_parts/cell/high{
+ charge = 100;
+ maxcharge = 15000
+ },
+/turf/open/floor/engine,
+/area/toxins/xenobiology)
+"daJ" = (
+/obj/effect/spawner/lootdrop{
+ loot = list(/obj/effect/decal/remains/xeno = 49, /obj/structure/alien/egg = 1);
+ name = "2% chance xeno egg spawner"
+ },
+/turf/open/floor/engine,
+/area/toxins/xenobiology)
+"daK" = (
+/obj/machinery/camera{
+ c_tag = "Xenobiology Lab - Test Chamber";
+ dir = 1;
+ network = list("SS13","RD","Xeno")
+ },
+/turf/open/floor/engine,
+/area/toxins/xenobiology)
+"daL" = (
+/obj/machinery/light/small,
+/turf/open/floor/engine,
+/area/toxins/xenobiology)
+"daM" = (
+/obj/structure/table,
+/obj/item/device/assembly/igniter{
+ pixel_x = -5;
+ pixel_y = 3
+ },
+/obj/item/device/assembly/igniter{
+ pixel_x = 5;
+ pixel_y = -4
+ },
+/obj/item/device/assembly/igniter{
+ pixel_x = 2;
+ pixel_y = 6
+ },
+/obj/item/device/assembly/igniter{
+ pixel_x = 2;
+ pixel_y = -1
+ },
+/turf/open/floor/engine,
+/area/toxins/xenobiology)
+"daN" = (
+/obj/item/device/radio/intercom{
+ pixel_y = -25
+ },
+/turf/open/floor/engine,
+/area/toxins/xenobiology)
+"daO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating,
+/area/toxins/xenobiology)
+"daP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 6;
+ initialize_directions = 6
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/toxins/xenobiology)
+"daQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/toxins/xenobiology)
+"daR" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ external_pressure_bound = 140;
+ on = 1;
+ pressure_checks = 0
+ },
+/turf/open/floor/bluegrid{
+ name = "Killroom Floor";
+ initial_gas_mix = "n2=500;TEMP=80"
+ },
+/area/toxins/xenobiology)
+"daS" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/bluegrid{
+ name = "Killroom Floor";
+ initial_gas_mix = "n2=500;TEMP=80"
+ },
+/area/toxins/xenobiology)
+"daT" = (
+/turf/open/space,
+/obj/machinery/porta_turret/syndicate{
+ dir = 6
+ },
+/turf/closed/wall/mineral/plastitanium{
+ dir = 4;
+ icon_state = "diagonalWall3"
+ },
+/area/shuttle/syndicate)
+"daU" = (
+/obj/structure/cable{
+ tag = "icon-0-4";
+ icon_state = "0-4"
+ },
+/obj/machinery/power/tesla_coil,
+/turf/open/floor/plating/airless,
+/area/space)
+"daV" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0;
+ tag = ""
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"daW" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/meter,
+/turf/open/floor/engine,
+/area/engine/engineering)
+"daX" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg2"
+ },
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"daY" = (
+/obj/machinery/power/rad_collector{
+ anchored = 1
+ },
+/obj/structure/cable,
+/turf/open/floor/engine,
+/area/engine/engineering)
+"daZ" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"dba" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0;
+ tag = ""
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"dbb" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ external_pressure_bound = 101.325;
+ on = 1;
+ pressure_checks = 1
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"dbc" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/turf/open/floor/plating/airless,
+/area/space)
+"dbd" = (
+/obj/structure/sink/kitchen{
+ pixel_y = 28
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"dbe" = (
+/obj/machinery/keycard_auth{
+ pixel_x = 26;
+ pixel_y = 0
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/heads)
+"dbf" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"dbg" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"dbh" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible,
+/obj/structure/cable/white{
+ tag = "icon-4-8";
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/machinery/meter,
+/turf/open/floor/engine,
+/area/engine/engineering)
+"dbi" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/machinery/power/grounding_rod,
+/turf/open/floor/plating/airless,
+/area/space)
+"dbj" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"dbk" = (
+/obj/item/hand_labeler_refill,
+/obj/structure/easel,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2{
+ name = "Port Maintenance"
+ })
+"dbl" = (
+/obj/structure/easel,
+/turf/open/floor/plating,
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"dbm" = (
+/turf/open/floor/plasteel,
+/area/ai_monitored/storage/eva{
+ name = "E.V.A. Storage"
+ })
+"dbn" = (
+/turf/open/floor/plasteel/showroomfloor,
+/area/crew_quarters/kitchen)
+"dbo" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/camera{
+ c_tag = "Xenobiology Lab - Pen #3";
+ dir = 4;
+ network = list("SS13","RD","Xeno")
+ },
+/turf/open/floor/engine,
+/area/toxins/xenobiology)
+"dbp" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Xenobiology Lab - Pen #4";
+ dir = 8;
+ network = list("SS13","RD","Xeno")
+ },
+/turf/open/floor/engine,
+/area/toxins/xenobiology)
+"dbq" = (
+/turf/open/floor/wood{
+ icon_state = "wood-broken6"
+ },
+/area/maintenance/aft{
+ name = "Aft Maintenance"
+ })
+"dbr" = (
+/obj/machinery/camera{
+ c_tag = "Morgue";
+ dir = 2;
+ network = list("SS13","Medbay")
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"dbs" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/machinery/camera{
+ c_tag = "Xenobiology Lab - Pen #5";
+ dir = 4;
+ network = list("SS13","RD","Xeno")
+ },
+/turf/open/floor/engine,
+/area/toxins/xenobiology)
+"dbt" = (
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Xenobiology Lab - Pen #6";
+ dir = 8;
+ network = list("SS13","RD","Xeno")
+ },
+/turf/open/floor/engine,
+/area/toxins/xenobiology)
+"dbu" = (
+/turf/open/floor/engine/vacuum,
+/area/atmos)
+"dbv" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/light/small,
+/turf/open/floor/bluegrid{
+ name = "Killroom Floor";
+ initial_gas_mix = "n2=500;TEMP=80"
+ },
+/area/toxins/xenobiology)
+"dbw" = (
+/obj/machinery/camera{
+ c_tag = "Xenobiology Lab - Kill Chamber";
+ dir = 1;
+ network = list("SS13","RD","Xeno");
+ start_active = 1
+ },
+/turf/open/floor/bluegrid{
+ name = "Killroom Floor";
+ initial_gas_mix = "n2=500;TEMP=80"
+ },
+/area/toxins/xenobiology)
+"dbx" = (
+/obj/structure/table/optable,
+/obj/item/weapon/surgical_drapes,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/syndicate)
+"dby" = (
+/obj/structure/table,
+/obj/item/weapon/cautery,
+/obj/item/weapon/scalpel,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/syndicate)
+"dbz" = (
+/obj/structure/table,
+/obj/item/weapon/retractor,
+/obj/item/weapon/hemostat,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/syndicate)
+"dbA" = (
+/obj/structure/table,
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/obj/item/stack/sheet/glass{
+ amount = 50
+ },
+/obj/item/stack/rods{
+ amount = 50
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"dbB" = (
+/obj/docking_port/stationary{
+ dheight = 9;
+ dir = 2;
+ dwidth = 5;
+ height = 24;
+ id = "syndicate_se";
+ name = "southeast of station";
+ turf_type = /turf/open/space;
+ width = 18
+ },
+/turf/open/space,
+/area/space)
+"dbC" = (
+/obj/docking_port/stationary{
+ dheight = 9;
+ dir = 2;
+ dwidth = 5;
+ height = 24;
+ id = "syndicate_sw";
+ name = "southwest of station";
+ turf_type = /turf/open/space;
+ width = 18
+ },
+/turf/open/space,
+/area/space)
+"dbD" = (
+/obj/docking_port/stationary{
+ dheight = 9;
+ dir = 2;
+ dwidth = 5;
+ height = 24;
+ id = "syndicate_s";
+ name = "south of station";
+ turf_type = /turf/open/space;
+ width = 18
+ },
+/turf/open/space,
+/area/space)
+"dbE" = (
+/obj/machinery/plantgenes,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"dbF" = (
+/obj/structure/bookcase{
+ name = "Holy Bookcase"
+ },
+/turf/open/floor/plasteel/chapel{
+ dir = 4
+ },
+/area/chapel/main)
+"dbG" = (
+/turf/open/space,
+/obj/machinery/porta_turret/syndicate{
+ dir = 10
+ },
+/turf/closed/wall/mineral/plastitanium{
+ icon_state = "diagonalWall3"
+ },
+/area/shuttle/syndicate)
+"dbH" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/research{
+ cyclelinkeddir = 1;
+ id_tag = "ResearchInt";
+ name = "Research Division";
+ req_access_txt = "0";
+ req_one_access_txt = "47"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/medical/research{
+ name = "Research Division"
+ })
+"dbI" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/research{
+ cyclelinkeddir = 1;
+ id_tag = "ResearchInt";
+ name = "Research Division";
+ req_access_txt = "0";
+ req_one_access_txt = "47"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/medical/research{
+ name = "Research Division"
+ })
+"dbJ" = (
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/machinery/power/solar{
+ id = "aftstarboard";
+ name = "Aft-Starboard Solar Array"
+ },
+/turf/open/floor/plasteel/airless/solarpanel,
+/area/solar/starboard)
+"dbK" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/turf/open/space,
+/area/solar/starboard)
+"dbL" = (
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/power/solar{
+ id = "aftstarboard";
+ name = "Aft-Starboard Solar Array"
+ },
+/turf/open/floor/plasteel/airless/solarpanel,
+/area/solar/starboard)
+"dbM" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/obj/structure/cable{
+ tag = "icon-1-2";
+ icon_state = "1-2"
+ },
+/turf/open/space,
+/area/solar/starboard)
+"dbN" = (
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/maintenance/starboardsolar)
+"dbO" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable,
+/turf/open/space,
+/area/solar/starboard)
+"dbP" = (
+/obj/machinery/door/airlock/external{
+ name = "Solar Maintenance";
+ req_access = null;
+ req_access_txt = "10; 13"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboardsolar)
+"dbQ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboardsolar)
+"dbR" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf/open/space,
+/area/solar/starboard)
+"dbS" = (
+/obj/structure/lattice/catwalk,
+/obj/item/stack/cable_coil,
+/turf/open/space,
+/area/solar/starboard)
+"dbT" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ tag = "icon-0-4";
+ icon_state = "0-4"
+ },
+/turf/open/space,
+/area/solar/starboard)
+"dbU" = (
+/obj/machinery/power/tracker,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating/airless,
+/area/solar/starboard)
+"dbV" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4";
+ tag = "90Curve"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/space,
+/area/solar/starboard)
+"dbW" = (
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4";
+ tag = "90Curve"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/space,
+/area/solar/starboard)
+"dbX" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ on = 1
+ },
+/obj/structure/sink{
+ icon_state = "sink";
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"dbY" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"dbZ" = (
+/obj/machinery/doorButtons/access_button{
+ idDoor = "xeno_airlock_interior";
+ idSelf = "xeno_airlock_control";
+ name = "Access Button";
+ pixel_x = 29;
+ pixel_y = -8;
+ req_access_txt = "0"
+ },
+/obj/machinery/firealarm{
+ dir = 2;
+ pixel_y = 24
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 2;
+ on = 1;
+ scrub_Toxins = 0
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"dca" = (
+/obj/machinery/firealarm{
+ dir = 2;
+ pixel_y = 26
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 1
+ },
+/area/toxins/xenobiology)
+"dcb" = (
+/obj/machinery/airalarm{
+ frequency = 1439;
+ pixel_y = 23
+ },
+/obj/machinery/camera{
+ c_tag = "Xenobiology Lab - Fore";
+ dir = 2;
+ network = list("SS13","RD")
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 1
+ },
+/area/toxins/xenobiology)
+"dcc" = (
+/obj/structure/table/glass,
+/obj/item/stack/sheet/mineral/plasma{
+ layer = 2.9;
+ pixel_y = 4
+ },
+/obj/item/stack/sheet/mineral/plasma{
+ layer = 2.9;
+ pixel_y = 4
+ },
+/obj/item/stack/sheet/mineral/plasma{
+ layer = 2.9;
+ pixel_y = 4
+ },
+/obj/item/stack/sheet/mineral/plasma{
+ layer = 2.9;
+ pixel_y = 4
+ },
+/obj/item/weapon/reagent_containers/glass/beaker{
+ pixel_x = 8;
+ pixel_y = 2
+ },
+/obj/item/weapon/reagent_containers/glass/beaker/large{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/weapon/reagent_containers/dropper,
+/obj/machinery/power/apc{
+ cell_type = 10000;
+ dir = 1;
+ name = "Xenobiology APC";
+ pixel_x = 0;
+ pixel_y = 27
+ },
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 1
+ },
+/area/toxins/xenobiology)
+"dcd" = (
+/obj/structure/table/glass,
+/obj/item/weapon/paper_bin{
+ pixel_y = 4
+ },
+/obj/item/weapon/folder/white{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/weapon/pen{
+ pixel_x = -4
+ },
+/obj/machinery/requests_console{
+ department = "Science";
+ departmentType = 2;
+ name = "Science Requests Console";
+ pixel_x = 0;
+ pixel_y = 30
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 1
+ },
+/area/toxins/xenobiology)
+"dce" = (
+/obj/structure/table/glass,
+/obj/item/weapon/storage/box/beakers{
+ pixel_x = 2;
+ pixel_y = 7
+ },
+/obj/item/weapon/storage/box/syringes{
+ pixel_y = 5
+ },
+/obj/item/weapon/storage/box/monkeycubes{
+ pixel_x = 2;
+ pixel_y = -2
+ },
+/obj/item/weapon/storage/box/monkeycubes,
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 1
+ },
+/area/toxins/xenobiology)
+"dcf" = (
+/obj/structure/sink{
+ dir = 4;
+ icon_state = "sink";
+ pixel_x = 11;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 5
+ },
+/area/toxins/xenobiology)
+"dcg" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/shower{
+ icon_state = "shower";
+ dir = 4
+ },
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = -29
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"dch" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4";
+ tag = "90Curve"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"dci" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 2;
+ initialize_directions = 11
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"dcj" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/research{
+ autoclose = 0;
+ frequency = 1449;
+ icon_state = "door_locked";
+ id_tag = "xeno_airlock_interior";
+ locked = 1;
+ name = "Xenobiology Lab Internal Airlock";
+ req_access_txt = "55"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whitepurple{
+ dir = 4
+ },
+/area/toxins/xenobiology)
+"dck" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/doorButtons/airlock_controller{
+ idExterior = "xeno_airlock_exterior";
+ idInterior = "xeno_airlock_interior";
+ idSelf = "xeno_airlock_control";
+ name = "Access Console";
+ pixel_x = -25;
+ pixel_y = -25
+ },
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 8
+ },
+/area/toxins/xenobiology)
+"dcl" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1;
+ initialize_directions = 11
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"dcm" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/computer/camera_advanced/xenobio,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/toxins/xenobiology)
+"dcn" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/smartfridge/extract,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/toxins/xenobiology)
+"dco" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/obj/machinery/computer/camera_advanced/xenobio,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/toxins/xenobiology)
+"dcp" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"dcq" = (
+/obj/structure/chair/office/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"dcr" = (
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 4
+ },
+/area/toxins/xenobiology)
+"dcs" = (
+/obj/structure/closet/emcloset,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/obj/machinery/camera{
+ c_tag = "Xenobiology Lab - Airlock";
+ dir = 4;
+ network = list("SS13","RD")
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"dct" = (
+/obj/structure/closet/l3closet/scientist,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"dcu" = (
+/obj/structure/closet/l3closet/scientist,
+/obj/machinery/airalarm{
+ dir = 1;
+ pixel_y = -22
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"dcv" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/structure/chair/comfy/black{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/toxins/xenobiology)
+"dcw" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/toxins/xenobiology)
+"dcx" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/chair/comfy/black{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/toxins/xenobiology)
+"dcy" = (
+/obj/machinery/holopad,
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"dcz" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall/r_wall,
+/area/toxins/xenobiology)
+"dcA" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"dcB" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"dcC" = (
+/obj/structure/chair/office/light,
+/obj/effect/landmark/start{
+ name = "Scientist"
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"dcD" = (
+/obj/machinery/reagentgrinder{
+ pixel_x = -1;
+ pixel_y = 8
+ },
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 4
+ },
+/area/toxins/xenobiology)
+"dcE" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/on{
+ dir = 4
+ },
+/turf/open/floor/plating/airless,
+/area/toxins/xenobiology)
+"dcF" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/space)
+"dcG" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"dcH" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"dcI" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"dcJ" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/item/weapon/extinguisher{
+ pixel_x = 4;
+ pixel_y = 3
+ },
+/obj/item/weapon/extinguisher,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"dcK" = (
+/obj/machinery/disposal/bin,
+/obj/structure/sign/deathsposal{
+ pixel_x = 0;
+ pixel_y = -32
+ },
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/open/floor/plasteel/whitepurple/corner{
+ dir = 2
+ },
+/area/toxins/xenobiology)
+"dcL" = (
+/obj/machinery/chem_dispenser/constructable,
+/obj/machinery/light,
+/turf/open/floor/plasteel/whitepurple/side,
+/area/toxins/xenobiology)
+"dcM" = (
+/obj/machinery/chem_master{
+ pixel_x = -2;
+ pixel_y = 1
+ },
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -29
+ },
+/turf/open/floor/plasteel/whitepurple/side,
+/area/toxins/xenobiology)
+"dcN" = (
+/obj/machinery/chem_heater,
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 6
+ },
+/area/toxins/xenobiology)
+"dcO" = (
+/obj/structure/sink{
+ dir = 4;
+ icon_state = "sink";
+ pixel_x = 11;
+ pixel_y = 0
+ },
+/obj/machinery/camera{
+ c_tag = "Xenobiology Lab - Central";
+ dir = 8;
+ network = list("SS13","RD")
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"dcP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio2";
+ name = "containment blast door"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/toxins/xenobiology)
+"dcQ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"dcR" = (
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio7";
+ name = "containment blast door"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/toxins/xenobiology)
+"dcS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable/yellow,
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio7";
+ name = "containment blast door"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/toxins/xenobiology)
+"dcT" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"dcU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio1";
+ name = "containment blast door"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/toxins/xenobiology)
+"dcV" = (
+/obj/structure/window/reinforced,
+/obj/machinery/button/door{
+ id = "xenobio6";
+ name = "Containment Blast Doors";
+ pixel_x = 0;
+ pixel_y = 4;
+ req_access_txt = "55"
+ },
+/obj/structure/table/reinforced,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/toxins/xenobiology)
+"dcW" = (
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio6";
+ name = "containment blast door"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/toxins/xenobiology)
+"dcX" = (
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/structure/cable/yellow,
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio1";
+ name = "containment blast door"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/toxins/xenobiology)
+"dcY" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"dcZ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/corner,
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"dda" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/toxins/xenobiology)
+"ddb" = (
+/obj/structure/cable/yellow,
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio6";
+ name = "containment blast door"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/toxins/xenobiology)
+"ddc" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"ddd" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_Toxins = 0
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"dde" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plating,
+/area/toxins/xenobiology)
+"ddf" = (
+/obj/machinery/portable_atmospherics/canister,
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Xenobiology Lab - Aft-Port";
+ dir = 4;
+ network = list("SS13","RD")
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/toxins/xenobiology)
+"ddg" = (
+/obj/machinery/portable_atmospherics/canister,
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 8
+ },
+/obj/machinery/camera{
+ c_tag = "Xenobiology Lab - Aft-Starboard";
+ dir = 8;
+ network = list("SS13","RD")
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/toxins/xenobiology)
+"ddh" = (
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/toxins/xenobiology)
+"ddi" = (
+/obj/structure/rack,
+/turf/open/floor/plating,
+/area/toxins/xenobiology)
+"ddj" = (
+/turf/open/floor/plating{
+ icon_state = "platingdmg2"
+ },
+/area/toxins/xenobiology)
+"ddk" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/toxins/xenobiology)
+"ddl" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -29
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"ddm" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"ddn" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"ddo" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/toxins/xenobiology)
+"ddp" = (
+/obj/machinery/door/airlock/hatch{
+ icon_state = "door_closed";
+ name = "Test Chamber Maintenance";
+ req_access_txt = "47";
+ req_one_access_txt = "0"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/toxins/xenobiology)
+"ddq" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating,
+/area/toxins/xenobiology)
+"ddr" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/plating,
+/area/toxins/xenobiology)
+"dds" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/toxins/xenobiology)
+"ddt" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/toxins/xenobiology)
+"ddu" = (
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "Xenolab";
+ name = "test chamber blast door"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/toxins/xenobiology)
+"ddv" = (
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "Xenolab";
+ name = "test chamber blast door"
+ },
+/obj/effect/spawner/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/toxins/xenobiology)
+"ddw" = (
+/obj/structure/cable/yellow,
+/turf/open/floor/plating,
+/area/toxins/xenobiology)
+"ddx" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/chair,
+/obj/item/weapon/cigbutt,
+/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
+ dir = 1;
+ initialize_directions = 11
+ },
+/turf/open/floor/plating,
+/area/toxins/xenobiology)
+"ddy" = (
+/turf/open/floor/plating{
+ icon_state = "platingdmg1"
+ },
+/area/toxins/xenobiology)
+"ddz" = (
+/obj/effect/spawner/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/turf/open/floor/plating,
+/area/toxins/xenobiology)
+"ddA" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/research{
+ glass = 1;
+ name = "Slime Euthanization Chamber";
+ opacity = 0;
+ req_access_txt = "55"
+ },
+/turf/open/floor/plating,
+/area/toxins/xenobiology)
+"ddB" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ external_pressure_bound = 120;
+ initialize_directions = 1;
+ internal_pressure_bound = 4000;
+ on = 1;
+ pressure_checks = 2;
+ pump_direction = 0
+ },
+/turf/open/floor/bluegrid{
+ name = "Killroom Floor";
+ initial_gas_mix = "n2=500;TEMP=80"
+ },
+/area/toxins/xenobiology)
+"ddC" = (
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/structure/disposaloutlet,
+/turf/open/floor/plating/airless,
+/area/toxins/xenobiology)
+"ddD" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/obj/machinery/deepfryer,
+/turf/open/floor/plasteel/cafeteria{
+ dir = 5
+ },
+/area/crew_quarters/kitchen)
+"ddE" = (
+/obj/effect/landmark/start{
+ name = "Cook"
+ },
+/obj/machinery/holopad,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"ddF" = (
+/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+ color = "purple";
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"ddG" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/docking_port/stationary/public_mining_dock,
+/turf/open/floor/plating,
+/area/shuttle/auxillary_base)
+"ddH" = (
+/obj/machinery/door/airlock/external,
+/turf/open/floor/pod/dark,
+/area/shuttle/transport)
+"ddI" = (
+/turf/open/floor/pod/light,
+/area/space)
+"ddJ" = (
+/obj/machinery/door/airlock/titanium,
+/turf/open/floor/pod/light,
+/area/shuttle/transport)
+"ddK" = (
+/obj/machinery/computer/shuttle/ferry/request,
+/turf/open/floor/pod/dark,
+/area/shuttle/transport)
+"ddL" = (
+/obj/structure/shuttle/engine/heater{
+ icon_state = "heater";
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/turf/open/floor/plating,
+/area/shuttle/transport)
+"ddM" = (
+/obj/machinery/door/airlock/external,
+/turf/open/floor/pod/light,
+/area/shuttle/transport)
+"ddN" = (
+/turf/open/floor/pod/light,
+/area/space)
+"ddO" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"ddP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"ddQ" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"ddR" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/closed/wall/r_wall,
+/area/engine/engineering)
+"ddS" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 6
+ },
+/obj/machinery/camera{
+ c_tag = "Engineering - Supermatter North";
+ dir = 4;
+ network = list("SS13")
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -26;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"ddT" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible,
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"ddU" = (
+/obj/machinery/atmospherics/pipe/manifold4w/general/visible,
+/obj/machinery/meter,
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"ddV" = (
+/obj/machinery/atmospherics/pipe/manifold4w/general/visible,
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"ddW" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"ddX" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/corner,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"ddY" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"ddZ" = (
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"dea" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/on,
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"deb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/engine/engineering)
+"dec" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/engine/engineering)
+"ded" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1;
+ initialize_directions = 11
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"dee" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"def" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/engine/engineering)
+"deg" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/engine/engineering)
+"deh" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable/white{
+ tag = "icon-4-8";
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"dei" = (
+/obj/structure/cable/white{
+ tag = "icon-4-8";
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"dej" = (
+/obj/structure/cable/white{
+ tag = "icon-4-8";
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"dek" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 2;
+ name = "Mix to Gas"
+ },
+/obj/structure/cable/white{
+ tag = "icon-4-8";
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"del" = (
+/obj/structure/cable/white{
+ tag = "icon-4-8";
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"dem" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1;
+ name = "Gas to Mix"
+ },
+/obj/structure/cable/white{
+ tag = "icon-2-8";
+ icon_state = "2-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"den" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"deo" = (
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"dep" = (
+/obj/machinery/firealarm{
+ pixel_y = 32
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"deq" = (
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = 21
+ },
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"der" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/light,
+/turf/open/floor/engine,
+/area/engine/engineering)
+"des" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ icon_state = "intact";
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/engine,
+/area/engine/engineering)
+"det" = (
+/obj/machinery/atmospherics/components/binary/pump/on{
+ dir = 8;
+ name = "Mix Bypass"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/engine,
+/area/engine/engineering)
+"deu" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 10;
+ pixel_x = 0;
+ initialize_directions = 10
+ },
+/obj/structure/cable/white{
+ tag = "icon-4-8";
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"dev" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/obj/structure/cable/white{
+ tag = "icon-4-8";
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"dew" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable/white{
+ tag = "icon-4-8";
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Laser Room";
+ req_access_txt = "10"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"dex" = (
+/obj/structure/cable/white{
+ tag = "icon-4-8";
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"dey" = (
+/obj/structure/cable/white{
+ tag = "icon-4-8";
+ icon_state = "4-8"
+ },
+/obj/structure/cable/white{
+ tag = "icon-2-8";
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"dez" = (
+/obj/structure/cable/white{
+ tag = "icon-4-8";
+ icon_state = "4-8"
+ },
+/obj/structure/cable/white{
+ tag = "icon-2-8";
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"deA" = (
+/obj/structure/cable/white{
+ tag = "icon-2-8";
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"deB" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"deC" = (
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ icon_state = "connector_map";
+ dir = 8
+ },
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"deD" = (
+/obj/machinery/status_display,
+/turf/closed/wall/r_wall,
+/area/engine/engineering)
+"deE" = (
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "chapelprivacy";
+ name = "Chapel Privacy Shutters"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"deF" = (
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "chapelprivacy";
+ name = "Chapel Privacy Shutters"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"deG" = (
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "chapelprivacy";
+ name = "Chapel Privacy Shutters"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"deH" = (
+/obj/machinery/status_display,
+/turf/closed/wall/r_wall,
+/area/engine/engineering)
+"deI" = (
+/obj/machinery/atmospherics/components/trinary/filter{
+ dir = 1;
+ on = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"deJ" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ icon_state = "manifold";
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"deK" = (
+/obj/structure/cable/white,
+/obj/machinery/power/emitter{
+ anchored = 1;
+ dir = 2;
+ state = 2
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"deL" = (
+/obj/structure/cable/white,
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"deM" = (
+/obj/structure/sign/securearea,
+/turf/closed/wall/r_wall,
+/area/engine/engineering)
+"deN" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"deO" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"deP" = (
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"deQ" = (
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"deR" = (
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"deS" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 10;
+ pixel_x = 0;
+ initialize_directions = 10
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"deT" = (
+/obj/machinery/atmospherics/components/trinary/filter{
+ dir = 1;
+ filter_type = "plasma";
+ on = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"deU" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ icon_state = "manifold";
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"deV" = (
+/obj/structure/sign/fire,
+/turf/closed/wall/r_wall,
+/area/engine/engineering)
+"deW" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/obj/machinery/camera{
+ c_tag = "Engineering - Supermatter Central";
+ dir = 4;
+ network = list("SS13")
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"deX" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"deY" = (
+/obj/structure/reflector/single{
+ anchored = 1;
+ dir = 1;
+ icon_state = "reflector";
+ tag = "icon-reflector (NORTH)"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"deZ" = (
+/obj/machinery/portable_atmospherics/canister/freon,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"dfa" = (
+/obj/machinery/power/supermatter_shard/crystal,
+/turf/open/floor/engine,
+/area/engine/engineering)
+"dfb" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 10;
+ pixel_x = 0;
+ initialize_directions = 10
+ },
+/obj/machinery/meter,
+/turf/closed/wall/r_wall,
+/area/engine/engineering)
+"dfc" = (
+/obj/structure/sign/electricshock,
+/turf/closed/wall/r_wall,
+/area/engine/engineering)
+"dfd" = (
+/obj/machinery/atmospherics/components/trinary/filter{
+ dir = 1;
+ filter_type = "o2";
+ on = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"dfe" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ icon_state = "manifold";
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"dff" = (
+/obj/structure/reflector/double{
+ anchored = 1;
+ dir = 1;
+ icon_state = "reflector_double";
+ tag = "icon-reflector_double (NORTH)"
+ },
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"dfg" = (
+/obj/structure/reflector/single{
+ anchored = 1;
+ dir = 8;
+ icon_state = "reflector";
+ tag = "icon-reflector (WEST)"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"dfh" = (
+/obj/structure/sign/nosmoking_2,
+/turf/closed/wall/r_wall,
+/area/engine/engineering)
+"dfi" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"dfj" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ icon_state = "intact";
+ dir = 5
+ },
+/turf/closed/wall/r_wall,
+/area/engine/engineering)
+"dfk" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/manifold/general/visible,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"dfl" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/manifold/general/visible,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"dfm" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"dfn" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"dfo" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"dfp" = (
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ icon_state = "connector_map";
+ dir = 8
+ },
+/obj/machinery/portable_atmospherics/canister,
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"dfq" = (
+/obj/machinery/power/rad_collector{
+ anchored = 1
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"dfr" = (
+/obj/machinery/power/rad_collector{
+ anchored = 1
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"dfs" = (
+/obj/machinery/power/rad_collector{
+ anchored = 1
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"dft" = (
+/obj/machinery/atmospherics/components/trinary/filter{
+ dir = 1;
+ filter_type = "co2";
+ on = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"dfu" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 9
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"dfv" = (
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ icon_state = "connector_map";
+ dir = 8
+ },
+/obj/machinery/portable_atmospherics/canister,
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"dfw" = (
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "chapelprivacy";
+ name = "Chapel Privacy Shutters"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"dfx" = (
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "chapelprivacy";
+ name = "Chapel Privacy Shutters"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/item/weapon/crowbar,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"dfy" = (
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "chapelprivacy";
+ name = "Chapel Privacy Shutters"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"dfz" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"dfA" = (
+/obj/structure/cable/white{
+ tag = "icon-0-2";
+ icon_state = "0-2"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"dfB" = (
+/obj/structure/cable/white{
+ tag = "icon-0-2";
+ icon_state = "0-2"
+ },
+/obj/machinery/power/emitter{
+ anchored = 1;
+ dir = 1;
+ state = 2
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"dfC" = (
+/obj/structure/cable/white{
+ tag = "icon-0-2";
+ icon_state = "0-2"
+ },
+/obj/machinery/power/emitter{
+ anchored = 1;
+ dir = 1;
+ state = 2
+ },
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"dfD" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ icon_state = "intact";
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"dfE" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"dfF" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ icon_state = "intact";
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/meter,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"dfG" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ icon_state = "intact";
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"dfH" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ icon_state = "intact";
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"dfI" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 4;
+ name = "Cooling Loop Bypass"
+ },
+/obj/structure/cable/white{
+ tag = "icon-2-4";
+ icon_state = "2-4"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"dfJ" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 10;
+ pixel_x = 0;
+ initialize_directions = 10
+ },
+/obj/structure/cable/white{
+ tag = "icon-4-8";
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"dfK" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable/white{
+ tag = "icon-4-8";
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Laser Room";
+ req_access_txt = "10"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"dfL" = (
+/obj/structure/cable/white{
+ tag = "icon-4-8";
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"dfM" = (
+/obj/structure/cable/white{
+ tag = "icon-4-8";
+ icon_state = "4-8"
+ },
+/obj/structure/cable/white{
+ tag = "icon-1-8";
+ icon_state = "1-8"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"dfN" = (
+/obj/structure/cable/white{
+ tag = "icon-4-8";
+ icon_state = "4-8"
+ },
+/obj/structure/cable/white{
+ tag = "icon-1-8";
+ icon_state = "1-8"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"dfO" = (
+/obj/structure/cable/white{
+ tag = "icon-1-8";
+ icon_state = "1-8"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"dfP" = (
+/obj/structure/cable/white{
+ tag = "icon-4-8";
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1;
+ name = "Atmos to Loop"
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"dfQ" = (
+/obj/structure/cable/white{
+ tag = "icon-4-8";
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 2;
+ on = 1
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"dfR" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ name = "Gas to Cold Loop"
+ },
+/obj/structure/cable/white{
+ tag = "icon-4-8";
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/engine,
+/area/engine/engineering)
+"dfS" = (
+/obj/structure/cable/white{
+ tag = "icon-1-8";
+ icon_state = "1-8"
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/engine,
+/area/engine/engineering)
+"dfT" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/engine,
+/area/engine/engineering)
+"dfU" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1;
+ name = "Cold Loop to Gas"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"dfV" = (
+/obj/machinery/airalarm{
+ dir = 1;
+ icon_state = "alarm0";
+ pixel_y = -22
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 2;
+ on = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"dfW" = (
+/obj/item/weapon/wrench,
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"dfX" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/bot{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8;
+ initialize_directions = 11
+ },
+/turf/open/floor/plasteel{
+ dir = 1
+ },
+/area/engine/engineering)
+"dfY" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/engine/engineering)
+"dfZ" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/turf/closed/wall/r_wall,
+/area/engine/engineering)
+"dga" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/junction,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/engine/engineering)
+"dgb" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9;
+ pixel_y = 0
+ },
+/turf/closed/wall/r_wall,
+/area/engine/engineering)
+"dgc" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"dgd" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
+/turf/open/space,
+/area/space)
+"dge" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/space)
+"dgf" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 6
+ },
+/turf/open/space,
+/area/space)
+"dgg" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 6
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/space)
+"dgh" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 6
+ },
+/obj/structure/lattice,
+/turf/open/space,
+/area/space)
+"dgi" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"dgj" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 5
+ },
+/obj/structure/lattice,
+/turf/open/space,
+/area/space)
+"dgk" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 4
+ },
+/obj/structure/lattice,
+/turf/open/space,
+/area/space)
+"dgl" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 4
+ },
+/obj/structure/lattice,
+/turf/open/space,
+/area/space)
+"dgm" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
+/obj/structure/lattice,
+/turf/open/space,
+/area/space)
+"dgn" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"dgo" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"dgp" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"dgq" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboard)
+"dgr" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 10
+ },
+/turf/open/space,
+/area/space)
+"dgs" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 6
+ },
+/turf/open/space,
+/area/space)
+"dgt" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 4
+ },
+/turf/open/space,
+/area/space)
+"dgu" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
+/turf/open/space,
+/area/space)
+"dgv" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 9
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/space)
+"dgw" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/turf/open/space,
+/area/space)
+"dgx" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 5
+ },
+/obj/structure/lattice,
+/turf/open/space,
+/area/space)
+"dgy" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
+/obj/structure/lattice,
+/turf/open/space,
+/area/space)
+"dgz" = (
+/obj/structure/closet/toolcloset,
+/obj/effect/turf_decal/delivery,
+/obj/item/clothing/glasses/meson/engine,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/engine/engineering)
+"dgA" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/turf/open/space,
+/area/space)
+"dgB" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 5
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/space)
+"dgC" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 9
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/space)
+"dgD" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 5
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/space)
+"dgE" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 9
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/space)
+"dgF" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 5
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/space)
+"dgG" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 9
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/space)
+"dgH" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 5
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/space)
+"dgI" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 5
+ },
+/turf/open/space,
+/area/space)
+"dgJ" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/turf/open/space,
+/area/space)
+"dgK" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/turf/open/space,
+/area/space)
+"dgL" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/turf/open/space,
+/area/space)
+"dgM" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 10
+ },
+/turf/open/space,
+/area/space)
+"dgN" = (
+/obj/structure/lattice,
+/obj/structure/grille,
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/turf/open/space,
+/area/space)
+"dgO" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/turf/open/space,
+/area/space)
+"dgP" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/turf/open/space,
+/area/space)
+"dgQ" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/turf/open/space,
+/area/space)
+"dgR" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/turf/open/space,
+/area/space)
+"dgS" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/lattice/catwalk,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/structure/transit_tube/horizontal,
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/turf/open/space,
+/area/space)
+"dgT" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/turf/open/space,
+/area/space)
+"dgU" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/turf/open/space,
+/area/space)
+"dgV" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/turf/open/space,
+/area/space)
+"dgW" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/turf/open/space,
+/area/space)
+"dgX" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/turf/open/space,
+/area/space)
+"dgY" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/turf/open/space,
+/area/space)
+"dgZ" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/turf/open/space,
+/area/space)
+"dha" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/turf/open/space,
+/area/space)
+"dhb" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/turf/open/space,
+/area/space)
+"dhc" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/turf/open/space,
+/area/space)
+"dhd" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/turf/open/space,
+/area/space)
+"dhe" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 10;
+ pixel_x = 0;
+ initialize_directions = 10
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"dhf" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/turf/open/space,
+/area/space)
+"dhg" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"dhh" = (
+/obj/machinery/atmospherics/pipe/simple/yellow/visible,
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 4;
+ name = "Mix to Engine";
+ on = 0
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"dhi" = (
+/obj/machinery/atmospherics/pipe/simple/green/visible,
+/obj/machinery/door/window/northleft{
+ dir = 8;
+ icon_state = "left";
+ name = "Inner Pipe Access";
+ req_access_txt = "24"
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/atmos)
+"dhj" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/atmos)
+"dhk" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/atmos)
+"dhl" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 9
+ },
+/turf/open/space,
+/area/space)
(1,1,1) = {"
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaeaPcaPcaPcaPcaPcaaeaaWaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaebSmbRbcTEcRQcTGcTFcTFaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaecTHbRbbRbbPBbRbbRbbRbaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaecTJbRbbRbbRbcTKbRbcTLaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacTMaaeaaeaaecTNaaeaaeaaecTOaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadayaaecTPbRbcTQaaecTOaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaebRbbRbcTSaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaeaaeaaeaaeaaebRbbRbcTScpVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaecTVbRbbRbcTWaaebRbbRbcTSaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaecTVbRbcSHcTYaaebRbbRbcTSaaeaaecTlcTvaaWaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaecTVbRbbRbcTIaaecUgcTUcUgaaebRbbRbbRbaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaecTVbRbbRbbRbcUdbRbbRbbRbcUebRbbRbbRbaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaajaagaaiaagaaiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaecTVbRbbRbbRbcUfbRbbRbbRbcUgbRbbRbbRbaaecUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaajaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacTXaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaeaaeaaeaaeaaeaaecUibRbbRbaaeaaeaaeaaeaaeaaeaaWaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaajaafaahaafaajaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaecUbcTZcUkcUccUlaaebRbbRbbRbaaecUocUncUqcUpcUraaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaiaajaagaagaaaaaaaaaaakaaaaaaaaaaagaaiaajaajaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaecUmcTZcTZcTZcTZcUsbRbbRbbRbaaebRbbRbbRbcSHcUuaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajaaaaaaaafaafaaaaaaaaaaakaafaafaaaaafaafaaaaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaecUbcTZcTZcTZcTZcUvbRbbRbbRbcUtbRbbRbbRbbRbbRbaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaafaalaalaalaalaalaafaamaafaalaalaalaalaalaaaaaiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaecTZcTZcTZcTZcTZcUwbRbbRbbRbcUxbRbbRbbRbbRbcUjaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaafaanaaoaaoaaoaaoaapaaqaaraasaasaasaasaataafaagaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaavaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaavaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadazcUzcUycUBcUAcUEaaebRbbRbbRbaaecUDcUCbRbbRbcUjcpVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaagaafaauaauaauaauaauaafaaqaafaauaauaauaauaauaafaaiaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaavaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaecUFcTZcUIaaeaaeaaecUgcUJcUgaaecUGaaebRbbRbbRbaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiaaaaaaaaaaafaaaaaaaafaaqaaaaaaaafaaaaafaaaaaaaagaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaavaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaedbydbxdbzaaeaaaaaecUKcUKcUKaaeaaeaaeabddbAcUhaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaafaalaalaalaalaalaafaawaafaalaalaalaalaalaafaajaafaafaafaaaaaaaaaaafaaiaajaaiaafaafaafaaaaafaafaafaaaaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaecUKcUKcUKaaeaaacTMcUPcUOcUQcTOaaaaaecUKcUKcUKaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaafaanaaoaaoaaoaaoaapaaqaaraasaasaasaasaataaaaagaaaaaaaafaaaaaaaaaaafaaaaafaaaaaaaafaaaaaaaaaaafaaaaaaaaaaafaaaaafaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacTMcUPcUOcUQdaTaaaaaaaaaaaaaaaaaaaaadbGcUPcUOcUQcTOaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaafaauaauaauaauaauaafaaqaafaauaauaauaauaauaafaaiaafaafaafaafaafaafaafaafaafaafaaaaafaaaaaxaaxaayaaxaayaaxaaxaaaaafaafaaaaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajaagaagaagaajaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaajaaaaaaaaaaafaaaaaaaaaaazaaaaaaaaaaafaaaaaaaafaajaaaaaaaaaaaaaafaafaaaaaaaaaaafaaaaafaafaaxaaAaaBaaCaaDaaEaaxaafaafaaaadGaaaaaaaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiaaaaaaaaaaajaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaafaalaalaalaalaalaafaaqaafaalaalaalaalaalaafaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaafaafaafaaaaaFaaGaaHaaIaaJaaKaaLaaaaaaaaVaaMaaVaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajaafaaNaaaaaiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaafaanaaoaaoaaoaaoaapaaqaaraasaasaasaasaataafaaaaaaaaaaaaaaaaaaaafaaaaaaaafaafaaaaafaaaaaxaaPaaQaaRaaSaaTaaxaaaaaUaaVadHaaVaaXaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaavaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaavaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaagaagaagaagaagaagaagaaaaaYaaaaajaagaagaagaajaajaajaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiaaaaauaauaauaauaauaafaaqaafaauaauaauaauaauaafaafaafaafaaaaaZaafaafaafaaxaayaaxaaxaayaaxaaxaaxabaabbabcaaxaaxaayaaxaaVaPaaaVabeaafaafaafaafaaaaaaaaaaaaaaaaavaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaavaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiaaaaaaaafaafaafaaaaaaaaYaafaafaaaaafaafaaaaaaaaiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaagaaaaafaafaafaafaafaaaabfaaaaaaaaaaafaaaaaaaafaaaaaaaafaafaaZabgabgabgaaxabhabiabjabkablabmabnaboaaIabpabqabrabsaaxabtabuabtabeaaaaafaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaabvabvabvabvabvaafabwaafabvabvabvabvabvaafaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaagaafaaaaaaaafaafaakaafaafaafaafaafaafaafaaaaaaaaaaaaaaZabxabyabzaaxabAabBaaRabCabDabEabEabFabGabHabIabJabKaaxabLabMabNabeabeabeaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaafabOabPabPabPabPabQabRabSabTabTabTabTabUaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaaaaakaaaaaaaaaaafaaaaaaaafaafaafaafaafaaZabVabWabXaaxabYabeabZabCabEaaRabDacaacbaccabCacdaceaaxacfacgachaciacjaciackackaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaaiaagaaiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaafaclaclaclaclaclaafabRaafaclaclaclaclaclaafaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaafaaaaakaaaaaaaaaaafaaaaaaaafaaaaaaaaaaaaaaZacmacnacoaaxacpabeacqacraaIaaIacsactacuacvacwabEacxaaxacyaaxaaxaaxaaxaaxaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaiaagaagaagaaiaagaagaaiaaaaaaaafaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajaaaaaaaaaaafaaaaaaaafaczaaaaaaaaaaafaaaaaaaaaaaiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaafaaaaakaaaaaaaaaaafaaaaaaaafaaaaaaaaaaaaaaZacAacBacCaaxaaxaaxacDacEacFacGacHacIacJacKacLabEacMabeabLabeacNacOacRaaxaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaafaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaafaaaacPacQacPblxaaXaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaafabvabvabvabvabvaafabRaafabvabvabvabvabvaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafacSacTacTacTacTacTacTacUaafaafaafaafaaZacVacWacXacYacZadaabeadbabeadcabeaddabeabeabeadeabeabeadfabeadgadhadiaaLaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaafaaaacPadjadkadladladlaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaabOabPabPabPabPabQabRabSabTabTabTabTabUaafaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaafaaaaafaaaaaaaaaaakaaaaaaaafaaaaaZadmadnadoadpadqadradsabEadtadcaduadvadwabeadxabEadyabeadzabeadAadBadCaaxaaaaafaaaaaaaaaadDaaaaaaaaaaafaaaaafaaaaaaaaaaafaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafacQadEadFbihaQfadIbiiaaiaagaaiaafaafaaaaaaaaaaaaaaaaaaaaaaaaaagaafaclaclaclaclaclaafabRaafaclaclaclaclaclaafaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaaaaaaaaaaaaaafaaaaafaafaakaafaafaafaafaaZadJadKadLadMadNadradOabEadPadQadRadSadTabeadUabEadTabeacfabeadVadWadXaaxaafaafaafaeqaeqaeqaeqaeqaafaafaaaaafadZadZaeaaebaecadZadZaaaaafaaaaaaaafaaaaaaaaaaafaaaaaaaaaaafaaaaaaaaaaaaaafaaaaaaaaaaaaacPaedadkadladladlaaaaafaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaiaaaaaaaaaaafaaaaaaaaaabRaaaaaaaaaaafaaaaaaaaaaajaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaafaafaaaaafaaaaafaeeaefaeeaafaaaaaaaaZaegaehaeiaaxaejaekaelaemabeadcabeaenadcabeaelaeoadcabeacyabeadcaepaelaaxaafaafaeqaeqaesaeraexaeqaeqaafaafadZadZaetaeuaevaewafeadZadZaafaeyaeyaezaeyaeyaafaafaafaafacPacQacPacQacQacQacPacQacQacQacPacPaeAacPaeBaeCaeCaeDaeCaeCaeEaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaagaaaabvabvabvabvabvaafaeFaafabvabvabvabvabvaafaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaafaaaaaaaafaafaafaeeaeGaeeaafaafaaaaaZaeHaeIaeJaaxaeKaeLaeMaeNaeOaePaeQaeRaeSaeTaeUaeVaeWaeXaeYaeZafaafbafdafcaafaeqaeqaffafhafgafgafXaeqaeqaafadZafiafjafkaflafmafnafoadZaafaeyafpafqafraeyaaaaaaaaaaafacPafsacPaftafuafvacPafwafxafyacPafzafAafBafCafDafDafDafDafDafCaafaafaafaafaafaaaaaaaaaaaaaaaaagaafabOabPabPabPabPabQabRabSabTabTabTabTabUaafaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaeeaeeafEaeeaeeaafaafaaZaaZaaZaaZaaxafFafGafHafIafJafKafLafGafMafNafOafPafQafRafGafSafTafUafVafWaafaeqafZafYagbagaagdagcagQaeqaafageagfaggaghagiagjagkaglagmaafaezagnagoagpaezaaaagqagqagqacPagragsagtaguaguagvaguagwagxagyagzagzagzafCafDafDafDafDafDafCaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaagaafaclaclaclaclaclaafabRaafaclaclaclaclaclaaaaaiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaafaaaaaaaaaaaaaaaaafbboagBagCagDbboaafaaaaaaaaaaafaaaaaxaaxagEagFagGaaxagHagIagHabeabeabeabeagJagKagLagMagNagOagPaaxaafaeqagRafYagTagSagUagcahCaeqaafagVagWagXagYagZahaagXahbagVaafaeyagnahcagpaeyagqagqahdaheacPacPacPahfahgahhahhahiahjahkahlahlahmahnafCafDafDafDafDafDahoacPacPacPaaaaafaaaaaaaaaaaaaaaaaiaaaaaaaaaaafaaaaaaaaaabRaaaaaaaafaaaaaaaafaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafahpahpahqahqahqahqahqbboahrahsahtbboaafaafaafaafaafaaaaaaaaxaaxafWaaxaaxaaxafWaaxaaxahuahvahwahxahyahzahAahBahBahBadYadYaeqahEahDahGahFahHagcahIaeqaafadZahJahKahLahMahNahOauXadZaafaeyagnahcagpaeyahQagqahRahSahTahUacPahVahgahhahWahXahXahXahYahlahZaiaaibafDafDafDafDafDaicaidaieacQaaaaafaafaafaafaafaafaagaafaafaafaafaafaaaaaaabRaaaaaaaaaaaaaaaaafaaaaaiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaifaigahqaihaiiaijaikbboailaimainagAaioaipaioaioaafaafaaaaaaaaaaafaaaaaaaaaaafaafaiqairaisairaitaiuaivaiwahBaNAaiyaizadYaeqaiAahPaiCaeqaeqajsaeqaeqaiDadZadZaiEaiFaiGaiHaiIadZadZaiDaiJaiKaiLaiMaeyagqagqajeajeaiOaiPacPaiQahgaiRaiSaiTaiTaiUaiVaiWaiXaiYacQafDafDafDafDafDacQaiZajaacQaaaaafaaaaafaaaajbajbajbajbajbajbajbaafaafaafabRaafaafaafaafaafaagaafaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafahpajcahpajdajgajfanZbbobboajhajiagAajjajkajlaioaioaafaafaafaafaafaafaafaafaafaafajmahxahxahxahxajnajoajpahBajqajrajtadYbgBakDajvajwajxajyajzajAadYajBajCajDajEajFajGajHajIajDajJajKaiJajLajMajNaeyajOajeajeajPajeagqacPajuajRajSajTajUajUajVaiVajaajWaiYacQafDafDafDafDafDacQajXajYacQaafaafaafaafaafajbajZakaakbakcajZajbaafaaaakdakeakdaaaaaaaafaaaaaaaaaaaiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaahqakfbltakhakiakjakkaklakmaknakoaioakpakqakraksaioaafaaaaaaaafaaaaaaaaaagqagqagqajmaktakuakvakwakxakyakzahBaixajrakBadYakCakDakEakFakGakHakIakJakKakLakMakNakOakPakQakRakSakTakUakVakWakXakYakZaeyalaalbalcaldaleagqalfalgahgalhaiSaliaiTaljaiValkaiXallalmafDafDafDafDafDalnaloalpalqalralqaaaaafaaaajbalsaltajZaltaluajbaafaaaalvalwalvaaaaaaaafaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaahpalxahpalyalzalAalBahpalCalDalEalFalGalHalIalJaioaafalKalKaipalKalKaaaagqalLalLajmalMalNalOalPalQakgajQalRakAalTakAalValUalUalWalZamaambamcamcalXamdalYamgamhamiamjamkamlammamnamoampamqamramsaeyamtajeajeamuahSagqamvalgahgagzamwamxamyamzamAamBaiXamCamDafDafDafDafDafDamEacPamFalqamGamHackackaafajbamIamJamKamLamMajbaafakdalvamNalvakdaaaaafaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafahpamOamPamPamPamQamRahpamSamTamUaioamVamWamXamYaioalKalKamZanaakoalKagqagqanbancajmandaneanfanganhanianjahBankanlanmadYannanoanpanqanransantanuahBanvcZRanwamhanxanybnhanAanBdapanCaiJaiJanDaeyaeyagqagqagqanEagqagqagqanFanGagzagzanHanIanJanKanKanLamCamDafDafDafDafDafDamEanManNalqamHalqalqalralqajbanOanPajZanQanRajbaafalvalvalwalvalvaafaafaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanSanTaaaaaaanSaaaanSaaaaaaaafaafaafaaaaaaaaaaaaaaaaafaaaaafaaaaafaaaahpanUanVanWanXanYaoOahpaoaamTaobalKaocaobaobaobaodalKaoeaofaogaohalKaoiaojaokaolaomaonaooaopaoqaoraosaotadYajxaouajxadYadYaovaowaovadYamfameaozaoAaoBcZRaoCaoDamhaoEaoFaoGaoHdapaoIaoJaoKaoLaoMaoNanzauraoPaoQaoRaoPaoSaoTaoUaoVaoVaoWaoXaoYaoZaoZaoZapaamDafDafDafDafDafDamEapbapcalqanNapdapebcOapgajbaphapiapjapkaplajbaafapmapnapoappapmaaaaafaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanSanSaafaafanSanSanSaafaaaanSanSapqanSanSaaaaafalKalKaipalKaafaaaaafaafaafaafaafalKaipahpahpaprapsaptahpahpahpalCapualEapvalGapwaGNaobapyalKalCapzaLdalKalKapBapCaoxapDajmajmajmahxahxapEapFapGapHapIapJapKapLapMapNansaoyadYajzapOapQahBapRcZRapSapTapUapVapWbniapYdapapZaqaaqaajDajDajDajDaqbagqagqagqagqagqaqcaqdapPaqfaqgaqhaqiaqjaqkaqlaqmaqnaqoaqoaqoaqoaqoaqpapXaqralqapcapcapcapcaqsajbaqtaquaqvaqwaqxajbaafapmaqyaqzaqAapmaaaaafaafaafackaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanTaqBaafanSaafaqBaafanSanSaafanSanSanSanSanSaaaaaaaaaalKaqCaqDalKaqEaqFaqFaqFaqFaqFaqGalKaoeaqHalKaqIaqJalCaqeaqLalKaqMaqNaqOalKaocapzaqPaqQaqRalKaqSaGNaqTalKaqUapCahdaqVaqWagqaqXajmaqYaqZanhapFapGadYaraarbarcardardarearfargarhajzariarjarkarlarmarnaroarparqarparrarparsartaruarvarvarwarxajDaqbagqaryarzarAarBarBarBarBarBarCarDarEarBarBarBarBarBarFalqarGarHddGalqalqapcalqarJarKarLapcarMarNarOarParQarRarSajbalrapmarTarUarVapmaaaaafaaaaaaackaafaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanSaafanSaafanSanSanSapqaafaafaafanSanSaafaaaaafaafaiparWarXarYarZasaasaasaasaasaasbascasdaseasfasgashasaasaasiasaasjaskagqagqagqagqagqagqagqagqagqagqaslagqasmagqagqagqagqagqagqajmasnasoanhapFapGapHaspasqasrassastasuasvaswaoAajzasxaszasAasyasCasDasEasFasGasHasIasJasKasLaqaasMasNasMasOajDasPasQasRasSajearBasTasUasVasWasXasYasZarBataatbatcarBalqalqasBaqqatdapbalqapcalqarIapcateapcalqatfatgajbajbathatiajbatjapmapmatkatlapmalqalralqalqatnalqaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanSanSanSanSanSaafanSanSaafaqBanSanSaafaafaafaafalKalKatoalKalKatpatqatqatqatqatqatralKalKalKalKatsattatuatuatuatDatvatwagqatxatyatzatAatBatCatFatEatPatGatHatIagqauQatJatJatJauQajoatKatLanhatMatNatOanravaanradYadYatQatRanradYatSaiBahBahBajDatTatUatVatTajDatWatXajDatYaqaaqaatZatZatZajDajDauaagqajeaubaucarBaudaueaufaugauhauiaujaukaulaumaunarBauoalqaupauqbaiausalqapfalqalqalqautalqalqauuauvauwajbajbajbajbapfapbapcauxauyalqauzauAauBalqbOYalqaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanTaafanSanSanSanSanSanSanSanSanSanSanSauCanSaafaqBalKalKalKauDauEalKaafaafaafaafaafaafaafaafaafaafaafalKamZauFaobalCauGalCauHauIauJauKauLauMagqagqagqauNauOauOauOauPagqagqauQauRauSauTauQajoajoahxauUauValSauWauWaxRauYauWauWauZazbauWavbauWavcavdaveavfauYavgavhauWauWauWauYauWaviajmavjavkavkavkavkahxaqbagqaucajeajearBarBarBarBarBavlavmavnavoavparBarBarBavqalqapbavrateapcalqapcalqavsalqavtavuavvavwavxavyavzavAavBavCavDavEavBavFapcapcavrapcavGatnavGatnackackaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaqBaafanSapqanSanSanSanSavIaafanSanSanSanSanSanSavJavKavJavLavMalKalKaafaaaaaaaaaaaaaaaaaaaaaaaaaafalKalKalKaGNalCavNalCavOavPavQavRavSavTagqaaaaafaaaaaaaaaaaaaaaaafaaaatJavUavVavWavXavYavkavZawaawbawcawdawdaweawcawdawdawfazqawgawhawiawjawkawlawdawmawnawoawpawpawqawrawsawtawuawvawwawxawyawzahxaqbagqawAahdawBarBawCawDawEasWasXasYawFarBawGasUawHarBawIalqalqalqautalqalqapcalqaqralqawJatmatmatfawKajbatmatmatmatmatmatmatmatmatmanMatmatmatmatmatmatmatmaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanSanSanSanSanSanSanSanSanSanSanSaafanSanSanSaafalKalKalKawMavTaobalKaaaawNawNawOawNawNaafaafaafaafalKawPalKawQasaasaasaawRawSalKawTawUawVagqaaaawWawWawWawWawWawWawWaaaauQawXauQawYauQajoajoahxawZaxaaxbaxcaxdaxeaxbaxfaxdaxaaxgaxhaxiaxjaxkaxlaxmaxnaxoaxpaxqaxraxsaxqaxtaxuaxvaxwaxxaxyaxzaxAaxBahxaqbaxCaxCaxCaxCaxCaunaxDaxEaxFaxGaxHaujaxIaxJaxKaudarBaxLaxMaxNazraxPaAmaxQaxOaBCaxOaxOaxSaxTaxUaxVaxWaxXaxYaxZaxYayaaybaycaybaydatmatmatmayaaybaydayeayeaxYaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafanSanSanSanSanSanSanSayfanSaafaafaafaafalKalCavTaocaipaaaawNaygayhaygawNayiayiayiayjayjayjayjaykayjayjaylaylaylaylaymaylaynagqaafawWayoaypayqayraysawWaaaauQaytaytayuauQaaaaaaayvaywayxayyahxaywayzayyahxaywayAayyahxayBajoayCahxajoayDayEajoajoayFayFayGayHayIayFayFayJahxahxahxahxahxaqbaxCayKayLayMaxCarBarBarBarBayNayOayPavoavparBarBarBalqayQapbanMapcapcayRapcatmatmatmatmatmaySayTayUayVayWayXbUwayYayZazabTqaYwaybazcaybazdbTqazaayZayeaxYaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanTaafaafaafanSanSanSanSapqanSanSanSazganSanSanSanSaafaaaaafaipauFavTamUalKaaaawOazhaziazhawOayiazjazkayjazlazmaznazoazpayjaEtaBRazsaztazuaylaynagqaaaawWazvazwazxazyazzawWaaaatJazAaytazBauQazCaDuaaZazDazEazFahxazGazEazFahxazHazEazFahxazIazJazKahxazLazMazNazOazPayFazQazRazSazTazUazVayJazWazXaECazYaGEazZaxCaAaaAbaAcaxCaAdaAeaHParBaAfaAgaAhaAiaAjaAkaAlaHQaxOaAnatmatmatmatmatmatmatmaAoaApaAqaAraAsaAtaAuaAvaxYaxYaxYaafanSaAwaAxayZayZayZayZayZaAyaAwayZayZaxYaxYaxYaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafanSanSanSanSanSanSanSaafanSaafaafanSanSaafaafalKalKaqKavTalKalKaaaawNazhazhazhaAAaABaACaACaADaAEaAFaAGaAHaAIaAJaAKaALaAMaANaAOaylaynagqaaaawWaAPaAQaARaASaATawWaaaauQaAUaytaytaAVaAWaAXaaZaAYazEaAZahxaAYazEaBaahxaAYazEaBbahxaBcaBdaBeahxaBfaBgaBhaBiaBjayFaBkaBlaBmaBnaBoaBpayJaBqaoPaoPaoPaBraBsaxCaBtaBuaBvaxCaBwaBxaBxaByaBzaBAaBBarBarBarBarBarBalqaIvatmaBDaBEaBFaBGaBHaBIaBJaBKaBKaBKaBKaBLaBMaBNaBOaBPaxYaBQaafaafaaaaaaaaaaafaafaaaaaaaafaafaaaaaaaxYazfaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaanSanSanSanSanSaafaafaafanSanSanSaaiaaaaafaafaafaaaalKalCalCaJiaipaaaaaaawOaziaziaziawOayiaBSaBTaBUaAEaACaBVaBWaBXayjaBYaBZaCaaCbaCcaylaynagqaafawWaCdaCeaCfaCgaChawWaaaauQaCiaCiaCiauQazCaCjaaZaCkaClaCmajmaCkaClaCmajmaCkaClaCmajmaCnaCoaCpajmajmayDaCqajmaCrayFaCsaCtaCuaCvaCwaCxayJaCyagqagqagqaCzagqaxCaCAaCBaxCaxCaCCaCDaCEaCFaCGaCHaCIavoaCJaCKatcarBaCLaCMatmaCNaCOaCPaCPaCQaCRayTaCSaCTaCUaCUaCUaCVaCWaCXaCYaCZaafaIdaIcaIeaIcaIcaIeaIcaIcaIeaIcaIcaKJcmqaxYazfaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaDbaDbaDbaDbaDbaDbaDbaDbaDbaDbaDbavTalKalKaaaawNaDeaDfaDgawNayiayiayiayjaDhaACaDiaBWaDjayjaDkaDlaDmaDnaDoaylaynagqaaaawWaDpaDqaDraDsawWawWaaaauQaDtaDtaDtauQaDuaDvaDuaDwaDxaDwaDyaDwaDxaDwaDzaDwaDxaDwaDAaDBaDCaDDaDEaDFaDGaDHajmavkayJaDIaDJaDKaDLaDMaDNayJaDOaxCaDPaDQaDRaDSaDSaDTaDUaDVaDWaDXaDYaDZaEaaEbaEcaujaEdaEeaEfaEgarBaLkavFatmaEhaEiaEjaEkaElaEmaEnaEoaEpaEqaEqaEqaEraEsaCXaCYaCZaIbaKLanSaOSanSanSaOSanSanSaOSanSanSaRxaIbaxYazfaafaafaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaafaaaaaaaafaafaaaanSaDbaDacVEcVEcVEcVEcVEcVEcVEcVHaDbbzCbPNalKaaaawNawNaEuawNawNaafaafaafayiaEvaEwaExaEyaEzayjaEAaEBaLIaEDaEEaylaynagqaaaaafaaaaEFaEGaEHaaaaafaaaaDuazCazCazCaDuaDuaEIaEJaDCaEKaELaEMaENaEOaEOaEPaEOaEQaENaERaESaETaEUaEVaEWaEXaEYajmavkayJayJaEZaFaayJaFbayJayJaCyaxCaxCaxCaFcaFdaFeaFfaFgaFhaFiaFjaFkaFlaFmaFmaFnaFoarBarBarBarBarBaHWaLJatmaFpaFqaFraFsaFtaFuaFvaFwaFxaFyaFzaFAaFBaFCaCXaCYaCZaCZaKLaFDaaaaaaaaaaaaaFDaaaaaaaFDanSaRxaafaxYaGZaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaafaaaaaaaaaaafaaaaaaaDbcVKcVLcVLcVLcVLcVLcVLcVLcVMaDbavMaDcalKaaaaaaaaaaaaaaaaaaaaaaaaaafayiaFFaFGaFHaFIaFJayjaFKaFLaylaylaylaylaFMagqaFNaFOaFPaFQaFRaFSaFTaFUaFNaDuaFVaFWaFWaFXaFYaFZaGaaGbaGcaGdaGeaGfaGgaGhaGiaGgaGjaGkaGlaGmaGnaGoaGpaGqaGraGsajmavkaGtayJaGuaGvayJaGwaGxaoRaGyaxCaGzaGAaGBaGCaxCaGDaLMaGFaxCaGGaGHaGIaGJaGIaGKaGLaGMboSaGOaGParBaYaaNSatmaGQaGRaGSaGTaGUaBIaGVaGWaFxaGXaxYaxYaGYaGZaxYaCZaCZaCZaKLaaaaaaaaaaaaaaaaHaaaaaaaaaadaUaSCaaaaxYazfaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaafaDbcVKcVLcVLcVLcVLcVLcVLcVLcVMaDbavTcVPalKaaacUScUScUScUScUScUScUSaafayjayjayjaHcaHdayjayjaHeaHfaHgaHhaHiaHjaHkaHlaHmaHnaHoaHpaHqaHoaHraHsaHtaDuaHuaHvaHwaHxaHxaHyaHxaHxaHxaHxaHxaHxaHxaHxaHyaHxaHzaHAaHBaHCaHDaHDaHEaHEaHEaHEaHEaHDaHFaHDaHGaHGaHGaHGaHHaHGaCyaxCaxCaxCaHIaHJaxCaHKaxCaHLaxCaHMaHNaHOavoaUnaUXaHRavoaHSaHTaHUarBaHVaHWatmaxYaxYaxYaxYaxYaBIaHXaHYaFxaHZaxYaIadaWdaVbuWdaVdaYaCZaKLaaaaaaaafaafaafaafaafaaaaaaanSaRxaaaaxYazfaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanTanTanTanTanTanTanTanTanTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaaaaaaaaaaaaaaaaaaaaaaDbcVKcVLcVLcVLaHbcVLcVLcVLcVMaDbavTaobaipaaacUScUVcUVcUVcUVcUVcUSaafaafaIgaIhaIiaIjaIkaIlaImaInaIoaIpaIqaIraIsaItaHjaIuaVoaIwaIxaIyaIzaIAaIBaICaIDaIEaIFaIGaaaaaaaaaaafaaaaaaaaaaafaaaaaaaaaaIHaIIaIJaIKaHDaILaIMaINaIOaIPaIQaIRaISaITaHDaIUaIVaIWaIXaIYaHGaIZaxCaJaaJbaFdaHJaxCaJcaxCaJdaxCaJeaJfaJgaJhaJhaJhaJhaJhaJhaJhaJhaJhalqaVFatmaJjaJkaJlaJmaxYaJnaEiaHYaJoaJpaJqaJraJsaJtaJuaJvdaZaCZaKLaFDaafaafaJxaJyaJzaafaJAaaaanSaRxaafaxYazfaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanTaaaaMqaMqaMqaMqaMqaaaanTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaDbcVKcVLcVLcVQcWgcWhcVLcVLcVMaDbavTaobalKaaacUScUVcUVcUVcUVcUVcUSaJBaIgaIgaJCaJDaJEaJEaJFaJGaJHaJIaJJaJKalKaJLalKalKalKalKaJMaJNaJOaJPaJQaJOaJNaJNaJNaJNaJRaaaaaaaJSaJSaJSaJSaJSaJSaJSaaaaaaaHxaJTaJUaJVaJWaJXaIRaJYaJZaKaaKbaKcaKdaKeaHDaKfaKgaKhaKiaKjaHGaKkaxCaxCaxCaKlaKlaxCaxCaxCaxCaxCaKmaKnaKoaJhaKpaKqaKraKsaKtaKuaKvaJhaKwaCMatmaJkaJkaKxaKyaKzaCOaKAaKBaKCaKDaxYaKEaKFaKGaKHaKIdbbdbadbcaaaaaaaafcDuaKKaKMaafaaaaaadaUaSCaIbaxYcChaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanTanTanTanTanTanTanTaNwbnlbnkaYdbnkbnmaOYanTanTanTanTanTanTanTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaafaDbcVKcVLcVLcVLcVLcVLcVLcVLcVMaDbavTcWAalKaaacUScUVcUVcUVcUVcUVcUWaKNaKOaKNaKPaKQaKRaKSaKTaKUaKVaKWaKXaKYaKZaLaaLbaLcbOqaLcaLeaJNaLfaLgaLhaLiaLjaZTaLlaLmaLnaLoaLpaLpaLqaLraLsaLtaLuaLvaLvaLwaLxaLyaGkaIKaHDaLzaIRaLAaIRaLBaIRaLCaIRaIRaHDaLDaLEaKhaLFaLGaHGaLHaZUbbGbahaLKaLLbevaLNaLOaLPaLQaLRaLSaLTaJhaLUaLVaLVaLVaLWaLXaLYaJhaLZaCMatmaMaaMaaMbaJuaKzaFqaMcaMdaMeaMfaMgaMhaMiaMjaMkaMlaJwaCZaKLaaaaMmaafaMnaMoaMpaafaafaFDanSaRxaafaxYazfaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanTaaaaMqaMqaMqaMqaMraSDbpnbnnbfSbnnbpqbcQaMraMqaMqaMqaMqaaaanTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacSPaaaaafaafaDbcVKcVLcVLcVLcVLcVLcVLcVLcVMaDbavTauGalKaafcUScUVcUVcUVcUVcUVcUXaMsaMtaMsaMuaKQaMvaMvaMwaMvaJHaMxaMyaMzalKalKalKalKalKalKavTaJNaMAaMBaMCaMDaMEaMEaMEaMFaJRaaaaJSaMGaMHaMHaMHaMHaMHaMIaJSaaaaHxaMJaHAaHBaHDaMKaMLaMMaIRaMNaIRaMOaMPaIRaMQaMRaMSaMTaMUaMVaHGaMWaMXaMYaMYaMYaMZaNaaNaaNbaNbaNcaNdaNeaNfaNgaNhaNiaNiaNiaNjaNkaNlaJhaNmaCMatmaMaaNnaNoaNpaxYaNqaEiaNraFxaNsaxYaNtcpRaNuaNuaNuaNvaCZaKLaaaaaaaafaafaafaafaafaaaaaaanSaRxaaaaxYazfaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanTaTQaNxaNyaNyaNyaNyaNybprbprbpsbprbpraNzaNzaNzaNzaNzaNBaNCanTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaOZaNDaOZaaaaafaDbcVKcVLcVLcVLcVLcVLcVLcVLcVMaDbavTakoalKaafcUScUVcUVcUVcUVcUYcUSaJBaIgaIgaNEaKQaNFaNGaNHaNIaNJaNKaNLaNMaNNaNOaNPaNQaNRalKbfUaJNaNTaMBaNUaNVaNWaNWaNXaNYaJRaaaaNZaOaaMHaObaOcaOdaMHaOeaNZaaaaHxaHzaHAaHBaHDaOfaOgaOhaOiaOjaOiaOkaOlaOmaHDaOnaOoaOpaOqaOraHGaOsaOtaOuaOvaOwaOxaOyaOzaOAaOBaOCaODaOEaOFaOGaOHaOIaOJaOKaOLaOMaONaJhapbaCMatmaxYaxYaxYaxYaxYaBIaOOaOPaOQaORaxYaxYaGYaGZaxYaCZaCZaCZaKLaaaaaaaaaaafaaaaaaaaaaaaaaadaUaSCaaaaxYazfaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanTaNwaOTaOUaOVaOVaOVaOVaOVaOVaOWaOVaOVaOVaOVaOVaOVaOXaOTaOYanTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaOZcSUaOZaaXaafaDbcWFcWJcWJcWJcWJcWJcWJcWJaPbaDbavTaDdalKaaacUScUVcUVcUVcUVcUVcUZaMsaPdaMsaMuaKQaMvaMvaMwaMvaJHaJIaPeaPfaPgaPhaPiaPjaPkalKaPlaPmaPnaMBaMBaPoaPpaMBaPqaPraJRaaaaPsaPtaPuaPvaPwaPvaPuaPxaPyaaaaHxaHzaPzaPAaHDaPBaPBaPBaPBaPCaPBaPBaPDaPBaHDaHGaPEaPFaPGaHGaHGaPHaOtaOvaOwaPIaPJaOtaOuaOwaOwaOvaPKaPLaPMaPNaPOaNiaNiaPPaNjaPQaPRaJhaPSaPTatmaPUaPVaPWaPXaPYaPZaEiaNraFxaQaaQbaQcaQdaQeaCXaCYaCZaCZaKLaFDaaaaaaaFDaaaaaaaaaaaaaFDanSaRxaafaxYaGZaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanTaNwaOTaOYaaaaaaaaaaaaaaaaaaaOWaaaaaaaaaaaaaaaaaaaNwaOTaOYanTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaablxaOZcTdaOZblxaaaaDbcWKcWKcWKcWKcWMcWKcWKcWKcWKaDbavTalCalKaaacUScUVcUVcUVcUVcUVcThaQgaQhaQgaQiaKQaMvaQjaQkaQlaQmaQnaJHaQoaQpaQqaQraQsaQtalKavTaJNaQuaMBaMBaQvaQwaQxaPqaQyaJRaaaaJSaQzaQAaPuaQBaMHaQCaQDaJSaaaaHxaQEaJUaJVaQFaQGaQHaQHaQHaITaQHaQHaQIaQJaHDaQKaQLaQMaQNaQOaQPaQNaQQaQRaQRaQSaQTaQUaQVaQWaQXaQYaQVaQZaRaaJhaRbaRcaRdaReaRfaRgaRhaJhcXcaRiatmaRjaRkaRlaRmaRnaRoaRpaRqaRraRsaRtaRtaRuaRvaCXaRwaCZaIbaKLanSdbfanSanSdbfanSanSdbfanSanSaRxaIbaxYazfaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanTanTaNwaOTaOYaaaaaaaaaaaaaRyaRyaRzaRyaRyaaaaaaaaaaaaaNwaOTaOYanTanTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaaaaRAaRBaRCaRBaRAaafaDbaRDaREaREcXEcXRcYEaREaREaRFaDbavTaRGaipaaacUScUVcUVcUVcUVcUVcUSaJBaIgaIgaRHaKQaMvaMvaMwaMvaJHaQnaRIaRJaQpaRKaRLaRMaRNalKavMaJNaROaRPaRPaRQaRRaMBaPqaRSaJRaafaJSaJSaJSaRTaRUaRVaJSaJSaJSaafaHxaJTaRWaHBaRXaRYaQHaQHaQHaRZaQHaQHaSaaITaRXaLKaSbaScaSdaOuaSeaOuaOtaOvaOuaSfaOuaSgaOvaOwaOuaOwaOvaShaSiaJhaSjaSkaSlaSmaSnaKuaLYaJhaSoaCMatmaSpaSqaSraSsaStaSuaSvaSwaSxaSyaSzaSzaSAaSBaCXaCYaCZaafdbgaIcdbhaIcaIcdbhaIcaIcdbhaIcaIcdbicXdaxYazfaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanTaaaaSDaOTaOYaaaaaaaRyaRyaRyaRyaSEaSFaRyaRyaRyaaaaaaaNwaOTaSGaaaanTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaRAaSHbskaSIaRAaafaDbaSJaSKaSKaIfcYGcYKaSLaSMaSNaDbaSOaSPalKaafcUScVccUVcUVcUVcVccUSaafaafaIgaRHaSQaKRaKSaSRaSSaSTaSUaSVaSWaSXaSXaSXaSXaSXalKaSYaSZaTaaTbaTbaTcaTdaTeaTfaTgaThaaaaaaaaaaJSaJSaTiaJSaJSaaaaaaaaaaIHaIIaTjaHBaTkaTlaITaTmaTnaITaITaToaTpaITaTkaLKaTqaTraTsaTtaTuaTtaTvaTwaTxaTyaTtaTtaTtaTtaTtaTtaTzaTAaTBaJhaJhaJhaJhaTCaJhaJhaJhaJhalqaCMatmaTDaTEaTEaPXaTFaTGaTHaTIaTJaTKaTLaTMaTNaTOaBOaTPaxYcXzaafaafaaaaaaaaaaaaaafaaaaaaaafaafaafaaaaxYazfaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanTaTQaTRaTSaTTaTUaRyaRyaTVaTVaTVaTWaTXaTVaTVaRyaRyaTUaTYaTZaUaaNCanTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaRAaUbaUcaRAaRAaRAaDbaDbcYLcYLaDbcYPcYQaDbaDbaDbaDbaUdalKalKaafcUScUScVgcVgcVgcUScUSaafaafaUeaUfaKQaMvaMvaMwaMvaJHaUgaUhaUiaSXaUjaUkaUlaUmalKavTaJNbgpaUoaUpaUqaUraUsaUtaUuaJRaUvaUwaUvaUxaUyaUzaUAaUxaUvaUwaUvaUBaUCaUDaUEaUFaHDaHDaHDaHDaUGaUHaUIaITaUJaHDaLKaUKaOxaULaUMaUMaUMaUMalqalqalqaUNaUOaUPaUQaURaUSaUMaUTaUTalqaUUavDavBaUVavBaUWavBbiqavBavFatmaxYaxYaxYaxYaUYaUZaVaaVbaVcaVdaVeaEiaVfaVgaxYaxYaxYaafanSaVhaViayZayZayZayZayZayZaVhayZaVjaxYaxYaxYaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanTaNwaOTaVkaaaaaaaRyaTVaVlaVmaVnbjSaVpaVqaVraTVaRyaaaaaaaOXaOTaOYanTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaVsaVtaVuaVvcZfaVxaVuaVyaVzaVzcZhaVAaVBcZqcZqaVCaVDaVEbnjalKaaaaaacVkcVjcVjcVjcVlaaaaafaUeaVGaRHaKQcVCaMvaVHaVIaJHaVJaVKaVLaVMaVNaVOaVPaVQalKavTaJNaJNaJNaJOaJOaVRaJRaVSaVTaJRaVUaVVaVWaUxaVXaVYaVZaUxaWaaWbaWcaWdaWeaWfaWgaWhaWiaWjaWkaHDaHDaTkaWlaTkaHDaHDaSeaWmaWnaSeaWoaWpaWqaWraWsaWtalqalqalqalqaWualqalqalqalqalqalqaCMapbapcaWvaWvaWvaWvaWvaWvaWvaWwaWxaWyaWzaWwaWAaWBaWwaWCaWDaBIaBIaWEaWFaWGayWaWHbUwaWIayZaWJbTqayaaybaWKaybaydbTqaWJayZayeaxYaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanTaNwaOTaOYaaaaRyaRyaTVaWLaWMaWNaWOaWPaWQaWRaTVaRyaRyaaaaNwaOTaOYanTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaaaaWSaWTaWUaWUaWVaWUaWUaWUaWWbvFbvFaWYaWZaWZaWZaXaaXbaXcaXdalKaaaaaaaafaafaaaaaaaafaafaafaUeaXeaRHaKQaXfaMvaXgaXhaXiaXjaXkaXlaXmaXnaXoaXpaXqalKaXraXsaXtaXuaXvaXwaXxaXyaXzaXAaXBaXCaXDaXCaXEaXFaXGaXHaXIaXCaXJaXKaXLaXMaXNaXOaXPaXQaXRaXSaXSaXSaXTaXUaXSaXSaXVaXSaXWaXXaXSaXSaXSaXYaXZalqaYaaYbaYcboWaYeaYfaYeaYgaYeaYhbpobiqavFaqqapcaWvaYiaYjaYkaYlaYmaYnaWwaYoaYpaYpaYqaYpaYraWwaYsaVcaYtaYuaYuaYuaYuaYuaxZaxYaYwaybaYxaybazdaxYaxYaxYaYwaybazdayeayeaxYaafaaaaaaaaiaagaaiaafaaiaagaagaaiaaiaagaagaagaaianTanTanTanTanTaNwaOTaOYaaaaRyaTVaTVaYyaWMaTVaYzaTVaYAaYBaTVaTVaRyaaaaNwaOTaOYanTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaWSaWSaYCaWSaRAaWSaYDaWSaWTaWUaWUaYEaWSaYDaWSaYFaYGaYHaYIalKalKalKalKaipaipaipalKalKalKaUeaYJaYKaYLaYMaYMaYNaMvaYOaYPaYQaYRaSXaSXaSXaSXaYSalKalKaYTalKalKaYUaYVaYWaYXaYYaYZaZaaYXaZbaZcaZdaYZaZeaYXaYXaYXaZfaZgaZhaZiaZjaZkaZlaZmaYXaYXaYXaYXaZnaZoaYXaYXaZaaZpaZqaYXaYXaYXaYXaZraZsaZtaZtaZtaZuaZtaZtaZtalqaZvalqaCMalqalqaZwaZwaZwaZwaZxaZyaZyaZzaZAaZBaWwaZCaZDaZEaZFaZGaZHaWwaZIaZJaZKaYuaZLaZMaZNcXAatmatmatmatmatmatmatmatmaZPatmatmatmatmatmatmaxYaafaafaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaanTaNwaOTaOYaaaaRyaTVaZQaZRaZSbqmbrxaZVaZWaZXaZYaTVaRyaaaaNwaOTaOYanTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaWSaafaaaaafaaaaWSaZZaWSbaabaababbacaWSaZZaWSaWSaRAbadbaebafarZasabagasaasiasadaXbajasbbakbalbambanbaobapbaqbarbasbatbaubavbatbawbaxbaybazbaAbaBbaCbaDbaEbaFbaGbaHbaIbaIbaJbaKbaLbaMbaNbaObaPbaQbaQbaQbaQbaQbaQbaQbaRbaSbaTbaTbaTbaTbaTbaTbaTbaTbaUbaVbaWbaXbaTbaYbaUbaTbaTbaZbbabbbaZtbbcbbdbbebbfbbgaZtbbhbbialqbbjalqaaaaZwbbkbblaZwbbmbbnapxbbpbbqbbraWwbbsbbtbbubbvbbwbbxaWwbbybbzbbAaYubbBbbCbbDcXAaqqapccXIatdapcaqrcXIapcapcavrcXIbbEatnavGatnackackaafaaiaaianTanTanTanTaaianTanTanTanTaaianTanTanTaqBanTanTanTaNwaOTaOYaaaaRyaTVaTVbbFaWMaTVbvfaTVaYAbbHaTVaTVaRyaaaaNwaOTaOYanTanTanTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaaaaWSaYDaWSaWSaWSaWSaWSaWSaYDaWSaaaaRAbbIbbJbbKbbKbbKbbKbbKbbKbbKbbKbxRbbMbatbatbbNbbObbNbatbatbatbbPbatbbQbbRbbSbbTbbUbbVbbWbbXbbYbbZbcabaEbcbbaGbccbcdbcdbcebcdbcfbcdbcgbchbcgbcibcibcibcibcibcibcibcibcibcibcibcibcibcibcibcibcibcjbcjbckbcjbcjbcjbcjbcjbcjbclbaGbcmaZtbcnbcobcpbcqbcraZtbcsbctalqaCMalraaabcubcvbcwbcxbcybczbcAbcBbcCbcDaWwbcEbcFbcGbcGbcHbcIaWwbcJbcKbcJaYubcLbcMbcNcXAaqrcXZcYjcYkalqalqalqalqalqalqalralqalqaYvalqaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaafaaaaaaanTaaaaSDaOTaOYaaaaRyaRyaTVbcPaWMaTVaTVaTVaYAaWRaTVaRyaRyaaaaNwaOTbcQaMqaaaanTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabcRbcSbcTbcSbcUbcSbcSbcUbcSbcTbcSbcRaRAbbIbcVbcWbcXbcYbcZbdabdbbdcbbKbddbdebdfbdgbdhbdibdhbdibdjbdibdkbatbdlbdmbdnbdobdpbdqbdrbdsbdtbdubdvbdwbdxbdybdzbcdbdAbdBbdCbdDbcdbdEbdFbdGaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafbcjbdHbdIbdJbdKbdLbdMbdNbcjbdObdPbdQaZtbdRbdSbdTbdUbdVaZtalqalqalqbdWalqaaaaZwbdXbdYaZwbdZbeabebbecbedbeeaWwbefbegbehbeibejbekaWwaBIbelaBIaYubembenbeocXAaWuatmatmbpubpuaaaaafaafaafaafaafaafalqatnalqaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaafaMqaMqbeqberbesbetaTTaTUaRyaRyaTVaVlaWMbeubyxbewbexaVraTVaRyaRyaTUaTYbeybezbeAaNCaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabcRbcSbcSbcSbeBbeCbeDbeEbeFbeGbeHbeIbeCbcSbeJaWSbbIbbJbeKbeLbeMbeNbeObePbeQbeRbeSbeTbeUbyIbyIbeVbeWbeXbatbatbatbatbeYbeZbfabfbbfcbbNbfdbbXbbYbfebffbfgbfhbaGbfibcdbfjbfkbflbfmbfnbfobfpbfqaafaafbfrbfsbftbfubfvbfwbfsbfubfvbfwbftbftbfxaafaafbcjbfybfzbfAbfBbfAbfCbfDbcjbfEbaGbfFbfGaZtbfHbfIbfJaZtaZtbfKbfLalqbfMalqbfNaZwaZwaZwaZwaWvaWvaWvbfObfPaWvaWwaWwaWwaWwaWwbfQbfRaWwbyKbfTbyKaYubfVbfWbfXcXAbifbfZbgabgbbgbbgbaaaaafaaaaaaaaaaafaafackaafaafaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaafaafaafackbgcbgdbgebgfbggaVkaaaaaaaRyaRyaTVbghbgiaWNbgjbgkbglbgmaTVaRyaRyaaaaaabgnbgoaOTaOYanTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabcSbgqbgqbcSbeCbgrbgsbgrbgsbgrbgsbgrbeCbgtbguaWSbbIbgvbbKbgwbgxbgybgzbgAbptbbKbgCbgDbgEbgFbgGbgHbgIbgJbgKbgLbgMbgNbgObgPbgQbgRbgSbgTbgUbgVbgWbgXbgYbgZbdxbaGbfibcdbhabhbbhcbhdbcdbhebhfbdGaafaafbhgbhhbhibhjbhkbhlbhmbhnbhobhpbhqbhrbhsaafaafbcjbhtbhubhvbhwbhxbhybhzbcjbhAbhBbhCbhDbhEbhFbhEbhGbhHbhIbhEbhEbhEbhJbhEbhKbhLbhMbhNbhEbhEbhObhKbhGbhJbhPbhQbhObhRbhSbhTbhUbhVbhWbhXbhYbhZbiabibbicbidbiebifbifbigcTucTibijcULaafaaaaaaaaaaaaaaaackaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaackbgcbgdbikbgdbilaOYaaaaaaaRyaRyaTVbimbinbiobipblEbirbisaTVaRyaRyaaaaaaaaaaNwaOTaOYanTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabcUbeCbeCbcTbeCbgrbgsbgrbitbgrbgsbgrbeCbgtbguaWSbiubivbiwbixbiybizbiAbizbcWbcWbiBbiCbbPbatbiDbiEbiFbiGbiHbiIbiJbatbiKbiLbiHbfbbiMbatbiNbiObiPbiQbiRbdwbfhbaGbfibcdbiSbiTbiUbiVbcdbiWbiXbdGbfvbiYbfvbiZbjabjbbjcbjbbjdbjbbjcbjbbjebjfbfvbiYbfvbcjbjgbjgbjgbjhbjibjjbjkbcjbjlbjmbjnbjobjpbjqbjpbjrbjpbjsbjpbjpbjpbjtbjpbjubjvbjwbjxbjpbjpbjybjzbjAbjtbjBbjtbjCbjDbjEbhTbjFbjGbjGbjHbjIbjGbjGbjJbjKbjLbjMbifbfYbgabgbbgbbgbaaaaafaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaafaOVaOVbeqbjNbjOaOYaaaaRyaRybjPbjPbjQbjRbjRblIbjQbjQbjQbjTbjTaRyaRyaRyaaaaNwaOTaOYanTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabcSbjUbjUbcSbeCbgrbgsbgrbgsbgrbgsbgrbeCbgtbguaWSbjVbjWbjXbjYbjZbkabkabkbbkcbAwbkdbkebkfbatbkgbkhbkibkjbkkbklbkmbatbknbkobkpbkqbkrbatbksbktbkubkvbkwbaEbkxbdPbkybkzbkzbkzbkzbkzbcgbkAbkBbcgbfvbkCbkDbkEbjcbjcbjcbjcbkFbjcbjcbjcbjcbkGbkHbkIbfvbkJbkKbkLbkMbkNbkObkObkPbcjbkQbkRbkSbkTbkUbkVbkUbkWbkUbkXbkUbkUbkYbkUbkUbkZblabkUblbbkYblcbldbkZbkWbkUbleblfblgblhblibljblkbllblmblnbjLblobloblpblqblrblsbhTbhTbhTbhTbpuaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafblublvblwaMqblxblyblzaSGblAaRyblBblCblDbjQbrXblFblGblHbsebjQblJblKblLblMaRyaaaaNwaOTaOYanTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabcRbcSbcSbcSblNbeCblObeCblPblQbeCblRbeCbcSblSaWSbjVblTblUblVblWblXblYblZbmablVbmbbmcbmdbatbmebbNbmfbmgbatbatbatbatbatbbNbmhbmibatbmjbdwbmkbmlbdwbdwbmmaYUbaGbmnbkzbmobmpbmqbkzbmrbmsbmtbmubmvbmwbmxbmybmzbmAbmBbmCbmDbmBbmBbmEbmzbmFbmGbmHbfvbcjbjgbjgbjgbmIbjgbjgbjgbcjbmJaWfbmKbmLbmMbmNbmMbmObmPbmPbmPbmPbmPbmPalqalqbmQalqalqalqbmRbmSalqalqalqbmTbmUbmVbmWbmXbmYbmZbnabnbbncblobndbnebnfblqbngbhTbhTbqFbpvbrJaNCaafaafaaaaaaaafaaaaaaaafaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaafaaaaaaaaabnoaaaaafaNwbnpbnqbnrbnsbntbnubnvbnwbnxbnybnzbnAbnBbnCbnDbnEbnzbnFbnGbnHbnIaRyaMqaSDaOTaOYanTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabcRbcSbnJbcSbcUbcSbcSbcUbcSbcTbcSbcRaRAbnKbnLbnMbaEbnNbnObnPbnObnQbaEbnRbnSbnTbnUbnVbnWbnXbnYbnZbnWboabobbnWbnVbnVbocbnVbodboebofbogbohbnVboibojbokbfibolbombonboobkzbdGbdGbdGbdGbfvbopboqborbosbotboubjcbovbowboxboybosbozboAboBboCbcjboDboEboFboGboHbjgboIbcjboJaWfboKboLboMboNboObmOboPboQboRdbdboTboUboVbBjboXalqboYbcsboZbpabpbalqatjbpcalqbpdbpebpfbiebpgbpgbpgbphbpibloblobpjbpkbplbpmbrKbppbrLbrNbrMbpwbpwbpwbpwbpxbpwbpwbpxbpwbpwbpwbpwbpwbpwbpxbpwbpwbpwbpwbpwbpwbpxbpybpybpzbpAbpAbpAbpBbpCbpDbpEbpFbpGbpHbpIbpJbpKbpLbpMbpNbpObpPbpQbpRbpSbpTbpUbpVbpWbpXbpYbpZbqaaNCanTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaaaaWSaYDaWSaWSaWSaWSaWSaWSaYDaWSaaaaRAbqbbqcbqdbaEbqebqfbqgbqfbqhbaEbqibqjbqkbqlbBGbqnbqobqlbqlbqpbqqbqrbqsbqlbqlbqtbqlbqlbqlbqubqvbqwbqwbqxbqybqzbqAbkzbqBbqCbqDbkzbqEbtCbsPbqGbqHboybqIbotbqJbqKbqLbqMbqNbqMbqObqPbqQbqRbqSbqTbqUbcjbqVbqWbqXbqYbqZbcjbcjbcjbrabrbbrcbmObrdbrebrfbmObrgbrhbribrjbrkbrlbrmbrnbrobrpbrqbrrbrsbrtbrubrvbrwbBWalqbmVbrybrzbhTbrAbrBbrCbrDbrEbrFbrGbrHbrIbtDbhTbhTbtFbtEbtGaNCaafaaaaaaaaaaafaaaaaaaafaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaafaaaaaaaaabrOaaaaafaNwbrPbrQbrRbrSbrTbrUbrVbrWbsfbrYbrZbsabsbbscbsdbyMbrZbyObsgbshbsiaRybgnbsjaOTaOYanTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaWSaafaaaaafaaaaWSbskaWSbslbsmbaabsnaWSbskaWSaWSaRAbbIbsobspbaEbsqbqfbsrbqfbssbaEbstbsubsvbswbsxbsybszbsAbsBbsCbsDbsEbsxapAavHbsFawLbsGbsHbszbsIbsxbsxbsJbsKbsLbqAbkzbsMbsNbsObtHbsQbsRbsQdbebqHbsSbsTbsUbsUbsUbsVbsWbsXbsYbsZbsUbsUbsUbtabtbbfvbcjbtcbtdbtebtfbtgbcjbthbtibtjbtkbrcbmMbtlbtmbtnbmObtobtpbtqbtrbmPbmPalqalqbtsalqalqalqbttbtualqalqbtvbtwalqbtxbrybtybhTbepbepbepbepbtzbepbepbtAbtBbvnbhTbvobvpbhTbvqbhTaafaafaaaaaaaafaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafbtIblvbtJbtKblxaOXblzaOUaOVaRyaRyaRybtLbtLbtLbtMbtNbtLbtLbtLbtLaRyaRyaRyaRyaaaaNwaOTaOYanTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaWSaWSaYCaWSaRAaWSaYDaWSbtOaVubtPbtQaWSaYDaWSbtRbtSbtTbnLbnMbaEbtUbtVbnPbtVbtWbaEbtXbtYbtZbaEbuabubbucbaEalKbudalKbuebuebuebugbuhbuebuebuebuebuebuebuebuibujbukbulbumbunbuobupbuqbupburbusbutbuubuvbuwbuxbuybuxbuxbuzbuAbuBbsUbsUbuCbsUbuDbuEbcjbuFbuGbuHbfAbuIbuJbcjbuKbcgbuLaWfbuMbmObmObmObmObmObuNbuObmPbmPbmPbuPbuQbmPbuRbuSbuTalqavsbuUalqbuVdbjbuXbuYbuZbvabvbbvcbvdbvebCKbvgbvhbvibepbvjbvkbvlbvmbvrbvvbvsbxmbwlackaafaafaafaafaafaafaafaaaaafaaaaafaaaaafaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaanTaNwblzaOYaaaaaabvtaRybtLbvubAWbvwbvxbvybvzbvAbtLaRybvtaaaaaaaaaaNwaOTaOYanTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaWSbvBaVuaVwbvCbvDaVuaVubvEbvFaWXbvGbvHbvHbvHbvIbvJbvKbvLbvMbvNbvObvPbvQbvRbvSbvNbvObvUbvVbvWbvWbvXbvWbvWaoebvYbvZbuebwabwbbCVbwdazebueaAzbwgbuebwfaFEbuebwhbaGbfibkzbwibwjbwkbAZbwmbwnbwobwpbqHbwqbwrbsUbwsbwtbwubjcbjcbuEbwvbwwbwxbsUbwybwzbcjbwAbwBbwCbwDbwEbwFbwGbwHbcgbdObwIbwJbmPbwKbwLbwMbwNbwObwPbwQbmPbwRbwSbwTbwUbwVbwWbwXalqalqalqalqalqalqbwYalqbwZbxabxbbxcbxdbxdbxdbxdbxdbxcbxcbxdbxebxfbxgbxhbxibxjbxkbxlbxcbxcbxcaafaaaaaaaaaaafaaaaafaaaaafaaaaaiaaaaaiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaanTaNwblzbcQaMqaaaaaaaRybtLbGhbxnbxobxpbxqbxrbxsbtLaRyaaaaaaaMqaMqblyaOTaOYanTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaWSaWTaWUaWUbxtaWUbxubxvbxwbxwbxxbxwbxybMwbxzbxAbxBbxCbxDbxEbjYbxFbxGbxHbxIbxJbxKbxLbxMbxNbxObxPbxQbCObvWbxSbxTaoabuebxUbxVbCVbwdbwebuebxWbxXbuebxWbxXbuebxYbdPbkybkzbkzbxZbkzbkzbkzbyabybbkzbkzbycbydbyebjcbqMbqMbyfbygbyhbyibyjbykbylbymbynbyobfAbypbyqbyrbysbytbcjbyubcgbyvaWfbywbDLbwObyybwObyzbwObyAbwObyBbyCbwXbyDbyEbyFbyGbyHbGibGgbGnbyLbGobyNbGpalqbyPbrybyQbxcbyRbySbyTbyUbyVbxcbyWbyXbyYbyZbzabzbbzcbzdbzebzfbzgbzhbxcaafaafaafaafaafaafaafaaaaaiaaabziaaabzjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaanTaTQbzkbzlbzmaTTaTUaRybtLbznbzobzpbzqbzrbzsbztbtLaRyaTUaTYbzubezbezbzvaNCanTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaWSaWSaRAaWSaYCaWSaRAaWSaWSaWSaRAaWSaRAaRAaRAbiubivalKbzwalKalKbzxbzybzxbzzbzxbzxbzxbzxbvWbvWbzAbzBbvWbvWbvWbzCalCbuebzDbzEbCVbzFbGvbuebzGbuebuebzHbuebuebzIbaGbGwbzJbzKbzLbzMbzNbzObzLbzPbzQbzRbuEbzSbuxbzTbqMbzUbzVbzWbzXbzYbqMbzZbsUbAabAbbcjbAcbAdbfAbAebAfbAgbcjbAhbcgbclaWfbywbmPbAibAjbAkbAjbAlbAmbAnbAobyCbwXbApbAqbwXbyCbArbAsbAtbAubAvbHkbyNbtwalqbAxbAybAzbAAbABbACbADbAEbAFbxcbAGbAHbAIbAJbzabAKbALbAMbANbAObAPbAQbxcaafbARbARbARbARbARaafaaabzjaaabziaaabzjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaanTaaabASbATaOTaOYaaaaRybtLbAUbAVbJhbAXbAYbJibBabtLaRyaaaaNwaOTaVkbgnbBbaaaanTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaacVmcVncVncVocVncVncVncVpcVncVncVqaafaWSbBcbbIbBdalKbvYauFbBebzxbBfbBgbBhbBibIzbBkbzxbIDbBlbBmbBnbBobBpbvWbzCbBqbuebBrbBsbCVbwdbHTbBubzEbBvcUTbzEbBwcUUbujbaGbfibBybBzbBAbBBbBBbBBbBBbBCbzRbBDbBEbBFbfvbfvbLTbBHbBIbBJbBKbBLbLTbfvbfvbBMbBEbBNbcjbyobcjbcjbcjbckbcjbBObBPbBQbBRbywbBSbBTbBTbBTbBUbBTbBVbBTbDLbyCbyCbBXbyCbyCbwXbBYbBZbCabCbbCcbCdbyNbwYalqbCebAybCfbCgbChbCibCjbCkbClbCmbCnbCobCpbCqbzabCrddFbCtbCubCvbCwbCxbCybCzbCAbCBdbudbubARaafaaabzjaaabziaaaaaiaaiaafaaiaagaagaaiaaiaagaagaagaagaagaaiaagaaganTanTaNwaOTaOYaaaaRybCDbCDbCDbCEbCFbCEbCDbCDbCDaRyaaaaNwaOTaOYanTanTanTanTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacVmcVrcVtcVscVucVucVucVucVucVucVucVobCGaWSaWSbbIbCHalKbCIbCJbNdbzxbCLbBgbBhbCMbCNbNhbzxbCPbCQbCRbCSbvWbvWbvWbzCapzbuebCTbCUbCVbwdbwcbwcbwcbwcbwcbwcbwcaZObCWbCXbCYbCZbDabDbbDabDcbDabDbbDdbDabDebDfbDgbDhbDibDjbDkbDkbDlbDmbDkbDnbDobDpbDqbDrbDsbDjbDtbDubDjbDvbDwbDjbDxbDybDzbDAbDBbDCbwObDDbwObDEbwObDFbwObDGbyCbyCbDHbyCcTRbDIbDJbBZbDKbyJbCcbNHbyNbwYalqbDMbDNbtybAAbDObCibDPbCibDQbDRbDSbDTbDUbDVbzabDWbDXbDYbDZbEabEbbEcbzaaafbzabEddbubEebARaafaaabzjaaabziaaabzjaaaaaaaafaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaanTaNwaOTaOYaaaaRybEfbEgbEhbCEbEibCEbEjbEgbEkaRyaaaaNwaOTaOYanTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacVwcVvcVvcVvcVvcVvcVvcVvcVvcVvcVvcVxbElbEmbElbbIbEnalKbEobEpakobzxbEqbBgbBhbErbBgbNKbzxbvWbEtbvWbBnbEubEvbvWbOvbOfbuebEwbBsbExbEybEzbEzbEAbwcbwcbwcbwcaZObujbEBbECbEDbEEbEFbEEbEGbEHbEIbEJbEEbEKbELbEMbENbEObENbEPbEPbEQbERbEPbESbETbEUbEVbEWbEXbEYbEZbFabFbbFcbFdbEWbFebFfbFgbFhbFibFjbFkbFlbFmbFmbFnbFobFkbFpbFqbFrbFsbwXbFtbwXbFubFvbFwbFxbFybFzbFAbFBalqbFCbFDbFEbFFbFGbFHbFIbFJbFKbzabFLbFMbFNbFObFPbFQbFRbFSbFTbFUbFVbFWbFXbFYbFZbGadbubGbbARaafaaabzjaaabziaaaanTanTanTanTanTaaianTanTanTanTaaianTanTanTaaianTaaganTaNwaOTaOYaaaaRybGcbGdbGebCEbCFbCEbGebGdbGfaRyaaaaNwaOTaOYanTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacVmcVrcVAcVAcVBcVBcVBcVBcVBcVBcVBcVoaWSaWSaWSbbIbQLalKbJjalKalKbzxbQMbGjbGkbBgbBgbBgbzxbGlbGmbvWbQNbvWbvWbvWalCbzCbGqbzEbzEbCVbGrbGsbGtbGubzEbHUbzEbBxcUUbujbaGbHXbGxbGybGzbGAbGBbGybGybGCbGCbGDbGEbGCbGFbzRbGGbGHbGIbGJbGKbGHbGLbzRbGFbGMbGNbGObGPbGMbGMbGQbGRbGSbGMbGTbGUbGVbGWbGXbGYbGZbHabGZbHbbHcbwObwObDLbBXbyCbHdbHebHfbHebFrbHgbHhbHibHjbQObyNbHlalqbHmbHnbHobxkbHpbHqbHrbHsbxkbxlbHtbHubAObHvbzabHwbHxbHybHzbHybHAbHBbzaaafbARbARbARbARbARaafaaabzjaaabziaaabzjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanTbJlbMtaOYaaaaRybHCbGdbGdbHDbHEbHFbGdbGdbHGaRyaaaaNwaOTaOYanTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaacVmcVncVncVocVncVncVncVpcVncVncVqaafaWSbHHbbIbHIalKbzCapzbHJbzxbHKbBhbHLbHMbEsbQPbzxbHNbHObvWbSbbHPbHQbvWbSwbSpbuebHRbHRbCVbwdbHSbHSbHTbPTbHVcVbbuebuecVdbHWbHXbGybHYbHZbIabIbbIcbIdbIebIfbIgbIhbGCaafbBzbIibGHbGHbIjbGHbGHbIkbIlaafbGMbImbInbIobIpbGMbGMbGMbGMbGMbIqbcgbGVbIrbIsbmPbItbIubBTbMPbIwbBTbBTbmPbBXbIybyCbyCbyCbyCbyCbSJbIAbIBbICbSLbyNbIEalqbIFbIGbIHbxgbIIbIJbIKbILbIMbINbIObIPbIQbIRbISbITbIUbIVbIWbIXbIYbIZbJabJbbCAbJcbJdbJdbARaafaafbJeaafbJfaafbzjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanTaNwbMtaOYaaaaRybJgbJmbKLbGdbKMbJkbKPbKNbJnaRyaaaaNwaOTaOYanTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaWSaWSaRAaWSaYCaWSaRAaWSaWSaWSaRAaWSaRAaRAaRAbjVbJobJpbJqbJrbJsbzxbJtbJubHLbJvbJwbJxbzxbvWbvWbvWbvWbvWbvWbvWbzCaoabuebJybJzbCVbwdbzEbzEbJAbzEbJBcVebuebufbujbaGbJCbGybJDbJEbJFbJGbJHbIdbJIbJJbJKbJLbJMaafbBzbJNbJObJPbJQbJObJPbJRbIlaafbJSbJTbJUbJVbJWbJXbJYbJZbKabGMbKbbcgbKcbwIbKdbSNbKebKebKfbKgbKhbKibKjbKebKkbKebKlbKmbKnbKobKpbyNbyNbKqbyNbyNbyNbHlbKrbKsbKtbKrbxcaaOaiNbBtcVDbKubxgbKvbKwbKxbKybKzbKAbKBbKCbKDbKEbKFbKGbzaaafbzabKHbKIbKJbARaafaaabzjaaabziaaabKKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanTaNwbNWbKQaTUaRyaRybNXbNYbGdbKObJkbObbOaaRyaRyaTUaTYbKRaNCanTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaWSbKSbtSaVwbKTaVwaVuaVubKUaVubtSaVubKVbtSaVubtTbKWalKbKXalCaLdbzxbKYbKZbBgbBgbBgbLabzxbLbbLcbLdbLebLfbLgalKbzCaqObuebLhbLibCVbLjbLkbLkbLlbzEbzEcVfbuecVhbujbaGbHXbGybLmbLnbLobLpbLqbIdbLrbLsbLtbLubGCbLvbLwbLvbLwbLwbLxbLwbLwbLvbLwbLvbGMbLybLzbLAbLBbLCbLDbLEbLFbGMbLGbcgbLHaWfbIsbKebLIbLJbLKbLLbLMbLNbLNbLObLPbKebKebKebKebKebKebKebyNbLQbLRbLSbyNbTdbKrbLUbLVbLWbKratmatmatmatmbxcbMabMbbMcbMdbMebMfbMgbMhbMibMjbKEbMkbMlbFXbFYbFZbMmbJdbMnbARaafaaabzjaaabziaaabzjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanTaNwbMtaOYaaabvtaRybMobGdbGdbMpbMqbMrbMsaRybvtaaaaNwbMtaOYanTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaWSaWTaWUaWUaWUaWUaWUbMubMvbMwbxwbxwbMxbMybMzbMAbMBalKbbLaqKaLdbzxbBibMCbBgbBgbMCbMDbzxbMEaodaofbMFbJsbLfalKbzCbMGbuebMHbMIbMJbMKbzEbMLbMMbMNbMOcVibueaVWbujbaGbMRbGybMSbMTbMUbMVbIdbIdbMWbMXbMYbMZbGCbNabNbbNcbTZbNebNfbNgbTZbNibNjbNkbNlbNmbLzbNnbNobGMbNpbNqbNrbGMbNsbcgbNtaWfbNubNvbNwbNxbNyddDbNAbLKbLKbNBbNCbKebNDbNEbNFbNEbNGbKebVDbNIbNJbVYbyNbHlbKrbNLbNMbNNbKrbLXbLYbLZcTwbxcbMabNPbNQbxdbNRbxdbNSbNTbNUbCibKEbNVbKGbzaaafbARbARbARbARbARaafaaaaaiaaabziaaabzjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanTaNwbMtaOYaaabvtaRybOcceCbULbNZcgychochnaRybvtaaaaNwbMtaOYanTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaWSaWSbOdbOdaWSaWSaWSaRAaWSaRAaWSaRAaRAalKbOealKalKalKbbLaqOaLdbzxbMDbWWbOgbBgbOgbOhbzxbOiaGNaobapzbOjamUalKbzCalCbuebuebuebOkbOlbuebuebuebuebuebOmbuebuebxYbdPbOnbGybOobOpdbmbOrbOsbIdbOtbOubMYbYqbOwbOxbOybOzbOAbOBbOzbOCbOzbODbOEbOFbNlbOGbLzbOHbOIbOJbOKbOLbOMbGMbONbcgbOOaWfbIsbOPbOQbORbOSbOTbOUbOVddEbNBbOWbKebOXdbnbOZbPabNGbKebPbbPcbPdbPebPfbPgbKrbPhbPibPjbKrbPkbPlbPmbPnbxcbPobPpbPqbPrbNRbPsbPtbCibMgbPubPvbPwbIZbJabJbbCAbPxbPybPzbARaafaaabzjaaabziaaabzjaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanTbJlbMtaOYaaaaaaaRyaRyaRyaRyaRzaRyaRyaRyaRyaaaaaaaNwbMtaOYanTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaWSbPAaZZaWSaaaaafaaaaaaaaaaafaaaaaaalKbPCbPDbPEbPFbPGbPFbPHbzxbzxbzxbzxbPIbzxbzxbzxbPJaqKalCaobbPKbPLalKbPMbPNbuebPObPPbPQbPRbPSbMQbPUbuebPVbPWbPXbuebujbaGbPYbGybJDbMTbPZbQabJDbIdbQbbQcbQdbQebOwbQfbQgbQhbQibQjbQkbQlbQgbQmbQnbQobNlbQpbQqbQrbQsbQtbQubQvbQwbQxbQybcgbQzaWfbIsbOPbQAbQBbQBbQCbQDbQEbQFbQGbQHbKebQIdbnbQJbQKbZxbKecaFcetccocfebyNbHlbKrbKrbKrbKrbKrbQQapcapcbQRbxcbPobPpbPqbQSbQTbPsbQUbKDbQVbPubKEbQWbKGbzaaafbzabQXbQYbQZbARaafaaabzjaaabziaaabzjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanTaNwbMtaOYaaaaaaaaaaaabvtbvtbRabvtbvtaaaaaaaaaaaaaNwbMtaOYanTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaWSbOdbOdaWSaafaafaafaafaafaafaafaafalKbRcasaasaasabxTaGNaLdalCamZauFaoabRdbReaqOalKalKalKalKalKbRfalKalKbzCapzbuebRgbRhbRibRibPRbRjbRkbuebRlbRmbRnbuebwhbaGbRobGybJDbRpbRqbRrbJDbIdbRsbRtbRubRvbOwbRwbRxbRybRzbRAbRBbRCbRDbREbRFbRGbNlbRHbRIbRJbRKbLCbRLbRLbRMbGMbRNbcgbROaWfbIsbKebRPbRQbRRbLKbRSbRTbNzbRUbRVbRWbRXbRYbRZbSacgFbKebyNbyNbyNbyNbyNbScalqbSdbNOaqrapcbSeaqqbSfapcbxcbxcbSgbHubPrbNRbShbSibCibMgbPubKEbSjbMlbFXbFYbFZbSkbPybSlbARaafaaabzjaaabziaaabzjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanTaNwaOTaOYaaaaaaaaaaaaaaaaaaaOWaaaaaaaaaaaaaaaaaaaNwbMtaOYanTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacVFcVFcVFcVGcVFcVGcVFcVFcVFcVGcVGcVFcVFcbmcVIcVFcVFcVGcVGcVFcVFaaaaaaaaaalKalKalKalKbPLbSnasabSocgHbSqbSrbSrbSrbSsbStbSrcgHcgKbSubSrbSvbOfalCbzCbTtbuebSxbSybSzbSAbBsbSBbSCbuebuebuebuebuebSDbaGbHXbGybGybSEbSEbSFbGybGAbGCbSGbSHbGCbGCbSIchwbSKbLwbSIbSIbSIbLwbSMchwbSIbGMbGMbGMbGMbGMbGMbSObSObSObGNbSPbcgbSQaWfbSRbSSbSTbSTbSTbSUbSTbSTbSVbSWbSTbSTbSTbSTbKebSXbSYbSZbTabTbbTcapccjrbTealqbPmbTfbTgapcbThapcapcanMbxcbTibDSbTjbxdbNRbxdbTkbCibMgbTlbKEbNVbKGbzaaafbARbARbARbARbARaafaafbKKaafbJfaafaaiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanTaNwaOTbcQaMqaMqaMqaMqaMqaMqbTmaMqaMqaMqaMqaMqaMqblybMtaOYanTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacVNcVFcVFcVOcVRcVFcVTcVScVFcVUcVVcVVcVXcVWcVZcVYcVFcWacWccWbcWdcVFaaaaaaaaaaaaaafaaabTnbTnbTobTpbTnalKbTralKalKalKaSObTsbTsbTsbTsbTsbTsbTsbOvbSsbSpbTvbuebTwbTxbTybTzbBsbPRbTAbTBbTCauFalKbTDbujbTEbTFbTGbTHbTIbTIbTIbTJbTKbTLbTIbTIbTMbTNbTGbTGbTOcMQbTPbTPbTQbTPbTRbTSbTSbTTbTUbTVbTWbTXbTYbTIbTIbTIbTJbUabTSbUbaWfbUcbUdbUebUfbUgbUhbUibUjbUkbUhbUlbUmbUnbUobKebUpbUqbUrbUsbUtbUubUvbTeapcalqalqalqalqalqbUxbUybxcbxcbxcbUzbDSbHubUAbUBbUCbDWbUDbUEbUFbUGbUHbIZbJabJbbCAbUIbUJbUJbARaafaaabzjaaabziaaabzjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanTaTQbUKaNyaNyaNybezbezchzchzchMchzchzbezbezbezbezbezbUMaNCanTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacWfcWecVFcVFcWicVFcWkcWjcVFcWlcWmcVYcWocWncWocWpcWrcWqcWscWscWtcVGaaaaaaaaaaaaaafaaabTnbUNbUObUPbTnaobbUQbJsbURalKbUSbTsbUTbUUbUVbUWbUXbTsalCbTualCalCbuebuebuebuebuebuebuebuebueatwalCalKbUYbujbUZbVaaYXaYXaYXaYXaYXaYXaZaaYXbVbbVcbVdaYZaYXaYXbVebVfbVgbVhbVibVjbVkaYXaYXaYXbVlbVmaYXaYXaZaaYXaYXaYXaYXbVnaYXbVbbVobVpbVqbVrbVsbVtbVsbVubVubVvbVwbVxbVubVtbVybKebKebKebKebVzbVAapbanMbVBbVCapbbVCcjubVEalqautalqbxcbVFbVGbVHbVIbVJbVKbFObVKbFQbCibVLbKDbKEbVMbKGbzaaafbzabVNbVObVPbARaafaaabzjaaabziaaabzjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanTaaabBbbgnbgnbgnbBbbATbpncmKckTcmKbpqaVkbBbbgnbgnbgnbBbaaaanTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacWfcWecVFcWucWvcVFcWxcWwcVFcWycWzcWocWBcVFcVYcWocVFcWCcWscWDcWEcVFaaaaaaaaaaaaaafaafbTnbVQbVRbVSbTnaobbVTbVUalKalKbVVbTsbVWbVXctqbVZbWabTsdbkbWbbSrbSrcgHbSrbSubSrbWcbWdclMbWdbWdbWeaXtbWfbWgbWhbWibWjbWkbWlbWmbWjbWjbWjbWnbWjbWoaXRbWpbWqaXRaXRbWrbWsbWtbWubWvbWwbWxaXRaXRbWybWzbWAbWAbWBbWCbWBbWBbWBbWDbWEbWFbWGbWHbWIbWJbWKbWLbWMbWNbWObWPbWQbWRbWSbWTbWQbWUbSTbWVcmjbSTbWXbVAapbapbapbapbapbbWYbWZbXabXbbXcbXdbXebXfbXgbXhbXibXjbXkbXlbXmbXmbXmbXnbXobXpbXqbMlbFXbFYbFZbXrbUJbXsbARaafaaabzjaaabziaaabzjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanTanTanTanTanTanTanTaNwcpObprcmXbprbzvaOYanTanTanTanTanTanTanTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacWfcVFcVFcVFcWGcVFcWIcWHcVFcVFcVFcWncVFcVFcWLcWLcVFcVFcWNcVFcVFcVFcVGcVGcVFaaaaafaaabTnbXtbXubXvbTnbXwaobbXxalKbXybXzbTsbXAbXBbXCbXDbXEbTsbTsbTsbTsbTsbTsbXFbTsbTsbXGbXHbXIalCaqKbXJaqObXKbXKbXKbXKbXKbXKbXKbXLbXLbXLbXLbXLbXMbXNbXNbXObXPbXNbXQbXNbXRbXSaWfbXTbXUbXVbXWbXVbXXbXYbXVbXVbXZbSSaVUaVWaVWbYabSSbYbbSSbYcbYdbYcbSTbYebYfbWRbYgbYhbWQbWRbYibYjbYkbYlbSTbYmbYnbSTbYobYpcowbXabXabXabXabYrbYsbYtbYuapcapfbxcbYvbAObCibYwbYxbYybISbISbYzbISbYAbMjbKEbNVbYBbxcaafbARbARbARbARbARaafaaabzjaaabziaaabzjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanTaaabgnbgnbgnbgnbgnaaaanTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacVFcVGcVFcWOcWocWQcWPcWRcWocWocWScVFcVYcWocWocWocVYcWocWocWocVFcWUcWTcWWcWVcVGaaaaaiaaabTnbYCbYDbYCbTnalKalKalKalKbTsbYEbTsbYFbYGbYHbYIbYJbTsbYKbYLbYMbTsbYNbYObYPbTsbYQbTsbTsbTsbTsbTsbTsbXKbYRbYSbYTbYUbYVbYWbXLbYXbYYbYZbXLbZabZbbZabZcbZdbZabZbbZabZebZfbZgbZhbZibZjbZkbZjbZlbZmbZjbZkbZjbZnbZobZobZobZobZobZpbSSbZqbZrbZsbUebZtbVtbWRbWTbWTbWQbZubWTbWTbWQbZvbSTbZwcpibSTbVzbZybZzbZzbZzbZAbZzbZzbZBbZCbZDbZEbZEbxcbZFbZGbCibYwbMgbZHbZIbZIbZJbZKbZJbZIbZLbZMbKGbxcaafaafaafaafaafaafaafaafbJeaafbJfaafbKKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanTanTanTanTanTanTanTanTanTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacVFcWXcVFcWYcWocXacWZcWZcWZcXbcWocVFcWocXacXbcWRcWocXacXacWocVFcXecVYcWocXfcVGaaaanTaaaaaabYCbZNbYCaaaaafaaaaaaaaabTsbYEbTsbTsbTsbTsbZObTsbTsbZPbZQbZPbTsbTsbTsbTsbTsbZRbZSbTsbZTbZUbZVbZWbZXbZYbZZcaabZZcabcaccadcaecafcagcahcaicajcakcalcamcancaocapbZbcaqcarcasbZkcatcaucavcawcaxcaycazcaAcaBbZocaCcaDcaEbZocribSScaGcaHcaIcaJcaKcaLcaMcaNcaOcaLcaMcaNcaNcaLcaPcaQcaRcaScaTcaUbVAapbcaVcaWbZEbZEbZEbZEcaXcaYcaZcbabxccbbcbccbdcbecbfcbgcbhcbicbjcbkcblcVJcbncbobKGbxcbxcbxcaMraMqaMraMqaMraaabzjaaaaafaaabzjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacVIcVYcXgcVYcWocXicXhcXkcXjcXlcVYcXmcWocXocXncXqcXpcXscXrcVYcXtcWocWocXvcXucVGaaaaaiaafaafbYCbYDbYCaafaafaafaafaafbTscbpcbqcbrbTscbscbtcbubTscbvcbwcbxcbycbzbXEcbAbTscbBcbCcbDcbEcbFcbGcbHcbIcbJcbKcbLcbMcbNcbOcbPbXLcbQcbRcbScbTcbUcbVcbWcbXcbYcbZccaccbcaqcarcascccccdcceccfccgcchccicciccjccjcckcclccmccnbZocrJbSSccpccqccrbUeccscctccuccvccwccvccxccvccydbEcczbSTccAccBccCccDbZBalqalqalqbZEccEccFccGccHccIccJccKccLccMcURccNccOccPccQccRccSccPccPbKGccQccTccUccVccWccXccWccYccYccYccYccZaafaaiaaaaafaaabzjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacVFcXwcVFcXxcWocXbcXycXycXycXacWocVFcWocXacXbcWocVYcXacXbcWocVFcXBcWRcXDcXCcVGaaaaafaaaaaaaaacdaaaaaaaaafaaaaafaaabTsbTsbTsbYEbTscdbcdccddcdecdfcdgcdhbXEbXEcbucdibTscdjcdkbTscdlcdmcdncdobXKcdpcdqcdrcdscdtcducdvcdwcdwcdxcdwcdycdzcdAcdBcdCccacdDcdEcdFcdGcdHcdIcccccdccdccdcdJcdKcdLcdMcdNcdOcdPcdQcdRcdSbZocdTbSSbSSbSSbSSbSTbSTcdUbSTbSTbSTbSTbSTbSTbSTbSTbSTbSTbSTbSTbSTcdVcdWalqcdXcdYbZEcdZceacebceccedceecefbxcbxccVycegbzacehbzacegbzacehcehceibzaceibxcbxcbxcbxcbxcbBbbgoccYaVkbBbaaabzjaaaaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacVFcVGcVFcXFcWocWocWocWocWocWocWocVFcWocWocXGcWocWocWocWocWocVFcXacXHcXKcXJcVGaaaaafaafaafaaacejaaaaaaaafaaaackackcekcelbTscemcenceobTsbTsbTscepceqbXEcercesbTsbTsbTscseceubTscevcevcevcevcevcevcevcewcdscexceycezcdwceAceBczEceDceEceFceGceHceIceJceKbZacaqceLcasbZjceMceNceOcePceQceRceSceTceUbZoceVceWceXbZoceYceZceZceZcfaceZcfbcfccfdceZceZcsgceZceZceZcsGcffcfgcfhcfibXacfjcfkcflcfmbPlbZEcfnceacfocfpcfqcfrcfscftaafcVzcfuaafcfvaafcfuaafcfwcfxcfyaafcfyaafaafaafaafaafaafaTQccYaNCaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacWfcVFcVFcVFcXMcXLcVFcVFcXNcVFcVFcVFcVFcVFcXOcVFcVFcXPcXQcVFcVFcVFcVGcVGcVFaaaaafaaaaaiaafcfzaafaafaafaaaaafaafbTsbUUcfAcfBbTsbTsbTscfCbTsbTsbTsbTsbTsbTsbTscdlcfDcdjcfEcfFcevcfGcfHcfIcfJcfKcevcfLcfMcfNcfOcfPcdwcfQcfRcfScfTcfUcfVcfWcfXcfYcfZcfXcgacgbceLcgccgdcgdcgdcgdcgdcgecgfcggcghcgibZocgjcgkcglbZocgmcgncgocgocgocgocgpcgocgqcgqcgqcgqcgqcgqcgqcgqcgqcgrbTscgsapcapcapcalqapcavrbZEcgtcgucgvcfqcgwcgxczHcgzaafbARcgAbzacgAbARcgAbzacgAbARcgBbzacgCbARaafaaaaafaaaaaacgDccYcgEaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacWfcWecVFcXScXTcVYcXUcVFcWocXVcXXcXWcVFcXYcWocXacVFcYacVYcYbcJIcVFaaaaaaaaaaaaaafaaaanTaaacEDaaaaafaaaaaaaafaaabTscgGbTscbpcbqcdccsTcdccdccgIcgJctIcgJctKcgJcgJcgJcgLcgMcgNcgOcgPcgQcgRcgScgTcevbXKcgUcgVcgWbXKcdwcgXcgYcdwcgZchacgachbchcchdchechfcfXchgceLchhcgechichjchkchlchkchmcgdcAMcDhchpchqchpbZobZochrbTscgochschtchuchvcwkcgqchxchxchxchychxchAchxcgqcgrbTschBapbchCchDalqchEchFbZEchGchHchIchJchKchLcLCcgzaafbARchNchOchPbARchQchRchSbARchTchUchVbARaafaaaaafaafaafchWccYchXaafaafaaiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacWfcWecVFcYdcVYcWocYfcYecYgcVYcYicYhcVFcXacYlcXacVFcYmcYocYncYpcVGaaaaaaaaaaaaaafaafanTaaachYaaaaafaaaaaaaafaaabTsbTsbTsbTsbTsbTsbTsbTsbTschZciaciacibcicciccicciccidcicciccicciecifcigcihciicijcikcilcimcinciocipciqcirciscitciucivciwcixciycizciAcgachgceLchhcgdciBciCciDciEciFciGcgdciHciIciJciKcgocdmciLciMbZScgociNciOciPciQciRcgqchxciSciTciUcLUciVciWcgqciXbTsbTsbTsbTsbTsalqalqalqbZEbZEbZEciYcgzciZcjacjbcgzaafbARcjccjdcjebARcjfcjgcjhbARcjicjjcjkbARaafaafaafaaabxccjlcjmcjncjoaaabzjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacYqcVFcVFcYrcYrcYscYrcVFcYucYtcYwcYvcVFcYxcYzcYycVFcYAcYCcYBcYDcVFaaaaaaaaaaaaaafaaaaaiaaacejaafaafaafaafaafaaabTscjpcjqcwlcjscyScxQcjvbTschZciacjwcjxcjycjzcjAciacjBcjCcjDciacjEcjFcjGcjHcjIcjJcjKcjLcjMcjNcjOcjPcjOcjNcjOcjQcjRcfYcjScjTcjUcjVcjWcfXchgceLchhcgecjXcjYcjZckackbckcckdckeckfckgckhcgockickjckkcklcgockmcknckockpckqcgqchxchxckrchxchxckscktcgqcgrbTsckuckvbTsckwckxckyckzckAckBalqckCcgzckDckEckFcgzaafbARcjcckGcjcbARcjfckHcjfbARckIckJckIbARaafaaaaafaafcjockKbCCckLckMaafaaiaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacVFcVFcVFcVGcVGcVFcVFcVFcVGcVGcVFcVFcVFcVGcVFcVFcVFcVGcVGcVFcVFaaaaaaaaaaaaaafaaaanTaaacejaafaaaaaaaaaaafaaackNckOckPckQckRcjtckSczMbTschZciackUckVckWckXckYckZclaclbclcciacldcleclfclgclhclicljclkcllclmclncloclocloclpclqclrclscltcjTcluclvclwcgaclxceLclycgdclzclAclBclCclDclEcgdclFclGclHclIcgoclJclKclLcARcgoclNclOclPclQclRcgqcgqclSclTclUclUcgqclVcgqclWclXclYclZbTscmaapcapcapcbXBcmbbTscmccgzciZcmdcjbcgzaafbARbARbARbARbARbARbARbARbARbARbARbARbARaafaafaafaaackMbCCcmebCCcmfaaabzjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaaiaafcejaafaaaaaaaaaaafaaackNcmgckSckPcmhcjtcmibTsbTscBrciacmkcmlcmkcmmcmkciacmkcmncmkciacevcmocmpcevcevcevcmrcmscmtcmucmucmvcmwcmxcmucmucmycgacmzcmAcmBcmCcgacgacmDceLcmEcgdcgdcmFcmGcmHcmIcmJcgddbHdbIbZnbZncgocmLcgocmMcgocgobZncmNcmObZnbZncmPcmQcmRcmScmTcmUcmVcmWcgqcIkbTscmYcmZbTscnabXBcbubWacnbcncbTscmccgzcndcnecnfcngaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaafaafcmfbCCbCCbCCckMaafbzjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaafaaaaaaanTaaacfzaaaaaaaaaaaaaafaaackNcnhckPcnicnjcjtcnkcnlbXFchZciacnmcnncnocnpcnqciacnrcnscntciacnucnvcnwcnxcnycnzcnAcalcnBcmucnCcnDcnEcnFcnGcmuctqcgacnHcnIcnJcnKcnLcnMcnNcnOcnPcnQcnRcnScnTcnUcnVcnWcnXcnYcnZcoacobcocccdcodcoecofccdcogcohcoiccdcojcmPcokcolcomconcoocopcoqcgqcgrbTsbTscorbTscoscotbXEbXEcoucovbTscmccgzcgzcNwcgzcgzaaaaaaaaaaaaaaaaafaaaaaaaaaaafaaaaaaaaaaaaaafaaaaafaaacmfckMcjobxccjoaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaaaaaaaafaaaaaaaaiaaacEDaafaaaaaaaaaaafaaackNckNckPcjtcjtckPckPcoxbXFchZciacoycozcoAcoBcoCciacoDcoEcoFcoGcoHcoIcoJcoKcoLcoMcoNcalcamcmvcoOcoPcoQcoRcoScmucbucgacoTcoUcoVcoWcoXcoYcoZceLcpacpbcpccpdcpecpfcpgcphcImcpjcpkcplcpmcpncpocppcpqcprcpscprcptcpucpvcpwcpxcpycpzcpAcpBcpCcpDcpEcpFcpGbTscpHcpIcpJbUWcnbbXEbXEcpKcpLckNcpMcpNcgzcOacgzcpPaafaaibzibzibzibzibzibziaaibzibzjbzibJfaafbzjaaaaafaaaaaaaafaaaaafaaaaaaaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaafaafaaaaaaanTaaacdaaaaaaaaaaaaaaafaaackNcpQckPdbqckPckPcmibTsbTscpScpTcpUcozcUHcoBcpWcpXcpYcpZcqacqbcqccqdcqecqfcqgcqhcqicqjcdzcqkcqlcqmcqncqocqncqpcqqcgacqrcqscqtcqucnLcoYcoZceLcpacqvcqwcqxcqycqzcqAcqBcnXcqCcqDcqEcqFcqGcqHcqIcqJcciccicqKcqLcqMcqNcqOcqPcqQcqRcqScqTcqUcqVcqWcgqcgrbTscqXcqYcqZclYcracoucgsbXEcrbbTscrccrdcrecrfcreackaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaafaaabzjaafaafaaibKKbKKbKKaaiaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaafaaaaaaanTaaacejaaaaaaaafaafaafaaackNcrgcjtckQcjtcrhcbucIobTschZciacrjcrkcrlcrmcrnciacrocrpcrqciacrrcrscrtcrucrvcnzcrwcalcrxcmucrycrzcrAcrBcrCcmucrDcgacgacrEcgacgacgacgacrFcrGcrHcgdcgdcgdcgdcgdcrIcJmcgdcgocgocrKcrLcrMcrNcrOcrPcrQcrQcrQcrQcrRcrScrTcrRcgqcgqcgqcrUcrVcrWcrXcgqcgrbTscpHcrYbTscrZcsacsbcsccsccsdbTsaafackaaaaaaaaaackaafaafaaibzjbzjbzjaaibzjbzjbzjaaibzjbKKbzjbzjaaaaaaaafaaaaaaaafaaaaafaafaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanTanTaafaaianTaaaaaianTanTaafaafaafcejaafaafaafaaaaafaafckNcjtcrhcjtcKdcnbcsfcKtcshcsiciacsjcskcslcsmcsnciacsocspcsqciacsrcsscsscsscsscsscstcsucsvcswcsxcsycszcsAcsBcmucsCcsDcsEcsFcKJcsHcbCcsIcsJcsKcsLcsMcsNcLhcsOcsPcsQcsRcsScLBcsUcsVcsWcsXcsYcsZcuNctbctcctdctecrRctfctgcthctictjcgqcgqcgqcgqcgqcgqctkbTsbTsbTsbTsbTsckNbTsckNbTsckNbTsctlackackackackackaaaaaaaaaaafaaaaafaaaaaaaafaaaaafaaaaafaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaactmaaaaaaaaaaafaaaaaaaaaaafaaaaaaaafaaacfzaaaaaaaafaaaaafaaackNckNckNckNbTsctnctobTsbTschZciaciaciaciaciaciaciaciactpciaciactqbTsctrctscttctucqictvctwcmuctxctyctzctActActActActActActActBctCctBctDctEctFctGctHcLDctJcMcbTsctLctLctMctLctLctNctOctPcsYctQctRctSctTctUctVcrRctWctXctYctZcuaclKbZScfFbTscubcgMcucbTscudbZSbTsaaaaafaaaaaaaaaaaaaafaaaaafaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanTaaacuecuecuecuecueaafaafaafcuecuecuecEDcueaaaanTaaaaafaaaaaaaaaaaaaafbTsbTsbTsbTscufchZceucugcuhceucuicdlceucfDctqbTscujbXEbTscukculcumcuncuocupcuqcmucmucmucmuctAcurcuscutcuucuvctAcuwcuxcuycuzcuAcarcgcbTscuBcuCcuDcuEctLcuFcuGcuHctLcuIcuJcuKcuLcuMcuNcuOcuPcuQcuRcrRcuScuTcuUcuVcuWclKcuXcuYcuZcvaceucvbcuZcvccpKckNaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiaafcvdcvecvecvecvecvfcejcvgcvhcvhcvhcvhcviaafaafaafaafaafaafaafaafaafackbTscvjbTscvkcvlceZceZcvmceucwjcMmceZcffceZcMnbXEcvnbTscvocvpcvpcvpcvqcvrcvscvtcvucvvcvwctAcvxcvycvzcvAcvBctAcvCcvDcvEcvFcuAcarcvGcvHcvIcvHcvHcvHctLcvJcvKcuGcvLcvMcvNcvOcvPcvQcvRcvScvScvTcvUcrRcvVcuTcvWcvXcvYclKcvZcwabTscwbbXEcwcbTsbXEcwdbTsaaaaafaaaaaaaaaaaaaafaafaaaaaaaaaaaaaaaaaaaaaaaaaafaacaaaaaaaaaaaaaaaaaaaaaaaaaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanTaafcwecwecwecwecweaaacejaaacwecwecwecwecweaaaanTaaaaaaaaaaaaaafaafcwfcwgcfAcwhcwicwhcbxcbubXEcDKceZceZcMocJlceuceucwmbXEcwnbTscwocwpcwqcwrcwscwtcwucvtcwvcwwcwxctAcwycwzcwAcwBcwCctAcwDcwEctBctBcwFcarchhcvHcwGcwHcwIcwJctLcwKcuGcwLctLcwMcwNcwOcrQcwPcwQcwRcwScwTcwUcrRcwVcwWcwXcwYcvXclKbTsbTsbTscIkbTscwZbTsbTsbTsbTsaafaafaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaafaafaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiaaaaafaaaaafaafaafaaacxaaaaaafaaaaafaaaaafaaaanTaaaaaaaaaaafaafaaaackackbTscxbbTsbXEceubXEbXEcxcbTsbTsbTsbTsbTscMmcNfbXEcxdbTscxecxfcxgcxhcxicxjcxkcxlcxmcxncxocxpcxqcxrcxscxtcxucxvcxwcxxcxyctBcxzcxAcxBcxCcxDcxEcxFcxGctLcxHcxHcxIctLcawcwNcxJcrQcrQcrQcrQcrQcrQcrQcrRcrRcrRcxKcrRcrRclKcubcxLcgMcxMbTsbXEcxNcxOcxPcxOackackaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanTaaacuecuecuecuecueaafcejaafcuecuecuecuecueaafanTaaaaaaaaaaaiaaaaaaaafackbTsbTsbTsbZTbTscdmcNgcxRbTscxScxTcxSbTscwmceucxUcxUcxUcxUcxUcxUcxUcxVcxWcxXcxYcxZcyacybcyccydcyecyfcygcyhcyicyjcykcylcymcyncarcyocypcyqcyrcyrcysctLcytcyucyuctLcyvcywcyxcyycyzcyAcyBcyCcyDcyEcyFcyGcyHcyIcyJcyKbZTcyLbXEcdmbTsbTscyMbTsbTsbTsbTsaafaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanTaafcvdcvecvecvecvecvfcejcvgcvhcvhcvhcvhcviaafaqBaafaafaafanTaafaafaafaafaafaaabTsbTsbTsbTsbTsbTsbTsbTsbTsbTsbTscwmbZTcxUcyNcyOcyPcyQcyRcxUcNhcyTcyUcvtcyVcyWcyXctAcyYcyZcyZcyZczactAczbczcczdczeczfczgczhcvHczicwHczjczkctLczlczmczncvLczoczpczqczrczscztczuczvczwczxczyczzczxczAczBcyKbTsczCbTsczDczDcQvczFczGcQBczIaafaafaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafczJczKczJaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanTaafcwecwecwecwecweaaaczLaafcwecwecwecwecweaaaanTaaaaaaaaaaafaaaaaaaaaaaaaafaaaaaaaaaaafaafaaaaaaaaaaafaaaaaabTscDKcNmczNczOczPczQczRczSczTczUczVczWcvtczXczYczZctAcAacAbcAccAdcAectAcAfcAgcAgctBcAhcAicAjcAkcAlcAmcAncAoctLcApcAqcArcAscAtcAucAvcAwcAxcAycAzcAAcAAcABcACcADcAEcAFcAGcAHcAIcAJcAKcALcQCcANcANcANcAOcAPaafaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafczKczJcAQczJczKaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaqBaaaaafaaaaafaaaaafaaacEDaaaaafaaaaafaafaafaafaqBaaaaaaaaaaafaaaaaaaaaaaaaafaaaaaaaaaaaaaafaaaaaaaaaaafaaaaaabTsceucNUcxUcAScATcAUcAVcAWcAXcAYcAZcBacvtcvtcBbcvtctActActActActActActAcBcctBctBcBdcBectFctGcBfcBgcBgcBhcBictLcBjcBkcBlcBmcBncBocBpcBqcFrcBscBtcBucBvcBwcBxcBycBzcBAcBBcBCcBDcBEcBFcBGcBHcBIcBJcBKcBLcAPaafaafaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafcBMczKcBNcBOcBPczKcBMaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanTaaacuecuecuecuecueaafcBQaafcuecuecuecuecueaafanTaaaaaaaaaaaiaafcBRcBRcBRcBScBRcBRcBRaaaaafaaaaaaaaaaafaaaaaabTscBTcwmcxUcBUcBVcNVcBWcBXcxUcBYcBZcCacxUcCbcCccCdcCecCfcCgcCfdbrcCfcCicCjcCkcCecClchgcarcCmcvHcCncCocCpcCncCqcCqcCqcCqcCqcCrcrLcCscyycCtcCtcCucCvcCwcCxcCycCzcCAcCBcCCcyKcCDcCEcCFcyycCGcAPcAPczDcAPczDanSaafaaaaaaaafaaaaaaaafaafaafaaaaaaaaaaaaaaaaafaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaafaafczKczKcCHcCIcCIcCIcCJczKczKaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanTaafcvdcvecvecvecvecvfcejcvgcvhcvhcvhcvhcviaafanTaaaaafaafanTaaacBRcCKcCLcCKcCMcCKcBRcBRcBScBRcBScBRcBRaafaafbTscfFcwmcxUcxUcxUcxUcxUcxUcxUcCNcCOcCPcCQcCRcCScCTcCecCUcCVcCfcCjcCfcCWcCXcCYcCecCZchgcarcpacqvcDacDbcDccDdcDecDfcDgcQDcDicDjcwNctPcyKcyKcyKcyKcyKcyKcDkcDlcDmcDncDocDpcyKbTsczCbTsczDcDqcDrcDscDtcDuanSanSaafaafaafaafaafaafaafaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafcDvcDwcDvcCIcDxcCIcDycDzczJaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanTaafcwecwecwecwecweaaaczLaaacwecwecwecwecweaaaaqBaafaafaaaanTaafcBRcDAcDBcDCcDDcDAcDEcDFcDGcDHcDIcDJcBRaaaaaabTsbTscDKcDLcDLcDMcDLcDNcDOcDPcDQcDRcDScDTcDUcDVcDWcDXcDYcDZcDYcDYcEacEbcEccEdcEecEfcEgczgcEhcEicEjcEkcElcEmcEmcEmcEncEocDicawcwNcEpcyKcEqcErcEscEtcEucEvcEucEwcExcEycyKclKcEzbVVbZSczDczDczDczDczDcEAblxanSaafaaaaaaaaaaaaaaaaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaafaafczKczKcEBcCIcCIcCIcECczKczKaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanTaaaaaaaafaafaafaaaaaacEDaafaaaaaaaafaafaaaaaaanTaaaaaaaaaaaiaaacBRcEEcEFcEGcEHcEEcEEcEIcEJcEKcELcEMcBRaaaaaaaaaclKclKclKclKclKbTscENcxUcxUcEOcEPcEQcxUcERcEScETcCecEUcCjcCfcCjcCfcEVcEWcEXcEYcEZcFacFbcFccCqcCqcFdcFecFfcFgcFhcFicFjcDicFkcFlcFmcAPcEqcErcFncFncFocFpcFqcFrcDncFscyKcdlcFtbYEbXEcFubTsaafaafaafaafaafaafanTanTanTaqBanTanTanTaqBanTanTanTanTanTanTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafcBMczKcFvcFwcFxczKcBMaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaqBaaaaaaaaaaaaaaaaaaaaacEDaaaaaaaaaaaaaafaaaaaaaqBaaaaaaaaaanTaafcBRcFycFzcFAcFBcFCcFDcFEcFFcFGcFHcFIcFJcFKcFKcFKcFJcFLcFMcFNcBRcFOcFPcxUcFQcFRcFScFTbTsbTsbTsbTscCecCfcCjcCfcFUcCfcFVcFWcFXcCecFYcFZcarchhcCqcGacGbcGccFgcFgcGdcGecGfcDicGgcGhcGicyKcEqcErcFncGjcEucGkcEucGlcGmcGncyKceuceucHjceuceubTsaafaaaaaaaaaaaaaafaaaaaaaaaaafaafaaaaaaaafaaaaafaafaafaaaanTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafczKczJcGpczJczKaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanTaaianTanTanTaaaaaaaaacEDaaaaaaaaaanTanTanTaqBanTaafaafaaaanTaaacBScGqcGrcGscGtcGucGvcGwcGxcGycGzcGAcGBcGCcGDcGEcGFcGGcGscGHcGIcGJcGKcGLcGJcGMcGNcGOcGPcGQcGRcGScCecCecCecCecCecCecCecGTcCecCebTscGUcarchhcCqcGVcGbcFgcFhcFgcGWcGXcGYcGZcHacHbcHccHdcHecHecHecHecHecHfcHecHgcHhcHicyKcubcgMcIlcIncOAbTsbTsaafaafaaaaaaaqBaafdbJdbKdbLaafdbJdbKdbLaaadbJdbKdbLaaaanTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafczJczKczJaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaafaaaaaaaaaanTaafcHkaafanTaaaaaaaafaaaaaaaafaaaaafaafaafaaacBRcHlcHmcHncHocHpcHqcHrcHscHtcHucHvcBRcBScBScBScBRcHwcHxcHycBRcHzcHAcxUcHBcHCcHDcHEbTscHFcHGcHHbTscHIcgJcHJctKctIcHKcHLcxLcgNcHMcHNcHOcvGcCqcHPcHQcHRcHRcHRcHScHTcHUcHVcHWcHXcHYcHZcIacIbcIccIdcIecIfcIgcIhcIicIjcPecPwceubXEcPxcIncGobTsbTsbTsackaaaanTaafdbJdbMdbLaafdbJdbMdbLaafdbJdbMdbLaafanTaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaanTaaaaafaaaanTaaaaaaaafaafaafaafaaaaaaaaaaafaafcBRcIpcIqcEEcIrcIpcIscItcIucIvcIwcIxcBRcIyaaaaaaclKclKclKclKclKbTscIzcxUcxUcxUcxUcxUbTscIAcIBcICbTscIDbTsbTsbTsbTsbTsbTsbTsbTsctHcIEcIFcIGcIHcIIcIJcIKcILcIMcINcFhcIOcIPcIQcIRcIScITcIUcIVcIWcIXcIYcIZcIgcfDcJabTsbTsbTsbTsbTscJbcJccJdcfAcJecfAcJfaafanTaaadbJdbMdbLaafdbJdbMdbLaafdbJdbMdbLaafanTaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanTanTanTanTanTaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaacBRcJgcJhcEEcJhcJicJjcEEcEEcJkcEEcEEcBRaafaafaafbTscdmbZTcJlcPycJncJocgMcJpcJqcJrcJsbTscJtcJucJvcJwcJxbTscJycJzcJAbTscJBcJCcJDbTscJEcJFcJGcCqcJHcYccJJcJKcJLcJMcFhcJNcCqcJOcJPcJQcITcJRcJScJTcJUcJVcJWcIgdblcJXbTscJYcJZcKabTscKbcKccPzbTsbTsbTsackaaaanTaaadbJdbMdbLaaadbJdbMdbLaafdbJdbMdbLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiaaacBRcKecKfcEEcKgcKhcJjcKicKjcKkcKlcKmcBRaaaaafaaabTscKncKocKpcKqcKrcKscPWcKscKscKucJXbTsbTsbTsbTsbTscIDbTscKvcKwcKxcKycKzcKAcKBcKCcKDcKEcKFcCqcCqcCqcCqcCqcKGcCqcKHclKclKcKIcPXcgocIgcIgcIgcIgcIgcIgcIgcIgceucKKcKLcKMcKNcKOcKPcKRcKQcKPcKPaaaaaaaaaaaaaafaaadbJdbMdbLaaadbJdbMdbLaaadbJdbMdbLaaaaafanTaqBanTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanTaaacBRcKScKTcEEcKTcKScKUcKVcKWcKXcKYcKZcBSaaaaaacLabTscLbbTsbTsbTscLcbTsbTsbTsbTscLdcLecLfcLgcPYcLfcLicLjcLkcLlcLmcLncLocLpcLqcLrcLrcLscLtcLucLvcLwcLxcgMcgMcLycgMcLzcgNcLAcQrcQtcQscLAcLwcgMcQucLFcPecgMcgMcgMcLGbTscLHcLIcLJcKPcLKcLLcLMdbNdbNdbNaafaafaafaaaaafdbOaafaaaaafdbOaafaaaaafdbOaafaaaaaaaafaaaanTaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafcBRcBRcBScBRcBScBRcLNcLOcLPcLQcLRcLScBRaafaafcLacLTcRTcLacLVcLWcLXcLYcLZcMabTsbTsbTsbTscMbbTsbTsbTsbTsbTscQQcLmcMdcLmcMecMfcMgcLmcMhcMicMjbTsbTsbTsbTsbTsbTscwccMkcMlbTscQRcQZcQSbTscdmbZTcMpbTsbTsbTsbTsbTsbTsbTsbTsbTscorcKPcMqcMrcMsdbPdbQdbPdbRdbRdbRcSzcROcROdbScROcROcROcROcROcROcROdbTdbRdbRdbUaaaanTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiaaaaafaafaafcMtcMucMvcMwcMxcMycMzcMAcMBcBRaaaaaacLacMCcMDcLacMEcMFcMGcMHcLacLacMIcMJcMKcMLcMMcMNcMOcMPcMIcMRcMScLmcMdcLmcMTcMUcMVcLmcMWcMXcMYcMZcNacNbcNccNdbTscNebTsbTsbTscRacRccRbbTsbTsbTsckNbTscNicNjcNkbTscNlcRdcNnbTscmZcKPcNocNpcNqdbNdbNdbNaaaaaaaqBaaaaaacSCaafaaaaaacSCaafaaaaaacSCaafaaaaaaaafaaaanTaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanTaaaaafaaaaaacNraafcNscBRcBRcBRcBRcBRcBRcBRaaaaaacLacNtcNucLacNvcSYcNxcNycLacNzcNAcNBcNCcNDcNEcNFcNGcNGcNHcNIcNJcNKcNLcNMcMTcNNcMVcLmcMhcNOcMTcNPcNQcLmcNRcNSbTscNTbTsaafaaacRecRfcReaaaaaaaafaaabTscgsbXEbXEcNWcdgcNXcdgcNYcNZcKPcKPcKPcKPcKPaaaaafaaaaafanTaaadbJdbVdbLaafdbJdbVdbLaaadbJdbVdbLaafaaaaqBanTanTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiaafaafaafaaaaaaaaaaafaafaafaaaaaaaaaaafaaaaaaaaacLacTfcObcOccOdcOecOfcOgcLacOhcLacOicOjcOkcOlcOmcNCcNCcOncOocOpcOqcOqcOrcMTcOscMVcLmcMhcOtcOucOvcOwcOxcOycOzbTscNebTsaafaafcRecYTcReaafaafaafaaabTscOBbXEbXEcOCcODbVWcOEbTsckNclKaaaaafaaaaafaaaaafaaaaaaaqBaafdbJdbVdbLaaadbJdbVdbLaafdbJdbVdbLaaaaaaaacaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiaaaaaaaaaaaaaaaaafaaaaaaaaaaafaaaaaaaaacLacNtcOFcLacOGcOHcOIcOJcOKcOLcLacOMcONcOOcOPcOQcORcOScMIcMRcMVcLmcOTcOUcOVcOWcOXcOqcOYcOZcPacPbcPbcPccPdcPbbTsackaafaafaaacRecRgcReaaaaaaaafaafbTscPfcPgcPhbTscPicPjcPhbTsaaaaafaaaaaaaacaafaaaaafaaaaaaanTaaadbJdbVdbLaaadbJdbVdbLaafdbJdbVdbLaafaafaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaiaaaaaaaafaaiaagaaiaafaaiaaiaaiaafcMIcMIcMIcLacLacLacLacPkcPlcLacLacLacPmcPncPocOPcPpcPqcPrcMIcMIcMVcLmcLmcLmcMTcMUcMVcLmcPscPtcPucPvaafaafaaaaaaaaaackaaaaafaaacRecYTcReaaaaaaaaaaafbTsbTsbTsbTsbTsbTsbTsbTsbTsaaaaafaaaaaaaaaaafaafaafaafaafanTaaadbJdbVdbLaafdbJdbVdbLaafdbJdbVdbLaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaacPAcPBcPCcMIcPDcPEcPFcPGcPHcPIcMIcPJcPKcPLcPMcOPcOQcORcOScPNcMIcPOcLmcPPcPQcPRcPScPTcPQcPUcLmcPVcPbaaaaafaaaaaaaaaaafaaaaafaaacRecYTcReaaaaafaaaaafaafaafaaaaaaaafaaaaaaaafaaaaaaaafaafaaaaaaaafaaaaaaaaaaaaanTaafdbJdbWdbLaaadbJdbWdbLaafdbJdbWdbLaaaanTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaacPAcPZcPCcQacQbcQbcQbcQccQdcQecQfcQgcQhcQgcQicQbcQjcQicQkcQlcMIcQmcQncQocQncQncQncQncQncQpcQncQqcPvaaaaafaafaaaaaaaafaaaaafcRucRicRvcRicRwcRicRicRecRecRecRicRicRicRicRicRiaaaaaaaafaaaaaaaafaafaaaaaaaaaaafaafaaaaaaaafaaaaaaaafaafaaaaaaaafaaaaaaaafanTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaacPAcPZcQwcPHcQxcQycRpcQzcQAcTxcTocTycQEcQFcQFcQGcQFcQFcQHcQIcMIcQJcQKcQLcQKcQKcQMcQKcQKcQNcQOcQPcPbaafaafaaaaaaaafaafaaaaaacRidbXdbYdbZcRicRhdcacRScRScRSdcbdccdcddcedcfcReaafaaaaafaafaafaafaaaaaaaaaaaaaaaaafaqBanTanTanTaqBanTanTanTanTanTanTaqBanTaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaafaaacPAcQTcPCcPHcQxcQxcQUcMIcMIcMIcMIcRncQlcQVcOPcQWcOPcQVcQXcZccMIcQYcPvcQYcPvcPvcPvcPvcPvcQYcPvcQYcPvaaaaafaaaaaaaafaaaaaaaaacRidcgdchdcidcjdckdcldcmdcndcocZadcpdcqcStdcrcReaafaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafcMIcMIcMIcRjcQbcQbcQbcRlcRmcMIdbFcOScRocRpcRpcRqcRpcRpcRrcZdcMIcRscPvcQKcPvaaaaaaaaacPvcQKcPvcRtcPvaaaaafaafaafaafaafaafaafcRidcsdctdcucRxcRzcRydcvdcwdcxcStcStdcycStdcrcReaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaacPAcREcRFcRGcRHcRIcRqcRJcRKcMIcMIcMIcMIcRLcRLcRLcRLcRLcMIcMIcMIcQYcPvcQYcPvaafaafaafcPvcQYcPvcQYcPvaafaafaaaaaaaaaaaaaaaaafcRicRidczcRicRicRBcRAcRCcRkdcAdcBcStcStdcCdcDcRiaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafcMIcPAcMIcMIcPAcPAcPAcMIcRPcMIaaaaaacZecYFcYFcYFcYFcZecZecYFcZecYHcYFcYHcZgcYFcYFcYFcZecYJcYFcYHcZecZecZeaaaaaaaaaaaaaaaaaaaafdcEdcFcRecRDcRNcRMdcGdcHdcIdcJdcKdcLdcMdcNcRiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaaaaaaaafaaaaaaaaaaaaaaaaafaaacZecZedajdafdaacZTcZecZKcYOcZicYOcZicYOcZicZicZicZicYScYOcZicYOcYOcYNcZeaaaaaaaaaaaaaaaaaaaaacRicRicRicSdcSdcRacSecSfcRRcRacSdcSdcSdcSdcRiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafcZjcZlcZedaicYOcZmcZScZncYOcYOcYOcYOcYOcYOcYOcYOcYOcYOcYOcYOcYOcYOcYOcYMcYFaaaaaaaaaaaaaafaafaafcRicShcSgcSgcRUcSjcSicSlcRVcSmcRWcSncSncSncRiaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacZjcZlcZedakdagcYOcYOcZecYOcYOcZocZocZocZocZocYOcZocZocZocZocZocYOcYOcYNcZeaaaaaaaaaaaaaaaaaaaafcRicSpcSocSncSqcSscSrcSucRXcSwcSvcSncSocSxcRiaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacZjcZlcZedalcZZcYOcYOcZQcYOcYOcYFdatcYFdaxcYFcYOcYFcYYcYFcYZcYFcYOcYOcYOcYFaaaaaaaaaaaaaaaaaaaaacRicSycSncSncRZcSBcSAcSacSbcSEcSccSgcSgcSFcRiaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacZecZecZedancZmcYOcYOcZecYOcYOcZicZicZicZicZicYOcZicZicZicZicZicYOcYOcZucZeaaaaaaaaaaaaaaaaaaaaacRicSdcSdcSdcSdcSIcSGcSJdcOcSIcSdcSdcSdcSdcRiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacZjcZlcZedamcYOdagcYOcZncYOcYOcYOcYOcYOcYOcYOcYOcYOcYOcYOcYOcYOcYOcYOcYOcYFaaaaaaaaaaaaaaaaaaaafcRicShcSgcSgdcPcSjcSKcSJdcQcSMdcRcSncSncSycRiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacZjcZlcZedaocZycZAcYOcZecZKcYOcZocZocZkcZocZocYOcZocZocZocZocZocYOcYOcYRcZeaaaaaaaaaaaaaaaaaaaafcRidbocSocSncSNcSOcSrcUMcRXcSRcSQcSncSodbpcRiaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacZecZecZedaxcZecZecZVcZecZecZIcYFcZecZecZecYFcZpcYFcZrcZecYFdaxcZCcZCcZgcZeaaaaaaaaaaaaaaaaafaafcRicSycSncSncSDcSScSAcUNcSbcSEdcScSgcSgcSFcRiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacZjcZlcZecZLcYVdaecZGcZecZDcZGcZFcZFcZecZxcZMcYOcZNcZecZOcZPcZUcZWcZWcZXcZeaaaaaaaaaaaaaaaaaaaaacRicSdcSdcSdcSdcSIcSWcSJdcTcSIcSdcSdcSdcSdcRiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacZjcZlcZecZLcYVcYIcZecZecZDcZGcZGcZYdabcZwcYOcYOcZNcYFdaccYXcYVcYVcYVcZWcYFaaaaaaaaaaaaaaaaaaaafcRicShcSgcSgdcUcSjcSKcSJdcQdcVdcWcSncSncSncRiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadbBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacZjcZlcZecZLcYVcYVdadcZncZDcZGcZGcZYcZncZzcYOcYOcYOcZpdahcYVcYVcYXcYVcZWcYFaaaaaaaaaaaaaaaaaaaafcRidbscSocSncTccTbcSrcSJcRXcTecTgcSncSodbtcRiaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacZecZedarcYVcYVdadcZedaqcZJcZHcZEcZedasdaucZtcZscZrdavcZBcZbcYWdawcYUcZeaaaaaaaaaaaaaaaaaaaafcRicSncSncSndcXcSTdcYcSVdcZddaddbcSgcSgcSFcRiaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacZecYFdaedaecYFcZecZecYFcYFcZecZecZecYFcYFcZecZecZecZecYFcYFcZecZecZeaaaaaaaaaaaaaaaaaaaaacRicRicRicRicSdcSdddccSJdddcSdcSdcRicRicRicRiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacRiddecTAcRiddfcSLcSkcSXcTacSZddgcRiddhddicRiaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafcRiddjcTncTqddkcVaddlddmddnddnddoddpddqddrcRiaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadbCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafcRicTpcTCcRicTjcTrcTkcTtcTscTzddscRiddtcTBcRiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafcRicRicTCcRicTDcRYcTmdaAdduddvcTDcRiddtcRicRiaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafcRicTCcRicRidaCdaBcSndaDdaCcRicRiddtcRiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaacRicTCcRicSncSndaBcSncSncSndaEcRiddtcRiaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacRicTCcRidaFcSndaGcSodaHcSndaIcRiddwcRiaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafcRicTCcRidaJcSncSndaLdaKdaNdaMcRicTAcRiaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaacRicTCcRicRicRicRicRicRicRicRicRicTAcRiaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacRidaOdaPbvTbvTddxdaQbIvcTAcTAcTAddycRiaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaacRibIxcLEcRicRiddzddAddzcRicRicRicRicRiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafcRicRicRicRicZvdaRdaSddBcZvcRiaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiaaaaaaaafaaacRicZvcZvdbvcZvdbwcRiaaaaafaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaagaaaaafaaacRicRicRecTTcRecRicRiaaaaaaaaaaagaaiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaiaagaafaaaaafaaaddCaaaaaaaafaafaaiaagaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaiaagaaaaafaafaagaagaagaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadbDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(2,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(3,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(4,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(5,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(6,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(7,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(8,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(9,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(10,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(11,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(12,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(13,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(14,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(15,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(16,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(17,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(18,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(19,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+aae
+aae
+aae
+aae
+daz
+aae
+aae
+aae
+cTM
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(20,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+aae
+aae
+aae
+aae
+aae
+aae
+cUb
+cUm
+cUb
+cTZ
+cUz
+cUF
+dby
+cUK
+cUP
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(21,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aae
+cTV
+cTV
+cTV
+cTV
+cTV
+aae
+cTZ
+cTZ
+cTZ
+cTZ
+cUy
+cTZ
+dbx
+cUK
+cUO
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(22,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aae
+bRb
+bRb
+bRb
+bRb
+bRb
+aae
+cUk
+cTZ
+cTZ
+cTZ
+cUB
+cUI
+dbz
+cUK
+cUQ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aac
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(23,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+aae
+aae
+aae
+cTM
+aaa
+aaa
+aae
+bRb
+cSH
+bRb
+bRb
+bRb
+aae
+cUc
+cTZ
+cTZ
+cTZ
+cUA
+aae
+aae
+aae
+daT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cVF
+cVF
+cVI
+cVF
+cVF
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(24,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aae
+bSm
+cTH
+cTJ
+aae
+day
+aaa
+aae
+cTW
+cTY
+cTI
+bRb
+bRb
+aae
+cUl
+cTZ
+cTZ
+cTZ
+cUE
+aae
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aac
+aaa
+aaa
+cVN
+cWf
+cWf
+cWf
+cVG
+cWX
+cVY
+cXw
+cVG
+cWf
+cWf
+cWf
+cYq
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(25,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aPc
+bRb
+bRb
+bRb
+aae
+aae
+aae
+aae
+aae
+aae
+aae
+cUd
+cUf
+aae
+aae
+cUs
+cUv
+cUw
+aae
+aae
+aae
+cTM
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cVF
+cVF
+cWe
+cWe
+cVF
+cVF
+cVF
+cXg
+cVF
+cVF
+cVF
+cWe
+cWe
+cVF
+cVF
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(26,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aPc
+cTE
+bRb
+bRb
+aae
+cTP
+bRb
+bRb
+bRb
+bRb
+cUg
+bRb
+bRb
+cUi
+bRb
+bRb
+bRb
+bRb
+bRb
+cUg
+cUK
+cUP
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aac
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cVF
+cVF
+cVF
+cVF
+cVF
+cWO
+cWY
+cVY
+cXx
+cXF
+cVF
+cVF
+cVF
+cVF
+cVF
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(27,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aPc
+cRQ
+bPB
+bRb
+cTN
+bRb
+bRb
+bRb
+bRb
+bRb
+cTU
+bRb
+bRb
+bRb
+bRb
+bRb
+bRb
+bRb
+bRb
+cUJ
+cUK
+cUO
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cVF
+cVO
+cVF
+cWu
+cVF
+cWo
+cWo
+cWo
+cWo
+cWo
+cVF
+cXS
+cYd
+cYr
+cVF
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(28,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aPc
+cTG
+bRb
+cTK
+aae
+cTQ
+cTS
+cTS
+cTS
+cTS
+cUg
+bRb
+bRb
+bRb
+bRb
+bRb
+bRb
+bRb
+bRb
+cUg
+cUK
+cUQ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cVG
+cVR
+cWi
+cWv
+cWG
+cWQ
+cXa
+cXi
+cXb
+cWo
+cXM
+cXT
+cVY
+cYr
+cVG
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(29,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aPc
+cTF
+bRb
+bRb
+aae
+aae
+aae
+cpV
+aae
+aae
+aae
+cUe
+cUg
+aae
+aae
+aae
+cUt
+cUx
+aae
+aae
+aae
+cTO
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aac
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cVF
+cVF
+cVF
+cVF
+cVF
+cWP
+cWZ
+cXh
+cXy
+cWo
+cXL
+cVY
+cWo
+cYs
+cVG
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(30,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aae
+cTF
+bRb
+cTL
+aae
+cTO
+aaa
+aaa
+aaa
+aae
+bRb
+bRb
+bRb
+aae
+cUo
+bRb
+bRb
+bRb
+cUD
+cUG
+aae
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cVG
+cVT
+cWk
+cWx
+cWI
+cWR
+cWZ
+cXk
+cXy
+cWo
+cVF
+cXU
+cYf
+cYr
+cVF
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(31,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaW
+aae
+aae
+aae
+cTO
+aaa
+aaa
+aaa
+aaa
+cTl
+bRb
+bRb
+bRb
+aae
+cUn
+bRb
+bRb
+bRb
+cUC
+aae
+aae
+aae
+dbG
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+anT
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cVF
+cVS
+cWj
+cWw
+cWH
+cWo
+cWZ
+cXj
+cXy
+cWo
+cVF
+cVF
+cYe
+cVF
+cVF
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(32,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cTv
+bRb
+bRb
+bRb
+aae
+cUq
+bRb
+bRb
+bRb
+bRb
+bRb
+abd
+cUK
+cUP
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+anT
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cVF
+cVF
+cVF
+cVF
+cVF
+cWo
+cXb
+cXl
+cXa
+cWo
+cXN
+cWo
+cYg
+cYu
+cVF
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(33,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaW
+aae
+aae
+aae
+aae
+cUp
+cSH
+bRb
+bRb
+bRb
+bRb
+dbA
+cUK
+cUO
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aqB
+anS
+aaf
+aaf
+aaa
+anS
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaf
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cVF
+cVU
+cWl
+cWy
+cVF
+cWS
+cWo
+cVY
+cWo
+cWo
+cVF
+cXV
+cVY
+cYt
+cVG
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(34,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cUa
+aae
+cUr
+cUu
+bRb
+cUj
+cUj
+bRb
+cUh
+cUK
+cUQ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+anT
+aaa
+aaa
+anS
+aaf
+anS
+aaf
+aaf
+aaf
+anS
+aaf
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaf
+aaf
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaf
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+cVG
+cVV
+cWm
+cWz
+cVF
+cVF
+cVF
+cXm
+cVF
+cVF
+cVF
+cXX
+cYi
+cYw
+cVG
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(35,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaW
+aae
+aae
+aae
+aae
+cpV
+aae
+aae
+aae
+cTO
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aqB
+anS
+anS
+anS
+anS
+anS
+aaf
+anS
+anS
+anS
+aaf
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+cVm
+aaa
+aaa
+aaf
+aaa
+aaa
+aaf
+aaa
+aaf
+cVG
+cVV
+cVY
+cWo
+cWn
+cVY
+cWo
+cWo
+cWo
+cWo
+cVF
+cXW
+cYh
+cYv
+cVF
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(36,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+anS
+aaf
+aaf
+anS
+anS
+apq
+anS
+aaf
+anS
+anS
+anS
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaU
+blx
+aRA
+aRA
+aRA
+aVs
+aWS
+aWS
+aWS
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aWS
+aWS
+aWS
+aWS
+aWS
+aaa
+cVm
+cVw
+cVm
+aaa
+aWS
+aWS
+aWS
+aWS
+aaa
+aaf
+cVF
+cVX
+cWo
+cWB
+cVF
+cWo
+cXa
+cXo
+cXa
+cWo
+cVF
+cVF
+cVF
+cVF
+cVF
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aac
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(37,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+anS
+anS
+anS
+anS
+anS
+anS
+anS
+aaf
+anS
+anS
+anS
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aOZ
+aOZ
+aOZ
+aRB
+aSH
+aUb
+aVt
+aWT
+aWS
+aaf
+aaf
+aaa
+bcR
+bcS
+bcU
+bcS
+bcR
+aaa
+aaf
+aaf
+aWS
+bvB
+aWT
+aWS
+aaa
+cVr
+cVv
+ddL
+aaa
+aWS
+bKS
+aWT
+aWS
+aWS
+aWS
+cVF
+cVW
+cWn
+cVF
+cVF
+cWo
+cXb
+cXn
+cXb
+cXG
+cVF
+cXY
+cXa
+cYx
+cVF
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(38,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaf
+anS
+anS
+anS
+anS
+anS
+anS
+anS
+aaf
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+cSP
+aND
+cSU
+cTd
+aRC
+bsk
+aUc
+aVu
+aWU
+aYC
+aaa
+aaf
+aaa
+bcS
+bgq
+beC
+bjU
+bcS
+aaa
+aaf
+aaa
+aYC
+aVu
+aWU
+aRA
+aaa
+cVn
+cVv
+cVn
+aaa
+aRA
+btS
+aWU
+bOd
+bPA
+bOd
+cbm
+cVZ
+cWo
+cVY
+cWL
+cWo
+cWR
+cXq
+cWo
+cWo
+cXO
+cWo
+cYl
+cYz
+cVG
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(39,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aqB
+anS
+anS
+anS
+anS
+anS
+anS
+apq
+anS
+aaf
+aaf
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aOZ
+aOZ
+aOZ
+aRB
+aSI
+aRA
+aVv
+aWU
+aWS
+aaf
+aaf
+aaa
+bcS
+bgq
+beC
+bjU
+bcS
+aaa
+aaf
+aaf
+aWS
+aVw
+aWU
+aWS
+cVn
+cVn
+ddJ
+cVn
+cVn
+aWS
+aVw
+aWU
+bOd
+aZZ
+bOd
+cVI
+cVY
+cWp
+cWo
+cWL
+cVY
+cWo
+cXp
+cVY
+cWo
+cVF
+cXa
+cXa
+cYy
+cVF
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(40,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+anS
+aaf
+anS
+aaf
+anS
+anS
+anS
+anS
+anS
+anS
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaX
+blx
+aRA
+aRA
+aRA
+cZf
+aWV
+aRA
+aaa
+aaa
+bcR
+bcS
+bcS
+bcT
+bcS
+bcS
+bcR
+aaa
+aaa
+aRA
+bvC
+bxt
+aYC
+cVp
+cVu
+cVv
+cVB
+cVp
+aYC
+bKT
+aWU
+aWS
+aWS
+aWS
+cVF
+cVF
+cWr
+cVF
+cVF
+cWo
+cXa
+cXs
+cXa
+cWo
+cVF
+cVF
+cVF
+cVF
+cVF
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(41,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+anS
+anS
+anS
+anS
+anS
+avI
+anS
+anS
+anS
+anS
+anS
+aaf
+anS
+aaa
+aaf
+aaa
+aaa
+aaf
+aaf
+aaf
+aaf
+aaa
+aaf
+aaf
+aRA
+aVx
+aWU
+aWS
+aWS
+aWS
+bcS
+beB
+beC
+beC
+beC
+blN
+bcS
+aWS
+aWS
+aWS
+bvD
+aWU
+aWS
+cVn
+cVu
+cVv
+cVB
+cVn
+aWS
+aVw
+aWU
+aWS
+aaa
+aaf
+cVF
+cWa
+cWq
+cWC
+cVF
+cWo
+cXa
+cXr
+cXb
+cWo
+cXP
+cYa
+cYm
+cYA
+cVF
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ctm
+anT
+aai
+anT
+aai
+anT
+anT
+anT
+aqB
+anT
+anT
+anT
+anT
+aqB
+anT
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(42,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+anS
+anS
+anS
+apq
+anS
+anS
+aaf
+anS
+anS
+anS
+aaf
+anS
+aDb
+aDb
+aDb
+aDb
+aDb
+aDb
+aDb
+aDb
+aDb
+aDb
+aDb
+aDb
+aDb
+aDb
+aVu
+aWU
+aYD
+aZZ
+aYD
+bcT
+beC
+bgr
+bgr
+bgr
+beC
+bnJ
+aYD
+bsk
+aYD
+aVu
+bxu
+aRA
+cVn
+cVv
+cVv
+cVv
+cVn
+aRA
+aVu
+aWU
+aWS
+aaf
+aaf
+cVG
+cWc
+cWs
+cWs
+cWN
+cWo
+cWo
+cVY
+cWo
+cWo
+cXQ
+cVY
+cYo
+cYC
+cVG
+aaa
+aaa
+aaa
+aaa
+aaa
+anT
+aaa
+aaa
+aaf
+aaf
+aaa
+aaa
+aaf
+aaf
+aaa
+aaa
+aaf
+aaf
+aaa
+aaa
+aai
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(43,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+anT
+aaf
+aaf
+aaf
+aaf
+anS
+anS
+anS
+anS
+azg
+anS
+anS
+aDb
+aDa
+cVK
+cVK
+cVK
+cVK
+cVK
+cVK
+cVK
+cWF
+cWK
+aRD
+aSJ
+aDb
+aVy
+aWU
+aWS
+aWS
+aWS
+bcS
+beD
+bgs
+bgs
+bgs
+blO
+bcS
+aWS
+aWS
+aWS
+aVu
+bxv
+aWS
+ddH
+cVv
+ddK
+cVv
+ddM
+aWS
+aVu
+bMu
+aRA
+aaa
+aaf
+cVG
+cWb
+cWs
+cWD
+cVF
+cVF
+cVF
+cXt
+cVF
+cVF
+cVF
+cYb
+cYn
+cYB
+cVG
+aaa
+aaa
+aaa
+aaa
+aaa
+anT
+aaa
+cue
+cvd
+cwe
+aaf
+cue
+cvd
+cwe
+aaf
+cue
+cvd
+cwe
+aaa
+aaa
+anT
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(44,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+anS
+aaf
+aqB
+anS
+anS
+aaf
+anS
+anS
+aaf
+aai
+aDb
+cVE
+cVL
+cVL
+cVL
+cVL
+cVL
+cVL
+cVL
+cWJ
+cWK
+aRE
+aSK
+cYL
+aVz
+aWW
+aWT
+baa
+aWS
+bcU
+beE
+bgr
+bgr
+bgr
+beC
+bcU
+aWS
+bsl
+btO
+bvE
+bxw
+aWS
+cVn
+cVv
+cVv
+cVv
+cVn
+aWS
+bKU
+bMv
+aWS
+aaa
+aaf
+cVF
+cWd
+cWt
+cWE
+cVF
+cWU
+cXe
+cWo
+cXB
+cXa
+cVF
+cJI
+cYp
+cYD
+cVF
+aaa
+aaa
+aaf
+aaf
+aaf
+aaf
+aaa
+cue
+cve
+cwe
+aaa
+cue
+cve
+cwe
+aaa
+cue
+cve
+cwe
+aaf
+aaa
+anT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(45,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+anS
+anS
+aaf
+anS
+auC
+anS
+anS
+ayf
+anS
+aaf
+aaa
+aDb
+cVE
+cVL
+cVL
+cVL
+cVL
+cVL
+cVL
+cVL
+cWJ
+cWK
+aRE
+aSK
+cYL
+aVz
+bvF
+aWU
+baa
+aWS
+bcS
+beF
+bgs
+bit
+bgs
+blP
+bcS
+aWS
+bsm
+aVu
+bvF
+bxw
+aWS
+cVn
+cVu
+cVv
+cVB
+cVn
+aWS
+aVu
+bMw
+aRA
+aaa
+aaf
+cVF
+cVF
+cVG
+cVF
+cVF
+cWT
+cVY
+cWo
+cWR
+cXH
+cVF
+cVF
+cVG
+cVF
+cVF
+aaa
+aaa
+aaf
+aaa
+aaa
+aai
+aaf
+cue
+cve
+cwe
+aaf
+cue
+cve
+cwe
+aaf
+cue
+cve
+cwe
+aaf
+aaa
+anT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(46,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+anS
+anS
+anS
+anS
+anS
+anS
+anS
+anS
+anS
+anS
+anS
+aaf
+aDb
+cVE
+cVL
+cVL
+cVL
+cVQ
+cVL
+cVL
+cVL
+cWJ
+cWK
+cXE
+aIf
+aDb
+cZh
+bvF
+aWU
+bab
+aWS
+bcS
+beG
+bgr
+bgr
+bgr
+blQ
+bcS
+aWS
+baa
+btP
+aWX
+bxx
+aRA
+cVp
+cVu
+cVv
+cVB
+cVp
+aRA
+btS
+bxw
+aWS
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+cVG
+cWW
+cWo
+cXv
+cXD
+cXK
+cVG
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaa
+aaa
+anT
+aaa
+cue
+cve
+cwe
+aaf
+cue
+cve
+cwe
+aaa
+cue
+cve
+cwe
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(47,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+apq
+anS
+anS
+aaf
+aaf
+anS
+anS
+aaf
+anS
+anS
+aaf
+aDb
+cVE
+cVL
+cVL
+aHb
+cWg
+cVL
+cVL
+cVL
+ddG
+cWM
+cXR
+cYG
+cYP
+aVA
+aWY
+aYE
+bac
+aWS
+bcU
+beH
+bgs
+bgs
+bgs
+beC
+bcU
+aWS
+bsn
+btQ
+bvG
+bxw
+aWS
+cVn
+cVp
+cVx
+cVp
+cVn
+aWS
+aVu
+bxw
+aRA
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+cVG
+cWV
+cXf
+cXu
+cXC
+cXJ
+cVG
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cue
+cve
+cwe
+aaf
+cue
+cve
+cwe
+aaf
+cue
+cve
+cwe
+aaa
+aaa
+aaa
+anT
+anT
+anT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(48,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+anS
+anS
+anS
+aaf
+aaf
+aqB
+anS
+aaf
+aaf
+aaf
+aaf
+aaf
+aDb
+cVE
+cVL
+cVL
+cVL
+cWh
+cVL
+cVL
+cVL
+cWJ
+cWK
+cYE
+cYK
+cYQ
+aVB
+aWZ
+aWS
+aWS
+aWS
+bcS
+beI
+bgr
+bgr
+bgr
+blR
+bcS
+aWS
+aWS
+aWS
+bvH
+bxy
+aRA
+aaf
+bCG
+bEl
+aWS
+aaf
+aRA
+bKV
+bMx
+aRA
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+cVF
+cVG
+cVG
+cVG
+cVG
+cVG
+cVF
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aai
+aaa
+aaf
+cvf
+aaa
+aaa
+aaf
+cvf
+aaa
+aaa
+aaf
+cvf
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+anT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(49,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+anS
+aaa
+aaa
+aaf
+alK
+avJ
+alK
+aaf
+aaa
+aaf
+aaa
+aDb
+cVE
+cVL
+cVL
+cVL
+cVL
+cVL
+cVL
+cVL
+cWJ
+cWK
+aRE
+aSL
+aDb
+cZq
+aWZ
+aYD
+aZZ
+aYD
+bcT
+beC
+beC
+beC
+beC
+beC
+bcT
+aYD
+bsk
+aYD
+bvH
+bMw
+aRA
+aWS
+aWS
+bEm
+aWS
+aWS
+aRA
+btS
+bMy
+alK
+alK
+alK
+alK
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaf
+aaf
+aaf
+anT
+aaf
+aaf
+cej
+cej
+cxa
+cej
+cej
+czL
+cED
+cBQ
+cej
+czL
+cED
+cED
+cED
+cHk
+aaf
+anT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(50,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aac
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+alK
+avK
+alK
+aaf
+aaf
+alK
+alK
+aDb
+cVE
+cVL
+cVL
+cVL
+cVL
+cVL
+cVL
+cVL
+cWJ
+cWK
+aRE
+aSM
+aDb
+cZq
+aWZ
+aWS
+aWS
+aWS
+bcS
+bcS
+bgt
+bgt
+bgt
+bcS
+bcS
+aWS
+aWS
+aWS
+bvH
+bxz
+aRA
+bBc
+aWS
+bEl
+aWS
+bHH
+aRA
+aVu
+bMz
+bOe
+bPC
+bRc
+alK
+aaf
+aaf
+aaf
+aaf
+aai
+anT
+aai
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+anT
+aaa
+aaf
+cvg
+aaa
+aaa
+aaf
+cvg
+aaf
+aaa
+aaf
+cvg
+aaa
+aaf
+aaa
+aaa
+aaf
+aaa
+anT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(51,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaa
+aaf
+alK
+alK
+avJ
+alK
+alK
+aip
+alK
+alC
+aDb
+cVH
+cVM
+cVM
+cVM
+cVM
+cVM
+cVM
+cVM
+aPb
+cWK
+aRF
+aSN
+aDb
+aVC
+aXa
+aYF
+aWS
+aaa
+bcR
+beJ
+bgu
+bgu
+bgu
+blS
+bcR
+aaa
+aWS
+btR
+bvI
+bxA
+biu
+bbI
+bbI
+bbI
+bbI
+bbI
+bjV
+btT
+bMA
+alK
+bPD
+asa
+alK
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaf
+aaa
+aaf
+aaa
+aaa
+aaf
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+cue
+cvh
+cwe
+aaf
+cue
+cvh
+cwe
+aaf
+cue
+cvh
+cwe
+aaa
+aaa
+aaa
+anT
+anT
+anT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(52,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+alK
+alK
+aip
+alK
+auD
+avL
+awM
+alC
+auF
+aqK
+alC
+aDb
+aDb
+aDb
+aDb
+aDb
+aDb
+aDb
+aDb
+aDb
+aDb
+aDb
+aDb
+aDb
+aDb
+aVD
+aXb
+aYG
+aRA
+aRA
+aRA
+aWS
+aWS
+aWS
+aWS
+aWS
+aRA
+aRA
+aRA
+btS
+bvJ
+bxB
+biv
+bBd
+bCH
+bEn
+bQL
+bHI
+bJo
+bKW
+bMB
+alK
+bPE
+asa
+alK
+bTn
+bTn
+bTn
+bTn
+bTn
+aaa
+aaf
+aaa
+aaf
+aai
+anT
+anT
+aai
+anT
+aai
+anT
+aai
+anT
+anT
+aaf
+aaf
+cue
+cvh
+cwe
+aaa
+cue
+cvh
+cwe
+aaa
+cue
+cvh
+cwe
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(53,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+alK
+aqC
+arW
+ato
+auE
+avM
+avT
+avT
+avT
+avT
+aJi
+avT
+bzC
+avM
+avT
+avT
+avT
+avT
+avT
+avT
+avT
+avT
+avT
+aSO
+aUd
+aVE
+aXc
+aYH
+bad
+bbI
+bbI
+bbI
+bbI
+biu
+bjV
+bjV
+bnK
+bqb
+bbI
+btT
+bvK
+bxC
+alK
+alK
+alK
+alK
+alK
+alK
+bJp
+alK
+alK
+alK
+bPF
+asa
+bPL
+bTn
+bUN
+bVQ
+bXt
+bYC
+bYC
+bYC
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+cue
+cvh
+cwe
+aaf
+cue
+cvh
+cwe
+aaf
+cue
+cvh
+cwe
+aaf
+aaa
+anT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(54,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aip
+aqD
+arX
+alK
+alK
+alK
+aob
+aoc
+amU
+alK
+aip
+alK
+bPN
+aDc
+cVP
+aob
+aob
+cWA
+auG
+ako
+aDd
+alC
+aRG
+aSP
+alK
+bnj
+aXd
+aYI
+bae
+bbJ
+bcV
+bbJ
+bgv
+biv
+bjW
+blT
+bnL
+bqc
+bso
+bnL
+bvL
+bxD
+bzw
+bvY
+bCI
+bEo
+bJj
+bzC
+bJq
+bKX
+bbL
+bbL
+bPG
+bxT
+bSn
+bTo
+bUO
+bVR
+bXu
+bYD
+bZN
+bYD
+cda
+cej
+cfz
+cED
+chY
+cej
+cej
+cej
+cfz
+cED
+cda
+cej
+cej
+cfz
+cED
+cvh
+cwe
+aaa
+cue
+cvh
+cwe
+aaf
+cue
+cvh
+cwe
+aaf
+aaf
+anT
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(55,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+alK
+alK
+arY
+alK
+aaf
+alK
+alK
+aip
+alK
+alK
+aaa
+alK
+alK
+alK
+alK
+aip
+alK
+alK
+alK
+alK
+alK
+alK
+aip
+alK
+alK
+alK
+alK
+alK
+baf
+bbK
+bcW
+beK
+bbK
+biw
+bjX
+blU
+bnM
+bqd
+bsp
+bnM
+bvM
+bxE
+alK
+auF
+bCJ
+bEp
+alK
+apz
+bJr
+alC
+aqK
+aqO
+bPF
+aGN
+asa
+bTp
+bUP
+bVS
+bXv
+bYC
+bYC
+bYC
+aaa
+aaa
+aaf
+aaa
+aaa
+aaf
+aaf
+aaf
+aaa
+aaf
+aaa
+aaa
+aaf
+aaa
+cue
+cvi
+cwe
+aaf
+cue
+cvi
+cwe
+aaf
+cue
+cvi
+cwe
+aaa
+aaa
+anT
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aac
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+dbC
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(56,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aqE
+arZ
+atp
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaa
+aaa
+aaa
+aaf
+aaf
+aaa
+aaa
+alK
+arZ
+bbK
+bcX
+beL
+bgw
+bix
+bjY
+blV
+baE
+baE
+baE
+baE
+bvN
+bjY
+alK
+bBe
+bNd
+ako
+alK
+bHJ
+bJs
+aLd
+aLd
+aLd
+bPH
+aLd
+bSo
+bTn
+bTn
+bTn
+bTn
+bTn
+aaa
+aaf
+aaa
+aaa
+aaf
+aaf
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaf
+aaa
+aaa
+aaf
+aaf
+aaa
+aaf
+aaf
+aaf
+aaa
+aaa
+aaa
+aqB
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(57,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aqF
+asa
+atq
+aaf
+aaa
+awN
+awN
+awO
+awN
+awO
+awN
+awN
+aaa
+cUS
+cUS
+cUS
+cUS
+cUS
+cUS
+cUS
+cUS
+cUS
+cUS
+cUS
+aaa
+aaa
+alK
+asa
+bbK
+bcY
+beM
+bgx
+biy
+bjZ
+blW
+bnN
+bqe
+bsq
+btU
+bvO
+bxF
+bzx
+bzx
+bzx
+bzx
+bzx
+bzx
+bzx
+bzx
+bzx
+bzx
+bzx
+alC
+cgH
+alK
+aob
+aob
+bXw
+alK
+aaf
+aaf
+aaf
+aaf
+aaf
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaf
+anT
+aaf
+anT
+anT
+anT
+aqB
+anT
+aqB
+anT
+anT
+aqB
+anT
+aqB
+anT
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(58,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aqF
+asa
+atq
+aaf
+aaa
+awN
+ayg
+azh
+azh
+azi
+aDe
+awN
+aaa
+cUS
+cUV
+cUV
+cUV
+cUV
+cUV
+cUV
+cUV
+cUV
+cVc
+cUS
+cVk
+aaf
+alK
+bag
+bbK
+bcZ
+beN
+bgy
+biz
+bka
+blX
+bnO
+bqf
+bqf
+btV
+bvP
+bxG
+bzy
+bBf
+bCL
+bEq
+bQM
+bHK
+bJt
+bKY
+bBi
+bMD
+bzx
+amZ
+bSq
+bTr
+bUQ
+bVT
+aob
+alK
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(59,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaj
+aag
+aag
+aag
+aai
+aag
+aag
+aag
+aaj
+aag
+aag
+aai
+aag
+aag
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aqF
+asa
+atq
+aaf
+aaa
+awO
+ayh
+azi
+azh
+azi
+aDf
+aEu
+aaa
+cUS
+cUV
+cUV
+cUV
+cUV
+cUV
+cUV
+cUV
+cUV
+cUV
+cVg
+cVj
+aaf
+aip
+asa
+bbK
+bda
+beO
+bgz
+biA
+bka
+blY
+bnP
+bqg
+bsr
+bnP
+bvQ
+bxH
+bzx
+bBg
+bBg
+bBg
+bGj
+bBh
+bJu
+bKZ
+bMC
+bWW
+bzx
+auF
+bSr
+alK
+bJs
+bVU
+bXx
+alK
+aaa
+aaf
+aaf
+ack
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaf
+aaf
+aaa
+aaa
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(60,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aac
+aaa
+aaa
+aai
+aaa
+aaf
+aaf
+aaf
+aaa
+aaf
+aaf
+aaf
+aaa
+aaf
+aaf
+aaa
+aaa
+aag
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aqF
+asa
+atq
+aaf
+aaa
+awN
+ayg
+azh
+azh
+azi
+aDg
+awN
+aaa
+cUS
+cUV
+cUV
+cUV
+cUV
+cUV
+cUV
+cUV
+cUV
+cUV
+cVg
+cVj
+aaa
+aip
+asi
+bbK
+bdb
+beP
+bgA
+biz
+bkb
+blZ
+bnO
+bqf
+bqf
+btV
+bvR
+bxI
+bzz
+bBh
+bBh
+bBh
+bGk
+bHL
+bHL
+bBg
+bBg
+bOg
+bzx
+aoa
+bSr
+alK
+bUR
+alK
+alK
+alK
+aaa
+aaf
+aaa
+ack
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(61,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaj
+aaa
+aal
+aan
+aau
+aaa
+aal
+aan
+aau
+aaa
+aal
+aan
+aau
+aaf
+aag
+aaf
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aqF
+asa
+atq
+aaf
+aaa
+awN
+awN
+awO
+aAA
+awO
+awN
+awN
+aaa
+cUS
+cUV
+cUV
+cUV
+cUV
+cUV
+cUV
+cUV
+cUV
+cUV
+cVg
+cVj
+aaa
+aip
+asa
+bbK
+bdc
+beQ
+bpt
+bcW
+bkc
+bma
+bnQ
+bqh
+bss
+btW
+bvS
+bxJ
+bzx
+bBi
+bCM
+bEr
+bBg
+bHM
+bJv
+bBg
+bBg
+bBg
+bPI
+bRd
+bSr
+alK
+alK
+alK
+bXy
+bTs
+bTs
+bTs
+bTs
+cek
+bTs
+bTs
+bTs
+bTs
+ckN
+ckN
+ckN
+ckN
+ckN
+ckN
+ckN
+ckN
+aaa
+aaf
+aaa
+aaf
+aai
+anT
+aaf
+aaf
+aai
+anT
+anT
+aai
+anT
+anT
+aaf
+aaf
+aaf
+aai
+anT
+aaf
+aai
+anT
+aai
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(62,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaf
+aal
+aao
+aau
+aaa
+aal
+aao
+aau
+aaa
+aal
+aao
+aau
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aqG
+asb
+atr
+aaf
+aaa
+aaf
+ayi
+ayi
+aAB
+ayi
+ayi
+aaf
+aaa
+cUS
+cUV
+cUV
+cUV
+cUV
+cUY
+cUV
+cUV
+cUV
+cVc
+cUS
+cVl
+aaf
+alK
+daX
+bbK
+bbK
+beR
+bbK
+bcW
+bAw
+blV
+baE
+baE
+baE
+baE
+bvN
+bxK
+bzx
+bIz
+bCN
+bBg
+bBg
+bEs
+bJw
+bBg
+bMC
+bOg
+bzx
+bRe
+bSs
+aSO
+bUS
+bVV
+bXz
+bYE
+bYE
+cbp
+bTs
+cel
+bUU
+cgG
+bTs
+cjp
+ckO
+cmg
+cnh
+ckN
+cpQ
+crg
+cjt
+ckN
+aaa
+aaf
+aaf
+aaf
+aaa
+aaf
+aaa
+aaa
+aaf
+aaa
+aaf
+aaa
+aaf
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(63,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aag
+aaf
+aal
+aao
+aau
+aaf
+aal
+aao
+aau
+aaf
+aal
+aao
+aau
+aaf
+aaa
+aaf
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaf
+aaa
+aaf
+aaf
+aaf
+aaf
+aaf
+alK
+alK
+asc
+alK
+aaf
+aaa
+aaf
+ayi
+azj
+aAC
+aBS
+ayi
+aaf
+aaa
+cUS
+cUS
+cUS
+cUW
+cUX
+cUS
+cUZ
+cTh
+cUS
+cUS
+cUS
+aaa
+aaf
+alK
+baj
+bxR
+bdd
+beS
+bgC
+biB
+bkd
+bmb
+bnR
+bqi
+bst
+btX
+bvO
+bxL
+bzx
+bBk
+bNh
+bNK
+bBg
+bQP
+bJx
+bLa
+bMD
+bOh
+bzx
+aqO
+bSt
+bTs
+bTs
+bTs
+bTs
+bTs
+bTs
+cbq
+bTs
+bTs
+cfA
+bTs
+bTs
+cjq
+ckP
+ckS
+ckP
+ckP
+ckP
+cjt
+crh
+ckN
+aaa
+aaf
+aaf
+aaa
+aaa
+aaf
+aaa
+aaa
+cBR
+cBR
+cBR
+cBR
+cBR
+cBS
+cBR
+cBR
+cBR
+cBR
+cBR
+cBR
+aaf
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(64,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aal
+aao
+aau
+aaa
+aal
+aao
+aau
+aaa
+aal
+aao
+aau
+aaf
+aaa
+aaf
+aaa
+aaa
+aaf
+aaf
+aaf
+aaa
+aaa
+aaf
+aaa
+aaf
+aaa
+aaf
+aaa
+aaa
+aaf
+aaa
+aip
+aoe
+asd
+alK
+aaf
+aaa
+aaf
+ayi
+azk
+aAC
+aBT
+ayi
+aaf
+aaf
+aaf
+aaf
+aJB
+aKN
+aMs
+aJB
+aMs
+aQg
+aJB
+aaf
+aaf
+aaf
+aaf
+alK
+asb
+bbM
+bde
+beT
+bgD
+biC
+bke
+bmc
+bnS
+bqj
+bsu
+btY
+bvU
+bxM
+bzx
+bzx
+bzx
+bzx
+bzx
+bzx
+bzx
+bzx
+bzx
+bzx
+bzx
+alK
+bSr
+bTs
+bUT
+bVW
+bXA
+bYF
+bTs
+cbr
+bYE
+cem
+cfB
+cbp
+bTs
+cwl
+ckQ
+ckP
+cni
+cjt
+dbq
+ckQ
+cjt
+ckN
+aaf
+aaf
+cwf
+ack
+aaf
+aaf
+aaa
+aaa
+cBR
+cCK
+cDA
+cEE
+cFy
+cGq
+cHl
+cIp
+cJg
+cKe
+cKS
+cBR
+aaf
+aaa
+aaf
+aai
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(65,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaj
+aag
+aaj
+aaa
+aaa
+aal
+aao
+aau
+aaa
+aal
+aao
+aau
+aaa
+aal
+aao
+aau
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaa
+aaf
+aaf
+aaf
+aaf
+aaf
+ahp
+aif
+ahp
+ahq
+ahp
+ahp
+ahp
+ahp
+aqH
+ase
+alK
+aaf
+aaf
+aaf
+ayj
+ayj
+aAD
+aBU
+ayj
+ayi
+ayi
+ayj
+aaf
+aIg
+aKO
+aMt
+aIg
+aPd
+aQh
+aIg
+aaf
+aaf
+aUe
+aUe
+aUe
+bak
+bat
+bdf
+beU
+bgE
+bbP
+bkf
+bmd
+bnT
+bqk
+bsv
+btZ
+bvV
+bxN
+bvW
+bID
+bCP
+bvW
+bGl
+bHN
+bvW
+bLb
+bME
+bOi
+bPJ
+alK
+cgH
+bTs
+bUU
+bVX
+bXB
+bYG
+bTs
+bTs
+bTs
+cen
+bTs
+cbq
+bTs
+cjs
+ckR
+cmh
+cnj
+cjt
+ckP
+cjt
+cKd
+bTs
+bTs
+ack
+cwg
+ack
+ack
+aaf
+aaa
+aaa
+cBR
+cCL
+cDB
+cEF
+cFz
+cGr
+cHm
+cIq
+cJh
+cKf
+cKT
+cBS
+aaf
+aaa
+aaa
+aaa
+aai
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(66,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaf
+aaa
+aaa
+aaf
+aap
+aaf
+aaf
+aaf
+aap
+aaf
+aaa
+aaf
+aap
+aaf
+aaa
+aaf
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+ahp
+aig
+ajc
+akf
+alx
+amO
+anU
+ahp
+alK
+asf
+alK
+alK
+alK
+alK
+ayj
+azl
+aAE
+aAE
+aDh
+aEv
+aFF
+ayj
+aIg
+aIg
+aKN
+aMs
+aIg
+aMs
+aQg
+aIg
+aIg
+aUe
+aVG
+aXe
+aYJ
+bal
+bat
+bdg
+byI
+bgF
+bat
+bat
+bat
+bnU
+bql
+bsw
+baE
+bvW
+bxO
+bvW
+bBl
+bCQ
+bEt
+bGm
+bHO
+bvW
+bLc
+aod
+aGN
+aqK
+alK
+cgK
+bTs
+bUV
+ctq
+bXC
+bYH
+bTs
+cbs
+cdb
+ceo
+bTs
+cdc
+bTs
+cyS
+cjt
+cjt
+cjt
+ckP
+ckP
+crh
+cnb
+ctn
+bTs
+bTs
+cfA
+bTs
+bTs
+aaf
+aaf
+aaf
+cBS
+cCK
+cDC
+cEG
+cFA
+cGs
+cHn
+cEE
+cEE
+cEE
+cEE
+cBR
+cMt
+cNr
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(67,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aai
+aaa
+aah
+aak
+aak
+aam
+aaq
+aaq
+aaq
+aaw
+aaq
+aaq
+aaz
+aaq
+aaq
+aaq
+abf
+aak
+aak
+aak
+aak
+acS
+aaa
+aaa
+aaf
+aaf
+aaf
+aaa
+ahq
+ahq
+ahp
+blt
+ahp
+amP
+anV
+apr
+aqI
+asg
+ats
+amZ
+alK
+awP
+ayj
+azm
+aAF
+aAC
+aAC
+aEw
+aFG
+ayj
+aIh
+aJC
+aKP
+aMu
+aNE
+aMu
+aQi
+aRH
+aRH
+aUf
+aRH
+aRH
+aYK
+bam
+bbN
+bdh
+byI
+bgG
+biD
+bkg
+bme
+bnV
+bBG
+bsx
+bua
+bvW
+bxP
+bzA
+bBm
+bCR
+bvW
+bvW
+bvW
+bvW
+bLd
+aof
+aob
+alC
+alK
+bSu
+bTs
+bUW
+bVZ
+bXD
+bYI
+bZO
+cbt
+cdc
+bTs
+bTs
+csT
+bTs
+cxQ
+ckS
+cmi
+cnk
+ckP
+cmi
+cbu
+csf
+cto
+bTs
+cvj
+cwh
+cxb
+bTs
+aaa
+aaa
+aaa
+cBR
+cCM
+cDD
+cEH
+cFB
+cGt
+cHo
+cIr
+cJh
+cKg
+cKT
+cBS
+cMu
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(68,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaf
+aaa
+aaf
+aaf
+aar
+aaf
+aaa
+aaf
+aar
+aaf
+aaa
+aaf
+aar
+aaf
+aaa
+aaf
+aaa
+aaa
+aaa
+acT
+aaf
+aaa
+aaf
+aaa
+aaf
+aaa
+ahq
+aih
+ajd
+akh
+aly
+amP
+anW
+aps
+aqJ
+ash
+att
+auF
+alK
+alK
+ayj
+azn
+aAG
+aBV
+aDi
+aEx
+aFH
+aHc
+aIi
+aJD
+aKQ
+aKQ
+aKQ
+aKQ
+aKQ
+aKQ
+aSQ
+aKQ
+aKQ
+aKQ
+aYL
+ban
+bbO
+bdi
+beV
+bgH
+biE
+bkh
+bbN
+bnW
+bqn
+bsy
+bub
+bvX
+bxQ
+bzB
+bBn
+bCS
+bBn
+bQN
+bSb
+bvW
+bLe
+bMF
+apz
+aob
+alK
+bSr
+bTs
+bUX
+bWa
+bXE
+bYJ
+bTs
+cbu
+cdd
+bTs
+cfC
+cdc
+bTs
+cjv
+czM
+bTs
+cnl
+cox
+bTs
+cIo
+cKt
+bTs
+bTs
+bTs
+cwi
+bTs
+bTs
+bTs
+aaa
+aaa
+cBR
+cCK
+cDA
+cEE
+cFC
+cGu
+cHp
+cIp
+cJi
+cKh
+cKS
+cBR
+cMv
+cNs
+aaf
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(69,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aai
+aaj
+aaj
+aaa
+aaf
+aal
+aas
+aau
+aaa
+aal
+aas
+aau
+aaa
+aal
+aas
+aau
+aaa
+aaf
+aaa
+aaa
+aaa
+acT
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+ahq
+aii
+ajg
+aki
+alz
+amP
+anX
+apt
+alC
+asa
+atu
+aob
+aGN
+awQ
+ayk
+azo
+aAH
+aBW
+aBW
+aEy
+aFI
+aHd
+aIj
+aJE
+aKR
+aMv
+aNF
+aMv
+aMv
+aMv
+aKR
+aMv
+cVC
+aXf
+aYM
+bao
+bbN
+bdh
+beW
+bgI
+biF
+bki
+bmf
+bnX
+bqo
+bsz
+buc
+bvW
+bCO
+bvW
+bBo
+bvW
+bEu
+bvW
+bHP
+bvW
+bLf
+bJs
+bOj
+bPK
+bRf
+bSv
+bTs
+bTs
+bTs
+bTs
+bTs
+bTs
+bTs
+cde
+bTs
+bTs
+cdc
+bTs
+bTs
+bTs
+bTs
+bXF
+bXF
+bTs
+bTs
+csh
+bTs
+cuf
+cvk
+cwh
+bXE
+bZT
+bTs
+aaa
+aaa
+cBR
+cBR
+cDE
+cEE
+cFD
+cGv
+cHq
+cIs
+cJj
+cJj
+cKU
+cLN
+cMw
+cBR
+aaf
+aaa
+aai
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aac
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(70,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aal
+aas
+aau
+aaf
+aal
+aas
+aau
+aaa
+aal
+aas
+aau
+aaa
+aaf
+aaa
+aaa
+aaa
+acT
+aaf
+aaf
+aaf
+aaf
+aaf
+aaa
+ahq
+aij
+ajf
+akj
+alA
+amQ
+anY
+ahp
+aqe
+asa
+atu
+alC
+alC
+asa
+ayj
+azp
+aAI
+aBX
+aDj
+aEz
+aFJ
+ayj
+aIk
+aJE
+aKS
+aMv
+aNG
+aMv
+aQj
+aMv
+aKS
+aMv
+aMv
+aMv
+aYM
+bap
+bat
+bdi
+beX
+bgJ
+biG
+bkj
+bmg
+bnY
+bql
+bsA
+baE
+bvW
+bvW
+bvW
+bBp
+bvW
+bEv
+bvW
+bHQ
+bvW
+bLg
+bLf
+amU
+bPL
+alK
+bOf
+bOv
+alC
+dbk
+bTs
+bYK
+bZP
+cbv
+cdf
+cep
+bTs
+cgI
+chZ
+chZ
+chZ
+cBr
+chZ
+chZ
+cpS
+chZ
+csi
+chZ
+chZ
+cvl
+cbx
+ceu
+bTs
+bTs
+aaf
+aaa
+aaa
+cBR
+cDF
+cEI
+cFE
+cGw
+cHr
+cIt
+cEE
+cKi
+cKV
+cLO
+cMx
+cBR
+aaf
+aaf
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(71,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaf
+aal
+aas
+aau
+aaa
+aal
+aas
+aau
+aaf
+aal
+aas
+aau
+aaf
+aaf
+aaf
+aaf
+aaf
+acT
+aaa
+aaa
+aaa
+aaf
+aaf
+aaf
+ahq
+aik
+anZ
+akk
+alB
+amR
+aoO
+ahp
+aqL
+asi
+atu
+auG
+avN
+asa
+ayj
+ayj
+aAJ
+ayj
+ayj
+ayj
+ayj
+ayj
+aIl
+aJF
+aKT
+aMw
+aNH
+aMw
+aQk
+aMw
+aSR
+aMw
+aVH
+aXg
+aYN
+baq
+bat
+bdj
+bat
+bgK
+biH
+bkk
+bat
+bnZ
+bql
+bsB
+alK
+aoe
+bxS
+bvW
+bvW
+bvW
+bvW
+bvW
+bvW
+bvW
+alK
+alK
+alK
+alK
+alK
+alC
+bSs
+bTu
+bWb
+bTs
+bYL
+bZQ
+cbw
+cdg
+ceq
+bTs
+cgJ
+cia
+cia
+cia
+cia
+cia
+cia
+cpT
+cia
+cia
+cia
+ceu
+ceZ
+cbu
+bXE
+cdm
+bTs
+aaf
+aaf
+aaf
+cBS
+cDG
+cEJ
+cFF
+cGx
+cHs
+cIu
+cEE
+cKj
+cKW
+cLP
+cMy
+cBR
+aaa
+aaa
+aai
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(72,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aai
+aaf
+aal
+aas
+aau
+aaf
+aal
+aas
+aau
+aaa
+aal
+aas
+aau
+aaa
+aaf
+aaa
+aaa
+aaa
+acT
+aaa
+aaf
+aaf
+aaf
+aee
+bbo
+bbo
+bbo
+bbo
+akl
+ahp
+ahp
+ahp
+ahp
+alK
+asa
+atD
+alC
+alC
+asa
+ayl
+aEt
+aAK
+aBY
+aDk
+aEA
+aFK
+aHe
+aIm
+aJG
+aKU
+aMv
+aNI
+aMv
+aQl
+aMv
+aSS
+aMv
+aVI
+aXh
+aMv
+bar
+bat
+bdi
+bat
+bgL
+biI
+bkl
+bat
+bnW
+bqp
+bsC
+bud
+bvY
+bxT
+bzC
+bzC
+bzC
+bOv
+alC
+bSw
+bzC
+bzC
+bzC
+bzC
+bPM
+bzC
+bzC
+bSp
+alC
+bSr
+bTs
+bYM
+bZP
+cbx
+cdh
+bXE
+bTs
+ctI
+cia
+cjw
+ckU
+cmk
+cnm
+coy
+cpU
+crj
+csj
+cia
+cug
+ceZ
+bXE
+bXE
+cNg
+bTs
+aaa
+aaa
+aaa
+cBR
+cDH
+cEK
+cFG
+cGy
+cHt
+cIv
+cJk
+cKk
+cKX
+cLQ
+cMz
+cBR
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(73,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaj
+aaa
+aal
+aat
+aau
+aaa
+aal
+aat
+aau
+aaa
+aal
+aat
+aau
+aaa
+aaf
+aaa
+aaa
+aaa
+acT
+aaa
+aaf
+aee
+aee
+aee
+agB
+ahr
+ail
+bbo
+akm
+alC
+amS
+aoa
+alC
+aqM
+asj
+atv
+auH
+avO
+awR
+ayl
+aBR
+aAL
+aBZ
+aDl
+aEB
+aFL
+aHf
+aIn
+aJH
+aKV
+aJH
+aNJ
+aJH
+aQm
+aJH
+aST
+aJH
+aJH
+aXi
+aYO
+bas
+bbP
+bdk
+bat
+bgM
+biJ
+bkm
+bat
+boa
+bqq
+bsD
+alK
+bvZ
+aoa
+alC
+bBq
+apz
+bOf
+bzC
+bSp
+aoa
+aqO
+bMG
+alC
+bPN
+apz
+bTt
+bTv
+alC
+bSr
+bTs
+bTs
+bTs
+cby
+bXE
+cer
+bTs
+cgJ
+cib
+cjx
+ckV
+cml
+cnn
+coz
+coz
+crk
+csk
+cia
+cuh
+cvm
+cDK
+cxc
+cxR
+bTs
+aaa
+aaa
+aaa
+cBS
+cDI
+cEL
+cFH
+cGz
+cHu
+cIw
+cEE
+cKl
+cKY
+cLR
+cMA
+cBR
+aaa
+aaa
+aai
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(74,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaj
+aaf
+aaa
+aaf
+aaf
+aaa
+aaf
+aaa
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+acU
+aak
+aak
+aef
+aeG
+afE
+agC
+ahs
+aim
+ajh
+akn
+alD
+amT
+amT
+apu
+aqN
+ask
+atw
+auI
+avP
+awS
+ayl
+azs
+aAM
+aCa
+aDm
+aLI
+ayl
+aHg
+aIo
+aJI
+aKW
+aMx
+aNK
+aJI
+aQn
+aQn
+aSU
+aUg
+aVJ
+aXj
+aYP
+bat
+bat
+bat
+bat
+bgN
+bat
+bat
+bat
+bob
+bqr
+bsE
+bue
+bue
+bue
+bue
+bue
+bue
+bue
+bGq
+bue
+bue
+bue
+bue
+bue
+bue
+bue
+bue
+bue
+bue
+cgH
+bTs
+bYN
+bTs
+cbz
+bXE
+ces
+bTs
+ctK
+cic
+cjy
+ckW
+cmk
+cno
+coA
+cUH
+crl
+csl
+cia
+ceu
+ceu
+ceZ
+bTs
+bTs
+bTs
+aaa
+aaa
+aaa
+cBR
+cDJ
+cEM
+cFI
+cGA
+cHv
+cIx
+cEE
+cKm
+cKZ
+cLS
+cMB
+cBR
+aaf
+aaf
+aai
+aag
+aag
+aag
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(75,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aai
+aag
+aai
+aag
+aaj
+aag
+aai
+aaj
+aaa
+aaa
+aaf
+aaa
+aaa
+aaf
+aaa
+aaa
+aaf
+aaa
+aaf
+aee
+aee
+aee
+agD
+aht
+ain
+aji
+ako
+alE
+amU
+aob
+alE
+aqO
+agq
+agq
+auJ
+avQ
+alK
+ayl
+azt
+aAN
+aCb
+aDn
+aED
+ayl
+aHh
+aIp
+aJJ
+aKX
+aMy
+aNL
+aPe
+aJH
+aRI
+aSV
+aUh
+aVK
+aXk
+aYQ
+bau
+bbQ
+bdl
+beY
+bgO
+biK
+bkn
+bat
+bnW
+bqs
+bsx
+bue
+bwa
+bxU
+bzD
+bBr
+bCT
+bEw
+bzE
+bHR
+bJy
+bLh
+bMH
+bue
+bPO
+bRg
+bSx
+bTw
+bue
+bSr
+bXF
+bYO
+bTs
+bXE
+cbu
+bTs
+bTs
+cgJ
+cic
+cjz
+ckX
+cmm
+cnp
+coB
+coB
+crm
+csm
+cia
+cui
+cwj
+ceZ
+bTs
+cxS
+bTs
+aaf
+aaf
+aaf
+cBR
+cBR
+cBR
+cFJ
+cGB
+cBR
+cBR
+cBR
+cBR
+cBS
+cBR
+cBR
+cBR
+aaa
+aaa
+aai
+aaa
+aaa
+aaa
+aaf
+aaf
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(76,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaa
+aaf
+aaa
+aaf
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaf
+aaa
+aaa
+aaf
+aaa
+aaf
+aaf
+aaf
+aee
+bbo
+bbo
+agA
+agA
+aio
+alF
+aio
+alK
+apv
+alK
+agq
+atx
+auK
+avR
+awT
+aym
+azu
+aAO
+aCc
+aDo
+aEE
+ayl
+aHi
+aIq
+aJK
+aKY
+aMz
+aNM
+aPf
+aQo
+aRJ
+aSW
+aUi
+aVL
+aXl
+aYR
+bav
+bbR
+bdm
+beZ
+bgP
+biL
+bko
+bbN
+bnV
+bql
+apA
+bue
+bwb
+bxV
+bzE
+bBs
+bCU
+bBs
+bzE
+bHR
+bJz
+bLi
+bMI
+bue
+bPP
+bRh
+bSy
+bTx
+bue
+bSu
+bTs
+bYP
+bTs
+cbA
+cdi
+bTs
+cdl
+cgJ
+cic
+cjA
+ckY
+cmk
+cnq
+coC
+cpW
+crn
+csn
+cia
+cdl
+cMm
+cMo
+bTs
+cxT
+bTs
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+cFK
+cGC
+cBS
+cIy
+aaf
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(77,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaf
+aaa
+aaf
+aaa
+aaa
+aaa
+aaf
+aaf
+aaa
+aaf
+aaa
+aaa
+aaf
+aaf
+aaf
+aaa
+aaf
+aaf
+aaf
+aaf
+aio
+ajj
+akp
+alG
+amV
+aoc
+alG
+aoc
+agq
+aty
+auL
+avS
+awU
+ayl
+ayl
+ayl
+ayl
+ayl
+ayl
+ayl
+aHj
+aIr
+alK
+aKZ
+alK
+aNN
+aPg
+aQp
+aQp
+aSX
+aSX
+aVM
+aXm
+aSX
+bat
+bbS
+bdn
+bfa
+bgQ
+biH
+bkp
+bmh
+bnV
+bql
+avH
+bug
+bCV
+bCV
+bCV
+bCV
+bCV
+bEx
+bCV
+bCV
+bCV
+bCV
+bMJ
+bOk
+bPQ
+bRi
+bSz
+bTy
+bue
+bSr
+bTs
+bTs
+bTs
+bTs
+bTs
+bTs
+cfD
+cgJ
+cic
+cia
+ckZ
+cia
+cia
+cia
+cpX
+cia
+cia
+cia
+ceu
+ceZ
+cJl
+bTs
+cxS
+bTs
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+cFK
+cGD
+cBS
+aaa
+aaf
+aaf
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+cMI
+cPA
+cPA
+cPA
+cPA
+cMI
+cPA
+cMI
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(78,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaf
+aaa
+aaa
+aaf
+aaa
+aaf
+aaa
+aaa
+aaf
+aaa
+aaf
+aip
+ajk
+akq
+alH
+amW
+aob
+apw
+apz
+agq
+atz
+auM
+avT
+awV
+ayn
+ayn
+ayn
+ayn
+ayn
+ayn
+aFM
+aHk
+aIs
+aJL
+aLa
+alK
+aNO
+aPh
+aQq
+aRK
+aSX
+aUj
+aVN
+aXn
+aSX
+baw
+bbT
+bdo
+bfb
+bgR
+bfb
+bkq
+bmi
+boc
+bqt
+bsF
+buh
+bwd
+bwd
+bzF
+bwd
+bwd
+bEy
+bGr
+bwd
+bwd
+bLj
+bMK
+bOl
+bPR
+bRi
+bSA
+bTz
+bue
+bWc
+bXG
+bYQ
+bZR
+cbB
+cdj
+cse
+cdj
+cgL
+cid
+cjB
+cla
+cmk
+cnr
+coD
+cpY
+cro
+cso
+cia
+cfD
+cff
+ceu
+bTs
+bTs
+bTs
+bTs
+bTs
+bTs
+bTs
+bTs
+aaa
+cFK
+cGE
+cBS
+aaa
+aaf
+aaa
+cLa
+cLa
+cLa
+cLa
+cLa
+cLa
+cMI
+cPB
+cPZ
+cPZ
+cQT
+cMI
+cRE
+cPA
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(79,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaZ
+aaZ
+aaZ
+aaZ
+aaZ
+aaZ
+aaZ
+aaZ
+aaZ
+aaZ
+aaZ
+aaZ
+aaa
+aaf
+aio
+ajl
+akr
+alI
+amX
+aob
+aGN
+aqP
+agq
+atA
+agq
+agq
+agq
+agq
+agq
+agq
+agq
+agq
+agq
+agq
+aHl
+aIt
+alK
+aLb
+alK
+aNP
+aPi
+aQr
+aRL
+aSX
+aUk
+aVO
+aXo
+aSX
+bax
+bbU
+bdp
+bfc
+bgS
+biM
+bkr
+bat
+bnV
+bql
+awL
+bue
+aze
+bwe
+bGv
+bHT
+bwc
+bEz
+bGs
+bHS
+bzE
+bLk
+bzE
+bue
+bPS
+bPR
+bBs
+bBs
+bue
+bWd
+bXH
+bTs
+bZS
+cbC
+cdk
+ceu
+cfE
+cgM
+cic
+cjC
+clb
+cmn
+cns
+coE
+cpZ
+crp
+csp
+ctp
+ctq
+ceZ
+ceu
+cMm
+cwm
+cwm
+cDK
+ceu
+cBT
+cfF
+bTs
+clK
+cFJ
+cGF
+cBR
+clK
+bTs
+bTs
+bTs
+cLT
+cMC
+cNt
+cTf
+cNt
+cMI
+cPC
+cPC
+cQw
+cPC
+cMI
+cRF
+cMI
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(80,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaa
+aaa
+aaf
+abg
+abx
+abV
+acm
+acA
+acV
+adm
+adJ
+aeg
+aeH
+aaZ
+aaa
+aaf
+aio
+aio
+aks
+alJ
+amY
+aob
+aob
+aqQ
+agq
+atB
+agq
+aaa
+aaa
+aaf
+aaa
+aaa
+aaf
+aaa
+aaa
+aFN
+aHm
+aHj
+alK
+aLc
+alK
+aNQ
+aPj
+aQs
+aRM
+aSX
+aUl
+aVP
+aXp
+aSX
+bay
+bbV
+bdq
+bbN
+bgT
+bat
+bat
+bmj
+bod
+bql
+bsG
+bue
+bue
+bue
+bue
+bBu
+bwc
+bEz
+bGt
+bHS
+bzE
+bLk
+bML
+bue
+bMQ
+bRj
+bSB
+bPR
+bue
+clM
+bXI
+bTs
+bTs
+cbD
+bTs
+bTs
+cfF
+cgN
+cic
+cjD
+clc
+cmk
+cnt
+coF
+cqa
+crq
+csq
+cia
+bTs
+cMn
+cwm
+cNf
+ceu
+bZT
+cNm
+cNU
+cwm
+cwm
+cDK
+clK
+cFL
+cGG
+cHw
+clK
+cdm
+cKn
+cLb
+cRT
+cMD
+cNu
+cOb
+cOF
+cLa
+cMI
+cQa
+cPH
+cPH
+cRj
+cRG
+cMI
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(81,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaf
+aaf
+aaf
+abg
+aby
+abW
+acn
+acB
+acW
+adn
+adK
+aeh
+aeI
+aaZ
+aaf
+aaf
+aaf
+aio
+aio
+aio
+aio
+aod
+apy
+aqR
+agq
+atC
+agq
+aaf
+awW
+awW
+awW
+awW
+awW
+awW
+aaf
+aFO
+aHn
+aIu
+alK
+bOq
+alK
+aNR
+aPk
+aQt
+aRN
+aSX
+aUm
+aVQ
+aXq
+aYS
+baz
+bbW
+bdr
+bfd
+bgU
+biN
+bks
+bdw
+boe
+bql
+bsH
+bue
+aAz
+bxW
+bzG
+bzE
+bwc
+bEA
+bGu
+bHT
+bJA
+bLl
+bMM
+bue
+bPU
+bRk
+bSC
+bTA
+bue
+bWd
+alC
+bTs
+bZT
+cbE
+cdl
+cev
+cev
+cgO
+cic
+cia
+cia
+cia
+cia
+coG
+cqb
+cia
+cia
+cia
+cuj
+bXE
+bXE
+bXE
+cxU
+cxU
+czN
+cxU
+cxU
+cxU
+cDL
+clK
+cFM
+cGs
+cHx
+clK
+bZT
+cKo
+bTs
+cLa
+cLa
+cLa
+cOc
+cLa
+cLa
+cPD
+cQb
+cQx
+cQx
+cQb
+cRH
+cPA
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(82,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaf
+aaa
+aaa
+aaa
+aaf
+abg
+abz
+abX
+aco
+acC
+acX
+ado
+adL
+aei
+aeJ
+aaZ
+aaa
+aaa
+aaf
+aaf
+aaf
+aaf
+alK
+alK
+alK
+alK
+agq
+atF
+auN
+aaa
+awW
+ayo
+azv
+aAP
+aCd
+aDp
+aaa
+aFP
+aHo
+aVo
+alK
+aLc
+alK
+alK
+alK
+alK
+alK
+alK
+alK
+alK
+alK
+alK
+baA
+bbX
+bds
+bbX
+bgV
+biO
+bkt
+bmk
+bof
+bqu
+bsz
+bue
+bwg
+bxX
+bue
+bBv
+bwc
+bwc
+bzE
+bPT
+bzE
+bzE
+bMN
+bue
+bue
+bue
+bue
+bTB
+bue
+bWd
+aqK
+bTs
+bZU
+cbF
+cdm
+cev
+cfG
+cgP
+cie
+cjE
+cld
+cev
+cnu
+coH
+cqc
+crr
+csr
+ctq
+bXE
+cvn
+cwn
+cxd
+cxU
+cyN
+czO
+cAS
+cBU
+cxU
+cDL
+clK
+cFN
+cGH
+cHy
+clK
+cJl
+cKp
+bTs
+cLV
+cME
+cNv
+cOd
+cOG
+cLa
+cPE
+cQb
+cQy
+cQx
+cQb
+cRI
+cPA
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(83,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aai
+aaa
+aaf
+aaa
+aaa
+aaa
+aax
+aax
+aax
+aax
+aax
+aax
+acY
+adp
+adM
+aax
+aax
+aax
+aax
+aaa
+aaa
+aaf
+aaa
+alK
+alK
+aoe
+alC
+aqS
+agq
+atE
+auO
+aaa
+awW
+ayp
+azw
+aAQ
+aCe
+aDq
+aEF
+aFQ
+aHp
+aIw
+aJM
+aLe
+avT
+bfU
+aPl
+avT
+avM
+aSY
+avT
+avT
+aXr
+alK
+baB
+bbY
+bdt
+bbY
+bgW
+biP
+bku
+bml
+bog
+bqv
+bsI
+bue
+bue
+bue
+bue
+cUT
+bwc
+bwc
+bHU
+bHV
+bJB
+bzE
+bMO
+bue
+bPV
+bRl
+bue
+bTC
+atw
+bWe
+bXJ
+bTs
+bZV
+cbG
+cdn
+cev
+cfH
+cgQ
+cif
+cjF
+cle
+cmo
+cnv
+coI
+cqd
+crs
+css
+bTs
+bTs
+bTs
+bTs
+bTs
+cxU
+cyO
+czP
+cAT
+cBV
+cxU
+cDM
+clK
+cBR
+cGI
+cBR
+clK
+cPy
+cKq
+bTs
+cLW
+cMF
+cSY
+cOe
+cOH
+cLa
+cPF
+cQb
+cRp
+cQU
+cQb
+cRq
+cPA
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(84,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaj
+aaf
+aaf
+aaa
+aaa
+aaf
+aay
+abh
+abA
+abY
+acp
+aax
+acZ
+adq
+adN
+aej
+aeK
+afF
+aax
+aax
+aaa
+aaf
+aaa
+alK
+amZ
+aof
+apz
+aGN
+agq
+atP
+auO
+aaa
+awW
+ayq
+azx
+aAR
+aCf
+aDr
+aEG
+aFR
+aHq
+aIx
+aJN
+aJN
+aJN
+aJN
+aPm
+aJN
+aJN
+aSZ
+aJN
+aJN
+aXs
+aYT
+baC
+bbZ
+bdu
+bfe
+bgX
+biQ
+bkv
+bdw
+boh
+bqw
+bsx
+bue
+bwf
+bxW
+bzH
+bzE
+bwc
+bwc
+bzE
+cVb
+cVe
+cVf
+cVi
+bOm
+bPW
+bRm
+bue
+auF
+alC
+aXt
+aqO
+bTs
+bZW
+cbH
+cdo
+cev
+cfI
+cgR
+cig
+cjG
+clf
+cmp
+cnw
+coJ
+cqe
+crt
+css
+ctr
+cuk
+cvo
+cwo
+cxe
+cxU
+cyP
+czQ
+cAU
+cNV
+cxU
+cDL
+bTs
+cFO
+cGJ
+cHz
+bTs
+cJn
+cKr
+cLc
+cLX
+cMG
+cNx
+cOf
+cOI
+cPk
+cPG
+cQc
+cQz
+cMI
+cRl
+cRJ
+cMI
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(85,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aai
+aaa
+aaf
+aaf
+aaf
+aaf
+aax
+abi
+abB
+abe
+abe
+aax
+ada
+adr
+adr
+aek
+aeL
+afG
+agE
+aax
+aaa
+aaf
+aaf
+aip
+ana
+aog
+aLd
+aqT
+asl
+atG
+auO
+aaa
+awW
+ayr
+azy
+aAS
+aCg
+aDs
+aEH
+aFS
+aHo
+aIy
+aJO
+aLf
+aMA
+aNT
+aPn
+aQu
+aRO
+aTa
+bgp
+aJN
+aXt
+alK
+baD
+bca
+bdv
+bff
+bgY
+biR
+bkw
+bdw
+bnV
+bqw
+bsx
+bue
+aFE
+bxX
+bue
+bBw
+bwc
+bwc
+bBx
+bue
+bue
+bue
+bue
+bue
+bPX
+bRn
+bue
+alK
+alK
+bWf
+bXK
+bXK
+bZX
+cbI
+bXK
+cev
+cfJ
+cgS
+cih
+cjH
+clg
+cev
+cnx
+coK
+cqf
+cru
+css
+cts
+cul
+cvp
+cwp
+cxf
+cxU
+cyQ
+czR
+cAV
+cBW
+cxU
+cDN
+cEN
+cFP
+cGK
+cHA
+cIz
+cJo
+cKs
+bTs
+cLY
+cMH
+cNy
+cOg
+cOJ
+cPl
+cPH
+cQd
+cQA
+cMI
+cRm
+cRK
+cRP
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(86,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaf
+aaa
+aax
+abj
+aaR
+abZ
+acq
+acD
+abe
+ads
+adO
+ael
+aeM
+afH
+agF
+afW
+aaf
+aaf
+aaa
+alK
+ako
+aoh
+alK
+alK
+agq
+atH
+auP
+aaa
+awW
+ays
+azz
+aAT
+aCh
+awW
+aaa
+aFT
+aHr
+aIz
+aJP
+aLg
+aMB
+aMB
+aMB
+aMB
+aRP
+aTb
+aUo
+aJN
+aXu
+alK
+baE
+baE
+bdw
+bfg
+bgZ
+bdw
+baE
+bmm
+boi
+bqx
+bsJ
+bui
+bue
+bue
+bue
+cUU
+aZO
+aZO
+cUU
+bue
+buf
+cVh
+aVW
+bue
+bue
+bue
+bue
+bTD
+bUY
+bWg
+bXK
+bYR
+bZY
+cbJ
+cdp
+cev
+cfK
+cgT
+cii
+cjI
+clh
+cev
+cny
+coL
+cqg
+crv
+css
+ctt
+cum
+cvp
+cwq
+cxg
+cxU
+cyR
+czS
+cAW
+cBX
+cxU
+cDO
+cxU
+cxU
+cGL
+cxU
+cxU
+cgM
+cPW
+bTs
+cLZ
+cLa
+cLa
+cLa
+cOK
+cLa
+cPI
+cQe
+cTx
+cMI
+cMI
+cMI
+cMI
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aac
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(87,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aay
+abk
+abC
+abC
+acr
+acE
+adb
+abE
+abE
+aem
+aeN
+afI
+agG
+aax
+aaa
+aaf
+aaa
+alK
+alK
+alK
+alK
+aqU
+asm
+atI
+agq
+aaf
+awW
+awW
+awW
+awW
+awW
+awW
+aaf
+aFU
+aHs
+aIA
+aJQ
+aLh
+aMC
+aNU
+aMB
+aMB
+aRP
+aTb
+aUp
+aJO
+aXv
+aYU
+baF
+bcb
+bdx
+bfh
+bdx
+bfh
+bkx
+aYU
+boj
+bqy
+bsK
+buj
+bwh
+bxY
+bzI
+buj
+bCW
+buj
+buj
+cVd
+buj
+buj
+buj
+bxY
+buj
+bwh
+bSD
+buj
+buj
+bWh
+bXK
+bYS
+bZZ
+cbK
+cdq
+cev
+cev
+cev
+cij
+cjJ
+cli
+cev
+cnz
+coM
+cqh
+cnz
+css
+ctu
+cun
+cvp
+cwr
+cxh
+cxU
+cxU
+czT
+cAX
+cxU
+cxU
+cDP
+cxU
+cFQ
+cGJ
+cHB
+cxU
+cJp
+cKs
+bTs
+cMa
+cLa
+cNz
+cOh
+cOL
+cLa
+cMI
+cQf
+cTo
+cMI
+dbF
+cMI
+aaa
+aaa
+cZj
+cZj
+cZj
+cZe
+cZj
+cZj
+cZe
+cZj
+cZj
+cZj
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(88,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaf
+aaa
+aaa
+aax
+abl
+abD
+abE
+aaI
+acF
+abe
+adt
+adP
+abe
+aeO
+afJ
+aax
+aax
+aaa
+aaf
+aaa
+aaa
+agq
+aoi
+apB
+apC
+agq
+agq
+agq
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aFN
+aHt
+aIB
+aJO
+aLi
+aMD
+aNV
+aPo
+aQv
+aRQ
+aTc
+aUq
+aJO
+aXw
+aYV
+baG
+baG
+bdy
+baG
+baG
+baG
+bdP
+baG
+bok
+bqz
+bsL
+buk
+baG
+bdP
+baG
+baG
+bCX
+bEB
+baG
+bHW
+baG
+baG
+baG
+bdP
+baG
+baG
+baG
+bTE
+bUZ
+bWi
+bXK
+bYT
+caa
+cbL
+cdr
+cew
+cfL
+bXK
+cik
+cjK
+clj
+cmr
+cnA
+coN
+cqi
+crw
+cst
+cqi
+cuo
+cvq
+cws
+cxi
+cxV
+cNh
+czU
+cAY
+cBY
+cCN
+cDQ
+cEO
+cFR
+cGM
+cHC
+cxU
+cJq
+cKs
+bTs
+bTs
+cMI
+cNA
+cLa
+cLa
+cLa
+cPJ
+cQg
+cTy
+cRn
+cOS
+cMI
+aaa
+cZe
+cZl
+cZl
+cZl
+cZe
+cZl
+cZl
+cZe
+cZl
+cZl
+cZl
+cZe
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(89,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aax
+aax
+aaF
+aax
+aax
+abm
+abE
+aaR
+aaI
+acG
+adc
+adc
+adQ
+adc
+aeP
+afK
+agH
+aax
+aaa
+aaf
+agq
+agq
+agq
+aoj
+apC
+ahd
+agq
+auQ
+auQ
+atJ
+auQ
+auQ
+atJ
+auQ
+auQ
+auQ
+aDu
+aDu
+aDu
+aIC
+aJN
+aLj
+aME
+aNW
+aPp
+aQw
+aRR
+aTd
+aUr
+aVR
+aXx
+aYW
+baH
+bcc
+bdz
+bfi
+bfi
+bfi
+bky
+bmn
+bfi
+bqA
+bqA
+bul
+bfi
+bky
+bGw
+bfi
+bCY
+bEC
+bHX
+bHX
+bJC
+bHX
+bMR
+bOn
+bPY
+bRo
+bHX
+bTF
+bVa
+bWj
+bXK
+bYU
+bZZ
+cbM
+cds
+cds
+cfM
+cgU
+cil
+cjL
+clk
+cms
+cal
+cal
+cqj
+cal
+csu
+ctv
+cup
+cvr
+cwt
+cxj
+cxW
+cyT
+czV
+cAZ
+cBZ
+cCO
+cDR
+cEP
+cFS
+cGN
+cHD
+cxU
+cJr
+cKu
+cLd
+bTs
+cMJ
+cNB
+cOi
+cOM
+cPm
+cPK
+cQh
+cQE
+cQl
+cRo
+cMI
+cZe
+cZe
+cZe
+cZe
+cZe
+cZe
+cZe
+cZe
+cZe
+cZe
+cZe
+cZe
+cZe
+cZe
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(90,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aax
+aaA
+aaG
+aaP
+aax
+abn
+abE
+abD
+acs
+acH
+abe
+adu
+adR
+abe
+aeQ
+afL
+agI
+afW
+aaf
+aaf
+agq
+alL
+anb
+aok
+aox
+aqV
+agq
+atJ
+auR
+avU
+awX
+ayt
+azA
+aAU
+aCi
+aDt
+azC
+aFV
+aHu
+aID
+aJN
+aZT
+aME
+aNW
+aMB
+aQx
+aMB
+aTe
+aUs
+aJR
+aXy
+aYX
+baI
+bcd
+bcd
+bcd
+bcd
+bcd
+bkz
+bkz
+bol
+bkz
+bkz
+bum
+bkz
+bkz
+bzJ
+bBy
+bCZ
+bED
+bGx
+bGy
+bGy
+bGy
+bGy
+bGy
+bGy
+bGy
+bGy
+bTG
+aYX
+bWk
+bXK
+bYV
+cab
+cbN
+cdt
+cex
+cfN
+cgV
+cim
+cjM
+cll
+cmt
+cnB
+cam
+cdz
+crx
+csv
+ctw
+cuq
+cvs
+cwu
+cxk
+cxX
+cyU
+czW
+cBa
+cCa
+cCP
+cDS
+cEQ
+cFT
+cGO
+cHE
+cxU
+cJs
+cJX
+cLe
+bTs
+cMK
+cNC
+cOj
+cON
+cPn
+cPL
+cQg
+cQF
+cQV
+cRp
+cRL
+cYF
+daj
+dai
+dak
+dal
+dan
+dam
+dao
+dax
+cZL
+cZL
+cZL
+dar
+cYF
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(91,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aay
+aaB
+aaH
+aaQ
+aba
+abo
+abF
+aca
+act
+acI
+add
+adv
+adS
+aen
+aeR
+afG
+agH
+aax
+aaf
+aaf
+agq
+alL
+anc
+aol
+apD
+aqW
+agq
+atJ
+auS
+avV
+auQ
+ayt
+ayt
+ayt
+aCi
+aDt
+azC
+aFW
+aHv
+aIE
+aJN
+aLl
+aME
+aNX
+aPq
+aPq
+aPq
+aTf
+aUt
+aVS
+aXz
+aYY
+baI
+bcd
+bdA
+bfj
+bha
+biS
+bkz
+bmo
+bom
+bqB
+bsM
+bun
+bwi
+bkz
+bzK
+bBz
+bDa
+bEE
+bGy
+bHY
+bJD
+bLm
+bMS
+bOo
+bJD
+bJD
+bGy
+bTH
+aYX
+bWl
+bXK
+bYW
+cac
+cbO
+cdu
+cey
+cfO
+cgW
+cin
+cjN
+clm
+cmu
+cmu
+cmv
+cqk
+cmu
+csw
+cmu
+cmu
+cvt
+cvt
+cxl
+cxY
+cvt
+cvt
+cvt
+cxU
+cCQ
+cDT
+cxU
+bTs
+cGP
+bTs
+bTs
+bTs
+bTs
+cLf
+bTs
+cML
+cND
+cOk
+cOO
+cPo
+cPM
+cQi
+cQF
+cOP
+cRp
+cRL
+cYF
+daf
+cYO
+dag
+cZZ
+cZm
+cYO
+cZy
+cZe
+cYV
+cYV
+cYV
+cYV
+dae
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(92,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aax
+aaC
+aaI
+aaR
+abb
+aaI
+abG
+acb
+acu
+acJ
+abe
+adw
+adT
+adc
+aeS
+afM
+abe
+aax
+aiq
+ajm
+ajm
+ajm
+ajm
+aom
+ajm
+agq
+agq
+atJ
+auT
+avW
+awY
+ayu
+azB
+ayt
+aCi
+aDt
+azC
+aFW
+aHw
+aIF
+aJN
+aLm
+aMF
+aNY
+aPr
+aQy
+aRS
+aTg
+aUu
+aVT
+aXA
+aYZ
+baJ
+bce
+bdB
+bfk
+bhb
+biT
+bkz
+bmp
+bon
+bqC
+bsN
+buo
+bwj
+bxZ
+bzL
+bBA
+bDb
+bEF
+bGz
+bHZ
+bJE
+bLn
+bMT
+bOp
+bMT
+bRp
+bSE
+bTI
+aYX
+bWm
+bXL
+bXL
+cad
+cbP
+cdv
+cez
+cfP
+bXK
+cio
+cjO
+cln
+cmu
+cnC
+coO
+cql
+cry
+csx
+ctx
+cmu
+cvu
+cwv
+cxm
+cxZ
+cyV
+czX
+cvt
+cCb
+cCR
+cDU
+cER
+bTs
+cGQ
+cHF
+cIA
+cJt
+bTs
+cLg
+cMb
+cMM
+cNE
+cOl
+cOP
+cOP
+cOP
+cQb
+cQG
+cQW
+cRq
+cRL
+cYF
+daa
+cZm
+cYO
+cYO
+cYO
+dag
+cZA
+cZe
+dae
+cYI
+cYV
+cYV
+dae
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(93,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aay
+aaD
+aaJ
+aaS
+abc
+abp
+abH
+acc
+acv
+acK
+abe
+abe
+abe
+abe
+aeT
+afN
+abe
+ahu
+air
+ahx
+akt
+alM
+and
+aon
+ajm
+aqX
+agq
+auQ
+auQ
+avX
+auQ
+auQ
+auQ
+aAV
+auQ
+auQ
+aDu
+aFX
+aHx
+aIG
+aJR
+aLn
+aJR
+aJR
+aJR
+aJR
+aJR
+aTh
+aJR
+aJR
+aXB
+aZa
+baK
+bcd
+bdC
+bfl
+bhc
+biU
+bkz
+bmq
+boo
+bqD
+bsO
+bup
+bwk
+bkz
+bzM
+bBB
+bDa
+bEE
+bGA
+bIa
+bJF
+bLo
+bMU
+dbm
+bPZ
+bRq
+bSE
+bTI
+aYX
+bWj
+bXL
+bYX
+cae
+bXL
+cdw
+cdw
+cdw
+cdw
+cip
+cjP
+clo
+cmv
+cnD
+coP
+cqm
+crz
+csy
+cty
+cmu
+cvv
+cww
+cxn
+cya
+cyW
+czY
+cBb
+cCc
+cCS
+cDV
+cES
+bTs
+cGR
+cHG
+cIB
+cJu
+bTs
+cPY
+bTs
+cMN
+cNF
+cOm
+cOQ
+cPp
+cOQ
+cQj
+cQF
+cOP
+cRp
+cRL
+cYF
+cZT
+cZS
+cYO
+cYO
+cYO
+cYO
+cYO
+cZV
+cZG
+cZe
+dad
+dad
+cYF
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(94,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aax
+aaE
+aaK
+aaT
+aax
+abq
+abI
+abC
+acw
+acL
+abe
+adx
+adU
+ael
+aeU
+afO
+abe
+ahv
+ais
+ahx
+aku
+alN
+ane
+aoo
+ajm
+ajm
+ajm
+ajo
+ajo
+avY
+ajo
+aaa
+azC
+aAW
+azC
+aDu
+aDu
+aFY
+aHx
+aaa
+aaa
+aLo
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aUv
+aVU
+aXC
+aYX
+baL
+bcf
+bdD
+bfm
+bhd
+biV
+bkz
+bkz
+bkz
+bkz
+btH
+buq
+bAZ
+bkz
+bzN
+bBB
+bDc
+bEG
+bGB
+bIb
+bJG
+bLp
+bMV
+bOr
+bQa
+bRr
+bSF
+bTI
+aYX
+bWj
+bXL
+bYY
+caf
+cbQ
+cdw
+ceA
+cfQ
+cgX
+ciq
+cjO
+clo
+cmw
+cnE
+coQ
+cqn
+crA
+csz
+ctz
+cmu
+cvw
+cwx
+cxo
+cyb
+cyX
+czZ
+cvt
+cCd
+cCT
+cDW
+cET
+bTs
+cGS
+cHH
+cIC
+cJv
+bTs
+cLf
+bTs
+cMO
+cNG
+cNC
+cOR
+cPq
+cOR
+cQi
+cQF
+cQV
+cRp
+cRL
+cZe
+cZe
+cZn
+cZe
+cZQ
+cZe
+cZn
+cZe
+cZe
+cZe
+cZe
+cZn
+cZe
+cZe
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(95,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aax
+aax
+aaL
+aax
+aax
+abr
+abJ
+acd
+abE
+abE
+ade
+abE
+abE
+aeo
+aeV
+afP
+abe
+ahw
+air
+ahx
+akv
+alO
+anf
+aop
+ahx
+aqY
+asn
+atK
+ajo
+avk
+ajo
+aaa
+aDu
+aAX
+aCj
+aDv
+aEI
+aFZ
+aHy
+aaa
+aaa
+aLp
+aJS
+aNZ
+aPs
+aJS
+aJS
+aaa
+aUw
+aVV
+aXD
+aZb
+baM
+bcd
+bcd
+bfn
+bcd
+bcd
+bcg
+bmr
+bdG
+bqE
+bsQ
+bup
+bwm
+bkz
+bzO
+bBB
+bDa
+bEH
+bGy
+bIc
+bJH
+bLq
+bId
+bOs
+bJD
+bJD
+bGy
+bTJ
+aYX
+bWj
+bXL
+bYZ
+cag
+cbR
+cdx
+ceB
+cfR
+cgY
+cir
+cjN
+clo
+cmx
+cnF
+coR
+cqo
+crB
+csA
+ctA
+ctA
+ctA
+ctA
+cxp
+cyc
+ctA
+ctA
+ctA
+cCe
+cCe
+cDX
+cCe
+cCe
+cCe
+bTs
+bTs
+cJw
+bTs
+cLi
+bTs
+cMP
+cNG
+cNC
+cOS
+cPr
+cOS
+cQk
+cQH
+cQX
+cRr
+cMI
+cZe
+cZK
+cYO
+cYO
+cYO
+cYO
+cYO
+cZK
+cZe
+cZD
+cZD
+cZD
+daq
+cZe
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(96,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaf
+aaa
+aaa
+aay
+abs
+abK
+ace
+acx
+acM
+abe
+ady
+adT
+adc
+aeW
+afQ
+agJ
+ahx
+ait
+ahx
+akw
+alP
+ang
+aoq
+ahx
+aqZ
+aso
+atL
+ahx
+avZ
+ahx
+ayv
+aaZ
+aaZ
+aaZ
+aDu
+aEJ
+aGa
+aHx
+aaa
+aJS
+aLp
+aMG
+aOa
+aPt
+aQz
+aJS
+aaa
+aUv
+aVW
+aXC
+aZc
+baN
+bcg
+bdE
+bfo
+bhe
+biW
+bkA
+bms
+bdG
+btC
+bsR
+bur
+bwn
+bya
+bzL
+bBB
+bDb
+bEI
+bGy
+bId
+bId
+bId
+bId
+bId
+bId
+bId
+bGA
+bTK
+aZa
+bWn
+bXL
+bXL
+cah
+cbS
+cdw
+czE
+cfS
+cdw
+cis
+cjO
+clp
+cmu
+cnG
+coS
+cqn
+crC
+csB
+ctA
+cur
+cvx
+cwy
+cxq
+cyd
+cyY
+cAa
+ctA
+cCf
+cCU
+cDY
+cEU
+cCf
+cCe
+cHI
+cID
+cJx
+cID
+cLj
+bTs
+cMI
+cNH
+cOn
+cMI
+cMI
+cPN
+cQl
+cQI
+cZc
+cZd
+cMI
+cYF
+cYO
+cYO
+cYO
+cYO
+cYO
+cYO
+cYO
+cZI
+cZG
+cZG
+cZG
+cZJ
+cYF
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(97,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaf
+aaf
+aaa
+aaU
+aax
+aax
+aax
+aax
+aax
+abe
+abe
+abe
+abe
+abe
+aeX
+afR
+agK
+ahy
+aiu
+ajn
+akx
+alQ
+anh
+aor
+apE
+anh
+anh
+anh
+auU
+awa
+awZ
+ayw
+azD
+aAY
+aCk
+aDw
+aDC
+aGb
+aHx
+aaf
+aJS
+aLq
+aMH
+aMH
+aPu
+aQA
+aJS
+aJS
+aUx
+aUx
+aXE
+aZd
+baO
+bch
+bdF
+bfp
+bhf
+biX
+bkB
+bmt
+bdG
+bsP
+bsQ
+bus
+bwo
+byb
+bzP
+bBC
+bDd
+bEJ
+bGC
+bIe
+bJI
+bLr
+bMW
+bOt
+bQb
+bRs
+bGC
+bTL
+aYX
+bWj
+bXM
+bZa
+cai
+cbT
+cdy
+ceD
+cfT
+cgZ
+cit
+cjQ
+clq
+cmu
+cmu
+cmu
+cqp
+cmu
+cmu
+ctA
+cus
+cvy
+cwz
+cxr
+cye
+cyZ
+cAb
+ctA
+cCg
+cCV
+cDZ
+cCj
+cCj
+cCe
+cgJ
+bTs
+bTs
+bTs
+cLk
+bTs
+cMR
+cNI
+cOo
+cMR
+cMI
+cMI
+cMI
+cMI
+cMI
+cMI
+cMI
+cZe
+cZi
+cYO
+cZo
+cYF
+cZi
+cYO
+cZo
+cYF
+cZF
+cZG
+cZG
+cZH
+cYF
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(98,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaV
+aaV
+aaV
+abt
+abL
+acf
+acy
+abL
+adf
+adz
+acf
+acy
+aeY
+afG
+agL
+ahz
+aiv
+ajo
+aky
+akg
+ani
+aos
+apF
+apF
+apF
+atM
+auV
+awb
+axa
+ayx
+azE
+azE
+aCl
+aDx
+aEK
+aGc
+aHx
+aaa
+aJS
+aLr
+aMH
+aOb
+aPv
+aPu
+aRT
+aJS
+aUy
+aVX
+aXF
+aYZ
+baP
+bcg
+bdG
+bfq
+bdG
+bdG
+bcg
+bmu
+bdG
+bqG
+dbe
+but
+bwp
+bkz
+bzQ
+bzR
+bDa
+bEE
+bGC
+bIf
+bJJ
+bLs
+bMX
+bOu
+bQc
+bRt
+bSG
+bTI
+bVb
+bWo
+bXN
+bZb
+caj
+cbU
+cdz
+ceE
+cfU
+cha
+ciu
+cjR
+clr
+cmy
+ctq
+cbu
+cqq
+crD
+csC
+ctA
+cut
+cvz
+cwA
+cxs
+cyf
+cyZ
+cAc
+ctA
+cCf
+cCf
+cDY
+cCf
+cCf
+cCe
+cHJ
+bTs
+cJy
+cKv
+cLl
+cQQ
+cMS
+cNJ
+cOp
+cMV
+cMV
+cPO
+cQm
+cQJ
+cQY
+cRs
+cQY
+cYH
+cYO
+cYO
+cZo
+dat
+cZi
+cYO
+cZo
+cZe
+cZF
+cZY
+cZY
+cZE
+cZe
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(99,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+adG
+aaM
+adH
+aPa
+abu
+abM
+acg
+aax
+abe
+abe
+abe
+abe
+abe
+aeZ
+afS
+agM
+ahA
+aiw
+ajp
+akz
+ajQ
+anj
+aot
+apG
+apG
+apG
+atN
+alS
+awc
+axb
+ayy
+azF
+aAZ
+aCm
+aDw
+aEL
+aGd
+aHx
+aaa
+aJS
+aLs
+aMH
+aOc
+aPw
+aQB
+aRU
+aTi
+aUz
+aVY
+aXG
+aZe
+baQ
+bci
+aaf
+aaf
+aaf
+bfv
+bfv
+bmv
+bfv
+bqH
+bqH
+buu
+bqH
+bkz
+bzR
+bBD
+bDe
+bEK
+bGD
+bIg
+bJK
+bLt
+bMY
+bMY
+bQd
+bRu
+bSH
+bTI
+bVc
+aXR
+bXN
+bZa
+cak
+cbV
+cdA
+ceF
+cfV
+cga
+civ
+cfY
+cls
+cga
+cga
+cga
+cga
+cga
+csD
+ctA
+cuu
+cvA
+cwB
+cxt
+cyg
+cyZ
+cAd
+ctA
+dbr
+cCj
+cDY
+cCj
+cFU
+cCe
+ctK
+bTs
+cJz
+cKw
+cLm
+cLm
+cLm
+cNK
+cOq
+cLm
+cLm
+cLm
+cQn
+cQK
+cPv
+cPv
+cPv
+cYF
+cZi
+cYO
+cZo
+cYF
+cZi
+cYO
+cZk
+cZe
+cZe
+dab
+cZn
+cZe
+cZe
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(100,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaa
+aaV
+aaV
+aaV
+abt
+abN
+ach
+aax
+acN
+adg
+adA
+adV
+adc
+afa
+afT
+agN
+ahB
+ahB
+ahB
+ahB
+alR
+ahB
+adY
+apH
+adY
+apH
+atO
+auW
+awd
+axc
+ahx
+ahx
+ahx
+ajm
+aDy
+aEM
+aGe
+aHx
+aaa
+aJS
+aLt
+aMH
+aOd
+aPv
+aMH
+aRV
+aJS
+aUA
+aVZ
+aXH
+aYX
+baQ
+bci
+aaf
+aaf
+aaf
+biY
+bkC
+bmw
+bop
+boy
+bsS
+buv
+bwq
+byc
+buE
+bBE
+bDf
+bEL
+bGE
+bIh
+bJL
+bLu
+bMZ
+bYq
+bQe
+bRv
+bGC
+bTM
+bVd
+bWp
+bXO
+bZc
+cal
+cbW
+cdB
+ceG
+cfW
+chb
+ciw
+cjS
+clt
+cmz
+cnH
+coT
+cqr
+cga
+csE
+ctA
+cuv
+cvB
+cwC
+cxu
+cyh
+cza
+cAe
+ctA
+cCf
+cCf
+cEa
+cCf
+cCf
+cCe
+ctI
+bTs
+cJA
+cKx
+cLn
+cMd
+cMd
+cNL
+cOq
+cOT
+cLm
+cPP
+cQo
+cQL
+cQY
+cQK
+cQY
+cYH
+cYO
+cYO
+cZo
+dax
+cZi
+cYO
+cZo
+cZe
+cZx
+cZw
+cZz
+das
+cZe
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(101,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaX
+abe
+abe
+abe
+aci
+aax
+acO
+adh
+adB
+adW
+aep
+afb
+afU
+agO
+ahB
+aNA
+ajq
+aix
+akA
+ank
+ajx
+apI
+ara
+asp
+anr
+auW
+awd
+axd
+ayw
+azG
+aAY
+aCk
+aDw
+aEN
+aGf
+aHx
+aaf
+aJS
+aLu
+aMH
+aMH
+aPu
+aQC
+aJS
+aJS
+aUx
+aUx
+aXI
+aYX
+baQ
+bci
+aaf
+bfr
+bhg
+bfv
+bkD
+bmx
+boq
+bqI
+bsT
+buw
+bwr
+byd
+bzS
+bBF
+bDg
+bEM
+bGC
+bGC
+bJM
+bGC
+bGC
+bOw
+bOw
+bOw
+bGC
+bTN
+aYZ
+bWq
+bXP
+bZd
+cam
+cbX
+cdC
+ceH
+cfX
+chc
+cix
+cjT
+cjT
+cmA
+cnI
+coU
+cqs
+crE
+csF
+ctA
+ctA
+ctA
+ctA
+cxv
+cyi
+ctA
+ctA
+ctA
+cCi
+cCW
+cEb
+cEV
+cFV
+cCe
+cHK
+bTs
+bTs
+cKy
+cLo
+cLm
+cLm
+cNM
+cOr
+cOU
+cLm
+cPQ
+cQn
+cQK
+cPv
+cPv
+cPv
+cZg
+cZi
+cYO
+cZo
+cYF
+cZi
+cYO
+cZo
+cYF
+cZM
+cYO
+cYO
+dau
+cYF
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(102,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaa
+aaa
+aaf
+aaa
+abe
+acj
+aax
+acR
+adi
+adC
+adX
+ael
+afd
+afV
+agP
+ahB
+aiy
+ajr
+ajr
+alT
+anl
+aou
+apJ
+arb
+asq
+ava
+axR
+awe
+axe
+ayz
+azE
+azE
+aCl
+aDx
+aEO
+aGg
+aHx
+aaa
+aJS
+aLv
+aMI
+aOe
+aPx
+aQD
+aJS
+aaa
+aUv
+aWa
+aXC
+aYX
+baQ
+bci
+aaf
+bfs
+bhh
+biZ
+bkE
+bmy
+bor
+bot
+bsU
+bux
+bsU
+bye
+bux
+bfv
+bDh
+bEN
+bGF
+aaf
+aaf
+bLv
+bNa
+bOx
+bQf
+bRw
+bSI
+bTG
+aYX
+aXR
+bXN
+bZa
+can
+cbY
+cca
+ceI
+cfY
+chd
+ciy
+cjU
+clu
+cmB
+cnJ
+coV
+cqt
+cga
+cKJ
+ctB
+cuw
+cvC
+cwD
+cxw
+cyj
+czb
+cAf
+cBc
+cCj
+cCX
+cEc
+cEW
+cFW
+cGT
+cHL
+bTs
+cJB
+cKz
+cLp
+cMe
+cMT
+cMT
+cMT
+cOV
+cMT
+cPR
+cQn
+cQK
+cPv
+aaa
+aaf
+cYF
+cZi
+cYO
+cYO
+cYO
+cYO
+cYO
+cYO
+cZp
+cYO
+cYO
+cYO
+cZt
+cYF
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(103,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaf
+aaf
+aaf
+abe
+aci
+aax
+aax
+aaL
+aax
+aax
+aax
+afc
+afW
+aax
+adY
+aiz
+ajt
+akB
+akA
+anm
+ajx
+apK
+arc
+asr
+anr
+auY
+awc
+axb
+ayy
+azF
+aBa
+aCm
+aDw
+aEO
+aGh
+aHx
+aaa
+aaa
+aLv
+aJS
+aNZ
+aPy
+aJS
+aJS
+aaa
+aUw
+aWb
+aXJ
+aZf
+baQ
+bci
+aaf
+bft
+bhi
+bja
+bjc
+bmz
+bos
+bqJ
+bsU
+buy
+bws
+bjc
+bzT
+bfv
+bDi
+bEO
+bzR
+bBz
+bBz
+bLw
+bNb
+bOy
+bQg
+bRx
+chw
+bTG
+aYX
+aXR
+bXQ
+bZb
+cao
+cbZ
+cdD
+ceJ
+cfZ
+che
+ciz
+cjV
+clv
+cmC
+cnK
+coW
+cqu
+cga
+csH
+ctC
+cux
+cvD
+cwE
+cxx
+cyk
+czc
+cAg
+ctB
+cCk
+cCY
+cEd
+cEX
+cFX
+cCe
+cxL
+bTs
+cJC
+cKA
+cLq
+cMf
+cMU
+cNN
+cOs
+cOW
+cMU
+cPS
+cQn
+cQM
+cPv
+aaa
+aaf
+cYF
+cZi
+cYO
+cZo
+cYF
+cZi
+cYO
+cZo
+cYF
+cZN
+cZN
+cYO
+cZs
+cZe
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(104,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaf
+aaa
+aaa
+ack
+aaa
+aaa
+aaf
+aaa
+aaf
+aaf
+aaf
+aaf
+aaf
+adY
+adY
+adY
+adY
+alV
+adY
+adY
+apL
+ard
+ass
+adY
+auW
+awd
+axf
+ahx
+ahx
+ahx
+ajm
+aDz
+aEP
+aGi
+aHy
+aaa
+aaa
+aLw
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aUv
+aWc
+aXK
+aZg
+baQ
+bci
+aaf
+bfu
+bhj
+bjb
+bjc
+bmA
+bot
+bqK
+bsU
+bux
+bwt
+bqM
+bqM
+bLT
+bDj
+bEN
+bGG
+bIi
+bJN
+bLv
+bNc
+bOz
+bQh
+bRy
+bSK
+bTO
+bVe
+bWr
+bXN
+bZa
+cap
+cca
+cdE
+ceK
+cfX
+chf
+ciA
+cjW
+clw
+cga
+cnL
+coX
+cnL
+cga
+cbC
+ctB
+cuy
+cvE
+ctB
+cxy
+cyl
+czd
+cAg
+ctB
+cCe
+cCe
+cEe
+cEY
+cCe
+cCe
+cgN
+bTs
+cJD
+cKB
+cLr
+cMg
+cMV
+cMV
+cMV
+cOX
+cMV
+cPT
+cQn
+cQK
+cPv
+aaa
+aaf
+cYF
+cZi
+cYO
+cZo
+cYY
+cZi
+cYO
+cZo
+cZr
+cZe
+cYF
+cZp
+cZr
+cZe
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(105,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaf
+ack
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aeq
+aeq
+aeq
+aeq
+aeq
+bgB
+akC
+alU
+ann
+adY
+apM
+ard
+ast
+adY
+auW
+awd
+axd
+ayw
+azH
+aAY
+aCk
+aDw
+aEO
+aGg
+aHx
+aIH
+aHx
+aLx
+aHx
+aHx
+aHx
+aHx
+aHx
+aIH
+aUB
+aWd
+aXL
+aZh
+baQ
+bci
+aaf
+bfv
+bhk
+bjc
+bjc
+bmB
+bou
+bqL
+bsV
+bux
+bwu
+bqM
+bzU
+bBH
+bDk
+bEP
+bGH
+bGH
+bJO
+bLw
+bTZ
+bOA
+bQi
+bRz
+bLw
+cMQ
+bVf
+bWs
+bXR
+bZe
+bZb
+ccb
+cdF
+bZa
+cga
+cfX
+cga
+cfX
+cga
+cga
+cnM
+coY
+coY
+cga
+csI
+ctD
+cuz
+cvF
+ctB
+ctB
+cym
+cze
+ctB
+cBd
+cCl
+cCZ
+cEf
+cEZ
+cFY
+bTs
+cHM
+ctH
+bTs
+cKC
+cLr
+cLm
+cLm
+cLm
+cLm
+cOq
+cLm
+cPQ
+cQn
+cQK
+cPv
+cPv
+cPv
+cZe
+cYS
+cYO
+cZo
+cYF
+cZi
+cYO
+cZo
+cZe
+cZO
+dac
+dah
+dav
+cZe
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(106,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaf
+aeq
+aeq
+afZ
+agR
+ahE
+aiA
+akD
+akD
+alU
+ano
+aov
+apN
+are
+asu
+atQ
+auZ
+awf
+axa
+ayA
+azE
+azE
+aCl
+aDx
+aEQ
+aGj
+aHz
+aII
+aJT
+aLy
+aMJ
+aHz
+aHz
+aQE
+aJT
+aII
+aUC
+aWe
+aXM
+aZi
+baR
+bci
+aaf
+bfw
+bhl
+bjb
+bjc
+bmC
+bjc
+bqM
+bsW
+buz
+bjc
+byf
+bzV
+bBI
+bDk
+bEP
+bGI
+bGH
+bJP
+bLw
+bNe
+bOB
+bQj
+bRA
+bSI
+bTP
+bVg
+bWt
+bXS
+bZf
+caq
+caq
+cdG
+caq
+cgb
+chg
+chg
+chg
+clx
+cmD
+cnN
+coZ
+coZ
+crF
+csJ
+ctE
+cuA
+cuA
+cwF
+cxz
+cyn
+czf
+cAh
+cBe
+chg
+chg
+cEg
+cFa
+cFZ
+cGU
+cHN
+cIE
+cJE
+cKD
+cLs
+cMh
+cMW
+cMh
+cMh
+cOY
+cPs
+cPU
+cQp
+cQN
+cQY
+cQK
+cQY
+cYJ
+cYO
+cYO
+cZo
+cYZ
+cZi
+cYO
+cZo
+cYF
+cZP
+cYX
+cYV
+cZB
+cZe
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(107,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aeq
+aeq
+aff
+afY
+afY
+ahD
+ahP
+ajv
+akE
+alW
+anp
+aow
+ans
+arf
+asv
+atR
+azb
+azq
+axg
+ayy
+azF
+aBb
+aCm
+aDw
+aEN
+aGk
+aHA
+aIJ
+aJU
+aGk
+aHA
+aHA
+aPz
+aJU
+aRW
+aTj
+aUD
+aWf
+aXN
+aZj
+baS
+bci
+aaf
+bfs
+bhm
+bjd
+bkF
+bmD
+bov
+bqN
+bsX
+buA
+bjc
+byg
+bzW
+bBJ
+bDl
+bEQ
+bGJ
+bIj
+bJQ
+bLx
+bNf
+bOz
+bQk
+bRB
+bSI
+bTP
+bVh
+bWu
+aWf
+bZg
+car
+car
+cdH
+ceL
+ceL
+ceL
+ceL
+ceL
+ceL
+ceL
+cnO
+ceL
+ceL
+crG
+csK
+ctF
+car
+car
+car
+cxA
+car
+czg
+cAi
+ctF
+car
+car
+czg
+cFb
+car
+car
+cHO
+cIF
+cJF
+cKE
+cLt
+cMi
+cMX
+cNO
+cOt
+cOZ
+cPt
+cLm
+cQn
+cQO
+cPv
+cPv
+cPv
+cYF
+cZi
+cYO
+cZo
+cYF
+cZi
+cYO
+cZo
+dax
+cZU
+cYV
+cYV
+cZb
+cYF
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(108,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aeq
+aes
+afh
+agb
+agT
+ahG
+aiC
+ajw
+akF
+alZ
+anq
+aov
+aoy
+arg
+asw
+anr
+auW
+awg
+axh
+ahx
+ahx
+ahx
+ajm
+aDA
+aER
+aGl
+aHB
+aIK
+aJV
+aIK
+aHB
+aHB
+aPA
+aJV
+aHB
+aHB
+aUE
+aWg
+aXO
+aZk
+baT
+bci
+aaf
+bfu
+bhn
+bjb
+bjc
+bmB
+bow
+bqM
+bsY
+buB
+buE
+byh
+bzX
+bBK
+bDm
+bER
+bGK
+bGH
+bJO
+bLw
+bNg
+bOC
+bQl
+bRC
+bSI
+bTQ
+bVi
+bWv
+bXT
+bZh
+cas
+cas
+cdI
+cas
+cgc
+chh
+chh
+chh
+cly
+cmE
+cnP
+cpa
+cpa
+crH
+csL
+ctG
+cgc
+cvG
+chh
+cxB
+cyo
+czh
+cAj
+ctG
+cCm
+cpa
+cEh
+cFc
+chh
+chh
+cvG
+cIG
+cJG
+cKF
+cLu
+cMj
+cMY
+cMT
+cOu
+cPa
+cPu
+cPV
+cQq
+cQP
+cQY
+cRt
+cQY
+cYH
+cYO
+cYO
+cYO
+cYO
+cYO
+cYO
+cYO
+cZC
+cZW
+cYV
+cYX
+cYW
+cYF
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(109,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+adD
+aeq
+aer
+afg
+aga
+agS
+ahF
+aeq
+ajx
+akG
+ama
+anr
+adY
+adY
+arh
+aoA
+adY
+avb
+awh
+axi
+ayB
+azI
+aBc
+aCn
+aDB
+aES
+aGm
+aHC
+aHD
+aJW
+aHD
+aHD
+aHD
+aHD
+aQF
+aRX
+aTk
+aUF
+aWh
+aXP
+aZl
+baT
+bci
+aaf
+bfv
+bho
+bjc
+bjc
+bmB
+box
+bqO
+bsZ
+bsU
+bwv
+byi
+bzY
+bBL
+bDk
+bEP
+bGH
+bGH
+bJP
+bLw
+bTZ
+bOz
+bQg
+bRD
+bLw
+bTP
+bVj
+bWw
+bXU
+bZi
+bZk
+ccc
+ccc
+bZj
+cgd
+cge
+cgd
+cge
+cgd
+cgd
+cnQ
+cpb
+cqv
+cgd
+csM
+ctH
+bTs
+cvH
+cvH
+cxC
+cyp
+cvH
+cAk
+cBf
+cvH
+cqv
+cEi
+cCq
+cCq
+cCq
+cCq
+cIH
+cCq
+cCq
+cLv
+bTs
+cMZ
+cNP
+cOv
+cPb
+cPv
+cPb
+cPv
+cPb
+cPv
+cPv
+cPv
+cZe
+cYO
+cYO
+cYO
+cYO
+cYO
+cYO
+cYO
+cZC
+cZW
+cYV
+cYV
+daw
+cZe
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(110,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aeq
+aex
+afg
+agd
+agU
+ahH
+aeq
+ajy
+akH
+amb
+ans
+amf
+ajz
+ajz
+ajz
+atS
+auW
+awi
+axj
+ajo
+azJ
+aBd
+aCo
+aDC
+aET
+aGn
+aHD
+aIL
+aJX
+aLz
+aMK
+aOf
+aPB
+aQG
+aRY
+aTl
+aHD
+aWi
+aXQ
+aZm
+baT
+bci
+aaf
+bfw
+bhp
+bjb
+bjc
+bmE
+boy
+bqP
+bsU
+bsU
+bww
+byj
+bqM
+bLT
+bDn
+bES
+bGL
+bIk
+bJR
+bLv
+bNi
+bOD
+bQm
+bRE
+bSM
+bTR
+bVk
+bWx
+bXV
+bZj
+cat
+ccd
+ccd
+ceM
+cgd
+chi
+ciB
+cjX
+clz
+cgd
+cnR
+cpc
+cqw
+cgd
+csN
+cLD
+cuB
+cvI
+cwG
+cxD
+cyq
+czi
+cAl
+cBg
+cCn
+cDa
+cEj
+cCq
+cGa
+cGV
+cHP
+cII
+cJH
+cCq
+cLw
+bTs
+cNa
+cNQ
+cOw
+cPb
+aaf
+aaa
+aaa
+aaf
+aaa
+aaa
+aaf
+cZe
+cYN
+cYM
+cYN
+cYO
+cZu
+cYO
+cYR
+cZg
+cZX
+cZW
+cZW
+cYU
+cZe
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(111,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aav
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aav
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aeq
+aeq
+afX
+agc
+agc
+agc
+ajs
+ajz
+akI
+amc
+ant
+ame
+apO
+ari
+asx
+aiB
+avc
+awj
+axk
+ayC
+azK
+aBe
+aCp
+aDD
+aEU
+aGo
+aHD
+aIM
+aIR
+aIR
+aML
+aOg
+aPB
+aQH
+aQH
+aIT
+aHD
+aWj
+aXR
+aYX
+baT
+bci
+aaf
+bft
+bhq
+bje
+bjc
+bmz
+bos
+bqQ
+bsU
+buC
+bwx
+byk
+bzZ
+bfv
+bDo
+bET
+bzR
+bIl
+bIl
+bLw
+bNj
+bOE
+bQn
+bRF
+chw
+bTS
+aYX
+aXR
+bXW
+bZk
+cau
+cce
+ccd
+ceN
+cgd
+chj
+ciC
+cjY
+clA
+cmF
+cnS
+cpd
+cqx
+cgd
+cLh
+ctJ
+cuC
+cvH
+cwH
+cxE
+cyr
+cwH
+cAm
+cBg
+cCo
+cDb
+cEk
+cFd
+cGb
+cGb
+cHQ
+cIJ
+cYc
+cCq
+cLx
+bTs
+cNb
+cLm
+cOx
+cPc
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+cZe
+cZe
+cYF
+cZe
+cYF
+cZe
+cYF
+cZe
+cZe
+cZe
+cYF
+cYF
+cZe
+cZe
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(112,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aac
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaf
+aeq
+aeq
+agQ
+ahC
+ahI
+aeq
+ajA
+akJ
+amc
+anu
+aoz
+apQ
+arj
+asz
+ahB
+avd
+awk
+axl
+ahx
+ahx
+ahx
+ajm
+aDE
+aEV
+aGp
+aHE
+aIN
+aJY
+aLA
+aMM
+aOh
+aPB
+aQH
+aQH
+aTm
+aHD
+aWk
+aXS
+aYX
+baT
+bci
+aaf
+bft
+bhr
+bjf
+bkG
+bmF
+boz
+bqR
+bsU
+bsU
+bsU
+byl
+bsU
+bfv
+bDp
+bEU
+bGF
+aaf
+aaf
+bLv
+bNk
+bOF
+bQo
+bRG
+bSI
+bTS
+aYX
+aXR
+bXV
+bZj
+cav
+ccf
+ccd
+ceO
+cgd
+chk
+ciD
+cjZ
+clB
+cmG
+cnT
+cpe
+cqy
+cgd
+csO
+cMc
+cuD
+cvH
+cwI
+cxF
+cyr
+czj
+cAn
+cBh
+cCp
+cDc
+cEl
+cFe
+cGc
+cFg
+cHR
+cIK
+cJJ
+cCq
+cgM
+bTs
+cNc
+cNR
+cOy
+cPd
+aaa
+aaa
+aaf
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(113,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaf
+aaf
+aeq
+aeq
+aeq
+aeq
+aeq
+adY
+akK
+alX
+ahB
+aoA
+ahB
+ark
+asA
+ahB
+ave
+awl
+axm
+ajo
+azL
+aBf
+ajm
+aDF
+aEW
+aGq
+aHE
+aIO
+aJZ
+aIR
+aIR
+aOi
+aPB
+aQH
+aQH
+aTn
+aHD
+aHD
+aXS
+aYX
+baT
+bci
+aaf
+bfx
+bhs
+bfv
+bkH
+bmG
+boA
+bqS
+bta
+buD
+bwy
+bym
+bAa
+bBM
+bDq
+bEV
+bGM
+bGM
+bJS
+bGM
+bNl
+bNl
+bNl
+bNl
+bGM
+bTT
+aYX
+bWy
+bXX
+bZl
+caw
+ccg
+cdJ
+ceP
+cgd
+chl
+ciE
+cka
+clC
+cmH
+cnU
+cpf
+cqz
+cgd
+csP
+bTs
+cuE
+cvH
+cwJ
+cxG
+cys
+czk
+cAo
+cBi
+cCn
+cDd
+cEm
+cFf
+cFg
+cFh
+cHR
+cIL
+cJK
+cCq
+cgM
+bTs
+cNd
+cNS
+cOz
+cPb
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(114,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaf
+aaf
+aaf
+aaf
+aaf
+aiD
+ajB
+akL
+amd
+anv
+aoB
+apR
+arl
+asy
+ajD
+avf
+awd
+axn
+ayD
+azM
+aBg
+ayD
+aDG
+aEX
+aGr
+aHE
+aIP
+aKa
+aLB
+aMN
+aOj
+aPC
+aIT
+aRZ
+aIT
+aUG
+aHD
+aXS
+aYX
+baT
+bci
+aaf
+aaf
+aaf
+biY
+bkI
+bmH
+boB
+bqT
+btb
+buE
+bwz
+byn
+bAb
+bBE
+bDr
+bEW
+bGN
+bIm
+bJT
+bLy
+bNm
+bOG
+bQp
+bRH
+bGM
+bTU
+bVl
+bWz
+bXY
+bZm
+cax
+cch
+cdK
+ceQ
+cge
+chk
+ciF
+ckb
+clD
+cmI
+cnV
+cpg
+cqA
+crI
+csQ
+ctL
+ctL
+ctL
+ctL
+ctL
+ctL
+ctL
+ctL
+ctL
+cCq
+cDe
+cEm
+cFg
+cFg
+cFg
+cHR
+cIM
+cJL
+cKG
+cLy
+bTs
+bTs
+bTs
+bTs
+bTs
+aaa
+aaa
+aaa
+aaf
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(115,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaf
+adZ
+adZ
+age
+agV
+adZ
+adZ
+ajC
+akM
+alY
+cZR
+cZR
+cZR
+arm
+asC
+atT
+auY
+awm
+axo
+ayE
+azN
+aBh
+aCq
+aDH
+aEY
+aGs
+aHE
+aIQ
+aKb
+aIR
+aIR
+aOi
+aPB
+aQH
+aQH
+aIT
+aUH
+aTk
+aXT
+aZn
+baT
+bci
+aaf
+aaf
+aaf
+bfv
+bfv
+bfv
+boC
+bqU
+bfv
+bcj
+bcj
+byo
+bcj
+bBN
+bDs
+bEX
+bGO
+bIn
+bJU
+bLz
+bLz
+bLz
+bQq
+bRI
+bGM
+bTV
+bVm
+bWA
+bXV
+bZj
+cay
+cci
+cdL
+ceR
+cgf
+chm
+ciG
+ckc
+clE
+cmJ
+cnW
+cph
+cqB
+cJm
+csR
+ctL
+cuF
+cvJ
+cwK
+cxH
+cyt
+czl
+cAp
+cBj
+cCq
+cDf
+cEm
+cFh
+cGd
+cGW
+cHS
+cIN
+cJM
+cCq
+cgM
+cwc
+cNe
+cNT
+cNe
+ack
+ack
+aaf
+aaf
+aaf
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(116,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaa
+adZ
+adZ
+afi
+agf
+agW
+ahJ
+adZ
+ajD
+akN
+amg
+anw
+aoC
+apS
+arn
+asD
+atU
+avg
+awn
+axp
+ajo
+azO
+aBi
+ajm
+ajm
+ajm
+ajm
+aHE
+aIR
+aKc
+aLC
+aMO
+aOk
+aPB
+aQH
+aQH
+aTo
+aUI
+aWl
+aXU
+aZo
+baU
+bcj
+bcj
+bcj
+bcj
+bcj
+bkJ
+bcj
+bcj
+bcj
+bcj
+buF
+bwA
+bfA
+bAc
+bcj
+bDj
+bEY
+bGP
+bIo
+bJV
+bLA
+bNn
+bOH
+bQr
+bRJ
+bGM
+bTW
+aYX
+bWA
+bXV
+bZk
+caz
+cci
+cdM
+ceS
+cgg
+cgd
+cgd
+ckd
+cgd
+cgd
+cnX
+cIm
+cnX
+cgd
+csS
+ctM
+cuG
+cvK
+cuG
+cxH
+cyu
+czm
+cAq
+cBk
+cCq
+cDg
+cEn
+cFi
+cGe
+cGX
+cHT
+cFh
+cFh
+cKH
+cLz
+cMk
+bTs
+bTs
+bTs
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(117,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+adZ
+aet
+afj
+agg
+agX
+ahK
+aiE
+ajE
+akO
+amh
+amh
+aoD
+apT
+aro
+asE
+atV
+avh
+awo
+axq
+ajo
+azP
+aBj
+aCr
+avk
+avk
+avk
+aHD
+aIS
+aKd
+aIR
+aMP
+aOl
+aPD
+aQI
+aSa
+aTp
+aIT
+aTk
+aXS
+aYX
+baV
+bcj
+bdH
+bfy
+bht
+bjg
+bkK
+bjg
+boD
+bqV
+btc
+buG
+bwB
+byp
+bAd
+byo
+bDt
+bEZ
+bGM
+bIp
+bJW
+bLB
+bNo
+bOI
+bQs
+bRK
+bGM
+bTX
+aYX
+bWB
+bXZ
+bZj
+caA
+ccj
+cdN
+ceT
+cgh
+cAM
+ciH
+cke
+clF
+dbH
+cnY
+cpj
+cqC
+cgo
+cLB
+ctL
+cuH
+cuG
+cwL
+cxI
+cyu
+czn
+cAr
+cBl
+cCq
+cQD
+cEo
+cFj
+cGf
+cGY
+cHU
+cIO
+cJN
+clK
+cgN
+cMl
+bTs
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaa
+aaa
+aaf
+aaf
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(118,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aea
+aeu
+afk
+agh
+agY
+ahL
+aiF
+ajF
+akP
+ami
+anx
+amh
+apU
+arp
+asF
+atT
+auW
+awp
+axr
+ayF
+ayF
+ayF
+ayF
+ayJ
+ayJ
+aGt
+aHF
+aIT
+aKe
+aIR
+aIR
+aOm
+aPB
+aQJ
+aIT
+aIT
+aUJ
+aHD
+aXS
+aYX
+baW
+bck
+bdI
+bfz
+bhu
+bjg
+bkL
+bjg
+boE
+bqW
+btd
+buH
+bwC
+byq
+bfA
+bcj
+bDu
+bFa
+bGM
+bGM
+bJX
+bLC
+bGM
+bOJ
+bQt
+bLC
+bGM
+bTY
+aZa
+bWC
+bSS
+bZn
+caB
+ccj
+cdO
+ceU
+cgi
+cDh
+ciI
+ckf
+clG
+dbI
+cnZ
+cpk
+cqD
+cgo
+csU
+ctL
+ctL
+cvL
+ctL
+ctL
+ctL
+cvL
+cAs
+cBm
+cCq
+cDi
+cDi
+cDi
+cDi
+cGZ
+cHV
+cIP
+cCq
+clK
+cLA
+bTs
+bTs
+aaa
+aaf
+aaa
+aaa
+aaa
+cRu
+cRi
+cRi
+cRi
+cRi
+aaf
+aaa
+aaf
+aaf
+aaa
+aaa
+aaf
+aaf
+aaf
+aaa
+aaf
+aaf
+aaf
+aaa
+aaa
+aaf
+aaf
+aaf
+aaf
+aaf
+aaa
+aaf
+aaf
+aaa
+aaf
+aaf
+aai
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(119,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aav
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aeb
+aev
+afl
+agi
+agZ
+ahM
+aiG
+ajG
+akQ
+amj
+any
+aoE
+apV
+arq
+asG
+ajD
+auW
+awp
+axs
+ayF
+azQ
+aBk
+aCs
+aDI
+ayJ
+ayJ
+aHD
+aHD
+aHD
+aHD
+aMQ
+aHD
+aHD
+aHD
+aRX
+aTk
+aHD
+aHD
+aXV
+aZa
+baX
+bcj
+bdJ
+bfA
+bhv
+bjg
+bkM
+bjg
+boF
+bqX
+bte
+bfA
+bwD
+byr
+bAe
+bcj
+bDj
+bFb
+bGQ
+bGM
+bJY
+bLD
+bNp
+bOK
+bQu
+bRL
+bSO
+bTI
+aYX
+bWB
+aVU
+bZo
+bZo
+cck
+cdP
+bZo
+bZo
+chp
+ciJ
+ckg
+clH
+bZn
+coa
+cpl
+cqE
+crK
+csV
+ctN
+cuI
+cvM
+cwM
+caw
+cyv
+czo
+cAt
+cBn
+cCr
+cDj
+caw
+cFk
+cGg
+cHa
+cHW
+cIQ
+cJO
+cKI
+cQr
+cQR
+cRa
+cRe
+cRe
+cRe
+cRe
+cRe
+cRi
+dbX
+dcg
+dcs
+cRi
+dcE
+cRi
+cRi
+cRi
+cRi
+cRi
+cRi
+cRi
+cRi
+cRi
+cRi
+cRi
+cRi
+cRi
+cRi
+cRi
+cRi
+cRi
+aaf
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaf
+aaa
+aag
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(120,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aav
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aec
+aew
+afm
+agj
+aha
+ahN
+aiH
+ajH
+akR
+amk
+bnh
+aoF
+apW
+arp
+asH
+atW
+auW
+awq
+axq
+ayG
+azR
+aBl
+aCt
+aDJ
+aEZ
+aGu
+aHG
+aIU
+aKf
+aLD
+aMR
+aOn
+aHG
+aQK
+aLK
+aLK
+aLK
+aSe
+aXS
+aZp
+baT
+bcj
+bdK
+bfB
+bhw
+bjh
+bkN
+bmI
+boG
+bqY
+btf
+buI
+bwE
+bys
+bAf
+bcj
+bDv
+bFc
+bGR
+bGM
+bJZ
+bLE
+bNq
+bOL
+bQv
+bRL
+bSO
+bTI
+aYX
+bWB
+aVW
+bZo
+caC
+ccl
+cdQ
+ceV
+cgj
+chq
+ciK
+ckh
+clI
+bZn
+cob
+cpm
+cqF
+crL
+csW
+ctO
+cuJ
+cvN
+cwN
+cwN
+cyw
+czp
+cAu
+cBo
+crL
+cwN
+cwN
+cFl
+cGh
+cHb
+cHX
+cIR
+cJP
+cPX
+cQt
+cQZ
+cRc
+cRf
+cYT
+cRg
+cYT
+cYT
+cRv
+dbY
+dch
+dct
+dcz
+dcF
+cRi
+cSh
+cSp
+cSy
+cSd
+cSh
+dbo
+cSy
+cSd
+cSh
+dbs
+cSn
+cRi
+dde
+ddj
+cTp
+cRi
+cRi
+cRi
+cRi
+cRi
+cRi
+cRi
+cRi
+cRi
+aaa
+aaa
+aai
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+dbD
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(121,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaa
+adZ
+afe
+afn
+agk
+agX
+ahO
+aiI
+ajI
+akS
+aml
+anA
+aoG
+bni
+arr
+asI
+atX
+auY
+awr
+axt
+ayH
+azS
+aBm
+aCu
+aDK
+aFa
+aGv
+aHG
+aIV
+aKg
+aLE
+aMS
+aOo
+aPE
+aQL
+aSb
+aTq
+aUK
+aWm
+aXW
+aZq
+baY
+bcj
+bdL
+bfA
+bhx
+bji
+bkO
+bjg
+boH
+bqZ
+btg
+buJ
+bwF
+byt
+bAg
+bck
+bDw
+bFd
+bGS
+bGM
+bKa
+bLF
+bNr
+bOM
+bQw
+bRM
+bSO
+bTI
+aYX
+bWB
+aVW
+bZo
+caD
+ccm
+cdR
+ceW
+cgk
+chp
+cgo
+cgo
+cgo
+cgo
+coc
+cpn
+cqG
+crM
+csX
+ctP
+cuK
+cvO
+cwO
+cxJ
+cyx
+czq
+cAv
+cBp
+cCs
+ctP
+cEp
+cFm
+cGi
+cHc
+cHY
+cIS
+cJQ
+cgo
+cQs
+cQS
+cRb
+cRe
+cRe
+cRe
+cRe
+cRe
+cRi
+dbZ
+dci
+dcu
+cRi
+cRe
+cRi
+cSg
+cSo
+cSn
+cSd
+cSg
+cSo
+cSn
+cSd
+cSg
+cSo
+cSn
+cRi
+cTA
+cTn
+cTC
+cTC
+cTC
+cTC
+cTC
+cTC
+cTC
+daO
+bIx
+cRi
+aaf
+aaf
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(122,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+adZ
+adZ
+afo
+agl
+ahb
+auX
+adZ
+ajD
+akT
+amm
+anB
+aoH
+apY
+arp
+asJ
+ajD
+auW
+aws
+axu
+ayI
+azT
+aBn
+aCv
+aDL
+ayJ
+ayJ
+aHG
+aIW
+aKh
+aKh
+aMT
+aOp
+aPF
+aQM
+aSc
+aTr
+aOx
+aWn
+aXX
+aYX
+baU
+bcj
+bdM
+bfC
+bhy
+bjj
+bkO
+bjg
+bjg
+bcj
+bcj
+bcj
+bwG
+bcj
+bcj
+bcj
+bDj
+bEW
+bGM
+bGM
+bGM
+bGM
+bGM
+bGM
+bQx
+bGM
+bGN
+bTJ
+aYX
+bWD
+bYa
+bZo
+caE
+ccn
+cdS
+ceX
+cgl
+bZo
+cdm
+cki
+clJ
+cmL
+ccd
+cpo
+cqH
+crN
+csY
+csY
+cuL
+cvP
+crQ
+crQ
+cyy
+czr
+cAw
+cBq
+cyy
+cyK
+cyK
+cAP
+cyK
+cHd
+cHZ
+cIT
+cIT
+cIg
+cLA
+bTs
+bTs
+aaa
+aaf
+aaa
+aaa
+aaa
+cRw
+cRi
+dcj
+cRx
+cRi
+cRD
+cSd
+cSg
+cSn
+cSn
+cSd
+cSg
+cSn
+cSn
+cSd
+cSg
+cSn
+cSn
+cRi
+cRi
+cTq
+cRi
+cRi
+cRi
+cRi
+cRi
+cRi
+cRi
+daP
+cLE
+cRi
+aaa
+aaa
+aaf
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(123,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+adZ
+adZ
+agm
+agV
+adZ
+adZ
+ajJ
+akU
+amn
+dap
+dap
+dap
+ars
+asK
+atY
+avi
+awt
+axv
+ayF
+azU
+aBo
+aCw
+aDM
+aFb
+aGw
+aHG
+aIX
+aKi
+aLF
+aMU
+aOq
+aPG
+aQN
+aSd
+aTs
+aUL
+aSe
+aXS
+aYX
+baT
+bcj
+bdN
+bfD
+bhz
+bjk
+bkP
+bjg
+boI
+bcj
+bth
+buK
+bwH
+byu
+bAh
+bBO
+bDx
+bFe
+bGT
+bIq
+bKb
+bLG
+bNs
+bON
+bQy
+bRN
+bSP
+bUa
+bVn
+bWE
+bSS
+bZo
+bZo
+bZo
+bZo
+bZo
+bZo
+bZo
+ciL
+ckj
+clK
+cgo
+cod
+cpp
+cqI
+crO
+csZ
+ctQ
+cuM
+cvQ
+cwP
+crQ
+cyz
+czs
+cAx
+cFr
+cCt
+cyK
+cEq
+cEq
+cEq
+cHe
+cIa
+cIU
+cJR
+cIg
+cLw
+cdm
+bTs
+aaa
+aaf
+aaa
+aaa
+aaf
+cRi
+cRh
+dck
+cRz
+cRB
+cRN
+cSd
+cRU
+cSq
+cRZ
+cSd
+dcP
+cSN
+cSD
+cSd
+dcU
+cTc
+dcX
+cSd
+ddf
+ddk
+cTj
+cTD
+cRi
+cSn
+daF
+daJ
+cRi
+bvT
+cRi
+cRi
+cRi
+cRi
+aaa
+aai
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(124,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aiD
+ajK
+akV
+amo
+anC
+aoI
+apZ
+art
+asL
+aqa
+ajm
+awu
+axw
+ayF
+azV
+aBp
+aCx
+aDN
+ayJ
+aGx
+aHH
+aIY
+aKj
+aLG
+aMV
+aOr
+aHG
+aQO
+aOu
+aTt
+aUM
+aWo
+aXS
+aYX
+baT
+bcj
+bcj
+bcj
+bcj
+bcj
+bcj
+bcj
+bcj
+bcj
+bti
+bcg
+bcg
+bcg
+bcg
+bBP
+bDy
+bFf
+bGU
+bcg
+bcg
+bcg
+bcg
+bcg
+bcg
+bcg
+bcg
+bTS
+aYX
+bWF
+bYb
+bZp
+cri
+crJ
+cdT
+ceY
+cgm
+chr
+ciM
+ckk
+clL
+cmM
+coe
+cpq
+cqJ
+crP
+cuN
+ctR
+cuN
+cvR
+cwQ
+crQ
+cyA
+czt
+cAy
+cBs
+cCt
+cyK
+cEr
+cEr
+cEr
+cHe
+cIb
+cIV
+cJS
+cIg
+cgM
+bZT
+bTs
+aaf
+aaf
+aaf
+aaa
+aaa
+cRi
+dca
+dcl
+cRy
+cRA
+cRM
+cRa
+cSj
+cSs
+cSB
+cSI
+cSj
+cSO
+cSS
+cSI
+cSj
+cTb
+cST
+cSd
+cSL
+cVa
+cTr
+cRY
+daC
+cSn
+cSn
+cSn
+cRi
+bvT
+cRi
+cZv
+cZv
+cRi
+aaf
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(125,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aey
+aey
+aez
+aey
+aey
+aiJ
+aiJ
+akW
+amp
+aiJ
+aoJ
+aqa
+aru
+aqa
+aqa
+avj
+awv
+axx
+ayJ
+ayJ
+ayJ
+ayJ
+ayJ
+ayJ
+aoR
+aHG
+aHG
+aHG
+aHG
+aHG
+aHG
+aHG
+aQP
+aSe
+aTu
+aUM
+aWp
+aXS
+aYX
+baZ
+bcl
+bdO
+bfE
+bhA
+bjl
+bkQ
+bmJ
+boJ
+bra
+btj
+buL
+bdO
+byv
+bcl
+bBQ
+bDz
+bFg
+bGV
+bGV
+bKc
+bLH
+bNt
+bOO
+bQz
+bRO
+bSQ
+bUb
+bVb
+bWG
+bSS
+bSS
+bSS
+bSS
+bSS
+ceZ
+cgn
+bTs
+bZS
+ckl
+cAR
+cgo
+cof
+cpr
+cci
+crQ
+ctb
+ctS
+cuO
+cvS
+cwR
+crQ
+cyB
+czu
+cAz
+cBt
+cCu
+cyK
+cEs
+cFn
+cFn
+cHe
+cIc
+cIW
+cJT
+cIg
+cQu
+cMp
+ckN
+aaa
+aaa
+aaf
+aaf
+aaf
+cRe
+cRS
+dcm
+dcv
+cRC
+dcG
+cSe
+cSi
+cSr
+cSA
+cSG
+cSK
+cSr
+cSA
+cSW
+cSK
+cSr
+dcY
+ddc
+cSk
+ddl
+cTk
+cTm
+daB
+daB
+daG
+cSn
+cRi
+ddx
+ddz
+daR
+cZv
+cRe
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(126,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aav
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aey
+afp
+agn
+agn
+agn
+aiK
+ajL
+akX
+amq
+aiJ
+aoK
+aqa
+arv
+asM
+atZ
+avk
+aww
+axy
+ahx
+azW
+aBq
+aCy
+aDO
+aCy
+aGy
+aCy
+aIZ
+aKk
+aLH
+aMW
+aOs
+aPH
+aQN
+aOu
+aTt
+aUM
+aWq
+aXY
+aZr
+bba
+baG
+bdP
+baG
+bhB
+bjm
+bkR
+aWf
+aWf
+brb
+btk
+aWf
+bwI
+aWf
+aWf
+bBR
+bDA
+bFh
+bGW
+bIr
+bwI
+aWf
+aWf
+aWf
+aWf
+aWf
+aWf
+aWf
+bVo
+bWH
+bYc
+bZq
+caG
+ccp
+bSS
+ceZ
+cgo
+cgo
+cgo
+cgo
+cgo
+cgo
+ccd
+cps
+cci
+crQ
+ctc
+ctT
+cuP
+cvS
+cwS
+crQ
+cyC
+czv
+cAA
+cBu
+cCv
+cyK
+cEt
+cFn
+cGj
+cHe
+cId
+cIX
+cJU
+cIg
+cLF
+bTs
+bTs
+bTs
+bTs
+bTs
+bTs
+aaf
+cRe
+cRS
+dcn
+dcw
+cRk
+dcH
+cSf
+cSl
+cSu
+cSa
+cSJ
+cSJ
+cUM
+cUN
+cSJ
+cSJ
+cSJ
+cSV
+cSJ
+cSX
+ddm
+cTt
+daA
+cSn
+cSn
+cSo
+daL
+cRi
+daQ
+ddA
+daS
+dbv
+cTT
+ddC
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(127,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aav
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aez
+afq
+ago
+ahc
+ahc
+aiL
+ajM
+akY
+amr
+anD
+aoL
+ajD
+arv
+asN
+atZ
+avk
+awx
+axz
+ahx
+azX
+aoP
+agq
+axC
+axC
+axC
+axC
+axC
+axC
+aZU
+aMX
+aOt
+aOt
+aQQ
+aOt
+aTv
+aUM
+aWr
+aXZ
+aZs
+bbb
+bcm
+bdQ
+bfF
+bhC
+bjn
+bkS
+bmK
+boK
+brc
+brc
+buM
+bwJ
+byw
+byw
+byw
+bDB
+bFi
+bGX
+bIs
+bKd
+bIs
+bNu
+bIs
+bIs
+bIs
+bSR
+bUc
+bVp
+bWI
+bYd
+bZr
+caH
+ccq
+bSS
+ceZ
+cgo
+chs
+ciN
+ckm
+clN
+bZn
+cog
+cpr
+cqK
+crQ
+ctd
+ctU
+cuQ
+cvT
+cwT
+crQ
+cyD
+czw
+cAA
+cBv
+cCw
+cyK
+cEu
+cFo
+cEu
+cHe
+cIe
+cIY
+cJV
+cIg
+cPe
+bTs
+cNi
+cgs
+cOB
+cPf
+bTs
+aaf
+cRe
+cRS
+dco
+dcx
+dcA
+dcI
+cRR
+cRV
+cRX
+cSb
+dcO
+dcQ
+cRX
+cSb
+dcT
+dcQ
+cRX
+dcZ
+ddd
+cTa
+ddn
+cTs
+ddu
+daD
+cSn
+daH
+daK
+cRi
+bIv
+ddz
+ddB
+cZv
+cRe
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(128,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aey
+afr
+agp
+agp
+agp
+aiM
+ajN
+akZ
+ams
+aey
+aoM
+ajD
+arw
+asM
+atZ
+avk
+awy
+axA
+ahx
+aEC
+aoP
+agq
+aDP
+axC
+aGz
+axC
+aJa
+axC
+bbG
+aMY
+aOu
+aOv
+aQR
+aOv
+aTw
+alq
+aWs
+alq
+aZt
+aZt
+aZt
+aZt
+bfG
+bhD
+bjo
+bkT
+bmL
+boL
+bmO
+bmM
+bmO
+bmP
+bDL
+bmP
+bBS
+bDC
+bFj
+bGY
+bmP
+bSN
+bKe
+bNv
+bOP
+bOP
+bKe
+bSS
+bUd
+bVq
+bWJ
+bYc
+bZs
+caI
+ccr
+bSS
+cfa
+cgo
+cht
+ciO
+ckn
+clO
+cmN
+coh
+cpt
+cqL
+crQ
+cte
+ctV
+cuR
+cvU
+cwU
+crQ
+cyE
+czx
+cAB
+cBw
+cCx
+cDk
+cEv
+cFp
+cGk
+cHf
+cIf
+cIZ
+cJW
+cIg
+cgM
+bTs
+cNj
+bXE
+bXE
+cPg
+bTs
+aaa
+cRi
+dcb
+cZa
+cSt
+dcB
+dcJ
+cRa
+cSm
+cSw
+cSE
+cSI
+cSM
+cSR
+cSE
+cSI
+dcV
+cTe
+dda
+cSd
+cSZ
+ddn
+cTz
+ddv
+daC
+cSn
+cSn
+daN
+cRi
+cTA
+cRi
+cZv
+dbw
+cRi
+aaa
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(129,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aac
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aey
+aey
+aez
+aey
+aey
+aey
+aey
+aey
+aey
+aey
+aoN
+ajD
+arx
+asO
+ajD
+avk
+awz
+axB
+ahx
+azY
+aoP
+agq
+aDQ
+axC
+aGA
+axC
+aJb
+axC
+bah
+aMY
+aOv
+aOw
+aQR
+aOu
+aTx
+alq
+aWt
+aYa
+aZt
+bbc
+bcn
+bdR
+aZt
+bhE
+bjp
+bkU
+bmM
+boM
+brd
+btl
+bmO
+bwK
+bwO
+bAi
+bBT
+bwO
+bFk
+bGZ
+bIt
+bKe
+bLI
+bNw
+bOQ
+bQA
+bRP
+bST
+bUe
+bVr
+bWK
+bST
+bUe
+caJ
+bUe
+bST
+ceZ
+cgo
+chu
+ciP
+cko
+clP
+cmO
+coi
+cpu
+cqM
+crR
+crR
+crR
+crR
+crR
+crR
+crR
+cyF
+czy
+cAC
+cBx
+cCy
+cDl
+cEu
+cFq
+cEu
+cHe
+cIg
+cIg
+cIg
+cIg
+cgM
+bTs
+cNk
+bXE
+bXE
+cPh
+bTs
+aaa
+cRi
+dcc
+dcp
+cSt
+cSt
+dcK
+cSd
+cRW
+cSv
+cSc
+cSd
+dcR
+cSQ
+dcS
+cSd
+dcW
+cTg
+ddb
+cSd
+ddg
+ddo
+dds
+cTD
+cRi
+daE
+daI
+daM
+cRi
+cTA
+cRi
+cRi
+cRi
+cRi
+aaf
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(130,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaf
+aaa
+aaa
+agq
+ahQ
+agq
+ajO
+ala
+amt
+agq
+anz
+ajD
+ajD
+ajD
+ajD
+ahx
+ahx
+ahx
+ahx
+aGE
+aBr
+aCz
+aDR
+aFc
+aGB
+aHI
+aFd
+aKl
+aLK
+aMY
+aOw
+aPI
+aQS
+aSf
+aTy
+alq
+alq
+aYb
+aZt
+bbd
+bco
+bdS
+bfH
+bhF
+bjq
+bkV
+bmN
+boN
+bre
+btm
+bmO
+bwL
+byy
+bAj
+bBT
+bDD
+bFl
+bHa
+bIu
+bKe
+bLJ
+bNx
+bOR
+bQB
+bRQ
+bST
+bUf
+bVs
+bWL
+bYe
+bZt
+caK
+ccs
+bST
+cfb
+cgp
+chv
+ciQ
+ckp
+clQ
+bZn
+ccd
+cpv
+cqN
+crS
+ctf
+ctW
+cuS
+cvV
+cwV
+crR
+cyG
+czz
+cAD
+cBy
+cCz
+cDm
+cEw
+cFr
+cGl
+cHg
+cIh
+cfD
+dbl
+ceu
+cgM
+bTs
+bTs
+cNW
+cOC
+bTs
+bTs
+aaf
+cRi
+dcd
+dcq
+dcy
+cSt
+dcL
+cSd
+cSn
+cSn
+cSg
+cSd
+cSn
+cSn
+cSg
+cSd
+cSn
+cSn
+cSg
+cRi
+cRi
+ddp
+cRi
+cRi
+cRi
+cRi
+cRi
+cRi
+cRi
+cTA
+cRi
+aaf
+aaa
+aaa
+aaf
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(131,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaf
+aaa
+agq
+agq
+agq
+agq
+aje
+alb
+aje
+agq
+aur
+aqb
+aqb
+asP
+aua
+aqb
+aqb
+aqb
+aqb
+azZ
+aBs
+agq
+aDS
+aFd
+aGC
+aHJ
+aHJ
+aKl
+aLL
+aMZ
+aOx
+aPJ
+aQT
+aOu
+aTt
+aUN
+alq
+aYc
+aZu
+bbe
+bcp
+bdT
+bfI
+bhE
+bjp
+bkU
+bmM
+boO
+brf
+btn
+bmO
+bwM
+bwO
+bAk
+bBT
+bwO
+bFm
+bGZ
+bBT
+bKf
+bLK
+bNy
+bOS
+bQB
+bRR
+bST
+bUg
+bVt
+bWM
+bYf
+bVt
+caL
+cct
+cdU
+cfc
+cgo
+cwk
+ciR
+ckq
+clR
+bZn
+coj
+cpw
+cqO
+crT
+ctg
+ctX
+cuT
+cuT
+cwW
+crR
+cyH
+czx
+cAE
+cBz
+cCA
+cDn
+cEx
+cDn
+cGm
+cHh
+cIi
+cJa
+cJX
+cKK
+cLG
+bTs
+cNl
+cdg
+cOD
+cPi
+bTs
+aaa
+cRi
+dce
+cSt
+cSt
+dcC
+dcM
+cSd
+cSn
+cSo
+cSg
+cSd
+cSn
+cSo
+cSg
+cSd
+cSn
+cSo
+cSg
+cRi
+ddh
+ddq
+ddt
+ddt
+ddt
+ddt
+ddw
+cTA
+cTA
+ddy
+cRi
+aaf
+aaf
+aaa
+aai
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(132,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaf
+aaa
+agq
+ahd
+ahR
+aje
+aje
+alc
+aje
+agq
+aoP
+agq
+agq
+asQ
+agq
+agq
+agq
+axC
+axC
+axC
+axC
+axC
+aDS
+aFe
+axC
+axC
+axC
+axC
+bev
+aNa
+aOy
+aOt
+aQU
+aSg
+aTt
+aUO
+alq
+boW
+aZt
+bbf
+bcq
+bdU
+bfJ
+bhG
+bjr
+bkW
+bmO
+bmO
+bmO
+bmO
+bmO
+bwN
+byz
+bAj
+bBU
+bDE
+bFm
+bHb
+bMP
+bKg
+bLL
+ddD
+bOT
+bQC
+bLK
+bSU
+bUh
+bVs
+bWN
+bWR
+bWR
+caM
+ccu
+bST
+cfd
+cgq
+cgq
+cgq
+cgq
+cgq
+cmP
+cmP
+cpx
+cqP
+crR
+cth
+ctY
+cuU
+cvW
+cwX
+cxK
+cyI
+czA
+cAF
+cBA
+cCB
+cDo
+cEy
+cFs
+cGn
+cHi
+cIj
+bTs
+bTs
+cKL
+bTs
+bTs
+cRd
+cNX
+bVW
+cPj
+bTs
+aaa
+cRi
+dcf
+dcr
+dcr
+dcD
+dcN
+cSd
+cSn
+cSx
+cSF
+cSd
+cSy
+dbp
+cSF
+cSd
+cSn
+dbt
+cSF
+cRi
+ddi
+ddr
+cTB
+cRi
+cRi
+cRi
+cRi
+cRi
+cRi
+cRi
+cRi
+aaf
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(133,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aav
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaf
+aaf
+agq
+ahe
+ahS
+aje
+ajP
+ald
+amu
+anE
+aoQ
+agq
+ary
+asR
+aje
+auc
+awA
+axC
+ayK
+aAa
+aBt
+aCA
+aDT
+aFf
+aGD
+aHK
+aJc
+axC
+aLN
+aNa
+aOz
+aOu
+aQV
+aOv
+aTt
+aUP
+alq
+aYe
+aZt
+bbg
+bcr
+bdV
+aZt
+bhH
+bjp
+bkU
+bmP
+boP
+brg
+bto
+buN
+bwO
+bwO
+bAl
+bBT
+bwO
+bFn
+bHc
+bIw
+bKh
+bLM
+bNA
+bOU
+bQD
+bRS
+bST
+bUi
+bVu
+bWO
+bYg
+bWT
+caN
+ccv
+bST
+ceZ
+cgq
+chx
+chx
+chx
+cgq
+cmQ
+cok
+cpy
+cqQ
+cgq
+cti
+ctZ
+cuV
+cvX
+cwY
+crR
+cyJ
+czB
+cAG
+cBB
+cCC
+cDp
+cyK
+cyK
+cyK
+cyK
+cPe
+bTs
+cJY
+cKM
+cLH
+bTs
+cNn
+cdg
+cOE
+cPh
+bTs
+aaf
+cRi
+cRe
+cRe
+cRe
+cRi
+cRi
+cRi
+cRi
+cRi
+cRi
+cRi
+cRi
+cRi
+cRi
+cRi
+cRi
+cRi
+cRi
+cRi
+cRi
+cRi
+cRi
+cRi
+aaa
+aaf
+aaf
+aaf
+aaf
+aaf
+aaa
+aaf
+aaf
+aag
+aag
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(134,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aav
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+acP
+acP
+acP
+acP
+ahT
+aiO
+aje
+ale
+ahS
+agq
+aoR
+agq
+arz
+asS
+aub
+aje
+ahd
+axC
+ayL
+aAb
+aBu
+aCB
+aDU
+aFg
+aLM
+axC
+axC
+axC
+aLO
+aNb
+aOA
+aOw
+aQW
+aOw
+aTt
+aUQ
+aWu
+aYf
+aZt
+aZt
+aZt
+aZt
+aZt
+bhI
+bjs
+bkX
+bmP
+boQ
+brh
+btp
+buO
+bwP
+byA
+bAm
+bBV
+bDF
+bFo
+bwO
+bBT
+bKi
+bLN
+bLK
+bOV
+bQE
+bRT
+bST
+bUj
+bVu
+bWP
+bYh
+bWT
+caO
+ccw
+bST
+ceZ
+cgq
+chx
+ciS
+chx
+clS
+cmR
+col
+cpz
+cqR
+cgq
+ctj
+cua
+cuW
+cvY
+cvX
+crR
+cyK
+cyK
+cAH
+cBC
+cyK
+cyK
+clK
+cdl
+ceu
+cub
+cPw
+bTs
+cJZ
+cKN
+cLI
+bTs
+bTs
+cNY
+bTs
+bTs
+bTs
+aaa
+aaa
+aaf
+aaf
+aaf
+aaf
+aaa
+aaa
+aaf
+aaf
+aaf
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaf
+aaf
+aaa
+aaf
+aaf
+aaa
+aaf
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aai
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(135,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaf
+aaf
+aaf
+acQ
+afs
+agr
+acP
+ahU
+aiP
+agq
+agq
+agq
+agq
+aoP
+agq
+arA
+aje
+auc
+aje
+awB
+axC
+ayM
+aAc
+aBv
+axC
+aDV
+aFh
+aGF
+aHL
+aJd
+axC
+aLP
+aNb
+aOB
+aOw
+aQX
+aOu
+aTt
+aUR
+alq
+aYe
+alq
+bbh
+bcs
+alq
+bfK
+bhE
+bjp
+bkU
+bmP
+boR
+bri
+btq
+bmP
+bwQ
+bwO
+bAn
+bBT
+bwO
+bFk
+bwO
+bBT
+bKj
+bLN
+bLK
+ddE
+bQF
+bNz
+bSV
+bUk
+bVv
+bWQ
+bWQ
+bWQ
+caL
+ccv
+bST
+csg
+cgq
+chx
+ciT
+ckr
+clT
+cmS
+com
+cpA
+cqS
+cgq
+cgq
+clK
+clK
+clK
+clK
+clK
+bZT
+bTs
+cAI
+cBD
+cCD
+bTs
+cEz
+cFt
+ceu
+cgM
+ceu
+bTs
+cKa
+cKO
+cLJ
+cor
+cmZ
+cNZ
+ckN
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(136,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aai
+aaa
+aaa
+aaf
+aaa
+acP
+acP
+ags
+acP
+acP
+acP
+acP
+alf
+amv
+agq
+aoS
+agq
+arB
+arB
+arB
+arB
+arB
+axC
+axC
+axC
+axC
+axC
+aDW
+aFi
+axC
+axC
+axC
+axC
+aLQ
+aNc
+aOC
+aOv
+aQY
+aOw
+aTt
+aUS
+alq
+aYg
+aZv
+bbi
+bct
+alq
+bfL
+bhE
+bjp
+bkU
+bmP
+dbd
+brj
+btr
+bmP
+bmP
+byB
+bAo
+bDL
+bDG
+bFp
+bDL
+bmP
+bKe
+bLO
+bNB
+bNB
+bQG
+bRU
+bSW
+bUh
+bVw
+bWR
+bWR
+bZu
+caM
+ccx
+bST
+ceZ
+cgq
+chy
+ciU
+chx
+clU
+cmT
+con
+cpB
+cqT
+crU
+cgq
+bZS
+cuX
+cvZ
+bTs
+cub
+cyL
+czC
+cAJ
+cBE
+cCE
+czC
+bVV
+bYE
+cHj
+cIl
+bXE
+bTs
+bTs
+cKP
+cKP
+cKP
+cKP
+cKP
+clK
+aaf
+aaf
+aaf
+aaf
+aaf
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(137,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaf
+aaa
+acQ
+aft
+agt
+ahf
+ahV
+aiQ
+aju
+alg
+alg
+anF
+aoT
+aqc
+arB
+asT
+aud
+arB
+awC
+aun
+arB
+aAd
+aBw
+aCC
+aDX
+aFj
+aGG
+aHM
+aJe
+aKm
+aLR
+aNd
+aOD
+aPK
+aQV
+aOv
+aTz
+aUM
+alq
+aYe
+alq
+alq
+alq
+alq
+alq
+bhE
+bjp
+bkY
+bmP
+boT
+brk
+bmP
+bmP
+bwR
+byC
+byC
+byC
+byC
+bFq
+bBX
+bBX
+bKk
+bLP
+bNC
+bOW
+bQH
+bRV
+bST
+bUl
+bVx
+bWS
+bYi
+bWT
+caN
+ccv
+bST
+ceZ
+cgq
+chx
+cLU
+chx
+clU
+cmU
+coo
+cpC
+cqU
+crV
+cgq
+cfF
+cuY
+cwa
+bTs
+cxL
+bXE
+bTs
+cAK
+cBF
+cCF
+bTs
+bZS
+bXE
+ceu
+cIn
+cPx
+cJb
+cKb
+cKR
+cLK
+cMq
+cNo
+cKP
+aaa
+aaa
+aaa
+aaf
+aaa
+aaf
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(138,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaf
+aaa
+acQ
+afu
+agu
+ahg
+ahg
+ahg
+ajR
+ahg
+ahg
+anG
+aoU
+aqd
+arB
+asU
+aue
+arB
+awD
+axD
+arB
+aAe
+aBx
+aCD
+aDY
+aFk
+aGH
+aHN
+aJf
+aKn
+aLS
+aNe
+aOE
+aPL
+aQZ
+aSh
+aTA
+aUT
+alq
+aYh
+aCM
+bbj
+aCM
+bdW
+bfM
+bhJ
+bjt
+bkU
+bmP
+boU
+brl
+bmP
+buP
+bwS
+bwX
+bwX
+byC
+byC
+bFr
+byC
+bIy
+bKe
+bKe
+bKe
+bKe
+bKe
+bRW
+bST
+bUm
+bVu
+bWT
+bYj
+bWT
+caN
+ccy
+bST
+ceZ
+cgq
+chA
+ciV
+cks
+cgq
+cmV
+cop
+cpD
+cqV
+crW
+cgq
+bTs
+cuZ
+bTs
+bTs
+cgM
+cdm
+czD
+cAL
+cBG
+cyy
+czD
+czD
+cFu
+ceu
+cOA
+cIn
+cJc
+cKc
+cKQ
+cLL
+cMr
+cNp
+cKP
+aaf
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(139,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaf
+aaa
+acQ
+afv
+agu
+ahh
+ahh
+aiR
+ajS
+alh
+agz
+agz
+aoV
+apP
+arB
+asV
+auf
+arB
+awE
+axE
+arB
+aHP
+aBx
+aCE
+aDZ
+aFl
+aGI
+aHO
+aJg
+aKo
+aLT
+aNf
+aOF
+aPM
+aRa
+aSi
+aTB
+aUT
+alq
+bpo
+alq
+alq
+alr
+alq
+alq
+bhE
+bjp
+bkU
+alq
+boV
+brm
+alq
+buQ
+bwT
+byD
+bAp
+bBX
+bDH
+bFs
+bHd
+byC
+bKl
+bKe
+bND
+bOX
+bQI
+bRX
+bST
+bUn
+bVt
+bWQ
+bYk
+bWQ
+caL
+dbE
+bST
+csG
+cgq
+chx
+ciW
+ckt
+clV
+cmW
+coq
+cpE
+cqW
+crX
+cgq
+cub
+cva
+cwb
+cIk
+cxM
+bTs
+czD
+cQC
+cBH
+cCG
+cDq
+czD
+bTs
+bTs
+bTs
+cGo
+cJd
+cPz
+cKP
+cLM
+cMs
+cNq
+cKP
+aaa
+aac
+aaa
+aaa
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(140,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aai
+aaa
+aaa
+aaf
+aaf
+acP
+acP
+agv
+ahh
+ahW
+aiS
+ajT
+aiS
+amw
+agz
+aoV
+aqf
+arB
+asW
+aug
+arB
+asW
+axF
+arB
+arB
+aBy
+aCF
+aEa
+aFm
+aGJ
+avo
+aJh
+aJh
+aJh
+aNg
+aOG
+aPN
+aJh
+aJh
+aJh
+alq
+alq
+biq
+alq
+aaa
+aaa
+aaa
+bfN
+bhK
+bju
+bkZ
+alq
+bBj
+brn
+alq
+bmP
+bwU
+byE
+bAq
+byC
+byC
+bwX
+bHe
+byC
+bKm
+bKe
+bNE
+dbn
+dbn
+bRY
+bST
+bUo
+bVy
+bWU
+bYl
+bZv
+caP
+ccz
+bST
+cff
+cgq
+cgq
+cgq
+cgq
+cgq
+cgq
+cgq
+cpF
+cgq
+cgq
+cgq
+cgM
+ceu
+bXE
+bTs
+bTs
+bTs
+cQv
+cAN
+cBI
+cAP
+cDr
+czD
+aaf
+aaf
+bTs
+bTs
+cfA
+bTs
+cKP
+dbN
+dbP
+dbN
+cKP
+aaf
+aaf
+aaf
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(141,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaf
+aaa
+acQ
+afw
+agu
+ahi
+ahX
+aiT
+ajU
+ali
+amx
+anH
+aoW
+aqg
+arC
+asX
+auh
+avl
+asX
+axG
+ayN
+aAf
+aBz
+aCG
+aEb
+aFm
+aGI
+aUn
+aJh
+aKp
+aLU
+aNh
+aOH
+aPO
+aRb
+aSj
+aJh
+aUU
+aCM
+avF
+aZw
+aZw
+bcu
+aZw
+aZw
+bhL
+bjv
+bla
+bmQ
+boX
+bro
+bts
+buR
+bwV
+byF
+bwX
+byC
+cTR
+bFt
+bHf
+byC
+bKn
+bKe
+bNF
+bOZ
+bQJ
+bRZ
+bKe
+bKe
+bKe
+bST
+bST
+bST
+caQ
+bST
+bST
+cfg
+cgr
+cgr
+ciX
+cgr
+clW
+cIk
+cgr
+cpG
+cgr
+cgr
+ctk
+cuc
+cvb
+cwc
+cwZ
+bXE
+cyM
+czF
+cAN
+cBJ
+cAP
+cDs
+czD
+aaf
+aaa
+aaf
+bTs
+cJe
+bTs
+aaa
+dbN
+dbQ
+dbN
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(142,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaf
+aaa
+acQ
+afx
+agw
+ahj
+ahX
+aiT
+ajU
+aiT
+amy
+anI
+aoX
+aqh
+arD
+asY
+aui
+avm
+asY
+axH
+ayO
+aAg
+aBA
+aCH
+aEc
+aFn
+aGK
+aUX
+aJh
+aKq
+aLV
+aNi
+aOI
+aNi
+aRc
+aSk
+aJh
+avD
+apb
+aqq
+aZw
+bbk
+bcv
+bdX
+aZw
+bhM
+bjw
+bkU
+alq
+alq
+brp
+alq
+buS
+bwW
+byG
+byC
+bwX
+bDI
+bwX
+bHe
+byC
+bKo
+bKe
+bNE
+bPa
+bQK
+bSa
+bSX
+bUp
+bKe
+bWV
+bYm
+bZw
+caR
+ccA
+bST
+cfh
+bTs
+bTs
+bTs
+bTs
+clX
+bTs
+bTs
+bTs
+bTs
+bTs
+bTs
+bTs
+cuZ
+bTs
+bTs
+cxN
+bTs
+czG
+cAN
+cBK
+czD
+cDt
+czD
+aaf
+aaa
+aaf
+bTs
+cfA
+bTs
+aaa
+dbN
+dbP
+dbN
+aaf
+aaf
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(143,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aai
+aaf
+aaf
+aaf
+aaa
+acQ
+afy
+agx
+ahk
+ahX
+aiU
+ajV
+alj
+amz
+anJ
+aoY
+aqi
+arE
+asZ
+auj
+avn
+awF
+auj
+ayP
+aAh
+aBB
+aCI
+auj
+aFo
+aGL
+aHR
+aJh
+aKr
+aLV
+aNi
+aOJ
+aNi
+aRd
+aSl
+aJh
+avB
+apc
+apc
+aZw
+bbl
+bcw
+bdY
+aZw
+bhN
+bjx
+blb
+alq
+boY
+brq
+alq
+buT
+bwX
+byH
+bAr
+bBY
+bDJ
+bFu
+bFr
+byC
+bKp
+bKe
+bNG
+bNG
+bZx
+cgF
+bSY
+bUq
+bKe
+cmj
+bYn
+cpi
+caS
+ccB
+bST
+cfi
+cgs
+chB
+bTs
+cku
+clY
+cmY
+bTs
+cpH
+cqX
+cpH
+bTs
+cud
+cvc
+bXE
+bTs
+cxO
+bTs
+cQB
+cAO
+cBL
+cAP
+cDu
+cEA
+aaf
+aaa
+aaa
+ack
+cJf
+ack
+aaa
+aaf
+dbR
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(144,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaf
+aaa
+acP
+acP
+agy
+ahl
+ahY
+aiV
+aiV
+aiV
+amA
+anK
+aoZ
+aqj
+arB
+arB
+auk
+avo
+arB
+axI
+avo
+aAi
+arB
+avo
+aEd
+arB
+aGM
+avo
+aJh
+aKs
+aLV
+aNi
+aOK
+aPP
+aRe
+aSm
+aTC
+aUV
+aWv
+aWv
+aZw
+aZw
+bcx
+aZw
+aZw
+bhE
+bjp
+bkY
+alq
+bcs
+brr
+alq
+alq
+alq
+bGi
+bAs
+bBZ
+bBZ
+bFv
+bHg
+bSJ
+byN
+bKe
+bKe
+bKe
+bKe
+bKe
+bSZ
+bUr
+bKe
+bST
+bST
+bST
+caT
+ccC
+bST
+bXa
+apc
+apb
+bTs
+ckv
+clZ
+cmZ
+cor
+cpI
+cqY
+crY
+bTs
+bZS
+cpK
+cwd
+bTs
+cxP
+bTs
+czI
+cAP
+cAP
+czD
+anS
+blx
+aaf
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaf
+dbR
+aaa
+aaf
+aaa
+aaa
+aaf
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(145,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+acP
+acP
+acQ
+acP
+acP
+afz
+agz
+ahl
+ahl
+aiW
+aja
+alk
+amB
+anK
+aoZ
+aqk
+arB
+ata
+aul
+avp
+awG
+axJ
+avp
+aAj
+arB
+aCJ
+aEe
+arB
+boS
+aHS
+aJh
+aKt
+aLW
+aNj
+aOL
+aNj
+aRf
+aSn
+aJh
+avB
+aWv
+aYi
+aZx
+bbm
+bcy
+bdZ
+aWv
+bhE
+bjp
+blc
+bmR
+boZ
+brs
+btt
+avs
+alq
+bGg
+bAt
+bCa
+bDK
+bFw
+bHh
+bIA
+byN
+byN
+bVD
+bPb
+caF
+byN
+bTa
+bUs
+bVz
+bWX
+bYo
+bVz
+caU
+ccD
+cdV
+cfj
+apc
+chC
+bTs
+bTs
+bTs
+bTs
+bTs
+cpJ
+cqZ
+bTs
+bTs
+bTs
+ckN
+bTs
+bTs
+cxO
+bTs
+aaf
+aaf
+aaf
+anS
+anS
+anS
+aaf
+aaf
+aqB
+anT
+anT
+anT
+aaf
+aaf
+dbR
+aqB
+anT
+aqB
+anT
+anT
+anT
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(146,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+acQ
+adj
+adE
+aed
+aeA
+afA
+agz
+ahm
+ahZ
+aiX
+ajW
+aiX
+aiX
+anL
+aoZ
+aql
+arB
+atb
+aum
+arB
+asU
+axK
+arB
+aAk
+arB
+aCK
+aEf
+arB
+aGO
+aHT
+aJh
+aKu
+aLX
+aNk
+aOM
+aPQ
+aRg
+aKu
+aJh
+aUW
+aWv
+aYj
+aZy
+bbn
+bcz
+bea
+aWv
+bhO
+bjy
+bld
+bmS
+bpa
+brt
+btu
+buU
+alq
+bGn
+bAu
+bCb
+byJ
+bFx
+bHi
+bIB
+bKq
+bLQ
+bNI
+bPc
+cet
+byN
+bTb
+bUt
+bVA
+bVA
+bYp
+bZy
+bVA
+bZB
+cdW
+cfk
+apc
+chD
+bTs
+ckw
+cma
+cna
+cos
+bUW
+clY
+crZ
+bTs
+aaa
+aaf
+aaa
+aaf
+ack
+aaf
+aaf
+aaa
+aaf
+aaf
+aaf
+aaf
+anT
+aaa
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+cSz
+aaa
+aaa
+aaf
+aaa
+aaa
+aaf
+aaa
+aqB
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(147,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aac
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+acP
+adk
+adF
+adk
+acP
+afB
+agz
+ahn
+aia
+aiY
+aiY
+all
+amC
+amC
+apa
+aqm
+arB
+atc
+aun
+arB
+awH
+aud
+arB
+aAl
+arB
+atc
+aEg
+arB
+aGP
+aHU
+aJh
+aKv
+aLY
+aNl
+aON
+aPR
+aRh
+aLY
+aJh
+avB
+aWv
+aYk
+aZy
+apx
+bcA
+beb
+aWv
+bhK
+bjz
+bkZ
+alq
+bpb
+bru
+alq
+alq
+alq
+byL
+bAv
+bCc
+bCc
+bFy
+bHj
+bIC
+byN
+bLR
+bNJ
+bPd
+cco
+byN
+bTc
+bUu
+apb
+apb
+cow
+bZz
+apb
+alq
+alq
+cfl
+alq
+alq
+alq
+ckx
+apc
+bXB
+cot
+cnb
+cra
+csa
+ckN
+aaf
+aaf
+aaf
+aaf
+ack
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+anT
+aaa
+dbJ
+dbJ
+dbJ
+dbJ
+dbJ
+aaf
+cRO
+aaa
+dbJ
+dbJ
+dbJ
+dbJ
+dbJ
+aaa
+anT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(148,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+blx
+adl
+bih
+adl
+aeB
+afC
+afC
+afC
+aib
+acQ
+acQ
+alm
+amD
+amD
+amD
+aqn
+arB
+arB
+arB
+arB
+arB
+arB
+arB
+aHQ
+arB
+arB
+arB
+arB
+arB
+arB
+aJh
+aJh
+aJh
+aJh
+aJh
+aJh
+aJh
+aJh
+aJh
+biq
+aWv
+aYl
+aZz
+bbp
+bcB
+bec
+bfO
+bhG
+bjA
+bkW
+alq
+alq
+brv
+alq
+buV
+alq
+bGo
+bHk
+bCd
+bNH
+bFz
+bQO
+bSL
+byN
+bLS
+bVY
+bPe
+cfe
+byN
+apc
+bUv
+anM
+apb
+bXa
+bZz
+caV
+alq
+cdX
+cfm
+apc
+chE
+alq
+cky
+apc
+cbu
+bXE
+bXE
+cou
+csb
+bTs
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+anT
+aaa
+dbK
+dbM
+dbM
+dbM
+dbM
+dbO
+cRO
+cSC
+dbV
+dbV
+dbV
+dbV
+dbW
+aaf
+anT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(149,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaX
+adl
+aQf
+adl
+aeC
+afD
+afD
+afD
+afD
+afD
+afD
+afD
+afD
+afD
+afD
+aqo
+arF
+alq
+auo
+avq
+awI
+axL
+alq
+axO
+alq
+aCL
+aLk
+aHW
+aYa
+aHV
+alq
+aKw
+aLZ
+aNm
+apb
+aPS
+cXc
+aSo
+alq
+avB
+aWv
+aYm
+aZA
+bbq
+bcC
+bed
+bfP
+bhJ
+bjt
+bkU
+alq
+atj
+brw
+btv
+dbj
+alq
+byN
+byN
+byN
+byN
+bFA
+byN
+byN
+byN
+byN
+byN
+bPf
+byN
+byN
+cjr
+bTe
+bVB
+apb
+bXa
+bZz
+caW
+alq
+cdY
+bPl
+avr
+chF
+alq
+ckz
+apc
+bWa
+bXE
+bXE
+cgs
+csc
+ckN
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaa
+aqB
+aaf
+dbL
+dbL
+dbL
+dbL
+dbL
+aaf
+dbS
+aaf
+dbL
+dbL
+dbL
+dbL
+dbL
+aaa
+anT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(150,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aai
+aaa
+aaa
+adl
+adI
+adl
+aeC
+afD
+afD
+afD
+afD
+afD
+afD
+afD
+afD
+afD
+afD
+aqo
+alq
+alq
+alq
+alq
+alq
+axM
+ayQ
+aAn
+aIv
+aCM
+avF
+aLJ
+aNS
+aHW
+aVF
+aCM
+aCM
+aCM
+aCM
+aPT
+aRi
+aCM
+aCM
+avF
+aWv
+aYn
+aZB
+bbr
+bcD
+bee
+aWv
+bhP
+bjB
+ble
+bmT
+bpc
+bBW
+btw
+buX
+bwY
+bGp
+btw
+bwY
+bwY
+bFB
+bHl
+bIE
+bHl
+bTd
+bHl
+bPg
+bHl
+bSc
+bTe
+apc
+bVC
+apb
+bXa
+bZA
+bZE
+bZE
+bZE
+bZE
+bZE
+bZE
+bZE
+ckA
+bXB
+cnb
+cou
+cpK
+bXE
+csc
+bTs
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+anT
+aaf
+aaf
+aaf
+aaf
+aaa
+aaa
+aaa
+cRO
+aaa
+aaf
+aaa
+aaa
+aaf
+aaa
+aaa
+aqB
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(151,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+bii
+aaa
+aeD
+afD
+afD
+afD
+afD
+afD
+afD
+afD
+afD
+afD
+afD
+aqo
+arG
+asB
+aup
+apb
+alq
+axN
+apb
+atm
+atm
+atm
+atm
+atm
+atm
+atm
+atm
+atm
+atm
+atm
+atm
+atm
+atm
+atm
+atm
+atm
+aWw
+aWw
+aWw
+aWw
+aWw
+aWw
+aWw
+bhQ
+bjt
+blf
+bmU
+alq
+alq
+alq
+buY
+alq
+alq
+alq
+alq
+alq
+alq
+alq
+alq
+bKr
+bKr
+bKr
+bKr
+bKr
+alq
+alq
+alq
+apb
+apb
+bXa
+bZz
+bZE
+ccE
+cdZ
+cfn
+cgt
+chG
+bZE
+ckB
+cmb
+cnc
+cov
+cpL
+crb
+csd
+ckN
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+anT
+aaa
+dbJ
+dbJ
+dbJ
+dbJ
+dbJ
+aaf
+cRO
+aaa
+dbJ
+dbJ
+dbJ
+dbJ
+dbJ
+aaf
+anT
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(152,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aai
+aaf
+aaf
+aaf
+aai
+aaf
+aeC
+afD
+afD
+afD
+afD
+afD
+afD
+afD
+afD
+afD
+afD
+aqo
+arH
+aqq
+auq
+avr
+alq
+azr
+anM
+atm
+aBD
+aCN
+aEh
+aFp
+aGQ
+axY
+aJj
+aJk
+aMa
+aMa
+axY
+aPU
+aRj
+aSp
+aTD
+axY
+aWx
+aYo
+aZC
+bbs
+bcE
+bef
+aWw
+bhO
+bjC
+blg
+bmV
+bpd
+bmV
+btx
+buZ
+bwZ
+byP
+bAx
+bCe
+bDM
+bFC
+bHm
+bIF
+bKs
+bLU
+bNL
+bPh
+bKr
+bSd
+bPm
+alq
+bVC
+bWY
+bYr
+bZz
+bZE
+ccF
+cea
+cea
+cgu
+chH
+bZE
+alq
+bTs
+bTs
+bTs
+ckN
+bTs
+bTs
+bTs
+aaf
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaf
+anT
+aaa
+dbK
+dbM
+dbM
+dbM
+dbM
+dbO
+cRO
+cSC
+dbV
+dbV
+dbV
+dbV
+dbW
+aaf
+anT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(153,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aeC
+afD
+afD
+afD
+afD
+afD
+afD
+afD
+afD
+afD
+afD
+aqo
+arI
+atd
+bai
+ate
+aut
+axP
+apc
+atm
+aBE
+aCO
+aEi
+aFq
+aGR
+axY
+aJk
+aJk
+aMa
+aNn
+axY
+aPV
+aRk
+aSq
+aTE
+axY
+aWy
+aYp
+aZD
+bbt
+bcF
+beg
+aWw
+bhR
+bjD
+blh
+bmW
+bpe
+bry
+bry
+bva
+bxa
+bry
+bAy
+bAy
+bDN
+bFD
+bHn
+bIG
+bKt
+bLV
+bNM
+bPi
+bKr
+bNO
+bTf
+alq
+cju
+bWZ
+bYs
+bZB
+bZE
+ccG
+ceb
+cfo
+cgv
+chI
+ciY
+ckC
+cmc
+cmc
+cmc
+cpM
+crc
+aaf
+ctl
+aaa
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaa
+aaf
+aqB
+aaf
+dbL
+dbL
+dbL
+dbL
+dbL
+aaf
+cRO
+aaf
+dbL
+dbL
+dbL
+dbL
+dbL
+aaa
+anT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(154,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aai
+aaa
+aeE
+afC
+afC
+aho
+aic
+acQ
+acQ
+aln
+amE
+amE
+amE
+aqp
+alq
+apb
+aus
+apc
+alq
+aAm
+apc
+atm
+aBF
+aCP
+aEj
+aFr
+aGS
+axY
+aJl
+aKx
+deZ
+aNo
+axY
+aPW
+aRl
+aSr
+aTE
+axY
+aWz
+aYp
+aZE
+bbu
+bcG
+beh
+aWw
+bhS
+bjE
+bli
+bmX
+bpf
+brz
+bty
+bvb
+bxb
+byQ
+bAz
+bCf
+bty
+bFE
+bHo
+bIH
+bKr
+bLW
+bNN
+bPj
+bKr
+aqr
+bTg
+alq
+bVE
+bXa
+bYt
+bZC
+caX
+ccH
+cec
+cfp
+cfq
+chJ
+cgz
+cgz
+cgz
+cgz
+cgz
+cpN
+crd
+ack
+ack
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaf
+anT
+aaa
+aaa
+aaf
+aaf
+aaf
+aaa
+aaa
+cRO
+aaa
+aaa
+aaf
+aaf
+aaf
+aaf
+aaa
+anT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(155,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaf
+aaa
+acP
+aid
+aiZ
+ajX
+alo
+acP
+anM
+apb
+apX
+alq
+alq
+alq
+alq
+alq
+axQ
+ayR
+atm
+aBG
+aCP
+aEk
+aFs
+aGT
+axY
+aJm
+aKy
+aMb
+aJu
+axY
+aPX
+aRm
+aSs
+aPX
+axY
+aWw
+aYq
+aZF
+bbv
+bcG
+bei
+aWw
+bhT
+bhT
+blj
+bmY
+bie
+bhT
+bhT
+bvc
+bxc
+bxc
+bAA
+bCg
+bAA
+bFF
+bxk
+bxg
+bxc
+bKr
+bKr
+bKr
+bKr
+apc
+apc
+alq
+alq
+bXb
+bYu
+bZD
+caY
+ccI
+ced
+cfq
+cgw
+chK
+ciZ
+ckD
+ciZ
+cnd
+cgz
+cgz
+cre
+aaa
+ack
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+anT
+aaf
+dbJ
+dbJ
+dbJ
+dbJ
+dbJ
+aaf
+cRO
+aaa
+dbJ
+dbJ
+dbJ
+dbJ
+dbJ
+aaf
+anT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(156,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaf
+aaf
+aaa
+acP
+aie
+aja
+ajY
+alp
+amF
+anN
+apc
+aqr
+apc
+apc
+apf
+apc
+apc
+axO
+apc
+atm
+aBH
+aCQ
+aEl
+aFt
+aGU
+axY
+axY
+aKz
+aKz
+axY
+axY
+aPY
+aRn
+aSt
+aTF
+aUY
+aWA
+aYp
+aZG
+bbw
+bcH
+bej
+bfQ
+bhU
+bjF
+blk
+bmZ
+bpg
+brA
+bep
+bvd
+bxd
+byR
+bAB
+bCh
+bDO
+bFG
+bHp
+bII
+aaO
+atm
+bLX
+bPk
+bQQ
+bSe
+bTh
+bUx
+aut
+bXc
+apc
+bZE
+caZ
+ccJ
+cee
+cfr
+cgx
+chL
+cja
+ckE
+cmd
+cne
+cNw
+cOa
+crf
+aaa
+ack
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+anT
+aaf
+dbK
+dbM
+dbM
+dbM
+dbM
+dbO
+cRO
+cSC
+dbV
+dbV
+dbV
+dbV
+dbW
+aaa
+anT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(157,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+acP
+acQ
+acQ
+acQ
+alq
+alq
+alq
+alq
+alq
+alq
+alq
+alq
+alq
+alq
+aBC
+atm
+atm
+aBI
+aCR
+aEm
+aFu
+aBI
+aBI
+aJn
+aCO
+aFq
+aNq
+aBI
+aPZ
+aRo
+aSu
+aTG
+aUZ
+aWB
+aYr
+aZH
+bbx
+bcI
+bek
+bfR
+bhV
+bjG
+bll
+bna
+bpg
+brB
+bep
+bve
+bxd
+byS
+bAC
+bCi
+bCi
+bFH
+bHq
+bIJ
+aiN
+atm
+bLY
+bPl
+apc
+aqq
+apc
+bUy
+alq
+bXd
+apf
+bZE
+cba
+ccK
+cef
+cfs
+czH
+cLC
+cjb
+ckF
+cjb
+cnf
+cgz
+cgz
+cre
+aaa
+ack
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+anT
+aaf
+dbL
+dbL
+dbL
+dbL
+dbL
+aaf
+dbT
+aaf
+dbL
+dbL
+dbL
+dbL
+dbL
+aaa
+aqB
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(158,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaf
+alr
+amG
+amH
+anN
+apc
+arJ
+arI
+alq
+avs
+aqr
+axO
+atm
+aAo
+aBJ
+ayT
+aEn
+aFv
+aGV
+aHX
+aEi
+aKA
+aMc
+aEi
+aOO
+aEi
+aRp
+aSv
+aTH
+aVa
+aWw
+aWw
+aWw
+aWw
+aWw
+aWw
+aWw
+bhW
+bjG
+blm
+bnb
+bpg
+brC
+bep
+bCK
+bxd
+byT
+bAD
+bCj
+bDP
+bFI
+bHr
+bIK
+bBt
+atm
+bLZ
+bPm
+apc
+bSf
+apc
+bxc
+bxc
+bXe
+bxc
+bxc
+bxc
+ccL
+bxc
+cft
+cgz
+cgz
+cgz
+cgz
+cgz
+cng
+cgz
+cpP
+ack
+ack
+ack
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+anT
+aaa
+aaa
+aaf
+aaf
+aaa
+aaa
+aaa
+dbR
+aaa
+aaf
+aaa
+aaf
+aaa
+aaa
+aaf
+anT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(159,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+alq
+amH
+alq
+apd
+apc
+arK
+apc
+alq
+alq
+alq
+axO
+atm
+aAp
+aBK
+aCS
+aEo
+aFw
+aGW
+aHY
+aHY
+aKB
+aMd
+aNr
+aOP
+aNr
+aRq
+aSw
+aTI
+aVb
+aWC
+aYs
+aZI
+bby
+bcJ
+aBI
+byK
+bhX
+bjH
+bln
+bnc
+bph
+brD
+bep
+bvg
+bxd
+byU
+bAE
+bCk
+bCi
+bFJ
+bHs
+bIL
+cVD
+atm
+cTw
+bPn
+bQR
+apc
+anM
+bxc
+bVF
+bXf
+bYv
+bZF
+cbb
+ccM
+bxc
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaa
+aaf
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+anT
+anT
+anT
+anT
+anT
+aaa
+aaf
+aaa
+dbR
+aaa
+aaa
+aaa
+aaf
+aaf
+anT
+anT
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(160,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaf
+aaa
+ack
+alq
+ape
+apc
+arL
+ate
+aut
+avt
+awJ
+axS
+atm
+aCO
+ddW
+aCT
+aEp
+aKC
+aFx
+aKC
+aKC
+aKC
+aMe
+aKC
+aOQ
+aKC
+aRr
+aSx
+aTJ
+dfX
+aWD
+aVc
+aZJ
+bbz
+bcK
+bel
+bfT
+bhY
+bjI
+bjL
+blo
+bpi
+brE
+btz
+bvh
+bxd
+byV
+bAF
+bCl
+bDQ
+bFK
+bxk
+bIM
+bKu
+bxc
+bxc
+bxc
+bxc
+bxc
+bxc
+bxc
+bVG
+bXg
+bAO
+bZG
+cbc
+cUR
+cVy
+cVz
+bAR
+bAR
+bAR
+bAR
+bAR
+aaf
+aaa
+aai
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+anT
+aaf
+dbU
+aaf
+aqB
+aac
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(161,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaf
+aaf
+ack
+alr
+bcO
+apc
+apc
+apc
+alq
+avu
+atm
+axT
+atm
+aAr
+ddX
+aCU
+aEq
+aTO
+aGX
+aHZ
+aJp
+aTO
+aSB
+aTO
+aOR
+aQa
+aGX
+aTO
+aTK
+aVd
+aBI
+aYt
+aZK
+bbA
+dgz
+aBI
+byK
+bhZ
+bjG
+blo
+bnd
+blo
+brF
+bep
+bvi
+bxc
+bxc
+bxc
+bCm
+bDR
+bza
+bxl
+bIN
+bxg
+bMa
+bMa
+bPo
+bPo
+bxc
+bTi
+bUz
+bVH
+bXh
+bCi
+bCi
+cbd
+ccN
+ceg
+cfu
+cgA
+chN
+cjc
+cjc
+bAR
+aaf
+aaa
+bzi
+aaa
+aai
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaa
+aqB
+aaa
+aaa
+aaa
+anT
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(162,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaf
+aaa
+aaf
+alq
+apg
+aqs
+arM
+alq
+alq
+avv
+atm
+axU
+ayS
+aCP
+ddY
+deb
+deh
+aFz
+aCZ
+deM
+axY
+aCZ
+aMg
+aCZ
+dfh
+deM
+aCZ
+aFz
+deh
+aVe
+axY
+aYu
+aYu
+aYu
+aYu
+aYu
+aYu
+bia
+bjG
+blo
+bne
+blo
+brG
+bep
+bep
+bxc
+byW
+bAG
+bCn
+bDS
+bFL
+bHt
+bIO
+bKv
+bMb
+bNP
+bPp
+bPp
+bSg
+bDS
+bDS
+bVI
+bXi
+bYw
+bYw
+cbe
+ccO
+bza
+aaf
+bza
+chO
+cjd
+ckG
+bAR
+aaf
+aaa
+bzi
+aaa
+bzj
+aaf
+aaf
+aaf
+aaf
+aaf
+aaa
+aaa
+aaa
+aaf
+aaf
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+anT
+anT
+anT
+anT
+anT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(163,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+ajb
+ajb
+ajb
+ajb
+ajb
+ajb
+ajb
+arN
+atf
+auu
+avw
+atf
+axV
+ddP
+aAt
+aBL
+deb
+dei
+aFA
+deB
+deB
+deB
+deB
+aMh
+deB
+deB
+deB
+deB
+aSz
+aTM
+aVe
+apc
+aYu
+aZL
+bbB
+bcL
+bem
+bfV
+bib
+bjJ
+blp
+bnf
+bpj
+brH
+btA
+bvj
+bxd
+byX
+bAH
+bCo
+bDT
+bFM
+bHu
+bIP
+bKw
+bMc
+bNQ
+bPq
+bPq
+bHu
+bTj
+bHu
+bVJ
+bXj
+bYx
+bMg
+cbf
+ccP
+ceh
+cfv
+cgA
+chP
+cje
+cjc
+bAR
+aaf
+aaa
+bzi
+aaa
+bzj
+aaa
+aaa
+aaa
+aac
+aaf
+aaf
+aaf
+aaf
+aaf
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(164,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+ajb
+ajZ
+als
+amI
+anO
+aph
+aqt
+arO
+atg
+auv
+avx
+awK
+axW
+aAu
+ddQ
+aBM
+aCV
+aEr
+aFB
+aGY
+daW
+deO
+aKF
+aMi
+cpR
+dfi
+aQd
+deO
+aSA
+aTN
+aVf
+apc
+aYu
+aZM
+bbC
+bcM
+ben
+bfW
+bic
+bjK
+blq
+blq
+bpk
+brI
+btB
+bvk
+bxe
+byY
+bAI
+bCp
+bDU
+bFN
+bAO
+bIQ
+bKx
+bMd
+bxd
+bPr
+bQS
+bPr
+bxd
+bUA
+bVK
+bXk
+bYy
+bZH
+cbg
+ccQ
+bza
+aaf
+bAR
+bAR
+bAR
+bAR
+bAR
+aaf
+aaf
+bzi
+aaa
+bzj
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(165,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aai
+aag
+aag
+aag
+aaj
+aag
+aag
+aag
+aai
+aag
+aag
+aag
+aai
+aag
+ajb
+aka
+alt
+amJ
+anP
+api
+aqu
+arP
+ajb
+auw
+avy
+ajb
+axX
+ayV
+aAv
+aBN
+aCW
+aEr
+aFC
+aGZ
+aGZ
+axY
+aKG
+aMj
+aKG
+axY
+aQe
+aRv
+dfD
+aTN
+aVe
+apc
+aYu
+aZN
+bbD
+bcN
+beo
+bfX
+bid
+bjL
+blr
+bng
+bpl
+btD
+bvn
+bvl
+bxf
+byZ
+bAJ
+bCq
+bDV
+bFO
+bHv
+bIR
+bKy
+bMe
+bNR
+bNR
+bQT
+bNR
+bNR
+bUB
+bFO
+bXl
+bIS
+bZI
+cbh
+ccR
+ceg
+cfu
+cgA
+chQ
+cjf
+cjf
+bAR
+aaf
+aaa
+bzi
+aaa
+aai
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(166,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaf
+aaf
+aaa
+aaf
+aaa
+aaf
+aaa
+aaa
+aaf
+aaf
+aaa
+aaf
+ajb
+akb
+ajZ
+amK
+ajZ
+apj
+aqv
+arQ
+ajb
+ajb
+avz
+atm
+axY
+ayW
+ddR
+aBO
+aCX
+dej
+aFC
+deC
+deC
+axY
+aKH
+aMk
+aNu
+axY
+dfp
+dfp
+dfE
+dfP
+dfY
+dgc
+aYu
+cXA
+cXA
+cXA
+cXA
+cXA
+bie
+bjM
+bls
+bhT
+bpm
+bhT
+bhT
+bvm
+bxg
+bza
+bza
+bza
+bza
+bFP
+bza
+bIS
+bKz
+bMf
+bxd
+bPs
+bPs
+bSh
+bxd
+bUC
+bVK
+bXm
+bIS
+bZI
+cbi
+ccS
+bza
+aaf
+bza
+chR
+cjg
+ckH
+bAR
+aaf
+aaa
+bzi
+aaa
+bzj
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(167,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+abv
+abO
+acl
+aaa
+abv
+abO
+acl
+aaa
+abv
+abO
+acl
+aaa
+aaf
+ajb
+akc
+alt
+amL
+anQ
+apk
+aqw
+arR
+ath
+ajb
+avA
+atm
+axZ
+ayX
+ddS
+bUw
+aCY
+dek
+der
+deD
+axY
+aJv
+aKI
+aMj
+dfb
+dfj
+axY
+deD
+dfF
+aTN
+aVe
+aWH
+dgi
+dgc
+aqq
+aqr
+aWu
+bif
+bif
+bif
+bhT
+bhT
+brK
+bhT
+bvo
+bvr
+bxh
+bzb
+bAK
+bCr
+bDW
+bFQ
+bHw
+bIT
+bKA
+bMg
+bNS
+bPt
+bQU
+bSi
+bTk
+bDW
+bFQ
+bXm
+bYz
+bZJ
+cbj
+ccP
+ceh
+cfw
+cgA
+chS
+cjh
+cjf
+bAR
+aaf
+aaa
+aai
+aaa
+bzj
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(168,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaf
+abv
+abP
+acl
+aaa
+abv
+abP
+acl
+aaa
+abv
+abP
+acl
+aaa
+aaf
+ajb
+ajZ
+alu
+amM
+anR
+apl
+aqx
+arS
+ati
+ajb
+avB
+atm
+ddO
+bUw
+ddT
+ddZ
+ded
+del
+des
+deE
+daY
+daZ
+dbb
+aMk
+aNv
+dfk
+dfq
+deE
+dfG
+dfQ
+dfZ
+apc
+apc
+dgo
+apc
+cXZ
+atm
+bfZ
+bif
+bfY
+bhT
+bqF
+bpp
+btF
+bvp
+bvv
+bxi
+bzc
+bAL
+ddF
+bDX
+bFR
+bHx
+bIU
+bKB
+bMh
+bNT
+bCi
+bKD
+bCi
+bCi
+bUD
+bCi
+bXm
+bIS
+bZK
+cbk
+ccP
+ceh
+cfx
+bAR
+bAR
+bAR
+bAR
+bAR
+aaf
+aaf
+bzi
+aaa
+bzj
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(169,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaf
+abv
+abP
+acl
+aaf
+abv
+abP
+acl
+aaf
+abv
+abP
+acl
+aaf
+aaf
+ajb
+ajb
+ajb
+ajb
+ajb
+ajb
+ajb
+ajb
+ajb
+ajb
+avC
+atm
+aya
+bUw
+ddU
+aBQ
+dee
+aEr
+det
+deE
+daY
+daZ
+dbb
+dfa
+aNv
+dfk
+dfq
+dfx
+dfG
+cXz
+aVe
+atm
+alr
+dgp
+cXI
+cYj
+atm
+bga
+big
+bga
+bhT
+bpv
+brL
+btE
+bhT
+bvs
+bxj
+bzd
+bAM
+bCt
+bDY
+bFS
+bHy
+bIV
+bKC
+bMi
+bNU
+bMg
+bQV
+bMg
+bMg
+bUE
+bVL
+bXn
+bYA
+bZJ
+cbl
+bKG
+cei
+cfy
+cgB
+chT
+cji
+ckI
+bAR
+aaf
+aaa
+bzj
+aaf
+aai
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(170,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aac
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaf
+abv
+abP
+acl
+aaa
+abv
+abP
+acl
+aaa
+abv
+abP
+acl
+aaa
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+alr
+atj
+apf
+avD
+atm
+ddO
+bUw
+ddV
+aBQ
+dee
+aEr
+aKL
+deE
+daY
+deS
+dbb
+aMk
+aNv
+dfm
+dfq
+deE
+dbg
+dfR
+dga
+dgd
+dgj
+dgp
+alr
+atm
+atm
+bgb
+cTu
+bgb
+bhT
+brJ
+brN
+btG
+bvq
+bxm
+bxk
+bze
+bAN
+bCu
+bDZ
+bFT
+bHz
+bIW
+bKD
+dhe
+dhg
+bPu
+bPu
+bPu
+bTl
+bUF
+bKD
+bXo
+bMj
+bZI
+cVJ
+ccQ
+bza
+aaf
+bza
+chU
+cjj
+ckJ
+bAR
+aaf
+aaa
+bzi
+aaa
+bzj
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(171,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaj
+aai
+aaj
+aag
+aaa
+abv
+abP
+acl
+aaa
+abv
+abP
+acl
+aaa
+abv
+abP
+acl
+aaa
+aaa
+aaf
+aaa
+aaa
+akd
+alv
+apm
+apm
+apm
+apm
+apb
+avE
+atm
+ayc
+aza
+aAw
+bUw
+aCY
+dem
+aFD
+deD
+axY
+axY
+deV
+aCZ
+dfc
+axY
+axY
+deD
+dfI
+dfS
+aVh
+aaf
+aYx
+dgr
+dgw
+dgA
+dgI
+bgb
+cTi
+bgb
+bpu
+aNC
+brM
+aNC
+bhT
+bwl
+bxl
+bzf
+bAO
+bCv
+bEa
+bFU
+bHy
+bIX
+bKE
+bKE
+dhh
+bPv
+bKE
+bKE
+bKE
+bUG
+bKE
+bXp
+bKE
+bZL
+cbn
+ccT
+cei
+cfy
+cgC
+chV
+cjk
+ckI
+bAR
+aaf
+aaa
+bJf
+aaf
+bKK
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(172,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaf
+aaa
+aaa
+aaf
+abQ
+aaf
+aaf
+aaf
+abQ
+aaf
+aaa
+aaf
+abQ
+aaf
+aaa
+aaa
+aaf
+akd
+alv
+alv
+alv
+apn
+aqy
+arT
+apm
+apc
+avB
+atm
+axY
+bTq
+aAx
+aBO
+aIe
+aOS
+deu
+deI
+deN
+deT
+deW
+aMm
+dfd
+deN
+dft
+deN
+dbh
+dfT
+aVh
+aaa
+aYx
+dgf
+dgj
+ack
+dgJ
+bgb
+bij
+bgb
+aaa
+aaf
+bpw
+aaf
+aaf
+ack
+bxc
+bzg
+bAP
+bCw
+bEb
+bFV
+bHA
+bIY
+bKF
+bMk
+dhi
+bPw
+bQW
+bSj
+bNV
+bUH
+bVM
+bXq
+bNV
+bZM
+cbo
+ccU
+bxc
+aaf
+bAR
+bAR
+bAR
+bAR
+bAR
+aaf
+aaa
+aaf
+aaa
+bzj
+aaa
+aaa
+aaa
+aaf
+aaf
+aaf
+aaf
+aaf
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(173,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaN
+aaY
+aaY
+abw
+abR
+abR
+acz
+abR
+abR
+abR
+abR
+aeF
+abR
+abR
+abR
+abR
+abR
+ake
+alw
+amN
+alw
+apo
+aqz
+arU
+atk
+aux
+avF
+atm
+axY
+aaf
+ack
+dea
+aIc
+den
+dev
+deJ
+deO
+deU
+deX
+aMm
+dfe
+dfi
+dfu
+dfz
+dfJ
+dfU
+dga
+dge
+azd
+azd
+azd
+dgB
+dgK
+aaa
+cUL
+aaa
+aaf
+aaf
+bpw
+aaa
+aaf
+aaf
+bxc
+bzh
+bAQ
+bCx
+bEc
+bFW
+bHB
+bIZ
+bKG
+bMl
+dhj
+bIZ
+bKG
+bMl
+bKG
+bIZ
+bKG
+bMl
+bYB
+bKG
+bKG
+ccV
+bxc
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+bzj
+bzj
+bzj
+aaf
+aaf
+aaf
+aaf
+aaa
+aaa
+aaa
+aaf
+aaf
+aaf
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(174,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaf
+aaf
+abS
+aaf
+aaa
+aaf
+abS
+aaf
+aaa
+aaf
+abS
+aaf
+aaa
+aaa
+aaf
+akd
+alv
+alv
+alv
+app
+aqA
+arV
+atl
+auy
+apc
+atm
+atm
+aaf
+ack
+ack
+def
+aCZ
+dew
+aCZ
+axY
+axY
+aCZ
+aCZ
+aCZ
+axY
+axY
+aCZ
+dew
+aCZ
+aVe
+dgf
+dgk
+dgt
+dgk
+dgv
+dgJ
+anT
+aaf
+aaf
+aaf
+aaa
+bpw
+aaa
+aaa
+aaf
+bxc
+bxc
+bxc
+bCy
+bza
+bFX
+bza
+bJa
+bza
+bFX
+dhk
+bJa
+bza
+bFX
+bza
+bJa
+bza
+bFX
+bxc
+bxc
+bxc
+ccW
+bxc
+aaf
+aaa
+aaa
+aaf
+aaa
+aaf
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(175,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaj
+aaj
+aai
+aaj
+aaf
+abv
+abT
+acl
+aaa
+abv
+abT
+acl
+aaa
+abv
+abT
+acl
+aaa
+aaa
+aaf
+aaa
+aaa
+akd
+alv
+apm
+apm
+apm
+apm
+alq
+apc
+anM
+atm
+aaf
+aaf
+aaf
+def
+ddZ
+dex
+aJu
+ddZ
+ddZ
+ddZ
+aMo
+dff
+ddZ
+ddZ
+aJu
+dex
+ddZ
+aVe
+aWK
+dgk
+dgt
+dgk
+dgB
+dgM
+dgN
+dgO
+dgO
+dgw
+dgO
+dgS
+dgO
+dgO
+dgw
+dgw
+dgw
+dgw
+bCz
+dgw
+dha
+dgw
+dhc
+dgw
+dha
+dhl
+bJb
+aaf
+bFY
+aaf
+bJb
+aaf
+bFY
+aaf
+aaf
+bxc
+ccX
+bxc
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(176,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+abv
+abT
+acl
+aaa
+abv
+abT
+acl
+aaa
+abv
+abT
+acl
+aaf
+aaa
+aaf
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+alq
+auz
+avr
+atm
+atm
+aaa
+aaa
+aaa
+bTq
+dep
+dey
+aHa
+ddZ
+ddZ
+ddZ
+ddZ
+ddZ
+ddZ
+ddZ
+dfA
+dfM
+dfV
+dgb
+dgg
+azd
+azd
+azd
+dgv
+aaf
+anT
+aaa
+aaa
+aaf
+aaf
+bpx
+aaf
+aaf
+aaf
+aaa
+aaf
+bAR
+bCA
+bza
+bFZ
+bAR
+bCA
+bza
+bFZ
+bAR
+bCA
+bza
+bFZ
+bAR
+bCA
+bza
+bFZ
+bAR
+aaf
+bxc
+ccW
+bxc
+aaf
+aaa
+aaf
+aaa
+aaf
+aaa
+aaf
+aaa
+aaa
+aai
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(177,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaf
+abv
+abT
+acl
+aaf
+abv
+abT
+acl
+aaf
+abv
+abT
+acl
+aaa
+aaa
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+alr
+auA
+apc
+atm
+aaa
+aaa
+aaa
+aaa
+axY
+deq
+dey
+deK
+ddZ
+ddZ
+ddZ
+aMo
+ddZ
+ddZ
+ddZ
+dfB
+dfM
+dfW
+axY
+aWK
+dgk
+dgt
+dgk
+dgB
+aaa
+anT
+aaa
+aaa
+aaf
+aaa
+bpw
+aaa
+aaa
+aaf
+aaa
+aaf
+bAR
+bCB
+bEd
+bGa
+bAR
+bJc
+bKH
+bMm
+bAR
+bPx
+bQX
+bSk
+bAR
+bUI
+bVN
+bXr
+bAR
+aaf
+aMr
+ccY
+bBb
+aaf
+aaa
+aaf
+bxc
+cjo
+ckM
+cmf
+cmf
+aaa
+bKK
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(178,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaf
+abv
+abT
+acl
+aaa
+abv
+abT
+acl
+aaa
+abv
+abT
+acl
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+alq
+auB
+avG
+atm
+aaa
+aaa
+aaa
+aaa
+axY
+aJu
+deA
+deL
+aJu
+aJu
+deY
+axY
+dfg
+aJu
+aJu
+dfC
+dfO
+ddZ
+axY
+dgh
+dgk
+dgk
+dgk
+dgv
+aaf
+anT
+aaa
+aaa
+aaf
+aaa
+bpw
+aaa
+aaa
+aaf
+aaa
+aaf
+bAR
+dbu
+dbu
+dbu
+bAR
+bJd
+bKI
+bJd
+bAR
+bPy
+bQY
+bPy
+bAR
+bUJ
+bVO
+bUJ
+bAR
+aaf
+aMq
+ccY
+bgo
+aTQ
+cgD
+chW
+cjl
+ckK
+bCC
+bCC
+ckM
+aaf
+bKK
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(179,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaj
+aaa
+abv
+abU
+acl
+aaa
+abv
+abU
+acl
+aaa
+abv
+abU
+acl
+aaf
+aaf
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+alq
+alq
+atn
+atm
+aaf
+aaa
+aaa
+aaa
+axY
+axY
+axY
+axY
+axY
+axY
+axY
+axY
+axY
+axY
+axY
+axY
+axY
+axY
+axY
+aWK
+dgm
+dgu
+dgm
+dgB
+aaa
+anT
+aaa
+aaa
+aaf
+aaf
+bpx
+aaf
+aaf
+aaf
+aaf
+aaf
+bAR
+dbu
+bEe
+bGb
+bAR
+bJd
+bKJ
+bMn
+bAR
+bPz
+bQZ
+bSl
+bAR
+bUJ
+bVP
+bXs
+bAR
+aaf
+aMr
+ccY
+ccY
+ccY
+ccY
+ccY
+cjm
+bCC
+cme
+bCC
+cjo
+aaa
+bKK
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(180,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaj
+aaa
+aaf
+aaa
+aaf
+aaa
+aaa
+aaf
+aaf
+aaa
+aaf
+aaf
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+ack
+ack
+atn
+bOY
+avG
+atm
+aaf
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaf
+aaa
+aaa
+aaf
+aaa
+aaf
+aaa
+aaf
+aaa
+aaf
+aaf
+ack
+ack
+aye
+dgv
+aye
+dgv
+aaf
+anT
+aaf
+aaf
+aaf
+aaa
+bpw
+aaa
+aaf
+aaa
+aaa
+aaf
+bAR
+bAR
+bAR
+bAR
+bAR
+bAR
+bAR
+bAR
+bAR
+bAR
+bAR
+bAR
+bAR
+bAR
+bAR
+bAR
+bAR
+aaf
+aMq
+ccY
+aVk
+aNC
+cgE
+chX
+cjn
+ckL
+bCC
+bCC
+bxc
+aaf
+aai
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(181,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaj
+aai
+aag
+aag
+aag
+aai
+aag
+aag
+aag
+aaj
+aag
+aag
+aai
+aag
+aai
+aag
+aai
+aag
+aaf
+aaf
+aaf
+aaf
+aaf
+alq
+alq
+atn
+atm
+aaf
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaf
+aaa
+aaa
+aaf
+aaa
+aaf
+aaa
+aaf
+aaa
+aaa
+aaf
+aaf
+aaf
+aaa
+aaa
+aaf
+aaa
+aaa
+aaf
+aaa
+aaa
+aaf
+aaa
+bpw
+aaa
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aMr
+ccZ
+bBb
+aaf
+aaa
+aaf
+cjo
+ckM
+cmf
+ckM
+cjo
+aaa
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(182,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaf
+ack
+atm
+aaf
+anT
+anT
+anT
+anT
+aaf
+anT
+anT
+anT
+anT
+anT
+anT
+aqB
+anT
+anT
+anT
+anT
+anT
+anT
+aaf
+aaa
+aaa
+aaf
+aaa
+aaa
+aaf
+aaa
+aaa
+aaf
+aaa
+bpw
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaf
+aaa
+aaf
+aaa
+aaf
+aaa
+aaf
+aaa
+aaf
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(183,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaf
+aaf
+ack
+aaf
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+bpu
+bpu
+bpu
+bpu
+bpu
+bpu
+bpu
+bpu
+bpu
+bpu
+aaa
+aaa
+aaa
+aaf
+aaf
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+bpw
+aaa
+aaf
+aaf
+aaf
+aai
+bzj
+bzj
+bzj
+bzj
+bzj
+bJe
+bzj
+bzj
+aai
+bzj
+bzj
+bzj
+bKK
+bzj
+bzj
+bzj
+bzj
+bJe
+bzj
+aai
+bzj
+aaf
+aaf
+aai
+bzj
+aai
+bzj
+bzj
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(184,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaf
+anT
+anT
+anT
+anT
+aqB
+anT
+anT
+anT
+anT
+aqB
+aaf
+aaf
+aaf
+aaf
+aaa
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+bpw
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaf
+aaa
+aac
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(185,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aai
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+bpw
+aaa
+aaf
+aaf
+aai
+bzi
+bzi
+bzi
+bzi
+bzi
+bzi
+bJf
+bzi
+bzi
+bzi
+bzi
+bzi
+bzi
+bJf
+bzi
+bzi
+bzi
+bzi
+bJf
+aaf
+aaf
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(186,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aai
+aaa
+aai
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+bpx
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(187,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+anT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+bpw
+aaa
+aaf
+aaf
+aai
+bzj
+bzj
+aai
+bzj
+anT
+bzj
+bzj
+bKK
+bzj
+bzj
+bzj
+bzj
+bzj
+aai
+bzj
+bzj
+bzj
+bzj
+bKK
+bzj
+bzj
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(188,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aai
+aaa
+anT
+aaa
+aaa
+aac
+aaa
+aaa
+aaf
+aaa
+bpw
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aai
+aaa
+anT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(189,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+anT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+bpw
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+anT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+dbB
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(190,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cTX
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aai
+aaa
+anT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+bpw
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aai
+aaf
+anT
+aaa
+aaa
+aaa
+aaa
+aaa
+aac
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(191,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aai
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+bpw
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+anT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(192,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+anT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+bpw
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aai
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(193,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aai
+aaa
+anT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+bpx
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aai
+aaa
+anT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(194,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aac
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aac
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aai
+aaa
+anT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+bpy
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aai
+aaa
+anT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(195,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+anT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+bpy
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+anT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaf
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(196,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaf
+aai
+aaf
+aaf
+aaf
+aaa
+aaa
+aaf
+aaa
+bpz
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+anT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+czK
+cDv
+czK
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(197,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+anT
+aaa
+aaa
+aaf
+aaf
+aaf
+aaf
+bno
+bpA
+brO
+aaf
+aaa
+aaa
+aaa
+aaa
+aag
+aaf
+aai
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+cBM
+czK
+cDw
+czK
+cBM
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(198,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aai
+aaa
+anT
+aaa
+aaa
+aaf
+aaa
+aaa
+blu
+aaa
+bpA
+aaa
+btI
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+anT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+czK
+czK
+cCH
+cDv
+cEB
+czK
+czK
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(199,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+anT
+aaa
+anT
+aaf
+aaf
+ack
+ack
+aaf
+blv
+aaf
+bpA
+aaf
+blv
+aaf
+aaf
+aaf
+aaf
+aag
+aaa
+anT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+czJ
+czJ
+cBN
+cCI
+cCI
+cCI
+cFv
+czJ
+czJ
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(200,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+anT
+aaa
+aqB
+aaa
+aMq
+bgc
+bgc
+aOV
+blw
+aNw
+bpB
+aNw
+btJ
+aaa
+aaa
+aaa
+aaa
+aai
+aaa
+anT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaf
+czK
+cAQ
+cBO
+cCI
+cDx
+cCI
+cFw
+cGp
+czK
+aaf
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(201,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+anT
+aaa
+anT
+aaa
+aMq
+bgd
+bgd
+aOV
+aMq
+bnp
+bpC
+brP
+btK
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aai
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+czJ
+czJ
+cBP
+cCI
+cCI
+cCI
+cFx
+czJ
+czJ
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(202,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+anT
+aaa
+anT
+anT
+beq
+bge
+bik
+beq
+blx
+bnq
+bpD
+brQ
+blx
+anT
+anT
+anT
+anT
+aag
+aaa
+anT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+czK
+czK
+cCJ
+cDy
+cEC
+czK
+czK
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(203,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+anT
+anT
+anT
+anT
+anT
+anT
+anT
+anT
+aaa
+ber
+bgf
+bgd
+bjN
+bly
+bnr
+bpE
+brR
+aOX
+aNw
+aNw
+aTQ
+aaa
+anT
+aaa
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+cBM
+czK
+cDz
+czK
+cBM
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(204,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+anT
+anT
+anT
+anT
+anT
+anT
+aaa
+aTQ
+aNw
+aNw
+aNw
+aNw
+aNw
+aSD
+bes
+bgg
+bil
+bjO
+blz
+bns
+bpF
+brS
+blz
+blz
+blz
+bzk
+bAS
+anT
+anT
+anT
+anT
+anT
+anT
+anT
+anT
+anT
+anT
+anT
+anT
+anT
+anT
+anT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+czK
+czJ
+czK
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(205,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+anT
+aaa
+aTQ
+aNw
+aNw
+aNw
+aSD
+aTR
+aOT
+aOT
+aOT
+aOT
+aOT
+aOT
+bet
+aVk
+aOY
+aOY
+aSG
+bnt
+bpG
+brT
+aOU
+aOY
+bcQ
+bzl
+bAT
+aNw
+aNw
+aNw
+bJl
+aNw
+aNw
+aNw
+aNw
+bJl
+aNw
+aNw
+aNw
+aTQ
+aaa
+anT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaf
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(206,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+anT
+aMq
+aNx
+aOT
+aOT
+aOT
+aOT
+aTS
+aVk
+aOY
+aOY
+aOY
+aOY
+aOY
+aTT
+aaa
+aaa
+aaa
+blA
+bnu
+bpH
+brU
+aOV
+aaa
+aMq
+bzm
+aOT
+aOT
+aOT
+aOT
+bMt
+bMt
+bNW
+bMt
+bMt
+bMt
+bMt
+aOT
+aOT
+bUK
+bBb
+anT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(207,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+anT
+aMq
+aNy
+aOU
+aOY
+aOY
+aOY
+aTT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aTU
+aaa
+aaa
+aRy
+aRy
+bnv
+bpI
+brV
+aRy
+aaa
+aaa
+aTT
+aOY
+aOY
+aOY
+aOY
+aOY
+aOY
+bKQ
+aOY
+aOY
+aOY
+aOY
+aOY
+bcQ
+aNy
+bgn
+anT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(208,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+anT
+aMq
+aNy
+aOV
+aaa
+aaa
+aaa
+aTU
+aaa
+aRy
+aRy
+aRy
+aRy
+aRy
+aRy
+aRy
+aRy
+aRy
+blB
+bnw
+bpJ
+brW
+aRy
+bvt
+aaa
+aTU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aTU
+aaa
+aaa
+aaa
+aaa
+aaa
+aMq
+aNy
+bgn
+anT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(209,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+anT
+aMq
+aNy
+aOV
+aaa
+aaa
+aaa
+aRy
+aRy
+aRy
+aTV
+aTV
+aTV
+aRy
+aRy
+aRy
+aRy
+bjP
+blC
+bnx
+bpK
+bsf
+aRy
+aRy
+aRy
+aRy
+aRy
+aRy
+aRy
+aRy
+aRy
+aRy
+aRy
+bvt
+bvt
+aaa
+aaa
+aaa
+aMq
+aNy
+bgn
+anT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(210,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+anT
+anT
+anT
+aMr
+aNy
+aOV
+aaa
+aaa
+aRy
+aRy
+aTV
+aTV
+aTV
+aZQ
+aTV
+aTV
+aTV
+aTV
+aTV
+bjP
+blD
+bny
+bpL
+brY
+btL
+btL
+btL
+btL
+btL
+bCD
+bEf
+bGc
+bHC
+bJg
+aRy
+aRy
+aRy
+aRy
+aaa
+aaa
+aMq
+bez
+bBb
+anT
+anT
+anT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(211,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+anT
+aaa
+aNw
+aSD
+aNy
+aOV
+aaa
+aaa
+aRy
+aTV
+aVl
+aWL
+aYy
+aZR
+bbF
+bcP
+aVl
+bgh
+bim
+bjQ
+bjQ
+bnz
+bpM
+brZ
+btL
+bvu
+bGh
+bzn
+bAU
+bCD
+bEg
+bGd
+bGd
+bJm
+bNX
+bMo
+bOc
+aRy
+aaa
+aaa
+aMq
+bez
+bAT
+aNw
+aaa
+anT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(212,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+anT
+aMq
+bnl
+bpn
+bpr
+aOV
+aaa
+aRy
+aRy
+aTV
+aVm
+aWM
+aWM
+aZS
+aWM
+aWM
+aWM
+bgi
+bin
+bjR
+brX
+bnA
+bpN
+bsa
+btL
+bAW
+bxn
+bzo
+bAV
+bCD
+bEh
+bGe
+bGd
+bKL
+bNY
+bGd
+ceC
+aRy
+bvt
+aaa
+aMq
+chz
+bpn
+cpO
+bgn
+anT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(213,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+anT
+aMq
+bnk
+bnn
+bpr
+aOV
+aaa
+aRy
+aRy
+aTV
+aVn
+aWN
+aTV
+bqm
+aTV
+aTV
+beu
+aWN
+bio
+bjR
+blF
+bnB
+bpO
+bsb
+btM
+bvw
+bxo
+bzp
+bJh
+bCE
+bCE
+bCE
+bHD
+bGd
+bGd
+bGd
+bUL
+aRy
+bvt
+aaa
+aMq
+chz
+cmK
+bpr
+bgn
+anT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(214,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+anT
+aMq
+aYd
+bfS
+bps
+aOW
+aOW
+aRz
+aSE
+aTW
+bjS
+aWO
+aYz
+brx
+bvf
+aTV
+byx
+bgj
+bip
+blI
+blG
+bnC
+bpP
+bsc
+btN
+bvx
+bxp
+bzq
+bAX
+bCF
+bEi
+bCF
+bHE
+bKM
+bKO
+bMp
+bNZ
+aRz
+bRa
+aOW
+bTm
+chM
+ckT
+cmX
+bgn
+anT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(215,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+anT
+aMq
+bnk
+bnn
+bpr
+aOV
+aaa
+aRy
+aSF
+aTX
+aVp
+aWP
+aTV
+aZV
+aTV
+aTV
+bew
+bgk
+blE
+bjQ
+blH
+bnD
+bpQ
+bsd
+btL
+bvy
+bxq
+bzr
+bAY
+bCE
+bCE
+bCE
+bHF
+bJk
+bJk
+bMq
+cgy
+aRy
+bvt
+aaa
+aMq
+chz
+cmK
+bpr
+bgn
+anT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(216,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+anT
+aMq
+bnm
+bpq
+bpr
+aOV
+aaa
+aRy
+aRy
+aTV
+aVq
+aWQ
+aYA
+aZW
+aYA
+aYA
+bex
+bgl
+bir
+bjQ
+bse
+bnE
+bpR
+byM
+btL
+bvz
+bxr
+bzs
+bJi
+bCD
+bEj
+bGe
+bGd
+bKP
+bOb
+bMr
+cho
+aRy
+bvt
+aaa
+aMq
+chz
+bpq
+bzv
+bgn
+anT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(217,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+anT
+aaa
+aOY
+bcQ
+aNz
+aOV
+aaa
+aaa
+aRy
+aTV
+aVr
+aWR
+aYB
+aZX
+bbH
+aWR
+aVr
+bgm
+bis
+bjQ
+bjQ
+bnz
+bpS
+brZ
+btL
+bvA
+bxs
+bzt
+bBa
+bCD
+bEg
+bGd
+bGd
+bKN
+bOa
+bMs
+chn
+aRy
+aaa
+aaa
+aMq
+bez
+aVk
+aOY
+aaa
+anT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(218,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+anT
+anT
+anT
+aMr
+aNz
+aOV
+aaa
+aaa
+aRy
+aRy
+aTV
+aTV
+aTV
+aZY
+aTV
+aTV
+aTV
+aTV
+aTV
+bjT
+blJ
+bnF
+bpT
+byO
+btL
+btL
+btL
+btL
+btL
+bCD
+bEk
+bGf
+bHG
+bJn
+aRy
+aRy
+aRy
+aRy
+aaa
+aaa
+aMq
+bez
+bBb
+anT
+anT
+anT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(219,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+anT
+aMq
+aNz
+aOV
+aaa
+aaa
+aaa
+aRy
+aRy
+aRy
+aTV
+aTV
+aTV
+aRy
+aRy
+aRy
+aRy
+bjT
+blK
+bnG
+bpU
+bsg
+aRy
+aRy
+aRy
+aRy
+aRy
+aRy
+aRy
+aRy
+aRy
+aRy
+aRy
+bvt
+bvt
+aaa
+aaa
+aaa
+aMq
+bez
+bgn
+anT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(220,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+anT
+aMq
+aNz
+aOV
+aaa
+aaa
+aaa
+aTU
+aaa
+aRy
+aRy
+aRy
+aRy
+aRy
+aRy
+aRy
+aRy
+aRy
+blL
+bnH
+bpV
+bsh
+aRy
+bvt
+aaa
+aTU
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aTU
+aaa
+aaa
+aaa
+aaa
+aaa
+aMq
+bez
+bgn
+anT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(221,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+anT
+aMq
+aNz
+aOX
+aNw
+aNw
+aNw
+aTY
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aTU
+aaa
+aaa
+aRy
+blM
+bnI
+bpW
+bsi
+aRy
+aaa
+aaa
+aTY
+aNw
+aNw
+aNw
+aNw
+aNw
+aNw
+aTY
+aNw
+aNw
+aNw
+aNw
+aNw
+bly
+bez
+bgn
+anT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(222,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+anT
+aMq
+aNB
+aOT
+aOT
+aOT
+aOT
+aTZ
+aOX
+aNw
+aNw
+aNw
+aNw
+aNw
+aTY
+aaa
+aaa
+aRy
+aRy
+aRy
+bpX
+aRy
+aRy
+aaa
+aMq
+bzu
+aOT
+aOT
+aOT
+aOT
+aOT
+aOT
+bKR
+bMt
+bMt
+bMt
+bMt
+bMt
+bMt
+bUM
+bBb
+anT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(223,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+anT
+aaa
+aNC
+aOY
+aOY
+aOY
+aSG
+aUa
+aOT
+aOT
+aOT
+aOT
+aOT
+aOT
+bey
+bgn
+aaa
+aaa
+aaa
+aMq
+bpY
+bgn
+aaa
+aaa
+aMq
+bez
+aVk
+aOY
+aOY
+aOY
+aOY
+aOY
+aNC
+aOY
+aOY
+aOY
+aOY
+aOY
+aOY
+aNC
+aaa
+anT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(224,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+anT
+anT
+anT
+anT
+anT
+anT
+aaa
+aNC
+aOY
+aOY
+aOY
+aOY
+aOY
+bcQ
+bez
+bgo
+aNw
+aNw
+aNw
+aSD
+bpZ
+bsj
+aNw
+aNw
+bly
+bez
+bgn
+anT
+anT
+anT
+anT
+anT
+anT
+anT
+anT
+anT
+anT
+anT
+anT
+anT
+anT
+anT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(225,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+anT
+anT
+anT
+anT
+anT
+anT
+anT
+anT
+aMq
+beA
+aOT
+aOT
+aOT
+aOT
+aOT
+bqa
+aOT
+aOT
+aOT
+aOT
+bzv
+bBb
+anT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(226,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+anT
+aaa
+aNC
+aOY
+aOY
+aOY
+aOY
+aOY
+aNC
+aOY
+aOY
+aOY
+aOY
+aNC
+aaa
+anT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(227,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+anT
+anT
+aag
+anT
+anT
+anT
+anT
+anT
+anT
+anT
+anT
+anT
+anT
+anT
+anT
+anT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(228,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(229,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(230,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(231,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(232,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(233,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(234,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(235,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(236,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(237,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(238,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(239,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(240,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(241,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(242,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(243,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(244,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(245,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(246,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(247,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(248,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(249,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(250,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(251,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(252,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(253,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(254,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(255,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
"}
diff --git a/_maps/map_files/OmegaStation/OmegaStation.dmm b/_maps/map_files/OmegaStation/OmegaStation.dmm
index 5c13a120a15..3c366273e0c 100644
--- a/_maps/map_files/OmegaStation/OmegaStation.dmm
+++ b/_maps/map_files/OmegaStation/OmegaStation.dmm
@@ -9179,9 +9179,6 @@
})
"aoh" = (
/obj/machinery/door/firedoor,
-/obj/machinery/mineral/ore_redemption{
- dir = 8
- },
/obj/effect/decal/cleanable/dirt,
/obj/effect/decal/cleanable/dirt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -9190,6 +9187,10 @@
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/obj/machinery/mineral/ore_redemption{
+ input_dir = 4;
+ output_dir = 8
+ },
/turf/open/floor/plasteel,
/area/quartermaster/miningdock)
"aoi" = (
diff --git a/_maps/map_files/PubbyStation/PubbyStation.dmm b/_maps/map_files/PubbyStation/PubbyStation.dmm
index 49ac9e5279e..992ec1f31c5 100644
--- a/_maps/map_files/PubbyStation/PubbyStation.dmm
+++ b/_maps/map_files/PubbyStation/PubbyStation.dmm
@@ -30,27 +30,27 @@
/turf/closed/wall/r_wall,
/area/wreck/ai)
"aag" = (
-/turf/open/floor/plasteel/white,
/obj/effect/turf_decal/stripes/corner,
+/turf/open/floor/plasteel/white,
/area/wreck/ai)
"aah" = (
-/turf/open/floor/plasteel/white,
/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/white,
/area/wreck/ai)
"aai" = (
-/turf/open/floor/plasteel/white,
/obj/effect/turf_decal/stripes/corner{
dir = 1
},
+/turf/open/floor/plasteel/white,
/area/wreck/ai)
"aaj" = (
/turf/open/floor/plasteel/white,
/area/wreck/ai)
"aak" = (
-/turf/open/floor/plasteel/white,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plasteel/white,
/area/wreck/ai)
"aal" = (
/obj/machinery/porta_turret/ai{
@@ -76,58 +76,26 @@
/turf/open/floor/bluegrid,
/area/wreck/ai)
"aao" = (
-/turf/open/floor/plasteel/white,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel/white,
/area/wreck/ai)
"aap" = (
-/turf/open/floor/plasteel/white,
/obj/effect/turf_decal/stripes/corner{
dir = 8
},
+/turf/open/floor/plasteel/white,
/area/wreck/ai)
"aaq" = (
-/turf/open/floor/plasteel/white{
- heat_capacity = 1e+006
- },
/obj/effect/turf_decal/stripes/corner{
dir = 4
},
+/turf/open/floor/plasteel/white{
+ heat_capacity = 1e+006
+ },
/area/wreck/ai)
"aar" = (
-/turf/open/space,
-/obj/machinery/porta_turret/syndicate{
- dir = 9
- },
-/turf/closed/wall/mineral/plastitanium{
- dir = 8;
- icon_state = "diagonalWall3"
- },
-/area/shuttle/syndicate)
-"aas" = (
-/turf/closed/wall/mineral/plastitanium,
-/area/shuttle/syndicate)
-"aat" = (
-/obj/structure/grille,
-/obj/machinery/door/poddoor/shutters{
- id = "syndieshutters";
- name = "blast shutters"
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/shuttle/syndicate)
-"aau" = (
-/turf/open/space,
-/obj/machinery/porta_turret/syndicate{
- dir = 5
- },
-/turf/closed/wall/mineral/plastitanium{
- dir = 1;
- icon_state = "diagonalWall3"
- },
-/area/shuttle/syndicate)
-"aav" = (
/obj/docking_port/stationary{
dheight = 9;
dir = 2;
@@ -140,40 +108,7 @@
},
/turf/open/space,
/area/space)
-"aaw" = (
-/obj/structure/table,
-/obj/machinery/microwave,
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"aax" = (
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"aay" = (
-/obj/structure/table,
-/obj/item/device/flashlight/lamp{
- pixel_x = 4;
- pixel_y = 1
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"aaz" = (
-/obj/machinery/computer/shuttle/syndicate,
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"aaA" = (
-/obj/structure/table,
-/obj/machinery/button/door{
- id = "syndieshutters";
- name = "remote shutter control";
- req_access_txt = "150"
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"aaB" = (
-/obj/structure/frame/computer,
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"aaC" = (
+"aas" = (
/obj/structure/table/wood,
/obj/machinery/light/small{
dir = 8
@@ -186,7 +121,7 @@
/area/chapel/main{
name = "Monastery"
})
-"aaD" = (
+"aat" = (
/obj/structure/cable/yellow{
d1 = 2;
d2 = 4;
@@ -211,7 +146,7 @@
},
/turf/open/floor/bluegrid,
/area/wreck/ai)
-"aaE" = (
+"aau" = (
/obj/machinery/power/smes{
charge = 5e+006
},
@@ -236,7 +171,7 @@
},
/turf/open/floor/bluegrid,
/area/wreck/ai)
-"aaF" = (
+"aav" = (
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
@@ -261,7 +196,7 @@
},
/turf/open/floor/bluegrid,
/area/wreck/ai)
-"aaG" = (
+"aaw" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/yellow,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -271,22 +206,7 @@
/area/chapel/main{
name = "Monastery"
})
-"aaH" = (
-/obj/structure/table,
-/obj/item/weapon/storage/box/donkpockets{
- pixel_x = 3;
- pixel_y = 3
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"aaI" = (
-/obj/structure/chair/comfy/beige{
- dir = 1;
- icon_state = "comfychair"
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"aaJ" = (
+"aax" = (
/obj/machinery/porta_turret/ai{
dir = 4
},
@@ -301,7 +221,7 @@
},
/turf/open/floor/plasteel/black,
/area/wreck/ai)
-"aaK" = (
+"aay" = (
/obj/structure/cable/yellow{
d1 = 2;
d2 = 4;
@@ -310,7 +230,7 @@
},
/turf/open/floor/bluegrid,
/area/wreck/ai)
-"aaL" = (
+"aaz" = (
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -324,7 +244,7 @@
},
/turf/open/floor/plasteel/white,
/area/wreck/ai)
-"aaM" = (
+"aaA" = (
/obj/machinery/shower{
dir = 8;
pixel_y = -4
@@ -338,7 +258,7 @@
/area/chapel/main{
name = "Monastery"
})
-"aaN" = (
+"aaB" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 8;
@@ -351,7 +271,7 @@
},
/turf/open/floor/plasteel/white,
/area/wreck/ai)
-"aaO" = (
+"aaC" = (
/obj/machinery/ai_slipper{
uses = 8
},
@@ -362,7 +282,7 @@
/obj/machinery/holopad,
/turf/open/floor/plasteel/white,
/area/wreck/ai)
-"aaP" = (
+"aaD" = (
/obj/machinery/turretid{
name = "AI Chamber turret control";
pixel_x = -5;
@@ -370,13 +290,13 @@
},
/turf/open/floor/plasteel/white,
/area/wreck/ai)
-"aaQ" = (
+"aaE" = (
/obj/structure/shuttle/engine/propulsion/burst{
- dir = 4
+ dir = 8
},
/turf/closed/wall/mineral/titanium,
/area/shuttle/abandoned)
-"aaR" = (
+"aaF" = (
/obj/machinery/porta_turret/ai{
dir = 4
},
@@ -391,37 +311,13 @@
},
/turf/open/floor/plasteel/black,
/area/wreck/ai)
-"aaS" = (
-/obj/structure/table,
-/obj/item/stack/sheet/glass{
- amount = 10
- },
-/obj/item/device/multitool,
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"aaT" = (
-/obj/item/device/radio/intercom{
- desc = "Talk through this. Evilly";
- freerange = 1;
- frequency = 1213;
- name = "Syndicate Intercom";
- pixel_y = -32;
- subspace_transmission = 1;
- syndie = 1
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"aaU" = (
-/obj/structure/closet/syndicate/personal,
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"aaV" = (
-/turf/open/floor/plasteel/white,
+"aaG" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel/white,
/area/wreck/ai)
-"aaW" = (
+"aaH" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -429,7 +325,7 @@
},
/turf/open/floor/bluegrid,
/area/wreck/ai)
-"aaX" = (
+"aaI" = (
/obj/effect/landmark/start{
name = "AI"
},
@@ -470,44 +366,10 @@
},
/turf/open/floor/bluegrid,
/area/wreck/ai)
-"aaY" = (
-/turf/open/space,
-/turf/closed/wall/mineral/plastitanium{
- icon_state = "diagonalWall3"
- },
-/area/shuttle/syndicate)
-"aaZ" = (
-/obj/machinery/door/window{
- name = "Cockpit";
- req_access_txt = "150"
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"aba" = (
-/turf/open/space,
-/turf/closed/wall/mineral/plastitanium{
- dir = 4;
- icon_state = "diagonalWall3"
- },
-/area/shuttle/syndicate)
-"abb" = (
+"aaJ" = (
/turf/open/space,
/area/shuttle/syndicate)
-"abc" = (
-/obj/structure/table,
-/obj/item/stack/cable_coil,
-/obj/item/weapon/crowbar/red,
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"abd" = (
-/obj/structure/table,
-/obj/item/weapon/storage/box/zipties{
- pixel_x = 1;
- pixel_y = 2
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"abe" = (
+"aaK" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 4;
@@ -515,7 +377,7 @@
},
/turf/open/floor/bluegrid,
/area/wreck/ai)
-"abf" = (
+"aaL" = (
/obj/structure/cable/yellow{
d1 = 2;
d2 = 8;
@@ -523,23 +385,17 @@
},
/turf/open/floor/bluegrid,
/area/wreck/ai)
-"abg" = (
-/obj/structure/chair{
- dir = 8
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"abh" = (
+"aaM" = (
/obj/machinery/door/firedoor/heavy,
/turf/open/floor/bluegrid,
/area/wreck/ai)
-"abi" = (
+"aaN" = (
/obj/machinery/airalarm{
pixel_y = 22
},
/turf/open/floor/bluegrid,
/area/wreck/ai)
-"abj" = (
+"aaO" = (
/obj/machinery/camera/motion{
c_tag = "MiniSat AI Chamber South";
dir = 2;
@@ -558,41 +414,35 @@
},
/turf/open/floor/bluegrid,
/area/wreck/ai)
-"abk" = (
+"aaP" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on,
/turf/open/floor/plating/airless,
/area/space)
-"abl" = (
-/obj/machinery/porta_turret/syndicate{
- dir = 4
- },
-/turf/closed/wall/mineral/plastitanium,
-/area/shuttle/syndicate)
-"abm" = (
+"aaQ" = (
/obj/structure/cable/yellow{
d1 = 2;
d2 = 4;
icon_state = "2-4";
tag = ""
},
-/turf/open/floor/plasteel/white,
/obj/effect/turf_decal/stripes/corner{
dir = 8
},
+/turf/open/floor/plasteel/white,
/area/wreck/ai)
-"abn" = (
+"aaR" = (
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8";
pixel_y = 0
},
-/turf/open/floor/plasteel/white,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel/white,
/area/wreck/ai)
-"abo" = (
+"aaS" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 4;
@@ -604,14 +454,14 @@
icon_state = "4-8";
pixel_y = 0
},
-/turf/open/floor/plasteel/white{
- heat_capacity = 1e+006
- },
/obj/effect/turf_decal/stripes/corner{
dir = 4
},
+/turf/open/floor/plasteel/white{
+ heat_capacity = 1e+006
+ },
/area/wreck/ai)
-"abp" = (
+"aaT" = (
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -621,7 +471,7 @@
/obj/machinery/door/firedoor/heavy,
/turf/open/floor/plasteel/white,
/area/wreck/ai)
-"abq" = (
+"aaU" = (
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -630,7 +480,7 @@
},
/turf/open/floor/plasteel/white,
/area/wreck/ai)
-"abr" = (
+"aaV" = (
/obj/structure/cable/yellow{
d1 = 2;
d2 = 8;
@@ -641,31 +491,23 @@
},
/turf/open/floor/plasteel/white,
/area/wreck/ai)
-"abs" = (
+"aaW" = (
/obj/machinery/door/firedoor/heavy,
/turf/open/floor/plasteel/white,
/area/wreck/ai)
-"abt" = (
+"aaX" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/space,
/area/space)
-"abu" = (
+"aaY" = (
/obj/structure/grille/broken,
/turf/open/space,
/area/space)
-"abv" = (
-/obj/machinery/suit_storage_unit/syndicate,
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"abw" = (
-/obj/structure/closet/syndicate/nuclear,
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"abx" = (
+"aaZ" = (
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/AIsatextAP)
-"aby" = (
+"aba" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -673,7 +515,7 @@
},
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/AIsatextAP)
-"abz" = (
+"abb" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -681,14 +523,14 @@
},
/turf/open/floor/plating,
/area/wreck/ai)
-"abA" = (
+"abc" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
on = 1
},
/turf/open/floor/plasteel/black,
/area/wreck/ai)
-"abB" = (
+"abd" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -696,7 +538,7 @@
},
/turf/open/floor/plasteel/black,
/area/wreck/ai)
-"abC" = (
+"abe" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -704,83 +546,27 @@
},
/turf/open/floor/plating,
/area/wreck/ai)
-"abD" = (
+"abf" = (
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/AIsatextAS)
-"abE" = (
+"abg" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/AIsatextAS)
-"abF" = (
-/obj/structure/chair/stool{
- pixel_y = 8
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"abG" = (
-/obj/structure/table,
-/obj/item/device/aicard,
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"abH" = (
-/obj/machinery/door/poddoor{
- id = "smindicate";
- name = "outer blast door"
- },
-/obj/machinery/button/door{
- id = "smindicate";
- name = "external door control";
- pixel_x = -26;
- pixel_y = 0;
- req_access_txt = "150"
- },
-/obj/docking_port/mobile{
- dheight = 9;
- dir = 2;
- dwidth = 5;
- height = 24;
- id = "syndicate";
- name = "syndicate infiltrator";
- port_angle = 0;
- roundstart_move = "syndicate_away";
- width = 18
- },
-/obj/docking_port/stationary{
- dheight = 9;
- dir = 2;
- dwidth = 5;
- height = 24;
- id = "syndicate_nw";
- name = "northwest of station";
- turf_type = /turf/open/space;
- width = 18
- },
-/turf/open/floor/plating,
-/area/shuttle/syndicate)
-"abI" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0
- },
-/turf/closed/wall/mineral/plastitanium,
-/area/shuttle/syndicate)
-"abJ" = (
+"abh" = (
/obj/machinery/computer/station_alert,
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAP)
-"abK" = (
+"abi" = (
/obj/machinery/computer/monitor,
/obj/structure/cable/yellow,
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAP)
-"abL" = (
+"abj" = (
/obj/machinery/computer/atmos_alert,
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAP)
-"abM" = (
+"abk" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -789,7 +575,7 @@
},
/turf/open/floor/plating,
/area/wreck/ai)
-"abN" = (
+"abl" = (
/obj/machinery/door/firedoor,
/obj/structure/cable/yellow{
d1 = 1;
@@ -804,7 +590,7 @@
dir = 8
},
/area/wreck/ai)
-"abO" = (
+"abm" = (
/obj/structure/table/glass,
/obj/item/stack/sheet/metal,
/obj/item/stack/sheet/glass{
@@ -821,54 +607,18 @@
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAS)
-"abP" = (
+"abn" = (
/obj/machinery/light/small{
dir = 1
},
/obj/machinery/computer/rdconsole/robotics,
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAS)
-"abQ" = (
+"abo" = (
/obj/machinery/mecha_part_fabricator,
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAS)
-"abR" = (
-/obj/structure/table,
-/obj/item/weapon/c4{
- pixel_x = 2;
- pixel_y = -5
- },
-/obj/item/weapon/c4{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/weapon/c4{
- pixel_x = 2;
- pixel_y = -3
- },
-/obj/item/weapon/c4{
- pixel_x = -2;
- pixel_y = -1
- },
-/obj/item/weapon/c4{
- pixel_x = 3;
- pixel_y = 3
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"abS" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/shuttle/syndicate)
-"abT" = (
-/obj/machinery/door/window{
- name = "Ready Room";
- req_access_txt = "150"
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"abU" = (
+"abp" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1;
scrub_N2O = 0;
@@ -876,19 +626,19 @@
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAP)
-"abV" = (
+"abq" = (
/obj/structure/chair/office/dark{
dir = 1
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAP)
-"abW" = (
+"abr" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
on = 1
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAP)
-"abX" = (
+"abs" = (
/obj/structure/table,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable/yellow{
@@ -904,7 +654,7 @@
/obj/machinery/recharger,
/turf/open/floor/plasteel/grimy,
/area/ai_monitored/turret_protected/aisat_interior)
-"abY" = (
+"abt" = (
/obj/structure/chair/office/dark{
dir = 1
},
@@ -916,7 +666,7 @@
},
/turf/open/floor/plasteel/grimy,
/area/ai_monitored/turret_protected/aisat_interior)
-"abZ" = (
+"abu" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -929,13 +679,13 @@
},
/turf/open/floor/plasteel/grimy,
/area/ai_monitored/turret_protected/aisat_interior)
-"aca" = (
+"abv" = (
/obj/structure/chair/office/dark{
dir = 4
},
/turf/open/floor/plasteel/grimy,
/area/ai_monitored/turret_protected/aisat_interior)
-"acb" = (
+"abw" = (
/obj/structure/table,
/obj/item/weapon/pen,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -951,7 +701,7 @@
},
/turf/open/floor/plasteel/grimy,
/area/ai_monitored/turret_protected/aisat_interior)
-"acc" = (
+"abx" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1;
scrub_N2O = 0;
@@ -959,37 +709,23 @@
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAS)
-"acd" = (
+"aby" = (
/obj/structure/chair/office/dark{
dir = 1
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAS)
-"ace" = (
+"abz" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
on = 1
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAS)
-"acf" = (
-/obj/machinery/door/window{
- dir = 4;
- name = "EVA Storage";
- req_access_txt = "150"
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"acg" = (
-/obj/machinery/door/airlock/external{
- req_access_txt = "150"
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"ach" = (
+"abA" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAP)
-"aci" = (
+"abB" = (
/obj/machinery/camera{
c_tag = "MiniSat Maintenance Port Fore";
dir = 1;
@@ -997,13 +733,13 @@
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAP)
-"acj" = (
+"abC" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAP)
-"ack" = (
+"abD" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "MiniSat Maintenance";
req_access_txt = "65"
@@ -1013,7 +749,7 @@
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAP)
-"acl" = (
+"abE" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/obj/machinery/airalarm{
dir = 1;
@@ -1021,7 +757,7 @@
},
/turf/open/floor/plasteel/grimy,
/area/ai_monitored/turret_protected/aisat_interior)
-"acm" = (
+"abF" = (
/obj/machinery/light/small,
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
@@ -1029,7 +765,7 @@
},
/turf/open/floor/plasteel/grimy,
/area/ai_monitored/turret_protected/aisat_interior)
-"acn" = (
+"abG" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -1037,7 +773,7 @@
},
/turf/open/floor/plasteel/grimy,
/area/ai_monitored/turret_protected/aisat_interior)
-"aco" = (
+"abH" = (
/obj/machinery/light/small,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
@@ -1060,11 +796,11 @@
},
/turf/open/floor/plasteel/grimy,
/area/ai_monitored/turret_protected/aisat_interior)
-"acp" = (
+"abI" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/grimy,
/area/ai_monitored/turret_protected/aisat_interior)
-"acq" = (
+"abJ" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "MiniSat Maintenance";
req_access_txt = "65"
@@ -1075,11 +811,11 @@
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAS)
-"acr" = (
+"abK" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAS)
-"acs" = (
+"abL" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 4;
name = "Waste Out";
@@ -1092,43 +828,26 @@
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAS)
-"act" = (
+"abM" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAS)
-"acu" = (
+"abN" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/AIsatextAS)
-"acv" = (
-/obj/machinery/door/window{
- base_state = "right";
- dir = 4;
- icon_state = "right";
- name = "EVA Storage";
- req_access_txt = "150"
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"acw" = (
-/turf/open/space,
-/turf/closed/wall/mineral/plastitanium{
- dir = 1;
- icon_state = "diagonalWall3"
- },
-/area/shuttle/syndicate)
-"acx" = (
+"abO" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/AIsatextAP)
-"acy" = (
+"abP" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "MiniSat Maintenance";
req_access_txt = "65"
@@ -1138,29 +857,29 @@
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAP)
-"acz" = (
+"abQ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/AIsatextAP)
-"acA" = (
+"abR" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/AIsatextAP)
-"acB" = (
+"abS" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/AIsatextAP)
-"acC" = (
+"abT" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/aisat_interior)
-"acD" = (
+"abU" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/hatch{
name = "MiniSat Chamber Observation";
@@ -1176,26 +895,26 @@
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/aisat_interior)
-"acE" = (
+"abV" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/AIsatextAS)
-"acF" = (
+"abW" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/AIsatextAS)
-"acG" = (
+"abX" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/AIsatextAS)
-"acH" = (
+"abY" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "MiniSat Maintenance";
req_access_txt = "65"
@@ -1206,28 +925,16 @@
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAS)
-"acI" = (
-/obj/item/device/radio/intercom{
- desc = "Talk through this. Evilly";
- freerange = 1;
- frequency = 1213;
- name = "Syndicate Intercom";
- pixel_x = -32;
- subspace_transmission = 1;
- syndie = 1
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"acJ" = (
+"abZ" = (
/obj/structure/grille,
/obj/structure/lattice,
/turf/open/space,
/area/space)
-"acK" = (
+"aca" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/AIsatextAP)
-"acL" = (
+"acb" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
external_pressure_bound = 101.325;
@@ -1236,17 +943,17 @@
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAP)
-"acM" = (
+"acc" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9;
pixel_y = 0
},
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/AIsatextAP)
-"acN" = (
+"acd" = (
/turf/open/space,
/area/ai_monitored/turret_protected/AIsatextAP)
-"acO" = (
+"ace" = (
/obj/structure/lattice,
/obj/machinery/light/small{
dir = 1
@@ -1259,10 +966,10 @@
},
/turf/open/space,
/area/ai_monitored/turret_protected/AIsatextAP)
-"acP" = (
+"acf" = (
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/aisat_interior)
-"acQ" = (
+"acg" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
@@ -1274,10 +981,10 @@
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/aisat_interior)
-"acR" = (
+"ach" = (
/turf/open/space,
/area/ai_monitored/turret_protected/AIsatextAS)
-"acS" = (
+"aci" = (
/obj/structure/lattice,
/obj/machinery/light/small{
dir = 1
@@ -1290,112 +997,38 @@
},
/turf/open/space,
/area/ai_monitored/turret_protected/AIsatextAS)
-"acT" = (
+"acj" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/AIsatextAS)
-"acU" = (
+"ack" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
on = 1
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAS)
-"acV" = (
-/obj/machinery/sleeper/syndie{
- dir = 4
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/syndicate)
-"acW" = (
-/turf/open/floor/mineral/titanium,
-/area/shuttle/syndicate)
-"acX" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/syndicate)
-"acY" = (
-/obj/structure/tank_dispenser/oxygen,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/syndicate)
-"acZ" = (
-/obj/structure/table,
-/obj/item/stack/medical/ointment,
-/obj/item/stack/medical/bruise_pack,
-/obj/structure/extinguisher_cabinet{
- pixel_x = -5;
- pixel_y = 30
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/syndicate)
-"ada" = (
-/obj/structure/table,
-/obj/item/weapon/stock_parts/cell/high{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/weapon/stock_parts/cell/high,
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"adb" = (
-/obj/structure/table,
-/obj/item/weapon/screwdriver{
- pixel_y = 9
- },
-/obj/item/device/assembly/voice{
- pixel_y = 3
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"adc" = (
-/obj/structure/table,
-/obj/item/weapon/wrench,
-/obj/item/device/assembly/infra,
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"add" = (
-/obj/structure/table,
-/obj/item/device/assembly/signaler,
-/obj/item/device/assembly/signaler,
-/obj/item/device/assembly/prox_sensor{
- pixel_x = -8;
- pixel_y = 4
- },
-/obj/item/device/assembly/prox_sensor{
- pixel_x = -8;
- pixel_y = 4
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"ade" = (
-/obj/structure/table,
-/obj/item/weapon/weldingtool/largetank{
- pixel_y = 3
- },
-/obj/item/device/multitool,
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"adf" = (
+"acl" = (
/obj/structure/lattice,
/obj/structure/grille/broken,
/turf/open/space,
/area/space)
-"adg" = (
+"acm" = (
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAP)
-"adh" = (
+"acn" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/space,
/area/ai_monitored/turret_protected/AIsatextAP)
-"adi" = (
+"aco" = (
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/aisat_interior)
-"adj" = (
+"acp" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -1403,36 +1036,22 @@
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/aisat_interior)
-"adk" = (
+"acq" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/space,
/area/ai_monitored/turret_protected/AIsatextAS)
-"adl" = (
+"acr" = (
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAS)
-"adm" = (
+"acs" = (
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAS)
-"adn" = (
-/obj/structure/bed/roller,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/syndicate)
-"ado" = (
-/obj/structure/sign/bluecross_2,
-/turf/closed/wall/mineral/plastitanium,
-/area/shuttle/syndicate)
-"adp" = (
-/obj/structure/table,
-/obj/item/weapon/storage/toolbox/syndicate,
-/obj/item/weapon/crowbar/red,
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"adq" = (
+"act" = (
/turf/closed/wall/r_wall,
/area/security/prison)
-"adr" = (
+"acu" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/cable{
@@ -1442,29 +1061,14 @@
},
/turf/open/floor/plating,
/area/security/prison)
-"ads" = (
-/obj/machinery/door/window{
- dir = 4;
- name = "Infirmary";
- req_access_txt = "150"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/syndicate)
-"adt" = (
-/obj/machinery/door/window/westright{
- name = "Tool Storage";
- req_access_txt = "150"
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"adu" = (
+"acv" = (
/obj/machinery/hydroponics/constructable,
/obj/item/seeds/potato,
/obj/item/seeds/carrot,
/obj/item/seeds/corn,
/turf/open/floor/plasteel/black,
/area/security/prison)
-"adv" = (
+"acw" = (
/obj/item/weapon/cultivator,
/obj/structure/cable{
d1 = 1;
@@ -1477,7 +1081,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/prison)
-"adw" = (
+"acx" = (
/obj/machinery/hydroponics/constructable,
/obj/structure/cable{
d1 = 4;
@@ -1495,7 +1099,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/prison)
-"adx" = (
+"acy" = (
/obj/item/weapon/reagent_containers/glass/bucket,
/obj/structure/cable{
d1 = 1;
@@ -1514,7 +1118,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/prison)
-"ady" = (
+"acz" = (
/obj/structure/easel,
/obj/item/weapon/canvas/nineteenXnineteen,
/obj/structure/cable{
@@ -1525,7 +1129,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/prison)
-"adz" = (
+"acA" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -1542,13 +1146,13 @@
},
/turf/open/floor/plasteel/black,
/area/security/prison)
-"adA" = (
+"acB" = (
/obj/machinery/biogenerator,
/turf/open/floor/plasteel/darkgreen/side{
dir = 8
},
/area/security/prison)
-"adB" = (
+"acC" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1;
@@ -1557,13 +1161,13 @@
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAP)
-"adC" = (
+"acD" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/AIsatextAP)
-"adD" = (
+"acE" = (
/obj/structure/lattice,
/obj/machinery/light/small,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -1574,7 +1178,7 @@
},
/turf/open/space,
/area/ai_monitored/turret_protected/AIsatextAP)
-"adE" = (
+"acF" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1;
scrub_N2O = 0;
@@ -1587,7 +1191,7 @@
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/aisat_interior)
-"adF" = (
+"acG" = (
/obj/structure/lattice,
/obj/machinery/light/small,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -1598,13 +1202,13 @@
},
/turf/open/space,
/area/ai_monitored/turret_protected/AIsatextAS)
-"adG" = (
+"acH" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/AIsatextAS)
-"adH" = (
+"acI" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
on = 1;
@@ -1613,52 +1217,30 @@
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAS)
-"adI" = (
-/obj/machinery/door/window{
- base_state = "right";
- dir = 4;
- icon_state = "right";
- name = "Infirmary";
- req_access_txt = "150"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/syndicate)
-"adJ" = (
-/obj/machinery/door/window{
- dir = 8;
- name = "Tool Storage";
- req_access_txt = "150"
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"adK" = (
-/obj/machinery/recharge_station,
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"adL" = (
+"acJ" = (
/obj/machinery/hydroponics/constructable,
/obj/item/seeds/grass,
/turf/open/floor/plasteel/black,
/area/security/prison)
-"adM" = (
+"acK" = (
/obj/item/device/plant_analyzer,
/turf/open/floor/plasteel/black,
/area/security/prison)
-"adN" = (
+"acL" = (
/obj/machinery/hydroponics/constructable,
/obj/item/seeds/sunflower,
/obj/item/seeds/poppy,
/turf/open/floor/plasteel/black,
/area/security/prison)
-"adO" = (
+"acM" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel/black,
/area/security/prison)
-"adP" = (
+"acN" = (
/obj/item/weapon/storage/crayons,
/turf/open/floor/plasteel/black,
/area/security/prison)
-"adQ" = (
+"acO" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -1666,7 +1248,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/prison)
-"adR" = (
+"acP" = (
/obj/machinery/seed_extractor,
/obj/machinery/light{
dir = 4;
@@ -1676,37 +1258,37 @@
dir = 8
},
/area/security/prison)
-"adS" = (
+"acQ" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8;
initialize_directions = 11
},
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/AIsatextAP)
-"adT" = (
+"acR" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/AIsatextAP)
-"adU" = (
+"acS" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/AIsatextAP)
-"adV" = (
+"acT" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/AIsatextAP)
-"adW" = (
+"acU" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/aisat_interior)
-"adX" = (
+"acV" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/hatch{
name = "MiniSat Chamber Hallway";
@@ -1720,131 +1302,54 @@
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/aisat_interior)
-"adY" = (
+"acW" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/aisat_interior)
-"adZ" = (
+"acX" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/AIsatextAS)
-"aea" = (
+"acY" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/AIsatextAS)
-"aeb" = (
+"acZ" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "MiniSat Maintenance";
req_access_txt = "65"
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAS)
-"aec" = (
-/obj/machinery/porta_turret/syndicate{
- dir = 5
- },
-/turf/closed/wall/mineral/plastitanium,
-/area/shuttle/syndicate)
-"aed" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/table,
-/obj/item/bodypart/r_arm/robot,
-/obj/item/bodypart/l_arm/robot,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/syndicate)
-"aee" = (
-/obj/machinery/door/window{
- dir = 1;
- name = "Surgery";
- req_access_txt = "150"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/syndicate)
-"aef" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/syndicate)
-"aeg" = (
-/obj/structure/table,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/item/weapon/storage/firstaid/regular{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/weapon/storage/firstaid/brute,
-/obj/item/weapon/storage/firstaid/regular{
- pixel_x = -3;
- pixel_y = -3
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/syndicate)
-"aeh" = (
-/obj/structure/table,
-/obj/item/weapon/storage/firstaid/regular{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/weapon/storage/firstaid/fire,
-/obj/item/weapon/storage/firstaid/regular{
- pixel_x = -3;
- pixel_y = -3
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/syndicate)
-"aei" = (
-/obj/structure/table,
-/obj/item/device/sbeacondrop/bomb{
- pixel_y = 5
- },
-/obj/item/device/sbeacondrop/bomb,
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"aej" = (
-/obj/structure/table,
-/obj/item/weapon/grenade/syndieminibomb{
- pixel_x = 4;
- pixel_y = 2
- },
-/obj/item/weapon/grenade/syndieminibomb{
- pixel_x = -1
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"aek" = (
+"ada" = (
/obj/structure/bookcase,
/turf/open/floor/plasteel/black,
/area/security/prison)
-"ael" = (
+"adb" = (
/turf/open/floor/plasteel/black,
/area/security/prison)
-"aem" = (
+"adc" = (
/obj/effect/landmark{
name = "xeno_spawn";
pixel_x = -1
},
/turf/open/floor/plasteel/black,
/area/security/prison)
-"aen" = (
+"add" = (
/obj/structure/sink{
pixel_y = 30
},
/turf/open/floor/plasteel/barber,
/area/security/prison)
-"aeo" = (
+"ade" = (
/obj/machinery/washing_machine,
/turf/open/floor/plasteel/barber,
/area/security/prison)
-"aep" = (
+"adf" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
on = 1;
@@ -1863,7 +1368,7 @@
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAP)
-"aeq" = (
+"adg" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
external_pressure_bound = 101.325;
@@ -1878,7 +1383,7 @@
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAP)
-"aer" = (
+"adh" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
@@ -1898,7 +1403,7 @@
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAP)
-"aes" = (
+"adi" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -1910,7 +1415,7 @@
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAP)
-"aet" = (
+"adj" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "MiniSat Maintenance";
req_access_txt = "65"
@@ -1924,7 +1429,7 @@
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAP)
-"aeu" = (
+"adk" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
@@ -1936,7 +1441,7 @@
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/aisat_interior)
-"aev" = (
+"adl" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-09";
name = "Photosynthetic Potted plant";
@@ -1952,7 +1457,7 @@
dir = 8
},
/area/ai_monitored/turret_protected/aisat_interior)
-"aew" = (
+"adm" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 4;
@@ -1967,7 +1472,7 @@
dir = 1
},
/area/ai_monitored/turret_protected/aisat_interior)
-"aex" = (
+"adn" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-09";
name = "Photosynthetic Potted plant";
@@ -1989,7 +1494,7 @@
dir = 4
},
/area/ai_monitored/turret_protected/aisat_interior)
-"aey" = (
+"ado" = (
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -2002,7 +1507,7 @@
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/aisat_interior)
-"aez" = (
+"adp" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "MiniSat Maintenance";
req_access_txt = "65"
@@ -2018,7 +1523,7 @@
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAS)
-"aeA" = (
+"adq" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -2033,7 +1538,7 @@
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAS)
-"aeB" = (
+"adr" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
on = 1;
@@ -2056,7 +1561,7 @@
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAS)
-"aeC" = (
+"ads" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
@@ -2069,7 +1574,7 @@
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAS)
-"aeD" = (
+"adt" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/structure/cable/yellow{
d2 = 8;
@@ -2083,40 +1588,7 @@
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAS)
-"aeE" = (
-/obj/structure/table,
-/obj/item/weapon/surgicaldrill,
-/obj/item/weapon/circular_saw,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/syndicate)
-"aeF" = (
-/obj/structure/sink{
- dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
- },
-/obj/structure/mirror{
- pixel_x = 30
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/syndicate)
-"aeG" = (
-/obj/machinery/nuclearbomb/syndicate,
-/obj/machinery/door/window{
- dir = 1;
- name = "Secure Storage";
- req_access_txt = "150"
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"aeH" = (
-/obj/machinery/telecomms/allinone{
- intercept = 1
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"aeI" = (
+"adu" = (
/obj/machinery/computer/libraryconsole/bookmanagement{
pixel_y = 0
},
@@ -2127,30 +1599,30 @@
},
/turf/open/floor/plasteel/black,
/area/security/prison)
-"aeJ" = (
+"adv" = (
/obj/structure/chair/stool,
/turf/open/floor/plasteel/black,
/area/security/prison)
-"aeK" = (
+"adw" = (
/obj/item/weapon/storage/pill_bottle/dice,
/obj/structure/table,
/turf/open/floor/plasteel/black,
/area/security/prison)
-"aeL" = (
+"adx" = (
/obj/item/device/camera,
/obj/structure/table,
/turf/open/floor/plasteel/black,
/area/security/prison)
-"aeM" = (
+"ady" = (
/obj/machinery/light/small,
/turf/open/floor/plasteel/barber,
/area/security/prison)
-"aeN" = (
+"adz" = (
/obj/structure/table,
/obj/structure/bedsheetbin,
/turf/open/floor/plasteel/barber,
/area/security/prison)
-"aeO" = (
+"adA" = (
/obj/machinery/light/small{
dir = 8
},
@@ -2159,7 +1631,7 @@
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAP)
-"aeP" = (
+"adB" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 4;
name = "Air Out";
@@ -2167,46 +1639,46 @@
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAP)
-"aeQ" = (
+"adC" = (
/obj/structure/chair/stool,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAP)
-"aeR" = (
+"adD" = (
/obj/machinery/light/small{
dir = 8
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/aisat_interior)
-"aeS" = (
+"adE" = (
/turf/open/floor/plasteel/darkblue/side{
dir = 8
},
/area/ai_monitored/turret_protected/aisat_interior)
-"aeT" = (
+"adF" = (
/obj/effect/landmark/start{
name = "Cyborg"
},
/obj/item/device/radio/beacon,
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/aisat_interior)
-"aeU" = (
+"adG" = (
/turf/open/floor/plasteel/darkblue/side{
tag = "icon-darkblue (EAST)";
dir = 4
},
/area/ai_monitored/turret_protected/aisat_interior)
-"aeV" = (
+"adH" = (
/obj/machinery/light/small{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/aisat_interior)
-"aeW" = (
+"adI" = (
/obj/structure/table,
/obj/machinery/cell_charger,
/obj/item/weapon/stock_parts/cell/high,
@@ -2216,54 +1688,7 @@
/obj/item/stack/cable_coil,
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAS)
-"aeX" = (
-/obj/structure/table,
-/obj/item/weapon/cautery,
-/obj/item/weapon/scalpel,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/syndicate)
-"aeY" = (
-/obj/structure/table/optable,
-/obj/item/weapon/surgical_drapes,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/syndicate)
-"aeZ" = (
-/obj/structure/table,
-/obj/item/weapon/retractor,
-/obj/item/weapon/hemostat,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/syndicate)
-"afa" = (
-/obj/structure/shuttle/engine/heater,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/shuttle/syndicate)
-"afb" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"afc" = (
-/obj/structure/table,
-/obj/item/stack/sheet/metal{
- amount = 50
- },
-/obj/item/stack/sheet/glass{
- amount = 50
- },
-/obj/item/stack/rods{
- amount = 50
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"afd" = (
-/obj/structure/rack,
-/obj/item/clothing/suit/space/syndicate/black/red,
-/obj/item/clothing/head/helmet/space/syndicate/black/red,
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"afe" = (
+"adJ" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 8
@@ -2276,19 +1701,19 @@
},
/turf/open/floor/plasteel/black,
/area/security/prison)
-"aff" = (
+"adK" = (
/obj/structure/chair/stool,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
/turf/open/floor/plasteel/black,
/area/security/prison)
-"afg" = (
+"adL" = (
/obj/item/toy/cards/deck,
/obj/structure/table,
/turf/open/floor/plasteel/black,
/area/security/prison)
-"afh" = (
+"adM" = (
/obj/item/weapon/paper_bin{
pixel_x = -3;
pixel_y = 7
@@ -2302,7 +1727,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/prison)
-"afi" = (
+"adN" = (
/obj/structure/chair/stool,
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
tag = "icon-intact (WEST)";
@@ -2311,7 +1736,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/prison)
-"afj" = (
+"adO" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -2324,48 +1749,48 @@
},
/turf/open/floor/plasteel/black,
/area/security/prison)
-"afk" = (
+"adP" = (
/obj/machinery/computer/arcade,
/turf/open/floor/plasteel/black,
/area/security/prison)
-"afl" = (
+"adQ" = (
/obj/machinery/atmospherics/components/unary/tank/air{
dir = 1
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAP)
-"afm" = (
+"adR" = (
/obj/structure/table,
/obj/item/weapon/wrench,
/obj/item/weapon/tank/internals/emergency_oxygen,
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAP)
-"afn" = (
+"adS" = (
/obj/structure/table,
/obj/item/weapon/crowbar,
/obj/item/clothing/mask/gas,
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAP)
-"afo" = (
+"adT" = (
/obj/machinery/teleport/hub,
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 5
},
+/turf/open/floor/plating,
/area/ai_monitored/turret_protected/aisat_interior)
-"afp" = (
+"adU" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/aisat_interior)
-"afq" = (
+"adV" = (
/obj/machinery/holopad,
/mob/living/simple_animal/bot/secbot/pingsky,
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/aisat_interior)
-"afr" = (
+"adW" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
on = 1;
@@ -2374,17 +1799,17 @@
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/aisat_interior)
-"afs" = (
-/turf/open/floor/plating,
+"adX" = (
/obj/effect/turf_decal/stripes/line{
dir = 9
},
+/turf/open/floor/plating,
/area/ai_monitored/turret_protected/aisat_interior)
-"aft" = (
+"adY" = (
/obj/machinery/recharge_station,
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAS)
-"afu" = (
+"adZ" = (
/obj/structure/rack,
/obj/item/weapon/storage/toolbox/electrical{
pixel_x = -3;
@@ -2399,62 +1824,46 @@
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAS)
-"afv" = (
-/obj/structure/shuttle/engine/propulsion{
- icon_state = "propulsion_l"
- },
-/turf/open/floor/plating,
-/area/shuttle/syndicate)
-"afw" = (
-/obj/structure/shuttle/engine/propulsion,
-/turf/open/floor/plating,
-/area/shuttle/syndicate)
-"afx" = (
-/obj/structure/shuttle/engine/propulsion{
- icon_state = "propulsion_r"
- },
-/turf/open/floor/plating,
-/area/shuttle/syndicate)
-"afy" = (
+"aea" = (
/turf/closed/wall,
/area/security/transfer)
-"afz" = (
+"aeb" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
/turf/closed/wall,
/area/security/transfer)
-"afA" = (
+"aec" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall,
/area/security/transfer)
-"afB" = (
+"aed" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
/turf/closed/wall,
/area/security/transfer)
-"afC" = (
+"aee" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
/turf/closed/wall/r_wall,
/area/security/transfer)
-"afD" = (
+"aef" = (
/obj/machinery/vending/sustenance,
/turf/open/floor/plasteel/black,
/area/security/prison)
-"afE" = (
+"aeg" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/black,
/area/security/prison)
-"afF" = (
+"aeh" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/turf/open/floor/plasteel/black,
/area/security/prison)
-"afG" = (
+"aei" = (
/obj/machinery/light/small{
dir = 1
},
@@ -2463,24 +1872,24 @@
},
/turf/open/floor/plasteel/freezer,
/area/security/prison)
-"afH" = (
+"aej" = (
/obj/machinery/shower{
dir = 8
},
/obj/item/weapon/soap/nanotrasen,
/turf/open/floor/plasteel/freezer,
/area/security/prison)
-"afI" = (
+"aek" = (
/obj/machinery/teleport/station,
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plating,
/area/ai_monitored/turret_protected/aisat_interior)
-"afJ" = (
+"ael" = (
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/aisat_interior)
-"afK" = (
+"aem" = (
/obj/item/device/radio/intercom{
name = "Station Intercom (General)";
pixel_y = -28
@@ -2490,54 +1899,35 @@
dir = 4
},
/area/ai_monitored/turret_protected/aisat_interior)
-"afL" = (
+"aen" = (
/obj/structure/transit_tube/station/reverse/flipped{
dir = 4
},
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plating,
/area/ai_monitored/turret_protected/aisat_interior)
-"afM" = (
-/turf/open/space,
-/obj/machinery/porta_turret/syndicate{
- dir = 6
- },
-/turf/closed/wall/mineral/plastitanium{
- dir = 4;
- icon_state = "diagonalWall3"
- },
-/area/shuttle/syndicate)
-"afN" = (
-/turf/open/space,
-/obj/machinery/porta_turret/syndicate{
- dir = 10
- },
-/turf/closed/wall/mineral/plastitanium{
- icon_state = "diagonalWall3"
- },
-/area/shuttle/syndicate)
-"afO" = (
+"aeo" = (
/obj/machinery/door/poddoor{
id = "executionspaceblast";
name = "blast door"
},
/turf/open/floor/plating,
/area/security/transfer)
-"afP" = (
+"aep" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
on = 1;
scrub_N2O = 0;
scrub_Toxins = 0
},
-/turf/open/floor/plasteel/black,
/obj/effect/turf_decal/stripes/line{
dir = 9
},
+/turf/open/floor/plasteel/black,
/area/security/transfer)
-"afQ" = (
+"aeq" = (
/obj/machinery/light/small{
dir = 1
},
@@ -2546,32 +1936,32 @@
pixel_x = 0;
pixel_y = 25
},
-/turf/open/floor/plasteel/black,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel/black,
/area/security/transfer)
-"afR" = (
+"aer" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
on = 1;
scrub_N2O = 0;
scrub_Toxins = 0
},
-/turf/open/floor/plasteel/black,
/obj/effect/turf_decal/stripes/line{
dir = 5
},
+/turf/open/floor/plasteel/black,
/area/security/transfer)
-"afS" = (
+"aes" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall/r_wall,
/area/security/transfer)
-"afT" = (
+"aet" = (
/obj/machinery/vending/cola,
/turf/open/floor/plasteel/black,
/area/security/prison)
-"afU" = (
+"aeu" = (
/obj/machinery/door/window/westleft{
base_state = "right";
dir = 8;
@@ -2581,26 +1971,26 @@
},
/turf/open/floor/plasteel/freezer,
/area/security/prison)
-"afV" = (
+"aev" = (
/turf/open/floor/plasteel/freezer,
/area/security/prison)
-"afW" = (
+"aew" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/aisat_interior)
-"afX" = (
+"aex" = (
/obj/machinery/computer/teleporter,
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plating,
/area/ai_monitored/turret_protected/aisat_interior)
-"afY" = (
+"aey" = (
/obj/machinery/light,
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/aisat_interior)
-"afZ" = (
+"aez" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 2;
name = "MiniSat External Access";
@@ -2609,41 +1999,41 @@
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/aisat_interior)
-"aga" = (
+"aeA" = (
/obj/structure/transit_tube,
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plating,
/area/ai_monitored/turret_protected/aisat_interior)
-"agb" = (
-/turf/open/floor/plasteel/black,
+"aeB" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel/black,
/area/security/transfer)
-"agc" = (
+"aeC" = (
/obj/structure/bed,
/obj/effect/landmark{
name = "revenantspawn"
},
/turf/open/floor/plasteel/black,
/area/security/transfer)
-"agd" = (
+"aeD" = (
/obj/machinery/sparker{
dir = 2;
id = "executionburn";
pixel_x = 25
},
-/turf/open/floor/plasteel/black,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plasteel/black,
/area/security/transfer)
-"age" = (
+"aeE" = (
/turf/closed/wall,
/area/security/prison)
-"agf" = (
+"aeF" = (
/obj/machinery/door/poddoor/preopen{
id = "permacell2";
name = "cell blast door"
@@ -2655,11 +2045,11 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/vault,
/area/security/prison)
-"agg" = (
+"aeG" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/turf/closed/wall,
/area/security/prison)
-"agh" = (
+"aeH" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -2675,14 +2065,14 @@
},
/turf/open/floor/plasteel/vault,
/area/security/prison)
-"agi" = (
+"aeI" = (
/obj/machinery/door/airlock{
name = "Unisex Restroom";
req_access_txt = "0"
},
/turf/open/floor/plasteel/freezer,
/area/security/prison)
-"agj" = (
+"aeJ" = (
/obj/machinery/light/small{
dir = 8
},
@@ -2704,36 +2094,36 @@
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/aisat_interior)
-"agk" = (
+"aeK" = (
/obj/structure/window/reinforced/fulltile,
/obj/structure/transit_tube,
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/aisat_interior)
-"agl" = (
+"aeL" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
on = 1
},
-/turf/open/floor/plasteel/black,
/obj/effect/turf_decal/stripes/line{
dir = 10
},
-/area/security/transfer)
-"agm" = (
/turf/open/floor/plasteel/black,
+/area/security/transfer)
+"aeM" = (
/obj/effect/turf_decal/stripes/line{
dir = 2
},
+/turf/open/floor/plasteel/black,
/area/security/transfer)
-"agn" = (
+"aeN" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 2
},
-/turf/open/floor/plasteel/black,
/obj/effect/turf_decal/stripes/line{
dir = 6
},
+/turf/open/floor/plasteel/black,
/area/security/transfer)
-"ago" = (
+"aeO" = (
/obj/structure/bed,
/obj/machinery/camera{
c_tag = "Permabrig Cell 2";
@@ -2752,14 +2142,14 @@
},
/turf/open/floor/plasteel/floorgrime,
/area/security/prison)
-"agp" = (
+"aeP" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8;
initialize_directions = 11
},
/turf/open/floor/plasteel/floorgrime,
/area/security/prison)
-"agq" = (
+"aeQ" = (
/obj/machinery/light/small{
dir = 1
},
@@ -2781,7 +2171,7 @@
/obj/structure/chair,
/turf/open/floor/plasteel/floorgrime,
/area/security/prison)
-"agr" = (
+"aeR" = (
/obj/structure/bed,
/obj/machinery/camera{
c_tag = "Permabrig Cell 1";
@@ -2800,7 +2190,7 @@
},
/turf/open/floor/plasteel/floorgrime,
/area/security/prison)
-"ags" = (
+"aeS" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -2811,7 +2201,7 @@
},
/turf/open/floor/plasteel/floorgrime,
/area/security/prison)
-"agt" = (
+"aeT" = (
/obj/machinery/light/small{
dir = 1
},
@@ -2833,7 +2223,7 @@
/obj/structure/chair,
/turf/open/floor/plasteel/floorgrime,
/area/security/prison)
-"agu" = (
+"aeU" = (
/obj/structure/sink{
icon_state = "sink";
dir = 8;
@@ -2845,19 +2235,19 @@
},
/turf/open/floor/plasteel/freezer,
/area/security/prison)
-"agv" = (
+"aeV" = (
/obj/structure/grille,
/turf/open/space,
/area/space)
-"agw" = (
+"aeW" = (
/turf/closed/wall,
/area/security/main)
-"agx" = (
+"aeX" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/security/main)
-"agy" = (
+"aeY" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 1;
name = "MiniSat External Access";
@@ -2866,11 +2256,11 @@
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/aisat_interior)
-"agz" = (
+"aeZ" = (
/obj/structure/transit_tube,
/turf/open/floor/plating/airless,
/area/space)
-"agA" = (
+"afa" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/poddoor/preopen{
@@ -2882,7 +2272,7 @@
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/turf/open/floor/plating,
/area/security/transfer)
-"agB" = (
+"afb" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/poddoor/preopen{
@@ -2893,7 +2283,7 @@
/obj/machinery/door/firedoor,
/turf/open/floor/plating,
/area/security/transfer)
-"agC" = (
+"afc" = (
/obj/machinery/door/poddoor/preopen{
id = "executionfireblast";
layer = 2.9;
@@ -2910,7 +2300,7 @@
dir = 8
},
/area/security/transfer)
-"agD" = (
+"afd" = (
/obj/machinery/flasher{
id = "PCell 2";
pixel_x = -28
@@ -2920,11 +2310,11 @@
},
/turf/open/floor/plasteel/floorgrime,
/area/security/prison)
-"agE" = (
+"afe" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/floorgrime,
/area/security/prison)
-"agF" = (
+"aff" = (
/obj/structure/table,
/obj/item/weapon/paper{
layer = 2.9
@@ -2932,7 +2322,7 @@
/obj/item/weapon/pen,
/turf/open/floor/plasteel/floorgrime,
/area/security/prison)
-"agG" = (
+"afg" = (
/obj/machinery/flasher{
id = "PCell 1";
pixel_x = -28
@@ -2942,7 +2332,7 @@
},
/turf/open/floor/plasteel/floorgrime,
/area/security/prison)
-"agH" = (
+"afh" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -2951,21 +2341,21 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/floorgrime,
/area/security/prison)
-"agI" = (
+"afi" = (
/obj/structure/toilet{
dir = 1
},
/turf/open/floor/plasteel/freezer,
/area/security/prison)
-"agJ" = (
+"afj" = (
/obj/structure/closet/wardrobe/red,
/turf/open/floor/plasteel/showroomfloor,
/area/security/main)
-"agK" = (
+"afk" = (
/obj/structure/closet/secure_closet/security/sec,
/turf/open/floor/plasteel/showroomfloor,
/area/security/main)
-"agL" = (
+"afl" = (
/obj/structure/closet/secure_closet/security/sec,
/obj/machinery/camera{
c_tag = "Brig Equipment Room";
@@ -2977,15 +2367,15 @@
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/main)
-"agM" = (
+"afm" = (
/obj/machinery/vending/security,
/turf/open/floor/plasteel/showroomfloor,
/area/security/main)
-"agN" = (
+"afn" = (
/obj/machinery/suit_storage_unit/security,
/turf/open/floor/plasteel/showroomfloor,
/area/security/main)
-"agO" = (
+"afo" = (
/obj/structure/lattice/catwalk,
/obj/structure/showcase{
density = 0;
@@ -2999,11 +2389,11 @@
},
/turf/open/space,
/area/space)
-"agP" = (
+"afp" = (
/obj/structure/lattice/catwalk,
/turf/open/space,
/area/space)
-"agQ" = (
+"afq" = (
/obj/item/device/radio/intercom{
freerange = 0;
frequency = 1459;
@@ -3023,7 +2413,7 @@
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/turf/open/floor/plasteel/black,
/area/security/transfer)
-"agR" = (
+"afr" = (
/obj/structure/table,
/obj/item/weapon/folder/red{
pixel_x = 3
@@ -3034,7 +2424,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/transfer)
-"agS" = (
+"afs" = (
/obj/machinery/button/flasher{
id = "executionflash";
pixel_x = 24;
@@ -3050,7 +2440,7 @@
/obj/machinery/atmospherics/pipe/simple/general/hidden,
/turf/open/floor/plasteel/black,
/area/security/transfer)
-"agT" = (
+"aft" = (
/obj/machinery/door/airlock/glass_security{
name = "Long-Term Cell 2";
req_access_txt = "2"
@@ -3058,7 +2448,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/floorgrime,
/area/security/prison)
-"agU" = (
+"afu" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
tag = "icon-intact (NORTHEAST)";
icon_state = "intact";
@@ -3066,7 +2456,7 @@
},
/turf/closed/wall,
/area/security/prison)
-"agV" = (
+"afv" = (
/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
tag = "icon-manifold (EAST)";
icon_state = "manifold";
@@ -3074,7 +2464,7 @@
},
/turf/closed/wall,
/area/security/prison)
-"agW" = (
+"afw" = (
/obj/machinery/door/airlock/glass_security{
name = "Long-Term Cell 1";
req_access_txt = "2"
@@ -3087,14 +2477,14 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/floorgrime,
/area/security/prison)
-"agX" = (
+"afx" = (
/turf/open/floor/plasteel/showroomfloor,
/area/security/main)
-"agY" = (
+"afy" = (
/obj/structure/transit_tube/crossing,
/turf/open/floor/plating/airless,
/area/space)
-"agZ" = (
+"afz" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/cable{
@@ -3104,38 +2494,38 @@
},
/turf/open/floor/plating,
/area/security/transfer)
-"aha" = (
+"afA" = (
/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
/obj/machinery/atmospherics/components/unary/portables_connector/visible,
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 9
},
+/turf/open/floor/plating,
/area/security/transfer)
-"ahb" = (
+"afB" = (
/obj/structure/window/reinforced{
dir = 4
},
/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
/obj/machinery/atmospherics/components/unary/portables_connector/visible,
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plating,
/area/security/transfer)
-"ahc" = (
+"afC" = (
/obj/structure/table,
/obj/item/device/flashlight/lamp,
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/turf/open/floor/plasteel/black,
/area/security/transfer)
-"ahd" = (
+"afD" = (
/obj/structure/chair{
dir = 1
},
/turf/open/floor/plasteel/black,
/area/security/transfer)
-"ahe" = (
+"afE" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1;
@@ -3157,17 +2547,17 @@
/obj/machinery/atmospherics/pipe/simple/general/hidden,
/turf/open/floor/plasteel/black,
/area/security/transfer)
-"ahf" = (
+"afF" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/closed/wall/r_wall,
/area/security/transfer)
-"ahg" = (
+"afG" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/red,
/area/security/prison)
-"ahh" = (
+"afH" = (
/obj/machinery/light{
dir = 1
},
@@ -3191,13 +2581,13 @@
dir = 5
},
/area/security/prison)
-"ahi" = (
+"afI" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/red/side{
dir = 5
},
/area/security/prison)
-"ahj" = (
+"afJ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -3205,7 +2595,7 @@
dir = 5
},
/area/security/prison)
-"ahk" = (
+"afK" = (
/obj/machinery/camera{
c_tag = "Brig Prison Hallway";
network = list("SS13","Prison")
@@ -3224,7 +2614,7 @@
dir = 5
},
/area/security/prison)
-"ahl" = (
+"afL" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -3251,7 +2641,7 @@
dir = 5
},
/area/security/prison)
-"ahm" = (
+"afM" = (
/obj/structure/cable{
icon_state = "1-8"
},
@@ -3268,7 +2658,7 @@
dir = 5
},
/area/security/prison)
-"ahn" = (
+"afN" = (
/obj/machinery/light{
dir = 1
},
@@ -3282,7 +2672,7 @@
dir = 5
},
/area/security/prison)
-"aho" = (
+"afO" = (
/obj/machinery/power/apc{
cell_type = 5000;
dir = 1;
@@ -3298,15 +2688,15 @@
dir = 5
},
/area/security/prison)
-"ahp" = (
+"afP" = (
/obj/structure/table,
/obj/item/weapon/melee/chainofcommand,
/turf/open/floor/plasteel/red,
/area/security/prison)
-"ahq" = (
+"afQ" = (
/turf/closed/wall/r_wall,
/area/security/armory)
-"ahr" = (
+"afR" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 8
@@ -3318,7 +2708,7 @@
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/main)
-"ahs" = (
+"afS" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
layer = 2.4;
@@ -3326,13 +2716,13 @@
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/main)
-"aht" = (
+"afT" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/main)
-"ahu" = (
+"afU" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
on = 1;
@@ -3341,7 +2731,7 @@
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/main)
-"ahv" = (
+"afV" = (
/obj/machinery/light{
dir = 4;
icon_state = "tube1"
@@ -3352,7 +2742,7 @@
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/main)
-"ahw" = (
+"afW" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 8
},
@@ -3366,12 +2756,12 @@
icon_state = "4-8";
pixel_x = 0
},
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plating,
/area/security/transfer)
-"ahx" = (
+"afX" = (
/obj/structure/window/reinforced{
dir = 4
},
@@ -3387,7 +2777,7 @@
},
/turf/open/floor/plating,
/area/security/transfer)
-"ahy" = (
+"afY" = (
/obj/structure/rack,
/obj/item/weapon/tank/internals/anesthetic{
pixel_x = -3;
@@ -3411,7 +2801,7 @@
dir = 8
},
/area/security/transfer)
-"ahz" = (
+"afZ" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -3431,7 +2821,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/transfer)
-"ahA" = (
+"aga" = (
/obj/machinery/atmospherics/pipe/simple/general/hidden,
/obj/structure/cable{
d1 = 4;
@@ -3446,7 +2836,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/transfer)
-"ahB" = (
+"agb" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -3469,7 +2859,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/transfer)
-"ahC" = (
+"agc" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -3485,7 +2875,7 @@
dir = 8
},
/area/security/prison)
-"ahD" = (
+"agd" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -3499,7 +2889,7 @@
},
/turf/open/floor/plasteel,
/area/security/prison)
-"ahE" = (
+"age" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -3511,7 +2901,7 @@
},
/turf/open/floor/plasteel,
/area/security/prison)
-"ahF" = (
+"agf" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -3520,7 +2910,7 @@
},
/turf/open/floor/plasteel,
/area/security/prison)
-"ahG" = (
+"agg" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -3535,14 +2925,14 @@
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/turf/open/floor/plasteel,
/area/security/prison)
-"ahH" = (
+"agh" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8;
initialize_directions = 11
},
/turf/open/floor/plasteel,
/area/security/prison)
-"ahI" = (
+"agi" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
on = 1;
@@ -3551,10 +2941,10 @@
},
/turf/open/floor/plasteel,
/area/security/prison)
-"ahJ" = (
+"agj" = (
/turf/open/floor/plasteel,
/area/security/prison)
-"ahK" = (
+"agk" = (
/obj/structure/table,
/obj/item/weapon/razor{
pixel_x = -6
@@ -3568,7 +2958,7 @@
},
/turf/open/floor/plasteel/red,
/area/security/prison)
-"ahL" = (
+"agl" = (
/obj/structure/table,
/obj/item/weapon/storage/box/chemimp{
pixel_x = 6
@@ -3578,7 +2968,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/armory)
-"ahM" = (
+"agm" = (
/obj/structure/closet/secure_closet{
anchored = 1;
name = "Contraband Locker";
@@ -3589,7 +2979,7 @@
/obj/item/weapon/grenade/smokebomb,
/turf/open/floor/plasteel/black,
/area/security/armory)
-"ahN" = (
+"agn" = (
/obj/structure/closet/secure_closet/lethalshots,
/obj/machinery/camera/motion{
c_tag = "Armory Motion Sensor";
@@ -3598,11 +2988,11 @@
},
/turf/open/floor/plasteel/black,
/area/security/armory)
-"ahO" = (
+"ago" = (
/obj/vehicle/secway,
/turf/open/floor/plasteel/black,
/area/security/armory)
-"ahP" = (
+"agp" = (
/obj/item/weapon/grenade/barrier{
pixel_x = 4
},
@@ -3613,45 +3003,45 @@
/obj/structure/table,
/turf/open/floor/plasteel/black,
/area/security/armory)
-"ahQ" = (
+"agq" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/turf/open/floor/plasteel/showroomfloor,
/area/security/main)
-"ahR" = (
+"agr" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/showroomfloor,
/area/security/main)
-"ahS" = (
+"ags" = (
/obj/vehicle/secway,
/obj/item/key/security,
/turf/open/floor/plasteel/showroomfloor,
/area/security/main)
-"ahT" = (
+"agt" = (
/obj/structure/tank_dispenser/oxygen,
/turf/open/floor/plasteel/showroomfloor,
/area/security/main)
-"ahU" = (
+"agu" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"ahV" = (
+"agv" = (
/turf/closed/wall,
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"ahW" = (
+"agw" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 5
},
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 10
},
+/turf/open/floor/plating,
/area/security/transfer)
-"ahX" = (
+"agx" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 4;
layer = 2.4
@@ -3663,17 +3053,17 @@
name = "Armory";
req_access_txt = "2"
},
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating,
/area/security/transfer)
-"ahY" = (
+"agy" = (
/obj/machinery/atmospherics/pipe/simple/general/hidden{
icon_state = "intact";
dir = 4
},
/turf/open/floor/plasteel/black,
/area/security/transfer)
-"ahZ" = (
+"agz" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
external_pressure_bound = 101.325;
@@ -3691,7 +3081,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/transfer)
-"aia" = (
+"agA" = (
/obj/machinery/light_switch{
pixel_x = 25;
pixel_y = 0
@@ -3701,13 +3091,13 @@
},
/turf/open/floor/plasteel/black,
/area/security/transfer)
-"aib" = (
+"agB" = (
/turf/closed/wall/r_wall,
/area/security/transfer)
-"aic" = (
+"agC" = (
/turf/open/floor/plasteel/red,
/area/security/prison)
-"aid" = (
+"agD" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
tag = "icon-intact (NORTHEAST)";
icon_state = "intact";
@@ -3717,13 +3107,13 @@
dir = 6
},
/area/security/prison)
-"aie" = (
+"agE" = (
/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,
/turf/open/floor/plasteel/red/side{
dir = 6
},
/area/security/prison)
-"aif" = (
+"agF" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
tag = "icon-intact (EAST)";
icon_state = "intact";
@@ -3733,7 +3123,7 @@
dir = 6
},
/area/security/prison)
-"aig" = (
+"agG" = (
/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
tag = "icon-manifold (NORTH)";
icon_state = "manifold";
@@ -3743,7 +3133,7 @@
dir = 6
},
/area/security/prison)
-"aih" = (
+"agH" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -3758,18 +3148,18 @@
dir = 6
},
/area/security/prison)
-"aii" = (
+"agI" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/red/side{
dir = 6
},
/area/security/prison)
-"aij" = (
+"agJ" = (
/turf/open/floor/plasteel/red/side{
dir = 6
},
/area/security/prison)
-"aik" = (
+"agK" = (
/obj/machinery/airalarm{
dir = 1;
pixel_y = -22
@@ -3778,12 +3168,12 @@
dir = 6
},
/area/security/prison)
-"ail" = (
+"agL" = (
/obj/structure/table,
/obj/item/device/electropack,
/turf/open/floor/plasteel/red,
/area/security/prison)
-"aim" = (
+"agM" = (
/obj/structure/table,
/obj/item/weapon/storage/box/flashbangs{
pixel_x = 6;
@@ -3798,10 +3188,10 @@
},
/turf/open/floor/plasteel/black,
/area/security/armory)
-"ain" = (
+"agN" = (
/turf/open/floor/plasteel/black,
/area/security/armory)
-"aio" = (
+"agO" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -3810,7 +3200,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/armory)
-"aip" = (
+"agP" = (
/obj/structure/table,
/obj/item/weapon/storage/box/firingpins,
/obj/item/weapon/storage/box/firingpins,
@@ -3828,7 +3218,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/armory)
-"aiq" = (
+"agQ" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security{
name = "Equipment Room";
@@ -3836,10 +3226,10 @@
req_access_txt = "1"
},
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
/area/security/main)
-"air" = (
+"agR" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security{
name = "Equipment Room";
@@ -3847,35 +3237,35 @@
req_access_txt = "1"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
/area/security/main)
-"ais" = (
+"agS" = (
/turf/closed/wall,
/area/security/hos)
-"ait" = (
+"agT" = (
/turf/closed/wall,
/area/maintenance/fsmaint)
-"aiu" = (
+"agU" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"aiv" = (
+"agV" = (
/obj/structure/table,
/obj/machinery/microwave,
/turf/open/floor/plating,
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"aiw" = (
+"agW" = (
/obj/structure/table,
/obj/structure/bedsheetbin,
/turf/open/floor/plating,
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"aix" = (
+"agX" = (
/obj/structure/sink/kitchen{
pixel_y = 28
},
@@ -3884,14 +3274,14 @@
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"aiy" = (
+"agY" = (
/obj/structure/table,
/obj/item/device/flashlight/lamp,
/turf/open/floor/plating,
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"aiz" = (
+"agZ" = (
/obj/structure/table,
/obj/item/weapon/storage/box/bodybags,
/obj/item/weapon/pen,
@@ -3906,7 +3296,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/transfer)
-"aiA" = (
+"aha" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -3922,7 +3312,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/transfer)
-"aiB" = (
+"ahb" = (
/obj/structure/closet/secure_closet/injection,
/obj/machinery/power/apc{
dir = 4;
@@ -3936,13 +3326,13 @@
},
/turf/open/floor/plasteel/black,
/area/security/transfer)
-"aiC" = (
+"ahc" = (
/obj/structure/closet/secure_closet/brig{
anchored = 1
},
/turf/open/floor/plasteel/black,
/area/security/prison)
-"aiD" = (
+"ahd" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_security{
name = "Prison Wing";
@@ -3957,7 +3347,7 @@
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/turf/open/floor/plasteel/red,
/area/security/prison)
-"aiE" = (
+"ahe" = (
/obj/structure/cable{
icon_state = "0-2";
d2 = 2
@@ -3967,7 +3357,7 @@
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/security/prison)
-"aiF" = (
+"ahf" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/airlock/glass_security{
@@ -3977,7 +3367,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/red,
/area/security/prison)
-"aiG" = (
+"ahg" = (
/obj/structure/rack,
/obj/item/weapon/gun/energy/ionrifle,
/obj/item/weapon/gun/energy/temperature/security,
@@ -3994,7 +3384,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/armory)
-"aiH" = (
+"ahh" = (
/obj/structure/rack,
/obj/item/clothing/suit/armor/riot{
pixel_x = -3;
@@ -4025,7 +3415,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/armory)
-"aiI" = (
+"ahi" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -4033,7 +3423,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/armory)
-"aiJ" = (
+"ahj" = (
/obj/structure/rack,
/obj/item/weapon/storage/box/rubbershot{
pixel_x = -3;
@@ -4062,14 +3452,14 @@
},
/turf/open/floor/plasteel/black,
/area/security/armory)
-"aiK" = (
+"ahk" = (
/obj/effect/landmark/start{
name = "Security Officer"
},
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/turf/open/floor/plasteel/red,
/area/security/main)
-"aiL" = (
+"ahl" = (
/obj/structure/filingcabinet,
/obj/machinery/requests_console{
department = "Security";
@@ -4081,7 +3471,7 @@
dir = 1
},
/area/security/main)
-"aiM" = (
+"ahm" = (
/obj/structure/table,
/obj/item/weapon/storage/fancy/donut_box{
pixel_y = 2
@@ -4093,7 +3483,7 @@
dir = 1
},
/area/security/main)
-"aiN" = (
+"ahn" = (
/obj/structure/table,
/obj/structure/sign/goldenplaque{
pixel_y = 32
@@ -4109,7 +3499,7 @@
dir = 1
},
/area/security/main)
-"aiO" = (
+"aho" = (
/obj/machinery/vending/coffee,
/obj/machinery/status_display{
density = 0;
@@ -4121,7 +3511,7 @@
dir = 1
},
/area/security/main)
-"aiP" = (
+"ahp" = (
/obj/machinery/photocopier,
/obj/machinery/computer/security/telescreen/entertainment{
pixel_y = 32
@@ -4130,7 +3520,7 @@
dir = 1
},
/area/security/main)
-"aiQ" = (
+"ahq" = (
/obj/effect/landmark/start{
name = "Security Officer"
},
@@ -4141,49 +3531,49 @@
},
/turf/open/floor/plasteel/red,
/area/security/main)
-"aiR" = (
+"ahr" = (
/obj/item/weapon/reagent_containers/food/snacks/donut,
/turf/open/floor/plating,
/area/security/hos)
-"aiS" = (
+"ahs" = (
/obj/structure/table,
/obj/machinery/chem_dispenser/drinks/beer,
/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"aiT" = (
+"aht" = (
/turf/open/floor/plating{
broken = 1;
icon_state = "platingdmg3"
},
/area/maintenance/fsmaint)
-"aiU" = (
+"ahu" = (
/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"aiV" = (
+"ahv" = (
/obj/machinery/vending/boozeomat{
products = list(/obj/item/weapon/reagent_containers/food/drinks/bottle/whiskey = 1, /obj/item/weapon/reagent_containers/food/drinks/bottle/absinthe = 1, /obj/item/weapon/reagent_containers/food/drinks/bottle/limejuice = 1, /obj/item/weapon/reagent_containers/food/drinks/bottle/cream = 1, /obj/item/weapon/reagent_containers/food/drinks/soda_cans/tonic = 1, /obj/item/weapon/reagent_containers/food/drinks/drinkingglass = 10, /obj/item/weapon/reagent_containers/food/drinks/ice = 3, /obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass = 6, /obj/item/weapon/reagent_containers/food/drinks/flask = 1);
req_access_txt = "0"
},
/turf/open/floor/plasteel/bar,
/area/maintenance/fsmaint)
-"aiW" = (
+"ahw" = (
/obj/item/weapon/storage/box/mousetraps,
/turf/open/floor/plating,
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"aiX" = (
+"ahx" = (
/obj/structure/chair/stool,
/turf/open/floor/plating,
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"aiY" = (
+"ahy" = (
/turf/open/floor/plating,
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"aiZ" = (
+"ahz" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet,
/obj/structure/sign/poster{
@@ -4194,24 +3584,24 @@
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"aja" = (
+"ahA" = (
/obj/machinery/atmospherics/components/unary/tank/oxygen,
/turf/open/floor/plating,
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"ajb" = (
+"ahB" = (
/obj/machinery/atmospherics/components/unary/tank/nitrogen,
/turf/open/floor/plating,
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"ajc" = (
+"ahC" = (
/turf/closed/wall,
/area/security/processing{
name = "Crematorium"
})
-"ajd" = (
+"ahD" = (
/obj/machinery/door/airlock/security{
aiControlDisabled = 0;
icon_state = "closed";
@@ -4233,19 +3623,19 @@
/area/security/processing{
name = "Crematorium"
})
-"aje" = (
+"ahE" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/poddoor/preopen{
id = "Prison Gate";
name = "prison blast door"
},
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
+/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel{
name = "floor"
},
-/obj/effect/turf_decal/delivery,
/area/security/brig)
-"ajf" = (
+"ahF" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/poddoor/preopen{
id = "Prison Gate";
@@ -4255,27 +3645,27 @@
tag = "icon-1-2";
icon_state = "1-2"
},
+/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel{
name = "floor"
},
-/obj/effect/turf_decal/delivery,
/area/security/brig)
-"ajg" = (
+"ahG" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/poddoor/preopen{
id = "Prison Gate";
name = "prison blast door"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel{
name = "floor"
},
-/obj/effect/turf_decal/delivery,
/area/security/brig)
-"ajh" = (
+"ahH" = (
/turf/closed/wall,
/area/security/brig)
-"aji" = (
+"ahI" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
on = 1
},
@@ -4286,7 +3676,7 @@
dir = 9
},
/area/security/brig)
-"ajj" = (
+"ahJ" = (
/obj/structure/closet{
name = "Evidence Closet"
},
@@ -4295,7 +3685,7 @@
dir = 5
},
/area/security/brig)
-"ajk" = (
+"ahK" = (
/obj/structure/rack,
/obj/item/weapon/gun/energy/e_gun{
pixel_x = -3;
@@ -4311,7 +3701,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/armory)
-"ajl" = (
+"ahL" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1;
scrub_N2O = 0;
@@ -4319,7 +3709,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/armory)
-"ajm" = (
+"ahM" = (
/obj/structure/rack,
/obj/item/clothing/suit/armor/bulletproof{
pixel_x = -3;
@@ -4347,7 +3737,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/armory)
-"ajn" = (
+"ahN" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -4358,7 +3748,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/armory)
-"ajo" = (
+"ahO" = (
/obj/structure/rack,
/obj/item/weapon/gun/energy/laser{
pixel_x = -3;
@@ -4371,7 +3761,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/armory)
-"ajp" = (
+"ahP" = (
/obj/structure/cable{
icon_state = "0-2";
d2 = 2
@@ -4387,20 +3777,20 @@
dir = 8
},
/area/security/main)
-"ajq" = (
+"ahQ" = (
/obj/effect/landmark/start{
name = "Security Officer"
},
/turf/open/floor/plasteel,
/area/security/main)
-"ajr" = (
+"ahR" = (
/obj/structure/chair/stool,
/obj/effect/landmark/start{
name = "Security Officer"
},
/turf/open/floor/plasteel,
/area/security/main)
-"ajs" = (
+"ahS" = (
/obj/machinery/light{
dir = 4;
icon_state = "tube1"
@@ -4412,14 +3802,14 @@
dir = 4
},
/area/security/main)
-"ajt" = (
+"ahT" = (
/obj/machinery/suit_storage_unit/hos,
/obj/machinery/airalarm{
pixel_y = 22
},
/turf/open/floor/plasteel/black,
/area/security/hos)
-"aju" = (
+"ahU" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk,
/obj/structure/sign/atmosplaque{
@@ -4431,7 +3821,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/hos)
-"ajv" = (
+"ahV" = (
/obj/structure/table/wood,
/obj/machinery/recharger,
/obj/machinery/light{
@@ -4445,7 +3835,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/hos)
-"ajw" = (
+"ahW" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/box/seccarts{
pixel_x = 3;
@@ -4457,7 +3847,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/hos)
-"ajx" = (
+"ahX" = (
/obj/structure/closet/secure_closet/hos,
/obj/machinery/requests_console{
announcementConsole = 1;
@@ -4469,17 +3859,17 @@
},
/turf/open/floor/plasteel/black,
/area/security/hos)
-"ajy" = (
+"ahY" = (
/obj/structure/mineral_door/wood,
/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"ajz" = (
+"ahZ" = (
/obj/effect/decal/cleanable/oil{
icon_state = "floor5"
},
/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"ajA" = (
+"aia" = (
/obj/item/weapon/cigbutt/cigarbutt,
/obj/structure/sign/poster{
pixel_x = 32;
@@ -4490,16 +3880,16 @@
icon_state = "panelscorched"
},
/area/maintenance/fsmaint)
-"ajB" = (
+"aib" = (
/obj/machinery/door/poddoor/shutters{
id = "supplybridge"
},
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 9
},
+/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"ajC" = (
+"aic" = (
/obj/structure/window/reinforced{
dir = 1;
layer = 2.9
@@ -4511,16 +3901,16 @@
/obj/item/weapon/gun/medbeam,
/turf/open/floor/plating/abductor,
/area/shuttle/abandoned)
-"ajD" = (
+"aid" = (
/obj/machinery/door/poddoor/shutters{
id = "supplybridge"
},
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 5
},
+/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"ajE" = (
+"aie" = (
/obj/machinery/washing_machine,
/obj/item/device/radio/intercom{
dir = 4;
@@ -4531,13 +3921,13 @@
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"ajF" = (
+"aif" = (
/obj/machinery/light/small,
/turf/open/floor/plating,
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"ajG" = (
+"aig" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet,
/obj/machinery/button/door{
@@ -4553,7 +3943,7 @@
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"ajH" = (
+"aih" = (
/obj/machinery/atmospherics/components/trinary/mixer/flipped{
dir = 1;
node1_concentration = 0.2;
@@ -4564,13 +3954,13 @@
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"ajI" = (
+"aii" = (
/obj/machinery/atmospherics/pipe/manifold/general/hidden,
/turf/open/floor/plating,
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"ajJ" = (
+"aij" = (
/obj/machinery/atmospherics/pipe/simple/general/hidden{
dir = 9
},
@@ -4582,7 +3972,7 @@
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"ajK" = (
+"aik" = (
/obj/structure/bodycontainer/crematorium,
/obj/effect/landmark{
name = "revenantspawn"
@@ -4596,7 +3986,7 @@
/area/security/processing{
name = "Crematorium"
})
-"ajL" = (
+"ail" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -4614,7 +4004,7 @@
/area/security/processing{
name = "Crematorium"
})
-"ajM" = (
+"aim" = (
/obj/machinery/button/crematorium{
pixel_x = 25
},
@@ -4635,10 +4025,10 @@
/area/security/processing{
name = "Crematorium"
})
-"ajN" = (
+"ain" = (
/turf/closed/wall/r_wall,
/area/security/brig)
-"ajO" = (
+"aio" = (
/obj/item/clothing/gloves/color/latex,
/obj/item/clothing/mask/surgical,
/obj/item/weapon/reagent_containers/spray/cleaner,
@@ -4647,7 +4037,7 @@
dir = 9
},
/area/security/brig)
-"ajP" = (
+"aip" = (
/obj/item/weapon/storage/firstaid/regular{
pixel_x = 3;
pixel_y = 3
@@ -4661,7 +4051,7 @@
dir = 1
},
/area/security/brig)
-"ajQ" = (
+"aiq" = (
/obj/item/device/radio/intercom{
freerange = 0;
frequency = 1459;
@@ -4675,7 +4065,7 @@
dir = 1
},
/area/security/brig)
-"ajR" = (
+"air" = (
/obj/structure/window/reinforced{
dir = 4
},
@@ -4686,7 +4076,7 @@
dir = 5
},
/area/security/brig)
-"ajS" = (
+"ais" = (
/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
tag = "icon-manifold (WEST)";
icon_state = "manifold";
@@ -4696,7 +4086,7 @@
dir = 8
},
/area/security/brig)
-"ajT" = (
+"ait" = (
/obj/structure/cable{
tag = "icon-1-2";
icon_state = "1-2"
@@ -4708,7 +4098,7 @@
},
/turf/open/floor/plasteel,
/area/security/brig)
-"ajU" = (
+"aiu" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
tag = "icon-intact (EAST)";
icon_state = "intact";
@@ -4717,7 +4107,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/security/brig)
-"ajV" = (
+"aiv" = (
/obj/machinery/door/airlock/security{
name = "Evidence Room";
req_access_txt = "63"
@@ -4729,7 +4119,7 @@
},
/turf/open/floor/plasteel/red,
/area/security/brig)
-"ajW" = (
+"aiw" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
tag = "icon-intact (NORTHWEST)";
icon_state = "intact";
@@ -4737,7 +4127,7 @@
},
/turf/open/floor/plasteel,
/area/security/brig)
-"ajX" = (
+"aix" = (
/obj/structure/closet{
name = "Evidence Closet"
},
@@ -4753,7 +4143,7 @@
dir = 4
},
/area/security/brig)
-"ajY" = (
+"aiy" = (
/obj/structure/rack,
/obj/item/weapon/gun/energy/e_gun/advtaser{
pixel_x = -3;
@@ -4766,11 +4156,11 @@
},
/turf/open/floor/plasteel/black,
/area/security/armory)
-"ajZ" = (
+"aiz" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/black,
/area/security/armory)
-"aka" = (
+"aiA" = (
/obj/effect/landmark/event_spawn,
/mob/living/simple_animal/bot/secbot{
arrest_type = 1;
@@ -4783,7 +4173,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/armory)
-"akb" = (
+"aiB" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -4792,7 +4182,7 @@
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/turf/open/floor/plasteel/black,
/area/security/armory)
-"akc" = (
+"aiC" = (
/obj/structure/rack,
/obj/item/weapon/gun/ballistic/shotgun/riot{
pixel_x = -3;
@@ -4805,7 +4195,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/armory)
-"akd" = (
+"aiD" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -4821,19 +4211,19 @@
dir = 9
},
/area/security/main)
-"ake" = (
+"aiE" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/red/side{
dir = 5
},
/area/security/main)
-"akf" = (
+"aiF" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-22"
},
/turf/open/floor/plasteel/black,
/area/security/main)
-"akg" = (
+"aiG" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/cable{
@@ -4842,7 +4232,7 @@
},
/turf/open/floor/plating,
/area/security/hos)
-"akh" = (
+"aiH" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -4854,21 +4244,21 @@
},
/turf/open/floor/plasteel/darkred/corner,
/area/security/hos)
-"aki" = (
+"aiI" = (
/turf/open/floor/plasteel/darkred/side,
/area/security/hos)
-"akj" = (
+"aiJ" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/darkred/side,
/area/security/hos)
-"akk" = (
+"aiK" = (
/obj/machinery/keycard_auth{
pixel_x = 28;
pixel_y = 28
},
/turf/open/floor/plasteel/darkred/side,
/area/security/hos)
-"akl" = (
+"aiL" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/cable{
@@ -4878,7 +4268,7 @@
},
/turf/open/floor/plating,
/area/security/hos)
-"akm" = (
+"aiM" = (
/obj/structure/table,
/obj/item/weapon/lighter,
/obj/machinery/light/small{
@@ -4886,13 +4276,13 @@
},
/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"akn" = (
+"aiN" = (
/obj/structure/table,
/obj/item/weapon/storage/fancy/cigarettes/cigars,
/obj/item/stack/spacecash/c20,
/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"ako" = (
+"aiO" = (
/obj/structure/table,
/obj/item/weapon/reagent_containers/food/drinks/bottle/gin{
pixel_y = 8
@@ -4904,7 +4294,7 @@
/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,
/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"akp" = (
+"aiP" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -4920,7 +4310,7 @@
},
/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"akq" = (
+"aiQ" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -4930,12 +4320,12 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"akr" = (
+"aiR" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -4955,16 +4345,16 @@
pixel_y = 27;
req_access_txt = "0"
},
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"aks" = (
+"aiS" = (
/obj/structure/chair,
/turf/open/floor/plating/abductor,
/area/shuttle/abandoned)
-"akt" = (
+"aiT" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -4976,7 +4366,7 @@
},
/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"aku" = (
+"aiU" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -4992,7 +4382,7 @@
},
/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"akv" = (
+"aiV" = (
/obj/structure/window/reinforced{
dir = 1;
layer = 2.9
@@ -5005,7 +4395,7 @@
/obj/item/weapon/gun/energy/laser/retro,
/turf/open/floor/plating/abductor,
/area/shuttle/abandoned)
-"akw" = (
+"aiW" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -5019,7 +4409,7 @@
},
/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"akx" = (
+"aiX" = (
/obj/machinery/door/airlock{
id_tag = "mainthideout";
name = "Hideout"
@@ -5028,7 +4418,7 @@
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"aky" = (
+"aiY" = (
/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
tag = "icon-manifold (WEST)";
icon_state = "manifold";
@@ -5039,7 +4429,7 @@
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"akz" = (
+"aiZ" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 8
},
@@ -5047,14 +4437,14 @@
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"akA" = (
+"aja" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible,
/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
/turf/open/floor/plating,
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"akB" = (
+"ajb" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
on = 1;
@@ -5070,7 +4460,7 @@
/area/security/processing{
name = "Crematorium"
})
-"akC" = (
+"ajc" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -5082,7 +4472,7 @@
/area/security/processing{
name = "Crematorium"
})
-"akD" = (
+"ajd" = (
/obj/machinery/light/small{
dir = 4
},
@@ -5100,7 +4490,7 @@
/area/security/processing{
name = "Crematorium"
})
-"akE" = (
+"aje" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
tag = "icon-intact (EAST)";
icon_state = "intact";
@@ -5108,7 +4498,7 @@
},
/turf/closed/wall/r_wall,
/area/security/brig)
-"akF" = (
+"ajf" = (
/obj/item/weapon/storage/box/bodybags,
/obj/structure/extinguisher_cabinet{
pixel_x = -27;
@@ -5133,7 +4523,7 @@
dir = 10
},
/area/security/brig)
-"akG" = (
+"ajg" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
tag = "icon-intact (EAST)";
icon_state = "intact";
@@ -5144,7 +4534,7 @@
dir = 8
},
/area/security/brig)
-"akH" = (
+"ajh" = (
/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
tag = "icon-manifold (NORTH)";
icon_state = "manifold";
@@ -5152,7 +4542,7 @@
},
/turf/open/floor/plasteel/white,
/area/security/brig)
-"akI" = (
+"aji" = (
/obj/machinery/door/window/westleft{
base_state = "left";
dir = 4;
@@ -5169,7 +4559,7 @@
dir = 4
},
/area/security/brig)
-"akJ" = (
+"ajj" = (
/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
tag = "icon-manifold (EAST)";
icon_state = "manifold";
@@ -5177,14 +4567,14 @@
},
/turf/open/floor/plasteel,
/area/security/brig)
-"akK" = (
+"ajk" = (
/obj/structure/cable{
tag = "icon-1-2";
icon_state = "1-2"
},
/turf/open/floor/plasteel,
/area/security/brig)
-"akL" = (
+"ajl" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8;
initialize_directions = 11
@@ -5193,13 +4583,13 @@
dir = 4
},
/area/security/brig)
-"akM" = (
+"ajm" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall,
/area/security/brig)
-"akN" = (
+"ajn" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
on = 1;
@@ -5211,7 +4601,7 @@
dir = 10
},
/area/security/brig)
-"akO" = (
+"ajo" = (
/obj/structure/closet{
name = "Evidence Closet"
},
@@ -5219,13 +4609,13 @@
dir = 6
},
/area/security/brig)
-"akP" = (
+"ajp" = (
/obj/machinery/flasher/portable,
/turf/open/floor/plasteel/vault{
dir = 8
},
/area/security/armory)
-"akQ" = (
+"ajq" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -5238,7 +4628,7 @@
dir = 8
},
/area/security/main)
-"akR" = (
+"ajr" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp/green{
pixel_x = -4;
@@ -5251,27 +4641,27 @@
},
/turf/open/floor/plasteel,
/area/security/main)
-"akS" = (
+"ajs" = (
/obj/machinery/computer/secure_data,
/turf/open/floor/plasteel,
/area/security/main)
-"akT" = (
+"ajt" = (
/turf/open/floor/plasteel,
/area/security/main)
-"akU" = (
+"aju" = (
/obj/machinery/computer/security,
/turf/open/floor/plasteel,
/area/security/main)
-"akV" = (
+"ajv" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/red/side{
dir = 4
},
/area/security/main)
-"akW" = (
+"ajw" = (
/turf/open/floor/plasteel/black,
/area/security/main)
-"akX" = (
+"ajx" = (
/obj/structure/cable{
tag = "icon-1-2";
icon_state = "1-2"
@@ -5279,27 +4669,27 @@
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/turf/open/floor/plasteel/black,
/area/security/hos)
-"akY" = (
+"ajy" = (
/turf/open/floor/carpet,
/area/security/hos)
-"akZ" = (
+"ajz" = (
/obj/structure/chair{
dir = 4
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/carpet,
/area/security/hos)
-"ala" = (
+"ajA" = (
/obj/structure/table/wood,
/obj/item/weapon/folder/red,
/obj/item/weapon/stamp/hos,
/turf/open/floor/carpet,
/area/security/hos)
-"alb" = (
+"ajB" = (
/obj/machinery/computer/secure_data,
/turf/open/floor/carpet,
/area/security/hos)
-"alc" = (
+"ajC" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/cable{
@@ -5310,30 +4700,30 @@
/obj/structure/cable,
/turf/open/floor/plating,
/area/security/hos)
-"ald" = (
+"ajD" = (
/turf/open/floor/plating{
burnt = 1;
icon_state = "panelscorched"
},
/area/maintenance/fsmaint)
-"ale" = (
+"ajE" = (
/obj/structure/chair/stool/bar,
/turf/open/floor/wood{
icon_state = "wood-broken7"
},
/area/maintenance/fsmaint)
-"alf" = (
+"ajF" = (
/obj/effect/landmark{
name = "blobstart"
},
/obj/structure/chair/stool/bar,
/turf/open/floor/wood,
/area/maintenance/fsmaint)
-"alg" = (
+"ajG" = (
/obj/structure/chair/stool/bar,
/turf/open/floor/wood,
/area/maintenance/fsmaint)
-"alh" = (
+"ajH" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -5342,32 +4732,32 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"ali" = (
+"ajI" = (
/obj/machinery/door/poddoor/shutters{
id = "supplybridge"
},
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 10
},
+/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"alj" = (
+"ajJ" = (
/obj/machinery/door/poddoor/shutters{
id = "supplybridge"
},
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"alk" = (
+"ajK" = (
/obj/machinery/door/poddoor/shutters{
id = "supplybridge"
},
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 6
},
+/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"all" = (
+"ajL" = (
/obj/docking_port/stationary{
dheight = 9;
dir = 2;
@@ -5380,7 +4770,7 @@
},
/turf/open/space,
/area/space)
-"alm" = (
+"ajM" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
tag = "icon-intact (NORTHEAST)";
icon_state = "intact";
@@ -5390,7 +4780,7 @@
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"aln" = (
+"ajN" = (
/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
tag = "icon-manifold (NORTH)";
icon_state = "manifold";
@@ -5401,7 +4791,7 @@
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"alo" = (
+"ajO" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
tag = "icon-intact (NORTHWEST)";
icon_state = "intact";
@@ -5411,7 +4801,7 @@
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"alp" = (
+"ajP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable{
d1 = 2;
@@ -5423,13 +4813,13 @@
/area/security/processing{
name = "Crematorium"
})
-"alq" = (
+"ajQ" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/turf/open/floor/plasteel/black,
/area/security/processing{
name = "Crematorium"
})
-"alr" = (
+"ajR" = (
/obj/structure/bodycontainer/morgue,
/obj/machinery/camera{
c_tag = "Brig Infirmary";
@@ -5444,7 +4834,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/brig)
-"als" = (
+"ajS" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -5457,7 +4847,7 @@
dir = 8
},
/area/security/brig)
-"alt" = (
+"ajT" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -5470,7 +4860,7 @@
},
/turf/open/floor/plasteel/white,
/area/security/brig)
-"alu" = (
+"ajU" = (
/obj/machinery/door/window/westleft{
base_state = "right";
dir = 4;
@@ -5488,7 +4878,7 @@
dir = 4
},
/area/security/brig)
-"alv" = (
+"ajV" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -5498,7 +4888,7 @@
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/turf/open/floor/plasteel,
/area/security/brig)
-"alw" = (
+"ajW" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -5523,7 +4913,7 @@
},
/turf/open/floor/plasteel,
/area/security/brig)
-"alx" = (
+"ajX" = (
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
@@ -5542,10 +4932,10 @@
dir = 4
},
/area/security/brig)
-"aly" = (
+"ajY" = (
/turf/closed/wall/r_wall,
/area/security/warden)
-"alz" = (
+"ajZ" = (
/obj/structure/cable{
icon_state = "0-4";
d2 = 4
@@ -5554,7 +4944,7 @@
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/security/warden)
-"alA" = (
+"aka" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/window/southleft{
base_state = "right";
@@ -5571,7 +4961,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/vault,
/area/security/warden)
-"alB" = (
+"akb" = (
/obj/structure/cable{
icon_state = "0-4";
d2 = 4
@@ -5584,7 +4974,7 @@
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/security/warden)
-"alC" = (
+"akc" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/window/southleft{
base_state = "right";
@@ -5607,7 +4997,7 @@
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/turf/open/floor/plasteel/vault,
/area/security/warden)
-"alD" = (
+"akd" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -5615,7 +5005,7 @@
},
/turf/closed/wall/r_wall,
/area/security/warden)
-"alE" = (
+"ake" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -5645,7 +5035,7 @@
dir = 8
},
/area/security/main)
-"alF" = (
+"akf" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
tag = "icon-intact (EAST)";
icon_state = "intact";
@@ -5653,7 +5043,7 @@
},
/turf/open/floor/plasteel,
/area/security/main)
-"alG" = (
+"akg" = (
/obj/structure/chair/office/dark{
dir = 1
},
@@ -5667,7 +5057,7 @@
},
/turf/open/floor/plasteel,
/area/security/main)
-"alH" = (
+"akh" = (
/obj/machinery/holopad,
/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
tag = "icon-manifold (NORTH)";
@@ -5676,7 +5066,7 @@
},
/turf/open/floor/plasteel,
/area/security/main)
-"alI" = (
+"aki" = (
/obj/structure/chair/office/dark{
dir = 1
},
@@ -5694,7 +5084,7 @@
},
/turf/open/floor/plasteel,
/area/security/main)
-"alJ" = (
+"akj" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -5713,7 +5103,7 @@
dir = 4
},
/area/security/main)
-"alK" = (
+"akk" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -5730,7 +5120,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/main)
-"alL" = (
+"akl" = (
/obj/machinery/door/airlock/glass_command{
name = "Head of Security";
req_access_txt = "58"
@@ -5751,7 +5141,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/hos)
-"alM" = (
+"akm" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -5779,7 +5169,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/hos)
-"alN" = (
+"akn" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -5793,7 +5183,7 @@
},
/turf/open/floor/carpet,
/area/security/hos)
-"alO" = (
+"ako" = (
/obj/structure/chair{
dir = 4
},
@@ -5803,33 +5193,33 @@
},
/turf/open/floor/carpet,
/area/security/hos)
-"alP" = (
+"akp" = (
/obj/structure/table/wood,
/obj/item/weapon/book/manual/wiki/security_space_law,
/turf/open/floor/carpet,
/area/security/hos)
-"alQ" = (
+"akq" = (
/obj/structure/chair/comfy/black{
dir = 8
},
/turf/open/floor/carpet,
/area/security/hos)
-"alR" = (
+"akr" = (
/obj/machinery/computer/security,
/turf/open/floor/carpet,
/area/security/hos)
-"alS" = (
+"aks" = (
/obj/item/weapon/cigbutt/roach,
/turf/open/floor/wood,
/area/maintenance/fsmaint)
-"alT" = (
+"akt" = (
/turf/open/floor/wood{
broken = 1;
icon_state = "wood-broken";
tag = "icon-wood-broken"
},
/area/maintenance/fsmaint)
-"alU" = (
+"aku" = (
/obj/effect/decal/cleanable/oil{
icon_state = "floor6"
},
@@ -5837,7 +5227,7 @@
icon_state = "wood-broken4"
},
/area/maintenance/fsmaint)
-"alV" = (
+"akv" = (
/obj/machinery/door/airlock/atmos{
name = "Atmospherics Maintenance";
req_access_txt = "12;24"
@@ -5847,7 +5237,7 @@
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"alW" = (
+"akw" = (
/obj/machinery/door/airlock/maintenance{
name = "Crematorium Maintenance";
req_access_txt = "0";
@@ -5865,7 +5255,7 @@
/area/security/processing{
name = "Crematorium"
})
-"alX" = (
+"akx" = (
/obj/machinery/door/window/eastright{
base_state = "left";
dir = 1;
@@ -5889,7 +5279,7 @@
/area/security/processing{
name = "Crematorium"
})
-"alY" = (
+"aky" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -5900,7 +5290,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/brig)
-"alZ" = (
+"akz" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -5911,13 +5301,13 @@
dir = 10
},
/area/security/brig)
-"ama" = (
+"akA" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/whitered/side,
/area/security/brig)
-"amb" = (
+"akB" = (
/obj/structure/closet/crate/freezer,
/obj/structure/window/reinforced{
dir = 4;
@@ -5932,7 +5322,7 @@
dir = 6
},
/area/security/brig)
-"amc" = (
+"akC" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -5941,7 +5331,7 @@
dir = 8
},
/area/security/brig)
-"amd" = (
+"akD" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -5954,7 +5344,7 @@
},
/turf/open/floor/plasteel,
/area/security/brig)
-"ame" = (
+"akE" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
@@ -5962,7 +5352,7 @@
dir = 4
},
/area/security/brig)
-"amf" = (
+"akF" = (
/obj/structure/closet/secure_closet/warden,
/obj/item/clothing/mask/gas/sechailer,
/obj/machinery/power/apc{
@@ -5981,14 +5371,14 @@
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"amg" = (
+"akG" = (
/obj/machinery/computer/prisoner,
/obj/machinery/airalarm{
pixel_y = 22
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"amh" = (
+"akH" = (
/obj/machinery/computer/security,
/obj/machinery/light{
dir = 1
@@ -5999,22 +5389,22 @@
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"ami" = (
+"akI" = (
/obj/machinery/computer/secure_data,
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"amj" = (
+"akJ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"amk" = (
+"akK" = (
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"aml" = (
+"akL" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"amm" = (
+"akM" = (
/obj/structure/table,
/obj/machinery/recharger,
/obj/machinery/light/small{
@@ -6022,7 +5412,7 @@
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"amn" = (
+"akN" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -6032,26 +5422,26 @@
},
/turf/closed/wall/r_wall,
/area/security/warden)
-"amo" = (
+"akO" = (
/obj/structure/shuttle/engine/propulsion/burst{
- tag = "icon-propulsion (WEST)";
+ dir = 4;
icon_state = "propulsion";
- dir = 8
+ tag = "icon-propulsion (WEST)"
},
/turf/closed/wall/mineral/titanium,
/area/shuttle/abandoned)
-"amp" = (
+"akP" = (
/obj/structure/table/wood,
/obj/machinery/recharger,
/turf/open/floor/plasteel,
/area/security/main)
-"amq" = (
+"akQ" = (
/obj/structure/table/wood,
/obj/machinery/recharger,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel,
/area/security/main)
-"amr" = (
+"akR" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -6064,14 +5454,14 @@
dir = 4
},
/area/security/main)
-"ams" = (
+"akS" = (
/obj/structure/cable{
tag = "icon-1-2";
icon_state = "1-2"
},
/turf/open/floor/plasteel/black,
/area/security/hos)
-"amt" = (
+"akT" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -6081,37 +5471,37 @@
},
/turf/open/floor/carpet,
/area/security/hos)
-"amu" = (
+"akU" = (
/obj/structure/chair{
dir = 4
},
/turf/open/floor/carpet,
/area/security/hos)
-"amv" = (
+"akV" = (
/obj/structure/table/wood,
/obj/item/weapon/phone,
/turf/open/floor/carpet,
/area/security/hos)
-"amw" = (
+"akW" = (
/obj/machinery/computer/card/minor/hos,
/turf/open/floor/carpet,
/area/security/hos)
-"amx" = (
+"akX" = (
/obj/machinery/door/airlock/maintenance{
name = "Pete's Speakeasy";
req_access_txt = "12"
},
/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"amy" = (
+"akY" = (
/turf/closed/wall/mineral/titanium,
/area/shuttle/pod_1)
-"amz" = (
+"akZ" = (
/obj/structure/grille,
/obj/structure/window/shuttle,
/turf/open/floor/plating,
/area/shuttle/pod_1)
-"amA" = (
+"ala" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -6123,13 +5513,13 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"amB" = (
+"alb" = (
/obj/structure/grille/broken,
/turf/open/floor/plating,
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"amC" = (
+"alc" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -6140,7 +5530,7 @@
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"amD" = (
+"ald" = (
/obj/item/weapon/wirecutters,
/obj/effect/spawner/lootdrop/maintenance,
/obj/structure/cable{
@@ -6158,7 +5548,7 @@
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"amE" = (
+"ale" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -6174,7 +5564,7 @@
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"amF" = (
+"alf" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
tag = "icon-intact (EAST)";
icon_state = "intact";
@@ -6193,7 +5583,7 @@
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"amG" = (
+"alg" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
tag = "icon-intact (NORTHWEST)";
icon_state = "intact";
@@ -6203,7 +5593,7 @@
/area/security/processing{
name = "Crematorium"
})
-"amH" = (
+"alh" = (
/obj/structure/plasticflaps{
opacity = 1
},
@@ -6213,7 +5603,7 @@
/area/security/processing{
name = "Crematorium"
})
-"amI" = (
+"ali" = (
/obj/machinery/door/airlock/maintenance{
name = "Brig Infirmary Maintenance";
req_access_txt = "63";
@@ -6229,7 +5619,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/security/brig)
-"amJ" = (
+"alj" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 8
@@ -6244,7 +5634,7 @@
dir = 8
},
/area/security/brig)
-"amK" = (
+"alk" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -6253,7 +5643,7 @@
},
/turf/open/floor/plasteel,
/area/security/brig)
-"amL" = (
+"all" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -6265,7 +5655,7 @@
dir = 4
},
/area/security/brig)
-"amM" = (
+"alm" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -6285,7 +5675,7 @@
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/security/warden)
-"amN" = (
+"aln" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -6293,7 +5683,7 @@
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"amO" = (
+"alo" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1;
@@ -6302,26 +5692,26 @@
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"amP" = (
+"alp" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"amQ" = (
+"alq" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1;
initialize_directions = 11
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"amR" = (
+"alr" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"amS" = (
+"als" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
tag = "icon-intact (SOUTHEAST)";
icon_state = "intact";
@@ -6329,11 +5719,11 @@
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"amT" = (
+"alt" = (
/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"amU" = (
+"alu" = (
/obj/structure/table,
/obj/machinery/recharger,
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
@@ -6343,7 +5733,7 @@
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"amV" = (
+"alv" = (
/obj/structure/cable{
icon_state = "0-2";
d2 = 2
@@ -6358,7 +5748,7 @@
},
/turf/open/floor/plating,
/area/security/warden)
-"amW" = (
+"alw" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -6375,7 +5765,7 @@
dir = 10
},
/area/security/main)
-"amX" = (
+"alx" = (
/obj/structure/chair/office/dark{
dir = 1
},
@@ -6384,7 +5774,7 @@
},
/turf/open/floor/plasteel,
/area/security/main)
-"amY" = (
+"aly" = (
/obj/structure/chair/office/dark{
dir = 1
},
@@ -6394,7 +5784,7 @@
},
/turf/open/floor/plasteel,
/area/security/main)
-"amZ" = (
+"alz" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -6410,7 +5800,7 @@
dir = 6
},
/area/security/main)
-"ana" = (
+"alA" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-22"
},
@@ -6419,7 +5809,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/main)
-"anb" = (
+"alB" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/cable{
@@ -6431,7 +5821,7 @@
},
/turf/open/floor/plating,
/area/security/hos)
-"anc" = (
+"alC" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -6451,7 +5841,7 @@
dir = 4
},
/area/security/hos)
-"and" = (
+"alD" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -6463,7 +5853,7 @@
dir = 1
},
/area/security/hos)
-"ane" = (
+"alE" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -6475,7 +5865,7 @@
dir = 1
},
/area/security/hos)
-"anf" = (
+"alF" = (
/obj/machinery/light,
/obj/structure/cable{
d1 = 4;
@@ -6499,7 +5889,7 @@
dir = 1
},
/area/security/hos)
-"ang" = (
+"alG" = (
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
@@ -6519,7 +5909,7 @@
dir = 1
},
/area/security/hos)
-"anh" = (
+"alH" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/cable{
@@ -6529,26 +5919,26 @@
/obj/structure/cable,
/turf/open/floor/plating,
/area/security/hos)
-"ani" = (
+"alI" = (
/obj/structure/grille/broken,
/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"anj" = (
+"alJ" = (
/obj/structure/closet/emcloset,
/obj/item/device/camera,
/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"ank" = (
+"alK" = (
/obj/machinery/computer/shuttle/monastery_shuttle,
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/pod_1)
-"anl" = (
+"alL" = (
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"anm" = (
+"alM" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -6559,7 +5949,7 @@
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"ann" = (
+"alN" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -6572,7 +5962,7 @@
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"ano" = (
+"alO" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
@@ -6586,7 +5976,7 @@
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"anp" = (
+"alP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -6599,7 +5989,7 @@
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"anq" = (
+"alQ" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -6613,7 +6003,7 @@
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"anr" = (
+"alR" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -6626,33 +6016,33 @@
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"ans" = (
+"alS" = (
/obj/machinery/computer/security{
name = "Labor Camp Monitoring";
network = list("Labor")
},
/turf/open/floor/plasteel/black,
/area/security/brig)
-"ant" = (
+"alT" = (
/obj/machinery/computer/shuttle/labor,
/turf/open/floor/plasteel/black,
/area/security/brig)
-"anu" = (
+"alU" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/turf/open/floor/plasteel/red/side{
dir = 8
},
/area/security/brig)
-"anv" = (
+"alV" = (
/turf/open/floor/plasteel,
/area/security/brig)
-"anw" = (
+"alW" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/red/side{
dir = 4
},
/area/security/brig)
-"anx" = (
+"alX" = (
/obj/structure/bed/dogbed,
/obj/machinery/requests_console{
department = "Security";
@@ -6665,7 +6055,7 @@
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"any" = (
+"alY" = (
/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
tag = "icon-manifold (WEST)";
icon_state = "manifold";
@@ -6673,7 +6063,7 @@
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"anz" = (
+"alZ" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
layer = 2.4;
@@ -6681,7 +6071,7 @@
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"anA" = (
+"ama" = (
/obj/machinery/door/airlock/security{
name = "Brig Control";
req_access_txt = "3"
@@ -6701,7 +6091,7 @@
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"anB" = (
+"amb" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -6718,7 +6108,7 @@
dir = 8
},
/area/security/main)
-"anC" = (
+"amc" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -6727,7 +6117,7 @@
},
/turf/open/floor/plasteel,
/area/security/main)
-"anD" = (
+"amd" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -6745,7 +6135,7 @@
},
/turf/open/floor/plasteel,
/area/security/main)
-"anE" = (
+"ame" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -6757,7 +6147,7 @@
},
/turf/open/floor/plasteel,
/area/security/main)
-"anF" = (
+"amf" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -6771,7 +6161,7 @@
},
/turf/open/floor/plasteel,
/area/security/main)
-"anG" = (
+"amg" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -6797,10 +6187,10 @@
dir = 4
},
/area/security/main)
-"anH" = (
+"amh" = (
/turf/closed/wall,
/area/maintenance/fore)
-"anI" = (
+"ami" = (
/obj/machinery/light/small{
dir = 8
},
@@ -6814,11 +6204,11 @@
/area/chapel/main{
name = "Monastery"
})
-"anJ" = (
+"amj" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"anK" = (
+"amk" = (
/obj/structure/chair{
dir = 4
},
@@ -6830,10 +6220,10 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/pod_1)
-"anL" = (
+"aml" = (
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/pod_1)
-"anM" = (
+"amm" = (
/obj/structure/chair{
dir = 8
},
@@ -6845,14 +6235,14 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/pod_1)
-"anN" = (
+"amn" = (
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"anO" = (
+"amo" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -6862,14 +6252,14 @@
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"anP" = (
+"amp" = (
/obj/structure/chair/stool,
/obj/item/trash/raisins,
/turf/open/floor/plating,
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"anQ" = (
+"amq" = (
/obj/structure/table,
/obj/item/weapon/paper,
/obj/item/weapon/pen,
@@ -6877,7 +6267,7 @@
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"anR" = (
+"amr" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
external_pressure_bound = 101.325;
@@ -6904,13 +6294,13 @@
/obj/item/weapon/pen,
/turf/open/floor/plasteel/black,
/area/security/brig)
-"anS" = (
+"ams" = (
/obj/structure/chair/office/dark{
dir = 8
},
/turf/open/floor/plasteel/black,
/area/security/brig)
-"anT" = (
+"amt" = (
/obj/structure/cable,
/obj/structure/cable{
icon_state = "0-2";
@@ -6920,14 +6310,14 @@
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/security/warden)
-"anU" = (
+"amu" = (
/obj/item/weapon/book/manual/wiki/security_space_law,
/obj/item/clothing/ears/earmuffs,
/obj/item/clothing/glasses/sunglasses,
/obj/structure/table/reinforced,
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"anV" = (
+"amv" = (
/obj/structure/table/reinforced,
/obj/machinery/button/door{
id = "Secure Gate";
@@ -6945,14 +6335,14 @@
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"anW" = (
+"amw" = (
/obj/structure/chair/office/dark,
/obj/effect/landmark/start{
name = "Warden"
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"anX" = (
+"amx" = (
/obj/item/device/radio/intercom{
dir = 4;
name = "Station Intercom (General)";
@@ -6962,25 +6352,25 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"anY" = (
+"amy" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 4
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"anZ" = (
+"amz" = (
/obj/structure/rack,
/obj/item/weapon/crowbar,
/obj/item/weapon/wrench,
/obj/item/device/laser_pointer/red,
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"aoa" = (
+"amA" = (
/obj/structure/filingcabinet/chestdrawer,
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"aob" = (
+"amB" = (
/obj/structure/cable{
icon_state = "0-2";
d2 = 2
@@ -6990,14 +6380,14 @@
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/security/warden)
-"aoc" = (
+"amC" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 4
},
/turf/open/floor/plasteel/red,
/area/security/main)
-"aod" = (
+"amD" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -7005,13 +6395,13 @@
/area/chapel/main{
name = "Monastery"
})
-"aoe" = (
+"amE" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel/red/side,
/area/security/main)
-"aof" = (
+"amF" = (
/obj/structure/disposalpipe/sortjunction{
dir = 1;
icon_state = "pipe-j2s";
@@ -7022,13 +6412,13 @@
},
/turf/open/floor/plasteel,
/area/security/main)
-"aog" = (
+"amG" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/red/side,
/area/security/main)
-"aoh" = (
+"amH" = (
/obj/machinery/airalarm{
dir = 1;
pixel_y = -22
@@ -7038,7 +6428,7 @@
},
/turf/open/floor/plasteel/red/side,
/area/security/main)
-"aoi" = (
+"amI" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -7062,7 +6452,7 @@
},
/turf/open/floor/plasteel/red,
/area/security/main)
-"aoj" = (
+"amJ" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -7079,7 +6469,7 @@
},
/turf/open/floor/plating,
/area/maintenance/fore)
-"aok" = (
+"amK" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -7091,7 +6481,7 @@
},
/turf/open/floor/plating,
/area/maintenance/fore)
-"aol" = (
+"amL" = (
/obj/machinery/power/apc{
dir = 1;
name = "Fore Maintenance APC";
@@ -7110,7 +6500,7 @@
},
/turf/open/floor/plating,
/area/maintenance/fore)
-"aom" = (
+"amM" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -7125,7 +6515,7 @@
},
/turf/open/floor/plating,
/area/maintenance/fore)
-"aon" = (
+"amN" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -7138,7 +6528,7 @@
},
/turf/open/floor/plating,
/area/maintenance/fore)
-"aoo" = (
+"amO" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 0;
name = "Security External Airlock";
@@ -7146,13 +6536,13 @@
},
/turf/open/floor/plating,
/area/maintenance/fore)
-"aop" = (
+"amP" = (
/obj/machinery/light/small{
dir = 1
},
/turf/open/floor/plating,
/area/maintenance/fore)
-"aoq" = (
+"amQ" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 8;
name = "Security External Airlock";
@@ -7160,14 +6550,14 @@
},
/turf/open/floor/plating,
/area/maintenance/fore)
-"aor" = (
+"amR" = (
/obj/structure/chair{
dir = 8
},
/obj/item/clothing/mask/cigarette,
/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"aos" = (
+"amS" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -7178,7 +6568,7 @@
},
/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"aot" = (
+"amT" = (
/obj/structure/cable{
icon_state = "1-8"
},
@@ -7191,19 +6581,19 @@
icon_state = "platingdmg1"
},
/area/maintenance/fsmaint)
-"aou" = (
+"amU" = (
/obj/structure/chair{
dir = 4
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/pod_1)
-"aov" = (
+"amV" = (
/obj/structure/chair{
dir = 8
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/pod_1)
-"aow" = (
+"amW" = (
/obj/structure/chair{
dir = 8
},
@@ -7211,7 +6601,7 @@
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"aox" = (
+"amX" = (
/mob/living/simple_animal/mouse/gray,
/turf/open/floor/plating{
icon_state = "panelscorched"
@@ -7219,35 +6609,35 @@
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"aoy" = (
+"amY" = (
/obj/structure/closet/firecloset,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"aoz" = (
+"amZ" = (
/turf/closed/wall/mineral/titanium,
/area/shuttle/labor)
-"aoA" = (
+"ana" = (
/obj/structure/grille,
/obj/structure/window/shuttle,
/turf/open/floor/plating,
/area/shuttle/labor)
-"aoB" = (
+"anb" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/security/brig)
-"aoC" = (
+"anc" = (
/obj/machinery/computer/gulag_teleporter_computer,
/turf/open/floor/plasteel/black,
/area/security/brig)
-"aoD" = (
+"and" = (
/obj/machinery/gulag_teleporter,
/turf/open/floor/plasteel/black,
/area/security/brig)
-"aoE" = (
+"ane" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
tag = "icon-intact (SOUTHWEST)";
icon_state = "intact";
@@ -7255,7 +6645,7 @@
},
/turf/open/floor/plasteel,
/area/security/brig)
-"aoF" = (
+"anf" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -7271,7 +6661,7 @@
},
/turf/closed/wall/r_wall,
/area/security/warden)
-"aoG" = (
+"ang" = (
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
@@ -7284,7 +6674,7 @@
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/security/warden)
-"aoH" = (
+"anh" = (
/obj/structure/table/reinforced,
/obj/structure/cable{
d2 = 8;
@@ -7314,7 +6704,7 @@
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"aoI" = (
+"ani" = (
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
@@ -7328,7 +6718,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/security/warden)
-"aoJ" = (
+"anj" = (
/obj/machinery/door/airlock/glass_security{
name = "Brig Control";
req_access_txt = "3"
@@ -7343,7 +6733,7 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"aoK" = (
+"ank" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -7352,7 +6742,7 @@
},
/turf/closed/wall/r_wall,
/area/security/warden)
-"aoL" = (
+"anl" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -7360,7 +6750,7 @@
},
/turf/closed/wall/r_wall,
/area/security/warden)
-"aoM" = (
+"anm" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security{
name = "Security Office";
@@ -7371,7 +6761,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/security/main)
-"aoN" = (
+"ann" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -7390,15 +6780,15 @@
},
/turf/open/floor/plating,
/area/maintenance/fore)
-"aoO" = (
+"ano" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/maintenance/fore)
-"aoP" = (
+"anp" = (
/turf/closed/wall,
/area/crew_quarters/sleep)
-"aoQ" = (
+"anq" = (
/obj/structure/chair{
dir = 4
},
@@ -7408,7 +6798,7 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/pod_1)
-"aoR" = (
+"anr" = (
/obj/structure/chair{
dir = 8
},
@@ -7418,7 +6808,7 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/pod_1)
-"aoS" = (
+"ans" = (
/obj/structure/cable{
icon_state = "0-4";
d2 = 4
@@ -7431,7 +6821,7 @@
/area/solar/port{
name = "Port Solar Array"
})
-"aoT" = (
+"ant" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
d1 = 2;
@@ -7447,7 +6837,7 @@
/area/solar/starboard{
name = "Starboard Solar Array"
})
-"aoU" = (
+"anu" = (
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
@@ -7460,7 +6850,7 @@
/area/solar/port{
name = "Port Solar Array"
})
-"aoV" = (
+"anv" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
d1 = 2;
@@ -7476,7 +6866,7 @@
/area/solar/port{
name = "Port Solar Array"
})
-"aoW" = (
+"anw" = (
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
@@ -7489,7 +6879,7 @@
/area/solar/port{
name = "Port Solar Array"
})
-"aoX" = (
+"anx" = (
/obj/structure/rack,
/obj/item/clothing/suit/hazardvest,
/obj/effect/spawner/lootdrop/maintenance,
@@ -7497,25 +6887,25 @@
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"aoY" = (
+"any" = (
/obj/effect/decal/remains/human,
/turf/open/floor/plating,
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"aoZ" = (
+"anz" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plating,
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"apa" = (
+"anA" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating,
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"apb" = (
+"anB" = (
/obj/structure/closet,
/obj/item/clothing/under/color/black,
/obj/item/clothing/under/color/red,
@@ -7523,7 +6913,7 @@
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"apc" = (
+"anC" = (
/obj/machinery/computer/shuttle/labor,
/obj/structure/reagent_dispensers/peppertank{
pixel_x = -31;
@@ -7531,26 +6921,26 @@
},
/turf/open/floor/mineral/plastitanium/brig,
/area/shuttle/labor)
-"apd" = (
+"anD" = (
/obj/structure/chair/office/dark{
dir = 1
},
/turf/open/floor/mineral/plastitanium/brig,
/area/shuttle/labor)
-"ape" = (
+"anE" = (
/obj/structure/table,
/obj/item/weapon/folder/red,
/obj/item/weapon/restraints/handcuffs,
/turf/open/floor/mineral/plastitanium/brig,
/area/shuttle/labor)
-"apf" = (
+"anF" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
},
/turf/open/floor/plasteel,
/area/security/brig)
-"apg" = (
+"anG" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8;
initialize_directions = 11
@@ -7559,7 +6949,7 @@
dir = 4
},
/area/security/brig)
-"aph" = (
+"anH" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -7578,7 +6968,7 @@
dir = 1
},
/area/security/brig)
-"api" = (
+"anI" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -7586,7 +6976,7 @@
dir = 1
},
/area/security/brig)
-"apj" = (
+"anJ" = (
/obj/machinery/camera{
c_tag = "Brig Cells";
dir = 2
@@ -7598,20 +6988,20 @@
dir = 1
},
/area/security/brig)
-"apk" = (
+"anK" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1;
initialize_directions = 11
},
/turf/open/floor/plasteel,
/area/security/brig)
-"apl" = (
+"anL" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/red/side{
dir = 1
},
/area/security/brig)
-"apm" = (
+"anM" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1;
initialize_directions = 11
@@ -7620,7 +7010,7 @@
dir = 1
},
/area/security/brig)
-"apn" = (
+"anN" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -7628,7 +7018,7 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel,
/area/security/brig)
-"apo" = (
+"anO" = (
/obj/machinery/camera{
c_tag = "Brig Entrance"
},
@@ -7644,7 +7034,7 @@
dir = 1
},
/area/security/brig)
-"app" = (
+"anP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -7655,39 +7045,39 @@
dir = 1
},
/area/security/brig)
-"apq" = (
+"anQ" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/security/brig)
-"apr" = (
+"anR" = (
/turf/open/floor/plasteel/red/side{
dir = 1
},
/area/security/brig)
-"aps" = (
+"anS" = (
/turf/open/floor/plasteel/red/side{
dir = 5
},
/area/security/brig)
-"apt" = (
+"anT" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1
},
/turf/open/floor/plasteel/black,
/area/security/brig)
-"apu" = (
+"anU" = (
/turf/open/floor/plasteel/black,
/area/security/brig)
-"apv" = (
+"anV" = (
/obj/machinery/ai_status_display{
pixel_y = 32
},
/turf/open/floor/plasteel/black,
/area/security/brig)
-"apw" = (
+"anW" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -7698,7 +7088,7 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
/area/maintenance/fore)
-"apx" = (
+"anX" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -7706,7 +7096,7 @@
},
/turf/closed/wall/r_wall,
/area/bridge)
-"apy" = (
+"anY" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/cable{
@@ -7726,7 +7116,7 @@
},
/turf/open/floor/plating,
/area/bridge)
-"apz" = (
+"anZ" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -7734,7 +7124,7 @@
},
/turf/closed/wall/r_wall,
/area/bridge)
-"apA" = (
+"aoa" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -7742,11 +7132,11 @@
},
/turf/closed/wall/r_wall,
/area/bridge)
-"apB" = (
+"aob" = (
/obj/machinery/computer/arcade,
/turf/open/floor/plasteel/barber,
/area/crew_quarters/sleep)
-"apC" = (
+"aoc" = (
/obj/machinery/washing_machine,
/obj/machinery/requests_console{
department = "Crew Quarters";
@@ -7754,14 +7144,14 @@
},
/turf/open/floor/plasteel/barber,
/area/crew_quarters/sleep)
-"apD" = (
+"aod" = (
/obj/machinery/washing_machine,
/obj/machinery/airalarm{
pixel_y = 22
},
/turf/open/floor/plasteel/barber,
/area/crew_quarters/sleep)
-"apE" = (
+"aoe" = (
/obj/structure/table,
/obj/structure/sign/poster{
pixel_x = 32
@@ -7778,11 +7168,11 @@
},
/turf/open/floor/plasteel/barber,
/area/crew_quarters/sleep)
-"apF" = (
+"aof" = (
/obj/structure/shuttle/engine/propulsion/burst,
/turf/closed/wall/mineral/titanium,
/area/shuttle/pod_1)
-"apG" = (
+"aog" = (
/obj/machinery/door/airlock/titanium{
name = "Shuttle Airlock"
},
@@ -7804,11 +7194,11 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/pod_1)
-"apH" = (
+"aoh" = (
/obj/machinery/space_heater,
/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"apI" = (
+"aoi" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
d1 = 2;
@@ -7831,7 +7221,7 @@
/area/solar/starboard{
name = "Starboard Solar Array"
})
-"apJ" = (
+"aoj" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
d1 = 2;
@@ -7854,7 +7244,7 @@
/area/solar/port{
name = "Port Solar Array"
})
-"apK" = (
+"aok" = (
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance{
lootcount = 2;
@@ -7867,14 +7257,14 @@
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"apL" = (
+"aol" = (
/obj/item/weapon/weldingtool,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"apM" = (
+"aom" = (
/obj/machinery/door/airlock/external{
name = "Dock Access"
},
@@ -7885,16 +7275,16 @@
/area/chapel/main{
name = "Monastery"
})
-"apN" = (
+"aon" = (
/obj/item/clothing/head/cone,
/turf/open/floor/plating,
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"apO" = (
+"aoo" = (
/turf/open/floor/mineral/plastitanium/brig,
/area/shuttle/labor)
-"apP" = (
+"aop" = (
/obj/machinery/button/flasher{
id = "gulagshuttleflasher";
name = "Flash Control";
@@ -7904,7 +7294,7 @@
},
/turf/open/floor/mineral/plastitanium/brig,
/area/shuttle/labor)
-"apQ" = (
+"aoq" = (
/obj/machinery/mineral/labor_claim_console{
machinedir = 2;
pixel_x = 30;
@@ -7912,21 +7302,21 @@
},
/turf/open/floor/mineral/plastitanium/brig,
/area/shuttle/labor)
-"apR" = (
+"aor" = (
/obj/machinery/door/airlock/titanium{
name = "Labor Shuttle Airlock";
req_access_txt = "2"
},
/turf/open/floor/mineral/plastitanium/brig,
/area/shuttle/labor)
-"apS" = (
+"aos" = (
/obj/machinery/door/airlock/external{
name = "Labor Camp Shuttle Airlock";
req_access_txt = "2"
},
/turf/open/floor/plasteel/black,
/area/security/brig)
-"apT" = (
+"aot" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_security{
name = "Labor Camp Shuttle Airlock";
@@ -7941,15 +7331,15 @@
},
/turf/open/floor/plasteel/black,
/area/security/brig)
-"apU" = (
+"aou" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/turf/open/floor/plasteel,
/area/security/brig)
-"apV" = (
+"aov" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/security/brig)
-"apW" = (
+"aow" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -7959,7 +7349,7 @@
},
/turf/open/floor/plasteel,
/area/security/brig)
-"apX" = (
+"aox" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
on = 1;
@@ -7968,7 +7358,7 @@
},
/turf/open/floor/plasteel,
/area/security/brig)
-"apY" = (
+"aoy" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
on = 1
},
@@ -7978,13 +7368,13 @@
},
/turf/open/floor/plasteel,
/area/security/brig)
-"apZ" = (
+"aoz" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel,
/area/security/brig)
-"aqa" = (
+"aoA" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -7994,13 +7384,13 @@
},
/turf/open/floor/plasteel,
/area/security/brig)
-"aqb" = (
+"aoB" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/security/brig)
-"aqc" = (
+"aoC" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -8008,7 +7398,7 @@
dir = 4
},
/area/security/brig)
-"aqd" = (
+"aoD" = (
/obj/machinery/door/airlock/security{
name = "Interrogation";
req_access = null;
@@ -8019,37 +7409,37 @@
},
/turf/open/floor/plasteel/black,
/area/security/brig)
-"aqe" = (
+"aoE" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/black,
/area/security/brig)
-"aqf" = (
+"aoF" = (
/obj/structure/chair{
dir = 4
},
/turf/open/floor/plasteel/black,
/area/security/brig)
-"aqg" = (
+"aoG" = (
/obj/structure/table,
/obj/item/device/flashlight/lamp,
/turf/open/floor/plasteel/black,
/area/security/brig)
-"aqh" = (
+"aoH" = (
/obj/structure/chair{
dir = 8
},
/turf/open/floor/plasteel/black,
/area/security/brig)
-"aqi" = (
+"aoI" = (
/obj/machinery/camera{
c_tag = "Brig Interrogation";
dir = 8
},
/turf/open/floor/plasteel/black,
/area/security/brig)
-"aqj" = (
+"aoJ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -8057,25 +7447,25 @@
},
/turf/closed/wall/r_wall,
/area/bridge)
-"aqk" = (
+"aoK" = (
/obj/machinery/modular_computer/console/preset/command,
/turf/open/floor/plasteel/darkgreen/side{
dir = 9
},
/area/bridge)
-"aql" = (
+"aoL" = (
/obj/machinery/computer/med_data,
/turf/open/floor/plasteel/darkgreen/side{
dir = 1
},
/area/bridge)
-"aqm" = (
+"aoM" = (
/obj/machinery/computer/crew,
/turf/open/floor/plasteel/darkgreen/side{
dir = 1
},
/area/bridge)
-"aqn" = (
+"aoN" = (
/obj/machinery/status_display{
density = 0;
layer = 4;
@@ -8095,7 +7485,7 @@
dir = 1
},
/area/bridge)
-"aqo" = (
+"aoO" = (
/obj/machinery/computer/card,
/obj/machinery/camera{
c_tag = "Bridge - Central";
@@ -8107,21 +7497,21 @@
dir = 1
},
/area/bridge)
-"aqp" = (
+"aoP" = (
/obj/machinery/computer/communications,
/turf/open/floor/plasteel/darkblue/side{
tag = "icon-darkblue (NORTH)";
dir = 1
},
/area/bridge)
-"aqq" = (
+"aoQ" = (
/obj/machinery/computer/teleporter,
/turf/open/floor/plasteel/darkblue/side{
tag = "icon-darkblue (NORTH)";
dir = 1
},
/area/bridge)
-"aqr" = (
+"aoR" = (
/obj/machinery/ai_status_display{
pixel_y = 32
},
@@ -8135,25 +7525,25 @@
dir = 1
},
/area/bridge)
-"aqs" = (
+"aoS" = (
/obj/machinery/computer/security,
/turf/open/floor/plasteel/darkred/side{
dir = 1
},
/area/bridge)
-"aqt" = (
+"aoT" = (
/obj/machinery/computer/secure_data,
/turf/open/floor/plasteel/darkred/side{
dir = 1
},
/area/bridge)
-"aqu" = (
+"aoU" = (
/obj/machinery/computer/prisoner,
/turf/open/floor/plasteel/darkred/side{
dir = 5
},
/area/bridge)
-"aqv" = (
+"aoV" = (
/obj/structure/lattice,
/obj/machinery/camera{
c_tag = "Bridge Starboard Exterior";
@@ -8161,10 +7551,10 @@
},
/turf/open/space,
/area/space)
-"aqw" = (
+"aoW" = (
/turf/closed/wall/r_wall,
/area/ai_monitored/nuke_storage)
-"aqx" = (
+"aoX" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -8181,7 +7571,7 @@
icon_state = "panelscorched"
},
/area/maintenance/fsmaint)
-"aqy" = (
+"aoY" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -8193,7 +7583,7 @@
},
/turf/open/floor/plating,
/area/crew_quarters/sleep)
-"aqz" = (
+"aoZ" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
on = 1
},
@@ -8204,7 +7594,7 @@
},
/turf/open/floor/plasteel/barber,
/area/crew_quarters/sleep)
-"aqA" = (
+"apa" = (
/obj/effect/landmark/event_spawn,
/obj/structure/cable{
d1 = 4;
@@ -8213,7 +7603,7 @@
},
/turf/open/floor/plasteel/barber,
/area/crew_quarters/sleep)
-"aqB" = (
+"apb" = (
/obj/effect/landmark/start{
name = "Assistant"
},
@@ -8227,7 +7617,7 @@
},
/turf/open/floor/plasteel/barber,
/area/crew_quarters/sleep)
-"aqC" = (
+"apc" = (
/obj/structure/bedsheetbin,
/obj/machinery/newscaster{
pixel_x = 32
@@ -8237,20 +7627,20 @@
},
/turf/open/floor/plasteel/barber,
/area/crew_quarters/sleep)
-"aqD" = (
+"apd" = (
/obj/machinery/door/airlock/external{
name = "Escape Pod"
},
/turf/open/floor/plating,
/area/crew_quarters/sleep)
-"aqE" = (
+"ape" = (
/obj/item/clothing/under/kilt,
/obj/item/clothing/head/collectable/wizard,
/obj/structure/closet/cardboard,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"aqF" = (
+"apf" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -8266,7 +7656,7 @@
},
/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"aqG" = (
+"apg" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -8280,7 +7670,7 @@
},
/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"aqH" = (
+"aph" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -8297,7 +7687,7 @@
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"aqI" = (
+"api" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/cable{
@@ -8309,7 +7699,7 @@
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"aqJ" = (
+"apj" = (
/obj/item/clothing/head/cone,
/obj/structure/cable{
d1 = 4;
@@ -8325,7 +7715,7 @@
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"aqK" = (
+"apk" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -8335,7 +7725,7 @@
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"aqL" = (
+"apl" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -8345,21 +7735,21 @@
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"aqM" = (
+"apm" = (
/obj/machinery/door/airlock/titanium{
name = "Labor Shuttle Airlock";
req_access_txt = "2"
},
/turf/open/floor/plasteel/black,
/area/shuttle/labor)
-"aqN" = (
+"apn" = (
/obj/machinery/mineral/stacking_machine/laborstacker{
input_dir = 2;
output_dir = 1
},
/turf/open/floor/plasteel/black,
/area/shuttle/labor)
-"aqO" = (
+"apo" = (
/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
tag = "icon-manifold (WEST)";
icon_state = "manifold";
@@ -8369,7 +7759,7 @@
dir = 10
},
/area/security/brig)
-"aqP" = (
+"app" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
tag = "icon-intact (WEST)";
icon_state = "intact";
@@ -8377,7 +7767,7 @@
},
/turf/open/floor/plasteel,
/area/security/brig)
-"aqQ" = (
+"apq" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
tag = "icon-intact (WEST)";
icon_state = "intact";
@@ -8386,7 +7776,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/red/side,
/area/security/brig)
-"aqR" = (
+"apr" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -8407,7 +7797,7 @@
},
/turf/open/floor/plasteel/red/side,
/area/security/brig)
-"aqS" = (
+"aps" = (
/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
tag = "icon-manifold (NORTH)";
icon_state = "manifold";
@@ -8415,7 +7805,7 @@
},
/turf/open/floor/plasteel/red/side,
/area/security/brig)
-"aqT" = (
+"apt" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
tag = "icon-intact (WEST)";
icon_state = "intact";
@@ -8428,11 +7818,11 @@
},
/turf/open/floor/plasteel/red/side,
/area/security/brig)
-"aqU" = (
+"apu" = (
/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,
/turf/open/floor/plasteel,
/area/security/brig)
-"aqV" = (
+"apv" = (
/obj/machinery/light,
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
tag = "icon-intact (WEST)";
@@ -8446,7 +7836,7 @@
},
/turf/open/floor/plasteel/red/side,
/area/security/brig)
-"aqW" = (
+"apw" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
tag = "icon-intact (WEST)";
icon_state = "intact";
@@ -8454,12 +7844,12 @@
},
/turf/open/floor/plasteel/red/side,
/area/security/brig)
-"aqX" = (
+"apx" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,
/turf/open/floor/plasteel/red/side,
/area/security/brig)
-"aqY" = (
+"apy" = (
/obj/machinery/light,
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
tag = "icon-intact (WEST)";
@@ -8468,7 +7858,7 @@
},
/turf/open/floor/plasteel/red/side,
/area/security/brig)
-"aqZ" = (
+"apz" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
tag = "icon-intact (WEST)";
icon_state = "intact";
@@ -8478,7 +7868,7 @@
dir = 6
},
/area/security/brig)
-"ara" = (
+"apA" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
tag = "icon-intact (WEST)";
icon_state = "intact";
@@ -8486,7 +7876,7 @@
},
/turf/closed/wall,
/area/security/brig)
-"arb" = (
+"apB" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
tag = "icon-intact (WEST)";
@@ -8495,7 +7885,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/brig)
-"arc" = (
+"apC" = (
/obj/structure/chair{
dir = 4
},
@@ -8506,7 +7896,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/brig)
-"ard" = (
+"apD" = (
/obj/structure/table,
/obj/item/weapon/folder/red,
/obj/item/device/taperecorder{
@@ -8519,7 +7909,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/brig)
-"are" = (
+"apE" = (
/obj/structure/chair{
dir = 8
},
@@ -8530,7 +7920,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/brig)
-"arf" = (
+"apF" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
tag = "icon-intact (SOUTHWEST)";
icon_state = "intact";
@@ -8538,10 +7928,10 @@
},
/turf/open/floor/plasteel/black,
/area/security/brig)
-"arg" = (
+"apG" = (
/turf/closed/wall/r_wall,
/area/bridge)
-"arh" = (
+"apH" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -8550,7 +7940,7 @@
},
/turf/closed/wall/r_wall,
/area/bridge)
-"ari" = (
+"apI" = (
/obj/structure/chair/office/dark{
dir = 1
},
@@ -8574,16 +7964,16 @@
dir = 8
},
/area/bridge)
-"arj" = (
+"apJ" = (
/obj/structure/chair/office/dark{
dir = 1
},
/turf/open/floor/plasteel/black,
/area/bridge)
-"ark" = (
+"apK" = (
/turf/open/floor/plasteel/black,
/area/bridge)
-"arl" = (
+"apL" = (
/obj/structure/chair/office/dark{
dir = 1
},
@@ -8610,22 +8000,22 @@
dir = 4
},
/area/bridge)
-"arm" = (
+"apM" = (
/obj/structure/cable{
icon_state = "1-8"
},
/turf/closed/wall/r_wall,
/area/bridge)
-"arn" = (
+"apN" = (
/turf/closed/wall,
/area/bridge)
-"aro" = (
+"apO" = (
/obj/machinery/computer/bank_machine,
/turf/open/floor/plasteel/vault{
dir = 8
},
/area/ai_monitored/nuke_storage)
-"arp" = (
+"apP" = (
/obj/machinery/light_switch{
pixel_y = 28
},
@@ -8633,7 +8023,7 @@
luminosity = 2
},
/area/ai_monitored/nuke_storage)
-"arq" = (
+"apQ" = (
/obj/machinery/airalarm{
pixel_y = 23
},
@@ -8644,7 +8034,7 @@
luminosity = 2
},
/area/ai_monitored/nuke_storage)
-"arr" = (
+"apR" = (
/obj/machinery/power/apc{
dir = 1;
name = "Vault APC";
@@ -8659,14 +8049,14 @@
luminosity = 2
},
/area/ai_monitored/nuke_storage)
-"ars" = (
+"apS" = (
/obj/structure/filingcabinet,
/obj/item/weapon/folder/documents,
/turf/open/floor/plasteel/vault{
dir = 8
},
/area/ai_monitored/nuke_storage)
-"art" = (
+"apT" = (
/obj/machinery/power/apc{
dir = 8;
name = "Dormitory Maintenance APC";
@@ -8683,20 +8073,20 @@
icon_state = "panelscorched"
},
/area/maintenance/fsmaint)
-"aru" = (
+"apU" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/closed/wall,
/area/crew_quarters/sleep)
-"arv" = (
+"apV" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4;
initialize_directions = 11
},
/turf/open/floor/plasteel/barber,
/area/crew_quarters/sleep)
-"arw" = (
+"apW" = (
/obj/machinery/light,
/obj/machinery/camera{
c_tag = "Laundry Room";
@@ -8704,7 +8094,7 @@
},
/turf/open/floor/plasteel/barber,
/area/crew_quarters/sleep)
-"arx" = (
+"apX" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -8712,14 +8102,14 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/barber,
/area/crew_quarters/sleep)
-"ary" = (
+"apY" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 8
},
/turf/open/floor/plasteel/barber,
/area/crew_quarters/sleep)
-"arz" = (
+"apZ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
@@ -8727,10 +8117,10 @@
/area/chapel/main{
name = "Monastery"
})
-"arA" = (
+"aqa" = (
/turf/open/floor/plating,
/area/crew_quarters/sleep)
-"arB" = (
+"aqb" = (
/obj/machinery/light/small{
dir = 4
},
@@ -8749,18 +8139,18 @@
},
/turf/open/floor/plating,
/area/crew_quarters/sleep)
-"arC" = (
+"aqc" = (
/obj/structure/closet,
/obj/item/weapon/weldingtool,
/obj/item/weapon/crowbar,
/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"arD" = (
+"aqd" = (
/turf/closed/wall,
/area/crew_quarters/fitness{
name = "Recreation Room"
})
-"arE" = (
+"aqe" = (
/obj/structure/closet/crate{
icon_state = "crateopen";
opened = 1
@@ -8772,7 +8162,7 @@
/obj/item/clothing/mask/balaclava,
/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"arF" = (
+"aqf" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -8784,15 +8174,15 @@
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"arG" = (
+"aqg" = (
/turf/open/floor/plasteel/circuit/gcircuit,
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"arH" = (
+"aqh" = (
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/labor)
-"arI" = (
+"aqi" = (
/obj/machinery/mineral/labor_claim_console{
machinedir = 1;
pixel_x = 30;
@@ -8800,10 +8190,10 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/labor)
-"arJ" = (
+"aqj" = (
/turf/open/space,
/area/security/brig)
-"arK" = (
+"aqk" = (
/obj/structure/cable{
icon_state = "0-4";
d2 = 4
@@ -8813,7 +8203,7 @@
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/turf/open/floor/plating,
/area/security/brig)
-"arL" = (
+"aql" = (
/obj/machinery/door/window/brigdoor{
id = "Cell 1";
name = "Cell 1";
@@ -8826,7 +8216,7 @@
},
/turf/open/floor/plasteel/red/side,
/area/security/brig)
-"arM" = (
+"aqm" = (
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
@@ -8840,7 +8230,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/security/brig)
-"arN" = (
+"aqn" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -8854,7 +8244,7 @@
},
/turf/closed/wall,
/area/security/brig)
-"arO" = (
+"aqo" = (
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
@@ -8868,7 +8258,7 @@
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/turf/open/floor/plating,
/area/security/brig)
-"arP" = (
+"aqp" = (
/obj/machinery/door/window/brigdoor{
id = "Cell 2";
name = "Cell 2";
@@ -8881,7 +8271,7 @@
},
/turf/open/floor/plasteel/red/side,
/area/security/brig)
-"arQ" = (
+"aqq" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -8889,7 +8279,7 @@
},
/turf/closed/wall,
/area/security/brig)
-"arR" = (
+"aqr" = (
/obj/machinery/door/window/brigdoor{
id = "Cell 3";
name = "Cell 3";
@@ -8902,7 +8292,7 @@
},
/turf/open/floor/plasteel/red/side,
/area/security/brig)
-"arS" = (
+"aqs" = (
/obj/structure/cable{
icon_state = "0-4";
d2 = 4
@@ -8916,7 +8306,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/security/brig)
-"arT" = (
+"aqt" = (
/obj/machinery/door/airlock/glass_security{
cyclelinkeddir = 2;
id_tag = "innerbrig";
@@ -8934,7 +8324,7 @@
dir = 8
},
/area/security/brig)
-"arU" = (
+"aqu" = (
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
@@ -8947,7 +8337,7 @@
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/security/brig)
-"arV" = (
+"aqv" = (
/obj/machinery/door/airlock/glass_security{
cyclelinkeddir = 2;
id_tag = "innerbrig";
@@ -8960,7 +8350,7 @@
dir = 4
},
/area/security/brig)
-"arW" = (
+"aqw" = (
/obj/machinery/door/airlock/glass_security{
name = "Brig Desk";
req_access_txt = "1"
@@ -8968,18 +8358,18 @@
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/turf/open/floor/plasteel/black,
/area/security/brig)
-"arX" = (
+"aqx" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/black,
/area/security/brig)
-"arY" = (
+"aqy" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
},
/turf/open/floor/plasteel/black,
/area/security/brig)
-"arZ" = (
+"aqz" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -8995,15 +8385,15 @@
},
/turf/open/floor/plating,
/area/maintenance/fore)
-"asa" = (
+"aqA" = (
/obj/structure/window/reinforced,
/turf/open/space,
/area/space)
-"asb" = (
+"aqB" = (
/obj/machinery/computer/atmos_alert,
/turf/open/floor/plasteel/darkpurple,
/area/bridge)
-"asc" = (
+"aqC" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -9013,29 +8403,29 @@
dir = 8
},
/area/bridge)
-"asd" = (
+"aqD" = (
/turf/open/floor/plasteel/darkblue/corner{
tag = "icon-darkbluecorners (EAST)";
dir = 4
},
/area/bridge)
-"ase" = (
+"aqE" = (
/turf/open/floor/plasteel/darkblue/side{
dir = 1
},
/area/bridge)
-"asf" = (
+"aqF" = (
/obj/item/device/radio/beacon,
/turf/open/floor/plasteel/darkblue/side{
dir = 1
},
/area/bridge)
-"asg" = (
+"aqG" = (
/turf/open/floor/plasteel/darkblue/corner{
dir = 1
},
/area/bridge)
-"ash" = (
+"aqH" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -9045,11 +8435,11 @@
dir = 4
},
/area/bridge)
-"asi" = (
+"aqI" = (
/obj/machinery/computer/shuttle/labor,
/turf/open/floor/plasteel/darkyellow,
/area/bridge)
-"asj" = (
+"aqJ" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 2;
name = "Bridge External Access";
@@ -9058,7 +8448,7 @@
},
/turf/open/floor/plating,
/area/bridge)
-"ask" = (
+"aqK" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1;
@@ -9069,7 +8459,7 @@
dir = 1
},
/area/ai_monitored/nuke_storage)
-"asl" = (
+"aqL" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
@@ -9077,13 +8467,13 @@
luminosity = 2
},
/area/ai_monitored/nuke_storage)
-"asm" = (
+"aqM" = (
/obj/machinery/nuclearbomb/selfdestruct,
/turf/open/floor/plasteel/vault{
dir = 8
},
/area/ai_monitored/nuke_storage)
-"asn" = (
+"aqN" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
@@ -9096,7 +8486,7 @@
luminosity = 2
},
/area/ai_monitored/nuke_storage)
-"aso" = (
+"aqO" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
on = 1
@@ -9105,11 +8495,11 @@
dir = 4
},
/area/ai_monitored/nuke_storage)
-"asp" = (
+"aqP" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall,
/area/crew_quarters/sleep)
-"asq" = (
+"aqQ" = (
/obj/machinery/door/airlock{
name = "Laundry Room"
},
@@ -9117,13 +8507,13 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/barber,
/area/crew_quarters/sleep)
-"asr" = (
+"aqR" = (
/obj/structure/table,
/obj/effect/spawner/lootdrop/maintenance,
/obj/item/weapon/storage/box/lights/mixed,
/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"ass" = (
+"aqS" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -9134,7 +8524,7 @@
},
/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"ast" = (
+"aqT" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -9147,7 +8537,7 @@
},
/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"asu" = (
+"aqU" = (
/obj/effect/spawner/lootdrop/maintenance,
/obj/structure/cable{
icon_state = "1-8"
@@ -9158,38 +8548,38 @@
},
/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"asv" = (
+"aqV" = (
/turf/open/floor/engine{
name = "Holodeck Projector Floor"
},
/area/holodeck/rec_center)
-"asw" = (
+"aqW" = (
/obj/machinery/mech_bay_recharge_port,
/obj/structure/cable,
/turf/open/floor/plating,
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"asx" = (
+"aqX" = (
/obj/item/clothing/head/collectable/police,
/turf/open/floor/mech_bay_recharge_floor,
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"asy" = (
+"aqY" = (
/obj/machinery/computer/mech_bay_power_console,
/obj/structure/cable,
/turf/open/floor/plasteel,
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"asz" = (
+"aqZ" = (
/obj/structure/chair{
dir = 4
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/labor)
-"asA" = (
+"ara" = (
/obj/structure/chair{
dir = 8
},
@@ -9199,7 +8589,7 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/labor)
-"asB" = (
+"arb" = (
/obj/item/device/radio/intercom{
desc = "Talk through this. It looks like it has been modified to not broadcast.";
dir = 2;
@@ -9214,10 +8604,10 @@
},
/turf/open/floor/plasteel/floorgrime,
/area/security/brig)
-"asC" = (
+"arc" = (
/turf/open/floor/plasteel/floorgrime,
/area/security/brig)
-"asD" = (
+"ard" = (
/obj/machinery/light/small{
dir = 4
},
@@ -9229,11 +8619,11 @@
},
/turf/open/floor/plasteel/floorgrime,
/area/security/brig)
-"asE" = (
+"are" = (
/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/floorgrime,
/area/security/brig)
-"asF" = (
+"arf" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 8
@@ -9247,14 +8637,14 @@
dir = 8
},
/area/security/brig)
-"asG" = (
+"arg" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/red/side{
tag = "icon-red (EAST)";
dir = 4
},
/area/security/brig)
-"asH" = (
+"arh" = (
/obj/structure/table/reinforced,
/obj/machinery/door/window/eastleft{
dir = 8;
@@ -9271,7 +8661,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/brig)
-"asI" = (
+"ari" = (
/obj/machinery/computer/secure_data,
/obj/machinery/button/door{
desc = "A remote control switch for the medbay foyer.";
@@ -9298,22 +8688,22 @@
},
/turf/open/floor/plasteel/black,
/area/security/brig)
-"asJ" = (
+"arj" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/turf/open/floor/plasteel/black,
/area/security/brig)
-"asK" = (
+"ark" = (
/obj/machinery/computer/security,
/turf/open/floor/plasteel/black,
/area/security/brig)
-"asL" = (
+"arl" = (
/turf/closed/wall,
/area/crew_quarters/captain)
-"asM" = (
+"arm" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall,
/area/crew_quarters/captain)
-"asN" = (
+"arn" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -9327,14 +8717,14 @@
},
/turf/open/floor/plating,
/area/maintenance/fore)
-"asO" = (
+"aro" = (
/obj/structure/window/reinforced{
dir = 1;
layer = 2.9
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/captain)
-"asP" = (
+"arp" = (
/obj/machinery/computer/monitor{
name = "Bridge Power Monitoring Console"
},
@@ -9344,7 +8734,7 @@
},
/turf/open/floor/plasteel/darkpurple,
/area/bridge)
-"asQ" = (
+"arq" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -9359,26 +8749,26 @@
dir = 8
},
/area/bridge)
-"asR" = (
+"arr" = (
/turf/open/floor/plasteel/darkblue/side{
tag = "icon-darkblue (EAST)";
dir = 4
},
/area/bridge)
-"asS" = (
+"ars" = (
/obj/structure/chair/comfy/black,
/turf/open/floor/plasteel/black,
/area/bridge)
-"asT" = (
+"art" = (
/turf/open/floor/plasteel/darkblue/side{
dir = 8
},
/area/bridge)
-"asU" = (
+"aru" = (
/obj/machinery/computer/cargo/request,
/turf/open/floor/plasteel/darkyellow,
/area/bridge)
-"asV" = (
+"arv" = (
/obj/structure/closet/emcloset{
anchored = 1;
desc = "It's a storage unit for emergency breath masks and O2 tanks, and is securely bolted in place.";
@@ -9386,17 +8776,17 @@
},
/turf/open/floor/plating,
/area/bridge)
-"asW" = (
+"arw" = (
/turf/open/floor/plating,
/area/bridge)
-"asX" = (
+"arx" = (
/obj/machinery/light/small{
dir = 4
},
/obj/machinery/suit_storage_unit/standard_unit,
/turf/open/floor/plating,
/area/bridge)
-"asY" = (
+"ary" = (
/obj/structure/closet/crate{
name = "Gold Crate"
},
@@ -9419,7 +8809,7 @@
dir = 1
},
/area/ai_monitored/nuke_storage)
-"asZ" = (
+"arz" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -9428,7 +8818,7 @@
luminosity = 2
},
/area/ai_monitored/nuke_storage)
-"ata" = (
+"arA" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -9439,7 +8829,7 @@
luminosity = 2
},
/area/ai_monitored/nuke_storage)
-"atb" = (
+"arB" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9;
pixel_y = 0
@@ -9453,7 +8843,7 @@
luminosity = 2
},
/area/ai_monitored/nuke_storage)
-"atc" = (
+"arC" = (
/obj/item/weapon/coin/silver{
pixel_x = 7;
pixel_y = 12
@@ -9481,7 +8871,7 @@
dir = 4
},
/area/ai_monitored/nuke_storage)
-"atd" = (
+"arD" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/poddoor/shutters/preopen{
@@ -9490,7 +8880,7 @@
},
/turf/open/floor/plating,
/area/crew_quarters/sleep)
-"ate" = (
+"arE" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/nanotrasen,
/obj/machinery/button/door{
@@ -9502,7 +8892,7 @@
},
/turf/open/floor/wood,
/area/crew_quarters/sleep)
-"atf" = (
+"arF" = (
/obj/machinery/light/small{
dir = 1
},
@@ -9519,7 +8909,7 @@
},
/turf/open/floor/wood,
/area/crew_quarters/sleep)
-"atg" = (
+"arG" = (
/obj/machinery/button/door{
id = "Dorm3";
name = "Dorm Bolt Control";
@@ -9533,7 +8923,7 @@
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/wood,
/area/crew_quarters/sleep)
-"ath" = (
+"arH" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -9546,7 +8936,7 @@
dir = 1
},
/area/crew_quarters/sleep)
-"ati" = (
+"arI" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -9562,7 +8952,7 @@
dir = 1
},
/area/crew_quarters/sleep)
-"atj" = (
+"arJ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
@@ -9584,7 +8974,7 @@
dir = 1
},
/area/crew_quarters/sleep)
-"atk" = (
+"arK" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
on = 1;
@@ -9595,7 +8985,7 @@
/area/chapel/main{
name = "Monastery"
})
-"atl" = (
+"arL" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
@@ -9604,24 +8994,24 @@
/area/chapel/main{
name = "Monastery"
})
-"atm" = (
+"arM" = (
/turf/open/floor/plasteel,
/area/crew_quarters/sleep)
-"atn" = (
+"arN" = (
/obj/machinery/firealarm{
dir = 4;
pixel_x = 28
},
/turf/open/floor/plasteel,
/area/crew_quarters/sleep)
-"ato" = (
+"arO" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/crew_quarters/fitness{
name = "Recreation Room"
})
-"atp" = (
+"arP" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -9635,11 +9025,11 @@
/area/crew_quarters/fitness{
name = "Recreation Room"
})
-"atq" = (
+"arQ" = (
/obj/structure/closet/crate,
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/labor)
-"atr" = (
+"arR" = (
/obj/machinery/door/airlock/titanium{
id_tag = "prisonshuttle";
name = "Labor Shuttle Airlock"
@@ -9663,13 +9053,13 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/labor)
-"ats" = (
+"arS" = (
/obj/machinery/door/airlock/external{
name = "Labor Camp Shuttle Airlock"
},
/turf/open/floor/plasteel/black,
/area/security/brig)
-"att" = (
+"arT" = (
/obj/machinery/light/small{
dir = 4
},
@@ -9683,7 +9073,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/brig)
-"atu" = (
+"arU" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet,
/obj/machinery/flasher{
@@ -9692,17 +9082,17 @@
},
/turf/open/floor/plasteel/blue/side,
/area/security/brig)
-"atv" = (
+"arV" = (
/turf/open/floor/plasteel/blue/side,
/area/security/brig)
-"atw" = (
+"arW" = (
/obj/structure/closet/secure_closet/brig{
id = "Cell 2";
name = "Cell 2 Locker"
},
/turf/open/floor/plasteel/blue/side,
/area/security/brig)
-"atx" = (
+"arX" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet,
/obj/machinery/flasher{
@@ -9711,17 +9101,17 @@
},
/turf/open/floor/plasteel/green/side,
/area/security/brig)
-"aty" = (
+"arY" = (
/turf/open/floor/plasteel/green/side,
/area/security/brig)
-"atz" = (
+"arZ" = (
/obj/structure/closet/secure_closet/brig{
id = "Cell 3";
name = "Cell 3 Locker"
},
/turf/open/floor/plasteel/green/side,
/area/security/brig)
-"atA" = (
+"asa" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet,
/obj/machinery/flasher{
@@ -9730,23 +9120,23 @@
},
/turf/open/floor/plasteel/yellow/side,
/area/security/brig)
-"atB" = (
+"asb" = (
/turf/open/floor/plasteel/yellow/side,
/area/security/brig)
-"atC" = (
+"asc" = (
/obj/structure/closet/secure_closet/brig{
id = "Cell 3";
name = "Cell 3 Locker"
},
/turf/open/floor/plasteel/yellow/side,
/area/security/brig)
-"atD" = (
+"asd" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/red/side{
dir = 8
},
/area/security/brig)
-"atE" = (
+"ase" = (
/obj/structure/table/reinforced,
/obj/machinery/door/window/eastleft{
dir = 8;
@@ -9757,7 +9147,7 @@
/obj/item/weapon/restraints/handcuffs,
/turf/open/floor/plasteel/black,
/area/security/brig)
-"atF" = (
+"asf" = (
/obj/structure/chair/office/dark{
dir = 8
},
@@ -9768,7 +9158,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/brig)
-"atG" = (
+"asg" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
tag = "icon-intact (NORTHWEST)";
icon_state = "intact";
@@ -9776,7 +9166,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/brig)
-"atH" = (
+"ash" = (
/obj/structure/chair/office/dark,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
@@ -9786,20 +9176,20 @@
},
/turf/open/floor/plasteel/black,
/area/security/brig)
-"atI" = (
+"asi" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall,
/area/crew_quarters/captain)
-"atJ" = (
+"asj" = (
/obj/structure/toilet{
dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/captain)
-"atK" = (
+"ask" = (
/obj/structure/sink{
pixel_y = 28
},
@@ -9808,7 +9198,7 @@
},
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/captain)
-"atL" = (
+"asl" = (
/obj/machinery/light{
dir = 1
},
@@ -9817,7 +9207,7 @@
},
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/captain)
-"atM" = (
+"asm" = (
/obj/machinery/shower{
dir = 1
},
@@ -9829,11 +9219,11 @@
/obj/structure/curtain,
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/captain)
-"atN" = (
+"asn" = (
/obj/machinery/vending/cigarette,
/turf/open/floor/plating,
/area/maintenance/fore)
-"atO" = (
+"aso" = (
/obj/machinery/door/airlock/command{
name = "Balcony";
req_access = null;
@@ -9841,17 +9231,17 @@
},
/turf/open/floor/plating,
/area/crew_quarters/captain)
-"atP" = (
+"asp" = (
/turf/open/floor/plasteel/vault,
/area/crew_quarters/captain)
-"atQ" = (
+"asq" = (
/obj/structure/chair{
dir = 1
},
/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/vault,
/area/crew_quarters/captain)
-"atR" = (
+"asr" = (
/obj/structure/chair{
dir = 1
},
@@ -9862,7 +9252,7 @@
},
/turf/open/floor/plasteel/vault,
/area/crew_quarters/captain)
-"atS" = (
+"ass" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-20";
layer = 4.1;
@@ -9870,11 +9260,11 @@
},
/turf/open/floor/plasteel/vault,
/area/crew_quarters/captain)
-"atT" = (
+"ast" = (
/obj/machinery/computer/station_alert,
/turf/open/floor/plasteel/darkpurple,
/area/bridge)
-"atU" = (
+"asu" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1;
scrub_N2O = 0;
@@ -9885,7 +9275,7 @@
dir = 4
},
/area/bridge)
-"atV" = (
+"asv" = (
/obj/structure/table/glass,
/obj/item/weapon/storage/box/ids{
pixel_x = 4;
@@ -9894,29 +9284,29 @@
/obj/item/weapon/storage/box/PDAs,
/turf/open/floor/plasteel/black,
/area/bridge)
-"atW" = (
+"asw" = (
/obj/structure/table/glass,
/obj/item/weapon/storage/firstaid/regular,
/turf/open/floor/plasteel/black,
/area/bridge)
-"atX" = (
+"asx" = (
/obj/structure/table/glass,
/obj/item/weapon/storage/toolbox/emergency,
/turf/open/floor/plasteel/black,
/area/bridge)
-"atY" = (
+"asy" = (
/obj/structure/table/glass,
/obj/item/device/aicard,
/turf/open/floor/plasteel/black,
/area/bridge)
-"atZ" = (
+"asz" = (
/obj/structure/table/glass,
/obj/item/weapon/restraints/handcuffs,
/obj/item/device/assembly/flash/handheld,
/obj/item/device/laser_pointer/blue,
/turf/open/floor/plasteel/black,
/area/bridge)
-"aua" = (
+"asA" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
on = 1
},
@@ -9924,11 +9314,11 @@
dir = 8
},
/area/bridge)
-"aub" = (
+"asB" = (
/obj/machinery/computer/security/mining,
/turf/open/floor/plasteel/darkyellow,
/area/bridge)
-"auc" = (
+"asC" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 1;
name = "Bridge External Access";
@@ -9937,12 +9327,12 @@
},
/turf/open/floor/plating,
/area/bridge)
-"aud" = (
+"asD" = (
/obj/structure/window/reinforced/fulltile,
/obj/structure/transit_tube,
/turf/open/floor/plating,
/area/bridge)
-"aue" = (
+"asE" = (
/obj/structure/closet/secure_closet/freezer/money,
/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka,
/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,
@@ -9954,14 +9344,14 @@
dir = 1
},
/area/ai_monitored/nuke_storage)
-"auf" = (
+"asF" = (
/obj/machinery/light,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/nuke_storage)
-"aug" = (
+"asG" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
@@ -9972,7 +9362,7 @@
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/nuke_storage)
-"auh" = (
+"asH" = (
/obj/machinery/camera/motion{
c_tag = "Vault";
dir = 1;
@@ -9984,7 +9374,7 @@
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/nuke_storage)
-"aui" = (
+"asI" = (
/obj/structure/safe,
/obj/item/weapon/bikehorn/golden,
/obj/item/ammo_box/a357,
@@ -9995,19 +9385,19 @@
dir = 4
},
/area/ai_monitored/nuke_storage)
-"auj" = (
+"asJ" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/book/bible,
/turf/open/floor/wood,
/area/crew_quarters/sleep)
-"auk" = (
+"asK" = (
/obj/structure/chair/wood/normal{
icon_state = "wooden_chair";
dir = 8
},
/turf/open/floor/wood,
/area/crew_quarters/sleep)
-"aul" = (
+"asL" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1;
@@ -10018,7 +9408,7 @@
icon_state = "wood-broken7"
},
/area/crew_quarters/sleep)
-"aum" = (
+"asM" = (
/obj/machinery/door/airlock{
id_tag = "Dorm3";
name = "Dorm 3"
@@ -10030,13 +9420,13 @@
dir = 5
},
/area/crew_quarters/sleep)
-"aun" = (
+"asN" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/crew_quarters/sleep)
-"auo" = (
+"asO" = (
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j2";
dir = 2
@@ -10046,20 +9436,20 @@
},
/turf/open/floor/plasteel,
/area/crew_quarters/sleep)
-"aup" = (
+"asP" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/crew_quarters/sleep)
-"auq" = (
+"asQ" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel,
/area/crew_quarters/sleep)
-"aur" = (
+"asR" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
/obj/structure/disposalpipe/segment{
@@ -10069,7 +9459,7 @@
/area/crew_quarters/fitness{
name = "Recreation Room"
})
-"aus" = (
+"asS" = (
/obj/structure/closet/athletic_mixed,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -10080,7 +9470,7 @@
/area/crew_quarters/fitness{
name = "Recreation Room"
})
-"aut" = (
+"asT" = (
/obj/structure/closet/lasertag/blue,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -10094,7 +9484,7 @@
/area/crew_quarters/fitness{
name = "Recreation Room"
})
-"auu" = (
+"asU" = (
/obj/structure/closet/lasertag/red,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -10111,7 +9501,7 @@
/area/crew_quarters/fitness{
name = "Recreation Room"
})
-"auv" = (
+"asV" = (
/obj/machinery/disposal/bin,
/obj/machinery/light{
dir = 1
@@ -10132,7 +9522,7 @@
/area/crew_quarters/fitness{
name = "Recreation Room"
})
-"auw" = (
+"asW" = (
/obj/machinery/vending/clothing,
/turf/open/floor/plasteel/arrival{
dir = 1
@@ -10140,7 +9530,7 @@
/area/crew_quarters/fitness{
name = "Recreation Room"
})
-"aux" = (
+"asX" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-05";
layer = 4.1
@@ -10159,7 +9549,7 @@
/area/crew_quarters/fitness{
name = "Recreation Room"
})
-"auy" = (
+"asY" = (
/obj/machinery/light{
dir = 4;
icon_state = "tube1"
@@ -10182,7 +9572,7 @@
/area/crew_quarters/fitness{
name = "Recreation Room"
})
-"auz" = (
+"asZ" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -10193,7 +9583,7 @@
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"auA" = (
+"ata" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -10204,7 +9594,7 @@
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"auB" = (
+"atb" = (
/obj/effect/spawner/lootdrop/maintenance,
/obj/effect/decal/cleanable/cobweb{
icon_state = "cobweb2"
@@ -10213,7 +9603,7 @@
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"auC" = (
+"atc" = (
/obj/structure/shuttle/engine/heater,
/obj/structure/window/reinforced{
dir = 1;
@@ -10221,7 +9611,7 @@
},
/turf/open/floor/plating,
/area/shuttle/labor)
-"auD" = (
+"atd" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_security{
name = "Labor Camp Shuttle Airlock";
@@ -10229,7 +9619,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/brig)
-"auE" = (
+"ate" = (
/obj/structure/cable{
icon_state = "0-4";
d2 = 4
@@ -10242,7 +9632,7 @@
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/security/brig)
-"auF" = (
+"atf" = (
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
@@ -10259,7 +9649,7 @@
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/security/brig)
-"auG" = (
+"atg" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -10268,7 +9658,7 @@
},
/turf/closed/wall,
/area/security/brig)
-"auH" = (
+"ath" = (
/obj/structure/cable{
icon_state = "0-4";
d2 = 4
@@ -10285,7 +9675,7 @@
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/security/brig)
-"auI" = (
+"ati" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_security{
cyclelinkeddir = 1;
@@ -10304,7 +9694,7 @@
dir = 8
},
/area/security/brig)
-"auJ" = (
+"atj" = (
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
@@ -10318,7 +9708,7 @@
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/security/brig)
-"auK" = (
+"atk" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_security{
cyclelinkeddir = 1;
@@ -10332,7 +9722,7 @@
dir = 4
},
/area/security/brig)
-"auL" = (
+"atl" = (
/obj/structure/table/reinforced,
/obj/machinery/door/window/southleft{
base_state = "right";
@@ -10348,7 +9738,7 @@
/obj/item/device/radio,
/turf/open/floor/plasteel/black,
/area/security/brig)
-"auM" = (
+"atm" = (
/obj/machinery/door/window/southleft{
base_state = "right";
dir = 1;
@@ -10369,7 +9759,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/brig)
-"auN" = (
+"atn" = (
/obj/structure/table/reinforced,
/obj/machinery/door/window/southleft{
base_state = "right";
@@ -10388,10 +9778,10 @@
},
/turf/open/floor/plasteel/black,
/area/security/brig)
-"auO" = (
+"ato" = (
/turf/closed/wall/r_wall,
/area/crew_quarters/captain)
-"auP" = (
+"atp" = (
/obj/machinery/door/airlock{
name = "Private Restroom";
req_access_txt = "0"
@@ -10399,7 +9789,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/captain)
-"auQ" = (
+"atq" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -10415,7 +9805,7 @@
},
/turf/open/floor/plating,
/area/crew_quarters/captain)
-"auR" = (
+"atr" = (
/obj/machinery/light{
dir = 8
},
@@ -10427,7 +9817,7 @@
dir = 8
},
/area/bridge)
-"auS" = (
+"ats" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -10435,26 +9825,26 @@
},
/turf/open/floor/plasteel/black,
/area/bridge)
-"auT" = (
+"att" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/darkblue/side{
tag = "icon-darkblue (EAST)";
dir = 4
},
/area/bridge)
-"auU" = (
+"atu" = (
/obj/structure/chair/comfy/black{
dir = 1
},
/turf/open/floor/plasteel/black,
/area/bridge)
-"auV" = (
+"atv" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/darkblue/side{
dir = 8
},
/area/bridge)
-"auW" = (
+"atw" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/poddoor{
density = 0;
@@ -10467,13 +9857,13 @@
dir = 8
},
/area/bridge)
-"auX" = (
+"atx" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
on = 1
},
/turf/open/floor/plasteel/black,
/area/bridge)
-"auY" = (
+"aty" = (
/obj/machinery/camera{
c_tag = "Bridge MiniSat Access";
dir = 4;
@@ -10487,32 +9877,32 @@
},
/turf/open/floor/plasteel,
/area/bridge)
-"auZ" = (
+"atz" = (
/obj/structure/transit_tube,
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plating,
/area/bridge)
-"ava" = (
+"atA" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/bridge)
-"avb" = (
+"atB" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
/turf/closed/wall/r_wall,
/area/ai_monitored/nuke_storage)
-"avc" = (
+"atC" = (
/obj/structure/sign/securearea,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
/turf/closed/wall/r_wall,
/area/ai_monitored/nuke_storage)
-"avd" = (
+"atD" = (
/obj/machinery/door/airlock/vault{
icon_state = "door_locked";
locked = 1;
@@ -10526,11 +9916,11 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/vault,
/area/ai_monitored/nuke_storage)
-"ave" = (
+"atE" = (
/obj/structure/sign/securearea,
/turf/closed/wall/r_wall,
/area/ai_monitored/nuke_storage)
-"avf" = (
+"atF" = (
/obj/structure/sign/poster{
pixel_x = -32
},
@@ -10540,12 +9930,12 @@
},
/turf/open/floor/plasteel,
/area/crew_quarters/sleep)
-"avg" = (
+"atG" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/carpet,
/area/crew_quarters/sleep)
-"avh" = (
+"atH" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -10553,7 +9943,7 @@
/obj/structure/chair/comfy/brown,
/turf/open/floor/carpet,
/area/crew_quarters/sleep)
-"avi" = (
+"atI" = (
/obj/effect/landmark/start{
name = "Assistant"
},
@@ -10563,38 +9953,38 @@
/obj/structure/chair/comfy/brown,
/turf/open/floor/carpet,
/area/crew_quarters/sleep)
-"avj" = (
+"atJ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/obj/structure/chair/comfy/brown,
/turf/open/floor/carpet,
/area/crew_quarters/sleep)
-"avk" = (
+"atK" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/carpet,
/area/crew_quarters/sleep)
-"avl" = (
+"atL" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
/turf/open/floor/plasteel,
/area/crew_quarters/sleep)
-"avm" = (
+"atM" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
/turf/open/floor/plating,
/area/crew_quarters/fitness{
name = "Recreation Room"
})
-"avn" = (
+"atN" = (
/turf/open/floor/plasteel,
/area/crew_quarters/fitness{
name = "Recreation Room"
})
-"avo" = (
+"atO" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1
},
@@ -10602,7 +9992,7 @@
/area/crew_quarters/fitness{
name = "Recreation Room"
})
-"avp" = (
+"atP" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
name = "Holodeck Door"
@@ -10611,7 +10001,7 @@
/area/crew_quarters/fitness{
name = "Recreation Room"
})
-"avq" = (
+"atQ" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
@@ -10620,7 +10010,7 @@
/area/crew_quarters/fitness{
name = "Recreation Room"
})
-"avr" = (
+"atR" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -10638,43 +10028,43 @@
/area/crew_quarters/fitness{
name = "Recreation Room"
})
-"avs" = (
+"atS" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/maintenance/auxsolarport{
name = "Port Solar Maintenance"
})
-"avt" = (
+"atT" = (
/turf/closed/wall,
/area/maintenance/auxsolarport{
name = "Port Solar Maintenance"
})
-"avu" = (
+"atU" = (
/obj/structure/shuttle/engine/propulsion,
/turf/open/floor/plating,
/area/shuttle/labor)
-"avv" = (
+"atV" = (
/obj/machinery/door/poddoor/preopen{
id = "prison release";
name = "prisoner processing blast door"
},
+/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel{
name = "floor"
},
-/obj/effect/turf_decal/delivery,
/area/security/brig)
-"avw" = (
+"atW" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-10";
layer = 4.1
},
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"avx" = (
+"atX" = (
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"avy" = (
+"atY" = (
/obj/machinery/light{
dir = 1
},
@@ -10683,20 +10073,20 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"avz" = (
+"atZ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"avA" = (
+"aua" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"avB" = (
+"aub" = (
/turf/open/floor/plasteel/red/side{
dir = 4
},
/area/hallway/primary/fore)
-"avC" = (
+"auc" = (
/obj/structure/dresser,
/obj/structure/sign/securearea{
desc = "Under the painting a plaque reads: 'While the meat grinder may not have spared you, fear not. Not one part of you has gone to waste... You were delicious.'";
@@ -10707,7 +10097,7 @@
},
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/captain)
-"avD" = (
+"aud" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
on = 1;
@@ -10716,7 +10106,7 @@
},
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/captain)
-"avE" = (
+"aue" = (
/obj/structure/closet/secure_closet/captains,
/obj/machinery/light{
dir = 1
@@ -10729,11 +10119,11 @@
/obj/item/clothing/head/helmet/knight/blue,
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/captain)
-"avF" = (
+"auf" = (
/obj/machinery/suit_storage_unit/captain,
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/captain)
-"avG" = (
+"aug" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -10747,7 +10137,7 @@
dir = 1
},
/area/crew_quarters/captain)
-"avH" = (
+"auh" = (
/obj/machinery/power/apc{
cell_type = 2500;
dir = 1;
@@ -10760,7 +10150,7 @@
},
/turf/open/floor/carpet,
/area/crew_quarters/captain)
-"avI" = (
+"aui" = (
/obj/structure/table/wood,
/obj/machinery/recharger,
/obj/machinery/requests_console{
@@ -10773,7 +10163,7 @@
},
/turf/open/floor/carpet,
/area/crew_quarters/captain)
-"avJ" = (
+"auj" = (
/obj/machinery/computer/card,
/obj/item/weapon/card/id/captains_spare,
/obj/item/device/radio/intercom{
@@ -10784,18 +10174,18 @@
},
/turf/open/floor/carpet,
/area/crew_quarters/captain)
-"avK" = (
+"auk" = (
/obj/machinery/computer/communications,
/obj/machinery/airalarm{
pixel_y = 22
},
/turf/open/floor/carpet,
/area/crew_quarters/captain)
-"avL" = (
+"aul" = (
/obj/structure/filingcabinet/employment,
/turf/open/floor/carpet,
/area/crew_quarters/captain)
-"avM" = (
+"aum" = (
/obj/structure/extinguisher_cabinet{
pixel_x = -24
},
@@ -10806,7 +10196,7 @@
dir = 8
},
/area/bridge)
-"avN" = (
+"aun" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -10817,32 +10207,32 @@
},
/turf/open/floor/plasteel/black,
/area/bridge)
-"avO" = (
+"auo" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/darkblue/corner,
/area/bridge)
-"avP" = (
+"aup" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/black,
/area/bridge)
-"avQ" = (
+"auq" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/darkblue/side,
/area/bridge)
-"avR" = (
+"aur" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel/darkblue/corner{
dir = 8
},
/area/bridge)
-"avS" = (
+"aus" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
@@ -10851,7 +10241,7 @@
dir = 4
},
/area/bridge)
-"avT" = (
+"aut" = (
/obj/machinery/door/airlock/command{
name = "External Access";
req_access_txt = "0";
@@ -10862,7 +10252,7 @@
},
/turf/open/floor/plasteel/black,
/area/bridge)
-"avU" = (
+"auu" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -10878,11 +10268,11 @@
dir = 8
},
/area/bridge)
-"avV" = (
+"auv" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel/black,
/area/bridge)
-"avW" = (
+"auw" = (
/obj/machinery/door/airlock/command{
name = "MiniSat Access";
req_access_txt = "65"
@@ -10894,30 +10284,30 @@
dir = 5
},
/area/bridge)
-"avX" = (
+"aux" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9;
pixel_y = 0
},
/turf/open/floor/plasteel,
/area/bridge)
-"avY" = (
+"auy" = (
/obj/structure/transit_tube_pod,
/obj/structure/transit_tube/station/reverse{
dir = 8
},
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plating,
/area/bridge)
-"avZ" = (
+"auz" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/hallway/primary/central)
-"awa" = (
+"auA" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -10926,12 +10316,12 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/stairs,
/area/hallway/primary/central)
-"awb" = (
+"auB" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/hallway/primary/central)
-"awc" = (
+"auC" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/poddoor/shutters/preopen{
@@ -10940,7 +10330,7 @@
},
/turf/open/floor/plating,
/area/crew_quarters/sleep)
-"awd" = (
+"auD" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/nanotrasen,
/obj/machinery/button/door{
@@ -10952,7 +10342,7 @@
},
/turf/open/floor/carpet,
/area/crew_quarters/sleep)
-"awe" = (
+"auE" = (
/obj/machinery/light/small{
dir = 1
},
@@ -10969,7 +10359,7 @@
},
/turf/open/floor/carpet,
/area/crew_quarters/sleep)
-"awf" = (
+"auF" = (
/obj/machinery/button/door{
id = "Dorm2";
name = "Dorm Bolt Control";
@@ -10985,21 +10375,21 @@
},
/turf/open/floor/carpet,
/area/crew_quarters/sleep)
-"awg" = (
+"auG" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/crew_quarters/sleep)
-"awh" = (
+"auH" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/carpet,
/area/crew_quarters/sleep)
-"awi" = (
+"auI" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/pill_bottle/dice,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -11008,7 +10398,7 @@
},
/turf/open/floor/carpet,
/area/crew_quarters/sleep)
-"awj" = (
+"auJ" = (
/obj/structure/table/wood,
/obj/item/weapon/pen{
layer = 4
@@ -11021,21 +10411,21 @@
},
/turf/open/floor/carpet,
/area/crew_quarters/sleep)
-"awk" = (
+"auK" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/backpack,
/turf/open/floor/carpet,
/area/crew_quarters/sleep)
-"awl" = (
+"auL" = (
/turf/open/floor/carpet,
/area/crew_quarters/sleep)
-"awm" = (
+"auM" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
/turf/open/floor/plasteel,
/area/crew_quarters/sleep)
-"awn" = (
+"auN" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
name = "Recreation Room"
@@ -11047,7 +10437,7 @@
/area/crew_quarters/fitness{
name = "Recreation Room"
})
-"awo" = (
+"auO" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -11055,7 +10445,7 @@
/area/crew_quarters/fitness{
name = "Recreation Room"
})
-"awp" = (
+"auP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
@@ -11063,13 +10453,13 @@
/area/crew_quarters/fitness{
name = "Recreation Room"
})
-"awq" = (
+"auQ" = (
/obj/machinery/computer/holodeck,
/turf/open/floor/plasteel,
/area/crew_quarters/fitness{
name = "Recreation Room"
})
-"awr" = (
+"auR" = (
/obj/structure/chair{
dir = 8
},
@@ -11082,21 +10472,21 @@
/area/crew_quarters/fitness{
name = "Recreation Room"
})
-"aws" = (
+"auS" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable,
/turf/open/space,
/area/solar/starboard{
name = "Starboard Solar Array"
})
-"awt" = (
+"auT" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable,
/turf/open/space,
/area/solar/port{
name = "Port Solar Array"
})
-"awu" = (
+"auU" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/sign/securearea{
@@ -11111,7 +10501,7 @@
/area/maintenance/auxsolarport{
name = "Port Solar Maintenance"
})
-"awv" = (
+"auV" = (
/obj/machinery/power/solar_control{
id = "portsolar";
name = "Port Solar Control";
@@ -11125,7 +10515,7 @@
/area/maintenance/auxsolarport{
name = "Port Solar Maintenance"
})
-"aww" = (
+"auW" = (
/obj/machinery/light/small{
dir = 1
},
@@ -11133,7 +10523,7 @@
/area/maintenance/auxsolarport{
name = "Port Solar Maintenance"
})
-"awx" = (
+"auX" = (
/obj/structure/cable{
icon_state = "0-2";
d2 = 2
@@ -11148,13 +10538,13 @@
/area/maintenance/auxsolarport{
name = "Port Solar Maintenance"
})
-"awy" = (
+"auY" = (
/obj/structure/closet/firecloset,
/turf/open/floor/plating,
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"awz" = (
+"auZ" = (
/obj/machinery/button/door{
id = "prison release";
name = "Labor Camp Shuttle Lockdown";
@@ -11166,7 +10556,7 @@
dir = 8
},
/area/hallway/primary/fore)
-"awA" = (
+"ava" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
icon_state = "space";
@@ -11177,53 +10567,53 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"awB" = (
+"avb" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
},
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"awC" = (
+"avc" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"awD" = (
+"avd" = (
/obj/machinery/navbeacon{
codes_txt = "patrol;next_patrol=BrigS2";
location = "BrigP"
},
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"awE" = (
+"ave" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1
},
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"awF" = (
+"avf" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"awG" = (
+"avg" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"awH" = (
+"avh" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"awI" = (
+"avi" = (
/obj/machinery/holopad,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -11234,24 +10624,24 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"awJ" = (
+"avj" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
},
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"awK" = (
+"avk" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
on = 1
},
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"awL" = (
+"avl" = (
/obj/item/device/radio/beacon,
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"awM" = (
+"avm" = (
/obj/structure/sign/poster{
pixel_x = 32
},
@@ -11259,28 +10649,28 @@
dir = 4
},
/area/hallway/primary/fore)
-"awN" = (
+"avn" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/captain,
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/captain)
-"awO" = (
+"avo" = (
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/captain)
-"awP" = (
+"avp" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
},
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/captain)
-"awQ" = (
+"avq" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/captain)
-"awR" = (
+"avr" = (
/obj/machinery/door/airlock/command{
name = "Captain's Quarters";
req_access = null;
@@ -11291,7 +10681,7 @@
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/captain)
-"awS" = (
+"avs" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -11304,7 +10694,7 @@
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/captain)
-"awT" = (
+"avt" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -11320,7 +10710,7 @@
},
/turf/open/floor/carpet,
/area/crew_quarters/captain)
-"awU" = (
+"avu" = (
/obj/machinery/door/window{
dir = 8;
name = "Captain's Desk";
@@ -11328,24 +10718,24 @@
},
/turf/open/floor/carpet,
/area/crew_quarters/captain)
-"awV" = (
+"avv" = (
/turf/open/floor/carpet,
/area/crew_quarters/captain)
-"awW" = (
+"avw" = (
/obj/structure/chair/comfy/black,
/obj/effect/landmark/start{
name = "Captain"
},
/turf/open/floor/carpet,
/area/crew_quarters/captain)
-"awX" = (
+"avx" = (
/obj/item/weapon/storage/secure/safe{
pixel_x = 35;
pixel_y = 5
},
/turf/open/floor/carpet,
/area/crew_quarters/captain)
-"awY" = (
+"avy" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -11356,7 +10746,7 @@
dir = 8
},
/area/bridge)
-"awZ" = (
+"avz" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -11372,7 +10762,7 @@
},
/turf/open/floor/plasteel/black,
/area/bridge)
-"axa" = (
+"avA" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -11387,7 +10777,7 @@
},
/turf/open/floor/plasteel/black,
/area/bridge)
-"axb" = (
+"avB" = (
/obj/structure/fireaxecabinet{
pixel_y = -32
},
@@ -11401,7 +10791,7 @@
},
/turf/open/floor/plasteel/black,
/area/bridge)
-"axc" = (
+"avC" = (
/obj/machinery/light,
/obj/structure/cable{
d1 = 4;
@@ -11417,7 +10807,7 @@
},
/turf/open/floor/plasteel/black,
/area/bridge)
-"axd" = (
+"avD" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -11435,7 +10825,7 @@
},
/turf/open/floor/plasteel/black,
/area/bridge)
-"axe" = (
+"avE" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -11453,7 +10843,7 @@
},
/turf/open/floor/plasteel/black,
/area/bridge)
-"axf" = (
+"avF" = (
/obj/machinery/turretid{
control_area = "AI Upload Chamber";
name = "AI Upload turret control";
@@ -11473,7 +10863,7 @@
},
/turf/open/floor/plasteel/black,
/area/bridge)
-"axg" = (
+"avG" = (
/obj/machinery/light,
/obj/structure/cable{
d1 = 4;
@@ -11488,7 +10878,7 @@
},
/turf/open/floor/plasteel/black,
/area/bridge)
-"axh" = (
+"avH" = (
/obj/machinery/power/apc{
cell_type = 10000;
dir = 2;
@@ -11508,7 +10898,7 @@
},
/turf/open/floor/plasteel/black,
/area/bridge)
-"axi" = (
+"avI" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -11525,7 +10915,7 @@
},
/turf/open/floor/plasteel/black,
/area/bridge)
-"axj" = (
+"avJ" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -11542,7 +10932,7 @@
},
/turf/open/floor/plasteel/black,
/area/bridge)
-"axk" = (
+"avK" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -11554,7 +10944,7 @@
dir = 4
},
/area/bridge)
-"axl" = (
+"avL" = (
/obj/machinery/light,
/obj/machinery/camera{
c_tag = "Bridge External Access";
@@ -11568,7 +10958,7 @@
},
/turf/open/floor/plasteel/black,
/area/bridge)
-"axm" = (
+"avM" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1;
scrub_N2O = 0;
@@ -11576,16 +10966,16 @@
},
/turf/open/floor/plasteel,
/area/bridge)
-"axn" = (
-/turf/open/floor/plating,
+"avN" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plating,
/area/bridge)
-"axo" = (
+"avO" = (
/turf/closed/wall/r_wall,
/area/hallway/primary/central)
-"axp" = (
+"avP" = (
/obj/machinery/door/firedoor,
/obj/structure/cable{
d1 = 1;
@@ -11595,19 +10985,19 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"axq" = (
+"avQ" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/book/bible,
/turf/open/floor/carpet,
/area/crew_quarters/sleep)
-"axr" = (
+"avR" = (
/obj/structure/chair/wood/normal{
icon_state = "wooden_chair";
dir = 8
},
/turf/open/floor/carpet,
/area/crew_quarters/sleep)
-"axs" = (
+"avS" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1;
@@ -11616,7 +11006,7 @@
},
/turf/open/floor/carpet,
/area/crew_quarters/sleep)
-"axt" = (
+"avT" = (
/obj/machinery/door/airlock{
id_tag = "Dorm2";
name = "Dorm 2"
@@ -11628,11 +11018,11 @@
dir = 5
},
/area/crew_quarters/sleep)
-"axu" = (
+"avU" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/carpet,
/area/crew_quarters/sleep)
-"axv" = (
+"avV" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/crayons,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -11640,7 +11030,7 @@
},
/turf/open/floor/carpet,
/area/crew_quarters/sleep)
-"axw" = (
+"avW" = (
/obj/structure/table/wood,
/obj/item/device/paicard,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -11648,7 +11038,7 @@
},
/turf/open/floor/carpet,
/area/crew_quarters/sleep)
-"axx" = (
+"avX" = (
/obj/structure/table/wood,
/obj/item/toy/cards/deck{
pixel_x = 2
@@ -11658,19 +11048,19 @@
},
/turf/open/floor/carpet,
/area/crew_quarters/sleep)
-"axy" = (
+"avY" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/carpet,
/area/crew_quarters/sleep)
-"axz" = (
+"avZ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/crew_quarters/sleep)
-"axA" = (
+"awa" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
name = "Recreation Room"
@@ -11682,7 +11072,7 @@
/area/crew_quarters/fitness{
name = "Recreation Room"
})
-"axB" = (
+"awb" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -11690,7 +11080,7 @@
/area/crew_quarters/fitness{
name = "Recreation Room"
})
-"axC" = (
+"awc" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
@@ -11698,7 +11088,7 @@
/area/crew_quarters/fitness{
name = "Recreation Room"
})
-"axD" = (
+"awd" = (
/obj/structure/table,
/obj/item/weapon/paper{
desc = "";
@@ -11709,7 +11099,7 @@
/area/crew_quarters/fitness{
name = "Recreation Room"
})
-"axE" = (
+"awe" = (
/obj/structure/chair{
dir = 8
},
@@ -11726,7 +11116,7 @@
/area/crew_quarters/fitness{
name = "Recreation Room"
})
-"axF" = (
+"awf" = (
/obj/machinery/power/tracker,
/obj/structure/cable{
icon_state = "0-4";
@@ -11736,7 +11126,7 @@
/area/solar/port{
name = "Port Solar Array"
})
-"axG" = (
+"awg" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
d1 = 4;
@@ -11748,7 +11138,7 @@
/area/solar/port{
name = "Port Solar Array"
})
-"axH" = (
+"awh" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
d2 = 8;
@@ -11758,30 +11148,20 @@
/area/solar/port{
name = "Port Solar Array"
})
-"axI" = (
+"awi" = (
/obj/structure/lattice/catwalk,
/obj/item/stack/cable_coil,
/turf/open/space,
/area/solar/starboard{
name = "Starboard Solar Array"
})
-"axJ" = (
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/port{
- name = "Port Solar Array"
- })
-"axK" = (
+"awj" = (
/obj/structure/lattice/catwalk,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
/turf/open/space,
/area/solar/port{
name = "Port Solar Array"
})
-"axL" = (
+"awk" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -11798,7 +11178,7 @@
/area/maintenance/auxsolarport{
name = "Port Solar Maintenance"
})
-"axM" = (
+"awl" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -11809,7 +11189,7 @@
/area/maintenance/auxsolarport{
name = "Port Solar Maintenance"
})
-"axN" = (
+"awm" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -11826,7 +11206,7 @@
/area/maintenance/auxsolarport{
name = "Port Solar Maintenance"
})
-"axO" = (
+"awn" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -11842,7 +11222,7 @@
/area/maintenance/auxsolarport{
name = "Port Solar Maintenance"
})
-"axP" = (
+"awo" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -11852,7 +11232,7 @@
/area/maintenance/auxsolarport{
name = "Port Solar Maintenance"
})
-"axQ" = (
+"awp" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -11869,7 +11249,7 @@
/area/maintenance/auxsolarport{
name = "Port Solar Maintenance"
})
-"axR" = (
+"awq" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -11891,7 +11271,7 @@
/area/maintenance/auxsolarport{
name = "Port Solar Maintenance"
})
-"axS" = (
+"awr" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -11907,7 +11287,7 @@
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"axT" = (
+"aws" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -11921,7 +11301,7 @@
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"axU" = (
+"awt" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -11936,7 +11316,7 @@
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"axV" = (
+"awu" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -11947,13 +11327,13 @@
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"axW" = (
+"awv" = (
/obj/structure/plasticflaps,
/turf/open/floor/plating,
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"axX" = (
+"aww" = (
/mob/living/simple_animal/bot/secbot/beepsky{
name = "Officer Beepsky"
},
@@ -11961,7 +11341,7 @@
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"axY" = (
+"awx" = (
/obj/structure/table,
/obj/machinery/cell_charger,
/obj/item/weapon/stock_parts/cell/potato{
@@ -11975,7 +11355,7 @@
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"axZ" = (
+"awy" = (
/obj/machinery/power/apc{
dir = 8;
name = "Fore Primary Hallway APC";
@@ -11989,7 +11369,7 @@
dir = 8
},
/area/hallway/primary/fore)
-"aya" = (
+"awz" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -11998,7 +11378,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"ayb" = (
+"awA" = (
/obj/machinery/light,
/obj/structure/cable{
d1 = 4;
@@ -12008,7 +11388,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"ayc" = (
+"awB" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -12017,14 +11397,14 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"ayd" = (
+"awC" = (
/obj/machinery/camera{
c_tag = "Fore Primary Hallway Port";
dir = 1
},
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"aye" = (
+"awD" = (
/obj/machinery/door/airlock/centcom{
name = "Monastery Cemetary";
opacity = 1
@@ -12036,13 +11416,13 @@
/area/chapel/main{
name = "Monastery"
})
-"ayf" = (
+"awE" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"ayg" = (
+"awF" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1;
@@ -12050,38 +11430,38 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"ayh" = (
+"awG" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"ayi" = (
+"awH" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"ayj" = (
+"awI" = (
/obj/machinery/navbeacon{
codes_txt = "patrol;next_patrol=Tool";
location = "BrigS2"
},
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"ayk" = (
+"awJ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"ayl" = (
+"awK" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"aym" = (
+"awL" = (
/obj/machinery/light,
/obj/machinery/camera{
c_tag = "Fore Primary Hallway Starboard";
@@ -12093,7 +11473,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"ayn" = (
+"awM" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-14";
layer = 4.1
@@ -12102,12 +11482,12 @@
dir = 4
},
/area/hallway/primary/fore)
-"ayo" = (
+"awN" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp/green,
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/captain)
-"ayp" = (
+"awO" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/box/matches,
/obj/item/weapon/razor{
@@ -12118,22 +11498,22 @@
/obj/item/weapon/reagent_containers/food/drinks/flask/gold,
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/captain)
-"ayq" = (
+"awP" = (
/obj/structure/chair/comfy/brown{
dir = 4
},
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/captain)
-"ayr" = (
+"awQ" = (
/obj/structure/table/wood,
/obj/item/weapon/kitchen/fork,
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/captain)
-"ays" = (
+"awR" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/black,
/area/crew_quarters/captain)
-"ayt" = (
+"awS" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -12142,12 +11522,12 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/carpet,
/area/crew_quarters/captain)
-"ayu" = (
+"awT" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp/green,
/turf/open/floor/carpet,
/area/crew_quarters/captain)
-"ayv" = (
+"awU" = (
/obj/structure/table/wood,
/obj/item/weapon/pen,
/obj/item/weapon/paper_bin{
@@ -12158,11 +11538,11 @@
},
/turf/open/floor/carpet,
/area/crew_quarters/captain)
-"ayw" = (
+"awV" = (
/obj/structure/table/wood,
/turf/open/floor/carpet,
/area/crew_quarters/captain)
-"ayx" = (
+"awW" = (
/obj/structure/table/wood,
/obj/item/weapon/folder/blue,
/obj/item/weapon/stamp/captain,
@@ -12172,7 +11552,7 @@
},
/turf/open/floor/carpet,
/area/crew_quarters/captain)
-"ayy" = (
+"awX" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -12183,14 +11563,14 @@
dir = 8
},
/area/bridge)
-"ayz" = (
+"awY" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/black,
/area/bridge)
-"ayA" = (
+"awZ" = (
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/ai_upload)
-"ayB" = (
+"axa" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/highsecurity{
icon_state = "door_closed";
@@ -12206,14 +11586,14 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/darkblue,
/area/ai_monitored/turret_protected/ai_upload)
-"ayC" = (
+"axb" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8;
initialize_directions = 11
},
/turf/open/floor/plasteel/black,
/area/bridge)
-"ayD" = (
+"axc" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -12228,35 +11608,35 @@
dir = 4
},
/area/bridge)
-"ayE" = (
+"axd" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall/r_wall,
/area/crew_quarters/heads)
-"ayF" = (
+"axe" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/closed/wall/r_wall,
/area/crew_quarters/heads)
-"ayG" = (
+"axf" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
/turf/closed/wall/r_wall,
/area/crew_quarters/heads)
-"ayH" = (
+"axg" = (
/turf/closed/wall/r_wall,
/area/crew_quarters/heads)
-"ayI" = (
+"axh" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"ayJ" = (
+"axi" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"ayK" = (
+"axj" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -12267,31 +11647,31 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"ayL" = (
+"axk" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"ayM" = (
+"axl" = (
/obj/structure/chair,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"ayN" = (
+"axm" = (
/turf/closed/wall,
/area/hallway/primary/central)
-"ayO" = (
+"axn" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/crew_quarters/sleep)
-"ayP" = (
+"axo" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/chair/comfy/brown{
dir = 1
},
/turf/open/floor/carpet,
/area/crew_quarters/sleep)
-"ayQ" = (
+"axp" = (
/obj/effect/landmark/start{
name = "Assistant"
},
@@ -12300,13 +11680,13 @@
},
/turf/open/floor/carpet,
/area/crew_quarters/sleep)
-"ayR" = (
+"axq" = (
/obj/structure/chair/comfy/brown{
dir = 1
},
/turf/open/floor/carpet,
/area/crew_quarters/sleep)
-"ayS" = (
+"axr" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
@@ -12315,7 +11695,7 @@
/area/crew_quarters/fitness{
name = "Recreation Room"
})
-"ayT" = (
+"axs" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1;
@@ -12326,7 +11706,7 @@
/area/crew_quarters/fitness{
name = "Recreation Room"
})
-"ayU" = (
+"axt" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -12339,7 +11719,7 @@
/area/crew_quarters/fitness{
name = "Recreation Room"
})
-"ayV" = (
+"axu" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
icon_state = "0-2";
@@ -12350,7 +11730,7 @@
/area/solar/starboard{
name = "Starboard Solar Array"
})
-"ayW" = (
+"axv" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
icon_state = "0-2";
@@ -12361,7 +11741,7 @@
/area/solar/port{
name = "Port Solar Array"
})
-"ayX" = (
+"axw" = (
/obj/structure/rack,
/obj/item/clothing/mask/gas,
/obj/item/device/multitool,
@@ -12369,7 +11749,7 @@
/area/maintenance/auxsolarport{
name = "Port Solar Maintenance"
})
-"ayY" = (
+"axx" = (
/obj/structure/chair/stool,
/obj/machinery/power/terminal{
dir = 4
@@ -12379,14 +11759,14 @@
/area/maintenance/auxsolarport{
name = "Port Solar Maintenance"
})
-"ayZ" = (
+"axy" = (
/obj/machinery/power/smes,
/obj/structure/cable,
/turf/open/floor/plating,
/area/maintenance/auxsolarport{
name = "Port Solar Maintenance"
})
-"aza" = (
+"axz" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -12401,7 +11781,7 @@
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"azb" = (
+"axA" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -12415,10 +11795,10 @@
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"azc" = (
+"axB" = (
/turf/closed/wall,
/area/security/detectives_office)
-"azd" = (
+"axC" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/poddoor/shutters/preopen{
@@ -12427,7 +11807,7 @@
},
/turf/open/floor/plating,
/area/security/detectives_office)
-"aze" = (
+"axD" = (
/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment,
/obj/machinery/door/airlock/security{
@@ -12438,24 +11818,24 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/grimy,
/area/security/detectives_office)
-"azf" = (
+"axE" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/red/corner{
tag = "icon-redcorner (WEST)";
dir = 8
},
/area/hallway/primary/fore)
-"azg" = (
+"axF" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/red/corner,
/area/hallway/primary/fore)
-"azh" = (
+"axG" = (
/turf/closed/wall,
/area/storage/primary)
-"azi" = (
+"axH" = (
/turf/closed/wall/r_wall,
/area/storage/primary)
-"azj" = (
+"axI" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -12465,7 +11845,7 @@
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/captain)
-"azk" = (
+"axJ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -12478,20 +11858,20 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/black,
/area/crew_quarters/captain)
-"azl" = (
+"axK" = (
/turf/open/floor/plasteel/black,
/area/crew_quarters/captain)
-"azm" = (
+"axL" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel/black,
/area/crew_quarters/captain)
-"azn" = (
+"axM" = (
/obj/structure/chair{
dir = 1
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/captain)
-"azo" = (
+"axN" = (
/obj/machinery/firealarm{
dir = 8;
pixel_x = 26;
@@ -12499,7 +11879,7 @@
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/captain)
-"azp" = (
+"axO" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_command{
cyclelinkeddir = 2;
@@ -12514,7 +11894,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/black,
/area/bridge)
-"azq" = (
+"axP" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_command{
cyclelinkeddir = 2;
@@ -12524,17 +11904,17 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/black,
/area/bridge)
-"azr" = (
+"axQ" = (
/turf/open/floor/plasteel/darkblue/side{
dir = 9
},
/area/ai_monitored/turret_protected/ai_upload)
-"azs" = (
+"axR" = (
/turf/open/floor/plasteel/darkblue/side{
dir = 1
},
/area/ai_monitored/turret_protected/ai_upload)
-"azt" = (
+"axS" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -12545,12 +11925,12 @@
dir = 1
},
/area/ai_monitored/turret_protected/ai_upload)
-"azu" = (
+"axT" = (
/turf/open/floor/plasteel/darkblue/side{
dir = 5
},
/area/ai_monitored/turret_protected/ai_upload)
-"azv" = (
+"axU" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp/green,
/obj/item/weapon/storage/secure/safe{
@@ -12559,15 +11939,15 @@
},
/turf/open/floor/wood,
/area/crew_quarters/heads)
-"azw" = (
+"axV" = (
/obj/machinery/computer/security/mining,
/turf/open/floor/wood,
/area/crew_quarters/heads)
-"azx" = (
+"axW" = (
/obj/machinery/computer/cargo/request,
/turf/open/floor/wood,
/area/crew_quarters/heads)
-"azy" = (
+"axX" = (
/obj/structure/closet/secure_closet/hop,
/obj/machinery/computer/security/telescreen{
desc = "Used for watching the monastery.";
@@ -12578,7 +11958,7 @@
},
/turf/open/floor/wood,
/area/crew_quarters/heads)
-"azz" = (
+"axY" = (
/obj/structure/filingcabinet/chestdrawer{
pixel_y = 2
},
@@ -12595,7 +11975,7 @@
},
/turf/open/floor/wood,
/area/crew_quarters/heads)
-"azA" = (
+"axZ" = (
/obj/machinery/requests_console{
announcementConsole = 1;
department = "Head of Personnel's Desk";
@@ -12608,7 +11988,7 @@
},
/turf/open/floor/wood,
/area/crew_quarters/heads)
-"azB" = (
+"aya" = (
/obj/machinery/status_display{
density = 0;
layer = 4;
@@ -12624,7 +12004,7 @@
/mob/living/simple_animal/pet/dog/corgi/Ian,
/turf/open/floor/wood,
/area/crew_quarters/heads)
-"azC" = (
+"ayb" = (
/obj/machinery/vending/cart{
req_access_txt = "57"
},
@@ -12633,7 +12013,7 @@
},
/turf/open/floor/wood,
/area/crew_quarters/heads)
-"azD" = (
+"ayc" = (
/obj/machinery/power/apc{
cell_type = 5000;
dir = 8;
@@ -12647,7 +12027,7 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"azE" = (
+"ayd" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -12655,11 +12035,11 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"azF" = (
+"aye" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"azG" = (
+"ayf" = (
/obj/structure/table,
/obj/machinery/light{
dir = 4;
@@ -12668,7 +12048,7 @@
/obj/item/weapon/crowbar,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"azH" = (
+"ayg" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/poddoor/shutters/preopen{
@@ -12677,7 +12057,7 @@
},
/turf/open/floor/plating,
/area/crew_quarters/sleep)
-"azI" = (
+"ayh" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/nanotrasen,
/obj/machinery/button/door{
@@ -12689,7 +12069,7 @@
},
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/sleep)
-"azJ" = (
+"ayi" = (
/obj/machinery/light/small{
dir = 1
},
@@ -12706,7 +12086,7 @@
},
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/sleep)
-"azK" = (
+"ayj" = (
/obj/machinery/button/door{
id = "Dorm1";
name = "Dorm Bolt Control";
@@ -12722,52 +12102,52 @@
},
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/sleep)
-"azL" = (
+"ayk" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/crew_quarters/sleep)
-"azM" = (
+"ayl" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
tag = "icon-manifold-b-f (EAST)";
dir = 4
},
/turf/open/floor/plasteel,
/area/crew_quarters/sleep)
-"azN" = (
+"aym" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
on = 1
},
/turf/open/floor/plasteel,
/area/crew_quarters/sleep)
-"azO" = (
+"ayn" = (
/obj/structure/closet/wardrobe/white,
/turf/open/floor/plasteel/arrival,
/area/crew_quarters/fitness{
name = "Recreation Room"
})
-"azP" = (
+"ayo" = (
/obj/structure/closet/wardrobe/mixed,
/turf/open/floor/plasteel/arrival,
/area/crew_quarters/fitness{
name = "Recreation Room"
})
-"azQ" = (
+"ayp" = (
/obj/structure/closet/wardrobe/green,
/turf/open/floor/plasteel/arrival,
/area/crew_quarters/fitness{
name = "Recreation Room"
})
-"azR" = (
+"ayq" = (
/obj/structure/closet/wardrobe/grey,
/obj/machinery/light,
/turf/open/floor/plasteel/arrival,
/area/crew_quarters/fitness{
name = "Recreation Room"
})
-"azS" = (
+"ayr" = (
/obj/structure/closet/wardrobe/black,
/obj/item/clothing/shoes/jackboots,
/obj/item/weapon/storage/backpack,
@@ -12775,7 +12155,7 @@
/area/crew_quarters/fitness{
name = "Recreation Room"
})
-"azT" = (
+"ays" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-05";
layer = 4.1
@@ -12784,7 +12164,7 @@
/area/crew_quarters/fitness{
name = "Recreation Room"
})
-"azU" = (
+"ayt" = (
/obj/machinery/light{
dir = 4;
icon_state = "tube1"
@@ -12804,7 +12184,7 @@
/area/crew_quarters/fitness{
name = "Recreation Room"
})
-"azV" = (
+"ayu" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
d1 = 1;
@@ -12826,7 +12206,7 @@
/area/solar/starboard{
name = "Starboard Solar Array"
})
-"azW" = (
+"ayv" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
d1 = 1;
@@ -12848,7 +12228,7 @@
/area/solar/port{
name = "Port Solar Array"
})
-"azX" = (
+"ayw" = (
/obj/structure/rack,
/obj/item/weapon/crowbar,
/obj/item/weapon/wrench,
@@ -12857,13 +12237,13 @@
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"azY" = (
+"ayx" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plating,
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"azZ" = (
+"ayy" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -12881,7 +12261,7 @@
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"aAa" = (
+"ayz" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -12895,7 +12275,7 @@
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"aAb" = (
+"ayA" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -12909,7 +12289,7 @@
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"aAc" = (
+"ayB" = (
/obj/structure/table/wood,
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-18";
@@ -12918,7 +12298,7 @@
},
/turf/open/floor/plasteel/grimy,
/area/security/detectives_office)
-"aAd" = (
+"ayC" = (
/obj/machinery/light/small{
dir = 1
},
@@ -12929,19 +12309,19 @@
},
/turf/open/floor/plasteel/grimy,
/area/security/detectives_office)
-"aAe" = (
+"ayD" = (
/turf/open/floor/plasteel/grimy,
/area/security/detectives_office)
-"aAf" = (
+"ayE" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/grimy,
/area/security/detectives_office)
-"aAg" = (
+"ayF" = (
/obj/item/weapon/storage/briefcase,
/turf/open/floor/plasteel/grimy,
/area/security/detectives_office)
-"aAh" = (
+"ayG" = (
/obj/machinery/light/small{
dir = 1
},
@@ -12958,7 +12338,7 @@
},
/turf/open/floor/plasteel/grimy,
/area/security/detectives_office)
-"aAi" = (
+"ayH" = (
/obj/structure/closet/secure_closet/detective,
/obj/item/weapon/hand_labeler,
/obj/machinery/airalarm{
@@ -12966,7 +12346,7 @@
},
/turf/open/floor/plasteel/grimy,
/area/security/detectives_office)
-"aAj" = (
+"ayI" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8;
initialize_directions = 11
@@ -12976,7 +12356,7 @@
dir = 8
},
/area/hallway/primary/fore)
-"aAk" = (
+"ayJ" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
on = 1;
@@ -12985,13 +12365,13 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"aAl" = (
+"ayK" = (
/obj/machinery/vending/assist,
/turf/open/floor/plasteel/neutral/side{
dir = 9
},
/area/storage/primary)
-"aAm" = (
+"ayL" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 0;
pixel_y = 30
@@ -13000,7 +12380,7 @@
dir = 1
},
/area/storage/primary)
-"aAn" = (
+"ayM" = (
/obj/structure/table,
/obj/item/weapon/wrench,
/obj/item/device/analyzer,
@@ -13013,7 +12393,7 @@
dir = 1
},
/area/storage/primary)
-"aAo" = (
+"ayN" = (
/obj/structure/table,
/obj/machinery/cell_charger,
/obj/item/weapon/stock_parts/cell/high/plus,
@@ -13030,7 +12410,7 @@
dir = 1
},
/area/storage/primary)
-"aAp" = (
+"ayO" = (
/obj/structure/table,
/obj/item/device/assembly/igniter{
pixel_x = -8;
@@ -13046,7 +12426,7 @@
},
/turf/open/floor/plasteel,
/area/storage/primary)
-"aAq" = (
+"ayP" = (
/obj/structure/table,
/obj/item/device/assembly/signaler,
/obj/item/device/assembly/signaler,
@@ -13061,17 +12441,17 @@
dir = 1
},
/area/storage/primary)
-"aAr" = (
+"ayQ" = (
/obj/machinery/vending/tool,
/turf/open/floor/plasteel/neutral/side{
dir = 5
},
/area/storage/primary)
-"aAs" = (
+"ayR" = (
/obj/structure/displaycase/captain,
/turf/open/floor/plasteel/black,
/area/crew_quarters/captain)
-"aAt" = (
+"ayS" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -13081,7 +12461,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/black,
/area/crew_quarters/captain)
-"aAu" = (
+"ayT" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -13095,7 +12475,7 @@
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/captain)
-"aAv" = (
+"ayU" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -13106,7 +12486,7 @@
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/captain)
-"aAw" = (
+"ayV" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -13125,13 +12505,13 @@
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/captain)
-"aAx" = (
+"ayW" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall/r_wall,
/area/crew_quarters/captain)
-"aAy" = (
+"ayX" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -13143,7 +12523,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/black,
/area/bridge)
-"aAz" = (
+"ayY" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
@@ -13152,7 +12532,7 @@
dir = 8
},
/area/bridge)
-"aAA" = (
+"ayZ" = (
/obj/structure/table,
/obj/item/weapon/aiModule/supplied/quarantine,
/obj/machinery/camera/motion{
@@ -13168,7 +12548,7 @@
dir = 9
},
/area/ai_monitored/turret_protected/ai_upload)
-"aAB" = (
+"aza" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1;
@@ -13179,13 +12559,13 @@
dir = 1
},
/area/ai_monitored/turret_protected/ai_upload)
-"aAC" = (
+"azb" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/ai_upload)
-"aAD" = (
+"azc" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -13196,10 +12576,10 @@
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/ai_upload)
-"aAE" = (
+"azd" = (
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/ai_upload)
-"aAF" = (
+"aze" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
@@ -13209,7 +12589,7 @@
dir = 4
},
/area/ai_monitored/turret_protected/ai_upload)
-"aAG" = (
+"azf" = (
/obj/structure/table,
/obj/item/weapon/aiModule/supplied/freeform,
/obj/machinery/camera/motion{
@@ -13228,13 +12608,13 @@
dir = 5
},
/area/ai_monitored/turret_protected/ai_upload)
-"aAH" = (
+"azg" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/ai_upload)
-"aAI" = (
+"azh" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -13246,7 +12626,7 @@
},
/turf/open/floor/plasteel/black,
/area/bridge)
-"aAJ" = (
+"azi" = (
/obj/structure/table/wood,
/obj/item/weapon/pen{
layer = 4
@@ -13263,7 +12643,7 @@
},
/turf/open/floor/wood,
/area/crew_quarters/heads)
-"aAK" = (
+"azj" = (
/obj/structure/chair/office/dark{
dir = 1
},
@@ -13272,14 +12652,14 @@
},
/turf/open/floor/wood,
/area/crew_quarters/heads)
-"aAL" = (
+"azk" = (
/obj/machinery/holopad,
/turf/open/floor/wood,
/area/crew_quarters/heads)
-"aAM" = (
+"azl" = (
/turf/open/floor/wood,
/area/crew_quarters/heads)
-"aAN" = (
+"azm" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -13291,7 +12671,7 @@
},
/turf/open/floor/wood,
/area/crew_quarters/heads)
-"aAO" = (
+"azn" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -13306,7 +12686,7 @@
},
/turf/open/floor/wood,
/area/crew_quarters/heads)
-"aAP" = (
+"azo" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Head of Personnel";
@@ -13326,7 +12706,7 @@
},
/turf/open/floor/wood,
/area/crew_quarters/heads)
-"aAQ" = (
+"azp" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -13346,7 +12726,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aAR" = (
+"azq" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -13361,7 +12741,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aAS" = (
+"azr" = (
/obj/machinery/holopad,
/obj/structure/cable{
d1 = 1;
@@ -13385,31 +12765,31 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aAT" = (
+"azs" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aAU" = (
+"azt" = (
/obj/structure/chair{
dir = 1
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aAV" = (
+"azu" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/book/bible,
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/sleep)
-"aAW" = (
+"azv" = (
/obj/structure/chair/wood/normal{
icon_state = "wooden_chair";
dir = 8
},
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/sleep)
-"aAX" = (
+"azw" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1;
@@ -13418,7 +12798,7 @@
},
/turf/open/floor/plasteel/grimy,
/area/crew_quarters/sleep)
-"aAY" = (
+"azx" = (
/obj/machinery/door/airlock{
id_tag = "Dorm1";
name = "Dorm 1"
@@ -13430,17 +12810,17 @@
dir = 5
},
/area/crew_quarters/sleep)
-"aAZ" = (
+"azy" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel,
/area/crew_quarters/sleep)
-"aBa" = (
+"azz" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
/turf/open/floor/plasteel,
/area/crew_quarters/sleep)
-"aBb" = (
+"azA" = (
/obj/machinery/light,
/obj/machinery/camera{
c_tag = "Dormitories Aft";
@@ -13457,23 +12837,23 @@
},
/turf/open/floor/plasteel/white/corner,
/area/crew_quarters/sleep)
-"aBc" = (
+"azB" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/white/side,
/area/crew_quarters/sleep)
-"aBd" = (
+"azC" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4;
initialize_directions = 11
},
/turf/open/floor/plasteel/white/side,
/area/crew_quarters/sleep)
-"aBe" = (
+"azD" = (
/turf/open/floor/plasteel/white/side,
/area/crew_quarters/sleep)
-"aBf" = (
+"azE" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -13487,7 +12867,7 @@
/area/crew_quarters/fitness{
name = "Recreation Room"
})
-"aBg" = (
+"azF" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -13501,21 +12881,21 @@
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"aBh" = (
+"azG" = (
/obj/structure/grille/broken,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"aBi" = (
+"azH" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 4
},
/turf/open/floor/plasteel/grimy,
/area/security/detectives_office)
-"aBj" = (
+"azI" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -13527,7 +12907,7 @@
},
/turf/open/floor/plasteel/grimy,
/area/security/detectives_office)
-"aBk" = (
+"azJ" = (
/obj/structure/chair,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -13537,7 +12917,7 @@
},
/turf/open/floor/plasteel/grimy,
/area/security/detectives_office)
-"aBl" = (
+"azK" = (
/obj/structure/chair,
/obj/structure/disposalpipe/junction{
icon_state = "pipe-y";
@@ -13548,13 +12928,13 @@
},
/turf/open/floor/plasteel/grimy,
/area/security/detectives_office)
-"aBm" = (
+"azL" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel/grimy,
/area/security/detectives_office)
-"aBn" = (
+"azM" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -13564,7 +12944,7 @@
},
/turf/open/floor/plasteel/grimy,
/area/security/detectives_office)
-"aBo" = (
+"azN" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/firealarm{
dir = 4;
@@ -13575,7 +12955,7 @@
dir = 8
},
/area/hallway/primary/fore)
-"aBp" = (
+"azO" = (
/obj/structure/cable{
icon_state = "0-4";
d2 = 4
@@ -13590,7 +12970,7 @@
dir = 8
},
/area/storage/primary)
-"aBq" = (
+"azP" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -13598,16 +12978,16 @@
},
/turf/open/floor/plasteel,
/area/storage/primary)
-"aBr" = (
+"azQ" = (
/obj/effect/landmark/start{
name = "Assistant"
},
/turf/open/floor/plasteel,
/area/storage/primary)
-"aBs" = (
+"azR" = (
/turf/open/floor/plasteel,
/area/storage/primary)
-"aBt" = (
+"azS" = (
/obj/machinery/firealarm{
dir = 4;
pixel_x = 28
@@ -13616,14 +12996,14 @@
dir = 4
},
/area/storage/primary)
-"aBu" = (
+"azT" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/lockbox/medal{
pixel_y = 0
},
/turf/open/floor/carpet,
/area/crew_quarters/captain)
-"aBv" = (
+"azU" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -13633,7 +13013,7 @@
},
/turf/open/floor/carpet,
/area/crew_quarters/captain)
-"aBw" = (
+"azV" = (
/obj/structure/chair/comfy/brown,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -13643,7 +13023,7 @@
},
/turf/open/floor/carpet,
/area/crew_quarters/captain)
-"aBx" = (
+"azW" = (
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j1";
dir = 4
@@ -13654,7 +13034,7 @@
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/captain)
-"aBy" = (
+"azX" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -13668,7 +13048,7 @@
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/captain)
-"aBz" = (
+"azY" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Captain's Office";
@@ -13688,7 +13068,7 @@
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/captain)
-"aBA" = (
+"azZ" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -13711,14 +13091,14 @@
dir = 4
},
/area/bridge)
-"aBB" = (
+"aAa" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/darkblue/corner{
tag = "icon-darkbluecorners (WEST)";
dir = 8
},
/area/bridge)
-"aBC" = (
+"aAb" = (
/obj/machinery/porta_turret/ai{
dir = 8
},
@@ -13726,7 +13106,7 @@
dir = 8
},
/area/ai_monitored/turret_protected/ai_upload)
-"aBD" = (
+"aAc" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -13734,7 +13114,7 @@
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/ai_upload)
-"aBE" = (
+"aAd" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -13744,7 +13124,7 @@
},
/turf/open/floor/bluegrid,
/area/ai_monitored/turret_protected/ai_upload)
-"aBF" = (
+"aAe" = (
/obj/machinery/holopad,
/obj/machinery/camera/motion{
c_tag = "AI Upload Center";
@@ -13764,10 +13144,10 @@
},
/turf/open/floor/bluegrid,
/area/ai_monitored/turret_protected/ai_upload)
-"aBG" = (
+"aAf" = (
/turf/open/floor/bluegrid,
/area/ai_monitored/turret_protected/ai_upload)
-"aBH" = (
+"aAg" = (
/obj/machinery/porta_turret/ai{
dir = 8
},
@@ -13779,11 +13159,11 @@
dir = 4
},
/area/ai_monitored/turret_protected/ai_upload)
-"aBI" = (
+"aAh" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/darkblue/corner,
/area/bridge)
-"aBJ" = (
+"aAi" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -13800,7 +13180,7 @@
dir = 1
},
/area/bridge)
-"aBK" = (
+"aAj" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -13823,7 +13203,7 @@
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/heads)
-"aBL" = (
+"aAk" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -13839,7 +13219,7 @@
},
/turf/open/floor/wood,
/area/crew_quarters/heads)
-"aBM" = (
+"aAl" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -13853,7 +13233,7 @@
},
/turf/open/floor/wood,
/area/crew_quarters/heads)
-"aBN" = (
+"aAm" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -13872,7 +13252,7 @@
},
/turf/open/floor/wood,
/area/crew_quarters/heads)
-"aBO" = (
+"aAn" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -13887,7 +13267,7 @@
},
/turf/open/floor/wood,
/area/crew_quarters/heads)
-"aBP" = (
+"aAo" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -13898,7 +13278,7 @@
},
/turf/open/floor/carpet,
/area/crew_quarters/heads)
-"aBQ" = (
+"aAp" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -13915,7 +13295,7 @@
},
/turf/open/floor/carpet,
/area/crew_quarters/heads)
-"aBR" = (
+"aAq" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -13932,7 +13312,7 @@
},
/turf/open/floor/carpet,
/area/crew_quarters/heads)
-"aBS" = (
+"aAr" = (
/obj/machinery/power/apc{
dir = 4;
name = "Head of Personnel APC";
@@ -13945,10 +13325,10 @@
},
/turf/open/floor/carpet,
/area/crew_quarters/heads)
-"aBT" = (
+"aAs" = (
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aBU" = (
+"aAt" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -13957,23 +13337,23 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aBV" = (
+"aAu" = (
/obj/machinery/newscaster{
pixel_x = 32;
pixel_y = 1
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aBW" = (
+"aAv" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/crew_quarters/sleep)
-"aBX" = (
+"aAw" = (
/turf/closed/wall,
/area/crew_quarters/locker/locker_toilet{
name = "\improper Restrooms"
})
-"aBY" = (
+"aAx" = (
/obj/machinery/door/airlock{
name = "Unisex Restrooms";
req_access_txt = "0"
@@ -13983,7 +13363,7 @@
/area/crew_quarters/locker/locker_toilet{
name = "\improper Restrooms"
})
-"aBZ" = (
+"aAy" = (
/obj/structure/urinal{
pixel_y = 32
},
@@ -13995,7 +13375,7 @@
/area/crew_quarters/locker/locker_toilet{
name = "\improper Restrooms"
})
-"aCa" = (
+"aAz" = (
/obj/structure/urinal{
pixel_y = 32
},
@@ -14003,7 +13383,7 @@
/area/crew_quarters/locker/locker_toilet{
name = "\improper Restrooms"
})
-"aCb" = (
+"aAA" = (
/obj/structure/urinal{
pixel_y = 32
},
@@ -14017,7 +13397,7 @@
/area/crew_quarters/locker/locker_toilet{
name = "\improper Restrooms"
})
-"aCc" = (
+"aAB" = (
/obj/effect/landmark{
name = "blobstart"
},
@@ -14026,10 +13406,10 @@
/area/crew_quarters/locker/locker_toilet{
name = "\improper Restrooms"
})
-"aCd" = (
+"aAC" = (
/turf/closed/wall,
/area/maintenance/apmaint)
-"aCe" = (
+"aAD" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -14038,7 +13418,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aCf" = (
+"aAE" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp{
pixel_x = 3;
@@ -14051,7 +13431,7 @@
},
/turf/open/floor/carpet,
/area/security/detectives_office)
-"aCg" = (
+"aAF" = (
/obj/structure/table/wood,
/obj/item/weapon/pen,
/obj/item/weapon/paper_bin{
@@ -14062,19 +13442,19 @@
},
/turf/open/floor/carpet,
/area/security/detectives_office)
-"aCh" = (
+"aAG" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/fancy/cigarettes,
/obj/item/weapon/lighter,
/obj/item/clothing/glasses/hud/security/sunglasses,
/turf/open/floor/carpet,
/area/security/detectives_office)
-"aCi" = (
+"aAH" = (
/obj/structure/table/wood,
/obj/machinery/computer/security/wooden_tv,
/turf/open/floor/carpet,
/area/security/detectives_office)
-"aCj" = (
+"aAI" = (
/obj/structure/table/wood,
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -14090,7 +13470,7 @@
},
/turf/open/floor/carpet,
/area/security/detectives_office)
-"aCk" = (
+"aAJ" = (
/obj/machinery/power/apc{
dir = 4;
name = "Detective's Office APC";
@@ -14103,12 +13483,12 @@
},
/turf/open/floor/plasteel/grimy,
/area/security/detectives_office)
-"aCl" = (
+"aAK" = (
/turf/closed/wall,
/area/maintenance/port{
name = "Monastery Maintenance"
})
-"aCm" = (
+"aAL" = (
/obj/structure/table,
/obj/item/weapon/storage/toolbox/electrical{
pixel_x = 2;
@@ -14124,7 +13504,7 @@
dir = 8
},
/area/storage/primary)
-"aCn" = (
+"aAM" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -14135,13 +13515,13 @@
},
/turf/open/floor/plasteel,
/area/storage/primary)
-"aCo" = (
+"aAN" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1
},
/turf/open/floor/plasteel,
/area/storage/primary)
-"aCp" = (
+"aAO" = (
/obj/structure/table,
/obj/item/weapon/storage/toolbox/mechanical{
pixel_x = 2;
@@ -14157,7 +13537,7 @@
dir = 4
},
/area/storage/primary)
-"aCq" = (
+"aAP" = (
/obj/structure/table/wood,
/obj/item/weapon/pinpointer,
/obj/item/weapon/disk/nuclear,
@@ -14166,17 +13546,17 @@
},
/turf/open/floor/carpet,
/area/crew_quarters/captain)
-"aCr" = (
+"aAQ" = (
/obj/structure/table/wood,
/obj/item/weapon/hand_tele,
/turf/open/floor/carpet,
/area/crew_quarters/captain)
-"aCs" = (
+"aAR" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/photo_album,
/turf/open/floor/carpet,
/area/crew_quarters/captain)
-"aCt" = (
+"aAS" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
@@ -14184,7 +13564,7 @@
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/captain)
-"aCu" = (
+"aAT" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -14196,7 +13576,7 @@
dir = 4
},
/area/bridge)
-"aCv" = (
+"aAU" = (
/obj/machinery/light{
dir = 4
},
@@ -14211,7 +13591,7 @@
dir = 8
},
/area/bridge)
-"aCw" = (
+"aAV" = (
/obj/structure/table,
/obj/item/weapon/aiModule/core/full/asimov,
/obj/item/weapon/aiModule/core/freeformcore,
@@ -14236,7 +13616,7 @@
dir = 10
},
/area/ai_monitored/turret_protected/ai_upload)
-"aCx" = (
+"aAW" = (
/obj/machinery/light,
/obj/machinery/power/apc{
cell_type = 5000;
@@ -14247,7 +13627,7 @@
/obj/structure/cable,
/turf/open/floor/plasteel/darkblue/side,
/area/ai_monitored/turret_protected/ai_upload)
-"aCy" = (
+"aAX" = (
/obj/machinery/computer/upload/ai,
/obj/machinery/flasher{
id = "AI";
@@ -14256,7 +13636,7 @@
},
/turf/open/floor/bluegrid,
/area/ai_monitored/turret_protected/ai_upload)
-"aCz" = (
+"aAY" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -14273,7 +13653,7 @@
/area/maintenance/port{
name = "Monastery Maintenance"
})
-"aCA" = (
+"aAZ" = (
/obj/machinery/computer/upload/borg,
/obj/machinery/flasher{
id = "AI";
@@ -14282,7 +13662,7 @@
},
/turf/open/floor/bluegrid,
/area/ai_monitored/turret_protected/ai_upload)
-"aCB" = (
+"aBa" = (
/obj/machinery/light,
/obj/machinery/airalarm{
dir = 1;
@@ -14290,7 +13670,7 @@
},
/turf/open/floor/plasteel/darkblue/side,
/area/ai_monitored/turret_protected/ai_upload)
-"aCC" = (
+"aBb" = (
/obj/structure/table,
/obj/item/weapon/aiModule/supplied/oxygen,
/obj/item/weapon/aiModule/zeroth/oneHuman,
@@ -14316,7 +13696,7 @@
dir = 6
},
/area/ai_monitored/turret_protected/ai_upload)
-"aCD" = (
+"aBc" = (
/obj/machinery/light{
dir = 8
},
@@ -14327,21 +13707,21 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/darkblue/corner,
/area/bridge)
-"aCE" = (
+"aBd" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/darkblue/corner{
dir = 1
},
/area/bridge)
-"aCF" = (
+"aBe" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 1
},
/turf/open/floor/wood,
/area/crew_quarters/heads)
-"aCG" = (
+"aBf" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-24";
layer = 4.1
@@ -14353,7 +13733,7 @@
},
/turf/open/floor/wood,
/area/crew_quarters/heads)
-"aCH" = (
+"aBg" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/box/PDAs{
pixel_x = 4;
@@ -14363,11 +13743,11 @@
/obj/item/weapon/storage/box/ids,
/turf/open/floor/wood,
/area/crew_quarters/heads)
-"aCI" = (
+"aBh" = (
/obj/machinery/computer/secure_data,
/turf/open/floor/carpet,
/area/crew_quarters/heads)
-"aCJ" = (
+"aBi" = (
/obj/machinery/computer/card,
/obj/structure/cable{
d1 = 1;
@@ -14376,7 +13756,7 @@
},
/turf/open/floor/carpet,
/area/crew_quarters/heads)
-"aCK" = (
+"aBj" = (
/obj/structure/chair/office/dark,
/obj/machinery/button/flasher{
id = "hopflash";
@@ -14403,7 +13783,7 @@
},
/turf/open/floor/carpet,
/area/crew_quarters/heads)
-"aCL" = (
+"aBk" = (
/obj/structure/table/wood,
/obj/item/weapon/stamp/hop{
pixel_x = -4;
@@ -14423,7 +13803,7 @@
},
/turf/open/floor/carpet,
/area/crew_quarters/heads)
-"aCM" = (
+"aBl" = (
/obj/machinery/camera{
c_tag = "Central Primary Hallway Vault";
dir = 4
@@ -14436,34 +13816,34 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aCN" = (
+"aBm" = (
/turf/closed/wall,
/area/storage/emergency)
-"aCO" = (
+"aBn" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/turf/open/floor/plating,
/area/storage/emergency)
-"aCP" = (
+"aBo" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating,
/area/storage/emergency)
-"aCQ" = (
+"aBp" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/crew_quarters/sleep)
-"aCR" = (
+"aBq" = (
/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel,
/area/crew_quarters/sleep)
-"aCS" = (
+"aBr" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/crew_quarters/sleep)
-"aCT" = (
+"aBs" = (
/obj/structure/sink{
icon_state = "sink";
dir = 8;
@@ -14477,13 +13857,13 @@
/area/crew_quarters/locker/locker_toilet{
name = "\improper Restrooms"
})
-"aCU" = (
+"aBt" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/locker/locker_toilet{
name = "\improper Restrooms"
})
-"aCV" = (
+"aBu" = (
/obj/machinery/light_switch{
pixel_y = 25
},
@@ -14491,12 +13871,12 @@
/area/crew_quarters/locker/locker_toilet{
name = "\improper Restrooms"
})
-"aCW" = (
+"aBv" = (
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/locker/locker_toilet{
name = "\improper Restrooms"
})
-"aCX" = (
+"aBw" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1
},
@@ -14505,7 +13885,7 @@
/area/crew_quarters/locker/locker_toilet{
name = "\improper Restrooms"
})
-"aCY" = (
+"aBx" = (
/obj/machinery/light{
dir = 4;
icon_state = "tube1"
@@ -14514,34 +13894,34 @@
/area/crew_quarters/locker/locker_toilet{
name = "\improper Restrooms"
})
-"aCZ" = (
+"aBy" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aDa" = (
+"aBz" = (
/obj/structure/bodycontainer/morgue,
/obj/effect/landmark{
name = "revenantspawn"
},
/turf/open/floor/plasteel/black,
/area/security/detectives_office)
-"aDb" = (
+"aBA" = (
/obj/machinery/light/small{
dir = 1
},
/turf/open/floor/plasteel/black,
/area/security/detectives_office)
-"aDc" = (
+"aBB" = (
/obj/item/weapon/storage/secure/safe{
pixel_x = -22
},
/turf/open/floor/carpet,
/area/security/detectives_office)
-"aDd" = (
+"aBC" = (
/turf/open/floor/carpet,
/area/security/detectives_office)
-"aDe" = (
+"aBD" = (
/obj/structure/chair/comfy/brown{
buildstackamount = 0;
dir = 1
@@ -14551,14 +13931,14 @@
},
/turf/open/floor/carpet,
/area/security/detectives_office)
-"aDf" = (
+"aBE" = (
/obj/structure/table/wood,
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/item/device/taperecorder,
/turf/open/floor/carpet,
/area/security/detectives_office)
-"aDg" = (
+"aBF" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -14568,7 +13948,7 @@
},
/turf/open/floor/plasteel/grimy,
/area/security/detectives_office)
-"aDh" = (
+"aBG" = (
/obj/machinery/camera{
c_tag = "Fore Primary Hallway Entrance";
dir = 4
@@ -14579,7 +13959,7 @@
dir = 8
},
/area/hallway/primary/fore)
-"aDi" = (
+"aBH" = (
/obj/structure/table,
/obj/item/stack/cable_coil{
pixel_x = 3;
@@ -14591,7 +13971,7 @@
dir = 8
},
/area/storage/primary)
-"aDj" = (
+"aBI" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -14600,11 +13980,11 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/storage/primary)
-"aDk" = (
+"aBJ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/storage/primary)
-"aDl" = (
+"aBK" = (
/obj/structure/table,
/obj/item/weapon/weldingtool,
/obj/item/weapon/crowbar,
@@ -14614,25 +13994,25 @@
dir = 4
},
/area/storage/primary)
-"aDm" = (
+"aBL" = (
/obj/structure/table/wood,
/obj/item/device/camera,
/turf/open/floor/carpet,
/area/crew_quarters/captain)
-"aDn" = (
+"aBM" = (
/obj/structure/chair/comfy/brown{
dir = 1
},
/turf/open/floor/carpet,
/area/crew_quarters/captain)
-"aDo" = (
+"aBN" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/darkblue/side,
/area/crew_quarters/captain)
-"aDp" = (
+"aBO" = (
/turf/open/floor/plasteel/darkblue/side,
/area/crew_quarters/captain)
-"aDq" = (
+"aBP" = (
/obj/structure/grille,
/obj/machinery/door/poddoor/shutters/preopen{
id = "hop";
@@ -14647,7 +14027,7 @@
},
/turf/open/floor/plating,
/area/crew_quarters/heads)
-"aDr" = (
+"aBQ" = (
/obj/structure/table/reinforced,
/obj/machinery/door/window/brigdoor{
base_state = "rightsecure";
@@ -14673,11 +14053,11 @@
},
/turf/open/floor/plasteel,
/area/crew_quarters/heads)
-"aDs" = (
+"aBR" = (
/obj/machinery/vending/snack,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aDt" = (
+"aBS" = (
/obj/item/weapon/extinguisher,
/obj/machinery/power/apc{
dir = 8;
@@ -14692,14 +14072,14 @@
},
/turf/open/floor/plating,
/area/storage/emergency)
-"aDu" = (
+"aBT" = (
/obj/item/weapon/storage/box/lights/mixed,
/obj/machinery/light/small{
dir = 4
},
/turf/open/floor/plating,
/area/storage/emergency)
-"aDv" = (
+"aBU" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
@@ -14708,7 +14088,7 @@
/area/crew_quarters/locker/locker_toilet{
name = "\improper Restrooms"
})
-"aDw" = (
+"aBV" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -14721,13 +14101,13 @@
/area/crew_quarters/locker/locker_toilet{
name = "\improper Restrooms"
})
-"aDx" = (
+"aBW" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall,
/area/maintenance/port{
name = "Monastery Maintenance"
})
-"aDy" = (
+"aBX" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -14741,7 +14121,7 @@
/area/crew_quarters/locker/locker_toilet{
name = "\improper Restrooms"
})
-"aDz" = (
+"aBY" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -14753,7 +14133,7 @@
/area/crew_quarters/locker/locker_toilet{
name = "\improper Restrooms"
})
-"aDA" = (
+"aBZ" = (
/obj/machinery/door/airlock{
name = "Unisex Showers";
req_access_txt = "0"
@@ -14771,7 +14151,7 @@
/area/crew_quarters/locker/locker_toilet{
name = "\improper Restrooms"
})
-"aDB" = (
+"aCa" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -14788,7 +14168,7 @@
/area/crew_quarters/locker/locker_toilet{
name = "\improper Restrooms"
})
-"aDC" = (
+"aCb" = (
/obj/machinery/shower{
dir = 8
},
@@ -14804,12 +14184,12 @@
/area/crew_quarters/locker/locker_toilet{
name = "\improper Restrooms"
})
-"aDD" = (
+"aCc" = (
/obj/structure/table,
/obj/machinery/microwave,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aDE" = (
+"aCd" = (
/obj/structure/sign/poster{
pixel_x = 0;
pixel_y = 32
@@ -14817,13 +14197,13 @@
/obj/effect/decal/cleanable/vomit/old,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aDF" = (
+"aCe" = (
/obj/structure/sink/kitchen{
pixel_y = 28
},
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aDG" = (
+"aCf" = (
/obj/structure/table,
/obj/item/weapon/reagent_containers/glass/bowl,
/obj/item/weapon/reagent_containers/glass/bowl,
@@ -14836,37 +14216,37 @@
},
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aDH" = (
+"aCg" = (
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aDI" = (
+"aCh" = (
/turf/closed/wall/mineral/titanium,
/area/shuttle/escape)
-"aDJ" = (
+"aCi" = (
/obj/structure/grille,
/obj/structure/window/shuttle,
/turf/open/floor/plating,
/area/shuttle/escape)
-"aDK" = (
+"aCj" = (
/obj/structure/table,
/obj/item/weapon/storage/box/bodybags,
/obj/item/weapon/pen,
/turf/open/floor/plasteel/black,
/area/security/detectives_office)
-"aDL" = (
+"aCk" = (
/turf/open/floor/plasteel/black,
/area/security/detectives_office)
-"aDM" = (
+"aCl" = (
/obj/machinery/door/morgue{
name = "Morgue"
},
/turf/open/floor/plasteel/black,
/area/security/detectives_office)
-"aDN" = (
+"aCm" = (
/obj/machinery/computer/med_data,
/turf/open/floor/carpet,
/area/security/detectives_office)
-"aDO" = (
+"aCn" = (
/obj/machinery/computer/secure_data,
/obj/machinery/light,
/obj/machinery/camera{
@@ -14875,7 +14255,7 @@
},
/turf/open/floor/carpet,
/area/security/detectives_office)
-"aDP" = (
+"aCo" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -14885,7 +14265,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/carpet,
/area/security/detectives_office)
-"aDQ" = (
+"aCp" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -14893,7 +14273,7 @@
},
/turf/open/floor/plasteel/grimy,
/area/security/detectives_office)
-"aDR" = (
+"aCq" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
name = "Central Access"
@@ -14901,14 +14281,14 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"aDS" = (
+"aCr" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
name = "Central Access"
},
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"aDT" = (
+"aCs" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
name = "Central Access"
@@ -14916,7 +14296,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"aDU" = (
+"aCt" = (
/obj/structure/rack,
/obj/item/weapon/wirecutters,
/obj/item/device/flashlight,
@@ -14925,11 +14305,11 @@
dir = 10
},
/area/storage/primary)
-"aDV" = (
+"aCu" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plasteel/neutral/side,
/area/storage/primary)
-"aDW" = (
+"aCv" = (
/obj/structure/table,
/obj/item/weapon/crowbar,
/obj/item/device/assembly/prox_sensor{
@@ -14942,23 +14322,23 @@
/obj/item/device/radio,
/turf/open/floor/plasteel/neutral/side,
/area/storage/primary)
-"aDX" = (
+"aCw" = (
/obj/structure/table,
/obj/item/weapon/storage/firstaid/regular,
/obj/item/weapon/reagent_containers/glass/beaker,
/turf/open/floor/plasteel/neutral/side,
/area/storage/primary)
-"aDY" = (
+"aCx" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plasteel/neutral/side,
/area/storage/primary)
-"aDZ" = (
+"aCy" = (
/obj/machinery/disposal/bin,
/turf/open/floor/plasteel/neutral/side{
dir = 6
},
/area/storage/primary)
-"aEa" = (
+"aCz" = (
/obj/machinery/vending/boozeomat{
products = list(/obj/item/weapon/reagent_containers/food/drinks/bottle/rum = 1, /obj/item/weapon/reagent_containers/food/drinks/bottle/wine = 1, /obj/item/weapon/reagent_containers/food/drinks/ale = 1, /obj/item/weapon/reagent_containers/food/drinks/drinkingglass = 6, /obj/item/weapon/reagent_containers/food/drinks/ice = 1, /obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass = 4);
req_access_txt = "20"
@@ -14967,7 +14347,7 @@
dir = 5
},
/area/crew_quarters/captain)
-"aEb" = (
+"aCA" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 1
@@ -14976,13 +14356,13 @@
dir = 8
},
/area/crew_quarters/captain)
-"aEc" = (
+"aCB" = (
/obj/machinery/computer/arcade,
/turf/open/floor/plasteel/vault{
dir = 8
},
/area/crew_quarters/captain)
-"aEd" = (
+"aCC" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-09";
name = "Photosynthetic Potted plant";
@@ -14990,32 +14370,32 @@
},
/turf/open/floor/plating/airless,
/area/space)
-"aEe" = (
+"aCD" = (
/obj/machinery/vending/cola,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aEf" = (
+"aCE" = (
/obj/machinery/light/small{
dir = 1
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/bot,
-/area/hallway/primary/central)
-"aEg" = (
/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aCF" = (
/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aEh" = (
+"aCG" = (
/obj/machinery/flasher{
id = "hopflash";
pixel_x = 28;
pixel_y = -28
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aEi" = (
+"aCH" = (
/obj/structure/table,
/obj/item/weapon/pen,
/obj/item/weapon/paper_bin{
@@ -15024,14 +14404,14 @@
pixel_y = 0;
tag = "every single paper bin is edited to this"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aEj" = (
+"aCI" = (
/obj/machinery/vending/cigarette,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aEk" = (
+"aCJ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -15040,7 +14420,7 @@
/obj/item/weapon/storage/toolbox/emergency,
/turf/open/floor/plating,
/area/storage/emergency)
-"aEl" = (
+"aCK" = (
/obj/machinery/space_heater,
/obj/structure/sign/poster{
pixel_x = 32;
@@ -15048,14 +14428,14 @@
},
/turf/open/floor/plating,
/area/storage/emergency)
-"aEm" = (
+"aCL" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8;
initialize_directions = 11
},
/turf/open/floor/plasteel,
/area/crew_quarters/sleep)
-"aEn" = (
+"aCM" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
@@ -15065,7 +14445,7 @@
},
/turf/open/floor/plasteel,
/area/crew_quarters/sleep)
-"aEo" = (
+"aCN" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -15076,7 +14456,7 @@
/area/crew_quarters/locker/locker_toilet{
name = "\improper Restrooms"
})
-"aEp" = (
+"aCO" = (
/obj/machinery/shower{
dir = 4
},
@@ -15084,7 +14464,7 @@
/area/crew_quarters/locker/locker_toilet{
name = "\improper Restrooms"
})
-"aEq" = (
+"aCP" = (
/obj/machinery/shower{
dir = 8
},
@@ -15098,7 +14478,7 @@
/area/crew_quarters/locker/locker_toilet{
name = "\improper Restrooms"
})
-"aEr" = (
+"aCQ" = (
/obj/structure/table,
/obj/item/weapon/reagent_containers/food/snacks/cookie{
desc = "It has a distinctly eldritch taste to it.";
@@ -15110,22 +14490,22 @@
},
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aEs" = (
+"aCR" = (
/obj/structure/chair/stool,
/obj/item/clothing/suit/apron/chef,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aEt" = (
+"aCS" = (
/obj/effect/landmark{
name = "blobstart"
},
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aEu" = (
+"aCT" = (
/obj/machinery/hydroponics/constructable,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aEv" = (
+"aCU" = (
/obj/structure/closet/coffin,
/obj/item/toy/figure/lawyer,
/obj/effect/decal/cleanable/cobweb{
@@ -15133,12 +14513,12 @@
},
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aEw" = (
+"aCV" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aEx" = (
+"aCW" = (
/obj/structure/table,
/obj/item/weapon/storage/firstaid/regular{
pixel_x = 2;
@@ -15146,11 +14526,11 @@
},
/turf/open/floor/mineral/titanium,
/area/shuttle/escape)
-"aEy" = (
+"aCX" = (
/obj/machinery/computer/emergency_shuttle,
/turf/open/floor/mineral/titanium,
/area/shuttle/escape)
-"aEz" = (
+"aCY" = (
/obj/structure/table,
/obj/machinery/recharger,
/obj/structure/extinguisher_cabinet{
@@ -15159,7 +14539,7 @@
},
/turf/open/floor/mineral/titanium,
/area/shuttle/escape)
-"aEA" = (
+"aCZ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -15172,7 +14552,7 @@
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"aEB" = (
+"aDa" = (
/obj/machinery/door/airlock/maintenance{
name = "Detective Maintenance";
req_access_txt = "4"
@@ -15188,26 +14568,26 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/security/detectives_office)
-"aEC" = (
+"aDb" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aED" = (
+"aDc" = (
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aEE" = (
+"aDd" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aEF" = (
+"aDe" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
/turf/open/floor/plating,
/area/storage/primary)
-"aEG" = (
+"aDf" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
name = "Primary Tool Storage"
@@ -15220,7 +14600,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/storage/primary)
-"aEH" = (
+"aDg" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
name = "Primary Tool Storage"
@@ -15228,7 +14608,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/storage/primary)
-"aEI" = (
+"aDh" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-21";
layer = 4.1;
@@ -15237,11 +14617,11 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aEJ" = (
+"aDi" = (
/obj/machinery/computer/arcade,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aEK" = (
+"aDj" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/poddoor/preopen{
id = "bridge blast";
@@ -15261,7 +14641,7 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/vault,
/area/bridge)
-"aEL" = (
+"aDk" = (
/obj/machinery/door/poddoor/preopen{
id = "bridge blast";
name = "bridge blast door"
@@ -15275,7 +14655,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/vault,
/area/bridge)
-"aEM" = (
+"aDl" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/cable{
@@ -15285,7 +14665,7 @@
},
/turf/open/floor/plating,
/area/hallway/primary/central)
-"aEN" = (
+"aDm" = (
/obj/machinery/door/poddoor/preopen{
id = "bridge blast";
name = "bridge blast door"
@@ -15300,7 +14680,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/vault,
/area/bridge)
-"aEO" = (
+"aDn" = (
/obj/machinery/door/poddoor/shutters/preopen{
id = "hopqueue";
name = "HoP Queue Shutters"
@@ -15309,14 +14689,14 @@
dir = 1
},
/area/hallway/primary/central)
-"aEP" = (
+"aDo" = (
/obj/machinery/door/poddoor/shutters/preopen{
id = "hopqueue";
name = "HoP Queue Shutters"
},
/turf/open/floor/plasteel/loadingarea,
/area/hallway/primary/central)
-"aEQ" = (
+"aDp" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -15326,12 +14706,12 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aER" = (
+"aDq" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/crew_quarters/sleep)
-"aES" = (
+"aDr" = (
/obj/machinery/door/airlock{
name = "Starboard Emergency Storage";
req_access_txt = "0"
@@ -15343,7 +14723,7 @@
},
/turf/open/floor/plating,
/area/storage/emergency)
-"aET" = (
+"aDs" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -15358,7 +14738,7 @@
/area/crew_quarters/locker/locker_toilet{
name = "\improper Restrooms"
})
-"aEU" = (
+"aDt" = (
/obj/machinery/door/airlock{
name = "Unit 1"
},
@@ -15366,7 +14746,7 @@
/area/crew_quarters/locker/locker_toilet{
name = "\improper Restrooms"
})
-"aEV" = (
+"aDu" = (
/obj/machinery/door/airlock{
name = "Unit 2"
},
@@ -15374,7 +14754,7 @@
/area/crew_quarters/locker/locker_toilet{
name = "\improper Restrooms"
})
-"aEW" = (
+"aDv" = (
/obj/machinery/shower{
dir = 4
},
@@ -15383,7 +14763,7 @@
/area/crew_quarters/locker/locker_toilet{
name = "\improper Restrooms"
})
-"aEX" = (
+"aDw" = (
/obj/structure/closet/crate,
/obj/item/weapon/cultivator,
/obj/item/weapon/shovel/spade,
@@ -15395,17 +14775,17 @@
/obj/item/weapon/reagent_containers/glass/bottle/nutrient/ez,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aEY" = (
+"aDx" = (
/obj/effect/decal/cleanable/egg_smudge,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aEZ" = (
+"aDy" = (
/turf/closed/wall,
/area/library)
-"aFa" = (
+"aDz" = (
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/escape)
-"aFb" = (
+"aDA" = (
/obj/structure/chair/comfy/black{
tag = "icon-comfychair (NORTH)";
icon_state = "comfychair";
@@ -15413,7 +14793,7 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/escape)
-"aFc" = (
+"aDB" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -15427,7 +14807,7 @@
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"aFd" = (
+"aDC" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -15444,7 +14824,7 @@
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"aFe" = (
+"aDD" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -15457,7 +14837,7 @@
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"aFf" = (
+"aDE" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -15473,7 +14853,7 @@
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"aFg" = (
+"aDF" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -15495,14 +14875,14 @@
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"aFh" = (
+"aDG" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8;
initialize_directions = 11
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aFi" = (
+"aDH" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -15512,20 +14892,20 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aFj" = (
+"aDI" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aFk" = (
+"aDJ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aFl" = (
+"aDK" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -15539,7 +14919,7 @@
dir = 4
},
/area/hallway/primary/central)
-"aFm" = (
+"aDL" = (
/obj/machinery/light{
dir = 1
},
@@ -15554,18 +14934,18 @@
dir = 4
},
/area/hallway/primary/central)
-"aFn" = (
+"aDM" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1;
initialize_directions = 11
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aFo" = (
+"aDN" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aFp" = (
+"aDO" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -15576,7 +14956,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aFq" = (
+"aDP" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -15585,7 +14965,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aFr" = (
+"aDQ" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -15596,7 +14976,7 @@
dir = 1
},
/area/hallway/primary/central)
-"aFs" = (
+"aDR" = (
/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -15608,7 +14988,7 @@
dir = 1
},
/area/hallway/primary/central)
-"aFt" = (
+"aDS" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -15620,7 +15000,7 @@
dir = 1
},
/area/hallway/primary/central)
-"aFu" = (
+"aDT" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -15635,13 +15015,13 @@
dir = 1
},
/area/hallway/primary/central)
-"aFv" = (
+"aDU" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/blue/corner{
dir = 1
},
/area/hallway/primary/central)
-"aFw" = (
+"aDV" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -15649,7 +15029,7 @@
dir = 1
},
/area/hallway/primary/central)
-"aFx" = (
+"aDW" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -15662,7 +15042,7 @@
dir = 1
},
/area/hallway/primary/central)
-"aFy" = (
+"aDX" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -15672,7 +15052,7 @@
dir = 1
},
/area/hallway/primary/central)
-"aFz" = (
+"aDY" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1;
initialize_directions = 11
@@ -15681,7 +15061,7 @@
dir = 1
},
/area/hallway/primary/central)
-"aFA" = (
+"aDZ" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -15694,7 +15074,7 @@
dir = 1
},
/area/hallway/primary/central)
-"aFB" = (
+"aEa" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -15706,14 +15086,14 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aFC" = (
+"aEb" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aFD" = (
+"aEc" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
name = "Dormitory"
@@ -15723,13 +15103,13 @@
},
/turf/open/floor/plasteel,
/area/crew_quarters/sleep)
-"aFE" = (
+"aEd" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/crew_quarters/sleep)
-"aFF" = (
+"aEe" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -15740,7 +15120,7 @@
},
/turf/open/floor/plasteel,
/area/crew_quarters/sleep)
-"aFG" = (
+"aEf" = (
/obj/machinery/vending/cigarette,
/obj/machinery/airalarm{
pixel_y = 22
@@ -15749,7 +15129,7 @@
dir = 4
},
/area/crew_quarters/sleep)
-"aFH" = (
+"aEg" = (
/obj/machinery/power/apc{
dir = 4;
name = "Dormitory Bathrooms APC";
@@ -15767,7 +15147,7 @@
/area/crew_quarters/locker/locker_toilet{
name = "\improper Restrooms"
})
-"aFI" = (
+"aEh" = (
/obj/structure/toilet{
dir = 8
},
@@ -15779,7 +15159,7 @@
/area/crew_quarters/locker/locker_toilet{
name = "\improper Restrooms"
})
-"aFJ" = (
+"aEi" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -15793,20 +15173,20 @@
/area/crew_quarters/locker/locker_toilet{
name = "\improper Restrooms"
})
-"aFK" = (
+"aEj" = (
/obj/structure/mineral_door/iron,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aFL" = (
+"aEk" = (
/obj/structure/grille,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aFM" = (
+"aEl" = (
/obj/structure/closet/coffin,
/obj/item/toy/figure/librarian,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aFN" = (
+"aEm" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
d1 = 1;
@@ -15821,7 +15201,7 @@
/area/solar/starboard{
name = "Starboard Solar Array"
})
-"aFO" = (
+"aEn" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
d1 = 1;
@@ -15836,53 +15216,53 @@
/area/solar/port{
name = "Port Solar Array"
})
-"aFP" = (
+"aEo" = (
/obj/machinery/door/airlock/centcom{
name = "Library"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/carpet,
/area/library)
-"aFQ" = (
+"aEp" = (
/obj/structure/closet,
/turf/open/floor/mineral/titanium/yellow,
/area/shuttle/escape)
-"aFR" = (
+"aEq" = (
/obj/machinery/vending/cola,
/turf/open/floor/mineral/titanium/yellow,
/area/shuttle/escape)
-"aFS" = (
+"aEr" = (
/obj/machinery/computer/atmos_alert,
/turf/open/floor/mineral/titanium,
/area/shuttle/escape)
-"aFT" = (
+"aEs" = (
/obj/structure/chair{
dir = 8
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/escape)
-"aFU" = (
+"aEt" = (
/obj/structure/chair{
dir = 4
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/escape)
-"aFV" = (
+"aEu" = (
/obj/machinery/computer/security,
/turf/open/floor/mineral/titanium,
/area/shuttle/escape)
-"aFW" = (
+"aEv" = (
/obj/structure/chair,
/turf/open/floor/mineral/plastitanium/brig,
/area/shuttle/escape)
-"aFX" = (
+"aEw" = (
/obj/structure/table,
/obj/item/weapon/reagent_containers/food/drinks/soda_cans/cola,
/turf/open/floor/plating,
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"aFY" = (
+"aEx" = (
/obj/structure/chair/stool,
/turf/open/floor/plating{
icon_state = "platingdmg3"
@@ -15890,18 +15270,18 @@
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"aFZ" = (
+"aEy" = (
/obj/machinery/vending/cigarette,
/turf/open/floor/plating,
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"aGa" = (
+"aEz" = (
/turf/closed/wall,
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
})
-"aGb" = (
+"aEA" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -15913,7 +15293,7 @@
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"aGc" = (
+"aEB" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating{
icon_state = "platingdmg3"
@@ -15921,7 +15301,7 @@
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"aGd" = (
+"aEC" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
layer = 2.4;
@@ -15933,14 +15313,14 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aGe" = (
+"aED" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
tag = "icon-manifold-b-f (EAST)";
dir = 4
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aGf" = (
+"aEE" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -15955,7 +15335,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aGg" = (
+"aEF" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -15963,7 +15343,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aGh" = (
+"aEG" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -15972,7 +15352,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aGi" = (
+"aEH" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -15985,7 +15365,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aGj" = (
+"aEI" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -15994,7 +15374,7 @@
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aGk" = (
+"aEJ" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -16006,7 +15386,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aGl" = (
+"aEK" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -16024,7 +15404,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aGm" = (
+"aEL" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -16035,7 +15415,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aGn" = (
+"aEM" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -16052,7 +15432,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aGo" = (
+"aEN" = (
/obj/structure/cable{
icon_state = "1-8"
},
@@ -16063,13 +15443,13 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aGp" = (
+"aEO" = (
/obj/structure/cable{
icon_state = "1-8"
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aGq" = (
+"aEP" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
layer = 2.4;
@@ -16077,7 +15457,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aGr" = (
+"aEQ" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -16088,7 +15468,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aGs" = (
+"aER" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -16096,7 +15476,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aGt" = (
+"aES" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -16117,7 +15497,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aGu" = (
+"aET" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -16136,7 +15516,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aGv" = (
+"aEU" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -16151,7 +15531,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aGw" = (
+"aEV" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
name = "Dormitory"
@@ -16166,7 +15546,7 @@
},
/turf/open/floor/plasteel,
/area/crew_quarters/sleep)
-"aGx" = (
+"aEW" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -16177,7 +15557,7 @@
},
/turf/open/floor/plasteel,
/area/crew_quarters/sleep)
-"aGy" = (
+"aEX" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -16193,7 +15573,7 @@
},
/turf/open/floor/plasteel,
/area/crew_quarters/sleep)
-"aGz" = (
+"aEY" = (
/obj/structure/cable{
icon_state = "1-8"
},
@@ -16207,7 +15587,7 @@
},
/turf/open/floor/plasteel,
/area/crew_quarters/sleep)
-"aGA" = (
+"aEZ" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -16221,7 +15601,7 @@
},
/turf/open/floor/plasteel,
/area/crew_quarters/sleep)
-"aGB" = (
+"aFa" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -16240,7 +15620,7 @@
},
/turf/open/floor/plasteel,
/area/crew_quarters/sleep)
-"aGC" = (
+"aFb" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -16252,7 +15632,7 @@
},
/turf/open/floor/plasteel,
/area/crew_quarters/sleep)
-"aGD" = (
+"aFc" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -16265,7 +15645,7 @@
dir = 4
},
/area/crew_quarters/sleep)
-"aGE" = (
+"aFd" = (
/obj/machinery/door/airlock{
name = "Unisex Restrooms";
req_access_txt = "0"
@@ -16282,7 +15662,7 @@
/area/crew_quarters/locker/locker_toilet{
name = "\improper Restrooms"
})
-"aGF" = (
+"aFe" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -16295,7 +15675,7 @@
/area/crew_quarters/locker/locker_toilet{
name = "\improper Restrooms"
})
-"aGG" = (
+"aFf" = (
/obj/structure/cable{
icon_state = "1-8"
},
@@ -16306,11 +15686,11 @@
/area/crew_quarters/locker/locker_toilet{
name = "\improper Restrooms"
})
-"aGH" = (
+"aFg" = (
/obj/item/chair,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aGI" = (
+"aFh" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -16331,7 +15711,7 @@
icon_state = "panelscorched"
},
/area/maintenance/apmaint)
-"aGJ" = (
+"aFi" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -16346,7 +15726,7 @@
},
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aGK" = (
+"aFj" = (
/obj/structure/grille,
/obj/structure/cable{
d1 = 4;
@@ -16362,7 +15742,7 @@
},
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aGL" = (
+"aFk" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -16381,18 +15761,18 @@
},
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aGM" = (
+"aFl" = (
/turf/open/floor/mineral/titanium/yellow,
/area/shuttle/escape)
-"aGN" = (
+"aFm" = (
/obj/machinery/computer/crew,
/turf/open/floor/mineral/titanium,
/area/shuttle/escape)
-"aGO" = (
+"aFn" = (
/obj/machinery/computer/communications,
/turf/open/floor/mineral/titanium,
/area/shuttle/escape)
-"aGP" = (
+"aFo" = (
/obj/machinery/flasher{
id = "shuttle_flasher";
pixel_x = -24;
@@ -16405,10 +15785,10 @@
},
/turf/open/floor/mineral/plastitanium/brig,
/area/shuttle/escape)
-"aGQ" = (
+"aFp" = (
/turf/open/floor/mineral/plastitanium/brig,
/area/shuttle/escape)
-"aGR" = (
+"aFq" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-17"
},
@@ -16426,7 +15806,7 @@
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
})
-"aGS" = (
+"aFr" = (
/obj/structure/chair,
/obj/machinery/computer/security/telescreen/entertainment{
pixel_y = 32
@@ -16437,7 +15817,7 @@
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
})
-"aGT" = (
+"aFs" = (
/obj/structure/chair,
/obj/machinery/status_display{
density = 0;
@@ -16451,7 +15831,7 @@
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
})
-"aGU" = (
+"aFt" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-17"
},
@@ -16462,7 +15842,7 @@
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
})
-"aGV" = (
+"aFu" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
@@ -16478,20 +15858,20 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aGW" = (
+"aFv" = (
/obj/machinery/light,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aGX" = (
+"aFw" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aGY" = (
+"aFx" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -16500,14 +15880,14 @@
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aGZ" = (
+"aFy" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aHa" = (
+"aFz" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -16519,7 +15899,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aHb" = (
+"aFA" = (
/obj/machinery/camera{
c_tag = "Central Primary Hallway Bathroom";
dir = 1
@@ -16529,7 +15909,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aHc" = (
+"aFB" = (
/obj/machinery/door/airlock/centcom{
name = "Library"
},
@@ -16542,7 +15922,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/carpet,
/area/library)
-"aHd" = (
+"aFC" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -16550,7 +15930,7 @@
dir = 8
},
/area/hallway/primary/central)
-"aHe" = (
+"aFD" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -16559,13 +15939,13 @@
dir = 8
},
/area/hallway/primary/central)
-"aHf" = (
+"aFE" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel/blue/corner{
dir = 8
},
/area/hallway/primary/central)
-"aHg" = (
+"aFF" = (
/obj/machinery/light,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -16574,7 +15954,7 @@
dir = 8
},
/area/hallway/primary/central)
-"aHh" = (
+"aFG" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -16588,13 +15968,13 @@
dir = 8
},
/area/hallway/primary/central)
-"aHi" = (
+"aFH" = (
/obj/structure/chair{
dir = 4
},
/turf/open/floor/plating/abductor,
/area/shuttle/abandoned)
-"aHj" = (
+"aFI" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -16604,7 +15984,7 @@
dir = 8
},
/area/hallway/primary/central)
-"aHk" = (
+"aFJ" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
@@ -16612,7 +15992,7 @@
dir = 8
},
/area/hallway/primary/central)
-"aHl" = (
+"aFK" = (
/obj/machinery/camera{
c_tag = "Central Primary Hallway EVA";
dir = 1
@@ -16624,7 +16004,7 @@
dir = 8
},
/area/hallway/primary/central)
-"aHm" = (
+"aFL" = (
/obj/structure/sign/directions/security{
dir = 8;
icon_state = "direction_sec";
@@ -16646,25 +16026,25 @@
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aHn" = (
+"aFM" = (
/obj/machinery/computer/shuttle/white_ship,
/turf/open/floor/plating/abductor,
/area/shuttle/abandoned)
-"aHo" = (
+"aFN" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aHp" = (
+"aFO" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aHq" = (
+"aFP" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
name = "Dormitory"
@@ -16674,18 +16054,18 @@
},
/turf/open/floor/plasteel,
/area/crew_quarters/sleep)
-"aHr" = (
+"aFQ" = (
/obj/machinery/light,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/crew_quarters/sleep)
-"aHs" = (
+"aFR" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel,
/area/crew_quarters/sleep)
-"aHt" = (
+"aFS" = (
/obj/machinery/camera{
c_tag = "Dormitories Hallway";
dir = 1
@@ -16695,14 +16075,14 @@
},
/turf/open/floor/plasteel,
/area/crew_quarters/sleep)
-"aHu" = (
+"aFT" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9;
pixel_y = 0
},
/turf/open/floor/plasteel,
/area/crew_quarters/sleep)
-"aHv" = (
+"aFU" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-04";
layer = 4.1
@@ -16711,7 +16091,7 @@
dir = 4
},
/area/crew_quarters/sleep)
-"aHw" = (
+"aFV" = (
/obj/machinery/light_switch{
pixel_x = -25
},
@@ -16719,7 +16099,7 @@
/area/crew_quarters/locker/locker_toilet{
name = "\improper Restrooms"
})
-"aHx" = (
+"aFW" = (
/obj/machinery/door/airlock{
name = "Unit B"
},
@@ -16727,7 +16107,7 @@
/area/crew_quarters/locker/locker_toilet{
name = "\improper Restrooms"
})
-"aHy" = (
+"aFX" = (
/obj/machinery/recharge_station,
/obj/machinery/light/small{
dir = 1
@@ -16741,7 +16121,7 @@
/area/crew_quarters/locker/locker_toilet{
name = "\improper Restrooms"
})
-"aHz" = (
+"aFY" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -16749,20 +16129,20 @@
/obj/effect/decal/cleanable/oil,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aHA" = (
+"aFZ" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aHB" = (
+"aGa" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
},
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aHC" = (
+"aGb" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -16772,24 +16152,24 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aHD" = (
+"aGc" = (
/mob/living/simple_animal/mouse/gray,
/turf/open/floor/plating{
burnt = 1;
icon_state = "panelscorched"
},
/area/maintenance/apmaint)
-"aHE" = (
+"aGd" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aHF" = (
+"aGe" = (
/obj/structure/chair{
dir = 8
},
/turf/open/floor/plating/abductor,
/area/shuttle/abandoned)
-"aHG" = (
+"aGf" = (
/obj/machinery/door/airlock/glass{
name = "Shuttle Airlock"
},
@@ -16818,35 +16198,35 @@
},
/turf/open/floor/plasteel/black,
/area/shuttle/abandoned)
-"aHH" = (
+"aGg" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/mineral/titanium/yellow,
/area/shuttle/escape)
-"aHI" = (
+"aGh" = (
/obj/structure/sign/nanotrasen,
/turf/closed/wall/mineral/titanium,
/area/shuttle/escape)
-"aHJ" = (
+"aGi" = (
/obj/machinery/door/airlock/glass{
name = "Emergency Shuttle Cockpit";
req_access_txt = "19"
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/escape)
-"aHK" = (
+"aGj" = (
/obj/structure/chair{
dir = 1
},
/turf/open/floor/mineral/plastitanium/brig,
/area/shuttle/escape)
-"aHL" = (
+"aGk" = (
/obj/machinery/door/airlock/titanium{
name = "Emergency Shuttle Airlock";
req_access_txt = "2"
},
/turf/open/floor/mineral/plastitanium/brig,
/area/shuttle/escape)
-"aHM" = (
+"aGl" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 4;
name = "Escape Airlock"
@@ -16855,12 +16235,12 @@
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
})
-"aHN" = (
+"aGm" = (
/turf/open/floor/plating,
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
})
-"aHO" = (
+"aGn" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 8;
name = "Escape Airlock"
@@ -16869,19 +16249,19 @@
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
})
-"aHP" = (
+"aGo" = (
/turf/open/floor/plasteel/red/side{
dir = 8
},
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
})
-"aHQ" = (
+"aGp" = (
/turf/open/floor/plasteel,
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
})
-"aHR" = (
+"aGq" = (
/obj/machinery/light{
dir = 4;
icon_state = "tube1"
@@ -16901,11 +16281,11 @@
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
})
-"aHS" = (
+"aGr" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aHT" = (
+"aGs" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
icon_state = "space";
@@ -16921,19 +16301,19 @@
/area/chapel/main{
name = "Monastery"
})
-"aHU" = (
+"aGt" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral/corner,
/area/hallway/primary/central)
-"aHV" = (
+"aGu" = (
/turf/closed/wall,
/area/storage/art)
-"aHW" = (
+"aGv" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
/turf/open/floor/plating,
/area/storage/art)
-"aHX" = (
+"aGw" = (
/obj/machinery/door/airlock/glass{
name = "Art Storage"
},
@@ -16944,14 +16324,14 @@
},
/turf/open/floor/plasteel,
/area/storage/art)
-"aHY" = (
+"aGx" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
/turf/open/floor/plating,
/area/crew_quarters/cafeteria{
name = "Lunchroom"
})
-"aHZ" = (
+"aGy" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -16959,7 +16339,7 @@
/area/crew_quarters/cafeteria{
name = "Lunchroom"
})
-"aIa" = (
+"aGz" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
name = "Lunchroom"
@@ -16974,17 +16354,17 @@
/area/crew_quarters/cafeteria{
name = "Lunchroom"
})
-"aIb" = (
+"aGA" = (
/turf/closed/wall,
/area/crew_quarters/cafeteria{
name = "Lunchroom"
})
-"aIc" = (
+"aGB" = (
/turf/closed/wall,
/area/crew_quarters/toilet{
name = "\improper Auxiliary Restroom"
})
-"aId" = (
+"aGC" = (
/obj/machinery/door/airlock{
id_tag = "Potty1";
name = "Unisex Restrooms";
@@ -17000,16 +16380,16 @@
/area/crew_quarters/toilet{
name = "\improper Auxiliary Restroom"
})
-"aIe" = (
+"aGD" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall,
/area/crew_quarters/toilet{
name = "\improper Auxiliary Restroom"
})
-"aIf" = (
+"aGE" = (
/turf/closed/wall,
/area/maintenance/fsmaint2)
-"aIg" = (
+"aGF" = (
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
},
@@ -17022,11 +16402,11 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aIh" = (
+"aGG" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plasteel,
/area/maintenance/fsmaint2)
-"aIi" = (
+"aGH" = (
/obj/machinery/camera{
c_tag = "Central Primary Hallway Bridge";
dir = 1
@@ -17034,19 +16414,19 @@
/obj/structure/closet/emcloset,
/turf/open/floor/plasteel,
/area/maintenance/fsmaint2)
-"aIj" = (
+"aGI" = (
/obj/structure/closet/firecloset,
/turf/open/floor/plasteel,
/area/maintenance/fsmaint2)
-"aIk" = (
+"aGJ" = (
/turf/closed/wall/r_wall,
/area/storage/eva)
-"aIl" = (
+"aGK" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/storage/eva)
-"aIm" = (
+"aGL" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/poddoor/shutters{
id = "evashutter";
@@ -17054,10 +16434,10 @@
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
/area/storage/eva)
-"aIn" = (
+"aGM" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_command{
name = "EVA Storage";
@@ -17066,10 +16446,10 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/storage/eva)
-"aIo" = (
+"aGN" = (
/turf/closed/wall/r_wall,
/area/teleporter)
-"aIp" = (
+"aGO" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/airlock/glass_command{
@@ -17078,7 +16458,7 @@
},
/turf/open/floor/plasteel,
/area/teleporter)
-"aIq" = (
+"aGP" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
@@ -17092,7 +16472,7 @@
/area/chapel/main{
name = "Monastery"
})
-"aIr" = (
+"aGQ" = (
/obj/structure/chair{
dir = 4
},
@@ -17103,16 +16483,16 @@
/area/chapel/main{
name = "Monastery"
})
-"aIs" = (
+"aGR" = (
/turf/closed/wall,
/area/security/checkpoint/supply)
-"aIt" = (
+"aGS" = (
/turf/closed/wall,
/area/quartermaster/office)
-"aIu" = (
+"aGT" = (
/turf/closed/wall,
/area/quartermaster/storage)
-"aIv" = (
+"aGU" = (
/obj/machinery/door/airlock/maintenance{
name = "Cargo Bay Warehouse Maintenance";
req_access_txt = "31"
@@ -17120,11 +16500,11 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
/area/quartermaster/storage)
-"aIw" = (
+"aGV" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aIx" = (
+"aGW" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
/obj/structure/cable{
d1 = 1;
@@ -17134,55 +16514,55 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aIy" = (
+"aGX" = (
/obj/structure/girder,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aIz" = (
+"aGY" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aIA" = (
+"aGZ" = (
/obj/item/weapon/storage/box/mousetraps,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aIB" = (
+"aHa" = (
/turf/closed/wall,
/area/maintenance/disposal)
-"aIC" = (
+"aHb" = (
/obj/machinery/door/poddoor{
id = "trash";
name = "disposal bay door"
},
/turf/open/floor/plating,
/area/maintenance/disposal)
-"aID" = (
+"aHc" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/maintenance/disposal)
-"aIE" = (
+"aHd" = (
/obj/machinery/door/airlock/glass{
name = "Emergency Shuttle Brig";
req_access_txt = "2"
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/escape)
-"aIF" = (
+"aHe" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-22"
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/escape)
-"aIG" = (
+"aHf" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
})
-"aIH" = (
+"aHg" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1;
@@ -17195,7 +16575,7 @@
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
})
-"aII" = (
+"aHh" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -17203,7 +16583,7 @@
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
})
-"aIJ" = (
+"aHi" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
@@ -17211,7 +16591,7 @@
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
})
-"aIK" = (
+"aHj" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
on = 1
},
@@ -17221,13 +16601,13 @@
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
})
-"aIL" = (
+"aHk" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
/turf/open/floor/plasteel/neutral/corner,
/area/hallway/primary/central)
-"aIM" = (
+"aHl" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -17235,7 +16615,7 @@
},
/turf/open/floor/plating,
/area/storage/art)
-"aIN" = (
+"aHm" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -17245,7 +16625,7 @@
dir = 9
},
/area/storage/art)
-"aIO" = (
+"aHn" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -17258,7 +16638,7 @@
},
/turf/open/floor/plasteel,
/area/storage/art)
-"aIP" = (
+"aHo" = (
/obj/machinery/photocopier,
/obj/machinery/airalarm{
dir = 8;
@@ -17269,7 +16649,7 @@
dir = 5
},
/area/storage/art)
-"aIQ" = (
+"aHp" = (
/obj/structure/table,
/obj/item/weapon/reagent_containers/food/snacks/friedegg,
/obj/item/weapon/kitchen/fork,
@@ -17279,7 +16659,7 @@
/area/crew_quarters/cafeteria{
name = "Lunchroom"
})
-"aIR" = (
+"aHq" = (
/obj/structure/chair{
dir = 8;
name = "Defense"
@@ -17294,7 +16674,7 @@
/area/crew_quarters/cafeteria{
name = "Lunchroom"
})
-"aIS" = (
+"aHr" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -17308,7 +16688,7 @@
/area/crew_quarters/cafeteria{
name = "Lunchroom"
})
-"aIT" = (
+"aHs" = (
/obj/machinery/airalarm{
pixel_y = 22
},
@@ -17319,7 +16699,7 @@
/area/crew_quarters/cafeteria{
name = "Lunchroom"
})
-"aIU" = (
+"aHt" = (
/obj/structure/sink{
icon_state = "sink";
dir = 8;
@@ -17337,7 +16717,7 @@
/area/crew_quarters/toilet{
name = "\improper Auxiliary Restroom"
})
-"aIV" = (
+"aHu" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -17349,7 +16729,7 @@
/area/crew_quarters/toilet{
name = "\improper Auxiliary Restroom"
})
-"aIW" = (
+"aHv" = (
/obj/structure/urinal{
pixel_y = 32
},
@@ -17381,15 +16761,15 @@
/area/crew_quarters/toilet{
name = "\improper Auxiliary Restroom"
})
-"aIX" = (
+"aHw" = (
/obj/machinery/portable_atmospherics/canister/air,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aIY" = (
+"aHx" = (
/obj/structure/closet/coffin,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aIZ" = (
+"aHy" = (
/obj/machinery/light/small{
dir = 1
},
@@ -17398,16 +16778,16 @@
icon_state = "platingdmg3"
},
/area/maintenance/fsmaint2)
-"aJa" = (
+"aHz" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plating{
icon_state = "panelscorched"
},
/area/maintenance/fsmaint2)
-"aJb" = (
+"aHA" = (
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aJc" = (
+"aHB" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -17420,26 +16800,26 @@
icon_state = "platingdmg3"
},
/area/maintenance/fsmaint2)
-"aJd" = (
+"aHC" = (
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aJe" = (
+"aHD" = (
/obj/machinery/space_heater,
/turf/open/floor/plating{
burnt = 1;
icon_state = "panelscorched"
},
/area/maintenance/fsmaint2)
-"aJf" = (
+"aHE" = (
/obj/structure/girder,
/turf/open/floor/plating{
broken = 1;
icon_state = "platingdmg3"
},
/area/maintenance/fsmaint2)
-"aJg" = (
+"aHF" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/machinery/button/door{
id = "evashutter";
@@ -17448,43 +16828,43 @@
pixel_y = 0;
req_access_txt = "18"
},
-/turf/open/floor/plasteel/black,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plasteel/black,
/area/storage/eva)
-"aJh" = (
+"aHG" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
-/area/storage/eva)
-"aJi" = (
/turf/open/floor/plasteel,
+/area/storage/eva)
+"aHH" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel,
/area/storage/eva)
-"aJj" = (
+"aHI" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel,
/area/storage/eva)
-"aJk" = (
+"aHJ" = (
/obj/structure/closet/crate/rcd,
-/turf/open/floor/plasteel/black,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel/black,
/area/storage/eva)
-"aJl" = (
+"aHK" = (
/turf/closed/wall,
/area/storage/eva)
-"aJm" = (
+"aHL" = (
/obj/machinery/power/apc{
dir = 8;
name = "Teleporter APC";
@@ -17505,7 +16885,7 @@
dir = 1
},
/area/teleporter)
-"aJn" = (
+"aHM" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -17524,7 +16904,7 @@
dir = 1
},
/area/teleporter)
-"aJo" = (
+"aHN" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable{
d1 = 4;
@@ -17534,7 +16914,7 @@
},
/turf/open/floor/plasteel,
/area/teleporter)
-"aJp" = (
+"aHO" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -17544,7 +16924,7 @@
dir = 4
},
/area/teleporter)
-"aJq" = (
+"aHP" = (
/obj/structure/closet/crate,
/obj/machinery/button/door{
id = "teleshutter";
@@ -17557,19 +16937,19 @@
dir = 4
},
/area/teleporter)
-"aJr" = (
+"aHQ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/brown/corner{
dir = 1
},
/area/hallway/primary/central)
-"aJs" = (
+"aHR" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/brown/corner{
dir = 4
},
/area/hallway/primary/central)
-"aJt" = (
+"aHS" = (
/obj/item/weapon/pen,
/obj/structure/table,
/obj/machinery/requests_console{
@@ -17591,7 +16971,7 @@
dir = 9
},
/area/security/checkpoint/supply)
-"aJu" = (
+"aHT" = (
/obj/machinery/computer/security/mining,
/obj/machinery/light{
dir = 1
@@ -17608,7 +16988,7 @@
dir = 1
},
/area/security/checkpoint/supply)
-"aJv" = (
+"aHU" = (
/obj/machinery/computer/secure_data,
/obj/item/device/radio/intercom{
dir = 0;
@@ -17620,7 +17000,7 @@
dir = 5
},
/area/security/checkpoint/supply)
-"aJw" = (
+"aHV" = (
/obj/machinery/conveyor{
dir = 4;
id = "packageSort2"
@@ -17631,7 +17011,7 @@
/obj/structure/disposalpipe/trunk,
/turf/open/floor/plating,
/area/quartermaster/office)
-"aJx" = (
+"aHW" = (
/obj/machinery/conveyor{
dir = 4;
id = "packageSort2"
@@ -17639,7 +17019,7 @@
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/quartermaster/office)
-"aJy" = (
+"aHX" = (
/obj/machinery/conveyor{
dir = 4;
id = "packageSort2"
@@ -17654,7 +17034,7 @@
},
/turf/open/floor/plating,
/area/quartermaster/office)
-"aJz" = (
+"aHY" = (
/obj/machinery/conveyor{
dir = 4;
id = "packageSort2"
@@ -17669,7 +17049,7 @@
},
/turf/open/floor/plating,
/area/quartermaster/office)
-"aJA" = (
+"aHZ" = (
/obj/machinery/conveyor{
dir = 4;
id = "packageSort2"
@@ -17680,14 +17060,14 @@
},
/turf/open/floor/plating,
/area/quartermaster/office)
-"aJB" = (
+"aIa" = (
/obj/machinery/conveyor{
dir = 4;
id = "packageSort2"
},
/turf/open/floor/plating,
/area/quartermaster/office)
-"aJC" = (
+"aIb" = (
/obj/machinery/conveyor{
dir = 4;
id = "packageSort2"
@@ -17700,45 +17080,45 @@
},
/turf/open/floor/plating,
/area/quartermaster/office)
-"aJD" = (
+"aIc" = (
/obj/machinery/disposal/deliveryChute{
dir = 8
},
/obj/structure/disposalpipe/trunk{
dir = 4
},
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plating,
/area/quartermaster/office)
-"aJE" = (
+"aId" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/closed/wall,
/area/quartermaster/storage)
-"aJF" = (
+"aIe" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel/floorgrime,
/area/quartermaster/storage)
-"aJG" = (
+"aIf" = (
/obj/effect/spawner/lootdrop/maintenance,
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel/floorgrime,
/area/quartermaster/storage)
-"aJH" = (
+"aIg" = (
/obj/structure/closet/crate,
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel/floorgrime,
/area/quartermaster/storage)
-"aJI" = (
+"aIh" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -17748,7 +17128,7 @@
},
/turf/open/floor/plasteel/floorgrime,
/area/quartermaster/storage)
-"aJJ" = (
+"aIi" = (
/obj/structure/closet/cardboard,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -17762,28 +17142,28 @@
},
/turf/open/floor/plasteel/floorgrime,
/area/quartermaster/storage)
-"aJK" = (
+"aIj" = (
/obj/item/weapon/cigbutt/cigarbutt,
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel/floorgrime,
/area/quartermaster/storage)
-"aJL" = (
+"aIk" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
},
/turf/open/floor/plasteel/floorgrime,
/area/quartermaster/storage)
-"aJM" = (
+"aIl" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aJN" = (
+"aIm" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -17797,7 +17177,7 @@
},
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aJO" = (
+"aIn" = (
/obj/structure/cable{
icon_state = "1-8"
},
@@ -17811,7 +17191,7 @@
/obj/effect/decal/cleanable/ash,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aJP" = (
+"aIo" = (
/obj/structure/grille/broken,
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance{
@@ -17822,7 +17202,7 @@
/obj/machinery/light/small,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aJQ" = (
+"aIp" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
tag = "icon-manifold-b-f (NORTH)";
dir = 1
@@ -17831,11 +17211,11 @@
/area/chapel/main{
name = "Monastery"
})
-"aJR" = (
+"aIq" = (
/obj/machinery/space_heater,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aJS" = (
+"aIr" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -17850,7 +17230,7 @@
},
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aJT" = (
+"aIs" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -17864,7 +17244,7 @@
},
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aJU" = (
+"aIt" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -17877,44 +17257,44 @@
},
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aJV" = (
+"aIu" = (
/obj/machinery/button/massdriver{
id = "trash";
pixel_x = 0;
pixel_y = 32
},
+/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating{
icon_plating = "warnplate"
},
-/obj/effect/turf_decal/stripes/line,
/area/maintenance/disposal)
-"aJW" = (
+"aIv" = (
/obj/machinery/conveyor_switch/oneway{
convdir = 1;
id = "garbagestacked";
name = "disposal coveyor"
},
+/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating{
icon_plating = "warnplate"
},
-/obj/effect/turf_decal/stripes/line,
/area/maintenance/disposal)
-"aJX" = (
+"aIw" = (
+/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating{
icon_plating = "warnplate"
},
-/obj/effect/turf_decal/stripes/line,
/area/maintenance/disposal)
-"aJY" = (
-/turf/open/floor/plating,
+"aIx" = (
/obj/effect/turf_decal/stripes/corner{
dir = 1
},
+/turf/open/floor/plating,
/area/maintenance/disposal)
-"aJZ" = (
+"aIy" = (
/turf/open/floor/mineral/titanium,
/area/shuttle/escape)
-"aKa" = (
+"aIz" = (
/obj/machinery/door/airlock/glass_security{
name = "Holding Area";
req_access_txt = "2"
@@ -17924,15 +17304,7 @@
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
})
-"aKb" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
-"aKc" = (
+"aIA" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -17947,7 +17319,7 @@
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
})
-"aKd" = (
+"aIB" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8;
@@ -17955,14 +17327,14 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aKe" = (
+"aIC" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aKf" = (
+"aID" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -17970,13 +17342,13 @@
},
/turf/open/floor/plasteel/neutral/corner,
/area/hallway/primary/central)
-"aKg" = (
+"aIE" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall,
/area/storage/art)
-"aKh" = (
+"aIF" = (
/obj/structure/table,
/obj/item/stack/cable_coil/random{
layer = 3.4
@@ -17997,7 +17369,7 @@
dir = 8
},
/area/storage/art)
-"aKi" = (
+"aIG" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -18012,7 +17384,7 @@
},
/turf/open/floor/plasteel,
/area/storage/art)
-"aKj" = (
+"aIH" = (
/obj/structure/table,
/obj/item/weapon/airlock_painter,
/obj/structure/cable{
@@ -18029,7 +17401,7 @@
dir = 4
},
/area/storage/art)
-"aKk" = (
+"aII" = (
/obj/structure/chair{
dir = 1
},
@@ -18039,7 +17411,7 @@
/area/crew_quarters/cafeteria{
name = "Lunchroom"
})
-"aKl" = (
+"aIJ" = (
/obj/machinery/light,
/obj/machinery/camera{
c_tag = "Lunchroom";
@@ -18059,7 +17431,7 @@
/area/crew_quarters/cafeteria{
name = "Lunchroom"
})
-"aKm" = (
+"aIK" = (
/obj/structure/cable,
/obj/machinery/power/apc{
dir = 2;
@@ -18071,7 +17443,7 @@
/area/crew_quarters/cafeteria{
name = "Lunchroom"
})
-"aKn" = (
+"aIL" = (
/obj/machinery/vending/sustenance{
contraband = list(/obj/item/weapon/kitchen/knife = 6, /obj/item/weapon/reagent_containers/food/drinks/coffee = 12);
desc = "A vending machine which vends food.";
@@ -18083,7 +17455,7 @@
/area/crew_quarters/cafeteria{
name = "Lunchroom"
})
-"aKo" = (
+"aIM" = (
/obj/structure/toilet{
dir = 4
},
@@ -18094,7 +17466,7 @@
/area/crew_quarters/toilet{
name = "\improper Auxiliary Restroom"
})
-"aKp" = (
+"aIN" = (
/obj/machinery/light/small,
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
@@ -18104,7 +17476,7 @@
/area/crew_quarters/toilet{
name = "\improper Auxiliary Restroom"
})
-"aKq" = (
+"aIO" = (
/obj/structure/cable,
/obj/machinery/power/apc{
cell_type = 5000;
@@ -18120,24 +17492,24 @@
/area/crew_quarters/toilet{
name = "\improper Auxiliary Restroom"
})
-"aKr" = (
+"aIP" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating{
burnt = 1;
icon_state = "panelscorched"
},
/area/maintenance/fsmaint2)
-"aKs" = (
+"aIQ" = (
/obj/item/weapon/storage/box/lights/mixed,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aKt" = (
+"aIR" = (
/obj/item/weapon/extinguisher,
/turf/open/floor/plating{
icon_state = "panelscorched"
},
/area/maintenance/fsmaint2)
-"aKu" = (
+"aIS" = (
/obj/structure/grille/broken,
/obj/item/weapon/crowbar,
/turf/open/floor/plating{
@@ -18145,7 +17517,7 @@
icon_state = "platingdmg3"
},
/area/maintenance/fsmaint2)
-"aKv" = (
+"aIT" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -18155,27 +17527,27 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aKw" = (
+"aIU" = (
/obj/machinery/light/small{
dir = 1
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aKx" = (
+"aIV" = (
/obj/item/trash/pistachios,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aKy" = (
+"aIW" = (
/obj/structure/grille,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aKz" = (
+"aIX" = (
/obj/item/weapon/shard{
icon_state = "small"
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aKA" = (
+"aIY" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance{
lootcount = 2;
@@ -18186,7 +17558,7 @@
icon_state = "platingdmg3"
},
/area/maintenance/fsmaint2)
-"aKB" = (
+"aIZ" = (
/obj/structure/rack{
dir = 8;
layer = 2.9
@@ -18204,17 +17576,17 @@
name = "Station Intercom (General)";
pixel_x = -27
},
-/turf/open/floor/plasteel/black,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plasteel/black,
/area/storage/eva)
-"aKC" = (
+"aJa" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/storage/eva)
-"aKD" = (
+"aJb" = (
/obj/structure/table,
/obj/machinery/cell_charger,
/obj/item/weapon/stock_parts/cell/high{
@@ -18225,16 +17597,16 @@
charge = 100;
maxcharge = 15000
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/end{
dir = 1
},
+/turf/open/floor/plasteel,
/area/storage/eva)
-"aKE" = (
+"aJc" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/storage/eva)
-"aKF" = (
+"aJd" = (
/obj/structure/rack{
dir = 8;
layer = 2.9
@@ -18247,12 +17619,12 @@
pixel_x = -4;
pixel_y = 1
},
-/turf/open/floor/plasteel/black,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel/black,
/area/storage/eva)
-"aKG" = (
+"aJe" = (
/obj/structure/closet/crate,
/obj/item/weapon/melee/flyswatter,
/obj/item/device/radio/intercom{
@@ -18264,7 +17636,7 @@
dir = 1
},
/area/teleporter)
-"aKH" = (
+"aJf" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -18272,30 +17644,30 @@
},
/turf/open/floor/plasteel,
/area/teleporter)
-"aKI" = (
+"aJg" = (
/obj/machinery/holopad,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel,
/area/teleporter)
-"aKJ" = (
+"aJh" = (
/turf/open/floor/plasteel,
/area/teleporter)
-"aKK" = (
+"aJi" = (
/turf/open/floor/plasteel/blue/corner{
dir = 4
},
/area/teleporter)
-"aKL" = (
+"aJj" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/poddoor/shutters{
id = "teleshutter";
name = "Teleporter Shutters"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
/area/teleporter)
-"aKM" = (
+"aJk" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
@@ -18303,7 +17675,7 @@
dir = 1
},
/area/hallway/primary/central)
-"aKN" = (
+"aJl" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -18315,7 +17687,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aKO" = (
+"aJm" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -18324,7 +17696,7 @@
dir = 4
},
/area/hallway/primary/central)
-"aKP" = (
+"aJn" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -18332,7 +17704,7 @@
},
/turf/open/floor/plating,
/area/security/checkpoint/supply)
-"aKQ" = (
+"aJo" = (
/obj/machinery/recharger{
pixel_y = 4
},
@@ -18344,7 +17716,7 @@
dir = 8
},
/area/security/checkpoint/supply)
-"aKR" = (
+"aJp" = (
/obj/structure/chair/office/dark{
dir = 1
},
@@ -18354,7 +17726,7 @@
},
/turf/open/floor/plasteel,
/area/security/checkpoint/supply)
-"aKS" = (
+"aJq" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
layer = 2.4;
@@ -18364,7 +17736,7 @@
dir = 4
},
/area/security/checkpoint/supply)
-"aKT" = (
+"aJr" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/disposalpipe/wrapsortjunction{
@@ -18372,37 +17744,37 @@
},
/turf/open/floor/plating,
/area/quartermaster/office)
-"aKU" = (
+"aJs" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
-/area/quartermaster/office)
-"aKV" = (
/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"aJt" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel,
/area/quartermaster/office)
-"aKW" = (
+"aJu" = (
/obj/machinery/conveyor_switch/oneway{
id = "packageSort2"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel,
/area/quartermaster/office)
-"aKX" = (
+"aJv" = (
/obj/structure/table,
/obj/item/device/destTagger,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel,
/area/quartermaster/office)
-"aKY" = (
+"aJw" = (
/obj/item/stack/wrapping_paper{
pixel_x = 3;
pixel_y = 4
@@ -18412,12 +17784,12 @@
pixel_y = -1
},
/obj/structure/table,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel,
/area/quartermaster/office)
-"aKZ" = (
+"aJx" = (
/obj/item/weapon/storage/box,
/obj/item/weapon/storage/box,
/obj/item/weapon/storage/box,
@@ -18430,12 +17802,12 @@
pixel_x = 32;
pixel_y = 0
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel,
/area/quartermaster/office)
-"aLa" = (
+"aJy" = (
/obj/structure/closet/crate/freezer,
/obj/structure/sign/poster{
pixel_x = -32;
@@ -18443,14 +17815,14 @@
},
/turf/open/floor/plasteel/floorgrime,
/area/quartermaster/storage)
-"aLb" = (
+"aJz" = (
/turf/open/floor/plasteel/floorgrime,
/area/quartermaster/storage)
-"aLc" = (
+"aJA" = (
/obj/structure/closet/crate,
/turf/open/floor/plasteel/floorgrime,
/area/quartermaster/storage)
-"aLd" = (
+"aJB" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -18458,12 +17830,12 @@
},
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aLe" = (
+"aJC" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aLf" = (
+"aJD" = (
/obj/machinery/mass_driver{
dir = 1;
id = "trash"
@@ -18475,14 +17847,14 @@
},
/turf/open/floor/plating,
/area/maintenance/disposal)
-"aLg" = (
+"aJE" = (
/obj/machinery/mineral/stacking_machine{
input_dir = 8;
output_dir = 4
},
/turf/open/floor/plating,
/area/maintenance/disposal)
-"aLh" = (
+"aJF" = (
/obj/machinery/conveyor{
dir = 4;
id = "garbagestacked"
@@ -18495,14 +17867,14 @@
},
/turf/open/floor/plating,
/area/maintenance/disposal)
-"aLi" = (
+"aJG" = (
/obj/machinery/conveyor{
dir = 4;
id = "garbagestacked"
},
/turf/open/floor/plating,
/area/maintenance/disposal)
-"aLj" = (
+"aJH" = (
/obj/machinery/disposal/deliveryChute{
dir = 8
},
@@ -18511,23 +17883,23 @@
},
/turf/open/floor/plating,
/area/maintenance/disposal)
-"aLk" = (
+"aJI" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
},
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plating,
/area/maintenance/disposal)
-"aLl" = (
+"aJJ" = (
/obj/structure/chair{
dir = 4
},
/turf/open/floor/mineral/titanium,
/area/shuttle/escape)
-"aLm" = (
+"aJK" = (
/obj/structure/chair{
dir = 8
},
@@ -18536,7 +17908,7 @@
},
/turf/open/floor/mineral/titanium,
/area/shuttle/escape)
-"aLn" = (
+"aJL" = (
/obj/structure/chair{
dir = 4
},
@@ -18545,30 +17917,20 @@
},
/turf/open/floor/mineral/titanium,
/area/shuttle/escape)
-"aLo" = (
+"aJM" = (
/turf/open/floor/carpet,
/area/shuttle/escape)
-"aLp" = (
+"aJN" = (
/obj/structure/chair/comfy/beige,
/turf/open/floor/carpet,
/area/shuttle/escape)
-"aLq" = (
+"aJO" = (
/obj/structure/chair{
dir = 8
},
/turf/open/floor/mineral/titanium,
/area/shuttle/escape)
-"aLr" = (
-/obj/structure/table,
-/obj/item/weapon/storage/firstaid/regular,
-/turf/open/floor/plasteel/escape{
- tag = "icon-escape (NORTHWEST)";
- dir = 9
- },
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
-"aLs" = (
+"aJP" = (
/obj/structure/chair,
/turf/open/floor/plasteel/escape{
dir = 1
@@ -18576,17 +17938,10 @@
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
})
-"aLt" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/escape{
- dir = 1
- },
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
-"aLu" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
+"aJQ" = (
+/obj/structure/chair,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
},
/turf/open/floor/plasteel/escape{
dir = 1
@@ -18594,26 +17949,20 @@
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
})
-"aLv" = (
+"aJR" = (
/obj/machinery/light{
dir = 1
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/item/device/radio/intercom{
- dir = 0;
- name = "Station Intercom (General)";
- pixel_x = 0;
- pixel_y = 26
- },
/turf/open/floor/plasteel/escape{
dir = 1
},
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
})
-"aLw" = (
+"aJS" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -18635,7 +17984,7 @@
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
})
-"aLx" = (
+"aJT" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-16";
layer = 4.1
@@ -18661,14 +18010,14 @@
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
})
-"aLy" = (
+"aJU" = (
/obj/structure/table,
/obj/item/weapon/hand_labeler,
/turf/open/floor/plasteel/neutral/side{
dir = 10
},
/area/storage/art)
-"aLz" = (
+"aJV" = (
/obj/structure/table,
/obj/item/weapon/storage/crayons,
/obj/item/weapon/storage/crayons,
@@ -18679,7 +18028,7 @@
},
/turf/open/floor/plasteel/neutral/side,
/area/storage/art)
-"aLA" = (
+"aJW" = (
/obj/structure/table,
/obj/item/stack/sheet/metal{
amount = 20;
@@ -18699,14 +18048,14 @@
dir = 6
},
/area/storage/art)
-"aLB" = (
+"aJX" = (
/obj/structure/grille/broken,
/turf/open/floor/plating{
burnt = 1;
icon_state = "panelscorched"
},
/area/maintenance/fsmaint2)
-"aLC" = (
+"aJY" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -18723,7 +18072,7 @@
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aLD" = (
+"aJZ" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -18734,7 +18083,7 @@
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aLE" = (
+"aKa" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -18745,7 +18094,7 @@
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aLF" = (
+"aKb" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -18753,7 +18102,7 @@
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aLG" = (
+"aKc" = (
/obj/machinery/suit_storage_unit/standard_unit,
/obj/machinery/light{
dir = 8
@@ -18768,28 +18117,28 @@
dir = 4;
network = list("SS13")
},
-/turf/open/floor/plasteel/black,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plasteel/black,
/area/storage/eva)
-"aLH" = (
+"aKd" = (
/obj/structure/tank_dispenser/oxygen,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/end,
+/turf/open/floor/plasteel,
/area/storage/eva)
-"aLI" = (
+"aKe" = (
/obj/machinery/suit_storage_unit/standard_unit,
/obj/machinery/light{
dir = 4;
icon_state = "tube1"
},
-/turf/open/floor/plasteel/black,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel/black,
/area/storage/eva)
-"aLJ" = (
+"aKf" = (
/obj/structure/table,
/obj/item/weapon/hand_tele,
/obj/machinery/light{
@@ -18808,7 +18157,7 @@
dir = 1
},
/area/teleporter)
-"aLK" = (
+"aKg" = (
/obj/structure/chair/stool,
/obj/structure/cable{
d1 = 1;
@@ -18822,7 +18171,7 @@
},
/turf/open/floor/plasteel,
/area/teleporter)
-"aLL" = (
+"aKh" = (
/obj/structure/chair/stool,
/obj/structure/cable{
d1 = 4;
@@ -18835,7 +18184,7 @@
},
/turf/open/floor/plasteel,
/area/teleporter)
-"aLM" = (
+"aKi" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -18849,7 +18198,7 @@
},
/turf/open/floor/plasteel,
/area/teleporter)
-"aLN" = (
+"aKj" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -18862,7 +18211,7 @@
dir = 4
},
/area/teleporter)
-"aLO" = (
+"aKk" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/poddoor/shutters{
id = "teleshutter";
@@ -18877,10 +18226,10 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
/area/teleporter)
-"aLP" = (
+"aKl" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -18894,7 +18243,7 @@
dir = 1
},
/area/hallway/primary/central)
-"aLQ" = (
+"aKm" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -18910,7 +18259,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aLR" = (
+"aKn" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -18923,7 +18272,7 @@
dir = 4
},
/area/hallway/primary/central)
-"aLS" = (
+"aKo" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/cable{
@@ -18933,7 +18282,7 @@
},
/turf/open/floor/plating,
/area/security/checkpoint/supply)
-"aLT" = (
+"aKp" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -18943,15 +18292,15 @@
dir = 8
},
/area/security/checkpoint/supply)
-"aLU" = (
+"aKq" = (
/turf/open/floor/plasteel,
/area/security/checkpoint/supply)
-"aLV" = (
+"aKr" = (
/turf/open/floor/plasteel/red/side{
dir = 4
},
/area/security/checkpoint/supply)
-"aLW" = (
+"aKs" = (
/obj/machinery/door/airlock/glass_security{
name = "Cargo Security Post";
req_access_txt = "63"
@@ -18960,7 +18309,7 @@
dir = 8
},
/area/quartermaster/office)
-"aLX" = (
+"aKt" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -18970,13 +18319,13 @@
},
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"aLY" = (
+"aKu" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"aLZ" = (
+"aKv" = (
/obj/structure/chair/stool,
/obj/structure/disposalpipe/segment{
dir = 2;
@@ -18987,14 +18336,14 @@
},
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"aMa" = (
+"aKw" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"aMb" = (
+"aKx" = (
/obj/machinery/door/window/eastleft{
dir = 8;
icon_state = "right";
@@ -19007,46 +18356,46 @@
/obj/machinery/light/small,
/turf/open/floor/plating,
/area/quartermaster/office)
-"aMc" = (
+"aKy" = (
/obj/structure/disposalpipe/trunk{
dir = 8
},
/obj/structure/disposaloutlet{
dir = 8
},
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plating,
/area/quartermaster/office)
-"aMd" = (
+"aKz" = (
/obj/effect/spawner/lootdrop/maintenance,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1
},
/turf/open/floor/plasteel/floorgrime,
/area/quartermaster/storage)
-"aMe" = (
+"aKA" = (
/obj/item/stack/sheet/cardboard,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
/turf/open/floor/plasteel/floorgrime,
/area/quartermaster/storage)
-"aMf" = (
+"aKB" = (
/obj/structure/closet/crate,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/floorgrime,
/area/quartermaster/storage)
-"aMg" = (
+"aKC" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/floorgrime,
/area/quartermaster/storage)
-"aMh" = (
+"aKD" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
layer = 2.4;
@@ -19054,24 +18403,24 @@
},
/turf/open/floor/plasteel/floorgrime,
/area/quartermaster/storage)
-"aMi" = (
+"aKE" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/quartermaster/storage)
-"aMj" = (
+"aKF" = (
/obj/structure/shuttle/engine/propulsion{
icon_state = "propulsion_r"
},
/turf/open/floor/plating/airless,
/area/shuttle/supply)
-"aMk" = (
+"aKG" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/item/weapon/shard,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aMl" = (
+"aKH" = (
/obj/machinery/light/small{
dir = 8
},
@@ -19081,69 +18430,50 @@
},
/turf/open/floor/plating,
/area/maintenance/disposal)
-"aMm" = (
+"aKI" = (
/obj/machinery/conveyor{
dir = 4;
id = "garbage"
},
/turf/open/floor/plating,
/area/maintenance/disposal)
-"aMn" = (
+"aKJ" = (
/obj/machinery/light/small{
dir = 4
},
/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plating,
/area/maintenance/disposal)
-"aMo" = (
+"aKK" = (
/obj/structure/chair/comfy/beige{
dir = 4
},
/turf/open/floor/carpet,
/area/shuttle/escape)
-"aMp" = (
+"aKL" = (
/obj/structure/table/wood/poker,
/obj/item/toy/cards/deck,
/turf/open/floor/carpet,
/area/shuttle/escape)
-"aMq" = (
+"aKM" = (
/obj/structure/chair/comfy/beige{
dir = 8
},
/turf/open/floor/carpet,
/area/shuttle/escape)
-"aMr" = (
-/obj/structure/chair{
- dir = 4
- },
-/turf/open/floor/plasteel/escape{
- dir = 8
- },
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
-"aMs" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8;
- initialize_directions = 11
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
-"aMt" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+"aKN" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
})
-"aMu" = (
+"aKO" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -19151,7 +18481,7 @@
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
})
-"aMv" = (
+"aKP" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -19165,7 +18495,7 @@
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
})
-"aMw" = (
+"aKQ" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
name = "Departure Lounge"
@@ -19177,7 +18507,7 @@
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
})
-"aMx" = (
+"aKR" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
@@ -19185,7 +18515,7 @@
/area/chapel/main{
name = "Monastery"
})
-"aMy" = (
+"aKS" = (
/obj/machinery/light/small{
dir = 1
},
@@ -19194,7 +18524,7 @@
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aMz" = (
+"aKT" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-22"
},
@@ -19203,21 +18533,21 @@
icon_state = "platingdmg3"
},
/area/maintenance/fsmaint2)
-"aMA" = (
+"aKU" = (
/turf/open/floor/plating{
broken = 1;
icon_state = "platingdmg3"
},
/area/maintenance/fsmaint2)
-"aMB" = (
+"aKV" = (
/obj/item/trash/cheesie,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aMC" = (
+"aKW" = (
/obj/structure/girder,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aMD" = (
+"aKX" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance{
lootcount = 2;
@@ -19226,7 +18556,7 @@
/obj/item/clothing/gloves/color/random,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aME" = (
+"aKY" = (
/obj/machinery/power/apc{
dir = 1;
name = "Bar Maintenance APC";
@@ -19239,15 +18569,15 @@
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aMF" = (
+"aKZ" = (
/turf/closed/wall,
/area/crew_quarters/bar)
-"aMG" = (
+"aLa" = (
/obj/structure/grille/broken,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aMH" = (
+"aLb" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -19255,18 +18585,18 @@
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aMI" = (
+"aLc" = (
/obj/machinery/suit_storage_unit/standard_unit,
/obj/structure/extinguisher_cabinet{
pixel_x = -26;
pixel_y = 0
},
-/turf/open/floor/plasteel/black,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plasteel/black,
/area/storage/eva)
-"aMJ" = (
+"aLd" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -19279,58 +18609,58 @@
},
/turf/open/floor/plasteel,
/area/storage/eva)
-"aMK" = (
+"aLe" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
},
/turf/open/floor/plasteel,
/area/storage/eva)
-"aML" = (
+"aLf" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
},
/turf/open/floor/plasteel,
/area/storage/eva)
-"aMM" = (
+"aLg" = (
/obj/machinery/suit_storage_unit/standard_unit,
-/turf/open/floor/plasteel/black,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel/black,
/area/storage/eva)
-"aMN" = (
+"aLh" = (
/obj/structure/table,
/obj/item/device/radio/beacon,
/turf/open/floor/plasteel/blue/side{
dir = 10
},
/area/teleporter)
-"aMO" = (
+"aLi" = (
/obj/machinery/computer/teleporter,
/turf/open/floor/plasteel/blue/side,
/area/teleporter)
-"aMP" = (
+"aLj" = (
/obj/machinery/teleport/station,
/turf/open/floor/plasteel/blue/side,
/area/teleporter)
-"aMQ" = (
+"aLk" = (
/obj/machinery/teleport/hub,
/turf/open/floor/plating,
/area/teleporter)
-"aMR" = (
+"aLl" = (
/obj/structure/closet/crate,
/obj/item/weapon/crowbar,
/turf/open/floor/plasteel/blue/side{
dir = 6
},
/area/teleporter)
-"aMS" = (
+"aLm" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aMT" = (
+"aLn" = (
/obj/machinery/light{
dir = 4;
icon_state = "tube1"
@@ -19340,7 +18670,7 @@
dir = 4
},
/area/hallway/primary/central)
-"aMU" = (
+"aLo" = (
/obj/structure/cable,
/obj/machinery/power/apc{
dir = 8;
@@ -19353,7 +18683,7 @@
dir = 10
},
/area/security/checkpoint/supply)
-"aMV" = (
+"aLp" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
on = 1;
@@ -19362,29 +18692,29 @@
},
/turf/open/floor/plasteel/red/side,
/area/security/checkpoint/supply)
-"aMW" = (
+"aLq" = (
/obj/structure/filingcabinet,
/turf/open/floor/plasteel/red/side{
dir = 6
},
/area/security/checkpoint/supply)
-"aMX" = (
+"aLr" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/quartermaster/office)
-"aMY" = (
+"aLs" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"aMZ" = (
+"aLt" = (
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"aNa" = (
+"aLu" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"aNb" = (
+"aLv" = (
/obj/structure/disposalpipe/wrapsortjunction{
dir = 1
},
@@ -19394,7 +18724,7 @@
},
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"aNc" = (
+"aLw" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -19408,7 +18738,7 @@
},
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"aNd" = (
+"aLx" = (
/obj/machinery/button/door{
id = "qm_warehouse";
name = "Warehouse Door Control";
@@ -19419,16 +18749,16 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/floorgrime,
/area/quartermaster/storage)
-"aNe" = (
+"aLy" = (
/obj/item/device/flashlight,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/floorgrime,
/area/quartermaster/storage)
-"aNf" = (
+"aLz" = (
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plasteel/floorgrime,
/area/quartermaster/storage)
-"aNg" = (
+"aLA" = (
/obj/structure/closet/crate{
icon_state = "crateopen";
opened = 1
@@ -19436,14 +18766,14 @@
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plasteel/floorgrime,
/area/quartermaster/storage)
-"aNh" = (
+"aLB" = (
/obj/structure/closet/crate/medical,
/turf/open/floor/plasteel/floorgrime,
/area/quartermaster/storage)
-"aNi" = (
+"aLC" = (
/turf/closed/wall/mineral/titanium,
/area/shuttle/supply)
-"aNj" = (
+"aLD" = (
/obj/structure/shuttle/engine/heater{
icon_state = "heater";
dir = 1
@@ -19451,7 +18781,7 @@
/obj/structure/window/reinforced,
/turf/open/floor/plating/airless,
/area/shuttle/supply)
-"aNk" = (
+"aLE" = (
/obj/structure/disposalpipe/sortjunction{
dir = 2;
icon_state = "pipe-j2s";
@@ -19460,13 +18790,13 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aNl" = (
+"aLF" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/closed/wall,
/area/maintenance/disposal)
-"aNm" = (
+"aLG" = (
/obj/machinery/conveyor{
dir = 8;
id = "garbage"
@@ -19477,12 +18807,12 @@
/obj/structure/disposalpipe/trunk{
dir = 8
},
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plating,
/area/maintenance/disposal)
-"aNn" = (
+"aLH" = (
/obj/machinery/conveyor{
dir = 8;
id = "garbage"
@@ -19493,7 +18823,7 @@
},
/turf/open/floor/plating,
/area/maintenance/disposal)
-"aNo" = (
+"aLI" = (
/obj/machinery/conveyor{
dir = 8;
id = "garbage"
@@ -19501,24 +18831,24 @@
/obj/machinery/recycler,
/turf/open/floor/plating,
/area/maintenance/disposal)
-"aNp" = (
+"aLJ" = (
/obj/machinery/conveyor{
dir = 2;
id = "garbage"
},
/turf/open/floor/plating,
/area/maintenance/disposal)
-"aNq" = (
+"aLK" = (
/obj/structure/disposalpipe/segment,
/obj/effect/landmark{
name = "revenantspawn"
},
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plating,
/area/maintenance/disposal)
-"aNr" = (
+"aLL" = (
/obj/structure/chair/comfy/beige{
tag = "icon-comfychair (NORTH)";
icon_state = "comfychair";
@@ -19526,20 +18856,7 @@
},
/turf/open/floor/carpet,
/area/shuttle/escape)
-"aNs" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = -32;
- pixel_y = 0
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
-"aNt" = (
+"aLM" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
on = 1;
@@ -19550,13 +18867,13 @@
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
})
-"aNu" = (
+"aLN" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
})
-"aNv" = (
+"aLO" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -19570,7 +18887,7 @@
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
})
-"aNw" = (
+"aLP" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -19578,7 +18895,7 @@
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
})
-"aNx" = (
+"aLQ" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
name = "Departure Lounge"
@@ -19590,7 +18907,7 @@
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
})
-"aNy" = (
+"aLR" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -19600,7 +18917,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aNz" = (
+"aLS" = (
/obj/structure/disposalpipe/junction{
dir = 8;
icon_state = "pipe-j2"
@@ -19613,28 +18930,28 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aNA" = (
+"aLT" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral/corner,
/area/hallway/primary/central)
-"aNB" = (
+"aLU" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 8
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aNC" = (
+"aLV" = (
/obj/structure/grille/broken,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aND" = (
+"aLW" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -19645,7 +18962,7 @@
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aNE" = (
+"aLX" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -19656,7 +18973,7 @@
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aNF" = (
+"aLY" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -19679,7 +18996,7 @@
icon_state = "platingdmg3"
},
/area/maintenance/fsmaint2)
-"aNG" = (
+"aLZ" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -19696,7 +19013,7 @@
icon_state = "panelscorched"
},
/area/maintenance/fsmaint2)
-"aNH" = (
+"aMa" = (
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance,
/obj/structure/cable{
@@ -19712,7 +19029,7 @@
icon_state = "panelscorched"
},
/area/maintenance/fsmaint2)
-"aNI" = (
+"aMb" = (
/obj/structure/grille,
/obj/structure/cable{
d1 = 4;
@@ -19724,7 +19041,7 @@
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aNJ" = (
+"aMc" = (
/obj/structure/grille/broken,
/obj/structure/cable{
d1 = 4;
@@ -19736,7 +19053,7 @@
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aNK" = (
+"aMd" = (
/obj/item/weapon/reagent_containers/glass/bucket,
/obj/structure/cable{
d1 = 4;
@@ -19748,7 +19065,7 @@
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aNL" = (
+"aMe" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -19759,7 +19076,7 @@
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aNM" = (
+"aMf" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -19779,7 +19096,7 @@
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aNN" = (
+"aMg" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -19793,7 +19110,7 @@
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aNO" = (
+"aMh" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -19816,7 +19133,7 @@
icon_state = "platingdmg3"
},
/area/maintenance/fsmaint2)
-"aNP" = (
+"aMi" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -19833,12 +19150,12 @@
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aNQ" = (
+"aMj" = (
/obj/machinery/reagentgrinder,
/obj/structure/table/wood,
/turf/open/floor/wood,
/area/crew_quarters/bar)
-"aNR" = (
+"aMk" = (
/obj/machinery/vending/cigarette,
/obj/machinery/light{
dir = 1
@@ -19847,7 +19164,7 @@
icon_state = "wood-broken6"
},
/area/crew_quarters/bar)
-"aNS" = (
+"aMl" = (
/obj/machinery/vending/coffee,
/obj/machinery/camera{
c_tag = "Bar Backroom";
@@ -19856,17 +19173,17 @@
},
/turf/open/floor/wood,
/area/crew_quarters/bar)
-"aNT" = (
+"aMm" = (
/obj/structure/closet/secure_closet/bar{
req_access_txt = "25"
},
/turf/open/floor/wood,
/area/crew_quarters/bar)
-"aNU" = (
+"aMn" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aNV" = (
+"aMo" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -19875,17 +19192,17 @@
/obj/item/weapon/broken_bottle,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aNW" = (
+"aMp" = (
/obj/structure/table,
/obj/item/stack/sheet/plasteel{
amount = 10
},
-/turf/open/floor/plasteel/black,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plasteel/black,
/area/storage/eva)
-"aNX" = (
+"aMq" = (
/obj/structure/table,
/obj/item/stack/sheet/metal{
amount = 50
@@ -19905,7 +19222,7 @@
},
/turf/open/floor/plasteel,
/area/storage/eva)
-"aNY" = (
+"aMr" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -19914,7 +19231,7 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel,
/area/storage/eva)
-"aNZ" = (
+"aMs" = (
/obj/structure/table,
/obj/item/stack/sheet/rglass{
amount = 50
@@ -19934,7 +19251,7 @@
},
/turf/open/floor/plasteel,
/area/storage/eva)
-"aOa" = (
+"aMt" = (
/obj/structure/table,
/obj/item/stack/sheet/metal{
amount = 50
@@ -19942,12 +19259,12 @@
/obj/item/stack/sheet/rglass{
amount = 50
},
-/turf/open/floor/plasteel/black,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel/black,
/area/storage/eva)
-"aOb" = (
+"aMu" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/airalarm{
dir = 4;
@@ -19959,12 +19276,12 @@
tag = "icon-browncorner (NORTH)"
},
/area/hallway/primary/central)
-"aOc" = (
+"aMv" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/security/checkpoint/supply)
-"aOd" = (
+"aMw" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_security{
name = "Cargo Security Post";
@@ -19975,16 +19292,16 @@
dir = 1
},
/area/security/checkpoint/supply)
-"aOe" = (
+"aMx" = (
/obj/structure/chair/stool,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"aOf" = (
+"aMy" = (
/obj/structure/chair/stool,
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"aOg" = (
+"aMz" = (
/obj/structure/table/reinforced,
/obj/item/weapon/folder/yellow,
/obj/item/weapon/pen,
@@ -19996,15 +19313,15 @@
},
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"aOh" = (
+"aMA" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"aOi" = (
+"aMB" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"aOj" = (
+"aMC" = (
/obj/structure/closet/crate,
/obj/item/weapon/reagent_containers/food/snacks/donut,
/obj/item/weapon/reagent_containers/food/snacks/donut,
@@ -20012,134 +19329,134 @@
/obj/item/weapon/reagent_containers/food/snacks/donut,
/turf/open/floor/plating,
/area/quartermaster/office)
-"aOk" = (
+"aMD" = (
/obj/machinery/door/poddoor/shutters{
id = "qm_warehouse";
name = "warehouse shutters"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel{
name = "floor"
},
-/obj/effect/turf_decal/delivery,
/area/quartermaster/storage)
-"aOl" = (
+"aME" = (
/obj/machinery/door/poddoor/shutters{
id = "qm_warehouse";
name = "warehouse shutters"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel{
name = "floor"
},
-/obj/effect/turf_decal/delivery,
/area/quartermaster/storage)
-"aOm" = (
+"aMF" = (
/obj/machinery/door/poddoor/shutters{
id = "qm_warehouse";
name = "warehouse shutters"
},
+/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel{
name = "floor"
},
-/obj/effect/turf_decal/delivery,
/area/quartermaster/storage)
-"aOn" = (
+"aMG" = (
/obj/structure/closet/crate/internals,
/turf/open/floor/plasteel/floorgrime,
/area/quartermaster/storage)
-"aOo" = (
+"aMH" = (
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/supply)
-"aOp" = (
+"aMI" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aOq" = (
+"aMJ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall,
/area/maintenance/disposal)
-"aOr" = (
+"aMK" = (
/obj/structure/chair{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plating,
/area/maintenance/disposal)
-"aOs" = (
+"aML" = (
/obj/item/trash/can,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plating,
/area/maintenance/disposal)
-"aOt" = (
+"aMM" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
on = 1;
scrub_N2O = 0;
scrub_Toxins = 0
},
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plating,
/area/maintenance/disposal)
-"aOu" = (
+"aMN" = (
/obj/machinery/conveyor_switch/oneway{
convdir = -1;
id = "garbage";
name = "disposal coveyor"
},
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plating,
/area/maintenance/disposal)
-"aOv" = (
+"aMO" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
on = 1
},
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plating,
/area/maintenance/disposal)
-"aOw" = (
+"aMP" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/airalarm{
dir = 8;
icon_state = "alarm0";
pixel_x = 24
},
-/turf/open/floor/plating{
- tag = "icon-warnplatecorner (EAST)"
- },
/obj/effect/turf_decal/stripes/corner{
dir = 4
},
+/turf/open/floor/plating{
+ tag = "icon-warnplatecorner (EAST)"
+ },
/area/maintenance/disposal)
-"aOx" = (
+"aMQ" = (
/obj/machinery/door/airlock/titanium{
name = "Emergency Shuttle Airlock"
},
/turf/open/floor/plating,
/area/shuttle/escape)
-"aOy" = (
+"aMR" = (
/obj/machinery/light{
dir = 1
},
@@ -20147,7 +19464,7 @@
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
})
-"aOz" = (
+"aMS" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -20157,20 +19474,20 @@
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
})
-"aOA" = (
+"aMT" = (
/obj/structure/chair,
/turf/open/floor/plasteel,
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
})
-"aOB" = (
+"aMU" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
/turf/open/floor/plating,
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
})
-"aOC" = (
+"aMV" = (
/obj/machinery/light{
dir = 4;
icon_state = "tube1"
@@ -20178,7 +19495,7 @@
/obj/machinery/vending/coffee,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aOD" = (
+"aMW" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -20187,16 +19504,16 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aOE" = (
+"aMX" = (
/obj/structure/cable{
icon_state = "1-8"
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aOF" = (
+"aMY" = (
/turf/closed/wall,
/area/hydroponics)
-"aOG" = (
+"aMZ" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/door/airlock/maintenance{
name = "Hydroponics Maintenance";
@@ -20211,10 +19528,10 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/hydroponics)
-"aOH" = (
+"aNa" = (
/turf/closed/wall,
/area/crew_quarters/kitchen)
-"aOI" = (
+"aNb" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -20229,7 +19546,7 @@
},
/turf/open/floor/plating,
/area/crew_quarters/kitchen)
-"aOJ" = (
+"aNc" = (
/obj/structure/plasticflaps{
opacity = 1
},
@@ -20238,7 +19555,7 @@
icon_state = "platingdmg3"
},
/area/maintenance/fsmaint2)
-"aOK" = (
+"aNd" = (
/obj/item/weapon/reagent_containers/food/drinks/shaker,
/obj/item/weapon/gun/ballistic/revolver/doublebarrel,
/obj/structure/table/wood,
@@ -20247,7 +19564,7 @@
/obj/item/stack/spacecash/c100,
/turf/open/floor/wood,
/area/crew_quarters/bar)
-"aOL" = (
+"aNe" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -20261,7 +19578,7 @@
icon_state = "wood-broken"
},
/area/crew_quarters/bar)
-"aOM" = (
+"aNf" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -20275,7 +19592,7 @@
},
/turf/open/floor/wood,
/area/crew_quarters/bar)
-"aON" = (
+"aNg" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -20286,7 +19603,7 @@
},
/turf/open/floor/wood,
/area/crew_quarters/bar)
-"aOO" = (
+"aNh" = (
/obj/machinery/door/airlock/maintenance{
name = "Bar Storage Maintenance";
req_access_txt = "25"
@@ -20301,7 +19618,7 @@
},
/turf/open/floor/plating,
/area/crew_quarters/bar)
-"aOP" = (
+"aNi" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -20313,7 +19630,7 @@
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aOQ" = (
+"aNj" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -20327,7 +19644,7 @@
/obj/item/chair,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aOR" = (
+"aNk" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/maintenance{
name = "EVA Maintenance";
@@ -20341,7 +19658,7 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
/area/storage/eva)
-"aOS" = (
+"aNl" = (
/obj/structure/closet/crate{
icon_state = "crateopen";
opened = 1
@@ -20349,35 +19666,35 @@
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aOT" = (
+"aNm" = (
/obj/item/trash/tray,
/obj/machinery/light/small{
dir = 1
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aOU" = (
+"aNn" = (
/obj/structure/closet/secure_closet/freezer/cream_pie,
/obj/item/weapon/grown/bananapeel,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aOV" = (
+"aNo" = (
/obj/structure/closet/secure_closet/freezer/cream_pie,
/obj/item/seeds/banana,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aOW" = (
+"aNp" = (
/turf/open/floor/plasteel/brown/corner{
dir = 4
},
/area/quartermaster/office)
-"aOX" = (
+"aNq" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/brown/corner{
dir = 4
},
/area/quartermaster/office)
-"aOY" = (
+"aNr" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/door/firedoor,
/obj/structure/table/reinforced,
@@ -20386,10 +19703,10 @@
name = "Delivery Desk";
req_access_txt = "50"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
/area/quartermaster/office)
-"aOZ" = (
+"aNs" = (
/obj/machinery/door/firedoor,
/obj/structure/table/reinforced,
/obj/machinery/door/window/westleft{
@@ -20397,10 +19714,10 @@
name = "Delivery Desk";
req_access_txt = "50"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
/area/quartermaster/office)
-"aPa" = (
+"aNt" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/door/airlock/glass_mining{
name = "Mailroom";
@@ -20409,13 +19726,13 @@
},
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"aPb" = (
+"aNu" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/quartermaster/office)
-"aPc" = (
+"aNv" = (
/obj/machinery/button/door{
id = "qm_warehouse";
name = "Warehouse Door Control";
@@ -20424,25 +19741,25 @@
req_access_txt = "31"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel,
/area/quartermaster/storage)
-"aPd" = (
+"aNw" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
-/area/quartermaster/storage)
-"aPe" = (
/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aNx" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel,
/area/quartermaster/storage)
-"aPf" = (
+"aNy" = (
/obj/machinery/power/apc{
cell_type = 2500;
dir = 4;
@@ -20458,18 +19775,18 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aPg" = (
+"aNz" = (
/obj/effect/landmark{
name = "xeno_spawn";
pixel_x = -1
},
/turf/open/floor/plating,
/area/maintenance/disposal)
-"aPh" = (
+"aNA" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/disposal)
-"aPi" = (
+"aNB" = (
/obj/machinery/power/apc{
dir = 4;
name = "Disposal APC";
@@ -20484,42 +19801,60 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
/area/maintenance/disposal)
-"aPj" = (
+"aNC" = (
/obj/machinery/door/airlock/glass{
name = "Emergency Shuttle Infirmary"
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/escape)
-"aPk" = (
-/obj/machinery/status_display{
- dir = 4;
- layer = 4;
- pixel_x = -32;
- pixel_y = 0
+"aND" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/ausbushes/sunnybush,
+/obj/structure/window/reinforced{
+ dir = 8
},
-/obj/machinery/camera{
- c_tag = "Departure Lounge";
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/turf/open/floor/plasteel,
+/obj/machinery/camera{
+ c_tag = "Departures - Center";
+ dir = 4;
+ name = "security camera";
+ pixel_x = 6;
+ pixel_y = -7;
+ pixel_x = 0
+ },
+/turf/open/floor/grass,
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
})
-"aPl" = (
-/obj/effect/landmark/event_spawn,
-/obj/item/device/radio/beacon,
-/turf/open/floor/plasteel,
+"aNE" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/ausbushes/sunnybush,
+/obj/structure/window/reinforced{
+ dir = 4;
+ layer = 2.9
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/grass,
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
})
-"aPm" = (
-/obj/machinery/holopad,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+"aNF" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel,
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
})
-"aPn" = (
+"aNG" = (
/obj/structure/table,
/obj/item/weapon/storage/box/matches{
pixel_x = -3;
@@ -20529,7 +19864,7 @@
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
})
-"aPo" = (
+"aNH" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -20538,7 +19873,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aPp" = (
+"aNI" = (
/obj/structure/sink{
pixel_y = 28
},
@@ -20548,7 +19883,7 @@
},
/turf/open/floor/plasteel/hydrofloor,
/area/hydroponics)
-"aPq" = (
+"aNJ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -20558,18 +19893,18 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/hydrofloor,
/area/hydroponics)
-"aPr" = (
+"aNK" = (
/obj/structure/closet/secure_closet/hydroponics,
/obj/machinery/light/small{
dir = 1
},
/turf/open/floor/plasteel/hydrofloor,
/area/hydroponics)
-"aPs" = (
+"aNL" = (
/obj/structure/closet/secure_closet/hydroponics,
/turf/open/floor/plasteel/hydrofloor,
/area/hydroponics)
-"aPt" = (
+"aNM" = (
/obj/machinery/airalarm{
pixel_y = 24
},
@@ -20579,11 +19914,11 @@
/obj/machinery/plantgenes,
/turf/open/floor/plasteel/hydrofloor,
/area/hydroponics)
-"aPu" = (
+"aNN" = (
/obj/machinery/chem_master/condimaster,
/turf/open/floor/plasteel/hydrofloor,
/area/hydroponics)
-"aPv" = (
+"aNO" = (
/obj/structure/table,
/obj/item/weapon/book/manual/hydroponics_pod_people,
/obj/item/weapon/paper/hydroponics,
@@ -20592,7 +19927,7 @@
/obj/item/weapon/reagent_containers/dropper,
/turf/open/floor/plasteel/hydrofloor,
/area/hydroponics)
-"aPw" = (
+"aNP" = (
/obj/machinery/door/airlock/maintenance{
name = "Kitchen Maintenance";
req_access_txt = "28"
@@ -20608,21 +19943,21 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/crew_quarters/kitchen)
-"aPx" = (
+"aNQ" = (
/obj/machinery/chem_master/condimaster{
name = "CondiMaster Neo";
pixel_x = -4
},
/turf/open/floor/plasteel/showroomfloor,
/area/crew_quarters/kitchen)
-"aPy" = (
+"aNR" = (
/obj/machinery/gibber,
/turf/open/floor/plasteel/showroomfloor,
/area/crew_quarters/kitchen)
-"aPz" = (
+"aNS" = (
/turf/open/floor/plasteel/showroomfloor,
/area/crew_quarters/kitchen)
-"aPA" = (
+"aNT" = (
/obj/machinery/navbeacon{
codes_txt = "delivery;dir=8";
freq = 1400;
@@ -20639,18 +19974,18 @@
dir = 8
},
/area/crew_quarters/kitchen)
-"aPB" = (
+"aNU" = (
/turf/open/floor/plasteel/vault{
dir = 8
},
/area/maintenance/fsmaint2)
-"aPC" = (
+"aNV" = (
/obj/item/device/assembly/mousetrap,
/turf/open/floor/wood{
icon_state = "wood-broken6"
},
/area/crew_quarters/bar)
-"aPD" = (
+"aNW" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -20661,10 +19996,10 @@
},
/turf/open/floor/wood,
/area/crew_quarters/bar)
-"aPE" = (
+"aNX" = (
/turf/open/floor/wood,
/area/crew_quarters/bar)
-"aPF" = (
+"aNY" = (
/obj/effect/landmark{
name = "xeno_spawn";
pixel_x = -1
@@ -20672,13 +20007,13 @@
/obj/item/weapon/storage/box/beanbag,
/turf/open/floor/wood,
/area/crew_quarters/bar)
-"aPG" = (
+"aNZ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aPH" = (
+"aOa" = (
/obj/item/weapon/weldingtool,
/obj/structure/cable{
d1 = 1;
@@ -20690,7 +20025,7 @@
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aPI" = (
+"aOb" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -20710,7 +20045,7 @@
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aPJ" = (
+"aOc" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -20724,7 +20059,7 @@
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aPK" = (
+"aOd" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -20739,24 +20074,24 @@
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aPL" = (
+"aOe" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"aPM" = (
+"aOf" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"aPN" = (
+"aOg" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"aPO" = (
+"aOh" = (
/obj/machinery/light{
dir = 1
},
@@ -20771,13 +20106,13 @@
dir = 4
},
/area/quartermaster/office)
-"aPP" = (
+"aOi" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/brown/corner{
dir = 4
},
/area/quartermaster/office)
-"aPQ" = (
+"aOj" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -20785,7 +20120,7 @@
dir = 4
},
/area/quartermaster/office)
-"aPR" = (
+"aOk" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -20793,28 +20128,28 @@
},
/turf/open/floor/plating,
/area/quartermaster/office)
-"aPS" = (
+"aOl" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1;
initialize_directions = 11
},
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"aPT" = (
+"aOm" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"aPU" = (
+"aOn" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"aPV" = (
+"aOo" = (
/obj/machinery/light{
dir = 1
},
@@ -20829,27 +20164,27 @@
},
/turf/open/floor/plasteel,
/area/quartermaster/storage)
-"aPW" = (
+"aOp" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1;
initialize_directions = 11
},
/turf/open/floor/plasteel,
/area/quartermaster/storage)
-"aPX" = (
+"aOq" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
/turf/open/floor/plasteel,
/area/quartermaster/storage)
-"aPY" = (
+"aOr" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/quartermaster/storage)
-"aPZ" = (
+"aOs" = (
/turf/open/floor/plasteel,
/area/quartermaster/storage)
-"aQa" = (
+"aOt" = (
/obj/machinery/light{
dir = 1
},
@@ -20862,7 +20197,7 @@
},
/turf/open/floor/plating,
/area/quartermaster/storage)
-"aQb" = (
+"aOu" = (
/obj/machinery/conveyor{
dir = 8;
id = "QMLoad"
@@ -20876,7 +20211,7 @@
},
/turf/open/floor/plating,
/area/quartermaster/storage)
-"aQc" = (
+"aOv" = (
/obj/machinery/conveyor{
dir = 8;
id = "QMLoad"
@@ -20887,14 +20222,14 @@
},
/turf/open/floor/plating,
/area/quartermaster/storage)
-"aQd" = (
+"aOw" = (
/obj/machinery/conveyor{
dir = 8;
id = "QMLoad"
},
/turf/open/floor/plating,
/area/quartermaster/storage)
-"aQe" = (
+"aOx" = (
/obj/machinery/door/poddoor{
id = "QMLoaddoor";
name = "supply dock loading door"
@@ -20905,7 +20240,7 @@
},
/turf/open/floor/plating,
/area/quartermaster/storage)
-"aQf" = (
+"aOy" = (
/obj/structure/plasticflaps,
/obj/machinery/conveyor{
dir = 8;
@@ -20913,7 +20248,7 @@
},
/turf/open/floor/plating,
/area/quartermaster/storage)
-"aQg" = (
+"aOz" = (
/obj/machinery/door/poddoor{
id = "QMLoaddoor";
name = "supply dock loading door"
@@ -20924,7 +20259,7 @@
},
/turf/open/floor/plating,
/area/shuttle/supply)
-"aQh" = (
+"aOA" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -20932,7 +20267,7 @@
},
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aQi" = (
+"aOB" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -20948,7 +20283,7 @@
},
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aQj" = (
+"aOC" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -20960,7 +20295,7 @@
},
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aQk" = (
+"aOD" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -20981,7 +20316,7 @@
},
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aQl" = (
+"aOE" = (
/obj/machinery/door/airlock/maintenance{
name = "Disposal Access";
req_access_txt = "12"
@@ -21000,7 +20335,7 @@
},
/turf/open/floor/plating,
/area/maintenance/disposal)
-"aQm" = (
+"aOF" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -21015,7 +20350,7 @@
},
/turf/open/floor/plating,
/area/maintenance/disposal)
-"aQn" = (
+"aOG" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -21030,7 +20365,7 @@
},
/turf/open/floor/plating,
/area/maintenance/disposal)
-"aQo" = (
+"aOH" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -21042,7 +20377,7 @@
},
/turf/open/floor/plating,
/area/maintenance/disposal)
-"aQp" = (
+"aOI" = (
/obj/structure/cable{
icon_state = "0-4";
d2 = 4
@@ -21055,7 +20390,7 @@
/area/solar/starboard{
name = "Starboard Solar Array"
})
-"aQq" = (
+"aOJ" = (
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
@@ -21068,18 +20403,18 @@
/area/solar/starboard{
name = "Starboard Solar Array"
})
-"aQr" = (
+"aOK" = (
/obj/machinery/sleeper{
dir = 4;
icon_state = "sleeper-open"
},
/turf/open/floor/mineral/titanium,
/area/shuttle/escape)
-"aQs" = (
+"aOL" = (
/obj/machinery/vending/medical,
/turf/open/floor/mineral/titanium,
/area/shuttle/escape)
-"aQt" = (
+"aOM" = (
/obj/machinery/door/airlock/titanium{
name = "Emergency Shuttle Airlock"
},
@@ -21103,13 +20438,13 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/escape)
-"aQu" = (
+"aON" = (
/obj/machinery/light,
/turf/open/floor/plating,
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
})
-"aQv" = (
+"aOO" = (
/obj/structure/chair{
dir = 1;
name = "Command Station"
@@ -21118,7 +20453,7 @@
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
})
-"aQw" = (
+"aOP" = (
/obj/machinery/camera{
c_tag = "Central Primary Hallway Escape";
dir = 8
@@ -21130,10 +20465,10 @@
},
/turf/open/floor/plasteel/neutral/corner,
/area/hallway/primary/central)
-"aQx" = (
+"aOQ" = (
/turf/open/floor/plasteel/hydrofloor,
/area/hydroponics)
-"aQy" = (
+"aOR" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -21151,13 +20486,13 @@
},
/turf/open/floor/plasteel/hydrofloor,
/area/hydroponics)
-"aQz" = (
+"aOS" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel/hydrofloor,
/area/hydroponics)
-"aQA" = (
+"aOT" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -21167,7 +20502,7 @@
},
/turf/open/floor/plasteel/hydrofloor,
/area/hydroponics)
-"aQB" = (
+"aOU" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -21177,7 +20512,7 @@
},
/turf/open/floor/plasteel/hydrofloor,
/area/hydroponics)
-"aQC" = (
+"aOV" = (
/obj/structure/table,
/obj/item/weapon/reagent_containers/spray/plantbgone{
pixel_x = 0;
@@ -21194,13 +20529,13 @@
/obj/item/weapon/watertank,
/turf/open/floor/plasteel/hydrofloor,
/area/hydroponics)
-"aQD" = (
+"aOW" = (
/obj/structure/kitchenspike,
/obj/item/device/assembly/mousetrap,
/obj/item/trash/deadmouse,
/turf/open/floor/plasteel/showroomfloor,
/area/crew_quarters/kitchen)
-"aQE" = (
+"aOX" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -21213,7 +20548,7 @@
},
/turf/open/floor/plasteel/showroomfloor,
/area/crew_quarters/kitchen)
-"aQF" = (
+"aOY" = (
/obj/machinery/camera{
c_tag = "Kitchen Cold Room";
dir = 2;
@@ -21232,7 +20567,7 @@
},
/turf/open/floor/plasteel/showroomfloor,
/area/crew_quarters/kitchen)
-"aQG" = (
+"aOZ" = (
/obj/structure/plasticflaps{
opacity = 1
},
@@ -21240,11 +20575,11 @@
dir = 8
},
/area/maintenance/fsmaint2)
-"aQH" = (
+"aPa" = (
/obj/structure/reagent_dispensers/beerkeg,
/turf/open/floor/wood,
/area/crew_quarters/bar)
-"aQI" = (
+"aPb" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -21253,7 +20588,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/wood,
/area/crew_quarters/bar)
-"aQJ" = (
+"aPc" = (
/obj/structure/closet/gmcloset,
/obj/item/stack/sheet/metal{
amount = 50
@@ -21267,10 +20602,10 @@
icon_state = "wood-broken5"
},
/area/crew_quarters/bar)
-"aQK" = (
+"aPd" = (
/turf/closed/wall,
/area/crew_quarters/theatre)
-"aQL" = (
+"aPe" = (
/obj/machinery/door/airlock/maintenance{
name = "Theatre Maintenance";
req_access_txt = "0";
@@ -21278,7 +20613,7 @@
},
/turf/open/floor/plating,
/area/crew_quarters/theatre)
-"aQM" = (
+"aPf" = (
/obj/machinery/door/airlock/maintenance{
name = "Theatre Maintenance";
req_access_txt = "0";
@@ -21287,7 +20622,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/crew_quarters/theatre)
-"aQN" = (
+"aPg" = (
/obj/machinery/camera{
c_tag = "Central Primary Hallway Cargo";
dir = 4
@@ -21300,7 +20635,7 @@
tag = "icon-browncorner (NORTH)"
},
/area/hallway/primary/central)
-"aQO" = (
+"aPh" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -21311,28 +20646,28 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aQP" = (
+"aPi" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aQQ" = (
+"aPj" = (
/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"aQR" = (
+"aPk" = (
/obj/machinery/holopad,
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"aQS" = (
+"aPl" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -21341,7 +20676,7 @@
},
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"aQT" = (
+"aPm" = (
/obj/machinery/door/airlock/glass_mining{
name = "Cargo Bay";
req_access_txt = "0";
@@ -21355,7 +20690,7 @@
},
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"aQU" = (
+"aPn" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -21365,7 +20700,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"aQV" = (
+"aPo" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -21375,61 +20710,61 @@
},
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"aQW" = (
+"aPp" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"aQX" = (
+"aPq" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"aQY" = (
+"aPr" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/quartermaster/storage)
-"aQZ" = (
+"aPs" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/quartermaster/storage)
-"aRa" = (
+"aPt" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
/turf/open/floor/plasteel,
/area/quartermaster/storage)
-"aRb" = (
+"aPu" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel,
/area/quartermaster/storage)
-"aRc" = (
+"aPv" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel,
/area/quartermaster/storage)
-"aRd" = (
+"aPw" = (
/obj/machinery/door/airlock/external{
name = "Supply Dock Airlock";
req_access_txt = "31"
},
/turf/open/floor/plating,
/area/quartermaster/storage)
-"aRe" = (
+"aPx" = (
/obj/machinery/light/small,
/turf/open/floor/plating,
/area/quartermaster/storage)
-"aRf" = (
+"aPy" = (
/obj/machinery/door/airlock/titanium{
name = "Supply Shuttle Airlock";
req_access_txt = "31"
@@ -21447,17 +20782,17 @@
},
/turf/open/floor/plating,
/area/shuttle/supply)
-"aRg" = (
+"aPz" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance,
/obj/item/weapon/storage/toolbox/mechanical,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aRh" = (
+"aPA" = (
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aRi" = (
+"aPB" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -21467,7 +20802,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aRj" = (
+"aPC" = (
/obj/structure/table,
/obj/item/weapon/storage/firstaid/fire,
/obj/item/weapon/storage/firstaid/regular{
@@ -21480,7 +20815,7 @@
},
/turf/open/floor/mineral/titanium,
/area/shuttle/escape)
-"aRk" = (
+"aPD" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
external_pressure_bound = 101.325;
@@ -21491,16 +20826,7 @@
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
})
-"aRl" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4;
- initialize_directions = 11
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
-"aRm" = (
+"aPE" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -21510,7 +20836,7 @@
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
})
-"aRn" = (
+"aPF" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -21520,7 +20846,7 @@
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
})
-"aRo" = (
+"aPG" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
name = "Departure Lounge"
@@ -21534,7 +20860,7 @@
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
})
-"aRp" = (
+"aPH" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -21546,7 +20872,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aRq" = (
+"aPI" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -21563,7 +20889,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aRr" = (
+"aPJ" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -21575,7 +20901,7 @@
},
/turf/open/floor/plasteel/neutral/corner,
/area/hallway/primary/central)
-"aRs" = (
+"aPK" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -21589,7 +20915,7 @@
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aRt" = (
+"aPL" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -21601,7 +20927,7 @@
/obj/machinery/light/small,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aRu" = (
+"aPM" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -21612,7 +20938,7 @@
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aRv" = (
+"aPN" = (
/obj/structure/plasticflaps{
opacity = 1
},
@@ -21620,7 +20946,7 @@
dir = 8
},
/area/hydroponics)
-"aRw" = (
+"aPO" = (
/obj/machinery/door/window/eastright{
name = "Hydroponics Delivery";
req_access_txt = "35"
@@ -21631,10 +20957,10 @@
freq = 1400;
location = "Hydroponics"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
/area/hydroponics)
-"aRx" = (
+"aPP" = (
/obj/structure/closet/crate/hydroponics,
/obj/item/weapon/shovel/spade,
/obj/item/weapon/wrench,
@@ -21643,7 +20969,7 @@
/obj/item/weapon/wirecutters,
/turf/open/floor/plasteel/hydrofloor,
/area/hydroponics)
-"aRy" = (
+"aPQ" = (
/obj/structure/closet/wardrobe/botanist,
/obj/structure/cable{
d1 = 1;
@@ -21652,7 +20978,7 @@
},
/turf/open/floor/plasteel/hydrofloor,
/area/hydroponics)
-"aRz" = (
+"aPR" = (
/obj/machinery/power/apc{
name = "Hydroponics APC";
pixel_y = -24
@@ -21663,25 +20989,25 @@
},
/turf/open/floor/plasteel/hydrofloor,
/area/hydroponics)
-"aRA" = (
+"aPS" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/hydrofloor,
/area/hydroponics)
-"aRB" = (
+"aPT" = (
/obj/machinery/light/small,
/turf/open/floor/plasteel/hydrofloor,
/area/hydroponics)
-"aRC" = (
+"aPU" = (
/obj/structure/table,
/obj/machinery/reagentgrinder,
/turf/open/floor/plasteel/hydrofloor,
/area/hydroponics)
-"aRD" = (
+"aPV" = (
/obj/machinery/icecream_vat,
/turf/open/floor/plasteel/showroomfloor,
/area/crew_quarters/kitchen)
-"aRE" = (
+"aPW" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -21689,17 +21015,17 @@
},
/turf/open/floor/plasteel/showroomfloor,
/area/crew_quarters/kitchen)
-"aRF" = (
+"aPX" = (
/mob/living/simple_animal/hostile/retaliate/goat{
name = "Pete"
},
/turf/open/floor/plasteel/showroomfloor,
/area/crew_quarters/kitchen)
-"aRG" = (
+"aPY" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel/showroomfloor,
/area/crew_quarters/kitchen)
-"aRH" = (
+"aPZ" = (
/obj/machinery/light{
dir = 4
},
@@ -21710,7 +21036,7 @@
},
/turf/open/floor/plasteel/showroomfloor,
/area/crew_quarters/kitchen)
-"aRI" = (
+"aQa" = (
/obj/machinery/door/window/southleft{
base_state = "left";
dir = 2;
@@ -21723,10 +21049,10 @@
freq = 1400;
location = "Bar"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
/area/crew_quarters/bar)
-"aRJ" = (
+"aQb" = (
/obj/machinery/door/airlock{
name = "Bar Storage";
req_access_txt = "25"
@@ -21739,23 +21065,23 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/black,
/area/crew_quarters/bar)
-"aRK" = (
+"aQc" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk,
/turf/open/floor/plasteel/black,
/area/crew_quarters/bar)
-"aRL" = (
+"aQd" = (
/obj/structure/sign/poster{
pixel_x = -32
},
/turf/open/floor/wood,
/area/crew_quarters/theatre)
-"aRM" = (
+"aQe" = (
/turf/open/floor/carpet{
icon_state = "carpetsymbol"
},
/area/crew_quarters/theatre)
-"aRN" = (
+"aQf" = (
/obj/structure/sign/poster{
pixel_y = 32
},
@@ -21767,7 +21093,7 @@
icon_state = "carpetsymbol"
},
/area/crew_quarters/theatre)
-"aRO" = (
+"aQg" = (
/obj/machinery/camera{
c_tag = "Theatre Stage";
dir = 2
@@ -21779,14 +21105,14 @@
icon_state = "carpetsymbol"
},
/area/crew_quarters/theatre)
-"aRP" = (
+"aQh" = (
/obj/structure/sign/poster{
pixel_x = 32
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/wood,
/area/crew_quarters/theatre)
-"aRQ" = (
+"aQi" = (
/obj/structure/table/wood,
/obj/item/weapon/lipstick/random{
pixel_x = 2;
@@ -21800,7 +21126,7 @@
/obj/item/weapon/lipstick/random,
/turf/open/floor/plasteel/black,
/area/crew_quarters/theatre)
-"aRR" = (
+"aQj" = (
/obj/structure/dresser,
/obj/machinery/light{
dir = 1
@@ -21810,14 +21136,14 @@
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/theatre)
-"aRS" = (
+"aQk" = (
/obj/machinery/vending/autodrobe,
/obj/machinery/computer/security/telescreen/entertainment{
pixel_y = 32
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/theatre)
-"aRT" = (
+"aQl" = (
/obj/machinery/door/airlock/maintenance{
name = "Theatre Maintenance";
req_access_txt = "46"
@@ -21831,7 +21157,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/crew_quarters/theatre)
-"aRU" = (
+"aQm" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
@@ -21844,19 +21170,19 @@
tag = "icon-browncorner (NORTH)"
},
/area/hallway/primary/central)
-"aRV" = (
+"aQn" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"aRW" = (
+"aQo" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"aRX" = (
+"aQp" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9;
pixel_y = 0
@@ -21865,7 +21191,7 @@
dir = 8
},
/area/quartermaster/office)
-"aRY" = (
+"aQq" = (
/obj/structure/plasticflaps{
opacity = 1
},
@@ -21873,25 +21199,25 @@
dir = 4;
id = "cargodeliver"
},
+/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel{
name = "floor"
},
-/obj/effect/turf_decal/delivery,
/area/quartermaster/office)
-"aRZ" = (
+"aQr" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/brown{
dir = 8
},
/area/quartermaster/office)
-"aSa" = (
+"aQs" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
},
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"aSb" = (
+"aQt" = (
/obj/machinery/light{
dir = 4;
icon_state = "tube1"
@@ -21907,47 +21233,47 @@
dir = 4
},
/area/quartermaster/office)
-"aSc" = (
+"aQu" = (
/obj/machinery/navbeacon{
codes_txt = "delivery;dir=4";
freq = 1400;
location = "QM #1"
},
+/obj/effect/turf_decal/bot,
/mob/living/simple_animal/bot/mulebot{
beacon_freq = 1400;
home_destination = "QM #1";
suffix = "#1"
},
/turf/open/floor/plasteel,
-/obj/effect/turf_decal/bot,
/area/quartermaster/storage)
-"aSd" = (
+"aQv" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel,
/area/quartermaster/storage)
-"aSe" = (
+"aQw" = (
/obj/effect/landmark/start{
name = "Cargo Technician"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/bot,
-/area/quartermaster/storage)
-"aSf" = (
/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aQx" = (
/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
/area/quartermaster/storage)
-"aSg" = (
+"aQy" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
},
/turf/open/floor/plasteel,
/area/quartermaster/storage)
-"aSh" = (
+"aQz" = (
/obj/machinery/conveyor_switch/oneway{
convdir = -1;
id = "QMLoad"
@@ -21973,7 +21299,7 @@
},
/turf/open/floor/plasteel,
/area/quartermaster/storage)
-"aSi" = (
+"aQA" = (
/obj/machinery/button/door{
id = "QMLoaddoor2";
layer = 4;
@@ -21991,7 +21317,7 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/supply)
-"aSj" = (
+"aQB" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -22004,11 +21330,11 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aSk" = (
+"aQC" = (
/obj/structure/easel,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aSl" = (
+"aQD" = (
/obj/structure/closet/l3closet/scientist,
/obj/item/weapon/book/manual/wiki/chemistry,
/obj/machinery/light/small{
@@ -22016,7 +21342,7 @@
},
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aSm" = (
+"aQE" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -22029,27 +21355,19 @@
/area/chapel/main{
name = "Monastery"
})
-"aSn" = (
+"aQF" = (
/obj/structure/window/reinforced{
dir = 1
},
/obj/structure/shuttle/engine/heater,
/turf/open/floor/plating/airless,
/area/shuttle/escape)
-"aSo" = (
+"aQG" = (
/obj/structure/table,
/obj/item/weapon/defibrillator/loaded,
/turf/open/floor/mineral/titanium,
/area/shuttle/escape)
-"aSp" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
-"aSq" = (
+"aQH" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -22057,19 +21375,16 @@
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
})
-"aSr" = (
+"aQI" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
name = "Departure Lounge"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
/turf/open/floor/plasteel,
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
})
-"aSs" = (
+"aQJ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
@@ -22077,11 +21392,7 @@
/area/chapel/main{
name = "Monastery"
})
-"aSt" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4;
- initialize_directions = 11
- },
+"aQK" = (
/obj/structure/sign/directions/evac{
dir = 1;
icon_state = "direction_evac";
@@ -22089,16 +21400,17 @@
pixel_y = 0;
tag = "icon-direction_evac (NORTH)"
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral/corner,
/area/hallway/primary/central)
-"aSu" = (
+"aQL" = (
/turf/closed/wall,
/area/janitor)
-"aSv" = (
+"aQM" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall,
/area/janitor)
-"aSw" = (
+"aQN" = (
/obj/machinery/door/window/eastright{
dir = 2;
name = "Janitor Delivery";
@@ -22114,7 +21426,7 @@
dir = 8
},
/area/janitor)
-"aSx" = (
+"aQO" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
name = "Hydroponics";
@@ -22124,7 +21436,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/hydroponics)
-"aSy" = (
+"aQP" = (
/obj/structure/closet/chefcloset,
/obj/item/weapon/wrench,
/obj/item/weapon/crowbar,
@@ -22132,7 +21444,7 @@
/obj/item/weapon/hand_labeler,
/turf/open/floor/plasteel/showroomfloor,
/area/crew_quarters/kitchen)
-"aSz" = (
+"aQQ" = (
/obj/machinery/power/apc{
dir = 2;
name = "Kitchen APC";
@@ -22141,18 +21453,18 @@
/obj/structure/cable,
/turf/open/floor/plasteel/showroomfloor,
/area/crew_quarters/kitchen)
-"aSA" = (
+"aQR" = (
/turf/open/floor/plasteel/showroomfloor,
/area/crew_quarters/kitchen{
name = "Kitchen Coldroom"
})
-"aSB" = (
+"aQS" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
/turf/open/floor/plasteel/showroomfloor,
/area/crew_quarters/kitchen)
-"aSC" = (
+"aQT" = (
/obj/structure/closet/secure_closet/freezer/kitchen,
/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
/obj/item/weapon/reagent_containers/food/snacks/grown/potato,
@@ -22161,19 +21473,19 @@
},
/turf/open/floor/plasteel/showroomfloor,
/area/crew_quarters/kitchen)
-"aSD" = (
+"aQU" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall,
/area/crew_quarters/kitchen)
-"aSE" = (
+"aQV" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/bar)
-"aSF" = (
+"aQW" = (
/obj/machinery/light/small{
dir = 1
},
@@ -22189,7 +21501,7 @@
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/bar)
-"aSG" = (
+"aQX" = (
/obj/structure/sink/kitchen{
pixel_y = 28
},
@@ -22198,7 +21510,7 @@
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/bar)
-"aSH" = (
+"aQY" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -22207,7 +21519,7 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/black,
/area/crew_quarters/bar)
-"aSI" = (
+"aQZ" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -22229,7 +21541,7 @@
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/bar)
-"aSJ" = (
+"aRa" = (
/obj/machinery/light/small{
dir = 1
},
@@ -22253,7 +21565,7 @@
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/bar)
-"aSK" = (
+"aRb" = (
/obj/machinery/power/apc{
dir = 4;
name = "Bar APC";
@@ -22272,14 +21584,14 @@
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/bar)
-"aSL" = (
+"aRc" = (
/obj/structure/piano{
tag = "icon-piano";
icon_state = "piano"
},
/turf/open/floor/wood,
/area/crew_quarters/theatre)
-"aSM" = (
+"aRd" = (
/obj/structure/chair/wood/normal{
icon_state = "wooden_chair";
dir = 8
@@ -22288,27 +21600,27 @@
icon_state = "carpetsymbol"
},
/area/crew_quarters/theatre)
-"aSN" = (
+"aRe" = (
/obj/structure/chair/wood/normal,
/mob/living/carbon/monkey/punpun,
/turf/open/floor/carpet{
icon_state = "carpetsymbol"
},
/area/crew_quarters/theatre)
-"aSO" = (
+"aRf" = (
/obj/structure/table/wood,
/obj/item/device/instrument/violin,
/turf/open/floor/carpet{
icon_state = "carpetsymbol"
},
/area/crew_quarters/theatre)
-"aSP" = (
+"aRg" = (
/obj/structure/table/wood,
/obj/item/device/instrument/guitar,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/wood,
/area/crew_quarters/theatre)
-"aSQ" = (
+"aRh" = (
/obj/machinery/power/apc{
dir = 8;
name = "Theatre APC";
@@ -22320,7 +21632,7 @@
},
/turf/open/floor/plasteel/redblue,
/area/crew_quarters/theatre)
-"aSR" = (
+"aRi" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -22334,7 +21646,7 @@
},
/turf/open/floor/plasteel/redblue,
/area/crew_quarters/theatre)
-"aSS" = (
+"aRj" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -22345,7 +21657,7 @@
},
/turf/open/floor/plasteel/redblue,
/area/crew_quarters/theatre)
-"aST" = (
+"aRk" = (
/obj/machinery/light/small{
dir = 1
},
@@ -22365,7 +21677,7 @@
},
/turf/open/floor/plasteel/redblue,
/area/crew_quarters/theatre)
-"aSU" = (
+"aRl" = (
/obj/structure/cable{
icon_state = "1-8"
},
@@ -22384,18 +21696,18 @@
},
/turf/open/floor/plasteel/redblue,
/area/crew_quarters/theatre)
-"aSV" = (
+"aRm" = (
/obj/machinery/computer/cargo/request,
/turf/open/floor/plasteel/brown/corner,
/area/quartermaster/office)
-"aSW" = (
+"aRn" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/brown/corner,
/area/quartermaster/office)
-"aSX" = (
+"aRo" = (
/turf/open/floor/plasteel/brown/corner,
/area/quartermaster/office)
-"aSY" = (
+"aRp" = (
/obj/machinery/door/firedoor,
/obj/machinery/mineral/ore_redemption{
input_dir = 4;
@@ -22403,7 +21715,7 @@
},
/turf/open/floor/plasteel/black,
/area/quartermaster/office)
-"aSZ" = (
+"aRq" = (
/obj/machinery/status_display{
dir = 8;
layer = 4;
@@ -22415,7 +21727,7 @@
dir = 4
},
/area/quartermaster/office)
-"aTa" = (
+"aRr" = (
/obj/machinery/navbeacon{
codes_txt = "delivery;dir=4";
freq = 1400;
@@ -22425,15 +21737,15 @@
c_tag = "Cargo Bay";
dir = 4
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
/area/quartermaster/storage)
-"aTb" = (
+"aRs" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
/area/quartermaster/storage)
-"aTc" = (
+"aRt" = (
/obj/structure/closet/crate{
icon_state = "crateopen";
opened = 1
@@ -22442,36 +21754,36 @@
lootcount = 2;
name = "2maintenance loot spawner"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/bot,
-/area/quartermaster/storage)
-"aTd" = (
/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"aRu" = (
/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
/area/quartermaster/storage)
-"aTe" = (
+"aRv" = (
/obj/machinery/light/small{
dir = 1
},
/turf/open/floor/plating,
/area/quartermaster/storage)
-"aTf" = (
+"aRw" = (
/obj/machinery/door/airlock/titanium{
name = "Supply Shuttle Airlock";
req_access_txt = "31"
},
/turf/open/floor/plating,
/area/shuttle/supply)
-"aTg" = (
+"aRx" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible,
/obj/machinery/portable_atmospherics/canister/oxygen,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aTh" = (
+"aRy" = (
/obj/machinery/portable_atmospherics/canister/air,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aTi" = (
+"aRz" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -22482,20 +21794,11 @@
/area/maintenance/port{
name = "Monastery Maintenance"
})
-"aTj" = (
+"aRA" = (
/obj/structure/shuttle/engine/propulsion,
/turf/open/floor/plating/airless,
/area/shuttle/escape)
-"aTk" = (
-/obj/structure/table,
-/obj/item/toy/cards/deck,
-/turf/open/floor/plasteel/escape{
- dir = 10
- },
-/area/hallway/secondary/exit{
- name = "\improper Departure Lounge"
- })
-"aTl" = (
+"aRB" = (
/obj/structure/chair{
dir = 1
},
@@ -22507,7 +21810,7 @@
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
})
-"aTm" = (
+"aRC" = (
/obj/structure/chair{
dir = 1
},
@@ -22515,21 +21818,21 @@
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
})
-"aTn" = (
+"aRD" = (
+/obj/machinery/light,
/obj/structure/chair{
dir = 1
},
-/obj/machinery/light,
/turf/open/floor/plasteel/escape,
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
})
-"aTo" = (
+"aRE" = (
/turf/open/floor/plasteel/escape,
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
})
-"aTp" = (
+"aRF" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-14";
layer = 4.1
@@ -22544,7 +21847,7 @@
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
})
-"aTq" = (
+"aRG" = (
/obj/machinery/washing_machine,
/obj/structure/sign/securearea{
desc = "Under the painting a plaque reads: 'While the meat grinder may not have spared you, fear not. Not one part of you has gone to waste... You were delicious.'";
@@ -22555,7 +21858,7 @@
},
/turf/open/floor/plasteel/black,
/area/janitor)
-"aTr" = (
+"aRH" = (
/obj/machinery/camera{
c_tag = "Custodial Quarters"
},
@@ -22579,7 +21882,7 @@
},
/turf/open/floor/plasteel/black,
/area/janitor)
-"aTs" = (
+"aRI" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet,
/obj/effect/landmark/start{
@@ -22587,31 +21890,31 @@
},
/turf/open/floor/plasteel/black,
/area/janitor)
-"aTt" = (
+"aRJ" = (
/obj/machinery/hydroponics/constructable,
/turf/open/floor/plasteel/green/side{
dir = 9
},
/area/hydroponics)
-"aTu" = (
+"aRK" = (
/obj/machinery/hydroponics/constructable,
/turf/open/floor/plasteel/green/corner{
dir = 4
},
/area/hydroponics)
-"aTv" = (
+"aRL" = (
/obj/machinery/hydroponics/constructable,
/turf/open/floor/plasteel/green/side{
dir = 1
},
/area/hydroponics)
-"aTw" = (
+"aRM" = (
/obj/structure/sink{
pixel_y = 28
},
/turf/open/floor/plasteel,
/area/hydroponics)
-"aTx" = (
+"aRN" = (
/obj/structure/disposalpipe/sortjunction{
dir = 2;
icon_state = "pipe-j2s";
@@ -22620,7 +21923,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/hydroponics)
-"aTy" = (
+"aRO" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 8
@@ -22633,11 +21936,11 @@
dir = 4
},
/area/hydroponics)
-"aTz" = (
+"aRP" = (
/obj/structure/closet/secure_closet/freezer/meat,
/turf/open/floor/plasteel/showroomfloor,
/area/crew_quarters/kitchen)
-"aTA" = (
+"aRQ" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
on = 1;
@@ -22646,18 +21949,18 @@
},
/turf/open/floor/plasteel/showroomfloor,
/area/crew_quarters/kitchen)
-"aTB" = (
+"aRR" = (
/obj/structure/closet/secure_closet/freezer/fridge,
/turf/open/floor/plasteel/showroomfloor,
/area/crew_quarters/kitchen)
-"aTC" = (
+"aRS" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/bar)
-"aTD" = (
+"aRT" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -22667,7 +21970,7 @@
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/bar)
-"aTE" = (
+"aRU" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -22676,7 +21979,7 @@
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/bar)
-"aTF" = (
+"aRV" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
@@ -22687,13 +21990,13 @@
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/bar)
-"aTG" = (
+"aRW" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/bar)
-"aTH" = (
+"aRX" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1;
@@ -22706,7 +22009,7 @@
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/bar)
-"aTI" = (
+"aRY" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -22716,7 +22019,7 @@
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/bar)
-"aTJ" = (
+"aRZ" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1;
@@ -22732,7 +22035,7 @@
},
/turf/open/floor/wood,
/area/crew_quarters/theatre)
-"aTK" = (
+"aSa" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -22740,7 +22043,7 @@
icon_state = "carpetsymbol"
},
/area/crew_quarters/theatre)
-"aTL" = (
+"aSb" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
@@ -22749,7 +22052,7 @@
icon_state = "carpetsymbol"
},
/area/crew_quarters/theatre)
-"aTM" = (
+"aSc" = (
/obj/structure/sign/poster{
pixel_x = 32
},
@@ -22762,14 +22065,14 @@
},
/turf/open/floor/wood,
/area/crew_quarters/theatre)
-"aTN" = (
+"aSd" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
/turf/open/floor/plasteel/redblue,
/area/crew_quarters/theatre)
-"aTO" = (
+"aSe" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -22783,7 +22086,7 @@
},
/turf/open/floor/plasteel/redblue,
/area/crew_quarters/theatre)
-"aTP" = (
+"aSf" = (
/obj/structure/disposalpipe/sortjunction{
dir = 4;
icon_state = "pipe-j1s";
@@ -22798,7 +22101,7 @@
},
/turf/open/floor/plasteel/redblue,
/area/crew_quarters/theatre)
-"aTQ" = (
+"aSg" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -22807,7 +22110,7 @@
},
/turf/open/floor/plasteel/redblue,
/area/crew_quarters/theatre)
-"aTR" = (
+"aSh" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -22825,13 +22128,13 @@
},
/turf/open/floor/plasteel/redblue,
/area/crew_quarters/theatre)
-"aTS" = (
+"aSi" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall,
/area/crew_quarters/theatre)
-"aTT" = (
+"aSj" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -22841,7 +22144,7 @@
tag = "icon-browncorner (NORTH)"
},
/area/hallway/primary/central)
-"aTU" = (
+"aSk" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
@@ -22849,7 +22152,7 @@
dir = 4
},
/area/hallway/primary/central)
-"aTV" = (
+"aSl" = (
/obj/structure/table/reinforced,
/obj/machinery/door/firedoor,
/obj/machinery/door/window/westleft{
@@ -22860,7 +22163,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"aTW" = (
+"aSm" = (
/obj/structure/table/reinforced,
/obj/machinery/door/firedoor,
/obj/machinery/door/window/westleft{
@@ -22870,12 +22173,12 @@
},
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"aTX" = (
+"aSn" = (
/obj/machinery/door/firedoor,
/obj/machinery/autolathe,
/turf/open/floor/plasteel/black,
/area/quartermaster/office)
-"aTY" = (
+"aSo" = (
/obj/machinery/newscaster{
pixel_x = 32
},
@@ -22887,33 +22190,33 @@
dir = 4
},
/area/quartermaster/office)
-"aTZ" = (
+"aSp" = (
/obj/machinery/navbeacon{
codes_txt = "delivery;dir=4";
freq = 1400;
location = "QM #3"
},
+/obj/effect/turf_decal/bot,
/mob/living/simple_animal/bot/mulebot{
home_destination = "QM #2";
suffix = "#2"
},
/turf/open/floor/plasteel,
-/obj/effect/turf_decal/bot,
/area/quartermaster/storage)
-"aUa" = (
+"aSq" = (
/obj/effect/spawner/lootdrop/maintenance,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
/area/quartermaster/storage)
-"aUb" = (
+"aSr" = (
/obj/machinery/conveyor{
dir = 8;
id = "QMLoad2"
},
/turf/open/floor/plating,
/area/quartermaster/storage)
-"aUc" = (
+"aSs" = (
/obj/machinery/door/poddoor{
id = "QMLoaddoor2";
name = "supply dock loading door"
@@ -22924,7 +22227,7 @@
},
/turf/open/floor/plating,
/area/quartermaster/storage)
-"aUd" = (
+"aSt" = (
/obj/structure/plasticflaps,
/obj/machinery/conveyor{
dir = 8;
@@ -22932,7 +22235,7 @@
},
/turf/open/floor/plating,
/area/quartermaster/storage)
-"aUe" = (
+"aSu" = (
/obj/machinery/door/poddoor{
id = "QMLoaddoor2";
name = "supply dock loading door"
@@ -22943,7 +22246,7 @@
},
/turf/open/floor/plating,
/area/shuttle/supply)
-"aUf" = (
+"aSv" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 1
},
@@ -22953,7 +22256,7 @@
},
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aUg" = (
+"aSw" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -22964,20 +22267,20 @@
/area/maintenance/port{
name = "Monastery Maintenance"
})
-"aUh" = (
+"aSx" = (
/obj/structure/grille/broken,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aUi" = (
+"aSy" = (
/obj/structure/chair/stool,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aUj" = (
+"aSz" = (
/turf/closed/wall,
/area/security/checkpoint2{
name = "Customs"
})
-"aUk" = (
+"aSA" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/poddoor/shutters/preopen{
@@ -22988,7 +22291,7 @@
/area/security/checkpoint2{
name = "Customs"
})
-"aUl" = (
+"aSB" = (
/obj/machinery/door/firedoor,
/obj/structure/table/reinforced,
/obj/machinery/door/window/westright{
@@ -23012,12 +22315,12 @@
},
/obj/item/weapon/folder/red,
/obj/item/weapon/pen,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
/area/security/checkpoint2{
name = "Customs"
})
-"aUm" = (
+"aSC" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -23031,7 +22334,7 @@
/area/maintenance/port{
name = "Monastery Maintenance"
})
-"aUn" = (
+"aSD" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
@@ -23041,20 +22344,20 @@
},
/turf/open/floor/plasteel/neutral/corner,
/area/hallway/primary/central)
-"aUo" = (
+"aSE" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/closed/wall,
/area/janitor)
-"aUp" = (
+"aSF" = (
/obj/structure/bedsheetbin,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/vault,
/area/janitor)
-"aUq" = (
+"aSG" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
on = 1
@@ -23062,7 +22365,7 @@
/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/vault,
/area/janitor)
-"aUr" = (
+"aSH" = (
/obj/structure/table,
/obj/item/clothing/under/maid,
/obj/item/key/janitor,
@@ -23071,21 +22374,21 @@
/obj/item/weapon/grenade/chem_grenade/cleaner,
/turf/open/floor/plasteel/vault,
/area/janitor)
-"aUs" = (
+"aSI" = (
/obj/machinery/hydroponics/constructable,
/turf/open/floor/plasteel/green/side{
dir = 8
},
/area/hydroponics)
-"aUt" = (
+"aSJ" = (
/turf/open/floor/plasteel,
/area/hydroponics)
-"aUu" = (
+"aSK" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/hydroponics)
-"aUv" = (
+"aSL" = (
/obj/machinery/biogenerator,
/obj/machinery/requests_console{
department = "Hydroponics";
@@ -23097,7 +22400,7 @@
dir = 4
},
/area/hydroponics)
-"aUw" = (
+"aSM" = (
/obj/machinery/hydroponics/constructable,
/obj/item/device/radio/intercom{
dir = 0;
@@ -23109,7 +22412,7 @@
dir = 1
},
/area/hydroponics)
-"aUx" = (
+"aSN" = (
/obj/machinery/hydroponics/constructable,
/obj/structure/sign/botany{
pixel_y = 32
@@ -23118,14 +22421,14 @@
dir = 1
},
/area/hydroponics)
-"aUy" = (
+"aSO" = (
/obj/machinery/door/airlock{
name = "Kitchen Cold Room";
req_access_txt = "28"
},
/turf/open/floor/plasteel/showroomfloor,
/area/crew_quarters/kitchen)
-"aUz" = (
+"aSP" = (
/obj/machinery/door/airlock{
name = "Bar Access";
req_access_txt = "28"
@@ -23133,7 +22436,7 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/black,
/area/crew_quarters/kitchen)
-"aUA" = (
+"aSQ" = (
/obj/machinery/door/airlock{
cyclelinkeddir = 4;
name = "Bar Access";
@@ -23143,7 +22446,7 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/black,
/area/crew_quarters/bar)
-"aUB" = (
+"aSR" = (
/obj/machinery/door/airlock{
cyclelinkeddir = 8;
name = "Bar Access";
@@ -23154,23 +22457,23 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/black,
/area/crew_quarters/bar)
-"aUC" = (
+"aSS" = (
/obj/structure/window/reinforced,
/turf/open/floor/wood,
/area/crew_quarters/theatre)
-"aUD" = (
+"aST" = (
/obj/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/wood,
/area/crew_quarters/theatre)
-"aUE" = (
+"aSU" = (
/obj/machinery/door/window{
base_state = "right";
icon_state = "right"
},
/turf/open/floor/wood,
/area/crew_quarters/theatre)
-"aUF" = (
+"aSV" = (
/obj/machinery/door/airlock{
name = "Theatre Storage";
req_access_txt = "46"
@@ -23180,7 +22483,7 @@
dir = 5
},
/area/crew_quarters/theatre)
-"aUG" = (
+"aSW" = (
/obj/structure/disposalpipe/trunk{
dir = 1
},
@@ -23189,14 +22492,14 @@
dir = 8
},
/area/crew_quarters/theatre)
-"aUH" = (
+"aSX" = (
/obj/structure/table/wood,
/obj/item/weapon/soap,
/obj/structure/table/wood,
/obj/item/weapon/bikehorn,
/turf/open/floor/plasteel/black,
/area/crew_quarters/theatre)
-"aUI" = (
+"aSY" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/crayons{
pixel_x = 3;
@@ -23209,7 +22512,7 @@
/obj/item/toy/cattoy,
/turf/open/floor/plasteel/black,
/area/crew_quarters/theatre)
-"aUJ" = (
+"aSZ" = (
/obj/machinery/computer/cargo,
/obj/machinery/requests_console{
department = "Cargo Bay";
@@ -23221,7 +22524,7 @@
dir = 1
},
/area/quartermaster/office)
-"aUK" = (
+"aTa" = (
/obj/structure/chair/office/dark{
dir = 1
},
@@ -23230,7 +22533,7 @@
dir = 1
},
/area/quartermaster/office)
-"aUL" = (
+"aTb" = (
/obj/structure/chair/office/dark{
dir = 1
},
@@ -23241,7 +22544,7 @@
dir = 1
},
/area/quartermaster/office)
-"aUM" = (
+"aTc" = (
/obj/item/weapon/stamp{
pixel_x = -3;
pixel_y = 3
@@ -23255,19 +22558,19 @@
dir = 1
},
/area/quartermaster/office)
-"aUN" = (
+"aTd" = (
/turf/open/floor/plasteel/brown{
dir = 1
},
/area/quartermaster/office)
-"aUO" = (
+"aTe" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk,
/turf/open/floor/plasteel/brown{
dir = 1
},
/area/quartermaster/office)
-"aUP" = (
+"aTf" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/disposalpipe/segment{
@@ -23275,7 +22578,7 @@
},
/turf/closed/wall,
/area/quartermaster/office)
-"aUQ" = (
+"aTg" = (
/obj/machinery/light{
dir = 4;
icon_state = "tube1"
@@ -23288,63 +22591,63 @@
dir = 4
},
/area/quartermaster/office)
-"aUR" = (
+"aTh" = (
/obj/machinery/navbeacon{
codes_txt = "delivery;dir=4";
freq = 1400;
location = "QM #4"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
/area/quartermaster/storage)
-"aUS" = (
+"aTi" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8;
initialize_directions = 11
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel,
/area/quartermaster/storage)
-"aUT" = (
+"aTj" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
/area/quartermaster/storage)
-"aUU" = (
+"aTk" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/quartermaster/storage)
-"aUV" = (
+"aTl" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
/area/quartermaster/storage)
-"aUW" = (
+"aTm" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
/turf/open/floor/plasteel,
/area/quartermaster/storage)
-"aUX" = (
+"aTn" = (
/obj/machinery/conveyor_switch/oneway{
convdir = 1;
id = "QMLoad2"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel,
/area/quartermaster/storage)
-"aUY" = (
+"aTo" = (
/obj/structure/table,
/obj/item/stack/cable_coil,
/obj/item/stack/cable_coil,
@@ -23352,14 +22655,14 @@
/obj/item/weapon/storage/box/matches,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aUZ" = (
+"aTp" = (
/obj/structure/table,
/obj/item/device/assembly/igniter,
/obj/item/device/assembly/igniter,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aVa" = (
+"aTq" = (
/obj/structure/table,
/obj/item/stack/sheet/metal{
amount = 10
@@ -23374,15 +22677,15 @@
/obj/item/weapon/light/bulb,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aVb" = (
+"aTr" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/hallway/secondary/entry)
-"aVc" = (
+"aTs" = (
/turf/closed/wall/r_wall,
/area/hallway/secondary/entry)
-"aVd" = (
+"aTt" = (
/obj/machinery/power/apc{
dir = 1;
name = "Monastery Maintenance APC";
@@ -23400,7 +22703,7 @@
/area/maintenance/port{
name = "Monastery Maintenance"
})
-"aVe" = (
+"aTu" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable{
icon_state = "1-8"
@@ -23409,7 +22712,7 @@
/area/maintenance/port{
name = "Monastery Maintenance"
})
-"aVf" = (
+"aTv" = (
/obj/machinery/computer/security,
/obj/machinery/requests_console{
department = "Security";
@@ -23426,14 +22729,14 @@
/area/security/checkpoint2{
name = "Customs"
})
-"aVg" = (
+"aTw" = (
/turf/open/floor/plasteel/red/side{
dir = 1
},
/area/security/checkpoint2{
name = "Customs"
})
-"aVh" = (
+"aTx" = (
/obj/structure/closet/wardrobe/red,
/turf/open/floor/plasteel/red/side{
dir = 1
@@ -23441,7 +22744,7 @@
/area/security/checkpoint2{
name = "Customs"
})
-"aVi" = (
+"aTy" = (
/obj/structure/closet/secure_closet/security,
/obj/item/device/radio/intercom{
dir = 0;
@@ -23456,7 +22759,7 @@
/area/security/checkpoint2{
name = "Customs"
})
-"aVj" = (
+"aTz" = (
/obj/machinery/light{
dir = 4;
icon_state = "tube1"
@@ -23464,7 +22767,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral/corner,
/area/hallway/primary/central)
-"aVk" = (
+"aTA" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock{
name = "Custodial Quarters";
@@ -23474,27 +22777,27 @@
dir = 5
},
/area/janitor)
-"aVl" = (
+"aTB" = (
/obj/machinery/light{
dir = 4;
icon_state = "tube1"
},
/turf/open/floor/plasteel,
/area/hydroponics)
-"aVm" = (
+"aTC" = (
/obj/machinery/vending/dinnerware,
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/kitchen)
-"aVn" = (
+"aTD" = (
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/kitchen)
-"aVo" = (
+"aTE" = (
/obj/structure/sink/kitchen{
pixel_y = 28
},
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/kitchen)
-"aVp" = (
+"aTF" = (
/obj/machinery/processor,
/obj/item/device/radio/intercom{
dir = 0;
@@ -23504,7 +22807,7 @@
},
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/kitchen)
-"aVq" = (
+"aTG" = (
/obj/machinery/light{
dir = 4;
icon_state = "tube1"
@@ -23516,24 +22819,24 @@
},
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/kitchen)
-"aVr" = (
+"aTH" = (
/obj/structure/table,
/obj/machinery/chem_dispenser/drinks/beer,
/turf/open/floor/plasteel/black,
/area/crew_quarters/bar)
-"aVs" = (
+"aTI" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/black,
/area/crew_quarters/bar)
-"aVt" = (
+"aTJ" = (
/obj/structure/table/reinforced,
/obj/machinery/chem_dispenser/drinks,
/turf/open/floor/plasteel/darkred/side{
dir = 8
},
/area/crew_quarters/bar)
-"aVu" = (
+"aTK" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -23543,7 +22846,7 @@
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/bar)
-"aVv" = (
+"aTL" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -23558,7 +22861,7 @@
dir = 5
},
/area/crew_quarters/bar)
-"aVw" = (
+"aTM" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -23569,7 +22872,7 @@
dir = 5
},
/area/crew_quarters/bar)
-"aVx" = (
+"aTN" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -23577,7 +22880,7 @@
dir = 5
},
/area/crew_quarters/bar)
-"aVy" = (
+"aTO" = (
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j2";
dir = 1
@@ -23588,7 +22891,7 @@
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/bar)
-"aVz" = (
+"aTP" = (
/obj/machinery/light/small{
dir = 1
},
@@ -23598,7 +22901,7 @@
/area/maintenance/port{
name = "Monastery Maintenance"
})
-"aVA" = (
+"aTQ" = (
/obj/effect/decal/cleanable/cobweb{
icon_state = "cobweb2"
},
@@ -23614,7 +22917,7 @@
/area/maintenance/port{
name = "Monastery Maintenance"
})
-"aVB" = (
+"aTR" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-22"
},
@@ -23626,7 +22929,7 @@
},
/turf/open/floor/plasteel/black,
/area/library)
-"aVC" = (
+"aTS" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/firealarm{
dir = 4;
@@ -23637,7 +22940,7 @@
tag = "icon-browncorner (NORTH)"
},
/area/hallway/primary/central)
-"aVD" = (
+"aTT" = (
/obj/structure/table,
/obj/machinery/computer/stockexchange,
/obj/machinery/status_display{
@@ -23649,7 +22952,7 @@
},
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"aVE" = (
+"aTU" = (
/obj/structure/disposalpipe/junction{
dir = 8;
icon_state = "pipe-j1"
@@ -23659,7 +22962,7 @@
},
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"aVF" = (
+"aTV" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_mining{
name = "Cargo Office";
@@ -23673,14 +22976,14 @@
},
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"aVG" = (
+"aTW" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"aVH" = (
+"aTX" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -23692,20 +22995,20 @@
},
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"aVI" = (
+"aTY" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel,
/area/quartermaster/storage)
-"aVJ" = (
+"aTZ" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/quartermaster/storage)
-"aVK" = (
+"aUa" = (
/obj/structure/disposalpipe/sortjunction{
dir = 8;
icon_state = "pipe-j2s";
@@ -23714,7 +23017,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/quartermaster/storage)
-"aVL" = (
+"aUb" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -23726,18 +23029,18 @@
},
/turf/open/floor/plasteel,
/area/quartermaster/storage)
-"aVM" = (
+"aUc" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
},
/turf/open/floor/plasteel,
/area/quartermaster/storage)
-"aVN" = (
+"aUd" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/quartermaster/storage)
-"aVO" = (
+"aUe" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -23752,7 +23055,7 @@
},
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aVP" = (
+"aUf" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -23767,7 +23070,7 @@
},
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aVQ" = (
+"aUg" = (
/obj/structure/cable{
icon_state = "1-8"
},
@@ -23780,12 +23083,12 @@
},
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aVR" = (
+"aUh" = (
/turf/open/floor/plasteel/arrival{
dir = 1
},
/area/hallway/secondary/entry)
-"aVS" = (
+"aUi" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
external_pressure_bound = 101.325;
@@ -23796,7 +23099,7 @@
dir = 1
},
/area/hallway/secondary/entry)
-"aVT" = (
+"aUj" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
tag = "icon-intact (EAST)";
icon_state = "intact";
@@ -23806,7 +23109,7 @@
dir = 1
},
/area/hallway/secondary/entry)
-"aVU" = (
+"aUk" = (
/obj/machinery/camera{
c_tag = "Arrivals Fore";
dir = 2
@@ -23820,7 +23123,7 @@
dir = 1
},
/area/hallway/secondary/entry)
-"aVV" = (
+"aUl" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
tag = "icon-intact (EAST)";
icon_state = "intact";
@@ -23836,7 +23139,7 @@
dir = 1
},
/area/hallway/secondary/entry)
-"aVW" = (
+"aUm" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
tag = "icon-intact (SOUTHWEST)";
icon_state = "intact";
@@ -23846,7 +23149,7 @@
dir = 1
},
/area/hallway/secondary/entry)
-"aVX" = (
+"aUn" = (
/obj/machinery/computer/card,
/obj/machinery/light{
dir = 8
@@ -23867,7 +23170,7 @@
/area/security/checkpoint2{
name = "Customs"
})
-"aVY" = (
+"aUo" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1;
@@ -23878,7 +23181,7 @@
/area/security/checkpoint2{
name = "Customs"
})
-"aVZ" = (
+"aUp" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
@@ -23886,7 +23189,7 @@
/area/security/checkpoint2{
name = "Customs"
})
-"aWa" = (
+"aUq" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
external_pressure_bound = 101.325;
@@ -23897,7 +23200,7 @@
/area/security/checkpoint2{
name = "Customs"
})
-"aWb" = (
+"aUr" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -23913,7 +23216,7 @@
/area/security/checkpoint2{
name = "Customs"
})
-"aWc" = (
+"aUs" = (
/obj/machinery/door/airlock/security{
name = "Security Checkpoint";
req_access = null;
@@ -23932,7 +23235,7 @@
/area/security/checkpoint2{
name = "Customs"
})
-"aWd" = (
+"aUt" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -23945,7 +23248,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aWe" = (
+"aUu" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -23960,7 +23263,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aWf" = (
+"aUv" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4;
initialize_directions = 11
@@ -23972,7 +23275,7 @@
},
/turf/open/floor/plasteel/neutral/corner,
/area/hallway/primary/central)
-"aWg" = (
+"aUw" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk,
/obj/machinery/airalarm{
@@ -23980,10 +23283,10 @@
},
/turf/open/floor/plasteel/floorgrime,
/area/janitor)
-"aWh" = (
+"aUx" = (
/turf/open/floor/plasteel/floorgrime,
/area/janitor)
-"aWi" = (
+"aUy" = (
/obj/structure/reagent_dispensers/watertank,
/obj/machinery/power/apc{
dir = 1;
@@ -23997,7 +23300,7 @@
},
/turf/open/floor/plasteel/floorgrime,
/area/janitor)
-"aWj" = (
+"aUz" = (
/obj/machinery/hydroponics/constructable,
/obj/machinery/light{
dir = 8
@@ -24006,13 +23309,13 @@
dir = 8
},
/area/hydroponics)
-"aWk" = (
+"aUA" = (
/obj/machinery/vending/hydronutrients,
/turf/open/floor/plasteel/vault{
dir = 5
},
/area/hydroponics)
-"aWl" = (
+"aUB" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
@@ -24021,69 +23324,69 @@
dir = 8
},
/area/hydroponics)
-"aWm" = (
+"aUC" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/hydroponics)
-"aWn" = (
+"aUD" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
on = 1
},
/turf/open/floor/plasteel,
/area/hydroponics)
-"aWo" = (
+"aUE" = (
/obj/effect/landmark/start{
name = "Botanist"
},
/turf/open/floor/plasteel,
/area/hydroponics)
-"aWp" = (
+"aUF" = (
/obj/machinery/smartfridge,
/turf/open/floor/plasteel/vault{
dir = 8
},
/area/crew_quarters/kitchen)
-"aWq" = (
+"aUG" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/kitchen)
-"aWr" = (
+"aUH" = (
/obj/machinery/vending/boozeomat,
/turf/open/floor/plasteel/vault{
dir = 8
},
/area/crew_quarters/kitchen)
-"aWs" = (
+"aUI" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/bar)
-"aWt" = (
+"aUJ" = (
/obj/structure/chair/stool/bar,
/obj/machinery/computer/security/telescreen/entertainment{
pixel_y = 32
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/bar)
-"aWu" = (
+"aUK" = (
/turf/open/floor/plasteel/vault{
dir = 5
},
/area/crew_quarters/bar)
-"aWv" = (
+"aUL" = (
/turf/open/floor/plasteel/black,
/area/crew_quarters/bar)
-"aWw" = (
+"aUM" = (
/obj/structure/chair/wood/normal,
/turf/open/floor/carpet{
icon_state = "carpetsymbol"
},
/area/crew_quarters/bar)
-"aWx" = (
+"aUN" = (
/obj/effect/landmark/start{
name = "Assistant"
},
@@ -24092,7 +23395,7 @@
icon_state = "carpetsymbol"
},
/area/crew_quarters/bar)
-"aWy" = (
+"aUO" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8;
initialize_directions = 11
@@ -24102,7 +23405,7 @@
icon_state = "carpetsymbol"
},
/area/crew_quarters/bar)
-"aWz" = (
+"aUP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -24111,7 +23414,7 @@
icon_state = "carpetsymbol"
},
/area/crew_quarters/bar)
-"aWA" = (
+"aUQ" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
on = 1;
@@ -24122,7 +23425,7 @@
dir = 5
},
/area/crew_quarters/bar)
-"aWB" = (
+"aUR" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/newscaster{
pixel_x = 32;
@@ -24133,7 +23436,7 @@
dir = 5
},
/area/crew_quarters/bar)
-"aWC" = (
+"aUS" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/extinguisher_cabinet{
pixel_x = -24
@@ -24143,11 +23446,11 @@
tag = "icon-browncorner (NORTH)"
},
/area/hallway/primary/central)
-"aWD" = (
+"aUT" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/carpet,
/area/library)
-"aWE" = (
+"aUU" = (
/obj/structure/table,
/obj/item/weapon/pen,
/obj/item/device/radio/intercom{
@@ -24167,7 +23470,7 @@
},
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"aWF" = (
+"aUV" = (
/obj/structure/table,
/obj/item/weapon/clipboard,
/obj/item/weapon/folder/yellow,
@@ -24177,7 +23480,7 @@
},
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"aWG" = (
+"aUW" = (
/obj/machinery/photocopier,
/obj/machinery/light,
/obj/machinery/camera{
@@ -24186,7 +23489,7 @@
},
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"aWH" = (
+"aUX" = (
/obj/structure/cable{
icon_state = "0-4";
d2 = 4
@@ -24199,7 +23502,7 @@
},
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"aWI" = (
+"aUY" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -24208,7 +23511,7 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"aWJ" = (
+"aUZ" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
on = 1;
@@ -24217,16 +23520,16 @@
},
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"aWK" = (
+"aVa" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/closed/wall,
/area/quartermaster/office)
-"aWL" = (
+"aVb" = (
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"aWM" = (
+"aVc" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -24238,7 +23541,7 @@
},
/turf/open/floor/plasteel,
/area/quartermaster/storage)
-"aWN" = (
+"aVd" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -24250,7 +23553,7 @@
},
/turf/open/floor/plasteel,
/area/quartermaster/storage)
-"aWO" = (
+"aVe" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -24270,7 +23573,7 @@
},
/turf/open/floor/plasteel,
/area/quartermaster/storage)
-"aWP" = (
+"aVf" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -24289,7 +23592,7 @@
},
/turf/open/floor/plasteel,
/area/quartermaster/storage)
-"aWQ" = (
+"aVg" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -24305,26 +23608,26 @@
},
/turf/open/floor/plasteel,
/area/quartermaster/storage)
-"aWR" = (
+"aVh" = (
/obj/structure/disposalpipe/trunk{
dir = 8
},
/obj/machinery/disposal/bin,
/turf/open/floor/plasteel,
/area/quartermaster/storage)
-"aWS" = (
+"aVi" = (
/turf/closed/wall,
/area/maintenance/auxsolarstarboard{
name = "Starboard Solar Maintenance"
})
-"aWT" = (
+"aVj" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/maintenance/auxsolarstarboard{
name = "Starboard Solar Maintenance"
})
-"aWU" = (
+"aVk" = (
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
@@ -24337,20 +23640,20 @@
/area/solar/starboard{
name = "Starboard Solar Array"
})
-"aWV" = (
+"aVl" = (
/obj/machinery/light{
dir = 8
},
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"aWW" = (
+"aVm" = (
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"aWX" = (
+"aVn" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"aWY" = (
+"aVo" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1;
@@ -24359,19 +23662,19 @@
},
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"aWZ" = (
+"aVp" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"aXa" = (
+"aVq" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"aXb" = (
+"aVr" = (
/obj/machinery/light{
dir = 4;
icon_state = "tube1"
@@ -24381,7 +23684,7 @@
dir = 4
},
/area/hallway/secondary/entry)
-"aXc" = (
+"aVs" = (
/obj/machinery/computer/secure_data,
/obj/machinery/button/door{
dir = 2;
@@ -24402,7 +23705,7 @@
/area/security/checkpoint2{
name = "Customs"
})
-"aXd" = (
+"aVt" = (
/obj/item/weapon/pen,
/obj/structure/table,
/obj/item/weapon/paper_bin{
@@ -24415,7 +23718,7 @@
/area/security/checkpoint2{
name = "Customs"
})
-"aXe" = (
+"aVu" = (
/obj/structure/chair/office/dark,
/obj/effect/landmark/event_spawn,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -24423,7 +23726,7 @@
/area/security/checkpoint2{
name = "Customs"
})
-"aXf" = (
+"aVv" = (
/obj/machinery/recharger{
pixel_y = 4
},
@@ -24432,7 +23735,7 @@
/area/security/checkpoint2{
name = "Customs"
})
-"aXg" = (
+"aVw" = (
/obj/machinery/power/apc{
dir = 2;
name = "Security Checkpoint APC";
@@ -24446,7 +23749,7 @@
/area/security/checkpoint2{
name = "Customs"
})
-"aXh" = (
+"aVx" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -24459,7 +23762,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aXi" = (
+"aVy" = (
/obj/vehicle/janicart,
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -24485,7 +23788,7 @@
},
/turf/open/floor/plasteel/floorgrime,
/area/janitor)
-"aXj" = (
+"aVz" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
on = 1
@@ -24498,7 +23801,7 @@
},
/turf/open/floor/plasteel/floorgrime,
/area/janitor)
-"aXk" = (
+"aVA" = (
/obj/structure/closet/l3closet/janitor,
/obj/machinery/requests_console{
department = "Janitorial";
@@ -24513,7 +23816,7 @@
},
/turf/open/floor/plasteel/floorgrime,
/area/janitor)
-"aXl" = (
+"aVB" = (
/obj/machinery/vending/hydroseeds{
slogan_delay = 700
},
@@ -24521,14 +23824,14 @@
dir = 5
},
/area/hydroponics)
-"aXm" = (
+"aVC" = (
/turf/open/floor/plasteel/green/corner,
/area/hydroponics)
-"aXn" = (
+"aVD" = (
/obj/structure/chair/stool,
/turf/open/floor/plasteel/green/side,
/area/hydroponics)
-"aXo" = (
+"aVE" = (
/obj/structure/table/reinforced,
/obj/machinery/door/window/eastleft{
dir = 8;
@@ -24543,7 +23846,7 @@
},
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/kitchen)
-"aXp" = (
+"aVF" = (
/obj/effect/landmark/start{
name = "Cook"
},
@@ -24552,7 +23855,7 @@
},
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/kitchen)
-"aXq" = (
+"aVG" = (
/obj/structure/table,
/obj/item/weapon/reagent_containers/food/condiment/saltshaker{
pixel_x = 4;
@@ -24561,12 +23864,12 @@
/obj/item/weapon/reagent_containers/food/condiment/peppermill,
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/kitchen)
-"aXr" = (
+"aVH" = (
/obj/structure/table,
/obj/machinery/reagentgrinder,
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/kitchen)
-"aXs" = (
+"aVI" = (
/obj/structure/table/reinforced,
/obj/machinery/door/firedoor,
/obj/item/weapon/reagent_containers/food/snacks/pie/cream,
@@ -24577,7 +23880,7 @@
},
/turf/open/floor/plasteel/hydrofloor,
/area/crew_quarters/kitchen)
-"aXt" = (
+"aVJ" = (
/obj/effect/landmark/start{
name = "Bartender"
},
@@ -24588,14 +23891,14 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/black,
/area/crew_quarters/bar)
-"aXu" = (
+"aVK" = (
/obj/structure/table/reinforced,
/obj/item/weapon/gun/ballistic/revolver/russian,
/turf/open/floor/plasteel/darkred/side{
dir = 8
},
/area/crew_quarters/bar)
-"aXv" = (
+"aVL" = (
/obj/structure/chair/stool/bar,
/obj/effect/landmark/start{
name = "Assistant"
@@ -24604,7 +23907,7 @@
dir = 5
},
/area/crew_quarters/bar)
-"aXw" = (
+"aVM" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -24614,14 +23917,14 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/carpet,
/area/library)
-"aXx" = (
+"aVN" = (
/obj/structure/table/wood/fancy,
/obj/item/weapon/reagent_containers/food/drinks/soda_cans/cola,
/turf/open/floor/carpet{
icon_state = "carpetsymbol"
},
/area/crew_quarters/bar)
-"aXy" = (
+"aVO" = (
/obj/item/weapon/coin/silver,
/obj/structure/table/wood/fancy,
/obj/item/weapon/cane,
@@ -24629,21 +23932,21 @@
icon_state = "carpetsymbol"
},
/area/crew_quarters/bar)
-"aXz" = (
+"aVP" = (
/obj/machinery/holopad,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/carpet{
icon_state = "carpetsymbol"
},
/area/crew_quarters/bar)
-"aXA" = (
+"aVQ" = (
/obj/structure/table/wood/fancy,
/obj/item/weapon/storage/fancy/candle_box,
/turf/open/floor/carpet{
icon_state = "carpetsymbol"
},
/area/crew_quarters/bar)
-"aXB" = (
+"aVR" = (
/obj/structure/disposalpipe/segment,
/obj/structure/table/wood,
/obj/item/clothing/under/sundress,
@@ -24651,14 +23954,14 @@
/obj/item/clothing/under/blacktango,
/turf/open/floor/plasteel/black,
/area/crew_quarters/bar)
-"aXC" = (
+"aVS" = (
/obj/structure/chair/stool,
/obj/item/trash/can,
/turf/open/floor/carpet{
icon_state = "carpetsymbol"
},
/area/crew_quarters/bar)
-"aXD" = (
+"aVT" = (
/obj/effect/landmark/start{
name = "Assistant"
},
@@ -24667,20 +23970,20 @@
icon_state = "carpetsymbol"
},
/area/crew_quarters/bar)
-"aXE" = (
+"aVU" = (
/obj/structure/chair/stool,
/turf/open/floor/carpet{
icon_state = "carpetsymbol"
},
/area/crew_quarters/bar)
-"aXF" = (
+"aVV" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aXG" = (
+"aVW" = (
/obj/machinery/door/airlock/maintenance{
name = "Cargo Office Maintenance";
req_access_txt = "50"
@@ -24693,7 +23996,7 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
/area/quartermaster/office)
-"aXH" = (
+"aVX" = (
/obj/structure/table,
/obj/item/weapon/storage/firstaid/regular{
pixel_x = 6;
@@ -24701,29 +24004,29 @@
},
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"aXI" = (
+"aVY" = (
/obj/structure/table,
/obj/machinery/cell_charger,
/obj/item/weapon/hand_labeler,
/obj/machinery/light/small,
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"aXJ" = (
+"aVZ" = (
/obj/structure/closet/wardrobe/cargotech,
/obj/item/clothing/head/mailman,
/obj/item/clothing/under/rank/mailman,
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"aXK" = (
+"aWa" = (
/turf/closed/wall,
/area/quartermaster/qm)
-"aXL" = (
+"aWb" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/quartermaster/qm)
-"aXM" = (
+"aWc" = (
/obj/machinery/door/airlock/glass_mining{
name = "Quartermaster";
req_access_txt = "41"
@@ -24737,15 +24040,15 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/brown,
/area/quartermaster/qm)
-"aXN" = (
+"aWd" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/quartermaster/qm)
-"aXO" = (
+"aWe" = (
/turf/closed/wall,
/area/quartermaster/miningdock)
-"aXP" = (
+"aWf" = (
/obj/machinery/door/firedoor,
/obj/structure/cable{
d1 = 1;
@@ -24756,12 +24059,12 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/brown,
/area/quartermaster/miningdock)
-"aXQ" = (
+"aWg" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/brown,
/area/quartermaster/miningdock)
-"aXR" = (
+"aWh" = (
/obj/machinery/power/smes,
/obj/structure/cable{
icon_state = "0-2";
@@ -24772,7 +24075,7 @@
/area/maintenance/auxsolarstarboard{
name = "Starboard Solar Maintenance"
})
-"aXS" = (
+"aWi" = (
/obj/machinery/power/terminal{
dir = 8
},
@@ -24788,7 +24091,7 @@
/area/maintenance/auxsolarstarboard{
name = "Starboard Solar Maintenance"
})
-"aXT" = (
+"aWj" = (
/obj/structure/rack,
/obj/item/clothing/mask/gas,
/obj/item/device/multitool,
@@ -24796,7 +24099,7 @@
/area/maintenance/auxsolarstarboard{
name = "Starboard Solar Maintenance"
})
-"aXU" = (
+"aWk" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/sign/securearea{
@@ -24811,35 +24114,35 @@
/area/maintenance/auxsolarstarboard{
name = "Starboard Solar Maintenance"
})
-"aXV" = (
+"aWl" = (
/obj/machinery/door/airlock/external{
name = "Port Docking Bay 1"
},
/turf/open/floor/plating,
/area/hallway/secondary/entry)
-"aXW" = (
-/turf/open/floor/plasteel,
+"aWm" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
-/area/hallway/secondary/entry)
-"aXX" = (
/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"aWn" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"aXY" = (
+"aWo" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"aXZ" = (
+"aWp" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
/area/hallway/secondary/entry)
-"aYa" = (
+"aWq" = (
/obj/machinery/door/firedoor,
/obj/structure/table/reinforced,
/obj/machinery/door/window/westright{
@@ -24863,12 +24166,12 @@
opacity = 0
},
/obj/item/weapon/crowbar,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
/area/security/checkpoint2{
name = "Customs"
})
-"aYb" = (
+"aWr" = (
/obj/structure/janitorialcart,
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
@@ -24878,7 +24181,7 @@
},
/turf/open/floor/plasteel/floorgrime,
/area/janitor)
-"aYc" = (
+"aWs" = (
/obj/structure/closet/jcloset,
/obj/item/clothing/head/crown,
/obj/machinery/camera{
@@ -24890,13 +24193,13 @@
},
/turf/open/floor/plasteel/floorgrime,
/area/janitor)
-"aYd" = (
+"aWt" = (
/obj/machinery/seed_extractor,
/turf/open/floor/plasteel/vault{
dir = 5
},
/area/hydroponics)
-"aYe" = (
+"aWu" = (
/obj/machinery/light{
dir = 4;
icon_state = "tube1"
@@ -24908,7 +24211,7 @@
},
/turf/open/floor/plasteel,
/area/hydroponics)
-"aYf" = (
+"aWv" = (
/obj/structure/table/reinforced,
/obj/machinery/door/firedoor,
/obj/machinery/door/window/westright{
@@ -24919,7 +24222,7 @@
/obj/item/weapon/reagent_containers/glass/bucket,
/turf/open/floor/plasteel,
/area/hydroponics)
-"aYg" = (
+"aWw" = (
/obj/structure/table/reinforced,
/obj/machinery/door/firedoor,
/obj/machinery/door/window/westright{
@@ -24929,7 +24232,7 @@
},
/turf/open/floor/plasteel,
/area/hydroponics)
-"aYh" = (
+"aWx" = (
/obj/structure/table,
/obj/machinery/microwave{
pixel_x = -3;
@@ -24937,22 +24240,22 @@
},
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/kitchen)
-"aYi" = (
+"aWy" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/kitchen)
-"aYj" = (
+"aWz" = (
/obj/structure/table,
/obj/item/weapon/kitchen/rollingpin,
/obj/item/weapon/reagent_containers/food/condiment/enzyme,
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/kitchen)
-"aYk" = (
+"aWA" = (
/obj/structure/table,
/obj/item/weapon/storage/box/ingredients/wildcard,
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/kitchen)
-"aYl" = (
+"aWB" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-22"
},
@@ -24970,35 +24273,34 @@
},
/turf/open/floor/plasteel/black,
/area/library)
-"aYm" = (
+"aWC" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/black,
/area/crew_quarters/bar)
-"aYn" = (
+"aWD" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/black,
/area/crew_quarters/bar)
-"aYo" = (
+"aWE" = (
/obj/structure/table/reinforced,
/obj/item/clothing/head/that{
- throwforce = 1;
- throwing = 1
+ throwforce = 1
},
/turf/open/floor/plasteel/darkred/side{
dir = 8
},
/area/crew_quarters/bar)
-"aYp" = (
+"aWF" = (
/obj/structure/chair/stool/bar,
/turf/open/floor/plasteel/black,
/area/crew_quarters/bar)
-"aYq" = (
+"aWG" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/carpet{
icon_state = "carpetsymbol"
},
/area/crew_quarters/bar)
-"aYr" = (
+"aWH" = (
/obj/structure/disposalpipe/segment,
/obj/structure/chair/wood/normal{
icon_state = "wooden_chair";
@@ -25008,7 +24310,7 @@
dir = 5
},
/area/crew_quarters/bar)
-"aYs" = (
+"aWI" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
layer = 2.4;
@@ -25017,7 +24319,7 @@
/obj/item/clothing/shoes/sandal,
/turf/open/floor/plasteel/black,
/area/crew_quarters/bar)
-"aYt" = (
+"aWJ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -25025,18 +24327,18 @@
dir = 5
},
/area/crew_quarters/bar)
-"aYu" = (
+"aWK" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/bar)
-"aYv" = (
+"aWL" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
/turf/open/floor/plating,
/area/crew_quarters/bar)
-"aYw" = (
+"aWM" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -25045,7 +24347,7 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aYx" = (
+"aWN" = (
/obj/structure/closet/secure_closet/quartermaster,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/airalarm{
@@ -25059,7 +24361,7 @@
dir = 9
},
/area/quartermaster/qm)
-"aYy" = (
+"aWO" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -25078,7 +24380,7 @@
tag = "icon-brown (NORTH)"
},
/area/quartermaster/qm)
-"aYz" = (
+"aWP" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 8
@@ -25087,7 +24389,7 @@
dir = 5
},
/area/quartermaster/qm)
-"aYA" = (
+"aWQ" = (
/obj/structure/closet/wardrobe/miner,
/obj/machinery/firealarm{
dir = 4;
@@ -25098,7 +24400,7 @@
dir = 9
},
/area/quartermaster/miningdock)
-"aYB" = (
+"aWR" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -25110,13 +24412,13 @@
dir = 1
},
/area/quartermaster/miningdock)
-"aYC" = (
+"aWS" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/brown{
dir = 1
},
/area/quartermaster/miningdock)
-"aYD" = (
+"aWT" = (
/obj/structure/closet/emcloset,
/obj/machinery/airalarm{
dir = 8;
@@ -25127,7 +24429,7 @@
dir = 5
},
/area/quartermaster/miningdock)
-"aYE" = (
+"aWU" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -25142,7 +24444,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aYF" = (
+"aWV" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -25151,7 +24453,7 @@
},
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aYG" = (
+"aWW" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -25166,7 +24468,7 @@
/area/maintenance/auxsolarstarboard{
name = "Starboard Solar Maintenance"
})
-"aYH" = (
+"aWX" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -25183,7 +24485,7 @@
/area/maintenance/auxsolarstarboard{
name = "Starboard Solar Maintenance"
})
-"aYI" = (
+"aWY" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -25194,7 +24496,7 @@
/area/maintenance/auxsolarstarboard{
name = "Starboard Solar Maintenance"
})
-"aYJ" = (
+"aWZ" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -25210,7 +24512,7 @@
/area/maintenance/auxsolarstarboard{
name = "Starboard Solar Maintenance"
})
-"aYK" = (
+"aXa" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -25227,7 +24529,7 @@
/area/maintenance/auxsolarstarboard{
name = "Starboard Solar Maintenance"
})
-"aYL" = (
+"aXb" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -25238,7 +24540,7 @@
/area/maintenance/auxsolarstarboard{
name = "Starboard Solar Maintenance"
})
-"aYM" = (
+"aXc" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -25255,7 +24557,7 @@
/area/maintenance/auxsolarstarboard{
name = "Starboard Solar Maintenance"
})
-"aYN" = (
+"aXd" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
d1 = 4;
@@ -25267,7 +24569,7 @@
/area/solar/starboard{
name = "Starboard Solar Array"
})
-"aYO" = (
+"aXe" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
d2 = 8;
@@ -25277,13 +24579,13 @@
/area/solar/starboard{
name = "Starboard Solar Array"
})
-"aYP" = (
+"aXf" = (
/obj/structure/lattice/catwalk,
/turf/open/space,
/area/solar/starboard{
name = "Starboard Solar Array"
})
-"aYQ" = (
+"aXg" = (
/obj/structure/lattice/catwalk,
/obj/structure/cable{
icon_state = "0-4";
@@ -25293,7 +24595,7 @@
/area/solar/starboard{
name = "Starboard Solar Array"
})
-"aYR" = (
+"aXh" = (
/obj/machinery/power/tracker,
/obj/structure/cable{
d2 = 8;
@@ -25303,7 +24605,7 @@
/area/solar/starboard{
name = "Starboard Solar Array"
})
-"aYS" = (
+"aXi" = (
/obj/structure/grille,
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
@@ -25316,33 +24618,33 @@
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/hallway/secondary/entry)
-"aYT" = (
+"aXj" = (
/turf/open/floor/plating,
/area/hallway/secondary/entry)
-"aYU" = (
+"aXk" = (
/obj/structure/closet/emcloset,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 10
},
+/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"aYV" = (
+"aXl" = (
/obj/machinery/light,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"aYW" = (
+"aXm" = (
/obj/structure/closet/emcloset,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 6
},
+/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"aYX" = (
+"aXn" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"aYY" = (
+"aXo" = (
/obj/structure/window/reinforced{
dir = 8
},
@@ -25353,13 +24655,13 @@
/obj/item/clothing/suit/space/hardsuit/engine/elite,
/turf/open/floor/plating/abductor,
/area/shuttle/abandoned)
-"aYZ" = (
+"aXp" = (
/obj/machinery/light{
dir = 1
},
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"aZa" = (
+"aXq" = (
/obj/machinery/flasher{
id = "brigentry";
pixel_x = -28;
@@ -25367,7 +24669,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"aZb" = (
+"aXr" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
tag = "icon-intact (EAST)";
icon_state = "intact";
@@ -25376,7 +24678,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"aZc" = (
+"aXs" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
tag = "icon-intact (EAST)";
icon_state = "intact";
@@ -25384,13 +24686,13 @@
},
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"aZd" = (
+"aXt" = (
/obj/structure/chair{
dir = 1
},
/turf/open/floor/plating/abductor,
/area/shuttle/abandoned)
-"aZe" = (
+"aXu" = (
/obj/structure/window/reinforced{
dir = 4
},
@@ -25399,7 +24701,7 @@
/obj/item/clothing/shoes/magboots,
/turf/open/floor/plating/abductor,
/area/shuttle/abandoned)
-"aZf" = (
+"aXv" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
@@ -25411,7 +24713,7 @@
},
/turf/open/floor/plasteel/floorgrime,
/area/janitor)
-"aZg" = (
+"aXw" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
on = 1;
@@ -25420,7 +24722,7 @@
},
/turf/open/floor/plasteel/floorgrime,
/area/janitor)
-"aZh" = (
+"aXx" = (
/obj/item/weapon/reagent_containers/glass/bucket,
/obj/item/weapon/mop,
/obj/structure/sink{
@@ -25431,17 +24733,17 @@
},
/turf/open/floor/plasteel/floorgrime,
/area/janitor)
-"aZi" = (
+"aXy" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/hydroponics)
-"aZj" = (
+"aXz" = (
/turf/open/floor/plasteel/green/corner{
dir = 1
},
/area/hallway/primary/central)
-"aZk" = (
+"aXA" = (
/obj/structure/table,
/obj/item/weapon/storage/crayons,
/obj/item/weapon/wrench,
@@ -25449,17 +24751,17 @@
/area/chapel/main{
name = "Monastery"
})
-"aZl" = (
+"aXB" = (
/obj/structure/table,
/obj/item/weapon/reagent_containers/glass/beaker/large,
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/kitchen)
-"aZm" = (
+"aXC" = (
/obj/structure/table,
/obj/item/weapon/reagent_containers/food/snacks/grown/tomato,
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/kitchen)
-"aZn" = (
+"aXD" = (
/obj/structure/chair{
dir = 8
},
@@ -25467,7 +24769,7 @@
/area/chapel/main{
name = "Monastery"
})
-"aZo" = (
+"aXE" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1;
@@ -25477,7 +24779,7 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/black,
/area/crew_quarters/bar)
-"aZp" = (
+"aXF" = (
/obj/structure/table/reinforced,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -25487,7 +24789,7 @@
dir = 8
},
/area/crew_quarters/bar)
-"aZq" = (
+"aXG" = (
/obj/machinery/light/small{
dir = 8
},
@@ -25498,7 +24800,7 @@
/area/chapel/main{
name = "Monastery"
})
-"aZr" = (
+"aXH" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -25506,7 +24808,7 @@
dir = 5
},
/area/crew_quarters/bar)
-"aZs" = (
+"aXI" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
@@ -25515,26 +24817,26 @@
dir = 5
},
/area/crew_quarters/bar)
-"aZt" = (
+"aXJ" = (
/obj/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/carpet,
/area/chapel/main{
name = "Monastery"
})
-"aZu" = (
+"aXK" = (
/obj/structure/table/reinforced,
/obj/item/weapon/lighter,
/turf/open/floor/plasteel/darkred/side{
dir = 8
},
/area/crew_quarters/bar)
-"aZv" = (
+"aXL" = (
/obj/item/weapon/cigbutt,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aZw" = (
+"aXM" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -25546,7 +24848,7 @@
},
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aZx" = (
+"aXN" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -25558,7 +24860,7 @@
},
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"aZy" = (
+"aXO" = (
/obj/structure/cable{
icon_state = "0-4";
d2 = 4
@@ -25579,24 +24881,24 @@
dir = 8
},
/area/quartermaster/qm)
-"aZz" = (
+"aXP" = (
/obj/structure/cable{
icon_state = "1-8"
},
/turf/open/floor/plasteel,
/area/quartermaster/qm)
-"aZA" = (
+"aXQ" = (
/obj/structure/filingcabinet,
/turf/open/floor/plasteel/brown{
dir = 4
},
/area/quartermaster/qm)
-"aZB" = (
+"aXR" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/quartermaster/miningdock)
-"aZC" = (
+"aXS" = (
/obj/structure/table,
/obj/item/weapon/folder/yellow,
/obj/item/weapon/pen,
@@ -25605,7 +24907,7 @@
tag = "icon-browncorner (NORTH)"
},
/area/quartermaster/miningdock)
-"aZD" = (
+"aXT" = (
/obj/structure/chair/office/dark{
dir = 8
},
@@ -25621,7 +24923,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/quartermaster/miningdock)
-"aZE" = (
+"aXU" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
on = 1;
@@ -25630,7 +24932,7 @@
},
/turf/open/floor/plasteel,
/area/quartermaster/miningdock)
-"aZF" = (
+"aXV" = (
/obj/machinery/computer/security/mining,
/obj/machinery/requests_console{
department = "Mining";
@@ -25640,15 +24942,15 @@
},
/turf/open/floor/plasteel/brown/corner,
/area/quartermaster/miningdock)
-"aZG" = (
+"aXW" = (
/obj/structure/table,
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/labor)
-"aZH" = (
+"aXX" = (
/obj/machinery/computer/shuttle/mining,
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/labor)
-"aZI" = (
+"aXY" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -25665,7 +24967,7 @@
icon_state = "platingdmg3"
},
/area/maintenance/apmaint)
-"aZJ" = (
+"aXZ" = (
/obj/structure/cable,
/obj/machinery/power/apc{
dir = 8;
@@ -25677,14 +24979,14 @@
/area/maintenance/auxsolarstarboard{
name = "Starboard Solar Maintenance"
})
-"aZK" = (
+"aYa" = (
/obj/structure/chair/stool,
/obj/item/weapon/cigbutt/cigarbutt,
/turf/open/floor/plating,
/area/maintenance/auxsolarstarboard{
name = "Starboard Solar Maintenance"
})
-"aZL" = (
+"aYb" = (
/obj/machinery/power/solar_control{
id = "starboardsolar";
name = "Starboard Solar Control";
@@ -25695,7 +24997,7 @@
/area/maintenance/auxsolarstarboard{
name = "Starboard Solar Maintenance"
})
-"aZM" = (
+"aYc" = (
/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
tag = "icon-manifold (WEST)";
icon_state = "manifold";
@@ -25703,11 +25005,11 @@
},
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"aZN" = (
+"aYd" = (
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"aZO" = (
+"aYe" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
layer = 2.4;
@@ -25715,14 +25017,14 @@
},
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"aZP" = (
+"aYf" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8;
initialize_directions = 11
},
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"aZQ" = (
+"aYg" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
on = 1;
@@ -25731,14 +25033,14 @@
},
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"aZR" = (
+"aYh" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
name = "Central Access"
},
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"aZS" = (
+"aYi" = (
/obj/machinery/light/small{
dir = 4
},
@@ -25755,7 +25057,7 @@
/area/chapel/main{
name = "Monastery"
})
-"aZT" = (
+"aYj" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -25765,14 +25067,14 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/floorgrime,
/area/janitor)
-"aZU" = (
+"aYk" = (
/obj/structure/table,
/obj/item/weapon/restraints/legcuffs/beartrap,
/obj/item/weapon/restraints/legcuffs/beartrap,
/obj/item/weapon/reagent_containers/spray/cleaner,
/turf/open/floor/plasteel/floorgrime,
/area/janitor)
-"aZV" = (
+"aYl" = (
/obj/structure/table,
/obj/item/weapon/storage/box/lights/mixed{
pixel_x = 3;
@@ -25781,7 +25083,7 @@
/obj/item/weapon/storage/box/mousetraps,
/turf/open/floor/plasteel/floorgrime,
/area/janitor)
-"aZW" = (
+"aYm" = (
/obj/structure/sink{
icon_state = "sink";
dir = 8;
@@ -25792,7 +25094,7 @@
dir = 8
},
/area/hydroponics)
-"aZX" = (
+"aYn" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1;
@@ -25801,13 +25103,13 @@
},
/turf/open/floor/plasteel,
/area/hydroponics)
-"aZY" = (
+"aYo" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/hydroponics)
-"aZZ" = (
+"aYp" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -25818,7 +25120,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/hydroponics)
-"baa" = (
+"aYq" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -25827,7 +25129,7 @@
},
/turf/open/floor/plasteel,
/area/hydroponics)
-"bab" = (
+"aYr" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
cyclelinkeddir = 4;
@@ -25842,7 +25144,7 @@
},
/turf/open/floor/plasteel,
/area/hydroponics)
-"bac" = (
+"aYs" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -25853,7 +25155,7 @@
dir = 1
},
/area/hallway/primary/central)
-"bad" = (
+"aYt" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -25865,7 +25167,7 @@
dir = 4
},
/area/hallway/primary/central)
-"bae" = (
+"aYu" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
cyclelinkeddir = 8;
@@ -25880,7 +25182,7 @@
},
/turf/open/floor/plasteel,
/area/crew_quarters/kitchen)
-"baf" = (
+"aYv" = (
/obj/structure/disposalpipe/sortjunction{
dir = 4;
icon_state = "pipe-j1s";
@@ -25891,7 +25193,7 @@
},
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/kitchen)
-"bag" = (
+"aYw" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -25901,7 +25203,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/kitchen)
-"bah" = (
+"aYx" = (
/obj/effect/landmark/start{
name = "Cook"
},
@@ -25913,7 +25215,7 @@
},
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/kitchen)
-"bai" = (
+"aYy" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -25925,7 +25227,7 @@
},
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/kitchen)
-"baj" = (
+"aYz" = (
/obj/machinery/light{
dir = 4;
icon_state = "tube1"
@@ -25936,7 +25238,7 @@
},
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/kitchen)
-"bak" = (
+"aYA" = (
/obj/structure/chair/stool/bar,
/obj/machinery/camera{
c_tag = "Bar Port";
@@ -25945,7 +25247,7 @@
/obj/machinery/light,
/turf/open/floor/plasteel/black,
/area/crew_quarters/bar)
-"bal" = (
+"aYB" = (
/obj/item/weapon/reagent_containers/food/condiment/peppermill{
pixel_x = 5;
pixel_y = -2
@@ -25960,7 +25262,7 @@
dir = 5
},
/area/crew_quarters/bar)
-"bam" = (
+"aYC" = (
/obj/structure/chair/wood/normal{
icon_state = "wooden_chair";
dir = 8
@@ -25968,11 +25270,11 @@
/obj/machinery/light,
/turf/open/floor/plasteel/black,
/area/crew_quarters/bar)
-"ban" = (
+"aYD" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/black,
/area/crew_quarters/bar)
-"bao" = (
+"aYE" = (
/obj/structure/chair/wood/normal{
icon_state = "wooden_chair";
dir = 4
@@ -25980,7 +25282,7 @@
/obj/machinery/light,
/turf/open/floor/plasteel/black,
/area/crew_quarters/bar)
-"bap" = (
+"aYF" = (
/obj/structure/table/wood,
/obj/item/weapon/kitchen/fork,
/obj/item/clothing/glasses/regular/hipster,
@@ -25988,7 +25290,7 @@
dir = 5
},
/area/crew_quarters/bar)
-"baq" = (
+"aYG" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -25997,7 +25299,7 @@
dir = 5
},
/area/crew_quarters/bar)
-"bar" = (
+"aYH" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -26008,7 +25310,7 @@
/obj/machinery/light,
/turf/open/floor/plasteel/black,
/area/crew_quarters/bar)
-"bas" = (
+"aYI" = (
/obj/machinery/power/smes{
charge = 5e+006
},
@@ -26021,7 +25323,7 @@
/area/maintenance/port{
name = "Monastery Maintenance"
})
-"bat" = (
+"aYJ" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 8
@@ -26030,10 +25332,10 @@
dir = 5
},
/area/crew_quarters/bar)
-"bau" = (
+"aYK" = (
/turf/closed/wall,
/area/assembly/chargebay)
-"bav" = (
+"aYL" = (
/obj/structure/table,
/obj/item/weapon/cartridge/quartermaster{
pixel_x = 6;
@@ -26056,7 +25358,7 @@
dir = 8
},
/area/quartermaster/qm)
-"baw" = (
+"aYM" = (
/obj/structure/chair/office/dark{
dir = 4
},
@@ -26065,20 +25367,20 @@
},
/turf/open/floor/plasteel,
/area/quartermaster/qm)
-"bax" = (
+"aYN" = (
/obj/machinery/computer/cargo,
/turf/open/floor/plasteel/brown{
dir = 4
},
/area/quartermaster/qm)
-"bay" = (
+"aYO" = (
/obj/machinery/mineral/equipment_vendor,
/turf/open/floor/plasteel/brown/corner{
dir = 1;
tag = "icon-browncorner (NORTH)"
},
/area/quartermaster/miningdock)
-"baz" = (
+"aYP" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -26091,20 +25393,20 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/quartermaster/miningdock)
-"baA" = (
+"aYQ" = (
/turf/open/floor/plasteel,
/area/quartermaster/miningdock)
-"baB" = (
+"aYR" = (
/obj/machinery/computer/shuttle/mining,
/turf/open/floor/plasteel/brown/corner,
/area/quartermaster/miningdock)
-"baC" = (
+"aYS" = (
/obj/structure/chair{
dir = 1
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/labor)
-"baD" = (
+"aYT" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -26115,11 +25417,11 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"baE" = (
+"aYU" = (
/obj/item/weapon/caution,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"baF" = (
+"aYV" = (
/obj/structure/table,
/obj/item/weapon/paper_bin{
layer = 2.9;
@@ -26129,28 +25431,28 @@
},
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"baG" = (
+"aYW" = (
/turf/closed/wall/mineral/titanium,
/area/shuttle/arrival)
-"baH" = (
+"aYX" = (
/obj/machinery/door/airlock/titanium{
name = "Arrivals Shuttle Airlock"
},
/turf/open/floor/plating,
/area/shuttle/arrival)
-"baI" = (
+"aYY" = (
/obj/structure/grille,
/obj/structure/window/shuttle,
/turf/open/floor/plating,
/area/shuttle/arrival)
-"baJ" = (
+"aYZ" = (
/obj/structure/shuttle/engine/propulsion{
- icon_state = "burst_r";
- dir = 8
+ dir = 4;
+ icon_state = "burst_r"
},
/turf/open/floor/plasteel/black,
/area/shuttle/arrival)
-"baK" = (
+"aZa" = (
/obj/machinery/camera{
c_tag = "Arrivals Central";
dir = 4;
@@ -26162,21 +25464,21 @@
},
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"baL" = (
+"aZb" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"baM" = (
+"aZc" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"baN" = (
+"aZd" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -26186,7 +25488,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"baO" = (
+"aZe" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -26195,7 +25497,7 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"baP" = (
+"aZf" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -26207,7 +25509,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"baQ" = (
+"aZg" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
name = "Central Access"
@@ -26223,7 +25525,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"baR" = (
+"aZh" = (
/obj/machinery/door/firedoor,
/obj/structure/cable{
d1 = 4;
@@ -26243,7 +25545,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"baS" = (
+"aZi" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -26255,7 +25557,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"baT" = (
+"aZj" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -26267,7 +25569,7 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"baU" = (
+"aZk" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock{
name = "Custodial Closet";
@@ -26282,32 +25584,32 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/floorgrime,
/area/janitor)
-"baV" = (
+"aZl" = (
/obj/machinery/hydroponics/constructable,
/turf/open/floor/plasteel/green/side{
dir = 10
},
/area/hydroponics)
-"baW" = (
+"aZm" = (
/obj/machinery/hydroponics/constructable,
/turf/open/floor/plasteel/green/corner,
/area/hydroponics)
-"baX" = (
+"aZn" = (
/obj/item/weapon/reagent_containers/glass/bucket,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/hydroponics)
-"baY" = (
+"aZo" = (
/obj/structure/reagent_dispensers/watertank/high,
/turf/open/floor/plasteel/green/corner,
/area/hydroponics)
-"baZ" = (
+"aZp" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
/area/hallway/primary/central)
-"bba" = (
+"aZq" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 1
@@ -26325,7 +25627,7 @@
},
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/kitchen)
-"bbb" = (
+"aZr" = (
/obj/machinery/power/terminal{
dir = 8
},
@@ -26333,30 +25635,30 @@
/area/maintenance/port{
name = "Monastery Maintenance"
})
-"bbc" = (
+"aZs" = (
/obj/structure/sign/barsign,
/turf/closed/wall,
/area/crew_quarters/bar)
-"bbd" = (
+"aZt" = (
/obj/item/weapon/wrench,
/turf/open/floor/plating,
/area/maintenance/port{
name = "Monastery Maintenance"
})
-"bbe" = (
+"aZu" = (
/obj/item/stack/cable_coil,
/obj/item/stack/cable_coil,
/turf/open/floor/plating,
/area/maintenance/port{
name = "Monastery Maintenance"
})
-"bbf" = (
+"aZv" = (
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
},
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"bbg" = (
+"aZw" = (
/obj/structure/table,
/obj/item/weapon/crowbar/large,
/obj/machinery/airalarm{
@@ -26365,7 +25667,7 @@
/obj/item/clothing/head/welding,
/turf/open/floor/plasteel,
/area/assembly/chargebay)
-"bbh" = (
+"aZx" = (
/obj/structure/table,
/obj/item/weapon/storage/toolbox/mechanical,
/obj/machinery/power/apc{
@@ -26380,16 +25682,16 @@
},
/turf/open/floor/plasteel,
/area/assembly/chargebay)
-"bbi" = (
+"aZy" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/machinery/firealarm{
dir = 1;
pixel_y = 24
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
/area/assembly/chargebay)
-"bbj" = (
+"aZz" = (
/obj/machinery/mech_bay_recharge_port,
/obj/structure/cable{
icon_state = "0-2";
@@ -26403,10 +25705,10 @@
},
/turf/open/floor/plating,
/area/assembly/chargebay)
-"bbk" = (
+"aZA" = (
/turf/open/floor/mech_bay_recharge_floor,
/area/assembly/chargebay)
-"bbl" = (
+"aZB" = (
/obj/machinery/computer/mech_bay_power_console,
/obj/structure/cable{
icon_state = "0-2";
@@ -26414,7 +25716,7 @@
},
/turf/open/floor/plasteel,
/area/assembly/chargebay)
-"bbm" = (
+"aZC" = (
/obj/structure/table,
/obj/machinery/computer/stockexchange,
/obj/machinery/requests_console{
@@ -26427,7 +25729,7 @@
dir = 10
},
/area/quartermaster/qm)
-"bbn" = (
+"aZD" = (
/obj/structure/table,
/obj/item/weapon/clipboard,
/obj/item/weapon/stamp/qm{
@@ -26444,7 +25746,7 @@
dir = 2
},
/area/quartermaster/qm)
-"bbo" = (
+"aZE" = (
/obj/machinery/computer/security/mining,
/obj/item/device/radio/intercom{
name = "Station Intercom (General)";
@@ -26454,7 +25756,7 @@
dir = 6
},
/area/quartermaster/qm)
-"bbp" = (
+"aZF" = (
/obj/structure/rack{
dir = 1
},
@@ -26477,7 +25779,7 @@
tag = "icon-browncorner (NORTH)"
},
/area/quartermaster/miningdock)
-"bbq" = (
+"aZG" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -26492,7 +25794,7 @@
},
/turf/open/floor/plasteel,
/area/quartermaster/miningdock)
-"bbr" = (
+"aZH" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
layer = 2.4;
@@ -26500,10 +25802,10 @@
},
/turf/open/floor/plasteel,
/area/quartermaster/miningdock)
-"bbs" = (
+"aZI" = (
/turf/open/floor/plasteel/brown/corner,
/area/quartermaster/miningdock)
-"bbt" = (
+"aZJ" = (
/obj/machinery/door/airlock/external{
name = "Mining Dock Airlock";
req_access = null;
@@ -26511,17 +25813,17 @@
},
/turf/open/floor/plating,
/area/quartermaster/miningdock)
-"bbu" = (
+"aZK" = (
/turf/open/floor/plating,
/area/quartermaster/miningdock)
-"bbv" = (
+"aZL" = (
/obj/machinery/door/airlock/titanium{
name = "Mining Shuttle Airlock";
req_access_txt = "48"
},
/turf/open/floor/plating,
/area/shuttle/labor)
-"bbw" = (
+"aZM" = (
/obj/machinery/door/airlock/titanium{
name = "Mining Shuttle Airlock";
req_access_txt = "48"
@@ -26545,13 +25847,13 @@
},
/turf/open/floor/plating,
/area/shuttle/labor)
-"bbx" = (
+"aZN" = (
/obj/structure/chair{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"bby" = (
+"aZO" = (
/obj/machinery/light/small{
dir = 4
},
@@ -26560,18 +25862,18 @@
/obj/item/trash/chips,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"bbz" = (
+"aZP" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"bbA" = (
+"aZQ" = (
/obj/structure/closet/cabinet,
/obj/effect/spawner/lootdrop/maintenance,
/obj/item/weapon/circuitboard/machine/hydroponics,
/obj/item/weapon/electronics/apc,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"bbB" = (
+"aZR" = (
/obj/structure/table,
/obj/item/weapon/storage/firstaid/regular{
pixel_y = 4
@@ -26579,10 +25881,10 @@
/obj/item/weapon/storage/toolbox/emergency,
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/arrival)
-"bbC" = (
+"aZS" = (
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/arrival)
-"bbD" = (
+"aZT" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 1;
name = "Air Out";
@@ -26592,22 +25894,22 @@
/area/maintenance/port{
name = "Monastery Maintenance"
})
-"bbE" = (
+"aZU" = (
/obj/structure/closet/wardrobe/black,
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/arrival)
-"bbF" = (
+"aZV" = (
/obj/structure/closet/wardrobe/mixed,
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/arrival)
-"bbG" = (
+"aZW" = (
/obj/machinery/requests_console{
department = "Arrival shuttle";
pixel_y = 30
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/arrival)
-"bbH" = (
+"aZX" = (
/obj/structure/shuttle/engine/heater{
icon_state = "heater";
dir = 4
@@ -26617,16 +25919,16 @@
},
/turf/open/floor/plasteel/black,
/area/shuttle/arrival)
-"bbI" = (
+"aZY" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/turf/open/floor/plasteel/neutral/corner,
/area/hallway/secondary/entry)
-"bbJ" = (
+"aZZ" = (
/turf/closed/wall/r_wall,
/area/construction/quarters{
name = "Lounge"
})
-"bbK" = (
+"baa" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
/obj/machinery/door/poddoor/shutters/preopen{
@@ -26637,7 +25939,7 @@
/area/construction/quarters{
name = "Lounge"
})
-"bbL" = (
+"bab" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
name = "Lounge"
@@ -26651,7 +25953,7 @@
/area/construction/quarters{
name = "Lounge"
})
-"bbM" = (
+"bac" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
/obj/machinery/door/poddoor/shutters/preopen{
@@ -26663,7 +25965,7 @@
/area/construction/quarters{
name = "Lounge"
})
-"bbN" = (
+"bad" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/sign/directions/security{
dir = 1;
@@ -26685,7 +25987,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bbO" = (
+"bae" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -26697,7 +25999,7 @@
dir = 4
},
/area/hallway/primary/central)
-"bbP" = (
+"baf" = (
/obj/structure/chair{
name = "Throne of Custodia"
},
@@ -26711,7 +26013,7 @@
dir = 4
},
/area/hallway/primary/central)
-"bbQ" = (
+"bag" = (
/obj/machinery/vending/cola,
/obj/structure/sign/map{
icon_state = "map-pubby";
@@ -26721,13 +26023,13 @@
dir = 4
},
/area/hallway/primary/central)
-"bbR" = (
+"bah" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/hydroponics)
-"bbS" = (
+"bai" = (
/obj/structure/table/reinforced,
/obj/machinery/door/firedoor,
/obj/machinery/door/poddoor/shutters/preopen{
@@ -26736,7 +26038,7 @@
},
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/kitchen)
-"bbT" = (
+"baj" = (
/obj/structure/table/reinforced,
/obj/machinery/door/firedoor,
/obj/machinery/door/poddoor/shutters/preopen{
@@ -26746,7 +26048,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/kitchen)
-"bbU" = (
+"bak" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/sign/poster{
pixel_y = 32
@@ -26762,7 +26064,7 @@
dir = 1
},
/area/hallway/primary/central)
-"bbV" = (
+"bal" = (
/obj/structure/chair{
dir = 8
},
@@ -26770,7 +26072,7 @@
dir = 1
},
/area/hallway/primary/central)
-"bbW" = (
+"bam" = (
/obj/machinery/light{
dir = 1
},
@@ -26778,7 +26080,7 @@
dir = 1
},
/area/hallway/primary/central)
-"bbX" = (
+"ban" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/door/airlock/glass{
@@ -26786,12 +26088,12 @@
},
/turf/open/floor/plasteel,
/area/crew_quarters/bar)
-"bbY" = (
+"bao" = (
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
/area/hallway/primary/central)
-"bbZ" = (
+"bap" = (
/obj/machinery/light{
dir = 1
},
@@ -26802,13 +26104,13 @@
dir = 4
},
/area/hallway/primary/central)
-"bca" = (
+"baq" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/port{
name = "Monastery Maintenance"
})
-"bcb" = (
+"bar" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/sign/directions/evac{
dir = 1;
@@ -26826,26 +26128,26 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bcc" = (
+"bas" = (
/turf/open/floor/plasteel/purple/corner,
/area/hallway/primary/central)
-"bcd" = (
+"bat" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/poddoor/shutters{
id = "Skynet_launch";
name = "mech bay"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
/area/assembly/chargebay)
-"bce" = (
+"bau" = (
/obj/effect/decal/cleanable/oil,
/obj/effect/decal/cleanable/robot_debris{
icon_state = "gib3"
},
/turf/open/floor/plasteel/floorgrime,
/area/assembly/chargebay)
-"bcf" = (
+"bav" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -26853,17 +26155,17 @@
pixel_y = 0;
tag = ""
},
-/turf/open/floor/plasteel{
- tag = "icon-plasteel_warn_corner (WEST)"
- },
/obj/effect/turf_decal/stripes/corner{
dir = 8
},
+/turf/open/floor/plasteel{
+ tag = "icon-plasteel_warn_corner (WEST)"
+ },
/area/assembly/chargebay)
-"bcg" = (
+"baw" = (
/turf/open/floor/plasteel,
/area/assembly/chargebay)
-"bch" = (
+"bax" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -26873,10 +26175,10 @@
},
/turf/open/floor/plasteel/circuit/gcircuit,
/area/assembly/chargebay)
-"bci" = (
+"bay" = (
/turf/open/floor/plasteel/circuit/gcircuit,
/area/assembly/chargebay)
-"bcj" = (
+"baz" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -26894,7 +26196,7 @@
},
/turf/open/floor/plasteel/circuit/gcircuit,
/area/assembly/chargebay)
-"bck" = (
+"baA" = (
/obj/structure/cable{
icon_state = "0-2";
d2 = 2
@@ -26911,7 +26213,7 @@
tag = "icon-browncorner (NORTH)"
},
/area/quartermaster/miningdock)
-"bcl" = (
+"baB" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -26921,17 +26223,17 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/quartermaster/miningdock)
-"bcm" = (
+"baC" = (
/obj/structure/table,
/obj/item/weapon/paperplane,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"bcn" = (
+"baD" = (
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
/area/maintenance/apmaint)
-"bco" = (
+"baE" = (
/obj/structure/chair{
dir = 8
},
@@ -26940,7 +26242,7 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/arrival)
-"bcp" = (
+"baF" = (
/obj/effect/landmark/start{
name = "Assistant"
},
@@ -26952,19 +26254,19 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/arrival)
-"bcq" = (
+"baG" = (
/obj/structure/shuttle/engine/propulsion{
- icon_state = "propulsion";
- dir = 8
+ dir = 4;
+ icon_state = "propulsion"
},
/turf/open/floor/plasteel/black,
/area/shuttle/arrival)
-"bcr" = (
+"baH" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"bcs" = (
+"baI" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp/green{
pixel_x = 1;
@@ -26974,12 +26276,12 @@
/area/construction/quarters{
name = "Lounge"
})
-"bct" = (
+"baJ" = (
/turf/open/floor/plasteel/grimy,
/area/construction/quarters{
name = "Lounge"
})
-"bcu" = (
+"baK" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -26995,7 +26297,7 @@
/area/construction/quarters{
name = "Lounge"
})
-"bcv" = (
+"baL" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
@@ -27003,7 +26305,7 @@
/area/construction/quarters{
name = "Lounge"
})
-"bcw" = (
+"baM" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp/green{
pixel_x = 1;
@@ -27018,7 +26320,7 @@
/area/construction/quarters{
name = "Lounge"
})
-"bcx" = (
+"baN" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -27036,7 +26338,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bcy" = (
+"baO" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -27050,7 +26352,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bcz" = (
+"baP" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -27065,7 +26367,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bcA" = (
+"baQ" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -27086,7 +26388,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bcB" = (
+"baR" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -27097,7 +26399,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bcC" = (
+"baS" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -27108,18 +26410,18 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bcD" = (
+"baT" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bcE" = (
+"baU" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
tag = "icon-manifold-b-f (NORTH)";
dir = 1
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bcF" = (
+"baV" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -27136,7 +26438,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bcG" = (
+"baW" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
tag = "icon-intact (SOUTHEAST)";
icon_state = "intact";
@@ -27144,13 +26446,13 @@
},
/turf/open/floor/plasteel,
/area/atmos)
-"bcH" = (
+"baX" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bcI" = (
+"baY" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
@@ -27160,13 +26462,13 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bcJ" = (
+"baZ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/purple/corner,
/area/hallway/primary/central)
-"bcK" = (
+"bba" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/poddoor/shutters{
id = "Skynet_launch";
@@ -27175,16 +26477,16 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
/area/assembly/chargebay)
-"bcL" = (
+"bbb" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/assembly/chargebay)
-"bcM" = (
+"bbc" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -27206,7 +26508,7 @@
},
/turf/open/floor/plasteel,
/area/assembly/chargebay)
-"bcN" = (
+"bbd" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -27219,12 +26521,12 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plasteel,
/area/assembly/chargebay)
-"bcO" = (
+"bbe" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -27247,7 +26549,7 @@
},
/turf/open/floor/bluegrid,
/area/assembly/chargebay)
-"bcP" = (
+"bbf" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -27259,7 +26561,7 @@
},
/turf/open/floor/bluegrid,
/area/assembly/chargebay)
-"bcQ" = (
+"bbg" = (
/obj/machinery/door/airlock/maintenance{
name = "Mech Bay Maintenance";
req_access_txt = "29"
@@ -27275,7 +26577,7 @@
},
/turf/open/floor/plating,
/area/assembly/chargebay)
-"bcR" = (
+"bbh" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -27292,7 +26594,7 @@
},
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"bcS" = (
+"bbi" = (
/obj/machinery/door/airlock/maintenance{
name = "Mining Maintenance";
req_access_txt = "48"
@@ -27311,7 +26613,7 @@
},
/turf/open/floor/plating,
/area/quartermaster/miningdock)
-"bcT" = (
+"bbj" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -27331,7 +26633,7 @@
dir = 10
},
/area/quartermaster/miningdock)
-"bcU" = (
+"bbk" = (
/obj/structure/closet/secure_closet/miner,
/obj/structure/cable{
icon_state = "1-8"
@@ -27346,12 +26648,12 @@
},
/turf/open/floor/plasteel/brown,
/area/quartermaster/miningdock)
-"bcV" = (
+"bbl" = (
/obj/structure/closet/secure_closet/miner,
/obj/machinery/light,
/turf/open/floor/plasteel/brown,
/area/quartermaster/miningdock)
-"bcW" = (
+"bbm" = (
/obj/structure/closet/secure_closet/miner,
/obj/structure/extinguisher_cabinet{
pixel_x = 27;
@@ -27361,15 +26663,15 @@
dir = 6
},
/area/quartermaster/miningdock)
-"bcX" = (
+"bbn" = (
/obj/structure/shuttle/engine/heater,
/turf/open/floor/plating,
/area/shuttle/labor)
-"bcY" = (
+"bbo" = (
/obj/structure/ore_box,
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/labor)
-"bcZ" = (
+"bbp" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -27384,7 +26686,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"bda" = (
+"bbq" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -27393,7 +26695,7 @@
},
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"bdb" = (
+"bbr" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -27403,7 +26705,7 @@
/obj/structure/grille/broken,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"bdc" = (
+"bbs" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -27411,13 +26713,13 @@
},
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"bdd" = (
+"bbt" = (
/obj/effect/landmark{
name = "Observer-Start"
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/arrival)
-"bde" = (
+"bbu" = (
/obj/machinery/light{
dir = 4;
icon_state = "tube1"
@@ -27425,7 +26727,7 @@
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/turf/open/floor/plasteel/neutral/corner,
/area/hallway/secondary/entry)
-"bdf" = (
+"bbv" = (
/obj/structure/chair/comfy/beige{
dir = 4
},
@@ -27436,12 +26738,12 @@
/area/construction/quarters{
name = "Lounge"
})
-"bdg" = (
+"bbw" = (
/turf/open/floor/carpet,
/area/construction/quarters{
name = "Lounge"
})
-"bdh" = (
+"bbx" = (
/obj/structure/cable{
tag = "icon-1-2";
icon_state = "1-2"
@@ -27450,7 +26752,7 @@
/area/construction/quarters{
name = "Lounge"
})
-"bdi" = (
+"bby" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 24
},
@@ -27461,7 +26763,7 @@
/area/maintenance/port{
name = "Monastery Maintenance"
})
-"bdj" = (
+"bbz" = (
/obj/structure/chair/comfy/beige{
dir = 8
},
@@ -27473,7 +26775,7 @@
/area/construction/quarters{
name = "Lounge"
})
-"bdk" = (
+"bbA" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
@@ -27483,7 +26785,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bdl" = (
+"bbB" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -27498,21 +26800,21 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bdm" = (
+"bbC" = (
/obj/machinery/navbeacon{
codes_txt = "patrol;next_patrol=BrigS1";
location = "Lounge"
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bdn" = (
+"bbD" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bdo" = (
+"bbE" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
on = 1;
@@ -27521,7 +26823,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bdp" = (
+"bbF" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/navbeacon{
codes_txt = "patrol;next_patrol=Eng";
@@ -27529,7 +26831,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bdq" = (
+"bbG" = (
/obj/machinery/light{
dir = 4;
icon_state = "tube1"
@@ -27543,7 +26845,7 @@
},
/turf/open/floor/plasteel/purple/corner,
/area/hallway/primary/central)
-"bdr" = (
+"bbH" = (
/obj/machinery/light{
dir = 8
},
@@ -27560,7 +26862,7 @@
},
/turf/open/floor/plasteel,
/area/assembly/chargebay)
-"bds" = (
+"bbI" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -27572,37 +26874,37 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/assembly/chargebay)
-"bdt" = (
+"bbJ" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
},
/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plasteel,
/area/assembly/chargebay)
-"bdu" = (
+"bbK" = (
/obj/machinery/mech_bay_recharge_port,
/obj/structure/cable,
/turf/open/floor/plating,
/area/assembly/chargebay)
-"bdv" = (
+"bbL" = (
/obj/machinery/computer/mech_bay_power_console,
/obj/structure/cable,
/turf/open/floor/plasteel,
/area/assembly/chargebay)
-"bdw" = (
+"bbM" = (
/obj/machinery/light/small{
dir = 1
},
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"bdx" = (
+"bbN" = (
/turf/closed/wall,
/area/space)
-"bdy" = (
+"bbO" = (
/obj/structure/shuttle/engine/propulsion/burst,
/obj/structure/window/reinforced{
dir = 1;
@@ -27610,28 +26912,28 @@
},
/turf/open/floor/plating/airless,
/area/shuttle/labor)
-"bdz" = (
+"bbP" = (
/obj/structure/closet/emcloset,
/obj/item/weapon/storage/firstaid/o2,
/obj/item/weapon/tank/internals/emergency_oxygen,
/obj/item/clothing/mask/breath,
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/arrival)
-"bdA" = (
+"bbQ" = (
/obj/item/device/radio/intercom{
name = "Station Intercom (General)";
pixel_y = -29
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/arrival)
-"bdB" = (
+"bbR" = (
/obj/structure/shuttle/engine/propulsion{
- icon_state = "burst_l";
- dir = 8
+ dir = 4;
+ icon_state = "burst_l"
},
/turf/open/floor/plasteel/black,
/area/shuttle/arrival)
-"bdC" = (
+"bbS" = (
/obj/structure/chair/comfy/beige{
dir = 4
},
@@ -27639,7 +26941,7 @@
/area/construction/quarters{
name = "Lounge"
})
-"bdD" = (
+"bbT" = (
/obj/effect/landmark/start{
name = "Assistant"
},
@@ -27652,7 +26954,7 @@
/area/construction/quarters{
name = "Lounge"
})
-"bdE" = (
+"bbU" = (
/obj/structure/chair/comfy/beige{
dir = 8
},
@@ -27666,7 +26968,7 @@
/area/construction/quarters{
name = "Lounge"
})
-"bdF" = (
+"bbV" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
@@ -27678,7 +26980,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bdG" = (
+"bbW" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -27691,7 +26993,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bdH" = (
+"bbX" = (
/obj/machinery/light,
/obj/machinery/camera{
c_tag = "Central Primary Hallway Genetics";
@@ -27702,7 +27004,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bdI" = (
+"bbY" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -27713,7 +27015,7 @@
},
/turf/open/floor/plasteel/blue/corner,
/area/hallway/primary/central)
-"bdJ" = (
+"bbZ" = (
/obj/machinery/light,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -27724,7 +27026,7 @@
},
/turf/open/floor/plasteel/blue/corner,
/area/hallway/primary/central)
-"bdK" = (
+"bca" = (
/obj/machinery/light,
/obj/machinery/camera{
c_tag = "Central Primary Hallway Hydroponics";
@@ -27733,20 +27035,20 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/blue/corner,
/area/hallway/primary/central)
-"bdL" = (
+"bcb" = (
/obj/machinery/light,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/blue/corner,
/area/hallway/primary/central)
-"bdM" = (
+"bcc" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
initialize_directions = 11
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bdN" = (
+"bcd" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/obj/machinery/navbeacon{
codes_txt = "patrol;next_patrol=Lounge";
@@ -27754,13 +27056,13 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bdO" = (
+"bce" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bdP" = (
+"bcf" = (
/obj/machinery/camera{
c_tag = "Central Primary Hallway Robotics";
dir = 1
@@ -27770,13 +27072,13 @@
},
/turf/open/floor/plasteel/purple/corner,
/area/hallway/primary/central)
-"bdQ" = (
+"bcg" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/purple/corner,
/area/hallway/primary/central)
-"bdR" = (
+"bch" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research{
name = "Mech Bay";
@@ -27788,7 +27090,7 @@
},
/turf/open/floor/plasteel,
/area/assembly/chargebay)
-"bdS" = (
+"bci" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
on = 1;
@@ -27797,12 +27099,12 @@
},
/turf/open/floor/plasteel,
/area/assembly/chargebay)
-"bdT" = (
+"bcj" = (
/obj/machinery/recharge_station,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
/area/assembly/chargebay)
-"bdU" = (
+"bck" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -27813,7 +27115,7 @@
},
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"bdV" = (
+"bcl" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -27823,7 +27125,7 @@
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"bdW" = (
+"bcm" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -27844,7 +27146,7 @@
},
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"bdX" = (
+"bcn" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -27860,7 +27162,7 @@
/mob/living/simple_animal/mouse/gray,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"bdY" = (
+"bco" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -27884,7 +27186,7 @@
},
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"bdZ" = (
+"bcp" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -27902,11 +27204,11 @@
},
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"bea" = (
+"bcq" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"beb" = (
+"bcr" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance{
lootcount = 2;
@@ -27914,14 +27216,14 @@
},
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"bec" = (
+"bcs" = (
/obj/item/weapon/cigbutt/cigarbutt,
/obj/effect/decal/cleanable/cobweb{
icon_state = "cobweb2"
},
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"bed" = (
+"bct" = (
/obj/machinery/door/airlock/titanium{
name = "Arrivals Shuttle Airlock"
},
@@ -27943,7 +27245,7 @@
},
/turf/open/floor/plating,
/area/shuttle/arrival)
-"bee" = (
+"bcu" = (
/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
tag = "icon-manifold (WEST)";
icon_state = "manifold";
@@ -27951,7 +27253,7 @@
},
/turf/open/floor/plasteel/neutral/corner,
/area/hallway/secondary/entry)
-"bef" = (
+"bcv" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
/obj/machinery/door/poddoor/shutters/preopen{
@@ -27967,7 +27269,7 @@
/area/construction/quarters{
name = "Lounge"
})
-"beg" = (
+"bcw" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp/green{
pixel_x = 1;
@@ -27986,7 +27288,7 @@
/area/construction/quarters{
name = "Lounge"
})
-"beh" = (
+"bcx" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
tag = "icon-intact (EAST)";
icon_state = "intact";
@@ -27996,7 +27298,7 @@
/area/construction/quarters{
name = "Lounge"
})
-"bei" = (
+"bcy" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
layer = 2.4;
@@ -28006,7 +27308,7 @@
/area/construction/quarters{
name = "Lounge"
})
-"bej" = (
+"bcz" = (
/obj/structure/table/glass,
/obj/item/device/healthanalyzer{
layer = 3.1
@@ -28016,7 +27318,7 @@
},
/turf/open/floor/plasteel/blue/side,
/area/hallway/primary/central)
-"bek" = (
+"bcA" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -28026,14 +27328,14 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/purple/side,
/area/hallway/primary/central)
-"bel" = (
+"bcB" = (
/obj/structure/closet/firecloset,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bem" = (
+"bcC" = (
/turf/closed/wall,
/area/storage/emergency2)
-"ben" = (
+"bcD" = (
/obj/machinery/door/airlock{
name = "Port Emergency Storage";
req_access_txt = "0"
@@ -28045,10 +27347,10 @@
},
/turf/open/floor/plating,
/area/storage/emergency2)
-"beo" = (
+"bcE" = (
/turf/closed/wall,
/area/medical/morgue)
-"bep" = (
+"bcF" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/centcom{
name = "Morgue";
@@ -28058,47 +27360,47 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/black,
/area/medical/morgue)
-"beq" = (
+"bcG" = (
/turf/closed/wall,
/area/security/checkpoint/medical)
-"ber" = (
+"bcH" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall,
/area/security/checkpoint/medical)
-"bes" = (
+"bcI" = (
/turf/closed/wall,
/area/medical/medbay)
-"bet" = (
+"bcJ" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
/turf/open/floor/plating,
/area/medical/medbay)
-"beu" = (
+"bcK" = (
/obj/structure/sign/bluecross_2,
/turf/closed/wall,
/area/medical/medbay)
-"bev" = (
+"bcL" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/white/side,
/area/medical/medbay)
-"bew" = (
+"bcM" = (
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/white/side,
/area/medical/medbay)
-"bex" = (
+"bcN" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white/side,
/area/medical/medbay)
-"bey" = (
+"bcO" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-10";
layer = 4.1
},
/turf/open/floor/plasteel/blue/side,
/area/hallway/primary/central)
-"bez" = (
+"bcP" = (
/obj/machinery/camera{
c_tag = "Central Primary Hallway Bar";
dir = 1
@@ -28106,68 +27408,68 @@
/obj/machinery/light,
/turf/open/floor/plasteel/blue/side,
/area/hallway/primary/central)
-"beA" = (
+"bcQ" = (
/obj/machinery/light,
/turf/open/floor/plasteel/purple/side,
/area/hallway/primary/central)
-"beB" = (
+"bcR" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
/turf/open/floor/plating,
/area/medical/research{
name = "Research Division"
})
-"beC" = (
+"bcS" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white/side,
/area/medical/research{
name = "Research Division"
})
-"beD" = (
+"bcT" = (
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/white/side,
/area/medical/research{
name = "Research Division"
})
-"beE" = (
+"bcU" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/white/side,
/area/medical/research{
name = "Research Division"
})
-"beF" = (
+"bcV" = (
/obj/structure/sign/science,
/turf/closed/wall,
/area/medical/research{
name = "Research Division"
})
-"beG" = (
+"bcW" = (
/turf/closed/wall,
/area/medical/research{
name = "Research Division"
})
-"beH" = (
+"bcX" = (
/turf/open/floor/plasteel/purple/side,
/area/hallway/primary/central)
-"beI" = (
+"bcY" = (
/turf/closed/wall/r_wall,
/area/assembly/chargebay)
-"beJ" = (
+"bcZ" = (
/turf/closed/wall/r_wall,
/area/toxins/explab)
-"beK" = (
+"bda" = (
/turf/closed/wall/r_wall,
/area/maintenance/apmaint)
-"beL" = (
+"bdb" = (
/obj/structure/plasticflaps{
opacity = 1
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
/area/toxins/explab)
-"beM" = (
+"bdc" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -28184,7 +27486,7 @@
icon_state = "platingdmg3"
},
/area/maintenance/apmaint)
-"beN" = (
+"bdd" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -28200,7 +27502,7 @@
},
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"beO" = (
+"bde" = (
/obj/structure/cable{
icon_state = "1-8"
},
@@ -28211,7 +27513,7 @@
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"beP" = (
+"bdf" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -28219,14 +27521,14 @@
},
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"beQ" = (
+"bdg" = (
/obj/effect/spawner/lootdrop/maintenance,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"beR" = (
+"bdh" = (
/obj/item/trash/sosjerky,
/obj/effect/decal/cleanable/vomit/old,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -28234,13 +27536,13 @@
},
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"beS" = (
+"bdi" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"beT" = (
+"bdj" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -28251,28 +27553,28 @@
},
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"beU" = (
+"bdk" = (
/obj/structure/bookcase/random/nonfiction,
/turf/open/floor/wood,
/area/construction/quarters{
name = "Lounge"
})
-"beV" = (
+"bdl" = (
/obj/structure/bookcase/random/fiction,
/turf/open/floor/wood,
/area/construction/quarters{
name = "Lounge"
})
-"beW" = (
+"bdm" = (
/obj/structure/bookcase/random/religion,
/turf/open/floor/wood,
/area/construction/quarters{
name = "Lounge"
})
-"beX" = (
+"bdn" = (
/turf/closed/wall,
/area/medical/genetics)
-"beY" = (
+"bdo" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research{
name = "Genetics Access";
@@ -28288,7 +27590,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/freezer,
/area/medical/genetics)
-"beZ" = (
+"bdp" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -28298,7 +27600,7 @@
icon_state = "platingdmg3"
},
/area/storage/emergency2)
-"bfa" = (
+"bdq" = (
/obj/structure/plasticflaps{
opacity = 1
},
@@ -28306,7 +27608,7 @@
dir = 8
},
/area/storage/emergency2)
-"bfb" = (
+"bdr" = (
/obj/machinery/door/window/eastleft{
dir = 4;
name = "Medical Delivery";
@@ -28322,10 +27624,10 @@
dir = 8
},
/area/medical/morgue)
-"bfc" = (
+"bds" = (
/turf/open/floor/plasteel/black,
/area/medical/morgue)
-"bfd" = (
+"bdt" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
@@ -28336,7 +27638,7 @@
},
/turf/open/floor/plasteel/black,
/area/medical/morgue)
-"bfe" = (
+"bdu" = (
/obj/machinery/power/apc{
dir = 1;
name = "Morgue APC";
@@ -28351,7 +27653,7 @@
},
/turf/open/floor/plasteel/black,
/area/medical/morgue)
-"bff" = (
+"bdv" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -28362,7 +27664,7 @@
},
/turf/open/floor/plasteel/black,
/area/medical/morgue)
-"bfg" = (
+"bdw" = (
/obj/structure/filingcabinet,
/obj/machinery/requests_console{
department = "Security";
@@ -28378,7 +27680,7 @@
dir = 9
},
/area/security/checkpoint/medical)
-"bfh" = (
+"bdx" = (
/obj/structure/table,
/obj/machinery/recharger{
pixel_y = 4
@@ -28394,7 +27696,7 @@
dir = 1
},
/area/security/checkpoint/medical)
-"bfi" = (
+"bdy" = (
/obj/machinery/computer/secure_data,
/obj/structure/reagent_dispensers/peppertank{
pixel_x = 0;
@@ -28404,18 +27706,18 @@
dir = 1
},
/area/security/checkpoint/medical)
-"bfj" = (
+"bdz" = (
/obj/machinery/computer/security,
/turf/open/floor/plasteel/red/side{
dir = 5
},
/area/security/checkpoint/medical)
-"bfk" = (
+"bdA" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/medical/medbay)
-"bfl" = (
+"bdB" = (
/obj/structure/table,
/obj/item/weapon/storage/firstaid/regular,
/obj/machinery/airalarm{
@@ -28425,14 +27727,14 @@
dir = 1
},
/area/medical/medbay)
-"bfm" = (
+"bdC" = (
/obj/structure/chair,
/turf/open/floor/plasteel/whiteblue/side{
dir = 1;
tag = "icon-whiteblue (NORTH)"
},
/area/medical/medbay)
-"bfn" = (
+"bdD" = (
/obj/structure/chair,
/obj/machinery/light{
dir = 1
@@ -28442,25 +27744,25 @@
tag = "icon-whiteblue (NORTH)"
},
/area/medical/medbay)
-"bfo" = (
+"bdE" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk,
/turf/open/floor/plasteel/whiteblue/side{
dir = 1
},
/area/medical/medbay)
-"bfp" = (
+"bdF" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bfq" = (
+"bdG" = (
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bfr" = (
+"bdH" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bfs" = (
+"bdI" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
name = "Diner"
@@ -28469,14 +27771,14 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bft" = (
+"bdJ" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
name = "Diner"
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bfu" = (
+"bdK" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
name = "Diner"
@@ -28485,24 +27787,24 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bfv" = (
+"bdL" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white,
/area/medical/research{
name = "Research Division"
})
-"bfw" = (
+"bdM" = (
/turf/open/floor/plasteel/white,
/area/medical/research{
name = "Research Division"
})
-"bfx" = (
+"bdN" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/white,
/area/medical/research{
name = "Research Division"
})
-"bfy" = (
+"bdO" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk,
/turf/open/floor/plasteel/whitepurple/side{
@@ -28511,7 +27813,7 @@
/area/medical/research{
name = "Research Division"
})
-"bfz" = (
+"bdP" = (
/obj/structure/table,
/obj/item/device/assembly/igniter{
pixel_x = -4;
@@ -28530,7 +27832,7 @@
/area/medical/research{
name = "Research Division"
})
-"bfA" = (
+"bdQ" = (
/obj/machinery/modular_computer/console/preset/civilian,
/turf/open/floor/plasteel/whitepurple/side{
dir = 1
@@ -28538,7 +27840,7 @@
/area/medical/research{
name = "Research Division"
})
-"bfB" = (
+"bdR" = (
/obj/structure/table,
/obj/item/weapon/electronics/apc,
/obj/item/weapon/wrench,
@@ -28550,10 +27852,10 @@
/area/medical/research{
name = "Research Division"
})
-"bfC" = (
+"bdS" = (
/turf/closed/wall/r_wall,
/area/assembly/robotics)
-"bfD" = (
+"bdT" = (
/obj/structure/grille,
/obj/machinery/door/poddoor/shutters/preopen{
id = "robotics";
@@ -28562,7 +27864,7 @@
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/assembly/robotics)
-"bfE" = (
+"bdU" = (
/obj/structure/table/reinforced,
/obj/machinery/door/window/eastright{
base_state = "left";
@@ -28582,7 +27884,7 @@
},
/turf/open/floor/plating,
/area/assembly/robotics)
-"bfF" = (
+"bdV" = (
/obj/machinery/door/firedoor,
/obj/structure/cable{
d1 = 1;
@@ -28601,10 +27903,10 @@
},
/turf/open/floor/plasteel,
/area/assembly/robotics)
-"bfG" = (
+"bdW" = (
/turf/open/floor/engine,
/area/toxins/explab)
-"bfH" = (
+"bdX" = (
/obj/machinery/camera{
c_tag = "Experimentor Lab Chamber";
dir = 2;
@@ -28612,7 +27914,7 @@
},
/turf/open/floor/engine,
/area/toxins/explab)
-"bfI" = (
+"bdY" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1;
@@ -28621,13 +27923,13 @@
},
/turf/open/floor/engine,
/area/toxins/explab)
-"bfJ" = (
+"bdZ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
/turf/open/floor/engine,
/area/toxins/explab)
-"bfK" = (
+"bea" = (
/obj/machinery/door/airlock/maintenance{
name = "Testing Lab Maintenance";
req_access_txt = "47"
@@ -28640,7 +27942,7 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
/area/toxins/explab)
-"bfL" = (
+"beb" = (
/obj/machinery/door/window/eastright{
base_state = "left";
dir = 2;
@@ -28654,17 +27956,17 @@
freq = 1400;
location = "Research Division"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
/area/toxins/explab)
-"bfM" = (
+"bec" = (
/obj/item/weapon/shard,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"bfN" = (
+"bed" = (
/turf/closed/wall/r_wall,
/area/toxins/xenobiology)
-"bfO" = (
+"bee" = (
/obj/machinery/atmospherics/pipe/simple/general/hidden{
tag = "icon-intact (SOUTHEAST)";
icon_state = "intact";
@@ -28672,7 +27974,7 @@
},
/turf/closed/wall/r_wall,
/area/toxins/xenobiology)
-"bfP" = (
+"bef" = (
/obj/machinery/atmospherics/pipe/simple/general/hidden{
tag = "icon-intact (WEST)";
icon_state = "intact";
@@ -28680,7 +27982,7 @@
},
/turf/closed/wall/r_wall,
/area/toxins/xenobiology)
-"bfQ" = (
+"beg" = (
/obj/machinery/atmospherics/pipe/simple/general/hidden{
tag = "icon-intact (SOUTHWEST)";
icon_state = "intact";
@@ -28688,15 +27990,15 @@
},
/turf/closed/wall/r_wall,
/area/toxins/xenobiology)
-"bfR" = (
+"beh" = (
/obj/item/weapon/extinguisher,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"bfS" = (
+"bei" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"bfT" = (
+"bej" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -28707,7 +28009,7 @@
},
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"bfU" = (
+"bek" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -28722,7 +28024,7 @@
},
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"bfV" = (
+"bel" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -28734,7 +28036,7 @@
},
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"bfW" = (
+"bem" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -28752,54 +28054,54 @@
icon_state = "platingdmg1"
},
/area/maintenance/apmaint)
-"bfX" = (
+"ben" = (
/obj/machinery/portable_atmospherics/canister,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"bfY" = (
+"beo" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"bfZ" = (
+"bep" = (
/obj/item/weapon/tank/internals/air,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"bga" = (
+"beq" = (
/obj/machinery/vending/snack,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 9
},
+/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"bgb" = (
+"ber" = (
/obj/machinery/light{
dir = 1
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"bgc" = (
+"bes" = (
/obj/structure/closet/emcloset,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 5
},
+/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"bgd" = (
+"bet" = (
/obj/machinery/light/small{
dir = 8
},
/obj/machinery/photocopier,
/turf/open/floor/plasteel/black,
/area/library)
-"bge" = (
+"beu" = (
/turf/closed/wall,
/area/mining_construction{
name = "Auxillary Closet Construction"
})
-"bgf" = (
+"bev" = (
/obj/item/weapon/hemostat,
/obj/item/weapon/retractor,
/obj/item/weapon/cautery,
@@ -28809,7 +28111,7 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"bgg" = (
+"bew" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -28822,10 +28124,10 @@
},
/turf/open/floor/plasteel/freezer,
/area/medical/genetics)
-"bgh" = (
+"bex" = (
/turf/open/floor/plasteel/freezer,
/area/medical/genetics)
-"bgi" = (
+"bey" = (
/obj/machinery/light{
dir = 1
},
@@ -28842,7 +28144,7 @@
},
/turf/open/floor/plasteel/freezer,
/area/medical/genetics)
-"bgj" = (
+"bez" = (
/obj/structure/table,
/obj/item/weapon/paper_bin{
layer = 2.9;
@@ -28856,20 +28158,20 @@
},
/turf/open/floor/plasteel/freezer,
/area/medical/genetics)
-"bgk" = (
+"beA" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/turf/open/floor/plating{
icon_state = "panelscorched"
},
/area/storage/emergency2)
-"bgl" = (
+"beB" = (
/obj/item/weapon/storage/box/lights/mixed,
/obj/machinery/light/small{
dir = 1
},
/turf/open/floor/plating,
/area/storage/emergency2)
-"bgm" = (
+"beC" = (
/obj/item/weapon/extinguisher,
/obj/structure/cable{
tag = "icon-1-2";
@@ -28877,14 +28179,14 @@
},
/turf/open/floor/plating,
/area/storage/emergency2)
-"bgn" = (
+"beD" = (
/obj/structure/bodycontainer/morgue,
/obj/effect/landmark{
name = "revenantspawn"
},
/turf/open/floor/plasteel/black,
/area/medical/morgue)
-"bgo" = (
+"beE" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
on = 1;
@@ -28893,7 +28195,7 @@
},
/turf/open/floor/plasteel/black,
/area/medical/morgue)
-"bgp" = (
+"beF" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -28901,13 +28203,13 @@
},
/turf/open/floor/plasteel/black,
/area/medical/morgue)
-"bgq" = (
+"beG" = (
/obj/structure/chair{
dir = 8
},
/turf/open/floor/plasteel/black,
/area/medical/morgue)
-"bgr" = (
+"beH" = (
/obj/machinery/light{
dir = 8
},
@@ -28924,20 +28226,20 @@
dir = 8
},
/area/security/checkpoint/medical)
-"bgs" = (
+"beI" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
/turf/open/floor/plasteel,
/area/security/checkpoint/medical)
-"bgt" = (
+"beJ" = (
/obj/structure/chair/office/light{
dir = 4
},
/obj/effect/landmark/start/depsec/medical,
/turf/open/floor/plasteel,
/area/security/checkpoint/medical)
-"bgu" = (
+"beK" = (
/obj/structure/table,
/obj/item/weapon/pen,
/obj/item/weapon/paper_bin{
@@ -28950,13 +28252,13 @@
dir = 4
},
/area/security/checkpoint/medical)
-"bgv" = (
+"beL" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bgw" = (
+"beM" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
tag = "icon-manifold-b-f (NORTH)";
@@ -28964,14 +28266,14 @@
},
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bgx" = (
+"beN" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9;
pixel_y = 0
},
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bgy" = (
+"beO" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/firealarm{
dir = 8;
@@ -28980,7 +28282,7 @@
},
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bgz" = (
+"beP" = (
/obj/structure/chair,
/obj/machinery/light{
dir = 1
@@ -28989,7 +28291,7 @@
dir = 1
},
/area/medical/medbay)
-"bgA" = (
+"beQ" = (
/obj/structure/table,
/obj/item/weapon/storage/box/bodybags{
pixel_x = 3;
@@ -28999,7 +28301,7 @@
dir = 1
},
/area/medical/medbay)
-"bgB" = (
+"beR" = (
/obj/structure/table,
/obj/item/weapon/folder/white,
/obj/item/device/healthanalyzer,
@@ -29007,18 +28309,18 @@
dir = 1
},
/area/medical/medbay)
-"bgC" = (
+"beS" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
-"bgD" = (
+"beT" = (
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
-"bgE" = (
+"beU" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
-"bgF" = (
+"beV" = (
/obj/structure/table,
/obj/item/device/paicard,
/obj/item/clothing/glasses/science,
@@ -29028,7 +28330,7 @@
/area/medical/research{
name = "Research Division"
})
-"bgG" = (
+"beW" = (
/obj/structure/table,
/obj/machinery/cell_charger,
/obj/item/weapon/stock_parts/cell/high/plus,
@@ -29038,7 +28340,7 @@
/area/medical/research{
name = "Research Division"
})
-"bgH" = (
+"beX" = (
/obj/machinery/light{
dir = 1
},
@@ -29049,7 +28351,7 @@
/area/medical/research{
name = "Research Division"
})
-"bgI" = (
+"beY" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/firealarm{
dir = 8;
@@ -29060,7 +28362,7 @@
/area/medical/research{
name = "Research Division"
})
-"bgJ" = (
+"beZ" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
@@ -29068,7 +28370,7 @@
/area/medical/research{
name = "Research Division"
})
-"bgK" = (
+"bfa" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -29077,7 +28379,7 @@
/area/medical/research{
name = "Research Division"
})
-"bgL" = (
+"bfb" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -29085,7 +28387,7 @@
/area/medical/research{
name = "Research Division"
})
-"bgM" = (
+"bfc" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
@@ -29093,13 +28395,13 @@
/area/medical/research{
name = "Research Division"
})
-"bgN" = (
+"bfd" = (
/obj/structure/filingcabinet/chestdrawer,
/turf/open/floor/plasteel/purple/side{
dir = 8
},
/area/assembly/robotics)
-"bgO" = (
+"bfe" = (
/obj/structure/chair/office/light{
dir = 1
},
@@ -29108,10 +28410,10 @@
},
/turf/open/floor/plasteel,
/area/assembly/robotics)
-"bgP" = (
+"bff" = (
/turf/open/floor/plasteel,
/area/assembly/robotics)
-"bgQ" = (
+"bfg" = (
/obj/machinery/camera{
c_tag = "Robotics Lab";
dir = 2;
@@ -29127,7 +28429,7 @@
},
/turf/open/floor/plasteel,
/area/assembly/robotics)
-"bgR" = (
+"bfh" = (
/obj/machinery/requests_console{
department = "Robotics";
departmentType = 2;
@@ -29136,7 +28438,7 @@
},
/turf/open/floor/plasteel,
/area/assembly/robotics)
-"bgS" = (
+"bfi" = (
/obj/structure/disposalpipe/sortjunction{
dir = 2;
icon_state = "pipe-j2s";
@@ -29158,7 +28460,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/assembly/robotics)
-"bgT" = (
+"bfj" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -29174,7 +28476,7 @@
},
/turf/open/floor/plasteel,
/area/assembly/robotics)
-"bgU" = (
+"bfk" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 8
@@ -29183,22 +28485,22 @@
dir = 4
},
/area/assembly/robotics)
-"bgV" = (
+"bfl" = (
/obj/machinery/light{
dir = 8
},
/turf/open/floor/engine,
/area/toxins/explab)
-"bgW" = (
+"bfm" = (
/obj/effect/landmark/event_spawn,
/obj/item/device/radio/beacon,
/turf/open/floor/engine,
/area/toxins/explab)
-"bgX" = (
+"bfn" = (
/obj/machinery/r_n_d/experimentor,
/turf/open/floor/engine,
/area/toxins/explab)
-"bgY" = (
+"bfo" = (
/obj/effect/landmark{
name = "blobstart"
},
@@ -29208,11 +28510,11 @@
},
/turf/open/floor/engine,
/area/toxins/explab)
-"bgZ" = (
+"bfp" = (
/obj/effect/landmark/event_spawn,
/turf/open/floor/engine,
/area/toxins/explab)
-"bha" = (
+"bfq" = (
/obj/machinery/light{
dir = 4;
icon_state = "tube1"
@@ -29220,7 +28522,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/engine,
/area/toxins/explab)
-"bhb" = (
+"bfr" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 4
},
@@ -29235,7 +28537,7 @@
},
/turf/open/floor/engine,
/area/toxins/explab)
-"bhc" = (
+"bfs" = (
/obj/structure/cable{
icon_state = "1-8"
},
@@ -29247,7 +28549,7 @@
},
/turf/open/floor/engine,
/area/toxins/explab)
-"bhd" = (
+"bft" = (
/obj/structure/sign/atmosplaque{
desc = "A guide to the drone shell dispenser, detailing the constructive and destructive applications of modern repair drones, as well as the development of the uncorruptable cyborg servants of tomorrow, available today.";
icon_state = "kiddieplaque";
@@ -29257,7 +28559,7 @@
},
/turf/open/floor/engine,
/area/toxins/explab)
-"bhe" = (
+"bfu" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -29272,7 +28574,7 @@
},
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"bhf" = (
+"bfv" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -29289,7 +28591,7 @@
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"bhg" = (
+"bfw" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -29308,7 +28610,7 @@
},
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"bhh" = (
+"bfx" = (
/obj/structure/cable{
icon_state = "1-8"
},
@@ -29322,10 +28624,10 @@
},
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"bhi" = (
+"bfy" = (
/turf/open/floor/engine,
/area/toxins/xenobiology)
-"bhj" = (
+"bfz" = (
/obj/machinery/camera{
c_tag = "Xenobiology Test Chamber";
dir = 2;
@@ -29338,11 +28640,11 @@
/obj/machinery/atmospherics/pipe/simple/general/hidden,
/turf/open/floor/engine,
/area/toxins/xenobiology)
-"bhk" = (
+"bfA" = (
/obj/machinery/atmospherics/pipe/simple/general/hidden,
/turf/closed/wall/r_wall,
/area/toxins/xenobiology)
-"bhl" = (
+"bfB" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -29351,34 +28653,34 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"bhm" = (
+"bfC" = (
/obj/item/trash/candle,
/obj/item/weapon/cautery,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"bhn" = (
+"bfD" = (
/turf/open/floor/plating,
/area/shuttle/auxillary_base)
-"bho" = (
+"bfE" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/carpet,
/area/library)
-"bhp" = (
+"bfF" = (
/obj/item/weapon/storage/bag/books,
/turf/open/floor/plasteel/black,
/area/library)
-"bhq" = (
+"bfG" = (
/obj/structure/bookcase/random/religion,
/turf/open/floor/plasteel/black,
/area/library)
-"bhr" = (
+"bfH" = (
/obj/structure/bookcase/random/religion,
/obj/effect/decal/cleanable/cobweb{
icon_state = "cobweb2"
},
/turf/open/floor/plasteel/black,
/area/library)
-"bhs" = (
+"bfI" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -29386,7 +28688,7 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"bht" = (
+"bfJ" = (
/obj/machinery/door/airlock/maintenance{
name = "Genetics Maintenance";
req_access_txt = "9";
@@ -29399,7 +28701,7 @@
},
/turf/open/floor/plating,
/area/medical/genetics)
-"bhu" = (
+"bfK" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -29422,7 +28724,7 @@
},
/turf/open/floor/plasteel/freezer,
/area/medical/genetics)
-"bhv" = (
+"bfL" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -29433,7 +28735,7 @@
},
/turf/open/floor/plasteel/freezer,
/area/medical/genetics)
-"bhw" = (
+"bfM" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -29446,7 +28748,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/freezer,
/area/medical/genetics)
-"bhx" = (
+"bfN" = (
/obj/structure/table,
/obj/machinery/newscaster{
pixel_x = 32
@@ -29455,11 +28757,11 @@
/obj/item/weapon/folder/white,
/turf/open/floor/plasteel/freezer,
/area/medical/genetics)
-"bhy" = (
+"bfO" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating,
/area/storage/emergency2)
-"bhz" = (
+"bfP" = (
/obj/machinery/power/apc{
dir = 2;
name = "Port Emergency Storage APC";
@@ -29474,7 +28776,7 @@
icon_state = "panelscorched"
},
/area/storage/emergency2)
-"bhA" = (
+"bfQ" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -29483,11 +28785,11 @@
/obj/item/weapon/storage/toolbox/emergency,
/turf/open/floor/plating,
/area/storage/emergency2)
-"bhB" = (
+"bfR" = (
/obj/machinery/space_heater,
/turf/open/floor/plating,
/area/storage/emergency2)
-"bhC" = (
+"bfS" = (
/obj/structure/bodycontainer/morgue,
/obj/effect/landmark{
name = "revenantspawn"
@@ -29498,11 +28800,11 @@
},
/turf/open/floor/plasteel/black,
/area/medical/morgue)
-"bhD" = (
+"bfT" = (
/obj/item/weapon/ectoplasm,
/turf/open/floor/plasteel/black,
/area/medical/morgue)
-"bhE" = (
+"bfU" = (
/obj/structure/table,
/obj/item/weapon/storage/box/bodybags,
/obj/item/weapon/pen,
@@ -29515,7 +28817,7 @@
},
/turf/open/floor/plasteel/black,
/area/medical/morgue)
-"bhF" = (
+"bfV" = (
/obj/machinery/power/apc{
dir = 8;
name = "Medbay Security APC";
@@ -29535,7 +28837,7 @@
dir = 10
},
/area/security/checkpoint/medical)
-"bhG" = (
+"bfW" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -29546,7 +28848,7 @@
},
/turf/open/floor/plasteel/red/side,
/area/security/checkpoint/medical)
-"bhH" = (
+"bfX" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
layer = 2.4;
@@ -29554,14 +28856,14 @@
},
/turf/open/floor/plasteel/red/side,
/area/security/checkpoint/medical)
-"bhI" = (
+"bfY" = (
/obj/structure/table,
/obj/item/weapon/book/manual/wiki/security_space_law,
/turf/open/floor/plasteel/red/side{
dir = 6
},
/area/security/checkpoint/medical)
-"bhJ" = (
+"bfZ" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
@@ -29569,17 +28871,17 @@
},
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bhK" = (
+"bga" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bhL" = (
+"bgb" = (
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/white/side{
dir = 8
},
/area/medical/medbay)
-"bhM" = (
+"bgc" = (
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/white/side{
dir = 4
@@ -29587,7 +28889,7 @@
/area/medical/research{
name = "Research Division"
})
-"bhN" = (
+"bgd" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1;
@@ -29598,7 +28900,7 @@
/area/medical/research{
name = "Research Division"
})
-"bhO" = (
+"bge" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
@@ -29606,7 +28908,7 @@
/area/medical/research{
name = "Research Division"
})
-"bhP" = (
+"bgf" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
@@ -29614,7 +28916,7 @@
/area/medical/research{
name = "Research Division"
})
-"bhQ" = (
+"bgg" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
@@ -29624,7 +28926,7 @@
/area/medical/research{
name = "Research Division"
})
-"bhR" = (
+"bgh" = (
/obj/item/weapon/reagent_containers/food/snacks/grown/poppy,
/obj/item/weapon/reagent_containers/food/snacks/grown/poppy,
/obj/item/weapon/reagent_containers/food/snacks/grown/poppy,
@@ -29633,7 +28935,7 @@
/area/chapel/main{
name = "Monastery"
})
-"bhS" = (
+"bgi" = (
/obj/structure/rack{
dir = 8;
layer = 2.9
@@ -29655,11 +28957,11 @@
dir = 8
},
/area/assembly/robotics)
-"bhT" = (
+"bgj" = (
/obj/machinery/mecha_part_fabricator,
/turf/open/floor/plasteel,
/area/assembly/robotics)
-"bhU" = (
+"bgk" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
@@ -29671,19 +28973,19 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/corner{
dir = 1
},
+/turf/open/floor/plasteel,
/area/assembly/robotics)
-"bhV" = (
+"bgl" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
on = 1
},
/turf/open/floor/plasteel,
/area/assembly/robotics)
-"bhW" = (
+"bgm" = (
/obj/structure/table,
/obj/item/stack/sheet/glass{
amount = 20;
@@ -29716,25 +29018,25 @@
dir = 4
},
/area/assembly/robotics)
-"bhX" = (
+"bgn" = (
/obj/machinery/atmospherics/components/unary/outlet_injector{
on = 1
},
/turf/open/floor/engine,
/area/toxins/explab)
-"bhY" = (
+"bgo" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
on = 1
},
/turf/open/floor/engine,
/area/toxins/explab)
-"bhZ" = (
+"bgp" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
/turf/open/floor/engine,
/area/toxins/explab)
-"bia" = (
+"bgq" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 4
},
@@ -29743,7 +29045,7 @@
},
/turf/open/floor/engine,
/area/toxins/explab)
-"bib" = (
+"bgr" = (
/obj/structure/disposalpipe/segment,
/obj/effect/landmark/start{
name = "Scientist"
@@ -29753,26 +29055,26 @@
name = "Holodeck Projector Floor"
},
/area/toxins/explab)
-"bic" = (
+"bgs" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 6
},
/turf/open/floor/engine,
/area/toxins/explab)
-"bid" = (
+"bgt" = (
/obj/machinery/atmospherics/components/unary/thermomachine/heater{
dir = 8
},
/turf/open/floor/engine,
/area/toxins/explab)
-"bie" = (
+"bgu" = (
/obj/machinery/light/small{
brightness = 3;
dir = 8
},
/turf/open/floor/engine,
/area/toxins/xenobiology)
-"bif" = (
+"bgv" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 1;
frequency = 1441;
@@ -29780,39 +29082,39 @@
},
/turf/open/floor/engine,
/area/toxins/xenobiology)
-"big" = (
+"bgw" = (
/obj/machinery/light/small{
dir = 4
},
/turf/open/floor/engine,
/area/toxins/xenobiology)
-"bih" = (
+"bgx" = (
/obj/machinery/light{
dir = 1
},
/turf/open/floor/engine,
/area/toxins/xenobiology)
-"bii" = (
+"bgy" = (
/obj/effect/landmark/event_spawn,
/turf/open/floor/engine,
/area/toxins/xenobiology)
-"bij" = (
+"bgz" = (
/turf/closed/wall,
/area/toxins/xenobiology)
-"bik" = (
+"bgA" = (
/obj/effect/decal/cleanable/ash,
/obj/effect/landmark{
name = "revenantspawn"
},
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"bil" = (
+"bgB" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"bim" = (
+"bgC" = (
/obj/effect/spawner/lootdrop/maintenance,
/obj/machinery/atmospherics/pipe/manifold/general/hidden{
tag = "icon-manifold (NORTH)";
@@ -29824,7 +29126,7 @@
icon_state = "platingdmg1"
},
/area/maintenance/apmaint)
-"bin" = (
+"bgD" = (
/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
dir = 8
},
@@ -29833,7 +29135,7 @@
icon_state = "platingdmg1"
},
/area/maintenance/apmaint)
-"bio" = (
+"bgE" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
external_pressure_bound = 101.325;
@@ -29842,7 +29144,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"bip" = (
+"bgF" = (
/obj/item/device/radio/beacon,
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
tag = "icon-intact (EAST)";
@@ -29851,7 +29153,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"biq" = (
+"bgG" = (
/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
tag = "icon-manifold (EAST)";
icon_state = "manifold";
@@ -29859,7 +29161,7 @@
},
/turf/open/floor/plasteel/neutral/corner,
/area/hallway/secondary/entry)
-"bir" = (
+"bgH" = (
/obj/machinery/mass_driver{
id = "chapelgun"
},
@@ -29873,7 +29175,7 @@
/area/chapel/main{
name = "Monastery"
})
-"bis" = (
+"bgI" = (
/obj/structure/rack,
/obj/item/stack/cable_coil,
/obj/item/weapon/electronics/airlock,
@@ -29881,7 +29183,7 @@
/obj/item/device/assault_pod/mining,
/turf/open/floor/plating,
/area/shuttle/auxillary_base)
-"bit" = (
+"bgJ" = (
/obj/structure/rack,
/obj/item/stack/sheet/metal{
amount = 50;
@@ -29899,7 +29201,7 @@
/obj/item/weapon/storage/box/lights/mixed,
/turf/open/floor/plating,
/area/shuttle/auxillary_base)
-"biu" = (
+"bgK" = (
/obj/machinery/mass_driver{
id = "chapelgun"
},
@@ -29912,7 +29214,7 @@
/area/chapel/main{
name = "Monastery"
})
-"biv" = (
+"bgL" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -29920,12 +29222,12 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"biw" = (
+"bgM" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/medical/genetics)
-"bix" = (
+"bgN" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_medical{
id_tag = null;
@@ -29942,22 +29244,22 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/freezer,
/area/medical/genetics)
-"biy" = (
+"bgO" = (
/turf/closed/wall,
/area/medical/medbay3)
-"biz" = (
+"bgP" = (
/obj/structure/table,
/obj/item/weapon/folder/white,
/obj/item/clothing/gloves/color/latex,
/obj/item/weapon/storage/fancy/candle_box,
/turf/open/floor/plasteel/black,
/area/medical/morgue)
-"biA" = (
+"bgQ" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/security/checkpoint/medical)
-"biB" = (
+"bgR" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_security{
name = "Medbay Security Post";
@@ -29971,14 +29273,14 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/red,
/area/security/checkpoint/medical)
-"biC" = (
+"bgS" = (
/obj/structure/table/reinforced,
/obj/item/weapon/reagent_containers/food/drinks/britcup{
desc = "Kingston's personal cup."
},
/turf/open/floor/plasteel/whiteblue/side,
/area/medical/medbay)
-"biD" = (
+"bgT" = (
/obj/structure/table/reinforced,
/obj/item/weapon/paper_bin{
pixel_x = 1;
@@ -29988,24 +29290,24 @@
dir = 8
},
/area/medical/medbay)
-"biE" = (
+"bgU" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"biF" = (
+"bgV" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"biG" = (
+"bgW" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"biH" = (
+"bgX" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
on = 1;
@@ -30014,7 +29316,7 @@
},
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"biI" = (
+"bgY" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
initialize_directions = 11
},
@@ -30022,7 +29324,7 @@
/area/medical/research{
name = "Research Division"
})
-"biJ" = (
+"bgZ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -30030,7 +29332,7 @@
/area/medical/research{
name = "Research Division"
})
-"biK" = (
+"bha" = (
/obj/machinery/light,
/obj/structure/disposalpipe/segment{
dir = 1;
@@ -30052,7 +29354,7 @@
/area/medical/research{
name = "Research Division"
})
-"biL" = (
+"bhb" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -30063,7 +29365,7 @@
/area/medical/research{
name = "Research Division"
})
-"biM" = (
+"bhc" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -30073,7 +29375,7 @@
/area/medical/research{
name = "Research Division"
})
-"biN" = (
+"bhd" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-18";
layer = 3;
@@ -30083,7 +29385,7 @@
/area/medical/research{
name = "Research Division"
})
-"biO" = (
+"bhe" = (
/obj/machinery/r_n_d/circuit_imprinter,
/obj/machinery/light{
dir = 8
@@ -30092,11 +29394,11 @@
dir = 8
},
/area/assembly/robotics)
-"biP" = (
-/turf/open/floor/plasteel,
+"bhf" = (
/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
/area/assembly/robotics)
-"biQ" = (
+"bhg" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
@@ -30105,12 +29407,12 @@
pixel_y = 0;
tag = ""
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel,
/area/assembly/robotics)
-"biR" = (
+"bhh" = (
/obj/structure/table,
/obj/item/stack/sheet/plasteel{
amount = 10
@@ -30131,11 +29433,11 @@
dir = 4
},
/area/assembly/robotics)
-"biS" = (
+"bhi" = (
/obj/machinery/atmospherics/pipe/simple/general/hidden,
/turf/closed/wall/r_wall,
/area/toxins/explab)
-"biT" = (
+"bhj" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -30145,7 +29447,7 @@
},
/turf/open/floor/engine,
/area/toxins/explab)
-"biU" = (
+"bhk" = (
/obj/structure/grille,
/obj/machinery/door/poddoor/preopen{
id = "testlab";
@@ -30154,7 +29456,7 @@
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/engine,
/area/toxins/explab)
-"biV" = (
+"bhl" = (
/obj/machinery/door/poddoor/preopen{
id = "telelab";
name = "test chamber blast door"
@@ -30163,36 +29465,36 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/engine,
/area/toxins/explab)
-"biW" = (
+"bhm" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 4
},
/turf/open/floor/engine,
/area/toxins/explab)
-"biX" = (
+"bhn" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/general/visible,
/turf/open/floor/engine,
/area/toxins/explab)
-"biY" = (
+"bho" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible,
/obj/item/weapon/wrench,
/turf/open/floor/engine,
/area/toxins/explab)
-"biZ" = (
+"bhp" = (
/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
dir = 8
},
/turf/open/floor/engine,
/area/toxins/explab)
-"bja" = (
+"bhq" = (
/obj/structure/table,
/obj/machinery/reagentgrinder,
/turf/open/floor/plasteel/whitepurple/side{
dir = 9
},
/area/toxins/xenobiology)
-"bjb" = (
+"bhr" = (
/obj/structure/table,
/obj/item/weapon/storage/box/beakers{
pixel_x = 2;
@@ -30209,7 +29511,7 @@
dir = 1
},
/area/toxins/xenobiology)
-"bjc" = (
+"bhs" = (
/obj/structure/table,
/obj/item/stack/sheet/mineral/plasma{
layer = 2.9
@@ -30227,7 +29529,7 @@
dir = 1
},
/area/toxins/xenobiology)
-"bjd" = (
+"bht" = (
/obj/structure/table,
/obj/item/weapon/pen,
/obj/item/clothing/glasses/science,
@@ -30242,18 +29544,18 @@
dir = 5
},
/area/toxins/xenobiology)
-"bje" = (
+"bhu" = (
/obj/effect/landmark{
name = "revenantspawn"
},
/turf/open/floor/engine,
/area/toxins/xenobiology)
-"bjf" = (
+"bhv" = (
/obj/item/weapon/weldingtool,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"bjg" = (
+"bhw" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 4
},
@@ -30261,13 +29563,13 @@
icon_state = "platingdmg3"
},
/area/maintenance/apmaint)
-"bjh" = (
+"bhx" = (
/obj/machinery/atmospherics/pipe/manifold/general/hidden,
/turf/open/floor/plating{
icon_state = "panelscorched"
},
/area/maintenance/apmaint)
-"bji" = (
+"bhy" = (
/obj/machinery/atmospherics/components/unary/thermomachine/heater{
dir = 8
},
@@ -30275,23 +29577,23 @@
icon_state = "panelscorched"
},
/area/maintenance/apmaint)
-"bjj" = (
+"bhz" = (
/turf/open/floor/plasteel/arrival,
/area/hallway/secondary/entry)
-"bjk" = (
+"bhA" = (
/obj/machinery/camera{
c_tag = "Arrivals Port Aft";
dir = 1
},
/turf/open/floor/plasteel/arrival,
/area/hallway/secondary/entry)
-"bjl" = (
+"bhB" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"bjm" = (
+"bhC" = (
/obj/structure/table/wood/fancy,
/obj/item/clothing/under/burial,
/obj/item/clothing/under/burial,
@@ -30301,7 +29603,7 @@
/area/chapel/main{
name = "Monastery"
})
-"bjn" = (
+"bhD" = (
/obj/machinery/door/airlock/engineering{
cyclelinkeddir = 1;
name = "Auxillary Mining Closet Construction";
@@ -30312,7 +29614,7 @@
/area/mining_construction{
name = "Auxillary Closet Construction"
})
-"bjo" = (
+"bhE" = (
/obj/machinery/power/smes{
charge = 5e+006
},
@@ -30321,11 +29623,11 @@
/area/maintenance/port{
name = "Monastery Maintenance"
})
-"bjp" = (
+"bhF" = (
/obj/item/weapon/pickaxe/mini,
/turf/open/floor/plating,
/area/shuttle/auxillary_base)
-"bjq" = (
+"bhG" = (
/obj/machinery/camera{
c_tag = "Auxillary Mining Base";
dir = 8
@@ -30334,14 +29636,14 @@
icon_state = "tube1";
dir = 4
},
-/obj/machinery/computer/shuttle/auxillary_base{
+/obj/machinery/computer/auxillary_base{
density = 0;
pixel_x = 32;
pixel_y = 0
},
/turf/open/floor/plating,
/area/shuttle/auxillary_base)
-"bjr" = (
+"bhH" = (
/obj/docking_port/mobile/auxillary_base{
dheight = 0;
dir = 8;
@@ -30352,7 +29654,7 @@
/obj/machinery/bluespace_beacon,
/turf/closed/wall,
/area/shuttle/auxillary_base)
-"bjs" = (
+"bhI" = (
/obj/item/device/radio/intercom{
broadcasting = 0;
freerange = 0;
@@ -30368,7 +29670,7 @@
dir = 1
},
/area/medical/genetics)
-"bjt" = (
+"bhJ" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
@@ -30378,7 +29680,7 @@
dir = 1
},
/area/medical/genetics)
-"bju" = (
+"bhK" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -30394,14 +29696,14 @@
dir = 1
},
/area/medical/genetics)
-"bjv" = (
+"bhL" = (
/obj/structure/closet/wardrobe/mixed,
/turf/open/floor/plasteel/whiteblue/side{
tag = "icon-whiteblue (NORTH)";
dir = 1
},
/area/medical/genetics)
-"bjw" = (
+"bhM" = (
/obj/machinery/vending/clothing,
/obj/machinery/firealarm{
dir = 1;
@@ -30413,7 +29715,7 @@
dir = 1
},
/area/medical/genetics)
-"bjx" = (
+"bhN" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk,
/obj/structure/sign/poster{
@@ -30425,7 +29727,7 @@
tag = "icon-whiteblue (NORTHWEST)"
},
/area/medical/medbay3)
-"bjy" = (
+"bhO" = (
/obj/machinery/light{
dir = 1
},
@@ -30443,20 +29745,20 @@
tag = "icon-whiteblue (NORTH)"
},
/area/medical/medbay3)
-"bjz" = (
+"bhP" = (
/obj/machinery/vending/medical,
/turf/open/floor/plasteel/whiteblue/side{
tag = "icon-whiteblue (NORTHEAST)";
dir = 5
},
/area/medical/medbay3)
-"bjA" = (
+"bhQ" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
on = 1
},
/turf/open/floor/plasteel/black,
/area/medical/morgue)
-"bjB" = (
+"bhR" = (
/obj/structure/sign/poster{
pixel_x = -32
},
@@ -30466,7 +29768,7 @@
tag = "icon-whiteblue (NORTHWEST)"
},
/area/medical/medbay)
-"bjC" = (
+"bhS" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -30480,7 +29782,7 @@
tag = "icon-whiteblue (NORTH)"
},
/area/medical/medbay)
-"bjD" = (
+"bhT" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
@@ -30489,7 +29791,7 @@
dir = 5
},
/area/medical/medbay)
-"bjE" = (
+"bhU" = (
/obj/machinery/requests_console{
announcementConsole = 0;
department = "Medbay";
@@ -30512,7 +29814,7 @@
dir = 1
},
/area/medical/medbay)
-"bjF" = (
+"bhV" = (
/obj/structure/chair/office/light{
dir = 4
},
@@ -30524,7 +29826,7 @@
dir = 5
},
/area/medical/medbay)
-"bjG" = (
+"bhW" = (
/obj/structure/table/reinforced,
/obj/item/weapon/folder/white,
/obj/item/weapon/pen,
@@ -30532,16 +29834,16 @@
dir = 8
},
/area/medical/medbay)
-"bjH" = (
+"bhX" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bjI" = (
+"bhY" = (
/obj/structure/bed/roller,
/turf/open/floor/plasteel/whiteblue/side,
/area/medical/medbay)
-"bjJ" = (
+"bhZ" = (
/obj/structure/bed/roller,
/obj/machinery/camera{
c_tag = "Medbay Entrance";
@@ -30549,28 +29851,28 @@
},
/turf/open/floor/plasteel/whiteblue/side,
/area/medical/medbay)
-"bjK" = (
+"bia" = (
/turf/open/floor/plasteel/whiteblue/side,
/area/medical/medbay)
-"bjL" = (
+"bib" = (
/obj/structure/table/glass,
/obj/item/stack/medical/gauze,
/obj/item/weapon/reagent_containers/glass/bottle/epinephrine,
/turf/open/floor/plasteel/whiteblue/side,
/area/medical/medbay)
-"bjM" = (
+"bic" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plasteel/whitepurple/side,
/area/medical/research{
name = "Research Division"
})
-"bjN" = (
+"bid" = (
/obj/structure/closet/firecloset/full,
/turf/open/floor/plasteel/whitepurple/side,
/area/medical/research{
name = "Research Division"
})
-"bjO" = (
+"bie" = (
/obj/structure/table,
/obj/item/weapon/paper_bin{
layer = 2.9;
@@ -30582,13 +29884,13 @@
/area/medical/research{
name = "Research Division"
})
-"bjP" = (
+"bif" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall,
/area/medical/research{
name = "Research Division"
})
-"bjQ" = (
+"big" = (
/obj/machinery/door/airlock/research{
cyclelinkeddir = 2;
name = "Research Division Access";
@@ -30600,20 +29902,20 @@
/area/medical/research{
name = "Research Division"
})
-"bjR" = (
+"bih" = (
/obj/machinery/computer/rdconsole/robotics,
/turf/open/floor/plasteel/purple/side{
dir = 8
},
/area/assembly/robotics)
-"bjS" = (
+"bii" = (
/obj/effect/landmark/start{
name = "Roboticist"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
/area/assembly/robotics)
-"bjT" = (
+"bij" = (
/obj/structure/table,
/obj/machinery/cell_charger,
/obj/item/weapon/stock_parts/cell/high/plus,
@@ -30629,10 +29931,10 @@
dir = 4
},
/area/assembly/robotics)
-"bjU" = (
+"bik" = (
/turf/closed/wall,
/area/toxins/explab)
-"bjV" = (
+"bil" = (
/obj/structure/rack,
/obj/item/clothing/mask/gas{
pixel_x = 3;
@@ -30644,12 +29946,12 @@
pixel_y = -3
},
/obj/machinery/atmospherics/pipe/simple/general/visible,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel,
/area/toxins/explab)
-"bjW" = (
+"bim" = (
/obj/machinery/button/door{
id = "testlab";
name = "Window Blast Doors";
@@ -30664,28 +29966,28 @@
pixel_x = 6;
pixel_y = 0
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel,
/area/toxins/explab)
-"bjX" = (
+"bin" = (
/obj/machinery/computer/rdconsole/experiment,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel,
/area/toxins/explab)
-"bjY" = (
+"bio" = (
/obj/structure/table/reinforced,
/obj/item/weapon/folder,
/obj/item/weapon/book/manual/experimentor,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel,
/area/toxins/explab)
-"bjZ" = (
+"bip" = (
/obj/item/weapon/paper_bin{
pixel_x = 0;
pixel_y = 6
@@ -30693,19 +29995,19 @@
/obj/item/weapon/pen,
/obj/item/device/radio/off,
/obj/structure/table/reinforced,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel,
/area/toxins/explab)
-"bka" = (
+"biq" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel,
/area/toxins/explab)
-"bkb" = (
+"bir" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 4
@@ -30718,56 +30020,56 @@
pixel_x = 0;
pixel_y = 30
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel,
/area/toxins/explab)
-"bkc" = (
+"bis" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel,
/area/toxins/explab)
-"bkd" = (
+"bit" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
-/area/toxins/explab)
-"bke" = (
/turf/open/floor/plasteel,
+/area/toxins/explab)
+"biu" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel,
/area/toxins/explab)
-"bkf" = (
+"biv" = (
/obj/structure/rack,
/obj/item/stack/packageWrap,
/obj/item/stack/cable_coil,
/obj/item/weapon/wirecutters,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel,
/area/toxins/explab)
-"bkg" = (
+"biw" = (
/obj/machinery/monkey_recycler,
/turf/open/floor/plasteel/whitepurple/side{
dir = 8
},
/area/toxins/xenobiology)
-"bkh" = (
+"bix" = (
/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
-"bki" = (
+"biy" = (
/obj/structure/chair/comfy/beige{
dir = 4
},
@@ -30776,13 +30078,13 @@
},
/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
-"bkj" = (
+"biz" = (
/obj/machinery/computer/camera_advanced/xenobio,
/turf/open/floor/plasteel/whitepurple/side{
dir = 4
},
/area/toxins/xenobiology)
-"bkk" = (
+"biA" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'HIGH VOLTAGE'";
icon_state = "shock";
@@ -30790,20 +30092,20 @@
},
/turf/closed/wall/r_wall,
/area/toxins/xenobiology)
-"bkl" = (
+"biB" = (
/obj/structure/disposaloutlet{
dir = 1
},
/obj/structure/disposalpipe/trunk,
/turf/open/floor/engine,
/area/toxins/xenobiology)
-"bkm" = (
+"biC" = (
/obj/machinery/space_heater,
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
/area/maintenance/apmaint)
-"bkn" = (
+"biD" = (
/obj/machinery/atmospherics/pipe/simple/general/hidden{
tag = "icon-intact (SOUTHEAST)";
icon_state = "intact";
@@ -30813,7 +30115,7 @@
/area/maintenance/port{
name = "Monastery Maintenance"
})
-"bko" = (
+"biE" = (
/obj/machinery/atmospherics/pipe/manifold/general/hidden{
tag = "icon-manifold (NORTH)";
icon_state = "manifold";
@@ -30824,7 +30126,7 @@
/area/maintenance/port{
name = "Monastery Maintenance"
})
-"bkp" = (
+"biF" = (
/obj/machinery/atmospherics/pipe/manifold/general/hidden{
tag = "icon-manifold (EAST)";
icon_state = "manifold";
@@ -30834,25 +30136,25 @@
/area/maintenance/port{
name = "Monastery Maintenance"
})
-"bkq" = (
+"biG" = (
/obj/item/weapon/extinguisher,
/turf/open/floor/plating,
/area/maintenance/port{
name = "Monastery Maintenance"
})
-"bkr" = (
+"biH" = (
/obj/item/weapon/storage/bag/ore,
/turf/open/floor/plating,
/area/shuttle/auxillary_base)
-"bks" = (
+"biI" = (
/obj/structure/mining_shuttle_beacon,
/turf/open/floor/plating,
/area/shuttle/auxillary_base)
-"bkt" = (
+"biJ" = (
/obj/structure/chair/wood/normal,
/turf/open/floor/plasteel/black,
/area/library)
-"bku" = (
+"biK" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -30863,14 +30165,14 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"bkv" = (
+"biL" = (
/obj/machinery/clonepod,
/turf/open/floor/plasteel/blue,
/area/medical/genetics)
-"bkw" = (
+"biM" = (
/turf/open/floor/plasteel/white,
/area/medical/genetics)
-"bkx" = (
+"biN" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -30882,13 +30184,13 @@
},
/turf/open/floor/plasteel/white,
/area/medical/genetics)
-"bky" = (
+"biO" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/white,
/area/medical/genetics)
-"bkz" = (
+"biP" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -30896,7 +30198,7 @@
},
/turf/open/floor/plating,
/area/medical/genetics)
-"bkA" = (
+"biQ" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -30906,7 +30208,7 @@
dir = 8
},
/area/medical/medbay3)
-"bkB" = (
+"biR" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -30917,7 +30219,7 @@
},
/turf/open/floor/plasteel/white,
/area/medical/medbay3)
-"bkC" = (
+"biS" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -30932,7 +30234,7 @@
dir = 4
},
/area/medical/medbay3)
-"bkD" = (
+"biT" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/centcom{
name = "Morgue";
@@ -30950,7 +30252,7 @@
},
/turf/open/floor/plasteel/black,
/area/medical/morgue)
-"bkE" = (
+"biU" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -30962,7 +30264,7 @@
},
/turf/open/floor/plasteel/black,
/area/medical/morgue)
-"bkF" = (
+"biV" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -30972,7 +30274,7 @@
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel/black,
/area/medical/morgue)
-"bkG" = (
+"biW" = (
/obj/machinery/light/small,
/obj/structure/cable{
d1 = 4;
@@ -30985,7 +30287,7 @@
},
/turf/open/floor/plasteel/black,
/area/medical/morgue)
-"bkH" = (
+"biX" = (
/obj/structure/cable{
icon_state = "1-8"
},
@@ -30999,7 +30301,7 @@
},
/turf/open/floor/plasteel/black,
/area/medical/morgue)
-"bkI" = (
+"biY" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -31010,7 +30312,7 @@
},
/turf/open/floor/plasteel/black,
/area/medical/morgue)
-"bkJ" = (
+"biZ" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/centcom{
name = "Morgue";
@@ -31027,7 +30329,7 @@
},
/turf/open/floor/plasteel/black,
/area/medical/morgue)
-"bkK" = (
+"bja" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
tag = "icon-manifold-b-f (NORTH)";
dir = 1
@@ -31046,7 +30348,7 @@
dir = 8
},
/area/medical/medbay)
-"bkL" = (
+"bjb" = (
/obj/structure/cable{
icon_state = "1-8"
},
@@ -31057,14 +30359,14 @@
},
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bkM" = (
+"bjc" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/whiteblue/side{
tag = "icon-whiteblue (EAST)";
dir = 4
},
/area/medical/medbay)
-"bkN" = (
+"bjd" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical{
name = "Medbay Reception";
@@ -31072,7 +30374,7 @@
},
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bkO" = (
+"bje" = (
/obj/structure/chair/office/light{
dir = 4
},
@@ -31081,7 +30383,7 @@
dir = 4
},
/area/medical/medbay)
-"bkP" = (
+"bjf" = (
/obj/structure/table/reinforced,
/obj/machinery/button/door{
desc = "A remote control switch for the medbay foyer.";
@@ -31096,18 +30398,18 @@
dir = 8
},
/area/medical/medbay)
-"bkQ" = (
+"bjg" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/whiteblue/corner{
dir = 8
},
/area/medical/medbay)
-"bkR" = (
+"bjh" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/whiteblue/corner,
/area/medical/medbay)
-"bkS" = (
+"bji" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/poddoor/shutters/preopen{
@@ -31116,7 +30418,7 @@
},
/turf/open/floor/plating,
/area/medical/chemistry)
-"bkT" = (
+"bjj" = (
/obj/structure/table/reinforced,
/obj/machinery/door/window/northleft{
dir = 2;
@@ -31134,14 +30436,14 @@
dir = 4
},
/area/medical/chemistry)
-"bkU" = (
+"bjk" = (
/obj/machinery/smartfridge/chemistry,
/turf/closed/wall,
/area/medical/chemistry)
-"bkV" = (
+"bjl" = (
/turf/closed/wall,
/area/medical/chemistry)
-"bkW" = (
+"bjm" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/poddoor/shutters/preopen{
@@ -31150,7 +30452,7 @@
},
/turf/open/floor/plating,
/area/toxins/explab)
-"bkX" = (
+"bjn" = (
/obj/structure/table/reinforced,
/obj/item/weapon/pen{
layer = 3.1
@@ -31168,7 +30470,7 @@
/obj/item/weapon/folder/white,
/turf/open/floor/plating,
/area/toxins/explab)
-"bkY" = (
+"bjo" = (
/obj/structure/sink{
dir = 8;
icon_state = "sink";
@@ -31178,14 +30480,14 @@
/obj/machinery/light{
dir = 1
},
-/turf/open/floor/plasteel/white,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel/white,
/area/medical/research{
name = "Research Division"
})
-"bkZ" = (
+"bjp" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
@@ -31194,7 +30496,7 @@
/area/medical/research{
name = "Research Division"
})
-"bla" = (
+"bjq" = (
/obj/structure/closet/emcloset,
/obj/machinery/camera{
c_tag = "Research Division Access";
@@ -31208,14 +30510,14 @@
/obj/machinery/light{
dir = 1
},
-/turf/open/floor/plasteel/white,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plasteel/white,
/area/medical/research{
name = "Research Division"
})
-"blb" = (
+"bjr" = (
/obj/structure/table,
/obj/item/weapon/book/manual/robotics_cyborgs{
pixel_x = 2;
@@ -31232,7 +30534,7 @@
dir = 8
},
/area/assembly/robotics)
-"blc" = (
+"bjs" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -31244,7 +30546,7 @@
},
/turf/open/floor/plasteel,
/area/assembly/robotics)
-"bld" = (
+"bjt" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -31256,7 +30558,7 @@
},
/turf/open/floor/plasteel,
/area/assembly/robotics)
-"ble" = (
+"bju" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -31266,7 +30568,7 @@
},
/turf/open/floor/plasteel,
/area/assembly/robotics)
-"blf" = (
+"bjv" = (
/obj/structure/sink{
dir = 4;
pixel_x = 11
@@ -31278,7 +30580,7 @@
dir = 4
},
/area/assembly/robotics)
-"blg" = (
+"bjw" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 1
},
@@ -31287,13 +30589,13 @@
},
/turf/open/floor/plasteel,
/area/toxins/explab)
-"blh" = (
+"bjx" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
/turf/open/floor/plasteel,
/area/toxins/explab)
-"bli" = (
+"bjy" = (
/obj/structure/chair/stool,
/obj/effect/landmark/start{
name = "Scientist"
@@ -31303,34 +30605,34 @@
},
/turf/open/floor/plasteel,
/area/toxins/explab)
-"blj" = (
+"bjz" = (
/obj/structure/chair/stool,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/toxins/explab)
-"blk" = (
+"bjA" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
on = 1
},
/turf/open/floor/plasteel,
/area/toxins/explab)
-"bll" = (
+"bjB" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8;
initialize_directions = 11
},
/turf/open/floor/plasteel,
/area/toxins/explab)
-"blm" = (
+"bjC" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/toxins/explab)
-"bln" = (
+"bjD" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
on = 1;
@@ -31339,7 +30641,7 @@
},
/turf/open/floor/plasteel,
/area/toxins/explab)
-"blo" = (
+"bjE" = (
/obj/structure/table,
/obj/item/stack/sheet/glass{
amount = 50;
@@ -31353,7 +30655,7 @@
/obj/item/device/assembly/timer,
/turf/open/floor/plasteel,
/area/toxins/explab)
-"blp" = (
+"bjF" = (
/obj/machinery/processor{
desc = "A machine used to process slimes and retrieve their extract.";
name = "Slime Processor"
@@ -31369,19 +30671,19 @@
dir = 8
},
/area/toxins/xenobiology)
-"blq" = (
+"bjG" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
on = 1
},
/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
-"blr" = (
+"bjH" = (
/obj/machinery/smartfridge/extract,
/turf/open/floor/plasteel/whitepurple/side{
dir = 4
},
/area/toxins/xenobiology)
-"bls" = (
+"bjI" = (
/obj/machinery/shieldwallgen{
req_access = list(55)
},
@@ -31391,7 +30693,7 @@
},
/turf/open/floor/plating,
/area/toxins/xenobiology)
-"blt" = (
+"bjJ" = (
/obj/structure/grille,
/obj/structure/cable{
icon_state = "0-4";
@@ -31408,7 +30710,7 @@
},
/turf/open/floor/engine,
/area/toxins/xenobiology)
-"blu" = (
+"bjK" = (
/obj/structure/grille,
/obj/structure/cable{
d2 = 8;
@@ -31425,7 +30727,7 @@
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/engine,
/area/toxins/xenobiology)
-"blv" = (
+"bjL" = (
/obj/machinery/door/window/southleft{
dir = 1;
name = "Test Chamber";
@@ -31443,7 +30745,7 @@
},
/turf/open/floor/engine,
/area/toxins/xenobiology)
-"blw" = (
+"bjM" = (
/obj/structure/grille,
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
@@ -31461,7 +30763,7 @@
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/engine,
/area/toxins/xenobiology)
-"blx" = (
+"bjN" = (
/obj/structure/grille,
/obj/structure/cable{
d2 = 8;
@@ -31478,7 +30780,7 @@
},
/turf/open/floor/engine,
/area/toxins/xenobiology)
-"bly" = (
+"bjO" = (
/obj/machinery/shieldwallgen{
req_access = list(55)
},
@@ -31493,11 +30795,11 @@
},
/turf/open/floor/plating,
/area/toxins/xenobiology)
-"blz" = (
+"bjP" = (
/obj/machinery/atmospherics/pipe/simple/general/hidden,
/turf/closed/wall,
/area/toxins/xenobiology)
-"blA" = (
+"bjQ" = (
/obj/machinery/door/poddoor/preopen{
id = "xenobio5";
name = "containment blast door"
@@ -31511,7 +30813,7 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/engine,
/area/toxins/xenobiology)
-"blB" = (
+"bjR" = (
/obj/machinery/door/window/northleft{
base_state = "right";
dir = 1;
@@ -31531,7 +30833,7 @@
},
/turf/open/floor/engine,
/area/toxins/xenobiology)
-"blC" = (
+"bjS" = (
/obj/machinery/door/poddoor/preopen{
id = "xenobio5";
name = "containment blast door"
@@ -31549,7 +30851,7 @@
},
/turf/open/floor/engine,
/area/toxins/xenobiology)
-"blD" = (
+"bjT" = (
/obj/machinery/door/poddoor/preopen{
id = "xenobio6";
name = "containment blast door"
@@ -31563,7 +30865,7 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/engine,
/area/toxins/xenobiology)
-"blE" = (
+"bjU" = (
/obj/machinery/door/window/northleft{
base_state = "right";
dir = 1;
@@ -31583,7 +30885,7 @@
},
/turf/open/floor/engine,
/area/toxins/xenobiology)
-"blF" = (
+"bjV" = (
/obj/machinery/door/poddoor/preopen{
id = "xenobio6";
name = "containment blast door"
@@ -31601,7 +30903,7 @@
},
/turf/open/floor/engine,
/area/toxins/xenobiology)
-"blG" = (
+"bjW" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -31614,7 +30916,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"blH" = (
+"bjX" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -31623,27 +30925,27 @@
},
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"blI" = (
+"bjY" = (
/obj/structure/shuttle/engine/propulsion{
- icon_state = "propulsion";
- dir = 4
+ dir = 8;
+ icon_state = "propulsion_l"
},
-/turf/closed/wall/mineral/titanium,
+/turf/open/floor/plating,
/area/shuttle/transport)
-"blJ" = (
+"bjZ" = (
/turf/closed/wall/mineral/titanium,
/area/shuttle/transport)
-"blK" = (
+"bka" = (
/obj/structure/window/shuttle,
/obj/structure/grille,
/turf/open/floor/plating,
/area/shuttle/transport)
-"blL" = (
+"bkb" = (
/obj/structure/grille,
/obj/structure/window/shuttle,
/turf/open/floor/plating,
/area/shuttle/transport)
-"blM" = (
+"bkc" = (
/obj/machinery/power/apc{
dir = 4;
name = "Arrivals APC";
@@ -31658,27 +30960,27 @@
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/turf/open/floor/plasteel/neutral/corner,
/area/hallway/secondary/entry)
-"blN" = (
+"bkd" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
/turf/open/floor/carpet,
/area/library)
-"blO" = (
+"bke" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/carpet,
/area/library)
-"blP" = (
+"bkf" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
on = 1
},
/turf/open/floor/plasteel/black,
/area/library)
-"blQ" = (
+"bkg" = (
/obj/machinery/computer/cloning,
/obj/machinery/light{
dir = 8
@@ -31690,7 +30992,7 @@
},
/turf/open/floor/plasteel/blue,
/area/medical/genetics)
-"blR" = (
+"bkh" = (
/obj/machinery/holopad,
/obj/structure/cable{
d1 = 1;
@@ -31709,7 +31011,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/white,
/area/medical/genetics)
-"blS" = (
+"bki" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -31722,7 +31024,7 @@
},
/turf/open/floor/plasteel/white,
/area/medical/genetics)
-"blT" = (
+"bkj" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -31733,7 +31035,7 @@
},
/turf/open/floor/plasteel/white,
/area/medical/genetics)
-"blU" = (
+"bkk" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_medical{
id_tag = "GeneticsDoor";
@@ -31750,7 +31052,7 @@
},
/turf/open/floor/plasteel/white,
/area/medical/genetics)
-"blV" = (
+"bkl" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -31765,7 +31067,7 @@
dir = 1
},
/area/medical/medbay3)
-"blW" = (
+"bkm" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -31791,7 +31093,7 @@
},
/turf/open/floor/plasteel/white,
/area/medical/medbay3)
-"blX" = (
+"bkn" = (
/obj/machinery/power/apc{
dir = 4;
name = "Medbay APC";
@@ -31806,7 +31108,7 @@
dir = 4
},
/area/medical/medbay3)
-"blY" = (
+"bko" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
@@ -31821,14 +31123,14 @@
dir = 1
},
/area/medical/medbay)
-"blZ" = (
+"bkp" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
tag = "icon-manifold-b-f (NORTH)";
dir = 1
},
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bma" = (
+"bkq" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9;
pixel_y = 0
@@ -31840,17 +31142,17 @@
dir = 4
},
/area/medical/medbay)
-"bmb" = (
+"bkr" = (
/obj/machinery/computer/med_data,
/turf/open/floor/plasteel/whiteblue/side,
/area/medical/medbay)
-"bmc" = (
+"bks" = (
/obj/machinery/computer/crew,
/turf/open/floor/plasteel/whiteblue/side{
dir = 6
},
/area/medical/medbay)
-"bmd" = (
+"bkt" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_medical{
id_tag = "MedbayFoyer";
@@ -31862,7 +31164,7 @@
dir = 8
},
/area/medical/medbay)
-"bme" = (
+"bku" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_medical{
id_tag = "MedbayFoyer";
@@ -31873,7 +31175,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/whiteblue/corner,
/area/medical/medbay)
-"bmf" = (
+"bkv" = (
/obj/machinery/chem_master{
layer = 2.7;
pixel_x = -2
@@ -31882,7 +31184,7 @@
dir = 9
},
/area/medical/chemistry)
-"bmg" = (
+"bkw" = (
/obj/structure/chair/office/light{
dir = 1
},
@@ -31893,7 +31195,7 @@
dir = 1
},
/area/medical/chemistry)
-"bmh" = (
+"bkx" = (
/obj/item/weapon/reagent_containers/glass/beaker/large,
/obj/item/weapon/reagent_containers/glass/beaker/large,
/obj/structure/table/glass,
@@ -31904,7 +31206,7 @@
dir = 1
},
/area/medical/chemistry)
-"bmi" = (
+"bky" = (
/obj/machinery/chem_master{
layer = 2.7;
pixel_x = -2
@@ -31920,7 +31222,7 @@
dir = 5
},
/area/medical/chemistry)
-"bmj" = (
+"bkz" = (
/obj/structure/table,
/obj/item/weapon/crowbar,
/obj/item/weapon/wrench,
@@ -31936,7 +31238,7 @@
dir = 1
},
/area/toxins/explab)
-"bmk" = (
+"bkA" = (
/obj/structure/sink/kitchen{
desc = "A sink used for washing one's hands and face. It looks rusty and home-made";
name = "old sink";
@@ -31946,7 +31248,7 @@
dir = 1
},
/area/toxins/explab)
-"bml" = (
+"bkB" = (
/obj/machinery/disposal/bin,
/obj/machinery/light{
dir = 1
@@ -31958,7 +31260,7 @@
dir = 1
},
/area/toxins/explab)
-"bmm" = (
+"bkC" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -31970,7 +31272,7 @@
dir = 1
},
/area/toxins/explab)
-"bmn" = (
+"bkD" = (
/obj/structure/chair/office/light{
dir = 1
},
@@ -31978,14 +31280,14 @@
dir = 1
},
/area/toxins/explab)
-"bmo" = (
+"bkE" = (
/obj/item/weapon/storage/toolbox/mechanical,
/obj/machinery/holopad,
/turf/open/floor/plasteel/purple/side{
dir = 1
},
/area/toxins/explab)
-"bmp" = (
+"bkF" = (
/obj/machinery/shower{
dir = 4;
icon_state = "shower";
@@ -31995,27 +31297,27 @@
dir = 8;
initialize_directions = 11
},
-/turf/open/floor/plasteel/white{
- heat_capacity = 1e+006
- },
/obj/effect/turf_decal/stripes/line{
dir = 10
},
+/turf/open/floor/plasteel/white{
+ heat_capacity = 1e+006
+ },
/area/medical/research{
name = "Research Division"
})
-"bmq" = (
+"bkG" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/turf/open/floor/plasteel/white,
/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/white,
/area/medical/research{
name = "Research Division"
})
-"bmr" = (
+"bkH" = (
/obj/structure/closet/firecloset/full,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
@@ -32023,14 +31325,14 @@
scrub_N2O = 0;
scrub_Toxins = 0
},
-/turf/open/floor/plasteel/white,
/obj/effect/turf_decal/stripes/line{
dir = 6
},
+/turf/open/floor/plasteel/white,
/area/medical/research{
name = "Research Division"
})
-"bms" = (
+"bkI" = (
/obj/structure/closet/wardrobe/robotics_black,
/obj/item/device/radio/headset/headset_sci{
pixel_x = -3
@@ -32039,7 +31341,7 @@
dir = 8
},
/area/assembly/robotics)
-"bmt" = (
+"bkJ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -32051,7 +31353,7 @@
},
/turf/open/floor/plasteel,
/area/assembly/robotics)
-"bmu" = (
+"bkK" = (
/obj/item/device/assembly/prox_sensor{
pixel_x = -8;
pixel_y = 4
@@ -32077,7 +31379,7 @@
/obj/structure/table,
/turf/open/floor/plasteel,
/area/assembly/robotics)
-"bmv" = (
+"bkL" = (
/obj/item/weapon/circular_saw,
/obj/item/weapon/scalpel{
pixel_y = 12
@@ -32094,25 +31396,25 @@
layer = 2.9
},
/obj/structure/table,
-/turf/open/floor/plasteel/white,
/obj/effect/turf_decal/stripes/line{
dir = 9
},
-/area/assembly/robotics)
-"bmw" = (
/turf/open/floor/plasteel/white,
+/area/assembly/robotics)
+"bkM" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel/white,
/area/assembly/robotics)
-"bmx" = (
+"bkN" = (
/obj/machinery/holopad,
-/turf/open/floor/plasteel/white,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel/white,
/area/assembly/robotics)
-"bmy" = (
+"bkO" = (
/obj/item/clothing/gloves/color/latex,
/obj/item/weapon/surgical_drapes,
/obj/structure/window/reinforced{
@@ -32120,12 +31422,12 @@
pixel_y = 1
},
/obj/structure/table,
-/turf/open/floor/plasteel/white,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel/white,
/area/assembly/robotics)
-"bmz" = (
+"bkP" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 1;
name = "Connector Port (Air Supply)"
@@ -32135,42 +31437,42 @@
},
/turf/open/floor/plasteel,
/area/toxins/explab)
-"bmA" = (
+"bkQ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/toxins/explab)
-"bmB" = (
+"bkR" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
/turf/open/floor/plasteel,
/area/toxins/explab)
-"bmC" = (
+"bkS" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
/obj/machinery/holopad,
/turf/open/floor/plasteel,
/area/toxins/explab)
-"bmD" = (
+"bkT" = (
/turf/open/floor/plasteel,
/area/toxins/explab)
-"bmE" = (
+"bkU" = (
/obj/machinery/droneDispenser,
/turf/open/floor/plasteel,
/area/toxins/explab)
-"bmF" = (
+"bkV" = (
/obj/structure/chair/stool,
/obj/effect/decal/cleanable/oil{
icon_state = "floor5"
},
/turf/open/floor/plasteel,
/area/toxins/explab)
-"bmG" = (
+"bkW" = (
/obj/structure/chair/stool,
/turf/open/floor/plasteel,
/area/toxins/explab)
-"bmH" = (
+"bkX" = (
/obj/structure/table,
/obj/item/weapon/storage/box/beakers{
pixel_x = 2;
@@ -32184,7 +31486,7 @@
},
/turf/open/floor/plasteel,
/area/toxins/explab)
-"bmI" = (
+"bkY" = (
/obj/structure/table/glass,
/obj/item/weapon/folder,
/obj/item/weapon/pen,
@@ -32192,17 +31494,17 @@
dir = 8
},
/area/toxins/xenobiology)
-"bmJ" = (
+"bkZ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
-"bmK" = (
+"bla" = (
/obj/structure/chair/comfy/beige{
dir = 4
},
/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
-"bmL" = (
+"blb" = (
/obj/machinery/computer/camera_advanced/xenobio,
/obj/machinery/camera{
c_tag = "Xenobiology Port";
@@ -32213,18 +31515,18 @@
dir = 4
},
/area/toxins/xenobiology)
-"bmM" = (
+"blc" = (
/obj/structure/sign/biohazard,
/turf/closed/wall,
/area/toxins/xenobiology)
-"bmN" = (
+"bld" = (
/obj/item/weapon/wrench,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 2
},
+/turf/open/floor/plasteel,
/area/toxins/xenobiology)
-"bmO" = (
+"ble" = (
/obj/machinery/computer/security/telescreen{
name = "Test Chamber Moniter";
network = list("Xeno");
@@ -32232,12 +31534,12 @@
pixel_y = 2
},
/obj/structure/table/reinforced,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 2
},
+/turf/open/floor/plasteel,
/area/toxins/xenobiology)
-"bmP" = (
+"blf" = (
/obj/machinery/button/door{
id = "misclab";
name = "Test Chamber Blast Doors";
@@ -32249,22 +31551,22 @@
/obj/structure/window/reinforced{
dir = 4
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 6
},
+/turf/open/floor/plasteel,
/area/toxins/xenobiology)
-"bmQ" = (
+"blg" = (
/obj/machinery/door/window/southleft{
name = "Test Chamber";
req_access_txt = "55"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 2
},
+/turf/open/floor/plasteel,
/area/toxins/xenobiology)
-"bmR" = (
+"blh" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 1
@@ -32272,19 +31574,19 @@
/obj/structure/window/reinforced{
dir = 8
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 10
},
+/turf/open/floor/plasteel,
/area/toxins/xenobiology)
-"bmS" = (
+"bli" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 4
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
/area/toxins/xenobiology)
-"bmT" = (
+"blj" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -32293,19 +31595,19 @@
/obj/machinery/atmospherics/components/binary/pump{
dir = 4
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 2
},
+/turf/open/floor/plasteel,
/area/toxins/xenobiology)
-"bmU" = (
+"blk" = (
/obj/structure/sign/xenobio,
/obj/machinery/atmospherics/pipe/simple/general/hidden{
dir = 9
},
/turf/closed/wall,
/area/toxins/xenobiology)
-"bmV" = (
+"bll" = (
/obj/machinery/disposal/bin,
/obj/structure/window/reinforced{
dir = 4;
@@ -32314,14 +31616,14 @@
/obj/structure/disposalpipe/trunk{
dir = 1
},
-/turf/open/floor/plasteel{
- tag = "icon-warning (NORTHEAST)"
- },
/obj/effect/turf_decal/stripes/line{
dir = 5
},
+/turf/open/floor/plasteel{
+ tag = "icon-warning (NORTHEAST)"
+ },
/area/toxins/xenobiology)
-"bmW" = (
+"blm" = (
/obj/machinery/door/window/northleft{
base_state = "right";
dir = 2;
@@ -32329,14 +31631,14 @@
name = "Containment Pen #5";
req_access_txt = "55"
},
-/turf/open/floor/plasteel{
- tag = "icon-warning (NORTH)"
- },
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel{
+ tag = "icon-warning (NORTH)"
+ },
/area/toxins/xenobiology)
-"bmX" = (
+"bln" = (
/obj/structure/table/reinforced,
/obj/machinery/button/door{
id = "xenobio5";
@@ -32354,12 +31656,12 @@
d2 = 2;
icon_state = "1-2"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 9
},
+/turf/open/floor/plasteel,
/area/toxins/xenobiology)
-"bmY" = (
+"blo" = (
/obj/machinery/door/window/northleft{
base_state = "right";
dir = 2;
@@ -32367,14 +31669,14 @@
name = "Containment Pen #6";
req_access_txt = "55"
},
-/turf/open/floor/plasteel{
- tag = "icon-warning (NORTH)"
- },
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel{
+ tag = "icon-warning (NORTH)"
+ },
/area/toxins/xenobiology)
-"bmZ" = (
+"blp" = (
/obj/structure/table/reinforced,
/obj/machinery/button/door{
id = "xenobio6";
@@ -32392,12 +31694,12 @@
d2 = 2;
icon_state = "1-2"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 9
},
+/turf/open/floor/plasteel,
/area/toxins/xenobiology)
-"bna" = (
+"blq" = (
/obj/machinery/door/airlock/maintenance{
req_access_txt = "0";
req_one_access_txt = "12; 55"
@@ -32411,29 +31713,33 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/toxins/xenobiology)
-"bnb" = (
+"blr" = (
/obj/structure/chair{
dir = 4
},
/obj/item/weapon/cigbutt,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"bnc" = (
-/turf/open/floor/mineral/titanium/blue,
-/turf/closed/wall/mineral/titanium/interior,
+"bls" = (
+/obj/structure/shuttle/engine/heater{
+ icon_state = "heater";
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/turf/open/floor/plating,
/area/shuttle/transport)
-"bnd" = (
-/turf/open/floor/mineral/titanium/blue,
+"blt" = (
+/turf/open/floor/pod/light,
/area/shuttle/transport)
-"bne" = (
+"blu" = (
/obj/machinery/computer/shuttle/ferry/request,
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/transport)
-"bnf" = (
+"blv" = (
/obj/structure/chair,
-/turf/open/floor/mineral/titanium/blue,
+/turf/open/floor/pod/dark,
/area/shuttle/transport)
-"bng" = (
+"blw" = (
/obj/structure/grille,
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
@@ -32445,7 +31751,7 @@
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/hallway/secondary/entry)
-"bnh" = (
+"blx" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -32466,20 +31772,20 @@
},
/turf/open/floor/plasteel/neutral/corner,
/area/hallway/secondary/entry)
-"bni" = (
+"bly" = (
/obj/machinery/dna_scannernew,
/turf/open/floor/plasteel/blue,
/area/medical/genetics)
-"bnj" = (
+"blz" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
-/turf/open/floor/plasteel/white,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel/white,
/area/medical/genetics)
-"bnk" = (
+"blA" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -32491,7 +31797,7 @@
},
/turf/open/floor/plasteel/white,
/area/medical/genetics)
-"bnl" = (
+"blB" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1;
@@ -32499,13 +31805,13 @@
},
/turf/open/floor/plasteel/white,
/area/medical/genetics)
-"bnm" = (
+"blC" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/white,
/area/medical/genetics)
-"bnn" = (
+"blD" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -32513,7 +31819,7 @@
},
/turf/open/floor/plating,
/area/medical/genetics)
-"bno" = (
+"blE" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
@@ -32521,7 +31827,7 @@
dir = 1
},
/area/medical/medbay3)
-"bnp" = (
+"blF" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -32530,7 +31836,7 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/white,
/area/medical/medbay3)
-"bnq" = (
+"blG" = (
/obj/machinery/shower{
dir = 8
},
@@ -32538,10 +31844,10 @@
dir = 4
},
/area/medical/medbay3)
-"bnr" = (
+"blH" = (
/turf/closed/wall,
/area/medical/sleeper)
-"bns" = (
+"blI" = (
/obj/machinery/atmospherics/components/unary/thermomachine/freezer,
/obj/machinery/firealarm{
dir = 8;
@@ -32552,14 +31858,14 @@
},
/turf/open/floor/plasteel/blue,
/area/medical/sleeper)
-"bnt" = (
+"blJ" = (
/obj/machinery/atmospherics/components/unary/cryo_cell,
/turf/open/floor/plasteel/blue,
/area/medical/sleeper)
-"bnu" = (
+"blK" = (
/turf/open/floor/plasteel/black,
/area/library)
-"bnv" = (
+"blL" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/obj/machinery/atmospherics/components/unary/portables_connector/visible,
/obj/structure/noticeboard{
@@ -32570,7 +31876,7 @@
},
/turf/open/floor/plasteel/blue,
/area/medical/sleeper)
-"bnw" = (
+"blM" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/obj/machinery/atmospherics/components/unary/portables_connector/visible,
/obj/item/device/radio/intercom{
@@ -32587,7 +31893,7 @@
},
/turf/open/floor/plasteel/blue,
/area/medical/sleeper)
-"bnx" = (
+"blN" = (
/obj/machinery/shower{
dir = 4
},
@@ -32595,7 +31901,7 @@
dir = 1
},
/area/medical/medbay)
-"bny" = (
+"blO" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 24
},
@@ -32603,7 +31909,7 @@
dir = 4
},
/area/medical/medbay)
-"bnz" = (
+"blP" = (
/obj/machinery/button/door{
desc = "A remote control switch for the medbay foyer.";
id = "MedbayFoyer";
@@ -32617,7 +31923,7 @@
dir = 8
},
/area/medical/medbay)
-"bnA" = (
+"blQ" = (
/obj/machinery/chem_dispenser{
layer = 2.7
},
@@ -32634,22 +31940,22 @@
dir = 8
},
/area/medical/chemistry)
-"bnB" = (
+"blR" = (
/turf/open/floor/plasteel/white,
/area/medical/chemistry)
-"bnC" = (
+"blS" = (
/obj/item/weapon/book/manual/wiki/chemistry,
/obj/item/weapon/storage/box/beakers,
/obj/structure/table/glass,
/turf/open/floor/plasteel/white,
/area/medical/chemistry)
-"bnD" = (
+"blT" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
on = 1
},
/turf/open/floor/plasteel/white,
/area/medical/chemistry)
-"bnE" = (
+"blU" = (
/obj/machinery/chem_dispenser{
layer = 2.7
},
@@ -32660,7 +31966,7 @@
},
/turf/open/floor/plasteel/white,
/area/medical/chemistry)
-"bnF" = (
+"blV" = (
/obj/machinery/light{
dir = 8
},
@@ -32671,14 +31977,14 @@
dir = 1
},
/area/hallway/primary/aft)
-"bnG" = (
+"blW" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
on = 1
},
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
-"bnH" = (
+"blX" = (
/obj/structure/table,
/obj/structure/extinguisher_cabinet{
pixel_x = -26
@@ -32690,17 +31996,17 @@
/obj/item/weapon/disk/design_disk,
/turf/open/floor/plasteel,
/area/toxins/explab)
-"bnI" = (
-/turf/open/floor/plasteel,
+"blY" = (
/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
/area/toxins/explab)
-"bnJ" = (
+"blZ" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
/area/toxins/explab)
-"bnK" = (
+"bma" = (
/obj/machinery/power/apc{
dir = 4;
name = "Research Lab APC";
@@ -32714,19 +32020,19 @@
},
/turf/open/floor/plasteel,
/area/toxins/explab)
-"bnL" = (
+"bmb" = (
/obj/machinery/door/firedoor/heavy,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/door/poddoor/preopen{
id = "rndshutters";
name = "research shutters"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
/area/medical/research{
name = "Research Division"
})
-"bnM" = (
+"bmc" = (
/obj/machinery/door/firedoor/heavy,
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -32734,23 +32040,23 @@
id = "rndshutters";
name = "research shutters"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
/area/medical/research{
name = "Research Division"
})
-"bnN" = (
+"bmd" = (
/obj/machinery/door/firedoor/heavy,
/obj/machinery/door/poddoor/preopen{
id = "rndshutters";
name = "research shutters"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
/area/medical/research{
name = "Research Division"
})
-"bnO" = (
+"bme" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -32760,7 +32066,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/assembly/robotics)
-"bnP" = (
+"bmf" = (
/obj/item/weapon/storage/firstaid/regular{
empty = 1;
name = "First-Aid (empty)"
@@ -32781,7 +32087,7 @@
/obj/structure/table,
/turf/open/floor/plasteel,
/area/assembly/robotics)
-"bnQ" = (
+"bmg" = (
/obj/item/weapon/retractor,
/obj/item/weapon/hemostat,
/obj/structure/window/reinforced{
@@ -32789,12 +32095,12 @@
layer = 2.9
},
/obj/structure/table,
-/turf/open/floor/plasteel/white,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel/white,
/area/assembly/robotics)
-"bnR" = (
+"bmh" = (
/obj/structure/table/optable{
name = "Robotics Operating Table"
},
@@ -32805,35 +32111,35 @@
},
/turf/open/floor/plasteel/white,
/area/assembly/robotics)
-"bnS" = (
+"bmi" = (
/obj/machinery/computer/operating{
name = "Robotics Operating Computer"
},
/turf/open/floor/plasteel/white,
/area/assembly/robotics)
-"bnT" = (
+"bmj" = (
/obj/item/device/mmi,
/obj/item/device/mmi,
/obj/item/device/mmi,
/obj/structure/table,
/turf/open/floor/plasteel/white,
/area/assembly/robotics)
-"bnU" = (
+"bmk" = (
/obj/structure/rack,
/obj/item/weapon/crowbar,
/obj/item/weapon/wrench,
/turf/open/floor/plasteel,
/area/toxins/explab)
-"bnV" = (
+"bml" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/toxins/explab)
-"bnW" = (
+"bmm" = (
/obj/structure/closet/emcloset,
/obj/machinery/light,
/turf/open/floor/plasteel,
/area/toxins/explab)
-"bnX" = (
+"bmn" = (
/obj/structure/closet/radiation,
/obj/item/device/radio/intercom{
dir = 0;
@@ -32843,11 +32149,11 @@
},
/turf/open/floor/plasteel,
/area/toxins/explab)
-"bnY" = (
+"bmo" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plasteel,
/area/toxins/explab)
-"bnZ" = (
+"bmp" = (
/obj/structure/reagent_dispensers/watertank,
/obj/machinery/camera{
c_tag = "Experimentation Lab";
@@ -32861,13 +32167,13 @@
},
/turf/open/floor/plasteel,
/area/toxins/explab)
-"boa" = (
+"bmq" = (
/obj/structure/table,
/obj/item/weapon/storage/toolbox/mechanical,
/obj/item/clothing/ears/earmuffs,
/turf/open/floor/plasteel,
/area/toxins/explab)
-"bob" = (
+"bmr" = (
/obj/structure/table,
/obj/item/device/electropack,
/obj/item/device/healthanalyzer,
@@ -32876,7 +32182,7 @@
/obj/item/device/assembly/voice,
/turf/open/floor/plasteel,
/area/toxins/explab)
-"boc" = (
+"bms" = (
/obj/structure/table,
/obj/machinery/cell_charger{
pixel_y = 5
@@ -32886,14 +32192,14 @@
/obj/item/weapon/screwdriver,
/turf/open/floor/plasteel,
/area/toxins/explab)
-"bod" = (
+"bmt" = (
/obj/structure/table,
/obj/item/weapon/hand_labeler,
/obj/item/clothing/glasses/science,
/obj/item/clothing/glasses/science,
/turf/open/floor/plasteel,
/area/toxins/explab)
-"boe" = (
+"bmu" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk,
/obj/machinery/firealarm{
@@ -32904,19 +32210,19 @@
dir = 8
},
/area/toxins/xenobiology)
-"bof" = (
+"bmv" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
-"bog" = (
+"bmw" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
-"boh" = (
+"bmx" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -32924,7 +32230,7 @@
dir = 4
},
/area/toxins/xenobiology)
-"boi" = (
+"bmy" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -32933,7 +32239,7 @@
dir = 1
},
/area/toxins/xenobiology)
-"boj" = (
+"bmz" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -32941,7 +32247,7 @@
dir = 1
},
/area/toxins/xenobiology)
-"bok" = (
+"bmA" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -32955,7 +32261,7 @@
dir = 1
},
/area/toxins/xenobiology)
-"bol" = (
+"bmB" = (
/obj/machinery/light{
dir = 1
},
@@ -32966,7 +32272,7 @@
dir = 1
},
/area/toxins/xenobiology)
-"bom" = (
+"bmC" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -32974,7 +32280,7 @@
dir = 1
},
/area/toxins/xenobiology)
-"bon" = (
+"bmD" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -32987,7 +32293,7 @@
dir = 1
},
/area/toxins/xenobiology)
-"boo" = (
+"bmE" = (
/obj/machinery/camera{
c_tag = "Xenobiology Starboard Fore";
dir = 2;
@@ -33004,7 +32310,7 @@
dir = 1
},
/area/toxins/xenobiology)
-"bop" = (
+"bmF" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -33017,7 +32323,7 @@
dir = 1
},
/area/toxins/xenobiology)
-"boq" = (
+"bmG" = (
/obj/structure/chair{
dir = 4
},
@@ -33035,7 +32341,7 @@
},
/turf/open/floor/plasteel/floorgrime,
/area/toxins/xenobiology)
-"bor" = (
+"bmH" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -33048,36 +32354,43 @@
},
/turf/open/floor/plasteel/floorgrime,
/area/toxins/xenobiology)
-"bos" = (
+"bmI" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/sign/biohazard,
/turf/open/floor/plating,
/area/toxins/xenobiology)
-"bot" = (
+"bmJ" = (
/turf/open/floor/plasteel/airless/circuit,
/area/toxins/xenobiology)
-"bou" = (
+"bmK" = (
/obj/effect/decal/remains/xeno,
/turf/open/floor/plasteel/airless/circuit,
/area/toxins/xenobiology)
-"bov" = (
+"bmL" = (
/obj/structure/chair{
dir = 4
},
/obj/item/weapon/reagent_containers/food/drinks/soda_cans/dr_gibb,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"bow" = (
-/obj/machinery/door/airlock/titanium,
-/turf/open/floor/mineral/titanium/blue,
+"bmM" = (
+/obj/structure/shuttle/engine/heater{
+ icon_state = "heater";
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 0
+ },
+/turf/open/floor/plating,
/area/shuttle/transport)
-"box" = (
+"bmN" = (
/obj/machinery/door/airlock/titanium,
/obj/docking_port/mobile{
dir = 8;
dwidth = 2;
- height = 12;
+ height = 13;
id = "ferry";
name = "ferry shuttle";
port_angle = 0;
@@ -33088,15 +32401,15 @@
/obj/docking_port/stationary{
dir = 8;
dwidth = 2;
- height = 12;
+ height = 13;
id = "ferry_home";
name = "port bay 2";
turf_type = /turf/open/space;
width = 5
},
-/turf/open/floor/mineral/titanium/blue,
+/turf/open/floor/pod/light,
/area/shuttle/transport)
-"boy" = (
+"bmO" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 4;
id_tag = null;
@@ -33105,7 +32418,7 @@
},
/turf/open/floor/plating,
/area/hallway/secondary/entry)
-"boz" = (
+"bmP" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 8;
id_tag = null;
@@ -33114,7 +32427,7 @@
},
/turf/open/floor/plating,
/area/hallway/secondary/entry)
-"boA" = (
+"bmQ" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -33128,7 +32441,7 @@
},
/turf/open/floor/plasteel/neutral/corner,
/area/hallway/secondary/entry)
-"boB" = (
+"bmR" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -33144,7 +32457,7 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"boC" = (
+"bmS" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -33152,7 +32465,7 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"boD" = (
+"bmT" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -33166,7 +32479,7 @@
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/aft)
-"boE" = (
+"bmU" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -33184,7 +32497,7 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"boF" = (
+"bmV" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -33192,13 +32505,13 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"boG" = (
+"bmW" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-21"
},
/turf/open/floor/plasteel/whiteblue/side,
/area/medical/genetics)
-"boH" = (
+"bmX" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
on = 1;
@@ -33207,7 +32520,7 @@
},
/turf/open/floor/plasteel/whiteblue/side,
/area/medical/genetics)
-"boI" = (
+"bmY" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -33216,7 +32529,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/whiteblue/side,
/area/medical/genetics)
-"boJ" = (
+"bmZ" = (
/obj/structure/table,
/obj/item/weapon/book/manual/medical_cloning{
pixel_y = 6
@@ -33225,7 +32538,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/whiteblue/side,
/area/medical/genetics)
-"boK" = (
+"bna" = (
/obj/structure/table,
/obj/item/weapon/storage/box/rxglasses{
pixel_x = 3;
@@ -33243,79 +32556,79 @@
},
/turf/open/floor/plasteel/whiteblue/side,
/area/medical/genetics)
-"boL" = (
+"bnb" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white,
/area/medical/medbay3)
-"boM" = (
+"bnc" = (
/turf/open/floor/plasteel/white,
/area/medical/medbay3)
-"boN" = (
+"bnd" = (
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/white,
/area/medical/sleeper)
-"boO" = (
+"bne" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
icon_state = "intact";
dir = 5
},
-/turf/open/floor/plasteel/white,
/obj/effect/turf_decal/stripes/corner{
dir = 8
},
+/turf/open/floor/plasteel/white,
/area/medical/sleeper)
-"boP" = (
+"bnf" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible,
-/turf/open/floor/plasteel/white,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel/white,
/area/medical/sleeper)
-"boQ" = (
+"bng" = (
/obj/item/weapon/wrench/medical,
/obj/machinery/atmospherics/pipe/manifold/general/visible,
-/turf/open/floor/plasteel/white,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel/white,
/area/medical/sleeper)
-"boR" = (
+"bnh" = (
/obj/machinery/light/small{
dir = 4
},
/turf/open/floor/plasteel/black,
/area/library)
-"boS" = (
+"bni" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 9
},
-/turf/open/floor/plasteel/white{
- heat_capacity = 1e+006
- },
/obj/effect/turf_decal/stripes/corner{
dir = 4
},
+/turf/open/floor/plasteel/white{
+ heat_capacity = 1e+006
+ },
/area/medical/sleeper)
-"boT" = (
+"bnj" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"boU" = (
+"bnk" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"boV" = (
+"bnl" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"boW" = (
+"bnm" = (
/obj/machinery/light{
dir = 4
},
@@ -33323,7 +32636,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/whiteblue/corner,
/area/medical/medbay)
-"boX" = (
+"bnn" = (
/obj/machinery/chem_heater,
/obj/machinery/light{
dir = 8
@@ -33340,14 +32653,14 @@
dir = 8
},
/area/medical/chemistry)
-"boY" = (
+"bno" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
},
/turf/open/floor/plasteel/white,
/area/medical/chemistry)
-"boZ" = (
+"bnp" = (
/obj/machinery/disposal/bin{
pixel_x = 0
},
@@ -33356,11 +32669,11 @@
},
/turf/open/floor/plasteel/white,
/area/medical/chemistry)
-"bpa" = (
+"bnq" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/white,
/area/medical/chemistry)
-"bpb" = (
+"bnr" = (
/obj/machinery/chem_heater,
/obj/machinery/firealarm{
dir = 4;
@@ -33370,7 +32683,7 @@
dir = 6
},
/area/medical/chemistry)
-"bpc" = (
+"bns" = (
/obj/structure/rack,
/obj/effect/decal/cleanable/oil{
icon_state = "floor6"
@@ -33393,23 +32706,23 @@
/obj/item/clothing/glasses/welding,
/turf/open/floor/plasteel,
/area/toxins/explab)
-"bpd" = (
+"bnt" = (
/obj/machinery/r_n_d/destructive_analyzer,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
/area/toxins/explab)
-"bpe" = (
+"bnu" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
/area/toxins/explab)
-"bpf" = (
+"bnv" = (
/obj/machinery/r_n_d/protolathe,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
/area/toxins/explab)
-"bpg" = (
+"bnw" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -33426,13 +32739,13 @@
},
/turf/open/floor/plasteel,
/area/toxins/explab)
-"bph" = (
+"bnx" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall/r_wall,
/area/medical/research{
name = "Research Division"
})
-"bpi" = (
+"bny" = (
/obj/machinery/door/airlock/research{
cyclelinkeddir = 1;
name = "Research Division Access";
@@ -33440,24 +32753,24 @@
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/white,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel/white,
/area/medical/research{
name = "Research Division"
})
-"bpj" = (
+"bnz" = (
/turf/closed/wall/r_wall,
/area/medical/research{
name = "Research Division"
})
-"bpk" = (
+"bnA" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/assembly/robotics)
-"bpl" = (
+"bnB" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -33472,15 +32785,15 @@
},
/turf/open/floor/plasteel,
/area/assembly/robotics)
-"bpm" = (
+"bnC" = (
/turf/closed/wall,
/area/assembly/robotics)
-"bpn" = (
+"bnD" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/toxins/explab)
-"bpo" = (
+"bnE" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_research{
name = "Experimentation Lab";
@@ -33489,13 +32802,13 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/toxins/explab)
-"bpp" = (
+"bnF" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/toxins/explab)
-"bpq" = (
+"bnG" = (
/obj/item/device/radio/intercom{
dir = 0;
name = "Station Intercom (General)";
@@ -33504,7 +32817,7 @@
},
/turf/closed/wall,
/area/toxins/explab)
-"bpr" = (
+"bnH" = (
/obj/machinery/light{
dir = 8
},
@@ -33516,14 +32829,14 @@
dir = 8
},
/area/toxins/xenobiology)
-"bps" = (
+"bnI" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
-"bpt" = (
+"bnJ" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -33535,20 +32848,20 @@
},
/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
-"bpu" = (
+"bnK" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
-"bpv" = (
+"bnL" = (
/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
-"bpw" = (
+"bnM" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -33560,7 +32873,7 @@
},
/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
-"bpx" = (
+"bnN" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -33577,7 +32890,7 @@
},
/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
-"bpy" = (
+"bnO" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -33591,7 +32904,7 @@
},
/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
-"bpz" = (
+"bnP" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -33602,7 +32915,7 @@
},
/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
-"bpA" = (
+"bnQ" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -33624,7 +32937,7 @@
},
/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
-"bpB" = (
+"bnR" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -33647,7 +32960,7 @@
},
/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
-"bpC" = (
+"bnS" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -33662,7 +32975,7 @@
},
/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
-"bpD" = (
+"bnT" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -33688,7 +33001,7 @@
},
/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
-"bpE" = (
+"bnU" = (
/obj/machinery/door/airlock/research{
name = "Kill Room Access";
req_access_txt = "55"
@@ -33711,7 +33024,7 @@
},
/turf/open/floor/plasteel,
/area/toxins/xenobiology)
-"bpF" = (
+"bnV" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -33726,7 +33039,7 @@
/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel/floorgrime,
/area/toxins/xenobiology)
-"bpG" = (
+"bnW" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -33748,7 +33061,7 @@
},
/turf/open/floor/plasteel/floorgrime,
/area/toxins/xenobiology)
-"bpH" = (
+"bnX" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_research{
name = "Kill Room";
@@ -33756,7 +33069,7 @@
},
/turf/open/floor/plating,
/area/toxins/xenobiology)
-"bpI" = (
+"bnY" = (
/obj/machinery/light/small{
dir = 4
},
@@ -33767,32 +33080,32 @@
},
/turf/open/floor/plasteel/airless/circuit,
/area/toxins/xenobiology)
-"bpJ" = (
+"bnZ" = (
/obj/structure/closet/crate,
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/transport)
-"bpK" = (
+"boa" = (
/obj/structure/chair{
dir = 1
},
-/turf/open/floor/mineral/titanium/blue,
+/turf/open/floor/pod/dark,
/area/shuttle/transport)
-"bpL" = (
+"bob" = (
/turf/open/floor/plasteel/neutral/corner,
/area/hallway/secondary/entry)
-"bpM" = (
+"boc" = (
/turf/closed/wall,
/area/maintenance/aft)
-"bpN" = (
+"bod" = (
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
/area/maintenance/aft)
-"bpO" = (
+"boe" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bpP" = (
+"bof" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -33803,18 +33116,18 @@
icon_state = "platingdmg3"
},
/area/maintenance/aft)
-"bpQ" = (
+"bog" = (
/obj/machinery/portable_atmospherics/canister/air,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bpR" = (
+"boh" = (
/obj/structure/girder,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bpS" = (
+"boi" = (
/turf/closed/wall/r_wall,
/area/medical/genetics)
-"bpT" = (
+"boj" = (
/obj/machinery/door/airlock/glass_research{
name = "Genetics";
req_access_txt = "9"
@@ -33827,14 +33140,14 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/whiteblue,
/area/medical/genetics)
-"bpU" = (
+"bok" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/medical/genetics)
-"bpV" = (
+"bol" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/camera{
c_tag = "Medbay Port Hallway";
@@ -33843,7 +33156,7 @@
},
/turf/open/floor/plasteel/white,
/area/medical/medbay3)
-"bpW" = (
+"bom" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -33855,60 +33168,60 @@
},
/turf/open/floor/plasteel/white,
/area/medical/medbay3)
-"bpX" = (
+"bon" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel/white,
/area/medical/medbay3)
-"bpY" = (
+"boo" = (
/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel/white,
/area/medical/sleeper)
-"bpZ" = (
+"bop" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel/white,
/area/medical/sleeper)
-"bqa" = (
+"boq" = (
/obj/machinery/holopad,
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel/white,
/area/medical/sleeper)
-"bqb" = (
+"bor" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bqc" = (
+"bos" = (
/obj/structure/disposalpipe/junction{
dir = 8;
icon_state = "pipe-j2"
},
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bqd" = (
+"bot" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bqe" = (
+"bou" = (
/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bqf" = (
+"bov" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -33919,7 +33232,7 @@
},
/turf/open/floor/plasteel/whiteblue/corner,
/area/medical/medbay)
-"bqg" = (
+"bow" = (
/obj/machinery/door/airlock/glass_medical{
id_tag = null;
name = "Chemistry Lab";
@@ -33930,17 +33243,17 @@
},
/turf/open/floor/plasteel/white,
/area/medical/chemistry)
-"bqh" = (
+"box" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
/turf/open/floor/plasteel/white,
/area/medical/chemistry)
-"bqi" = (
+"boy" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/white,
/area/medical/chemistry)
-"bqj" = (
+"boz" = (
/obj/machinery/shower{
dir = 8;
name = "emergency shower"
@@ -33954,7 +33267,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/white,
/area/medical/chemistry)
-"bqk" = (
+"boA" = (
/obj/machinery/camera{
c_tag = "Aft Primary Hallway Chemistry";
dir = 4;
@@ -33968,7 +33281,7 @@
dir = 1
},
/area/hallway/primary/aft)
-"bql" = (
+"boB" = (
/obj/item/device/radio/intercom{
dir = 0;
name = "Station Intercom (General)";
@@ -33985,29 +33298,29 @@
},
/turf/open/floor/plasteel,
/area/toxins/explab)
-"bqm" = (
+"boC" = (
/obj/machinery/computer/rdconsole/core,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
/area/toxins/explab)
-"bqn" = (
+"boD" = (
/obj/structure/disposalpipe/segment,
/obj/effect/landmark/start{
name = "Scientist"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
/area/toxins/explab)
-"bqo" = (
+"boE" = (
/obj/machinery/r_n_d/circuit_imprinter{
pixel_y = 4
},
/obj/item/weapon/reagent_containers/glass/beaker/sulphuric,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
/area/toxins/explab)
-"bqp" = (
+"boF" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -34015,7 +33328,7 @@
},
/turf/open/floor/plasteel,
/area/toxins/explab)
-"bqq" = (
+"boG" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white/side{
dir = 4
@@ -34023,7 +33336,7 @@
/area/medical/research{
name = "Research Division"
})
-"bqr" = (
+"boH" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -34035,7 +33348,7 @@
/area/medical/research{
name = "Research Division"
})
-"bqs" = (
+"boI" = (
/obj/structure/disposalpipe/segment{
dir = 2;
icon_state = "pipe-c"
@@ -34047,7 +33360,7 @@
/area/medical/research{
name = "Research Division"
})
-"bqt" = (
+"boJ" = (
/obj/machinery/power/apc{
cell_type = 10000;
dir = 1;
@@ -34067,7 +33380,7 @@
/area/medical/research{
name = "Research Division"
})
-"bqu" = (
+"boK" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -34075,7 +33388,7 @@
/area/medical/research{
name = "Research Division"
})
-"bqv" = (
+"boL" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -34092,7 +33405,7 @@
/area/medical/research{
name = "Research Division"
})
-"bqw" = (
+"boM" = (
/obj/machinery/light{
dir = 1
},
@@ -34103,7 +33416,7 @@
/area/medical/research{
name = "Research Division"
})
-"bqx" = (
+"boN" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -34114,7 +33427,7 @@
/area/medical/research{
name = "Research Division"
})
-"bqy" = (
+"boO" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -34126,7 +33439,7 @@
/area/medical/research{
name = "Research Division"
})
-"bqz" = (
+"boP" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
tag = "icon-manifold-b-f (NORTH)";
dir = 1
@@ -34135,7 +33448,7 @@
/area/medical/research{
name = "Research Division"
})
-"bqA" = (
+"boQ" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel/whitepurple/side{
dir = 1
@@ -34143,7 +33456,7 @@
/area/medical/research{
name = "Research Division"
})
-"bqB" = (
+"boR" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -34152,7 +33465,7 @@
/area/medical/research{
name = "Research Division"
})
-"bqC" = (
+"boS" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-18";
layer = 4.1;
@@ -34164,19 +33477,19 @@
/area/medical/research{
name = "Research Division"
})
-"bqD" = (
+"boT" = (
/obj/structure/closet/firecloset,
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
layer = 2.4;
on = 1
},
-/turf/open/floor/plasteel/white,
/obj/effect/turf_decal/stripes/line{
dir = 9
},
+/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
-"bqE" = (
+"boU" = (
/obj/structure/closet/l3closet,
/obj/machinery/camera{
c_tag = "Xenobiology Access";
@@ -34188,23 +33501,23 @@
},
/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
-"bqF" = (
+"boV" = (
/obj/structure/closet/l3closet,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
-/turf/open/floor/plasteel/white,
/obj/effect/turf_decal/stripes/line{
dir = 5
},
+/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
-"bqG" = (
+"boW" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/closed/wall,
/area/toxins/xenobiology)
-"bqH" = (
+"boX" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -34212,39 +33525,39 @@
dir = 8
},
/area/toxins/xenobiology)
-"bqI" = (
+"boY" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9;
pixel_y = 0
},
/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
-"bqJ" = (
+"boZ" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
-"bqK" = (
+"bpa" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/whitepurple/corner,
/area/toxins/xenobiology)
-"bqL" = (
+"bpb" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/whitepurple/side,
/area/toxins/xenobiology)
-"bqM" = (
+"bpc" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/whitepurple/side,
/area/toxins/xenobiology)
-"bqN" = (
+"bpd" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -34255,7 +33568,7 @@
},
/turf/open/floor/plasteel/whitepurple/side,
/area/toxins/xenobiology)
-"bqO" = (
+"bpe" = (
/obj/machinery/light,
/obj/machinery/camera{
c_tag = "Xenobiology Central";
@@ -34268,11 +33581,11 @@
},
/turf/open/floor/plasteel/whitepurple/side,
/area/toxins/xenobiology)
-"bqP" = (
+"bpf" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/whitepurple/side,
/area/toxins/xenobiology)
-"bqQ" = (
+"bpg" = (
/obj/machinery/light,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -34284,13 +33597,13 @@
},
/turf/open/floor/plasteel/whitepurple/side,
/area/toxins/xenobiology)
-"bqR" = (
+"bph" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall/r_wall,
/area/toxins/xenobiology)
-"bqS" = (
+"bpi" = (
/obj/structure/cable{
icon_state = "0-4";
d2 = 4
@@ -34313,7 +33626,7 @@
},
/turf/open/floor/plasteel/floorgrime,
/area/toxins/xenobiology)
-"bqT" = (
+"bpj" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -34327,7 +33640,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/floorgrime,
/area/toxins/xenobiology)
-"bqU" = (
+"bpk" = (
/obj/effect/spawner/lootdrop/maintenance,
/obj/structure/disposalpipe/segment{
dir = 1;
@@ -34335,13 +33648,13 @@
},
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"bqV" = (
+"bpl" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/closed/wall,
/area/maintenance/apmaint)
-"bqW" = (
+"bpm" = (
/obj/structure/disposaloutlet{
dir = 4
},
@@ -34350,19 +33663,19 @@
},
/turf/open/floor/plating/airless,
/area/space)
-"bqX" = (
+"bpn" = (
/turf/open/floor/plating{
burnt = 1;
icon_state = "panelscorched"
},
/area/maintenance/aft)
-"bqY" = (
+"bpo" = (
/turf/open/floor/plating{
broken = 1;
icon_state = "platingdmg1"
},
/area/maintenance/aft)
-"bqZ" = (
+"bpp" = (
/obj/structure/table,
/obj/item/weapon/folder/white,
/obj/item/weapon/pen,
@@ -34376,19 +33689,19 @@
dir = 9
},
/area/medical/genetics)
-"bra" = (
+"bpq" = (
/obj/machinery/computer/scan_consolenew,
/turf/open/floor/plasteel/whitepurple/side{
dir = 1
},
/area/medical/genetics)
-"brb" = (
+"bpr" = (
/obj/machinery/dna_scannernew,
/turf/open/floor/plasteel/whitepurple/side{
dir = 1
},
/area/medical/genetics)
-"brc" = (
+"bps" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -34399,7 +33712,7 @@
dir = 1
},
/area/medical/genetics)
-"brd" = (
+"bpt" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 1
@@ -34409,7 +33722,7 @@
dir = 1
},
/area/medical/genetics)
-"bre" = (
+"bpu" = (
/obj/structure/table,
/obj/item/weapon/storage/box/rxglasses{
pixel_x = 4;
@@ -34420,7 +33733,7 @@
dir = 5
},
/area/medical/genetics)
-"brf" = (
+"bpv" = (
/obj/machinery/requests_console{
announcementConsole = 0;
department = "Medbay";
@@ -34436,7 +33749,7 @@
},
/turf/open/floor/plasteel/white,
/area/medical/medbay3)
-"brg" = (
+"bpw" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -34452,7 +33765,7 @@
},
/turf/open/floor/plasteel/white,
/area/medical/medbay3)
-"brh" = (
+"bpx" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -34464,14 +33777,14 @@
},
/turf/open/floor/plasteel/white,
/area/medical/medbay3)
-"bri" = (
+"bpy" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/white,
/area/medical/sleeper)
-"brj" = (
+"bpz" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -34481,67 +33794,67 @@
icon_state = "2-8";
tag = ""
},
-/turf/open/floor/plasteel/white,
/obj/effect/turf_decal/stripes/corner,
+/turf/open/floor/plasteel/white,
/area/medical/sleeper)
-"brk" = (
+"bpA" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/turf/open/floor/plasteel/white,
/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/white,
/area/medical/sleeper)
-"brl" = (
+"bpB" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/turf/open/floor/plasteel/white,
/obj/effect/turf_decal/stripes/corner{
dir = 1
},
+/turf/open/floor/plasteel/white,
/area/medical/sleeper)
-"brm" = (
+"bpC" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1;
initialize_directions = 11
},
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"brn" = (
+"bpD" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bro" = (
+"bpE" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"brp" = (
+"bpF" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"brq" = (
+"bpG" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
/turf/open/floor/plasteel/whiteblue/corner,
/area/medical/medbay)
-"brr" = (
+"bpH" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8;
initialize_directions = 11
},
/turf/open/floor/plasteel/white,
/area/medical/chemistry)
-"brs" = (
+"bpI" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
@@ -34551,7 +33864,7 @@
},
/turf/open/floor/plasteel/white,
/area/medical/chemistry)
-"brt" = (
+"bpJ" = (
/obj/structure/rack,
/obj/item/stack/packageWrap,
/obj/item/weapon/hand_labeler,
@@ -34559,7 +33872,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/white,
/area/medical/chemistry)
-"bru" = (
+"bpK" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 4
@@ -34568,7 +33881,7 @@
dir = 8
},
/area/hallway/primary/aft)
-"brv" = (
+"bpL" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -34581,7 +33894,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
-"brw" = (
+"bpM" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -34593,7 +33906,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
-"brx" = (
+"bpN" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -34609,7 +33922,7 @@
dir = 4
},
/area/hallway/primary/aft)
-"bry" = (
+"bpO" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/poddoor/shutters/preopen{
@@ -34626,7 +33939,7 @@
},
/turf/open/floor/plating,
/area/toxins/explab)
-"brz" = (
+"bpP" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -34643,7 +33956,7 @@
},
/turf/open/floor/plasteel,
/area/toxins/explab)
-"brA" = (
+"bpQ" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -34652,14 +33965,14 @@
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/plasteel{
- tag = "icon-warning (NORTH)"
- },
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel{
+ tag = "icon-warning (NORTH)"
+ },
/area/toxins/explab)
-"brB" = (
+"bpR" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -34673,14 +33986,14 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
-/turf/open/floor/plasteel{
- tag = "icon-warning (NORTH)"
- },
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel{
+ tag = "icon-warning (NORTH)"
+ },
/area/toxins/explab)
-"brC" = (
+"bpS" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -34692,14 +34005,14 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/turf/open/floor/plasteel{
- tag = "icon-warning (NORTH)"
- },
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel{
+ tag = "icon-warning (NORTH)"
+ },
/area/toxins/explab)
-"brD" = (
+"bpT" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -34719,7 +34032,7 @@
},
/turf/open/floor/plasteel,
/area/toxins/explab)
-"brE" = (
+"bpU" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_research{
name = "Research and Development Lab";
@@ -34739,7 +34052,7 @@
},
/turf/open/floor/plasteel,
/area/toxins/explab)
-"brF" = (
+"bpV" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -34757,7 +34070,7 @@
/area/medical/research{
name = "Research Division"
})
-"brG" = (
+"bpW" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -34781,7 +34094,7 @@
/area/medical/research{
name = "Research Division"
})
-"brH" = (
+"bpX" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -34795,7 +34108,7 @@
/area/medical/research{
name = "Research Division"
})
-"brI" = (
+"bpY" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -34814,7 +34127,7 @@
/area/medical/research{
name = "Research Division"
})
-"brJ" = (
+"bpZ" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -34827,7 +34140,7 @@
/area/medical/research{
name = "Research Division"
})
-"brK" = (
+"bqa" = (
/obj/structure/cable{
icon_state = "1-8"
},
@@ -34846,7 +34159,7 @@
/area/medical/research{
name = "Research Division"
})
-"brL" = (
+"bqb" = (
/obj/structure/window/reinforced{
dir = 8
},
@@ -34858,7 +34171,7 @@
/area/chapel/main{
name = "Monastery"
})
-"brM" = (
+"bqc" = (
/obj/structure/window/reinforced{
dir = 4;
layer = 2.9
@@ -34871,7 +34184,7 @@
/area/chapel/main{
name = "Monastery"
})
-"brN" = (
+"bqd" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
@@ -34879,7 +34192,7 @@
/area/medical/research{
name = "Research Division"
})
-"brO" = (
+"bqe" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -34889,7 +34202,7 @@
/area/medical/research{
name = "Research Division"
})
-"brP" = (
+"bqf" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research{
autoclose = 0;
@@ -34915,33 +34228,33 @@
dir = 4
},
/area/toxins/xenobiology)
-"brQ" = (
+"bqg" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1;
initialize_directions = 11
},
-/turf/open/floor/plasteel/white,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
-"brR" = (
+"bqh" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
-"brS" = (
+"bqi" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/turf/open/floor/plasteel/white,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
-"brT" = (
+"bqj" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research{
autoclose = 0;
@@ -34965,7 +34278,7 @@
},
/turf/open/floor/plasteel/whitepurple,
/area/toxins/xenobiology)
-"brU" = (
+"bqk" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -34981,13 +34294,13 @@
dir = 8
},
/area/toxins/xenobiology)
-"brV" = (
+"bql" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
-"brW" = (
+"bqm" = (
/obj/structure/sink{
dir = 4;
icon_state = "sink";
@@ -34998,21 +34311,21 @@
dir = 4
},
/area/toxins/xenobiology)
-"brX" = (
+"bqn" = (
/obj/machinery/disposal/bin,
/obj/structure/window/reinforced{
dir = 4;
pixel_x = 0
},
/obj/structure/disposalpipe/trunk,
-/turf/open/floor/plasteel{
- tag = "icon-warning (NORTHEAST)"
- },
/obj/effect/turf_decal/stripes/line{
dir = 5
},
+/turf/open/floor/plasteel{
+ tag = "icon-warning (NORTHEAST)"
+ },
/area/toxins/xenobiology)
-"brY" = (
+"bqo" = (
/obj/machinery/door/window/northleft{
base_state = "right";
dir = 1;
@@ -35020,14 +34333,14 @@
name = "Containment Pen #1";
req_access_txt = "55"
},
-/turf/open/floor/plasteel{
- tag = "icon-warning (NORTH)"
- },
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel{
+ tag = "icon-warning (NORTH)"
+ },
/area/toxins/xenobiology)
-"brZ" = (
+"bqp" = (
/obj/structure/table/reinforced,
/obj/machinery/button/door{
id = "xenobio1";
@@ -35045,16 +34358,16 @@
d2 = 2;
icon_state = "1-2"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 9
},
+/turf/open/floor/plasteel,
/area/toxins/xenobiology)
-"bsa" = (
+"bqq" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall,
/area/toxins/xenobiology)
-"bsb" = (
+"bqr" = (
/obj/machinery/door/window/northleft{
base_state = "right";
dir = 1;
@@ -35062,14 +34375,14 @@
name = "Containment Pen #2";
req_access_txt = "55"
},
-/turf/open/floor/plasteel{
- tag = "icon-warning (NORTH)"
- },
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel{
+ tag = "icon-warning (NORTH)"
+ },
/area/toxins/xenobiology)
-"bsc" = (
+"bqs" = (
/obj/structure/table/reinforced,
/obj/machinery/button/door{
id = "xenobio2";
@@ -35087,12 +34400,12 @@
d2 = 2;
icon_state = "1-2"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 9
},
+/turf/open/floor/plasteel,
/area/toxins/xenobiology)
-"bsd" = (
+"bqt" = (
/obj/machinery/door/window/northleft{
base_state = "right";
dir = 1;
@@ -35100,14 +34413,14 @@
name = "Containment Pen #3";
req_access_txt = "55"
},
-/turf/open/floor/plasteel{
- tag = "icon-warning (NORTH)"
- },
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel{
+ tag = "icon-warning (NORTH)"
+ },
/area/toxins/xenobiology)
-"bse" = (
+"bqu" = (
/obj/structure/table/reinforced,
/obj/machinery/button/door{
id = "xenobio3";
@@ -35125,12 +34438,12 @@
d2 = 2;
icon_state = "1-2"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 9
},
+/turf/open/floor/plasteel,
/area/toxins/xenobiology)
-"bsf" = (
+"bqv" = (
/obj/machinery/door/window/northleft{
base_state = "right";
dir = 1;
@@ -35138,14 +34451,14 @@
name = "Containment Pen #4";
req_access_txt = "55"
},
-/turf/open/floor/plasteel{
- tag = "icon-warning (NORTH)"
- },
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel{
+ tag = "icon-warning (NORTH)"
+ },
/area/toxins/xenobiology)
-"bsg" = (
+"bqw" = (
/obj/structure/table/reinforced,
/obj/machinery/button/door{
id = "xenobio4";
@@ -35163,12 +34476,12 @@
d2 = 2;
icon_state = "1-2"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 9
},
+/turf/open/floor/plasteel,
/area/toxins/xenobiology)
-"bsh" = (
+"bqx" = (
/obj/machinery/door/airlock/maintenance{
req_access_txt = "0";
req_one_access_txt = "12; 55"
@@ -35181,21 +34494,21 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/toxins/xenobiology)
-"bsi" = (
+"bqy" = (
/obj/structure/girder,
/turf/open/floor/plating/airless,
/area/toxins/xenobiology)
-"bsj" = (
+"bqz" = (
/obj/structure/table,
/obj/effect/spawner/lootdrop/maintenance,
/obj/item/clothing/shoes/winterboots,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bsk" = (
+"bqA" = (
/obj/structure/flora/ausbushes/palebush,
/turf/open/floor/grass,
/area/medical/genetics)
-"bsl" = (
+"bqB" = (
/obj/structure/window/reinforced{
dir = 4;
layer = 2.9
@@ -35207,7 +34520,7 @@
/mob/living/carbon/monkey,
/turf/open/floor/grass,
/area/medical/genetics)
-"bsm" = (
+"bqC" = (
/obj/structure/table,
/obj/item/weapon/storage/box/disks,
/obj/item/device/flashlight/pen,
@@ -35219,7 +34532,7 @@
dir = 8
},
/area/medical/genetics)
-"bsn" = (
+"bqD" = (
/obj/structure/chair/stool,
/obj/effect/landmark/start{
name = "Geneticist"
@@ -35229,13 +34542,13 @@
},
/turf/open/floor/plasteel/white,
/area/medical/genetics)
-"bso" = (
+"bqE" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
/turf/open/floor/plasteel/white,
/area/medical/genetics)
-"bsp" = (
+"bqF" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -35247,11 +34560,11 @@
},
/turf/open/floor/plasteel/white,
/area/medical/genetics)
-"bsq" = (
+"bqG" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white,
/area/medical/genetics)
-"bsr" = (
+"bqH" = (
/obj/structure/table,
/obj/item/clothing/gloves/color/latex,
/obj/item/clothing/gloves/color/latex,
@@ -35263,7 +34576,7 @@
dir = 4
},
/area/medical/genetics)
-"bss" = (
+"bqI" = (
/obj/structure/extinguisher_cabinet{
pixel_x = -24
},
@@ -35278,7 +34591,7 @@
dir = 8
},
/area/medical/medbay3)
-"bst" = (
+"bqJ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -35292,13 +34605,13 @@
},
/turf/open/floor/plasteel/white,
/area/medical/medbay3)
-"bsu" = (
+"bqK" = (
/obj/structure/chair{
dir = 8
},
/turf/open/floor/plasteel/whiteblue/corner,
/area/medical/medbay3)
-"bsv" = (
+"bqL" = (
/obj/structure/table/glass,
/obj/item/stack/medical/gauze,
/obj/machinery/power/apc{
@@ -35313,13 +34626,13 @@
/obj/structure/cable,
/turf/open/floor/plasteel/blue,
/area/medical/sleeper)
-"bsw" = (
+"bqM" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plating,
/area/maintenance/port{
name = "Monastery Maintenance"
})
-"bsx" = (
+"bqN" = (
/obj/machinery/camera{
c_tag = "Medbay Sleepers";
dir = 1;
@@ -35328,49 +34641,49 @@
/obj/machinery/light,
/turf/open/floor/plasteel/blue,
/area/medical/sleeper)
-"bsy" = (
+"bqO" = (
/obj/machinery/sleeper{
icon_state = "sleeper-open";
dir = 1
},
/turf/open/floor/plasteel/blue,
/area/medical/sleeper)
-"bsz" = (
+"bqP" = (
/obj/structure/table/glass,
/obj/item/clothing/neck/stethoscope,
/obj/item/device/healthanalyzer,
/turf/open/floor/plasteel/blue,
/area/medical/sleeper)
-"bsA" = (
+"bqQ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/whiteblue/corner{
dir = 8
},
/area/medical/medbay)
-"bsB" = (
+"bqR" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bsC" = (
+"bqS" = (
/obj/machinery/light{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/whiteblue/corner,
/area/medical/medbay)
-"bsD" = (
+"bqT" = (
/turf/closed/wall,
/area/medical/cmo{
name = "Chief Medical Office"
})
-"bsE" = (
+"bqU" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
/turf/open/floor/plating,
/area/medical/cmo{
name = "Chief Medical Office"
})
-"bsF" = (
+"bqV" = (
/obj/structure/closet/secure_closet/chemical,
/obj/machinery/power/apc{
dir = 8;
@@ -35387,7 +34700,7 @@
dir = 8
},
/area/medical/chemistry)
-"bsG" = (
+"bqW" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -35396,7 +34709,7 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/white,
/area/medical/chemistry)
-"bsH" = (
+"bqX" = (
/obj/structure/chair/office/light{
dir = 4
},
@@ -35407,7 +34720,7 @@
dir = 4
},
/area/medical/chemistry)
-"bsI" = (
+"bqY" = (
/obj/structure/table/reinforced,
/obj/machinery/door/firedoor,
/obj/machinery/door/window/eastright{
@@ -35433,7 +34746,7 @@
dir = 4
},
/area/medical/chemistry)
-"bsJ" = (
+"bqZ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -35444,14 +34757,14 @@
dir = 8
},
/area/hallway/primary/aft)
-"bsK" = (
+"bra" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4;
initialize_directions = 11
},
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
-"bsL" = (
+"brb" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
@@ -35460,7 +34773,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
-"bsM" = (
+"brc" = (
/obj/structure/chair{
dir = 4
},
@@ -35468,7 +34781,7 @@
dir = 4
},
/area/hallway/primary/aft)
-"bsN" = (
+"brd" = (
/obj/structure/table/reinforced,
/obj/machinery/door/window/eastright{
dir = 4;
@@ -35484,7 +34797,7 @@
},
/turf/open/floor/plating,
/area/toxins/explab)
-"bsO" = (
+"bre" = (
/obj/structure/chair/office/light{
dir = 8
},
@@ -35495,14 +34808,14 @@
},
/turf/open/floor/plasteel,
/area/toxins/explab)
-"bsP" = (
+"brf" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
on = 1
},
/turf/open/floor/plasteel,
/area/toxins/explab)
-"bsQ" = (
+"brg" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
@@ -35512,7 +34825,7 @@
/area/medical/research{
name = "Research Division"
})
-"bsR" = (
+"brh" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -35527,7 +34840,7 @@
/area/medical/research{
name = "Research Division"
})
-"bsS" = (
+"bri" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -35539,7 +34852,7 @@
/area/medical/research{
name = "Research Division"
})
-"bsT" = (
+"brj" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -35550,7 +34863,7 @@
/area/medical/research{
name = "Research Division"
})
-"bsU" = (
+"brk" = (
/obj/machinery/camera{
c_tag = "Research Division Port";
dir = 1
@@ -35566,7 +34879,7 @@
/area/medical/research{
name = "Research Division"
})
-"bsV" = (
+"brl" = (
/obj/item/clothing/gloves/color/latex,
/obj/item/clothing/glasses/science,
/obj/structure/table,
@@ -35577,7 +34890,7 @@
/area/medical/research{
name = "Research Division"
})
-"bsW" = (
+"brm" = (
/obj/item/device/analyzer,
/obj/structure/table,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
@@ -35585,7 +34898,7 @@
/area/medical/research{
name = "Research Division"
})
-"bsX" = (
+"brn" = (
/obj/machinery/vending/assist,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -35594,7 +34907,7 @@
/area/medical/research{
name = "Research Division"
})
-"bsY" = (
+"bro" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -35608,7 +34921,7 @@
/area/medical/research{
name = "Research Division"
})
-"bsZ" = (
+"brp" = (
/obj/machinery/light,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/table,
@@ -35621,7 +34934,7 @@
/area/medical/research{
name = "Research Division"
})
-"bta" = (
+"brq" = (
/obj/machinery/camera{
c_tag = "Research Division Starboard";
dir = 1
@@ -35631,7 +34944,7 @@
/area/medical/research{
name = "Research Division"
})
-"btb" = (
+"brr" = (
/obj/structure/sink{
dir = 8;
icon_state = "sink";
@@ -35643,41 +34956,41 @@
scrub_N2O = 0;
scrub_Toxins = 0
},
-/turf/open/floor/plasteel/white{
- heat_capacity = 1e+006
- },
/obj/effect/turf_decal/stripes/line{
dir = 10
},
+/turf/open/floor/plasteel/white{
+ heat_capacity = 1e+006
+ },
/area/toxins/xenobiology)
-"btc" = (
+"brs" = (
/obj/machinery/light,
/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
-"btd" = (
+"brt" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/shower{
dir = 8;
name = "emergency shower";
pixel_y = -4
},
-/turf/open/floor/plasteel/white,
/obj/effect/turf_decal/stripes/line{
dir = 6
},
+/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
-"bte" = (
+"bru" = (
/turf/open/floor/plasteel/whitepurple/side{
dir = 10
},
/area/toxins/xenobiology)
-"btf" = (
+"brv" = (
/obj/structure/table,
/obj/item/weapon/storage/box/monkeycubes,
/obj/item/weapon/storage/box/monkeycubes,
/turf/open/floor/plasteel/whitepurple/side,
/area/toxins/xenobiology)
-"btg" = (
+"brw" = (
/obj/structure/table,
/obj/item/weapon/extinguisher{
pixel_x = 4;
@@ -35686,7 +34999,7 @@
/obj/item/weapon/extinguisher,
/turf/open/floor/plasteel/whitepurple/side,
/area/toxins/xenobiology)
-"bth" = (
+"brx" = (
/obj/structure/reagent_dispensers/watertank,
/obj/machinery/requests_console{
department = "Science";
@@ -35699,7 +35012,7 @@
dir = 6
},
/area/toxins/xenobiology)
-"bti" = (
+"bry" = (
/obj/machinery/door/poddoor/preopen{
id = "xenobio1";
name = "containment blast door"
@@ -35713,7 +35026,7 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/engine,
/area/toxins/xenobiology)
-"btj" = (
+"brz" = (
/obj/machinery/door/poddoor/preopen{
id = "xenobio1";
name = "containment blast door"
@@ -35733,7 +35046,7 @@
},
/turf/open/floor/engine,
/area/toxins/xenobiology)
-"btk" = (
+"brA" = (
/obj/machinery/door/poddoor/preopen{
id = "xenobio1";
name = "containment blast door"
@@ -35747,7 +35060,7 @@
/obj/structure/cable,
/turf/open/floor/engine,
/area/toxins/xenobiology)
-"btl" = (
+"brB" = (
/obj/machinery/door/poddoor/preopen{
id = "xenobio2";
name = "containment blast door"
@@ -35761,7 +35074,7 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/engine,
/area/toxins/xenobiology)
-"btm" = (
+"brC" = (
/obj/machinery/door/poddoor/preopen{
id = "xenobio3";
name = "containment blast door"
@@ -35781,7 +35094,7 @@
},
/turf/open/floor/engine,
/area/toxins/xenobiology)
-"btn" = (
+"brD" = (
/obj/machinery/door/poddoor/preopen{
id = "xenobio2";
name = "containment blast door"
@@ -35795,7 +35108,7 @@
},
/turf/open/floor/engine,
/area/toxins/xenobiology)
-"bto" = (
+"brE" = (
/obj/machinery/door/poddoor/preopen{
id = "xenobio3";
name = "containment blast door"
@@ -35809,7 +35122,7 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/engine,
/area/toxins/xenobiology)
-"btp" = (
+"brF" = (
/obj/machinery/door/poddoor/preopen{
id = "xenobio3";
name = "containment blast door"
@@ -35829,7 +35142,7 @@
},
/turf/open/floor/engine,
/area/toxins/xenobiology)
-"btq" = (
+"brG" = (
/obj/machinery/door/poddoor/preopen{
id = "xenobio3";
name = "containment blast door"
@@ -35843,7 +35156,7 @@
/obj/structure/cable,
/turf/open/floor/engine,
/area/toxins/xenobiology)
-"btr" = (
+"brH" = (
/obj/machinery/door/poddoor/preopen{
id = "xenobio4";
name = "containment blast door"
@@ -35857,7 +35170,7 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/engine,
/area/toxins/xenobiology)
-"bts" = (
+"brI" = (
/obj/machinery/door/poddoor/preopen{
id = "xenobio4";
name = "containment blast door"
@@ -35877,7 +35190,7 @@
},
/turf/open/floor/engine,
/area/toxins/xenobiology)
-"btt" = (
+"brJ" = (
/obj/machinery/door/poddoor/preopen{
id = "xenobio4";
name = "containment blast door"
@@ -35891,7 +35204,7 @@
},
/turf/open/floor/engine,
/area/toxins/xenobiology)
-"btu" = (
+"brK" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -35906,7 +35219,7 @@
},
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"btv" = (
+"brL" = (
/obj/structure/cable{
icon_state = "1-8"
},
@@ -35916,10 +35229,10 @@
},
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"btw" = (
+"brM" = (
/turf/closed/wall,
/area/maintenance/asmaint2)
-"btx" = (
+"brN" = (
/obj/structure/table,
/obj/effect/spawner/lootdrop/maintenance{
lootcount = 2;
@@ -35927,14 +35240,14 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"bty" = (
+"brO" = (
/obj/structure/chair/stool,
/turf/open/floor/plating{
burnt = 1;
icon_state = "panelscorched"
},
/area/maintenance/aft)
-"btz" = (
+"brP" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -35948,7 +35261,7 @@
icon_state = "platingdmg3"
},
/area/maintenance/aft)
-"btA" = (
+"brQ" = (
/obj/machinery/light{
dir = 8
},
@@ -35962,7 +35275,7 @@
/mob/living/carbon/monkey,
/turf/open/floor/grass,
/area/medical/genetics)
-"btB" = (
+"brR" = (
/obj/machinery/door/window/eastleft{
name = "Monkey Pen";
req_one_access_txt = "9"
@@ -35970,19 +35283,19 @@
/obj/item/weapon/reagent_containers/food/snacks/grown/banana,
/turf/open/floor/grass,
/area/medical/genetics)
-"btC" = (
+"brS" = (
/turf/open/floor/plasteel/whitepurple/side{
dir = 8
},
/area/medical/genetics)
-"btD" = (
+"brT" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
},
/turf/open/floor/plasteel/white,
/area/medical/genetics)
-"btE" = (
+"brU" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -35993,13 +35306,13 @@
},
/turf/open/floor/plasteel/white,
/area/medical/genetics)
-"btF" = (
+"brV" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/white,
/area/medical/genetics)
-"btG" = (
+"brW" = (
/obj/structure/sink{
dir = 4;
icon_state = "sink";
@@ -36013,7 +35326,7 @@
dir = 4
},
/area/medical/genetics)
-"btH" = (
+"brX" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
@@ -36023,7 +35336,7 @@
},
/turf/open/floor/plasteel/whitegreen/side,
/area/medical/medbay3)
-"btI" = (
+"brY" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -36034,13 +35347,13 @@
},
/turf/open/floor/plasteel/whitegreen/side,
/area/medical/medbay3)
-"btJ" = (
+"brZ" = (
/obj/structure/chair{
dir = 8
},
/turf/open/floor/plasteel/whitegreen/side,
/area/medical/medbay3)
-"btK" = (
+"bsa" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/airalarm{
dir = 4;
@@ -36051,23 +35364,23 @@
dir = 8
},
/area/medical/medbay)
-"btL" = (
+"bsb" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/whiteblue/corner,
/area/medical/medbay)
-"btM" = (
+"bsc" = (
/obj/structure/sign/bluecross_2,
/turf/closed/wall,
/area/medical/cmo{
name = "Chief Medical Office"
})
-"btN" = (
+"bsd" = (
/obj/machinery/suit_storage_unit/cmo,
/turf/open/floor/plasteel/cmo,
/area/medical/cmo{
name = "Chief Medical Office"
})
-"btO" = (
+"bse" = (
/obj/machinery/computer/crew,
/obj/machinery/light{
dir = 1
@@ -36084,13 +35397,13 @@
/area/medical/cmo{
name = "Chief Medical Office"
})
-"btP" = (
+"bsf" = (
/obj/machinery/computer/med_data,
/turf/open/floor/plasteel/cmo,
/area/medical/cmo{
name = "Chief Medical Office"
})
-"btQ" = (
+"bsg" = (
/obj/machinery/computer/card/minor/cmo,
/obj/machinery/airalarm{
pixel_y = 22
@@ -36099,7 +35412,7 @@
/area/medical/cmo{
name = "Chief Medical Office"
})
-"btR" = (
+"bsh" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk,
/obj/machinery/button/door{
@@ -36119,7 +35432,7 @@
/area/medical/cmo{
name = "Chief Medical Office"
})
-"btS" = (
+"bsi" = (
/obj/structure/closet/wardrobe/chemistry_white,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
@@ -36128,7 +35441,7 @@
dir = 10
},
/area/medical/chemistry)
-"btT" = (
+"bsj" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -36140,7 +35453,7 @@
},
/turf/open/floor/plasteel/whiteyellow/side,
/area/medical/chemistry)
-"btU" = (
+"bsk" = (
/obj/structure/table/glass,
/obj/machinery/reagentgrinder,
/obj/machinery/light,
@@ -36150,7 +35463,7 @@
},
/turf/open/floor/plasteel/whiteyellow/side,
/area/medical/chemistry)
-"btV" = (
+"bsl" = (
/obj/structure/table/glass,
/obj/item/stack/sheet/mineral/plasma{
amount = 2;
@@ -36165,13 +35478,13 @@
dir = 6
},
/area/medical/chemistry)
-"btW" = (
+"bsm" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
-"btX" = (
+"bsn" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
@@ -36183,14 +35496,14 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
-"btY" = (
+"bso" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
-"btZ" = (
+"bsp" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -36204,7 +35517,7 @@
dir = 4
},
/area/hallway/primary/aft)
-"bua" = (
+"bsq" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/poddoor/shutters/preopen{
@@ -36216,7 +35529,7 @@
},
/turf/open/floor/plating,
/area/toxins/explab)
-"bub" = (
+"bsr" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -36227,14 +35540,14 @@
},
/turf/open/floor/plasteel/purple/side,
/area/toxins/explab)
-"buc" = (
+"bss" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9;
pixel_y = 0
},
/turf/open/floor/plasteel/purple/side,
/area/toxins/explab)
-"bud" = (
+"bst" = (
/obj/structure/table,
/obj/machinery/light,
/obj/item/weapon/stock_parts/console_screen,
@@ -36248,14 +35561,14 @@
/obj/item/device/multitool,
/turf/open/floor/plasteel/purple/side,
/area/toxins/explab)
-"bue" = (
+"bsu" = (
/obj/structure/table,
/obj/machinery/cell_charger,
/obj/item/weapon/stock_parts/cell/high/plus,
/obj/item/weapon/stock_parts/cell/high/plus,
/turf/open/floor/plasteel/purple/side,
/area/toxins/explab)
-"buf" = (
+"bsv" = (
/obj/structure/table,
/obj/item/weapon/stock_parts/matter_bin,
/obj/item/weapon/stock_parts/matter_bin,
@@ -36268,7 +35581,7 @@
},
/turf/open/floor/plasteel/purple/side,
/area/toxins/explab)
-"bug" = (
+"bsw" = (
/turf/open/floor/plasteel/white/side{
tag = "icon-whitehall (NORTH)";
icon_state = "whitehall";
@@ -36277,7 +35590,7 @@
/area/medical/research{
name = "Research Division"
})
-"buh" = (
+"bsx" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -36289,12 +35602,12 @@
/area/medical/research{
name = "Research Division"
})
-"bui" = (
+"bsy" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/security/checkpoint/science)
-"buj" = (
+"bsz" = (
/obj/machinery/door/airlock/glass_security{
name = "Research Security Post";
req_access_txt = "63"
@@ -36307,14 +35620,14 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/whitered,
/area/security/checkpoint/science)
-"buk" = (
+"bsA" = (
/turf/closed/wall/r_wall,
/area/toxins/storage)
-"bul" = (
+"bsB" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall/r_wall,
/area/toxins/storage)
-"bum" = (
+"bsC" = (
/obj/machinery/light{
dir = 8
},
@@ -36322,25 +35635,25 @@
/area/medical/research{
name = "Research Division"
})
-"bun" = (
+"bsD" = (
/turf/closed/wall,
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"buo" = (
+"bsE" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall,
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"bup" = (
+"bsF" = (
/obj/structure/disposaloutlet,
/obj/structure/disposalpipe/trunk{
dir = 1
},
/turf/open/floor/engine,
/area/toxins/xenobiology)
-"buq" = (
+"bsG" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -36349,7 +35662,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"bur" = (
+"bsH" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1;
@@ -36358,7 +35671,7 @@
},
/turf/open/floor/grass,
/area/medical/genetics)
-"bus" = (
+"bsI" = (
/obj/structure/window/reinforced{
dir = 4;
layer = 2.9
@@ -36369,7 +35682,7 @@
/mob/living/carbon/monkey,
/turf/open/floor/grass,
/area/medical/genetics)
-"but" = (
+"bsJ" = (
/obj/structure/table,
/obj/item/weapon/reagent_containers/glass/beaker,
/obj/item/weapon/reagent_containers/dropper,
@@ -36381,7 +35694,7 @@
dir = 8
},
/area/medical/genetics)
-"buu" = (
+"bsK" = (
/obj/structure/chair/stool,
/obj/effect/landmark/start{
name = "Geneticist"
@@ -36391,7 +35704,7 @@
},
/turf/open/floor/plasteel/white,
/area/medical/genetics)
-"buv" = (
+"bsL" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -36402,7 +35715,7 @@
},
/turf/open/floor/plasteel/white,
/area/medical/genetics)
-"buw" = (
+"bsM" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
on = 1;
@@ -36411,7 +35724,7 @@
},
/turf/open/floor/plasteel/white,
/area/medical/genetics)
-"bux" = (
+"bsN" = (
/obj/machinery/shower{
dir = 8
},
@@ -36426,10 +35739,10 @@
dir = 4
},
/area/medical/genetics)
-"buy" = (
+"bsO" = (
/turf/closed/wall,
/area/medical/virology)
-"buz" = (
+"bsP" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/virology{
autoclose = 0;
@@ -36456,11 +35769,11 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white,
/area/medical/virology)
-"buA" = (
+"bsQ" = (
/obj/structure/sign/biohazard,
/turf/closed/wall,
/area/medical/virology)
-"buB" = (
+"bsR" = (
/obj/structure/table,
/obj/item/weapon/storage/box/beakers{
pixel_x = 2;
@@ -36474,7 +35787,7 @@
dir = 1
},
/area/medical/medbay)
-"buC" = (
+"bsS" = (
/obj/structure/table,
/obj/item/weapon/storage/firstaid/brute{
pixel_x = 3;
@@ -36489,7 +35802,7 @@
dir = 1
},
/area/medical/medbay)
-"buD" = (
+"bsT" = (
/obj/structure/table,
/obj/item/weapon/storage/firstaid/fire{
pixel_x = 3;
@@ -36504,7 +35817,7 @@
dir = 1
},
/area/medical/medbay)
-"buE" = (
+"bsU" = (
/obj/structure/table,
/obj/item/weapon/storage/firstaid/toxin{
pixel_x = 3;
@@ -36519,7 +35832,7 @@
dir = 1
},
/area/medical/medbay)
-"buF" = (
+"bsV" = (
/obj/structure/table,
/obj/item/weapon/storage/firstaid/o2{
pixel_x = 3;
@@ -36534,7 +35847,7 @@
dir = 1
},
/area/medical/medbay)
-"buG" = (
+"bsW" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8;
initialize_directions = 11
@@ -36543,7 +35856,7 @@
dir = 8
},
/area/medical/medbay)
-"buH" = (
+"bsX" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
@@ -36553,18 +35866,18 @@
},
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"buI" = (
+"bsY" = (
/turf/open/floor/plasteel/cmo,
/area/medical/cmo{
name = "Chief Medical Office"
})
-"buJ" = (
+"bsZ" = (
/mob/living/simple_animal/pet/cat/Runtime,
/turf/open/floor/plasteel/cmo,
/area/medical/cmo{
name = "Chief Medical Office"
})
-"buK" = (
+"bta" = (
/obj/effect/landmark/start{
name = "Chief Medical Officer"
},
@@ -36581,7 +35894,7 @@
/area/medical/cmo{
name = "Chief Medical Office"
})
-"buL" = (
+"btb" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -36589,7 +35902,7 @@
/area/medical/cmo{
name = "Chief Medical Office"
})
-"buM" = (
+"btc" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/camera{
c_tag = "Chief Medical Office";
@@ -36612,7 +35925,7 @@
/area/medical/cmo{
name = "Chief Medical Office"
})
-"buN" = (
+"btd" = (
/obj/machinery/door/airlock/maintenance{
name = "Chemistry Lab Maintenance";
req_access_txt = "5; 33"
@@ -36626,10 +35939,10 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/medical/chemistry)
-"buO" = (
+"bte" = (
/turf/closed/wall/r_wall,
/area/toxins/server)
-"buP" = (
+"btf" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Server Room";
@@ -36643,7 +35956,7 @@
},
/turf/open/floor/plasteel/black,
/area/toxins/server)
-"buQ" = (
+"btg" = (
/obj/machinery/atmospherics/components/unary/tank/air{
dir = 1
},
@@ -36651,15 +35964,15 @@
/area/maintenance/port{
name = "Monastery Maintenance"
})
-"buR" = (
+"bth" = (
/turf/closed/wall,
/area/crew_quarters/hor)
-"buS" = (
+"bti" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/crew_quarters/hor)
-"buT" = (
+"btj" = (
/obj/machinery/door/airlock/glass_command{
name = "Research Director";
req_access_txt = "30"
@@ -36673,13 +35986,13 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/crew_quarters/hor)
-"buU" = (
+"btk" = (
/obj/structure/filingcabinet,
/turf/open/floor/plasteel/red/side{
dir = 9
},
/area/security/checkpoint/science)
-"buV" = (
+"btl" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -36690,7 +36003,7 @@
dir = 1
},
/area/security/checkpoint/science)
-"buW" = (
+"btm" = (
/obj/structure/closet/wardrobe/red,
/obj/machinery/airalarm{
dir = 8;
@@ -36701,14 +36014,14 @@
dir = 5
},
/area/security/checkpoint/science)
-"buX" = (
+"btn" = (
/obj/machinery/portable_atmospherics/canister/toxins,
+/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel{
name = "floor"
},
-/obj/effect/turf_decal/delivery,
/area/toxins/storage)
-"buY" = (
+"bto" = (
/obj/machinery/portable_atmospherics/canister/toxins,
/obj/machinery/light{
dir = 1
@@ -36718,18 +36031,18 @@
dir = 2;
network = list("SS13","RD")
},
+/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel{
name = "floor"
},
-/obj/effect/turf_decal/delivery,
/area/toxins/storage)
-"buZ" = (
-/turf/open/floor/plasteel,
+"btp" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel,
/area/toxins/storage)
-"bva" = (
+"btq" = (
/obj/machinery/portable_atmospherics/scrubber/huge,
/obj/machinery/power/apc{
cell_type = 5000;
@@ -36746,27 +36059,27 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/toxins/storage)
-"bvb" = (
+"btr" = (
/obj/machinery/portable_atmospherics/scrubber/huge,
/obj/machinery/airalarm{
pixel_y = 22
},
/turf/open/floor/plasteel,
/area/toxins/storage)
-"bvc" = (
+"bts" = (
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/white,
/area/medical/research{
name = "Research Division"
})
-"bvd" = (
+"btt" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white,
/area/medical/research{
name = "Research Division"
})
-"bve" = (
+"btu" = (
/obj/structure/closet/bombcloset,
/obj/machinery/firealarm{
dir = 8;
@@ -36776,13 +36089,13 @@
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"bvf" = (
+"btv" = (
/obj/structure/closet/bombcloset,
/turf/open/floor/plasteel/white,
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"bvg" = (
+"btw" = (
/obj/machinery/portable_atmospherics/scrubber,
/obj/machinery/light{
dir = 1
@@ -36794,7 +36107,7 @@
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"bvh" = (
+"btx" = (
/obj/machinery/portable_atmospherics/pump,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/item/device/radio/intercom{
@@ -36807,13 +36120,13 @@
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"bvi" = (
+"bty" = (
/obj/machinery/portable_atmospherics/canister,
/turf/open/floor/plasteel/white,
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"bvj" = (
+"btz" = (
/obj/machinery/portable_atmospherics/canister,
/obj/structure/cable{
icon_state = "0-2";
@@ -36824,14 +36137,14 @@
name = "Toxins Lab APC";
pixel_y = 25
},
-/turf/open/floor/plasteel/white,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plasteel/white,
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"bvk" = (
+"btA" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible,
/obj/machinery/camera{
c_tag = "Toxins Lab";
@@ -36842,20 +36155,20 @@
/obj/structure/sign/poster{
pixel_y = 32
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel,
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"bvl" = (
+"btB" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible,
/turf/open/floor/plasteel,
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"bvm" = (
+"btC" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible,
/obj/structure/sign/poster{
pixel_y = 32
@@ -36863,31 +36176,31 @@
/obj/structure/extinguisher_cabinet{
pixel_x = 24
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plasteel,
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"bvn" = (
+"btD" = (
/obj/effect/landmark{
name = "revenantspawn"
},
/mob/living/simple_animal/slime,
/turf/open/floor/engine,
/area/toxins/xenobiology)
-"bvo" = (
+"btE" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/port{
name = "Monastery Maintenance"
})
-"bvp" = (
+"btF" = (
/turf/open/floor/plating,
/area/maintenance/aft)
-"bvq" = (
+"btG" = (
/obj/structure/table,
/obj/item/weapon/pen,
/obj/item/device/radio/intercom{
@@ -36905,11 +36218,11 @@
dir = 10
},
/area/medical/genetics)
-"bvr" = (
+"btH" = (
/obj/machinery/computer/scan_consolenew,
/turf/open/floor/plasteel/whitepurple/side,
/area/medical/genetics)
-"bvs" = (
+"btI" = (
/obj/machinery/dna_scannernew,
/obj/machinery/camera{
c_tag = "Genetics";
@@ -36920,7 +36233,7 @@
},
/turf/open/floor/plasteel/whitepurple/side,
/area/medical/genetics)
-"bvt" = (
+"btJ" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -36931,7 +36244,7 @@
dir = 8
},
/area/medical/genetics)
-"bvu" = (
+"btK" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -36939,7 +36252,7 @@
},
/turf/open/floor/plasteel/white,
/area/medical/genetics)
-"bvv" = (
+"btL" = (
/obj/machinery/power/apc{
dir = 4;
name = "Genetics APC";
@@ -36953,7 +36266,7 @@
dir = 4
},
/area/medical/genetics)
-"bvw" = (
+"btM" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1;
@@ -36963,12 +36276,12 @@
/obj/machinery/shower{
dir = 4
},
-/turf/open/floor/plasteel/white,
/obj/effect/turf_decal/stripes/line{
dir = 9
},
+/turf/open/floor/plasteel/white,
/area/medical/virology)
-"bvx" = (
+"btN" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -36979,19 +36292,19 @@
},
/turf/open/floor/plasteel/white,
/area/medical/virology)
-"bvy" = (
+"btO" = (
/obj/structure/closet/emcloset,
/obj/machinery/camera{
c_tag = "Virology Airlock";
dir = 2;
network = list("SS13")
},
-/turf/open/floor/plasteel/white,
/obj/effect/turf_decal/stripes/line{
dir = 5
},
+/turf/open/floor/plasteel/white,
/area/medical/virology)
-"bvz" = (
+"btP" = (
/obj/structure/sink{
icon_state = "sink";
dir = 8;
@@ -37009,7 +36322,7 @@
},
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bvA" = (
+"btQ" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1;
@@ -37018,7 +36331,7 @@
},
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bvB" = (
+"btR" = (
/obj/machinery/door/airlock/glass_medical{
id_tag = null;
name = "Medbay Storage";
@@ -37029,7 +36342,7 @@
},
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bvC" = (
+"btS" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
@@ -37037,14 +36350,14 @@
dir = 8
},
/area/medical/medbay)
-"bvD" = (
+"btT" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
},
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bvE" = (
+"btU" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -37056,7 +36369,7 @@
dir = 4
},
/area/medical/medbay)
-"bvF" = (
+"btV" = (
/obj/machinery/door/airlock/glass_command{
name = "Chief Medical Office";
req_access_txt = "40"
@@ -37071,7 +36384,7 @@
/area/medical/cmo{
name = "Chief Medical Office"
})
-"bvG" = (
+"btW" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -37082,7 +36395,7 @@
/area/medical/cmo{
name = "Chief Medical Office"
})
-"bvH" = (
+"btX" = (
/obj/structure/table/glass,
/obj/item/weapon/paper_bin{
pixel_x = -2;
@@ -37098,7 +36411,7 @@
/area/medical/cmo{
name = "Chief Medical Office"
})
-"bvI" = (
+"btY" = (
/obj/structure/table/glass,
/obj/item/weapon/folder/white,
/obj/item/clothing/glasses/hud/health,
@@ -37109,7 +36422,7 @@
/area/medical/cmo{
name = "Chief Medical Office"
})
-"bvJ" = (
+"btZ" = (
/obj/structure/table/glass,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -37120,7 +36433,7 @@
/area/medical/cmo{
name = "Chief Medical Office"
})
-"bvK" = (
+"bua" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -37138,7 +36451,7 @@
/area/medical/cmo{
name = "Chief Medical Office"
})
-"bvL" = (
+"bub" = (
/obj/machinery/door/airlock/maintenance{
name = "CMO Maintenance";
req_access_txt = "40"
@@ -37156,7 +36469,7 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"bvM" = (
+"buc" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -37170,7 +36483,7 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"bvN" = (
+"bud" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -37189,7 +36502,7 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bvO" = (
+"bue" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -37206,7 +36519,7 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"bvP" = (
+"buf" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -37221,7 +36534,7 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"bvQ" = (
+"bug" = (
/obj/machinery/light{
dir = 4;
icon_state = "tube1"
@@ -37229,7 +36542,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/yellow/corner,
/area/hallway/primary/aft)
-"bvR" = (
+"buh" = (
/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
target_temperature = 80;
dir = 2;
@@ -37237,7 +36550,7 @@
},
/turf/open/floor/plasteel/black,
/area/toxins/server)
-"bvS" = (
+"bui" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -37245,14 +36558,14 @@
},
/turf/open/floor/plasteel/black,
/area/toxins/server)
-"bvT" = (
+"buj" = (
/obj/machinery/r_n_d/server/core,
/turf/open/floor/bluegrid{
name = "Server Base";
initial_gas_mix = "n2=500;TEMP=80"
},
/area/toxins/server)
-"bvU" = (
+"buk" = (
/obj/structure/closet/secure_closet/RD,
/obj/machinery/airalarm{
pixel_y = 22
@@ -37261,7 +36574,7 @@
dir = 9
},
/area/crew_quarters/hor)
-"bvV" = (
+"bul" = (
/obj/machinery/power/apc{
dir = 1;
name = "RD Office APC";
@@ -37276,7 +36589,7 @@
dir = 1
},
/area/crew_quarters/hor)
-"bvW" = (
+"bum" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -37286,7 +36599,7 @@
dir = 1
},
/area/crew_quarters/hor)
-"bvX" = (
+"bun" = (
/obj/structure/cable{
icon_state = "1-8"
},
@@ -37296,7 +36609,7 @@
dir = 1
},
/area/crew_quarters/hor)
-"bvY" = (
+"buo" = (
/obj/item/weapon/twohanded/required/kirbyplants/dead,
/obj/machinery/button/door{
id = "rndshutters";
@@ -37309,7 +36622,7 @@
dir = 5
},
/area/crew_quarters/hor)
-"bvZ" = (
+"bup" = (
/obj/machinery/light{
dir = 8
},
@@ -37328,7 +36641,7 @@
dir = 8
},
/area/security/checkpoint/science)
-"bwa" = (
+"buq" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -37340,7 +36653,7 @@
},
/turf/open/floor/plasteel,
/area/security/checkpoint/science)
-"bwb" = (
+"bur" = (
/obj/machinery/power/apc{
dir = 4;
name = "Science Security APC";
@@ -37355,22 +36668,22 @@
dir = 4
},
/area/security/checkpoint/science)
-"bwc" = (
+"bus" = (
/obj/machinery/portable_atmospherics/canister/nitrogen,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
/area/toxins/storage)
-"bwd" = (
+"but" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel,
/area/toxins/storage)
-"bwe" = (
+"buu" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -37382,7 +36695,7 @@
},
/turf/open/floor/plasteel,
/area/toxins/storage)
-"bwf" = (
+"buv" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1;
@@ -37391,13 +36704,13 @@
},
/turf/open/floor/plasteel,
/area/toxins/storage)
-"bwg" = (
+"buw" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall/r_wall,
/area/toxins/storage)
-"bwh" = (
+"bux" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -37407,7 +36720,7 @@
/area/medical/research{
name = "Research Division"
})
-"bwi" = (
+"buy" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/white/side{
dir = 8
@@ -37415,7 +36728,7 @@
/area/medical/research{
name = "Research Division"
})
-"bwj" = (
+"buz" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -37425,46 +36738,46 @@
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"bwk" = (
+"buA" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel,
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"bwl" = (
+"buB" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel,
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"bwm" = (
-/turf/open/floor/plasteel,
+"buC" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel,
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"bwn" = (
+"buD" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel,
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"bwo" = (
+"buE" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -37472,25 +36785,25 @@
pixel_y = 0;
tag = ""
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 5
},
+/turf/open/floor/plasteel,
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"bwp" = (
+"buF" = (
/obj/machinery/atmospherics/components/trinary/mixer/flipped{
dir = 1
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel,
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"bwq" = (
+"buG" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 9
},
@@ -37498,7 +36811,7 @@
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"bwr" = (
+"buH" = (
/obj/machinery/atmospherics/pipe/simple/general/visible,
/obj/machinery/requests_console{
department = "Science";
@@ -37507,54 +36820,54 @@
pixel_x = 32;
pixel_y = 0
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plasteel,
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"bws" = (
+"buI" = (
/obj/machinery/light,
/turf/open/floor/engine,
/area/toxins/xenobiology)
-"bwt" = (
+"buJ" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"bwu" = (
+"buK" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bwv" = (
+"buL" = (
/obj/structure/closet/crate/medical,
/obj/item/stack/medical/ointment,
/obj/item/stack/medical/bruise_pack,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bww" = (
+"buM" = (
/obj/item/trash/candy,
/obj/effect/decal/cleanable/deadcockroach,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bwx" = (
+"buN" = (
/obj/item/weapon/extinguisher,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bwy" = (
+"buO" = (
/obj/item/chair,
/obj/item/weapon/cigbutt/roach,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bwz" = (
+"buP" = (
/obj/structure/closet/secure_closet/medical1,
/turf/open/floor/plasteel/whitepurple/side{
dir = 10
},
/area/medical/genetics)
-"bwA" = (
+"buQ" = (
/obj/structure/closet/secure_closet/personal/patient,
/obj/machinery/light,
/obj/machinery/airalarm{
@@ -37563,22 +36876,22 @@
},
/turf/open/floor/plasteel/whitepurple/side,
/area/medical/genetics)
-"bwB" = (
+"buR" = (
/obj/structure/closet/wardrobe/genetics_white,
/turf/open/floor/plasteel/whitepurple/side{
dir = 6
},
/area/medical/genetics)
-"bwC" = (
+"buS" = (
/obj/machinery/shower{
dir = 4
},
-/turf/open/floor/plasteel/white,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel/white,
/area/medical/virology)
-"bwD" = (
+"buT" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -37587,18 +36900,18 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white,
/area/medical/virology)
-"bwE" = (
+"buU" = (
/obj/structure/closet/l3closet,
/obj/machinery/light{
dir = 4;
icon_state = "tube1"
},
-/turf/open/floor/plasteel/white,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plasteel/white,
/area/medical/virology)
-"bwF" = (
+"buV" = (
/obj/machinery/shower{
tag = "icon-shower (EAST)";
icon_state = "shower";
@@ -37615,7 +36928,7 @@
},
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bwG" = (
+"buW" = (
/obj/effect/landmark/start{
name = "Medical Doctor"
},
@@ -37626,7 +36939,7 @@
},
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bwH" = (
+"buX" = (
/obj/machinery/door/airlock/glass_medical{
id_tag = null;
name = "Medbay Storage";
@@ -37637,7 +36950,7 @@
},
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bwI" = (
+"buY" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -37646,7 +36959,7 @@
dir = 8
},
/area/medical/medbay)
-"bwJ" = (
+"buZ" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4;
initialize_directions = 11
@@ -37656,7 +36969,7 @@
dir = 4
},
/area/medical/medbay)
-"bwK" = (
+"bva" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
@@ -37664,7 +36977,7 @@
/area/medical/cmo{
name = "Chief Medical Office"
})
-"bwL" = (
+"bvb" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -37672,7 +36985,7 @@
/area/medical/cmo{
name = "Chief Medical Office"
})
-"bwM" = (
+"bvc" = (
/obj/structure/chair/office/light{
dir = 8
},
@@ -37683,7 +36996,7 @@
/area/medical/cmo{
name = "Chief Medical Office"
})
-"bwN" = (
+"bvd" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
layer = 2.4;
@@ -37693,7 +37006,7 @@
/area/medical/cmo{
name = "Chief Medical Office"
})
-"bwO" = (
+"bve" = (
/obj/machinery/power/apc{
dir = 4;
name = "CMO's Office APC";
@@ -37705,10 +37018,10 @@
/area/medical/cmo{
name = "Chief Medical Office"
})
-"bwP" = (
+"bvf" = (
/turf/closed/wall,
/area/medical/exam_room)
-"bwQ" = (
+"bvg" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -37718,7 +37031,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bwR" = (
+"bvh" = (
/obj/machinery/power/apc{
dir = 8;
name = "Server Room APC";
@@ -37734,7 +37047,7 @@
},
/turf/open/floor/plasteel/black,
/area/toxins/server)
-"bwS" = (
+"bvi" = (
/obj/structure/cable{
icon_state = "1-8"
},
@@ -37748,7 +37061,7 @@
},
/turf/open/floor/plasteel/black,
/area/toxins/server)
-"bwT" = (
+"bvj" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/general/visible{
@@ -37760,7 +37073,7 @@
},
/turf/open/floor/plating,
/area/toxins/server)
-"bwU" = (
+"bvk" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
external_pressure_bound = 140;
@@ -37772,20 +37085,20 @@
initial_gas_mix = "n2=500;TEMP=80"
},
/area/toxins/server)
-"bwV" = (
+"bvl" = (
/obj/machinery/computer/robotics,
/turf/open/floor/plasteel/whitepurple/side{
dir = 8
},
/area/crew_quarters/hor)
-"bwW" = (
+"bvm" = (
/turf/open/floor/plasteel/white,
/area/crew_quarters/hor)
-"bwX" = (
+"bvn" = (
/obj/structure/displaycase/labcage,
/turf/open/floor/plasteel/white,
/area/crew_quarters/hor)
-"bwY" = (
+"bvo" = (
/obj/structure/disposalpipe/segment{
dir = 1;
icon_state = "pipe-c"
@@ -37798,7 +37111,7 @@
},
/turf/open/floor/plasteel/white,
/area/crew_quarters/hor)
-"bwZ" = (
+"bvp" = (
/obj/machinery/disposal/bin,
/obj/machinery/light{
dir = 4;
@@ -37811,7 +37124,7 @@
dir = 4
},
/area/crew_quarters/hor)
-"bxa" = (
+"bvq" = (
/obj/item/weapon/pen,
/obj/structure/table,
/obj/structure/reagent_dispensers/peppertank{
@@ -37828,12 +37141,12 @@
dir = 8
},
/area/security/checkpoint/science)
-"bxb" = (
+"bvr" = (
/obj/structure/chair/office/dark,
/obj/effect/landmark/start/depsec/science,
/turf/open/floor/plasteel,
/area/security/checkpoint/science)
-"bxc" = (
+"bvs" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
on = 1
@@ -37842,12 +37155,12 @@
dir = 4
},
/area/security/checkpoint/science)
-"bxd" = (
+"bvt" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
/area/toxins/storage)
-"bxe" = (
+"bvu" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -37861,7 +37174,7 @@
},
/turf/open/floor/plasteel,
/area/toxins/storage)
-"bxf" = (
+"bvv" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -37869,7 +37182,7 @@
},
/turf/open/floor/plasteel,
/area/toxins/storage)
-"bxg" = (
+"bvw" = (
/obj/machinery/door/firedoor/heavy,
/obj/machinery/door/airlock/research{
name = "Toxins Storage";
@@ -37882,7 +37195,7 @@
},
/turf/open/floor/plasteel,
/area/toxins/storage)
-"bxh" = (
+"bvx" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -37894,7 +37207,7 @@
/area/medical/research{
name = "Research Division"
})
-"bxi" = (
+"bvy" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -37905,7 +37218,7 @@
/area/medical/research{
name = "Research Division"
})
-"bxj" = (
+"bvz" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -37917,7 +37230,7 @@
/area/medical/research{
name = "Research Division"
})
-"bxk" = (
+"bvA" = (
/obj/machinery/door/firedoor/heavy,
/obj/machinery/door/airlock/glass_research{
name = "Toxins Lab";
@@ -37932,7 +37245,7 @@
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"bxl" = (
+"bvB" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -37942,7 +37255,7 @@
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"bxm" = (
+"bvC" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -37953,7 +37266,7 @@
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"bxn" = (
+"bvD" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -37964,7 +37277,7 @@
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"bxo" = (
+"bvE" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -37977,25 +37290,25 @@
d2 = 8;
icon_state = "2-8"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plasteel,
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"bxp" = (
+"bvF" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 8
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel,
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"bxq" = (
+"bvG" = (
/obj/machinery/atmospherics/components/binary/valve{
dir = 4
},
@@ -38003,7 +37316,7 @@
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"bxr" = (
+"bvH" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 4
},
@@ -38014,24 +37327,24 @@
/obj/machinery/light{
dir = 4
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plasteel,
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"bxs" = (
+"bvI" = (
/turf/closed/wall,
/area/toxins/mineral_storeroom)
-"bxt" = (
+"bvJ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall,
/area/toxins/mineral_storeroom)
-"bxu" = (
+"bvK" = (
/turf/closed/wall/r_wall,
/area/toxins/mineral_storeroom)
-"bxv" = (
+"bvL" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -38041,13 +37354,13 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"bxw" = (
+"bvM" = (
/obj/structure/closet,
/obj/item/stack/cable_coil/random,
/obj/item/weapon/electronics/airalarm,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bxx" = (
+"bvN" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -38055,7 +37368,7 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"bxy" = (
+"bvO" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -38063,10 +37376,10 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"bxz" = (
+"bvP" = (
/turf/closed/wall/r_wall,
/area/medical/virology)
-"bxA" = (
+"bvQ" = (
/obj/structure/sink{
icon_state = "sink";
dir = 8;
@@ -38077,12 +37390,12 @@
dir = 4;
on = 1
},
-/turf/open/floor/plasteel/white,
/obj/effect/turf_decal/stripes/line{
dir = 10
},
+/turf/open/floor/plasteel/white,
/area/medical/virology)
-"bxB" = (
+"bvR" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -38096,27 +37409,27 @@
},
/turf/open/floor/plasteel/white,
/area/medical/virology)
-"bxC" = (
+"bvS" = (
/obj/structure/closet/l3closet,
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
tag = "icon-intact (SOUTHWEST)";
icon_state = "intact";
dir = 10
},
-/turf/open/floor/plasteel/white,
/obj/effect/turf_decal/stripes/line{
dir = 6
},
+/turf/open/floor/plasteel/white,
/area/medical/virology)
-"bxD" = (
+"bvT" = (
/obj/machinery/vending/medical,
/turf/open/floor/plasteel/whiteblue/side,
/area/medical/medbay)
-"bxE" = (
+"bvU" = (
/obj/structure/closet/secure_closet/medical3,
/turf/open/floor/plasteel/whiteblue/side,
/area/medical/medbay)
-"bxF" = (
+"bvV" = (
/obj/structure/closet/secure_closet/medical3,
/obj/machinery/light,
/obj/machinery/camera{
@@ -38126,11 +37439,11 @@
},
/turf/open/floor/plasteel/whiteblue/side,
/area/medical/medbay)
-"bxG" = (
+"bvW" = (
/obj/structure/closet/wardrobe/white/medical,
/turf/open/floor/plasteel/whiteblue/side,
/area/medical/medbay)
-"bxH" = (
+"bvX" = (
/obj/structure/table,
/obj/item/weapon/storage/belt/medical{
pixel_x = 0;
@@ -38150,32 +37463,32 @@
/obj/item/weapon/reagent_containers/spray/cleaner,
/turf/open/floor/plasteel/whiteblue/side,
/area/medical/medbay)
-"bxI" = (
+"bvY" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/whiteblue/corner{
dir = 1
},
/area/medical/medbay)
-"bxJ" = (
+"bvZ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/whiteblue/corner{
dir = 4
},
/area/medical/medbay)
-"bxK" = (
+"bwa" = (
/obj/structure/closet/secure_closet/CMO,
/obj/item/weapon/valentine,
/turf/open/floor/plasteel/cmo,
/area/medical/cmo{
name = "Chief Medical Office"
})
-"bxL" = (
+"bwb" = (
/obj/machinery/modular_computer/console/preset/civilian,
/turf/open/floor/plasteel/cmo,
/area/medical/cmo{
name = "Chief Medical Office"
})
-"bxM" = (
+"bwc" = (
/obj/item/weapon/cartridge/medical{
pixel_x = -2;
pixel_y = 6
@@ -38195,7 +37508,7 @@
/area/medical/cmo{
name = "Chief Medical Office"
})
-"bxN" = (
+"bwd" = (
/obj/item/weapon/folder/blue,
/obj/item/weapon/stamp/cmo,
/obj/structure/table,
@@ -38203,7 +37516,7 @@
/area/medical/cmo{
name = "Chief Medical Office"
})
-"bxO" = (
+"bwe" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-16";
layer = 4.1
@@ -38212,7 +37525,7 @@
/area/medical/cmo{
name = "Chief Medical Office"
})
-"bxP" = (
+"bwf" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -38227,7 +37540,7 @@
},
/turf/open/floor/plasteel/black,
/area/medical/exam_room)
-"bxQ" = (
+"bwg" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -38251,7 +37564,7 @@
},
/turf/open/floor/plasteel/black,
/area/medical/exam_room)
-"bxR" = (
+"bwh" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -38278,7 +37591,7 @@
},
/turf/open/floor/plasteel/black,
/area/medical/exam_room)
-"bxS" = (
+"bwi" = (
/obj/machinery/door/airlock/command{
id_tag = "CMOCell";
name = "Personal Examination Room";
@@ -38294,7 +37607,7 @@
},
/turf/open/floor/plasteel/black,
/area/medical/exam_room)
-"bxT" = (
+"bwj" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -38312,7 +37625,7 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"bxU" = (
+"bwk" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -38327,14 +37640,14 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
-"bxV" = (
+"bwl" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4;
initialize_directions = 11
},
/turf/open/floor/plasteel/yellow/corner,
/area/hallway/primary/aft)
-"bxW" = (
+"bwm" = (
/obj/structure/chair/office/dark,
/obj/machinery/light{
dir = 8
@@ -38349,13 +37662,13 @@
},
/turf/open/floor/plasteel/black,
/area/toxins/server)
-"bxX" = (
+"bwn" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 4
},
/turf/open/floor/plasteel/black,
/area/toxins/server)
-"bxY" = (
+"bwo" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_command{
name = "Server Room";
@@ -38366,7 +37679,7 @@
},
/turf/open/floor/plasteel/black,
/area/toxins/server)
-"bxZ" = (
+"bwp" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
external_pressure_bound = 120;
@@ -38381,13 +37694,13 @@
initial_gas_mix = "n2=500;TEMP=80"
},
/area/toxins/server)
-"bya" = (
+"bwq" = (
/obj/machinery/computer/aifixer,
/turf/open/floor/plasteel/whitepurple/side{
dir = 8
},
/area/crew_quarters/hor)
-"byb" = (
+"bwr" = (
/obj/structure/chair/office/light{
dir = 8
},
@@ -38398,20 +37711,20 @@
},
/turf/open/floor/plasteel/white,
/area/crew_quarters/hor)
-"byc" = (
+"bws" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
/turf/open/floor/plasteel/white,
/area/crew_quarters/hor)
-"byd" = (
+"bwt" = (
/obj/structure/chair/office/light,
/obj/effect/landmark/start{
name = "Research Director"
},
/turf/open/floor/plasteel/white,
/area/crew_quarters/hor)
-"bye" = (
+"bwu" = (
/obj/machinery/computer/card/minor/rd,
/obj/machinery/keycard_auth{
pixel_x = 28;
@@ -38421,7 +37734,7 @@
dir = 4
},
/area/crew_quarters/hor)
-"byf" = (
+"bwv" = (
/obj/machinery/recharger{
pixel_y = 4
},
@@ -38430,7 +37743,7 @@
dir = 10
},
/area/security/checkpoint/science)
-"byg" = (
+"bww" = (
/obj/machinery/computer/security/mining,
/obj/item/device/radio/intercom{
dir = 8;
@@ -38441,19 +37754,19 @@
},
/turf/open/floor/plasteel/red/side,
/area/security/checkpoint/science)
-"byh" = (
+"bwx" = (
/obj/machinery/computer/secure_data,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/red/side{
dir = 6
},
/area/security/checkpoint/science)
-"byi" = (
+"bwy" = (
/obj/machinery/portable_atmospherics/canister/air,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
/area/toxins/storage)
-"byj" = (
+"bwz" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -38461,29 +37774,29 @@
},
/turf/open/floor/plasteel,
/area/toxins/storage)
-"byk" = (
+"bwA" = (
/turf/open/floor/plasteel,
/area/toxins/storage)
-"byl" = (
+"bwB" = (
/turf/open/floor/plasteel/white/side{
dir = 4
},
/area/medical/research{
name = "Research Division"
})
-"bym" = (
+"bwC" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"byn" = (
+"bwD" = (
/turf/open/floor/plasteel,
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"byo" = (
+"bwE" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
on = 1;
@@ -38494,7 +37807,7 @@
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"byp" = (
+"bwF" = (
/obj/item/device/assembly/prox_sensor{
pixel_x = -4;
pixel_y = 1
@@ -38516,7 +37829,7 @@
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"byq" = (
+"bwG" = (
/obj/structure/chair/stool,
/obj/effect/landmark/start{
name = "Scientist"
@@ -38529,7 +37842,7 @@
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"byr" = (
+"bwH" = (
/obj/structure/table/reinforced,
/obj/item/weapon/wrench,
/obj/item/weapon/screwdriver{
@@ -38540,20 +37853,20 @@
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"bys" = (
+"bwI" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
icon_state = "1-4"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plasteel,
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"byt" = (
+"bwJ" = (
/obj/machinery/atmospherics/pipe/simple/general/visible,
/obj/structure/cable{
d1 = 4;
@@ -38561,14 +37874,14 @@
icon_state = "4-8";
pixel_y = 0
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel,
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"byu" = (
+"bwK" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -38579,7 +37892,7 @@
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"byv" = (
+"bwL" = (
/obj/machinery/atmospherics/pipe/simple/general/visible,
/obj/structure/cable{
d1 = 4;
@@ -38595,14 +37908,14 @@
pixel_x = 30;
pixel_y = 0
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plasteel,
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"byw" = (
+"bwM" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -38613,7 +37926,7 @@
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"byx" = (
+"bwN" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -38623,7 +37936,7 @@
/obj/structure/closet/emcloset,
/turf/open/floor/plasteel,
/area/toxins/mineral_storeroom)
-"byy" = (
+"bwO" = (
/obj/machinery/power/smes,
/obj/structure/cable{
icon_state = "0-4";
@@ -38635,7 +37948,7 @@
},
/turf/open/floor/plasteel,
/area/toxins/mineral_storeroom)
-"byz" = (
+"bwP" = (
/obj/machinery/suit_storage_unit/rd,
/obj/structure/cable{
d1 = 4;
@@ -38648,7 +37961,7 @@
},
/turf/open/floor/plasteel,
/area/toxins/mineral_storeroom)
-"byA" = (
+"bwQ" = (
/obj/structure/ore_box,
/obj/structure/cable{
d1 = 4;
@@ -38659,7 +37972,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/toxins/mineral_storeroom)
-"byB" = (
+"bwR" = (
/obj/structure/ore_box,
/obj/structure/cable{
d1 = 4;
@@ -38681,7 +37994,7 @@
},
/turf/open/floor/plasteel,
/area/toxins/mineral_storeroom)
-"byC" = (
+"bwS" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -38693,7 +38006,7 @@
},
/turf/open/floor/plasteel,
/area/toxins/mineral_storeroom)
-"byD" = (
+"bwT" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -38708,7 +38021,7 @@
},
/turf/open/floor/plasteel,
/area/toxins/mineral_storeroom)
-"byE" = (
+"bwU" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -38720,7 +38033,7 @@
},
/turf/open/floor/plasteel,
/area/toxins/mineral_storeroom)
-"byF" = (
+"bwV" = (
/obj/machinery/power/apc{
dir = 1;
name = "Toxins Launch Room APC";
@@ -38739,7 +38052,7 @@
},
/turf/open/floor/plasteel,
/area/toxins/mineral_storeroom)
-"byG" = (
+"bwW" = (
/obj/machinery/door/airlock/maintenance{
name = "Toxins Launch Room Maintenance";
req_access_txt = "8"
@@ -38755,7 +38068,7 @@
},
/turf/open/floor/plating,
/area/toxins/mineral_storeroom)
-"byH" = (
+"bwX" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -38767,7 +38080,7 @@
},
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"byI" = (
+"bwY" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -38780,7 +38093,7 @@
},
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"byJ" = (
+"bwZ" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -38795,7 +38108,7 @@
},
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"byK" = (
+"bxa" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -38811,11 +38124,11 @@
},
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"byL" = (
+"bxb" = (
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/aft)
-"byM" = (
+"bxc" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -38828,7 +38141,7 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"byN" = (
+"bxd" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
tag = "icon-intact (WEST)";
icon_state = "intact";
@@ -38836,7 +38149,7 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"byO" = (
+"bxe" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
tag = "icon-intact (WEST)";
icon_state = "intact";
@@ -38844,7 +38157,7 @@
},
/turf/closed/wall/r_wall,
/area/medical/virology)
-"byP" = (
+"bxf" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
tag = "icon-intact (WEST)";
icon_state = "intact";
@@ -38853,7 +38166,7 @@
/mob/living/carbon/monkey,
/turf/open/floor/plasteel/freezer,
/area/medical/virology)
-"byQ" = (
+"bxg" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
tag = "icon-intact (WEST)";
icon_state = "intact";
@@ -38865,7 +38178,7 @@
},
/turf/open/floor/plasteel/freezer,
/area/medical/virology)
-"byR" = (
+"bxh" = (
/obj/machinery/light{
dir = 1
},
@@ -38877,11 +38190,11 @@
/mob/living/carbon/monkey,
/turf/open/floor/plasteel/freezer,
/area/medical/virology)
-"byS" = (
+"bxi" = (
/obj/effect/decal/cleanable/deadcockroach,
/turf/open/floor/plasteel/freezer,
/area/medical/virology)
-"byT" = (
+"bxj" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/virology{
autoclose = 0;
@@ -38908,32 +38221,32 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white,
/area/medical/virology)
-"byU" = (
+"bxk" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/turf/closed/wall/r_wall,
/area/medical/virology)
-"byV" = (
+"bxl" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/whiteblue/corner{
dir = 1
},
/area/medical/medbay)
-"byW" = (
+"bxm" = (
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"byX" = (
+"bxn" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/whiteblue/corner{
dir = 4
},
/area/medical/medbay)
-"byY" = (
+"bxo" = (
/turf/closed/wall,
/area/medical/surgery)
-"byZ" = (
+"bxp" = (
/obj/structure/table/glass,
/obj/item/device/flashlight/pen,
/obj/item/clothing/neck/stethoscope,
@@ -38947,7 +38260,7 @@
/obj/item/weapon/reagent_containers/pill/morphine,
/turf/open/floor/plasteel/black,
/area/medical/exam_room)
-"bza" = (
+"bxq" = (
/obj/effect/decal/remains/human,
/obj/structure/chair/office/dark{
dir = 8
@@ -38958,7 +38271,7 @@
},
/turf/open/floor/plasteel/black,
/area/medical/exam_room)
-"bzb" = (
+"bxr" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/cmo,
/obj/effect/decal/cleanable/blood/drip,
@@ -38969,7 +38282,7 @@
},
/turf/open/floor/plasteel/black,
/area/medical/exam_room)
-"bzc" = (
+"bxs" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -38982,7 +38295,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bzd" = (
+"bxt" = (
/obj/machinery/camera{
c_tag = "Aft Primary Hallway Central";
dir = 8;
@@ -38991,24 +38304,24 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/yellow/corner,
/area/hallway/primary/aft)
-"bze" = (
+"bxu" = (
/obj/structure/table,
/obj/item/weapon/folder/white,
/obj/item/weapon/pen,
/turf/open/floor/plasteel/black,
/area/toxins/server)
-"bzf" = (
+"bxv" = (
/obj/machinery/computer/rdservercontrol,
/turf/open/floor/plasteel/black,
/area/toxins/server)
-"bzg" = (
+"bxw" = (
/obj/machinery/r_n_d/server/robotics,
/turf/open/floor/bluegrid{
name = "Server Base";
initial_gas_mix = "n2=500;TEMP=80"
},
/area/toxins/server)
-"bzh" = (
+"bxx" = (
/obj/machinery/computer/mecha,
/obj/item/device/radio/intercom{
dir = 0;
@@ -39020,7 +38333,7 @@
dir = 10
},
/area/crew_quarters/hor)
-"bzi" = (
+"bxy" = (
/obj/structure/table,
/obj/item/device/aicard,
/obj/item/weapon/circuitboard/aicore,
@@ -39034,7 +38347,7 @@
},
/turf/open/floor/plasteel/whitepurple/side,
/area/crew_quarters/hor)
-"bzj" = (
+"bxz" = (
/obj/structure/table,
/obj/item/weapon/paper_bin{
layer = 2.9;
@@ -39058,7 +38371,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/whitepurple/side,
/area/crew_quarters/hor)
-"bzk" = (
+"bxA" = (
/obj/structure/table,
/obj/item/weapon/cartridge/signal/toxins,
/obj/item/weapon/cartridge/signal/toxins{
@@ -39078,7 +38391,7 @@
},
/turf/open/floor/plasteel/whitepurple/side,
/area/crew_quarters/hor)
-"bzl" = (
+"bxB" = (
/obj/machinery/newscaster{
pixel_y = -30
},
@@ -39087,28 +38400,28 @@
dir = 6
},
/area/crew_quarters/hor)
-"bzm" = (
+"bxC" = (
/turf/closed/wall/r_wall,
/area/crew_quarters/hor)
-"bzn" = (
+"bxD" = (
/turf/closed/wall/r_wall,
/area/security/checkpoint/science)
-"bzo" = (
+"bxE" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall/r_wall,
/area/security/checkpoint/science)
-"bzp" = (
+"bxF" = (
/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
/area/toxins/storage)
-"bzq" = (
+"bxG" = (
/obj/structure/sign/nosmoking_2{
pixel_x = 32
},
/turf/open/floor/plasteel,
/area/toxins/storage)
-"bzr" = (
+"bxH" = (
/obj/structure/closet/firecloset,
/turf/open/floor/plasteel/white/side{
tag = "icon-whitehall (NORTH)";
@@ -39118,7 +38431,7 @@
/area/medical/research{
name = "Research Division"
})
-"bzs" = (
+"bxI" = (
/obj/structure/reagent_dispensers/watertank,
/obj/machinery/light,
/turf/open/floor/plasteel/white/side{
@@ -39129,7 +38442,7 @@
/area/medical/research{
name = "Research Division"
})
-"bzt" = (
+"bxJ" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plasteel/white/side{
tag = "icon-whitehall (NORTH)";
@@ -39139,19 +38452,19 @@
/area/medical/research{
name = "Research Division"
})
-"bzu" = (
+"bxK" = (
/obj/structure/tank_dispenser,
/turf/open/floor/plasteel,
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"bzv" = (
+"bxL" = (
/obj/structure/closet/wardrobe/science_white,
/turf/open/floor/plasteel,
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"bzw" = (
+"bxM" = (
/obj/item/device/assembly/signaler{
pixel_x = 0;
pixel_y = 8
@@ -39173,7 +38486,7 @@
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"bzx" = (
+"bxN" = (
/obj/item/device/transfer_valve{
pixel_x = -5
},
@@ -39197,7 +38510,7 @@
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"bzy" = (
+"bxO" = (
/obj/item/device/assembly/timer{
pixel_x = 5;
pixel_y = 4
@@ -39219,28 +38532,28 @@
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"bzz" = (
+"bxP" = (
/obj/machinery/computer/turbine_computer{
id = "incineratorturbine"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plasteel,
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"bzA" = (
+"bxQ" = (
/obj/machinery/atmospherics/pipe/simple/general/visible,
/obj/machinery/meter,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel,
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"bzB" = (
+"bxR" = (
/obj/structure/cable/yellow{
d1 = 2;
d2 = 4;
@@ -39251,7 +38564,7 @@
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"bzC" = (
+"bxS" = (
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -39261,14 +38574,14 @@
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 8
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plasteel,
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"bzD" = (
+"bxT" = (
/obj/machinery/door/firedoor/heavy,
/obj/machinery/door/airlock/research{
name = "Toxins Launch Room";
@@ -39287,7 +38600,7 @@
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"bzE" = (
+"bxU" = (
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -39300,7 +38613,7 @@
},
/turf/open/floor/plasteel,
/area/toxins/mineral_storeroom)
-"bzF" = (
+"bxV" = (
/obj/structure/cable/yellow{
d2 = 8;
icon_state = "0-8"
@@ -39311,40 +38624,40 @@
},
/turf/open/floor/plasteel,
/area/toxins/mineral_storeroom)
-"bzG" = (
+"bxW" = (
/turf/open/floor/plasteel,
/area/toxins/mineral_storeroom)
-"bzH" = (
+"bxX" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/toxins/mineral_storeroom)
-"bzI" = (
+"bxY" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/toxins/mineral_storeroom)
-"bzJ" = (
+"bxZ" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating,
/area/maintenance/port{
name = "Monastery Maintenance"
})
-"bzK" = (
+"bya" = (
/turf/open/floor/plasteel/loadingarea{
tag = "icon-loadingarea (EAST)";
dir = 4
},
/area/toxins/mineral_storeroom)
-"bzL" = (
-/turf/open/floor/plasteel,
+"byb" = (
/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
/area/toxins/mineral_storeroom)
-"bzM" = (
+"byc" = (
/obj/structure/closet/boxinggloves,
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
/area/maintenance/aft)
-"bzN" = (
+"byd" = (
/obj/structure/closet/masks,
/obj/item/trash/deadmouse,
/obj/effect/landmark{
@@ -39352,11 +38665,11 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"bzO" = (
+"bye" = (
/obj/machinery/vending/cigarette,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bzP" = (
+"byf" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -39365,11 +38678,11 @@
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bzQ" = (
+"byg" = (
/obj/structure/window/reinforced,
/turf/open/floor/plasteel/freezer,
/area/medical/virology)
-"bzR" = (
+"byh" = (
/obj/structure/window/reinforced,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1
@@ -39377,14 +38690,14 @@
/mob/living/carbon/monkey,
/turf/open/floor/plasteel/freezer,
/area/medical/virology)
-"bzS" = (
+"byi" = (
/obj/structure/window/reinforced,
/obj/effect/landmark{
name = "blobstart"
},
/turf/open/floor/plasteel/freezer,
/area/medical/virology)
-"bzT" = (
+"byj" = (
/obj/machinery/door/window/eastleft{
dir = 2;
name = "Monkey Pen";
@@ -39393,7 +38706,7 @@
/mob/living/carbon/monkey,
/turf/open/floor/plasteel/freezer,
/area/medical/virology)
-"bzU" = (
+"byk" = (
/obj/machinery/doorButtons/airlock_controller{
idExterior = "virology_airlock_exterior";
idInterior = "virology_airlock_interior";
@@ -39413,7 +38726,7 @@
dir = 9
},
/area/medical/virology)
-"bzV" = (
+"byl" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -39422,7 +38735,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white,
/area/medical/virology)
-"bzW" = (
+"bym" = (
/obj/machinery/power/apc{
cell_type = 5000;
dir = 1;
@@ -39441,7 +38754,7 @@
dir = 5
},
/area/medical/virology)
-"bzX" = (
+"byn" = (
/obj/item/weapon/bedsheet/medical,
/obj/structure/bed,
/obj/effect/landmark{
@@ -39455,7 +38768,7 @@
},
/turf/open/floor/plasteel/freezer,
/area/medical/medbay)
-"bzY" = (
+"byo" = (
/obj/machinery/vending/wallmed{
pixel_y = 28;
products = list(/obj/item/weapon/reagent_containers/syringe = 3, /obj/item/weapon/reagent_containers/pill/patch/styptic = 1, /obj/item/weapon/reagent_containers/pill/patch/silver_sulf = 1, /obj/item/weapon/reagent_containers/spray/medical/sterilizer = 1)
@@ -39470,7 +38783,7 @@
},
/turf/open/floor/plasteel/freezer,
/area/medical/medbay)
-"bzZ" = (
+"byp" = (
/obj/machinery/button/door{
id = "patientA";
name = "Privacy Shutters";
@@ -39485,7 +38798,7 @@
},
/turf/open/floor/plasteel/freezer,
/area/medical/medbay)
-"bAa" = (
+"byq" = (
/obj/machinery/door/airlock/medical{
name = "Patient Room A";
req_access_txt = "5"
@@ -39495,7 +38808,7 @@
},
/turf/open/floor/plasteel/freezer,
/area/medical/medbay)
-"bAb" = (
+"byr" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
layer = 2.4;
@@ -39503,7 +38816,7 @@
},
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bAc" = (
+"bys" = (
/obj/machinery/light{
dir = 4
},
@@ -39520,7 +38833,7 @@
dir = 4
},
/area/medical/medbay)
-"bAd" = (
+"byt" = (
/obj/structure/closet/crate/freezer/surplus_limbs,
/obj/item/weapon/reagent_containers/glass/beaker/synthflesh,
/obj/machinery/newscaster/security_unit{
@@ -39528,7 +38841,7 @@
},
/turf/open/floor/plasteel/freezer,
/area/medical/surgery)
-"bAe" = (
+"byu" = (
/obj/machinery/computer/med_data,
/obj/machinery/status_display{
density = 0;
@@ -39538,7 +38851,7 @@
},
/turf/open/floor/plasteel/freezer,
/area/medical/surgery)
-"bAf" = (
+"byv" = (
/obj/structure/table,
/obj/structure/bedsheetbin,
/obj/structure/extinguisher_cabinet{
@@ -39549,15 +38862,15 @@
},
/turf/open/floor/plasteel/freezer,
/area/medical/surgery)
-"bAg" = (
+"byw" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall,
/area/medical/surgery)
-"bAh" = (
+"byx" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall/r_wall,
/area/crew_quarters/hor)
-"bAi" = (
+"byy" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
@@ -39567,7 +38880,7 @@
/area/maintenance/maintcentral{
name = "Atmospherics Maintenance"
})
-"bAj" = (
+"byz" = (
/obj/machinery/space_heater,
/obj/machinery/light/small{
dir = 1
@@ -39579,7 +38892,7 @@
/area/maintenance/maintcentral{
name = "Atmospherics Maintenance"
})
-"bAk" = (
+"byA" = (
/obj/machinery/space_heater,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -39589,33 +38902,33 @@
/area/maintenance/maintcentral{
name = "Atmospherics Maintenance"
})
-"bAl" = (
+"byB" = (
/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 4
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
/area/toxins/storage)
-"bAm" = (
+"byC" = (
/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
/obj/machinery/light,
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 4
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
/area/toxins/storage)
-"bAn" = (
+"byD" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 4
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel,
/area/toxins/storage)
-"bAo" = (
+"byE" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -39628,25 +38941,25 @@
},
/turf/open/floor/plasteel,
/area/toxins/storage)
-"bAp" = (
+"byF" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 8
},
/turf/open/floor/plasteel,
/area/toxins/storage)
-"bAq" = (
+"byG" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/medical/research{
name = "Research Division"
})
-"bAr" = (
+"byH" = (
/turf/closed/wall/r_wall,
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"bAs" = (
+"byI" = (
/obj/machinery/atmospherics/components/binary/valve,
/obj/machinery/button/door{
id = "turbinevent";
@@ -39664,14 +38977,14 @@
req_access_txt = "0";
req_one_access_txt = "8;24"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel,
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"bAt" = (
+"byJ" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -39681,7 +38994,7 @@
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"bAu" = (
+"byK" = (
/obj/machinery/atmospherics/components/binary/valve,
/obj/machinery/button/ignition{
id = "Incinerator";
@@ -39700,14 +39013,14 @@
/obj/structure/extinguisher_cabinet{
pixel_x = 24
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plasteel,
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"bAv" = (
+"byL" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 2;
name = "Incinerator Output Pump";
@@ -39715,7 +39028,7 @@
},
/turf/open/floor/plasteel,
/area/toxins/mineral_storeroom)
-"bAw" = (
+"byM" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1;
@@ -39724,27 +39037,27 @@
},
/turf/open/floor/plasteel,
/area/toxins/mineral_storeroom)
-"bAx" = (
+"byN" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/toxins/mineral_storeroom)
-"bAy" = (
+"byO" = (
/obj/machinery/holopad,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
/turf/open/floor/plasteel,
/area/toxins/mineral_storeroom)
-"bAz" = (
+"byP" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
},
/turf/open/floor/plasteel,
/area/toxins/mineral_storeroom)
-"bAA" = (
+"byQ" = (
/obj/item/device/radio/intercom{
dir = 8;
name = "Station Intercom (General)";
@@ -39754,7 +39067,7 @@
dir = 4
},
/area/toxins/mineral_storeroom)
-"bAB" = (
+"byR" = (
/obj/structure/table/wood,
/obj/item/weapon/folder/yellow,
/obj/item/weapon/pen,
@@ -39765,19 +39078,19 @@
},
/turf/open/floor/plasteel/black,
/area/library)
-"bAC" = (
+"byS" = (
/obj/machinery/mineral/unloading_machine{
dir = 1;
icon_state = "unloader-corner";
input_dir = 1;
output_dir = 2
},
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 9
},
+/turf/open/floor/plating,
/area/toxins/mineral_storeroom)
-"bAD" = (
+"byT" = (
/obj/structure/table,
/obj/item/device/flashlight/lamp,
/obj/effect/decal/cleanable/cobweb{
@@ -39785,7 +39098,7 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"bAE" = (
+"byU" = (
/obj/machinery/vending/medical,
/turf/open/floor/plasteel/whitegreen/side{
tag = "icon-whitegreen (NORTHWEST)";
@@ -39793,7 +39106,7 @@
dir = 9
},
/area/medical/virology)
-"bAF" = (
+"byV" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
@@ -39801,7 +39114,7 @@
dir = 1
},
/area/medical/virology)
-"bAG" = (
+"byW" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -39809,7 +39122,7 @@
dir = 1
},
/area/medical/virology)
-"bAH" = (
+"byX" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1;
initialize_directions = 11
@@ -39818,7 +39131,7 @@
dir = 1
},
/area/medical/virology)
-"bAI" = (
+"byY" = (
/obj/machinery/camera{
c_tag = "Virology";
dir = 2;
@@ -39838,7 +39151,7 @@
dir = 1
},
/area/medical/virology)
-"bAJ" = (
+"byZ" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1;
initialize_directions = 11
@@ -39847,20 +39160,20 @@
dir = 1
},
/area/medical/virology)
-"bAK" = (
+"bza" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
/obj/machinery/holopad,
/turf/open/floor/plasteel/white,
/area/medical/virology)
-"bAL" = (
+"bzb" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/turf/open/floor/plasteel/whitegreen/corner{
dir = 4
},
/area/medical/virology)
-"bAM" = (
+"bzc" = (
/obj/machinery/light{
dir = 1
},
@@ -39871,7 +39184,7 @@
dir = 1
},
/area/medical/virology)
-"bAN" = (
+"bzd" = (
/obj/structure/closet/l3closet/virology,
/turf/open/floor/plasteel/whitegreen/side{
tag = "icon-whitegreen (NORTHEAST)";
@@ -39879,7 +39192,7 @@
dir = 5
},
/area/medical/virology)
-"bAO" = (
+"bze" = (
/obj/structure/table,
/obj/item/weapon/clipboard{
toppaper = null
@@ -39892,17 +39205,17 @@
},
/turf/open/floor/plasteel/freezer,
/area/medical/medbay)
-"bAP" = (
+"bzf" = (
/turf/open/floor/carpet,
/area/library)
-"bAQ" = (
+"bzg" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/obj/structure/closet/secure_closet/personal/patient,
/turf/open/floor/plasteel/freezer,
/area/medical/medbay)
-"bAR" = (
+"bzh" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
/obj/machinery/door/poddoor/shutters/preopen{
@@ -39914,12 +39227,12 @@
},
/turf/open/floor/plating,
/area/medical/medbay)
-"bAS" = (
+"bzi" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
/turf/open/floor/plating,
/area/medical/surgery)
-"bAT" = (
+"bzj" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1;
@@ -39928,7 +39241,7 @@
},
/turf/open/floor/plasteel/freezer,
/area/medical/surgery)
-"bAU" = (
+"bzk" = (
/obj/machinery/camera{
c_tag = "Medbay Recovery Room";
dir = 8;
@@ -39949,20 +39262,20 @@
/obj/machinery/holopad,
/turf/open/floor/plasteel/freezer,
/area/medical/surgery)
-"bAV" = (
+"bzl" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall,
/area/medical/surgery)
-"bAW" = (
+"bzm" = (
/obj/structure/closet/crate/freezer/blood,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/whiteblue,
/area/medical/surgery)
-"bAX" = (
+"bzn" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -39973,7 +39286,7 @@
dir = 1
},
/area/medical/surgery)
-"bAY" = (
+"bzo" = (
/obj/machinery/light{
dir = 1
},
@@ -39992,7 +39305,7 @@
dir = 1
},
/area/medical/surgery)
-"bAZ" = (
+"bzp" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -40005,14 +39318,14 @@
dir = 1
},
/area/medical/surgery)
-"bBa" = (
+"bzq" = (
/obj/structure/closet/secure_closet/medical2,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
/turf/open/floor/plasteel/whiteblue,
/area/medical/surgery)
-"bBb" = (
+"bzr" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
@@ -40020,7 +39333,7 @@
dir = 8
},
/area/hallway/primary/aft)
-"bBc" = (
+"bzs" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -40040,7 +39353,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
-"bBd" = (
+"bzt" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -40055,7 +39368,7 @@
},
/turf/open/floor/plasteel/yellow/corner,
/area/hallway/primary/aft)
-"bBe" = (
+"bzu" = (
/obj/machinery/door/airlock/maintenance{
name = "Atmospherics Maintenance";
req_access_txt = "24"
@@ -40075,7 +39388,7 @@
/area/maintenance/maintcentral{
name = "Atmospherics Maintenance"
})
-"bBf" = (
+"bzv" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -40091,7 +39404,7 @@
/area/maintenance/maintcentral{
name = "Atmospherics Maintenance"
})
-"bBg" = (
+"bzw" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -40107,7 +39420,7 @@
/area/maintenance/maintcentral{
name = "Atmospherics Maintenance"
})
-"bBh" = (
+"bzx" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -40127,7 +39440,7 @@
/area/maintenance/maintcentral{
name = "Atmospherics Maintenance"
})
-"bBi" = (
+"bzy" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -40144,13 +39457,13 @@
/area/maintenance/maintcentral{
name = "Atmospherics Maintenance"
})
-"bBj" = (
+"bzz" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/maintcentral{
name = "Atmospherics Maintenance"
})
-"bBk" = (
+"bzA" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -40158,7 +39471,7 @@
/area/maintenance/maintcentral{
name = "Atmospherics Maintenance"
})
-"bBl" = (
+"bzB" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/chair/stool,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -40168,7 +39481,7 @@
/area/maintenance/maintcentral{
name = "Atmospherics Maintenance"
})
-"bBm" = (
+"bzC" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
@@ -40180,7 +39493,7 @@
/area/maintenance/maintcentral{
name = "Atmospherics Maintenance"
})
-"bBn" = (
+"bzD" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9;
pixel_y = 0
@@ -40193,7 +39506,7 @@
/area/maintenance/maintcentral{
name = "Atmospherics Maintenance"
})
-"bBo" = (
+"bzE" = (
/obj/machinery/door/firedoor/heavy,
/obj/machinery/door/airlock/atmos{
name = "Toxins Storage";
@@ -40206,7 +39519,7 @@
},
/turf/open/floor/plasteel,
/area/toxins/storage)
-"bBp" = (
+"bzF" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 2
},
@@ -40214,7 +39527,7 @@
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"bBq" = (
+"bzG" = (
/obj/machinery/door/airlock/glass{
autoclose = 0;
frequency = 1449;
@@ -40235,29 +39548,29 @@
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"bBr" = (
+"bzH" = (
/obj/machinery/atmospherics/pipe/simple/general/visible,
/turf/closed/wall/r_wall,
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"bBs" = (
+"bzI" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/turf/open/floor/plasteel,
/area/toxins/mineral_storeroom)
-"bBt" = (
+"bzJ" = (
/obj/structure/window/reinforced,
/obj/machinery/doppler_array{
dir = 2
},
-/turf/open/floor/plasteel{
+/obj/effect/turf_decal/bot{
dir = 2
},
-/obj/effect/turf_decal/bot{
+/turf/open/floor/plasteel{
dir = 2
},
/area/toxins/mineral_storeroom)
-"bBu" = (
+"bzK" = (
/obj/machinery/conveyor_switch/oneway{
id = "toxmineral";
name = "smelting conveyor"
@@ -40266,84 +39579,84 @@
dir = 4
},
/area/toxins/mineral_storeroom)
-"bBv" = (
+"bzL" = (
/obj/effect/spawner/structure/window,
/turf/open/floor/plating,
/area/toxins/mineral_storeroom)
-"bBw" = (
+"bzM" = (
/obj/machinery/conveyor{
dir = 2;
id = "toxmineral"
},
-/turf/open/floor/plating{
- tag = "icon-warnplate (WEST)"
- },
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plating{
+ tag = "icon-warnplate (WEST)"
+ },
/area/toxins/mineral_storeroom)
-"bBx" = (
+"bzN" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/toxins/mineral_storeroom)
-"bBy" = (
+"bzO" = (
/obj/structure/chair/comfy/black,
/obj/item/trash/pistachios,
-/turf/open/floor/plasteel/black,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel/black,
/area/maintenance/aft)
-"bBz" = (
+"bzP" = (
/obj/structure/chair/comfy/black,
/obj/item/stack/spacecash/c100,
-/turf/open/floor/plasteel/black,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel/black,
/area/maintenance/aft)
-"bBA" = (
+"bzQ" = (
/obj/structure/chair/comfy/black,
-/turf/open/floor/plasteel/black,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel/black,
/area/maintenance/aft)
-"bBB" = (
+"bzR" = (
/obj/structure/chair/comfy/black,
/obj/item/weapon/cigbutt,
-/turf/open/floor/plasteel/black,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel/black,
/area/maintenance/aft)
-"bBC" = (
+"bzS" = (
/obj/item/trash/popcorn,
-/turf/open/floor/plasteel/black,
/obj/effect/turf_decal/stripes/line{
dir = 5
},
+/turf/open/floor/plasteel/black,
/area/maintenance/aft)
-"bBD" = (
+"bzT" = (
/obj/structure/sign/poster{
pixel_x = 32;
pixel_y = 0
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"bBE" = (
+"bzU" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-21"
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"bBF" = (
+"bzV" = (
/obj/structure/rack,
/obj/item/weapon/cartridge/medical,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bBG" = (
+"bzW" = (
/obj/structure/table/glass,
/obj/item/weapon/book/manual/wiki/infections,
/obj/item/weapon/hand_labeler,
@@ -40359,14 +39672,14 @@
dir = 8
},
/area/medical/virology)
-"bBH" = (
+"bzX" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white,
/area/medical/virology)
-"bBI" = (
+"bzY" = (
/turf/open/floor/plasteel/white,
/area/medical/virology)
-"bBJ" = (
+"bzZ" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
on = 1;
@@ -40375,11 +39688,11 @@
},
/turf/open/floor/plasteel/white,
/area/medical/virology)
-"bBK" = (
+"bAa" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/turf/open/floor/plasteel/white,
/area/medical/virology)
-"bBL" = (
+"bAb" = (
/obj/machinery/firealarm{
dir = 4;
pixel_x = 28
@@ -40396,7 +39709,7 @@
dir = 4
},
/area/medical/virology)
-"bBM" = (
+"bAc" = (
/obj/machinery/requests_console{
announcementConsole = 0;
department = "Medbay";
@@ -40411,7 +39724,7 @@
dir = 8
},
/area/medical/medbay)
-"bBN" = (
+"bAd" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
@@ -40420,7 +39733,7 @@
dir = 4
},
/area/medical/medbay)
-"bBO" = (
+"bAe" = (
/obj/machinery/door/airlock/glass_medical{
id_tag = null;
name = "Recovery Room";
@@ -40431,20 +39744,20 @@
},
/turf/open/floor/plasteel/freezer,
/area/medical/surgery)
-"bBP" = (
+"bAf" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/freezer,
/area/medical/surgery)
-"bBQ" = (
+"bAg" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
tag = "icon-manifold-b-f (NORTH)";
dir = 1
},
/turf/open/floor/plasteel/freezer,
/area/medical/surgery)
-"bBR" = (
+"bAh" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical{
name = "Surgery";
@@ -40455,7 +39768,7 @@
},
/turf/open/floor/plasteel/freezer,
/area/medical/surgery)
-"bBS" = (
+"bAi" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
tag = "icon-manifold-b-f (NORTH)";
dir = 1
@@ -40464,21 +39777,21 @@
dir = 8
},
/area/medical/surgery)
-"bBT" = (
+"bAj" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
/turf/open/floor/plasteel/white,
/area/medical/surgery)
-"bBU" = (
+"bAk" = (
/obj/machinery/computer/operating,
/turf/open/floor/plasteel/white,
/area/medical/surgery)
-"bBV" = (
+"bAl" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/white,
/area/medical/surgery)
-"bBW" = (
+"bAm" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -40493,7 +39806,7 @@
dir = 4
},
/area/medical/surgery)
-"bBX" = (
+"bAn" = (
/obj/machinery/door/airlock/maintenance{
name = "Surgery Maintenance";
req_access_txt = "45"
@@ -40508,7 +39821,7 @@
},
/turf/open/floor/plating,
/area/medical/surgery)
-"bBY" = (
+"bAo" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -40525,13 +39838,13 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"bBZ" = (
+"bAp" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/yellow/corner{
dir = 8
},
/area/hallway/primary/aft)
-"bCa" = (
+"bAq" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -40539,7 +39852,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
-"bCb" = (
+"bAr" = (
/obj/machinery/light{
dir = 4;
icon_state = "tube1"
@@ -40549,7 +39862,7 @@
},
/turf/open/floor/plasteel/yellow/corner,
/area/hallway/primary/aft)
-"bCc" = (
+"bAs" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -40557,7 +39870,7 @@
/area/maintenance/maintcentral{
name = "Atmospherics Maintenance"
})
-"bCd" = (
+"bAt" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -40565,7 +39878,7 @@
/area/maintenance/maintcentral{
name = "Atmospherics Maintenance"
})
-"bCe" = (
+"bAu" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -40574,7 +39887,7 @@
/area/maintenance/maintcentral{
name = "Atmospherics Maintenance"
})
-"bCf" = (
+"bAv" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -40589,7 +39902,7 @@
/area/maintenance/maintcentral{
name = "Atmospherics Maintenance"
})
-"bCg" = (
+"bAw" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1;
initialize_directions = 11
@@ -40599,7 +39912,7 @@
/area/maintenance/maintcentral{
name = "Atmospherics Maintenance"
})
-"bCh" = (
+"bAx" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
@@ -40607,22 +39920,22 @@
/area/maintenance/maintcentral{
name = "Atmospherics Maintenance"
})
-"bCi" = (
+"bAy" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/maintcentral{
name = "Atmospherics Maintenance"
})
-"bCj" = (
+"bAz" = (
/obj/machinery/portable_atmospherics/canister,
/turf/open/floor/plating,
/area/maintenance/maintcentral{
name = "Atmospherics Maintenance"
})
-"bCk" = (
+"bAA" = (
/turf/closed/wall/r_wall,
/area/atmos)
-"bCl" = (
+"bAB" = (
/obj/structure/cable{
icon_state = "0-4";
d2 = 4
@@ -40637,7 +39950,7 @@
dir = 1
},
/area/atmos)
-"bCm" = (
+"bAC" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -40651,7 +39964,7 @@
dir = 1
},
/area/atmos)
-"bCn" = (
+"bAD" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -40669,7 +39982,7 @@
dir = 1
},
/area/atmos)
-"bCo" = (
+"bAE" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -40701,7 +40014,7 @@
dir = 1
},
/area/atmos)
-"bCp" = (
+"bAF" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -40711,7 +40024,7 @@
dir = 1
},
/area/atmos)
-"bCq" = (
+"bAG" = (
/obj/structure/cable{
icon_state = "1-8"
},
@@ -40719,20 +40032,20 @@
dir = 1
},
/area/atmos)
-"bCr" = (
+"bAH" = (
/turf/open/floor/plasteel/yellow/side{
dir = 5
},
/area/atmos)
-"bCs" = (
+"bAI" = (
/obj/machinery/bookbinder,
/turf/open/floor/plasteel/black,
/area/library)
-"bCt" = (
+"bAJ" = (
/obj/structure/grille,
/turf/closed/wall/r_wall,
/area/atmos)
-"bCu" = (
+"bAK" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 2;
on = 1;
@@ -40750,7 +40063,7 @@
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"bCv" = (
+"bAL" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -40760,7 +40073,7 @@
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"bCw" = (
+"bAM" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 1;
on = 1;
@@ -40777,7 +40090,7 @@
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"bCx" = (
+"bAN" = (
/obj/machinery/computer/security/telescreen{
desc = "Used for watching the test chamber.";
dir = 2;
@@ -40789,7 +40102,7 @@
},
/turf/open/floor/plasteel,
/area/toxins/mineral_storeroom)
-"bCy" = (
+"bAO" = (
/obj/machinery/button/massdriver{
dir = 2;
id = "toxinsdriver";
@@ -40800,7 +40113,7 @@
dir = 4
},
/area/toxins/mineral_storeroom)
-"bCz" = (
+"bAP" = (
/obj/machinery/mass_driver{
id = "toxinsdriver"
},
@@ -40813,15 +40126,15 @@
name = "Mass Driver Door";
req_access_txt = "7"
},
+/obj/effect/turf_decal/stripes/end{
+ dir = 1
+ },
/turf/open/floor/plating{
tag = "icon-plating_warn_end (NORTH)";
icon_state = "plating_warn_end"
},
-/obj/effect/turf_decal/stripes/end{
- dir = 1
- },
/area/toxins/mineral_storeroom)
-"bCA" = (
+"bAQ" = (
/obj/machinery/light{
dir = 4
},
@@ -40829,21 +40142,21 @@
dir = 4
},
/area/toxins/mineral_storeroom)
-"bCB" = (
+"bAR" = (
/obj/machinery/mineral/processing_unit_console,
/turf/closed/wall,
/area/toxins/mineral_storeroom)
-"bCC" = (
+"bAS" = (
/obj/machinery/mineral/processing_unit{
dir = 1;
output_dir = 2
},
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 9
},
+/turf/open/floor/plating,
/area/toxins/mineral_storeroom)
-"bCD" = (
+"bAT" = (
/obj/machinery/door/window/eastright{
base_state = "left";
dir = 8;
@@ -40856,7 +40169,7 @@
/obj/structure/chair/stool,
/turf/open/floor/engine,
/area/maintenance/aft)
-"bCE" = (
+"bAU" = (
/obj/structure/window/reinforced{
dir = 1
},
@@ -40865,13 +40178,13 @@
},
/turf/open/floor/engine,
/area/maintenance/aft)
-"bCF" = (
+"bAV" = (
/obj/structure/window/reinforced{
dir = 1
},
/turf/open/floor/engine,
/area/maintenance/aft)
-"bCG" = (
+"bAW" = (
/obj/structure/window/reinforced{
dir = 4
},
@@ -40880,14 +40193,14 @@
},
/turf/open/floor/engine,
/area/maintenance/aft)
-"bCH" = (
+"bAX" = (
/obj/item/stack/medical/gauze,
-/turf/open/floor/plasteel/black,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plasteel/black,
/area/maintenance/aft)
-"bCI" = (
+"bAY" = (
/obj/structure/light_construct{
tag = "icon-tube-construct-stage1 (EAST)";
icon_state = "tube-construct-stage1";
@@ -40895,12 +40208,12 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"bCJ" = (
+"bAZ" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
/turf/open/floor/plating,
/area/medical/virology)
-"bCK" = (
+"bBa" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_virology{
name = "Isolation B";
@@ -40909,7 +40222,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/freezer,
/area/medical/virology)
-"bCL" = (
+"bBb" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_virology{
name = "Isolation A";
@@ -40918,12 +40231,12 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/freezer,
/area/medical/virology)
-"bCM" = (
+"bBc" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk,
/turf/open/floor/plasteel/white,
/area/medical/virology)
-"bCN" = (
+"bBd" = (
/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
tag = "icon-manifold (WEST)";
icon_state = "manifold";
@@ -40932,7 +40245,7 @@
/obj/machinery/computer/pandemic,
/turf/open/floor/plasteel/white,
/area/medical/virology)
-"bCO" = (
+"bBe" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
layer = 2.4;
@@ -40940,7 +40253,7 @@
},
/turf/open/floor/plasteel/white,
/area/medical/virology)
-"bCP" = (
+"bBf" = (
/obj/machinery/smartfridge/chemistry/virology,
/turf/open/floor/plasteel/whitegreen/side{
tag = "icon-whitegreen (EAST)";
@@ -40948,11 +40261,11 @@
dir = 4
},
/area/medical/virology)
-"bCQ" = (
+"bBg" = (
/obj/structure/bookcase/random/reference,
/turf/open/floor/plasteel/black,
/area/library)
-"bCR" = (
+"bBh" = (
/obj/machinery/button/door{
id = "patientB";
name = "Privacy Shutters";
@@ -40967,7 +40280,7 @@
},
/turf/open/floor/plasteel/freezer,
/area/medical/medbay)
-"bCS" = (
+"bBi" = (
/obj/machinery/door/airlock/medical{
name = "Patient Room B";
req_access_txt = "5"
@@ -40977,7 +40290,7 @@
},
/turf/open/floor/plasteel/freezer,
/area/medical/medbay)
-"bCT" = (
+"bBj" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -40985,7 +40298,7 @@
/obj/item/device/radio/beacon,
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bCU" = (
+"bBk" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9;
pixel_y = 0
@@ -40995,22 +40308,22 @@
dir = 4
},
/area/medical/medbay)
-"bCV" = (
+"bBl" = (
/obj/structure/bed/roller,
/obj/machinery/iv_drip{
density = 0
},
/turf/open/floor/plasteel/freezer,
/area/medical/surgery)
-"bCW" = (
+"bBm" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/freezer,
/area/medical/surgery)
-"bCX" = (
+"bBn" = (
/obj/structure/bed,
/turf/open/floor/plasteel/freezer,
/area/medical/surgery)
-"bCY" = (
+"bBo" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
@@ -41019,14 +40332,14 @@
dir = 8
},
/area/medical/surgery)
-"bCZ" = (
+"bBp" = (
/obj/structure/table/optable,
/obj/effect/landmark{
name = "revenantspawn"
},
/turf/open/floor/plasteel/white,
/area/medical/surgery)
-"bDa" = (
+"bBq" = (
/obj/machinery/power/apc{
dir = 4;
name = "Surgery APC";
@@ -41045,7 +40358,7 @@
dir = 4
},
/area/medical/surgery)
-"bDb" = (
+"bBr" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -41054,14 +40367,14 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bDc" = (
+"bBs" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/yellow/corner{
dir = 8
},
/area/hallway/primary/aft)
-"bDd" = (
+"bBt" = (
/obj/machinery/door/firedoor,
/obj/structure/cable{
d1 = 1;
@@ -41070,17 +40383,17 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
-"bDe" = (
+"bBu" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/yellow/corner,
/area/hallway/primary/aft)
-"bDf" = (
+"bBv" = (
/turf/closed/wall,
/area/maintenance/maintcentral{
name = "Atmospherics Maintenance"
})
-"bDg" = (
+"bBw" = (
/obj/machinery/door/firedoor/heavy,
/obj/machinery/door/airlock/atmos{
name = "Atmospherics Maintenance";
@@ -41095,31 +40408,31 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/atmos)
-"bDh" = (
+"bBx" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/turf/closed/wall/r_wall,
/area/atmos)
-"bDi" = (
+"bBy" = (
/obj/machinery/atmospherics/pipe/simple/supply/visible,
/turf/closed/wall/r_wall,
/area/atmos)
-"bDj" = (
+"bBz" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
dir = 6
},
/turf/open/floor/plasteel,
/area/atmos)
-"bDk" = (
+"bBA" = (
/obj/structure/bookcase/random/nonfiction,
/turf/open/floor/plasteel/black,
/area/library)
-"bDl" = (
+"bBB" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
dir = 4
},
/turf/open/floor/plasteel,
/area/atmos)
-"bDm" = (
+"bBC" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -41130,11 +40443,11 @@
},
/turf/open/floor/plasteel,
/area/atmos)
-"bDn" = (
+"bBD" = (
/obj/structure/bookcase/random/fiction,
/turf/open/floor/plasteel/black,
/area/library)
-"bDo" = (
+"bBE" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 8;
name = "Mix Outlet Pump";
@@ -41145,7 +40458,7 @@
dir = 4
},
/area/atmos)
-"bDp" = (
+"bBF" = (
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
@@ -41154,14 +40467,14 @@
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/atmos)
-"bDq" = (
+"bBG" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
dir = 4
},
/turf/open/space,
/area/space)
-"bDr" = (
+"bBH" = (
/obj/machinery/atmospherics/pipe/simple{
dir = 4
},
@@ -41169,7 +40482,7 @@
/obj/machinery/meter,
/turf/closed/wall/r_wall,
/area/atmos)
-"bDs" = (
+"bBI" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
external_pressure_bound = 0;
@@ -41183,16 +40496,16 @@
},
/turf/open/floor/engine/vacuum,
/area/atmos)
-"bDt" = (
+"bBJ" = (
/obj/machinery/camera{
c_tag = "Atmospherics Waste Tank"
},
/turf/open/floor/engine/vacuum,
/area/atmos)
-"bDu" = (
+"bBK" = (
/turf/open/floor/engine/vacuum,
/area/atmos)
-"bDv" = (
+"bBL" = (
/obj/machinery/door/airlock/glass{
autoclose = 0;
frequency = 1449;
@@ -41213,7 +40526,7 @@
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"bDw" = (
+"bBM" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/obj/machinery/door/airlock/external{
cyclelinkeddir = 2;
@@ -41222,7 +40535,7 @@
},
/turf/open/floor/plating,
/area/toxins/mineral_storeroom)
-"bDx" = (
+"bBN" = (
/obj/structure/window/reinforced{
dir = 8;
layer = 2.9
@@ -41235,19 +40548,19 @@
dir = 4;
on = 1
},
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plating,
/area/toxins/mineral_storeroom)
-"bDy" = (
+"bBO" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9;
pixel_y = 0
},
/turf/closed/wall,
/area/toxins/mineral_storeroom)
-"bDz" = (
+"bBP" = (
/obj/structure/closet/crate{
icon_state = "crateopen";
opened = 1
@@ -41256,69 +40569,69 @@
/obj/item/weapon/storage/bag/ore,
/turf/open/floor/plasteel,
/area/toxins/mineral_storeroom)
-"bDA" = (
+"bBQ" = (
/turf/open/floor/plasteel/loadingarea{
dir = 8
},
/area/toxins/mineral_storeroom)
-"bDB" = (
+"bBR" = (
/obj/machinery/conveyor{
dir = 8;
id = "toxmineral"
},
/obj/structure/plasticflaps,
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 9
},
+/turf/open/floor/plating,
/area/toxins/mineral_storeroom)
-"bDC" = (
+"bBS" = (
/obj/machinery/conveyor{
dir = 10;
icon_state = "conveyor0";
id = "toxmineral"
},
/obj/machinery/light/small,
-/turf/open/floor/plating{
- tag = "icon-warnplatecorner (EAST)"
- },
/obj/effect/turf_decal/stripes/corner{
dir = 4
},
+/turf/open/floor/plating{
+ tag = "icon-warnplatecorner (EAST)"
+ },
/area/toxins/mineral_storeroom)
-"bDD" = (
+"bBT" = (
/obj/structure/window/reinforced{
dir = 8
},
/turf/open/floor/engine,
/area/maintenance/aft)
-"bDE" = (
+"bBU" = (
/obj/effect/landmark{
name = "revenantspawn"
},
/turf/open/floor/engine,
/area/maintenance/aft)
-"bDF" = (
+"bBV" = (
/turf/open/floor/engine,
/area/maintenance/aft)
-"bDG" = (
+"bBW" = (
/obj/structure/window/reinforced{
dir = 4
},
/turf/open/floor/engine,
/area/maintenance/aft)
-"bDH" = (
+"bBX" = (
/obj/structure/mineral_door/wood{
name = "The Roosterdome"
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"bDI" = (
+"bBY" = (
/obj/structure/barricade/wooden,
/obj/structure/girder,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bDJ" = (
+"bBZ" = (
/obj/item/weapon/bedsheet/medical,
/obj/structure/bed,
/obj/effect/decal/cleanable/cobweb,
@@ -41327,11 +40640,11 @@
},
/turf/open/floor/plasteel/freezer,
/area/medical/virology)
-"bDK" = (
+"bCa" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/freezer,
/area/medical/virology)
-"bDL" = (
+"bCb" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/medical,
/obj/effect/landmark{
@@ -41339,13 +40652,13 @@
},
/turf/open/floor/plasteel/freezer,
/area/medical/virology)
-"bDM" = (
+"bCc" = (
/obj/structure/table,
/obj/item/weapon/reagent_containers/dropper,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/white,
/area/medical/virology)
-"bDN" = (
+"bCd" = (
/obj/effect/landmark/start{
name = "Virologist"
},
@@ -41355,7 +40668,7 @@
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/turf/open/floor/plasteel/white,
/area/medical/virology)
-"bDO" = (
+"bCe" = (
/obj/structure/table/glass,
/obj/item/clothing/gloves/color/latex,
/obj/machinery/requests_console{
@@ -41376,7 +40689,7 @@
dir = 4
},
/area/medical/virology)
-"bDP" = (
+"bCf" = (
/obj/structure/chair/office/light{
dir = 8
},
@@ -41388,11 +40701,11 @@
},
/turf/open/floor/plasteel/freezer,
/area/medical/medbay)
-"bDQ" = (
+"bCg" = (
/obj/structure/shuttle/engine/propulsion/burst,
/turf/closed/wall/mineral/titanium,
/area/shuttle/abandoned)
-"bDR" = (
+"bCh" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
/obj/machinery/door/poddoor/shutters/preopen{
@@ -41404,20 +40717,20 @@
},
/turf/open/floor/plating,
/area/medical/medbay)
-"bDS" = (
+"bCi" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/whiteblue/side{
dir = 8
},
/area/medical/medbay)
-"bDT" = (
+"bCj" = (
/obj/structure/window/reinforced{
dir = 1;
layer = 2.9
},
/turf/open/space,
/area/space)
-"bDU" = (
+"bCk" = (
/obj/machinery/light{
dir = 4
},
@@ -41426,7 +40739,7 @@
dir = 4
},
/area/medical/medbay)
-"bDV" = (
+"bCl" = (
/obj/machinery/light,
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
@@ -41434,7 +40747,7 @@
},
/turf/open/floor/plasteel/freezer,
/area/medical/surgery)
-"bDW" = (
+"bCm" = (
/obj/structure/table,
/obj/item/clothing/gloves/color/latex,
/obj/item/clothing/mask/surgical,
@@ -41443,13 +40756,13 @@
dir = 8
},
/area/medical/surgery)
-"bDX" = (
+"bCn" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
/turf/open/floor/plasteel/white,
/area/medical/surgery)
-"bDY" = (
+"bCo" = (
/obj/effect/landmark/start{
name = "Medical Doctor"
},
@@ -41458,14 +40771,14 @@
},
/turf/open/floor/plasteel/white,
/area/medical/surgery)
-"bDZ" = (
+"bCp" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9;
pixel_y = 0
},
/turf/open/floor/plasteel/white,
/area/medical/surgery)
-"bEa" = (
+"bCq" = (
/obj/structure/table,
/obj/item/weapon/surgical_drapes,
/turf/open/floor/plasteel/whiteblue/side{
@@ -41473,26 +40786,26 @@
dir = 4
},
/area/medical/surgery)
-"bEb" = (
+"bCr" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/yellow/corner,
/area/hallway/primary/aft)
-"bEc" = (
+"bCs" = (
/turf/closed/wall,
/area/hallway/primary/aft)
-"bEd" = (
+"bCt" = (
/obj/machinery/vending/cigarette,
/turf/open/floor/plasteel/yellow/corner{
dir = 1
},
/area/hallway/primary/aft)
-"bEe" = (
+"bCu" = (
/obj/machinery/vending/cola,
/turf/open/floor/plasteel/yellow/corner{
dir = 1
},
/area/hallway/primary/aft)
-"bEf" = (
+"bCv" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "applebush";
layer = 4.1
@@ -41504,7 +40817,7 @@
dir = 1
},
/area/hallway/primary/aft)
-"bEg" = (
+"bCw" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 4
},
@@ -41513,19 +40826,19 @@
dir = 9
},
/area/hallway/primary/aft)
-"bEh" = (
+"bCx" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
icon_state = "intact";
dir = 10
},
/turf/closed/wall/r_wall,
/area/atmos)
-"bEi" = (
+"bCy" = (
/turf/open/floor/plasteel/yellow/side{
dir = 1
},
/area/atmos)
-"bEj" = (
+"bCz" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -41539,7 +40852,7 @@
dir = 1
},
/area/atmos)
-"bEk" = (
+"bCA" = (
/obj/machinery/light{
dir = 1
},
@@ -41552,19 +40865,19 @@
dir = 1
},
/area/atmos)
-"bEl" = (
+"bCB" = (
/obj/machinery/computer/atmos_control,
/turf/open/floor/plasteel/yellow/side{
dir = 1
},
/area/atmos)
-"bEm" = (
+"bCC" = (
/obj/machinery/computer/atmos_alert,
/turf/open/floor/plasteel/yellow/side{
dir = 1
},
/area/atmos)
-"bEn" = (
+"bCD" = (
/obj/machinery/meter{
frequency = 1441;
id_tag = "waste_meter";
@@ -41577,7 +40890,7 @@
dir = 1
},
/area/atmos)
-"bEo" = (
+"bCE" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 8;
name = "Distro to Waste";
@@ -41590,7 +40903,7 @@
dir = 1
},
/area/atmos)
-"bEp" = (
+"bCF" = (
/obj/machinery/meter{
frequency = 1441;
id_tag = "distro_meter";
@@ -41601,7 +40914,7 @@
dir = 1
},
/area/atmos)
-"bEq" = (
+"bCG" = (
/obj/machinery/atmospherics/pipe/manifold/supply/visible{
tag = "icon-manifold (NORTH)";
icon_state = "manifold";
@@ -41611,7 +40924,7 @@
dir = 1
},
/area/atmos)
-"bEr" = (
+"bCH" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 8;
name = "Mix to Distro";
@@ -41621,13 +40934,13 @@
dir = 1
},
/area/atmos)
-"bEs" = (
+"bCI" = (
/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
dir = 4
},
/turf/open/floor/plasteel,
/area/atmos)
-"bEt" = (
+"bCJ" = (
/obj/structure/window/reinforced{
dir = 1;
layer = 2.9
@@ -41637,7 +40950,7 @@
},
/turf/open/space,
/area/space)
-"bEu" = (
+"bCK" = (
/obj/machinery/door/poddoor{
id = "chapelgun";
name = "mass driver door"
@@ -41646,7 +40959,7 @@
/area/chapel/main{
name = "Monastery"
})
-"bEv" = (
+"bCL" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -41654,13 +40967,13 @@
},
/turf/open/floor/plasteel,
/area/atmos)
-"bEw" = (
+"bCM" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 6
},
/turf/open/floor/plasteel,
/area/atmos)
-"bEx" = (
+"bCN" = (
/obj/structure/window/reinforced{
dir = 1;
layer = 2.9
@@ -41670,7 +40983,7 @@
},
/turf/open/space,
/area/space)
-"bEy" = (
+"bCO" = (
/obj/machinery/computer/atmos_control/tank{
frequency = 1441;
input_tag = "mix_in";
@@ -41683,31 +40996,31 @@
dir = 4
},
/area/atmos)
-"bEz" = (
+"bCP" = (
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/atmos)
-"bEA" = (
+"bCQ" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating/airless,
/area/atmos)
-"bEB" = (
+"bCR" = (
/obj/machinery/air_sensor{
frequency = 1441;
id_tag = "mix_sensor"
},
/turf/open/floor/engine/vacuum,
/area/atmos)
-"bEC" = (
+"bCS" = (
/obj/machinery/light/small{
dir = 4
},
/turf/open/floor/engine/vacuum,
/area/atmos)
-"bED" = (
+"bCT" = (
/obj/machinery/door/poddoor{
id = "mixvent";
name = "Starboard Vent"
@@ -41716,7 +41029,7 @@
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"bEE" = (
+"bCU" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 1;
frequency = 1441;
@@ -41734,7 +41047,7 @@
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"bEF" = (
+"bCV" = (
/obj/machinery/igniter{
icon_state = "igniter0";
id = "Incinerator";
@@ -41750,7 +41063,7 @@
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"bEG" = (
+"bCW" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
external_pressure_bound = 0;
@@ -41764,7 +41077,7 @@
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"bEH" = (
+"bCX" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/obj/machinery/light/small{
dir = 8
@@ -41779,43 +41092,43 @@
},
/turf/open/floor/plating,
/area/toxins/mineral_storeroom)
-"bEI" = (
+"bCY" = (
/obj/structure/closet/emcloset{
anchored = 1;
desc = "It's a storage unit for emergency breath masks and O2 tanks, and is securely bolted in place.";
name = "anchored emergency closet"
},
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plating,
/area/toxins/mineral_storeroom)
-"bEJ" = (
+"bCZ" = (
/obj/machinery/door/poddoor{
id = "toxinsdriver";
name = "toxins launcher bay door"
},
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plating,
/area/toxins/mineral_storeroom)
-"bEK" = (
+"bDa" = (
/obj/effect/landmark/event_spawn,
/turf/open/floor/engine,
/area/maintenance/aft)
-"bEL" = (
+"bDb" = (
/obj/item/stack/spacecash/c10,
-/turf/open/floor/plasteel/black,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plasteel/black,
/area/maintenance/aft)
-"bEM" = (
+"bDc" = (
/obj/machinery/atmospherics/components/unary/vent_pump,
/turf/open/floor/plasteel/freezer,
/area/medical/virology)
-"bEN" = (
+"bDd" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
on = 1;
@@ -41824,7 +41137,7 @@
},
/turf/open/floor/plasteel/freezer,
/area/medical/virology)
-"bEO" = (
+"bDe" = (
/obj/structure/table,
/obj/structure/disposalpipe/segment,
/obj/structure/table,
@@ -41832,10 +41145,10 @@
/obj/item/clothing/glasses/hud/health,
/turf/open/floor/plasteel/white,
/area/medical/virology)
-"bEP" = (
+"bDf" = (
/turf/open/floor/plasteel/whitegreen/corner,
/area/medical/virology)
-"bEQ" = (
+"bDg" = (
/obj/structure/table/glass,
/obj/item/weapon/storage/box/beakers{
pixel_x = 4;
@@ -41854,13 +41167,13 @@
dir = 6
},
/area/medical/virology)
-"bER" = (
+"bDh" = (
/obj/machinery/vending/cigarette,
/turf/open/floor/plasteel/whiteblue/side{
dir = 10
},
/area/medical/medbay)
-"bES" = (
+"bDi" = (
/obj/machinery/light,
/obj/item/weapon/soap/nanotrasen,
/obj/item/clothing/neck/stethoscope,
@@ -41868,24 +41181,24 @@
/obj/structure/table/glass,
/turf/open/floor/plasteel/whiteblue/side,
/area/medical/medbay)
-"bET" = (
+"bDj" = (
/obj/structure/closet/l3closet,
/turf/open/floor/plasteel/whiteblue/side{
dir = 6
},
/area/medical/medbay)
-"bEU" = (
+"bDk" = (
/obj/structure/table,
/obj/item/weapon/hemostat,
/obj/item/stack/medical/gauze,
/turf/open/floor/plasteel/whiteblue,
/area/medical/surgery)
-"bEV" = (
+"bDl" = (
/obj/structure/table,
/obj/item/weapon/surgicaldrill,
/turf/open/floor/plasteel/whiteblue,
/area/medical/surgery)
-"bEW" = (
+"bDm" = (
/obj/structure/table,
/obj/item/weapon/scalpel{
pixel_y = 12
@@ -41894,7 +41207,7 @@
/obj/machinery/light,
/turf/open/floor/plasteel/whiteblue,
/area/medical/surgery)
-"bEX" = (
+"bDn" = (
/obj/structure/table,
/obj/item/weapon/cautery{
pixel_x = 4
@@ -41904,12 +41217,12 @@
},
/turf/open/floor/plasteel/whiteblue,
/area/medical/surgery)
-"bEY" = (
+"bDo" = (
/obj/structure/table,
/obj/item/weapon/retractor,
/turf/open/floor/plasteel/whiteblue,
/area/medical/surgery)
-"bEZ" = (
+"bDp" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -41920,14 +41233,14 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
-"bFa" = (
+"bDq" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
-"bFb" = (
+"bDr" = (
/obj/machinery/camera{
c_tag = "Aft Primary Hallway Atmospherics";
dir = 2;
@@ -41948,13 +41261,13 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
-"bFc" = (
+"bDs" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
-"bFd" = (
+"bDt" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 4
},
@@ -41963,12 +41276,12 @@
dir = 10
},
/area/hallway/primary/aft)
-"bFe" = (
+"bDu" = (
/obj/machinery/meter,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible,
/turf/closed/wall/r_wall,
/area/atmos)
-"bFf" = (
+"bDv" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 4;
name = "External to Filter";
@@ -41976,7 +41289,7 @@
},
/turf/open/floor/plasteel,
/area/atmos)
-"bFg" = (
+"bDw" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -41990,7 +41303,7 @@
},
/turf/open/floor/plasteel,
/area/atmos)
-"bFh" = (
+"bDx" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -42001,7 +41314,7 @@
},
/turf/open/floor/plasteel,
/area/atmos)
-"bFi" = (
+"bDy" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
dir = 4
},
@@ -42012,7 +41325,7 @@
},
/turf/open/floor/plasteel,
/area/atmos)
-"bFj" = (
+"bDz" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -42020,7 +41333,7 @@
},
/turf/open/floor/plasteel,
/area/atmos)
-"bFk" = (
+"bDA" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -42033,7 +41346,7 @@
},
/turf/open/floor/plasteel,
/area/atmos)
-"bFl" = (
+"bDB" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible,
/obj/structure/cable{
d1 = 4;
@@ -42042,7 +41355,7 @@
},
/turf/open/floor/plasteel,
/area/atmos)
-"bFm" = (
+"bDC" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
@@ -42050,7 +41363,7 @@
/area/maintenance/port{
name = "Monastery Maintenance"
})
-"bFn" = (
+"bDD" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -42058,13 +41371,13 @@
/area/maintenance/port{
name = "Monastery Maintenance"
})
-"bFo" = (
+"bDE" = (
/obj/structure/cable{
icon_state = "1-8"
},
/turf/open/floor/plasteel,
/area/atmos)
-"bFp" = (
+"bDF" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
@@ -42072,13 +41385,13 @@
/area/maintenance/port{
name = "Monastery Maintenance"
})
-"bFq" = (
+"bDG" = (
/obj/machinery/atmospherics/pipe/manifold/green/visible{
dir = 1
},
/turf/open/floor/plasteel,
/area/atmos)
-"bFr" = (
+"bDH" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 4
},
@@ -42087,7 +41400,7 @@
dir = 4
},
/area/atmos)
-"bFs" = (
+"bDI" = (
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/obj/machinery/atmospherics/pipe/simple/green/visible{
@@ -42099,14 +41412,14 @@
},
/turf/open/floor/plating,
/area/atmos)
-"bFt" = (
+"bDJ" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 4
},
/turf/open/space,
/area/space)
-"bFu" = (
+"bDK" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 8;
frequency = 1441;
@@ -42115,7 +41428,7 @@
},
/turf/open/floor/engine/vacuum,
/area/atmos)
-"bFv" = (
+"bDL" = (
/obj/structure/cable/yellow,
/obj/structure/cable/yellow{
d2 = 2;
@@ -42135,33 +41448,33 @@
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"bFw" = (
+"bDM" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/turf/open/floor/plating,
/area/toxins/mineral_storeroom)
-"bFx" = (
+"bDN" = (
/obj/item/stack/medical/bruise_pack,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bFy" = (
+"bDO" = (
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
dir = 8
},
/turf/open/floor/engine,
/area/maintenance/aft)
-"bFz" = (
+"bDP" = (
/obj/structure/window/reinforced,
/turf/open/floor/engine,
/area/maintenance/aft)
-"bFA" = (
+"bDQ" = (
/obj/structure/window/reinforced,
/mob/living/simple_animal/chicken{
name = "Killer Cluck"
},
/turf/open/floor/engine,
/area/maintenance/aft)
-"bFB" = (
+"bDR" = (
/obj/machinery/door/window/eastright{
base_state = "left";
icon_state = "left";
@@ -42171,11 +41484,11 @@
/obj/structure/chair/stool,
/turf/open/floor/engine,
/area/maintenance/aft)
-"bFC" = (
+"bDS" = (
/obj/structure/grille/broken,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bFD" = (
+"bDT" = (
/obj/structure/table/glass,
/obj/item/weapon/reagent_containers/dropper,
/obj/item/weapon/reagent_containers/syringe,
@@ -42184,7 +41497,7 @@
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/turf/open/floor/plasteel/freezer,
/area/medical/virology)
-"bFE" = (
+"bDU" = (
/obj/structure/table/glass,
/obj/item/weapon/folder/white{
pixel_y = 4
@@ -42192,7 +41505,7 @@
/obj/item/weapon/pen/red,
/turf/open/floor/plasteel/freezer,
/area/medical/virology)
-"bFF" = (
+"bDV" = (
/obj/structure/table/glass,
/obj/item/weapon/folder/white{
pixel_y = 4
@@ -42201,7 +41514,7 @@
/obj/machinery/light/small,
/turf/open/floor/plasteel/freezer,
/area/medical/virology)
-"bFG" = (
+"bDW" = (
/obj/structure/table/glass,
/obj/item/weapon/reagent_containers/dropper,
/obj/item/weapon/reagent_containers/syringe,
@@ -42209,13 +41522,13 @@
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/turf/open/floor/plasteel/freezer,
/area/medical/virology)
-"bFH" = (
+"bDX" = (
/obj/structure/table,
/obj/structure/disposalpipe/segment,
/obj/machinery/reagentgrinder,
/turf/open/floor/plasteel/whitegreen/side,
/area/medical/virology)
-"bFI" = (
+"bDY" = (
/obj/machinery/light,
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/obj/structure/table,
@@ -42228,7 +41541,7 @@
/obj/item/weapon/pen/red,
/turf/open/floor/plasteel/whitegreen/side,
/area/medical/virology)
-"bFJ" = (
+"bDZ" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-21"
},
@@ -42238,22 +41551,22 @@
dir = 6
},
/area/medical/virology)
-"bFK" = (
+"bEa" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bFL" = (
+"bEb" = (
/obj/structure/closet/firecloset,
/obj/machinery/light/small{
dir = 1
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"bFM" = (
+"bEc" = (
/obj/structure/chair,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bFN" = (
+"bEd" = (
/obj/machinery/light/small{
dir = 1
},
@@ -42261,7 +41574,7 @@
icon_state = "platingdmg3"
},
/area/maintenance/aft)
-"bFO" = (
+"bEe" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -42279,7 +41592,7 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"bFP" = (
+"bEf" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -42293,7 +41606,7 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"bFQ" = (
+"bEg" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -42307,7 +41620,7 @@
dir = 8
},
/area/hallway/primary/aft)
-"bFR" = (
+"bEh" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -42324,20 +41637,20 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
-"bFS" = (
+"bEi" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
-"bFT" = (
+"bEj" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
},
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
-"bFU" = (
+"bEk" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 4
},
@@ -42348,14 +41661,14 @@
dir = 9
},
/area/hallway/primary/aft)
-"bFV" = (
+"bEl" = (
/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
dir = 1
},
/obj/machinery/meter,
/turf/closed/wall/r_wall,
/area/atmos)
-"bFW" = (
+"bEm" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 8;
name = "Air to External";
@@ -42363,7 +41676,7 @@
},
/turf/open/floor/plasteel,
/area/atmos)
-"bFX" = (
+"bEn" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
},
@@ -42371,26 +41684,26 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/atmos)
-"bFY" = (
+"bEo" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
},
/turf/open/floor/plasteel,
/area/atmos)
-"bFZ" = (
+"bEp" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/turf/open/floor/plasteel,
/area/atmos)
-"bGa" = (
+"bEq" = (
/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
initialize_directions = 11
},
/turf/open/floor/plasteel,
/area/atmos)
-"bGb" = (
+"bEr" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
},
@@ -42401,27 +41714,27 @@
},
/turf/open/floor/plasteel,
/area/atmos)
-"bGc" = (
+"bEs" = (
/obj/structure/chair/wood/normal{
icon_state = "wooden_chair";
dir = 1
},
/turf/open/floor/plasteel/black,
/area/library)
-"bGd" = (
+"bEt" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 8
},
/turf/open/floor/plasteel,
/area/atmos)
-"bGe" = (
+"bEu" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 8;
name = "Pure to Port"
},
/turf/open/floor/plasteel,
/area/atmos)
-"bGf" = (
+"bEv" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
},
@@ -42432,13 +41745,13 @@
},
/turf/open/floor/plasteel,
/area/atmos)
-"bGg" = (
+"bEw" = (
/turf/open/floor/plasteel/yellow/side{
tag = "icon-yellow (EAST)";
dir = 4
},
/area/atmos)
-"bGh" = (
+"bEx" = (
/obj/structure/cable/yellow,
/obj/machinery/power/turbine{
luminosity = 2
@@ -42447,7 +41760,7 @@
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"bGi" = (
+"bEy" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/obj/machinery/door/airlock/external{
cyclelinkeddir = 1;
@@ -42456,31 +41769,31 @@
},
/turf/open/floor/plating,
/area/toxins/mineral_storeroom)
-"bGj" = (
+"bEz" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
/turf/open/floor/carpet,
/area/library)
-"bGk" = (
+"bEA" = (
/obj/structure/chair/comfy/black{
dir = 1
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"bGl" = (
+"bEB" = (
/obj/structure/chair/stool,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bGm" = (
+"bEC" = (
/obj/structure/grille,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bGn" = (
+"bED" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall/r_wall,
/area/medical/virology)
-"bGo" = (
+"bEE" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -42492,7 +41805,7 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"bGp" = (
+"bEF" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -42503,7 +41816,7 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"bGq" = (
+"bEG" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -42517,7 +41830,7 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"bGr" = (
+"bEH" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -42531,7 +41844,7 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"bGs" = (
+"bEI" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -42546,11 +41859,11 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"bGt" = (
+"bEJ" = (
/obj/structure/chair/stool,
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
-"bGu" = (
+"bEK" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 4
},
@@ -42558,29 +41871,29 @@
dir = 10
},
/area/hallway/primary/aft)
-"bGv" = (
+"bEL" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 9
},
/turf/closed/wall/r_wall,
/area/atmos)
-"bGw" = (
+"bEM" = (
/turf/open/floor/plasteel/yellow/side,
/area/atmos)
-"bGx" = (
+"bEN" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
/turf/open/floor/plasteel/yellow/side,
/area/atmos)
-"bGy" = (
+"bEO" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/yellow/side,
/area/atmos)
-"bGz" = (
+"bEP" = (
/obj/machinery/space_heater,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -42592,27 +41905,27 @@
},
/turf/open/floor/plasteel/yellow/side,
/area/atmos)
-"bGA" = (
+"bEQ" = (
/obj/machinery/space_heater,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/yellow/side,
/area/atmos)
-"bGB" = (
+"bER" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/atmos)
-"bGC" = (
+"bES" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
/turf/open/floor/plasteel,
/area/atmos)
-"bGD" = (
+"bET" = (
/obj/structure/table,
/obj/item/clothing/head/welding{
pixel_x = -3;
@@ -42630,7 +41943,7 @@
},
/turf/open/floor/plasteel/yellow/side,
/area/atmos)
-"bGE" = (
+"bEU" = (
/obj/structure/table,
/obj/item/stack/sheet/glass{
amount = 50
@@ -42641,7 +41954,7 @@
/obj/item/device/t_scanner,
/turf/open/floor/plasteel/yellow/side,
/area/atmos)
-"bGF" = (
+"bEV" = (
/obj/structure/table,
/obj/item/stack/sheet/metal{
amount = 50
@@ -42660,37 +41973,37 @@
},
/turf/open/floor/plasteel/yellow/side,
/area/atmos)
-"bGG" = (
+"bEW" = (
/obj/machinery/meter,
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 4
},
/turf/open/floor/plasteel,
/area/atmos)
-"bGH" = (
+"bEX" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 4;
initialize_directions = 11
},
/turf/open/floor/plasteel,
/area/atmos)
-"bGI" = (
+"bEY" = (
/turf/open/floor/plasteel,
/area/atmos)
-"bGJ" = (
+"bEZ" = (
/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
dir = 8
},
/turf/open/floor/plasteel,
/area/atmos)
-"bGK" = (
+"bFa" = (
/obj/machinery/atmospherics/pipe/simple/green/visible,
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
dir = 4
},
/turf/open/floor/plasteel,
/area/atmos)
-"bGL" = (
+"bFb" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 8;
name = "N2O Outlet Pump";
@@ -42701,7 +42014,7 @@
dir = 4
},
/area/atmos)
-"bGM" = (
+"bFc" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
external_pressure_bound = 0;
@@ -42715,10 +42028,10 @@
},
/turf/open/floor/engine/n2o,
/area/atmos)
-"bGN" = (
+"bFd" = (
/turf/open/floor/engine/n2o,
/area/atmos)
-"bGO" = (
+"bFe" = (
/obj/structure/sign/fire{
pixel_x = 0;
pixel_y = 0
@@ -42727,7 +42040,7 @@
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"bGP" = (
+"bFf" = (
/obj/machinery/door/poddoor{
id = "turbinevent";
name = "Aft Vent"
@@ -42736,30 +42049,30 @@
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"bGQ" = (
+"bFg" = (
/obj/structure/lattice/catwalk,
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/turf/open/space,
/area/space)
-"bGR" = (
+"bFh" = (
/obj/structure/sign/poster{
pixel_x = 0;
pixel_y = -32
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"bGS" = (
+"bFi" = (
/obj/item/trash/chips,
/obj/effect/decal/cleanable/deadcockroach,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bGT" = (
+"bFj" = (
/obj/structure/table,
/obj/item/weapon/paper,
/obj/item/weapon/pen,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bGU" = (
+"bFk" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -42772,7 +42085,7 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"bGV" = (
+"bFl" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -42788,7 +42101,7 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"bGW" = (
+"bFm" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -42800,7 +42113,7 @@
/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bGX" = (
+"bFn" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -42816,7 +42129,7 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"bGY" = (
+"bFo" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -42832,7 +42145,7 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"bGZ" = (
+"bFp" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -42845,7 +42158,7 @@
/mob/living/simple_animal/mouse/gray,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bHa" = (
+"bFq" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -42864,7 +42177,7 @@
icon_state = "platingdmg3"
},
/area/maintenance/aft)
-"bHb" = (
+"bFr" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -42877,22 +42190,22 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"bHc" = (
+"bFs" = (
/turf/closed/wall/r_wall,
/area/engine/gravity_generator)
-"bHd" = (
+"bFt" = (
/obj/structure/table,
/obj/item/trash/chips,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bHe" = (
+"bFu" = (
/turf/closed/wall,
/area/storage/tech)
-"bHf" = (
+"bFv" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall,
/area/storage/tech)
-"bHg" = (
+"bFw" = (
/obj/machinery/light{
dir = 8
},
@@ -42905,40 +42218,40 @@
dir = 8
},
/area/hallway/primary/aft)
-"bHh" = (
+"bFx" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
-"bHi" = (
+"bFy" = (
/obj/structure/table,
/obj/item/weapon/reagent_containers/food/drinks/soda_cans/lemon_lime,
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
-"bHj" = (
+"bFz" = (
/obj/structure/table,
/obj/item/clothing/gloves/color/fyellow,
/obj/item/weapon/wrench,
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
-"bHk" = (
+"bFA" = (
/obj/structure/table,
/obj/item/weapon/storage/toolbox/mechanical,
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
-"bHl" = (
+"bFB" = (
/obj/machinery/light{
dir = 4;
icon_state = "tube1"
},
/turf/open/floor/plasteel/yellow/corner,
/area/hallway/primary/aft)
-"bHm" = (
+"bFC" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/atmos)
-"bHn" = (
+"bFD" = (
/obj/machinery/door/firedoor/heavy,
/obj/machinery/door/airlock/glass_atmos{
name = "Atmospherics Monitoring";
@@ -42948,7 +42261,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/atmos)
-"bHo" = (
+"bFE" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 0;
name = "Waste In";
@@ -42956,11 +42269,11 @@
},
/turf/open/floor/plasteel,
/area/atmos)
-"bHp" = (
+"bFF" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/atmos)
-"bHq" = (
+"bFG" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 0;
name = "Air to Port";
@@ -42975,7 +42288,7 @@
},
/turf/open/floor/plasteel,
/area/atmos)
-"bHr" = (
+"bFH" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 0;
name = "Mix to Port";
@@ -42983,15 +42296,15 @@
},
/turf/open/floor/plasteel,
/area/atmos)
-"bHs" = (
+"bFI" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible,
/turf/open/floor/plasteel,
/area/atmos)
-"bHt" = (
+"bFJ" = (
/obj/machinery/atmospherics/pipe/simple/green/visible,
/turf/open/floor/plasteel,
/area/atmos)
-"bHu" = (
+"bFK" = (
/obj/machinery/computer/atmos_control/tank{
frequency = 1441;
input_tag = "n2o_in";
@@ -43004,52 +42317,52 @@
dir = 4
},
/area/atmos)
-"bHv" = (
+"bFL" = (
/obj/machinery/air_sensor{
frequency = 1441;
id_tag = "n2o_sensor"
},
/turf/open/floor/engine/n2o,
/area/atmos)
-"bHw" = (
+"bFM" = (
/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
/turf/open/floor/engine/n2o,
/area/atmos)
-"bHx" = (
+"bFN" = (
/obj/machinery/light/small{
dir = 4
},
/turf/open/floor/engine/n2o,
/area/atmos)
-"bHy" = (
+"bFO" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bHz" = (
+"bFP" = (
/obj/structure/closet/emcloset,
/obj/effect/decal/cleanable/deadcockroach,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bHA" = (
+"bFQ" = (
/obj/structure/closet/firecloset,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bHB" = (
+"bFR" = (
/obj/structure/rack,
/obj/item/weapon/book/manual/detective,
/obj/item/clothing/head/that,
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bHC" = (
+"bFS" = (
/obj/structure/girder,
/turf/closed/wall,
/area/maintenance/aft)
-"bHD" = (
+"bFT" = (
/obj/item/trash/raisins,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bHE" = (
+"bFU" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -43066,7 +42379,7 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"bHF" = (
+"bFV" = (
/obj/structure/cable{
icon_state = "1-8"
},
@@ -43076,10 +42389,10 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"bHG" = (
+"bFW" = (
/turf/open/floor/plasteel/black,
/area/engine/gravity_generator)
-"bHH" = (
+"bFX" = (
/obj/machinery/camera{
c_tag = "Gravity Generator";
dir = 2;
@@ -43091,29 +42404,29 @@
scrub_N2O = 0;
scrub_Toxins = 0
},
-/turf/open/floor/plasteel/black,
/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/black,
/area/engine/gravity_generator)
-"bHI" = (
+"bFY" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/turf/open/floor/plasteel/black,
/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/black,
/area/engine/gravity_generator)
-"bHJ" = (
+"bFZ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
-/turf/open/floor/plasteel/black,
/obj/effect/turf_decal/stripes/corner{
dir = 1
},
+/turf/open/floor/plasteel/black,
/area/engine/gravity_generator)
-"bHK" = (
+"bGa" = (
/turf/closed/wall/r_wall,
/area/storage/tech)
-"bHL" = (
+"bGb" = (
/obj/structure/table,
/obj/item/device/flashlight{
pixel_x = 1;
@@ -43131,7 +42444,7 @@
},
/turf/open/floor/plasteel/black,
/area/storage/tech)
-"bHM" = (
+"bGc" = (
/obj/structure/table,
/obj/item/device/aicard,
/obj/item/weapon/aiModule/reset,
@@ -43142,7 +42455,7 @@
},
/turf/open/floor/plasteel/black,
/area/storage/tech)
-"bHN" = (
+"bGd" = (
/obj/structure/table,
/obj/machinery/cell_charger{
pixel_y = 5
@@ -43150,7 +42463,7 @@
/obj/item/weapon/stock_parts/cell/high/plus,
/turf/open/floor/plasteel/black,
/area/storage/tech)
-"bHO" = (
+"bGe" = (
/obj/structure/rack{
dir = 8;
layer = 2.9
@@ -43175,7 +42488,7 @@
},
/turf/open/floor/plasteel/black,
/area/storage/tech)
-"bHP" = (
+"bGf" = (
/obj/structure/rack{
dir = 8;
layer = 2.9
@@ -43197,7 +42510,7 @@
/obj/item/weapon/circuitboard/computer/shuttle/monastery_shuttle,
/turf/open/floor/plasteel/black,
/area/storage/tech)
-"bHQ" = (
+"bGg" = (
/obj/structure/rack,
/obj/item/weapon/circuitboard/machine/telecomms/processor,
/obj/item/weapon/circuitboard/machine/telecomms/receiver,
@@ -43209,7 +42522,7 @@
},
/turf/open/floor/plasteel/black,
/area/storage/tech)
-"bHR" = (
+"bGh" = (
/obj/structure/rack,
/obj/item/weapon/electronics/airalarm,
/obj/item/weapon/electronics/airlock,
@@ -43222,15 +42535,15 @@
},
/turf/open/floor/plasteel/black,
/area/storage/tech)
-"bHS" = (
+"bGi" = (
/obj/machinery/computer/arcade,
/turf/open/floor/plasteel/black,
/area/storage/tech)
-"bHT" = (
+"bGj" = (
/obj/machinery/vending/assist,
/turf/open/floor/plasteel/black,
/area/storage/tech)
-"bHU" = (
+"bGk" = (
/obj/machinery/power/apc{
name = "Aft Hall APC";
dir = 8;
@@ -43246,7 +42559,7 @@
dir = 8
},
/area/hallway/primary/aft)
-"bHV" = (
+"bGl" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -43263,10 +42576,10 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
-"bHW" = (
+"bGm" = (
/turf/open/floor/plasteel/yellow/corner,
/area/hallway/primary/aft)
-"bHX" = (
+"bGn" = (
/obj/structure/table/reinforced,
/obj/machinery/door/firedoor/heavy,
/obj/machinery/door/window/northleft{
@@ -43280,12 +42593,12 @@
layer = 2.9;
name = "atmos blast door"
},
+/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel{
name = "floor"
},
-/obj/effect/turf_decal/delivery,
/area/atmos)
-"bHY" = (
+"bGo" = (
/obj/structure/chair/office/dark{
dir = 8
},
@@ -43294,7 +42607,7 @@
},
/turf/open/floor/plasteel,
/area/atmos)
-"bHZ" = (
+"bGp" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
@@ -43302,49 +42615,49 @@
},
/turf/open/floor/plasteel,
/area/atmos)
-"bIa" = (
+"bGq" = (
/obj/structure/tank_dispenser,
/turf/open/floor/plasteel,
/area/atmos)
-"bIb" = (
+"bGr" = (
/obj/machinery/pipedispenser,
/turf/open/floor/plasteel,
/area/atmos)
-"bIc" = (
+"bGs" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/turf/open/floor/plasteel,
/area/atmos)
-"bId" = (
+"bGt" = (
/obj/structure/closet/secure_closet/atmospherics,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel,
/area/atmos)
-"bIe" = (
+"bGu" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 4
},
/obj/machinery/portable_atmospherics/canister,
-/turf/open/floor/plasteel{
+/obj/effect/turf_decal/bot{
dir = 2
},
-/obj/effect/turf_decal/bot{
+/turf/open/floor/plasteel{
dir = 2
},
/area/atmos)
-"bIf" = (
+"bGv" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 8
},
-/turf/open/floor/plasteel{
+/obj/effect/turf_decal/bot{
dir = 2
},
-/obj/effect/turf_decal/bot{
+/turf/open/floor/plasteel{
dir = 2
},
/area/atmos)
-"bIg" = (
+"bGw" = (
/obj/machinery/atmospherics/components/trinary/filter{
dir = 1;
filter_type = "n2o";
@@ -43352,7 +42665,7 @@
},
/turf/open/floor/plasteel,
/area/atmos)
-"bIh" = (
+"bGx" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 8;
frequency = 1441;
@@ -43361,20 +42674,20 @@
},
/turf/open/floor/engine/n2o,
/area/atmos)
-"bIi" = (
+"bGy" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 4
},
/turf/open/floor/plating/airless,
/area/space/nearstation)
-"bIj" = (
+"bGz" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 9
},
/turf/open/space,
/area/space)
-"bIk" = (
+"bGA" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
on = 1;
@@ -43383,46 +42696,46 @@
},
/turf/open/floor/plasteel/black,
/area/library)
-"bIl" = (
+"bGB" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bIm" = (
+"bGC" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/turf/closed/wall,
/area/maintenance/aft)
-"bIn" = (
+"bGD" = (
/turf/open/floor/plasteel/vault{
dir = 1
},
/area/engine/gravity_generator)
-"bIo" = (
+"bGE" = (
/turf/open/floor/plasteel/vault{
dir = 8
},
/area/engine/gravity_generator)
-"bIp" = (
+"bGF" = (
/turf/open/floor/plasteel/vault{
dir = 4
},
/area/engine/gravity_generator)
-"bIq" = (
+"bGG" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
-/turf/open/floor/plasteel/black,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel/black,
/area/engine/gravity_generator)
-"bIr" = (
+"bGH" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall/r_wall,
/area/engine/gravity_generator)
-"bIs" = (
+"bGI" = (
/obj/structure/closet/radiation,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1;
@@ -43432,12 +42745,12 @@
dir = 2;
pixel_y = 22
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 9
},
+/turf/open/floor/plasteel,
/area/engine/gravity_generator)
-"bIt" = (
+"bGJ" = (
/obj/structure/closet/radiation,
/obj/machinery/camera{
c_tag = "Gravity Generator Foyer";
@@ -43453,20 +42766,20 @@
pixel_x = 0;
pixel_y = 26
},
-/turf/open/floor/plasteel{
- tag = "icon-warning (NORTHEAST)"
- },
/obj/effect/turf_decal/stripes/line{
dir = 5
},
+/turf/open/floor/plasteel{
+ tag = "icon-warning (NORTHEAST)"
+ },
/area/engine/gravity_generator)
-"bIu" = (
+"bGK" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall/r_wall,
/area/storage/tech)
-"bIv" = (
+"bGL" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -43477,12 +42790,12 @@
pixel_x = -32;
pixel_y = 0
},
-/turf/open/floor/plasteel/black,
/obj/effect/turf_decal/stripes/corner{
dir = 1
},
+/turf/open/floor/plasteel/black,
/area/storage/tech)
-"bIw" = (
+"bGM" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
@@ -43491,42 +42804,42 @@
},
/turf/open/floor/plasteel/black,
/area/storage/tech)
-"bIx" = (
+"bGN" = (
/turf/open/floor/plasteel/black,
/area/storage/tech)
-"bIy" = (
+"bGO" = (
/obj/machinery/light_switch{
pixel_x = 25
},
/turf/open/floor/plasteel/black,
/area/storage/tech)
-"bIz" = (
+"bGP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
-"bIA" = (
+"bGQ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
-"bIB" = (
+"bGR" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1;
initialize_directions = 11
},
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
-"bIC" = (
+"bGS" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1;
initialize_directions = 11
},
/turf/open/floor/plasteel/yellow/corner,
/area/hallway/primary/aft)
-"bID" = (
+"bGT" = (
/obj/structure/table/reinforced,
/obj/machinery/door/firedoor/heavy,
/obj/machinery/door/window/northleft{
@@ -43543,12 +42856,12 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
+/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel{
name = "floor"
},
-/obj/effect/turf_decal/delivery,
/area/atmos)
-"bIE" = (
+"bGU" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -43560,14 +42873,14 @@
},
/turf/open/floor/plasteel,
/area/atmos)
-"bIF" = (
+"bGV" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
/turf/open/floor/plasteel,
/area/atmos)
-"bIG" = (
+"bGW" = (
/obj/structure/rack{
dir = 8;
layer = 2.9
@@ -43594,7 +42907,7 @@
},
/turf/open/floor/plasteel,
/area/atmos)
-"bIH" = (
+"bGX" = (
/obj/machinery/pipedispenser/disposal,
/obj/machinery/light{
icon_state = "tube1";
@@ -43607,21 +42920,21 @@
},
/turf/open/floor/plasteel,
/area/atmos)
-"bII" = (
+"bGY" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
},
/turf/open/floor/plasteel,
/area/atmos)
-"bIJ" = (
+"bGZ" = (
/obj/machinery/suit_storage_unit/atmos,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel,
/area/atmos)
-"bIK" = (
+"bHa" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 4;
initialize_directions = 11
@@ -43629,18 +42942,18 @@
/obj/machinery/meter,
/turf/open/floor/plasteel,
/area/atmos)
-"bIL" = (
+"bHb" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel,
/area/atmos)
-"bIM" = (
+"bHc" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 8
},
/obj/machinery/meter,
/turf/open/floor/plasteel,
/area/atmos)
-"bIN" = (
+"bHd" = (
/obj/machinery/light{
dir = 4
},
@@ -43649,7 +42962,7 @@
dir = 4
},
/area/atmos)
-"bIO" = (
+"bHe" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
tag = "icon-intact (SOUTHEAST)";
icon_state = "intact";
@@ -43658,7 +42971,7 @@
/obj/item/weapon/wrench,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bIP" = (
+"bHf" = (
/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{
tag = "icon-manifold (EAST)";
icon_state = "manifold";
@@ -43667,73 +42980,73 @@
/obj/machinery/meter,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bIQ" = (
+"bHg" = (
/obj/item/weapon/broken_bottle,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bIR" = (
+"bHh" = (
/obj/effect/decal/cleanable/ash,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bIS" = (
+"bHi" = (
/obj/structure/closet,
/obj/item/weapon/restraints/handcuffs/cable,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bIT" = (
+"bHj" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering{
name = "Gravity Generator";
req_access_txt = "11"
},
+/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel{
name = "floor"
},
-/obj/effect/turf_decal/delivery,
/area/engine/gravity_generator)
-"bIU" = (
+"bHk" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
on = 1;
scrub_N2O = 0;
scrub_Toxins = 0
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel,
/area/engine/gravity_generator)
-"bIV" = (
+"bHl" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
on = 1
},
-/turf/open/floor/plasteel{
- tag = "icon-warning (EAST)"
- },
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plasteel{
+ tag = "icon-warning (EAST)"
+ },
/area/engine/gravity_generator)
-"bIW" = (
+"bHm" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering{
name = "Gravity Generator";
req_access_txt = "11"
},
+/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel{
name = "floor"
},
-/obj/effect/turf_decal/delivery,
/area/storage/tech)
-"bIX" = (
+"bHn" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8;
initialize_directions = 11
},
/turf/open/floor/plasteel/black,
/area/storage/tech)
-"bIY" = (
+"bHo" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
on = 1;
@@ -43742,7 +43055,7 @@
},
/turf/open/floor/plasteel/black,
/area/storage/tech)
-"bIZ" = (
+"bHp" = (
/obj/structure/rack{
dir = 8;
layer = 2.9
@@ -43759,7 +43072,7 @@
/obj/item/weapon/circuitboard/computer/scan_consolenew,
/turf/open/floor/plasteel/black,
/area/storage/tech)
-"bJa" = (
+"bHq" = (
/obj/structure/rack{
dir = 8;
layer = 2.9
@@ -43774,7 +43087,7 @@
},
/turf/open/floor/plasteel/black,
/area/storage/tech)
-"bJb" = (
+"bHr" = (
/obj/structure/rack{
dir = 8;
layer = 2.9
@@ -43793,17 +43106,17 @@
},
/turf/open/floor/plasteel/black,
/area/storage/tech)
-"bJc" = (
+"bHs" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel/black,
/area/storage/tech)
-"bJd" = (
+"bHt" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
on = 1
},
/turf/open/floor/plasteel/black,
/area/storage/tech)
-"bJe" = (
+"bHu" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -43815,7 +43128,7 @@
},
/turf/open/floor/plasteel/black,
/area/storage/tech)
-"bJf" = (
+"bHv" = (
/obj/machinery/door/airlock/engineering{
name = "Tech Storage";
req_access_txt = "23"
@@ -43830,7 +43143,7 @@
},
/turf/open/floor/plasteel/black,
/area/storage/tech)
-"bJg" = (
+"bHw" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -43844,7 +43157,7 @@
dir = 8
},
/area/hallway/primary/aft)
-"bJh" = (
+"bHx" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -43858,7 +43171,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
-"bJi" = (
+"bHy" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -43866,7 +43179,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
-"bJj" = (
+"bHz" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -43880,7 +43193,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
-"bJk" = (
+"bHA" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -43889,16 +43202,16 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
-"bJl" = (
+"bHB" = (
/obj/structure/plasticflaps{
opacity = 1
},
+/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel{
name = "floor"
},
-/obj/effect/turf_decal/delivery,
/area/atmos)
-"bJm" = (
+"bHC" = (
/obj/machinery/navbeacon{
codes_txt = "delivery;dir=4";
freq = 1400;
@@ -43908,7 +43221,7 @@
dir = 4
},
/area/atmos)
-"bJn" = (
+"bHD" = (
/obj/structure/disposalpipe/sortjunction{
dir = 2;
icon_state = "pipe-j2s";
@@ -43922,18 +43235,18 @@
},
/turf/open/floor/plasteel,
/area/atmos)
-"bJo" = (
+"bHE" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 8
},
/turf/open/floor/plasteel,
/area/atmos)
-"bJp" = (
+"bHF" = (
/obj/machinery/pipedispenser/disposal/transit_tube,
/turf/open/floor/plasteel,
/area/atmos)
-"bJq" = (
+"bHG" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 4;
initialize_directions = 11
@@ -43941,7 +43254,7 @@
/obj/item/weapon/wrench,
/turf/open/floor/plasteel,
/area/atmos)
-"bJr" = (
+"bHH" = (
/obj/machinery/camera{
c_tag = "Atmospherics Starboard";
dir = 8;
@@ -43957,7 +43270,7 @@
dir = 4
},
/area/atmos)
-"bJs" = (
+"bHI" = (
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/obj/structure/window/reinforced/fulltile,
@@ -43966,7 +43279,7 @@
},
/turf/open/floor/plating,
/area/atmos)
-"bJt" = (
+"bHJ" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
external_pressure_bound = 0;
@@ -43980,17 +43293,17 @@
},
/turf/open/floor/engine/plasma,
/area/atmos)
-"bJu" = (
+"bHK" = (
/turf/open/floor/engine/plasma,
/area/atmos)
-"bJv" = (
+"bHL" = (
/obj/effect/landmark{
name = "xeno_spawn";
pixel_x = -1
},
/turf/open/floor/engine/plasma,
/area/atmos)
-"bJw" = (
+"bHM" = (
/obj/structure/disposalpipe/junction{
dir = 2;
icon_state = "pipe-y"
@@ -43999,7 +43312,7 @@
icon_state = "platingdmg3"
},
/area/maintenance/aft)
-"bJx" = (
+"bHN" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -44007,14 +43320,14 @@
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating/airless,
/area/maintenance/aft)
-"bJy" = (
+"bHO" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/structure/chair/stool,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bJz" = (
+"bHP" = (
/obj/item/stack/sheet/cardboard{
amount = 14
},
@@ -44025,21 +43338,21 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"bJA" = (
+"bHQ" = (
/obj/machinery/door/airlock/atmos{
name = "Atmospherics Maintenance";
req_access_txt = "12;24"
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"bJB" = (
+"bHR" = (
/obj/machinery/atmospherics/components/binary/valve,
/obj/effect/landmark{
name = "blobstart"
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"bJC" = (
+"bHS" = (
/obj/machinery/light/small{
dir = 4
},
@@ -44050,22 +43363,22 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"bJD" = (
+"bHT" = (
/obj/item/weapon/picket_sign,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bJE" = (
+"bHU" = (
/obj/structure/bonfire,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bJF" = (
+"bHV" = (
/obj/structure/closet,
/obj/item/weapon/cigbutt/cigarbutt,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bJG" = (
+"bHW" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -44076,57 +43389,57 @@
icon_state = "platingdmg3"
},
/area/maintenance/aft)
-"bJH" = (
+"bHX" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bJI" = (
+"bHY" = (
/obj/machinery/gravity_generator/main/station,
/turf/open/floor/plasteel/vault{
dir = 8
},
/area/engine/gravity_generator)
-"bJJ" = (
+"bHZ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
-/turf/open/floor/plasteel/black,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel/black,
/area/engine/gravity_generator)
-"bJK" = (
+"bIa" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/closed/wall/r_wall,
/area/engine/gravity_generator)
-"bJL" = (
+"bIb" = (
/obj/structure/chair/office/light,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 10
},
+/turf/open/floor/plasteel,
/area/engine/gravity_generator)
-"bJM" = (
+"bIc" = (
/obj/machinery/power/terminal,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 6
},
+/turf/open/floor/plasteel,
/area/engine/gravity_generator)
-"bJN" = (
+"bId" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/closed/wall/r_wall,
/area/storage/tech)
-"bJO" = (
+"bIe" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'RADIOACTIVE AREA'";
icon_state = "radiation";
@@ -44137,12 +43450,12 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/turf/open/floor/plasteel/black,
/obj/effect/turf_decal/stripes/corner{
dir = 4
},
+/turf/open/floor/plasteel/black,
/area/storage/tech)
-"bJP" = (
+"bIf" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -44150,24 +43463,24 @@
/obj/item/device/radio/beacon,
/turf/open/floor/plasteel/black,
/area/storage/tech)
-"bJQ" = (
+"bIg" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
tag = "icon-manifold-b-f (NORTH)";
dir = 1
},
/turf/open/floor/plasteel/black,
/area/storage/tech)
-"bJR" = (
+"bIh" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/black,
/area/storage/tech)
-"bJS" = (
+"bIi" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel/black,
/area/storage/tech)
-"bJT" = (
+"bIj" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -44179,19 +43492,19 @@
},
/turf/open/floor/plasteel/black,
/area/storage/tech)
-"bJU" = (
+"bIk" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
/turf/open/floor/plasteel/yellow/corner,
/area/hallway/primary/aft)
-"bJV" = (
+"bIl" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/yellow/corner,
/area/hallway/primary/aft)
-"bJW" = (
+"bIm" = (
/obj/machinery/camera{
c_tag = "Aft Primary Hallway Engineering";
dir = 1;
@@ -44205,7 +43518,7 @@
},
/turf/open/floor/plasteel/yellow/corner,
/area/hallway/primary/aft)
-"bJX" = (
+"bIn" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -44216,14 +43529,14 @@
},
/turf/open/floor/plasteel/yellow/corner,
/area/hallway/primary/aft)
-"bJY" = (
+"bIo" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-02"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/yellow/corner,
/area/hallway/primary/aft)
-"bJZ" = (
+"bIp" = (
/obj/machinery/door/firedoor/heavy,
/obj/machinery/door/airlock/glass_atmos{
name = "Atmospherics Monitoring";
@@ -44232,7 +43545,7 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel,
/area/atmos)
-"bKa" = (
+"bIq" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 8
@@ -44248,20 +43561,20 @@
},
/turf/open/floor/plasteel,
/area/atmos)
-"bKb" = (
+"bIr" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 8
},
/obj/structure/chair/stool,
/turf/open/floor/plasteel,
/area/atmos)
-"bKc" = (
+"bIs" = (
/obj/machinery/atmospherics/components/unary/thermomachine/heater{
dir = 8
},
/turf/open/floor/plasteel,
/area/atmos)
-"bKd" = (
+"bIt" = (
/obj/machinery/computer/atmos_control/tank{
frequency = 1441;
input_tag = "tox_in";
@@ -44274,36 +43587,36 @@
dir = 4
},
/area/atmos)
-"bKe" = (
+"bIu" = (
/obj/machinery/air_sensor{
frequency = 1441;
id_tag = "tox_sensor"
},
/turf/open/floor/engine/plasma,
/area/atmos)
-"bKf" = (
+"bIv" = (
/obj/machinery/portable_atmospherics/canister/toxins,
/turf/open/floor/engine/plasma,
/area/atmos)
-"bKg" = (
+"bIw" = (
/obj/machinery/light/small{
dir = 4
},
/turf/open/floor/engine/plasma,
/area/atmos)
-"bKh" = (
+"bIx" = (
/obj/structure/table,
/obj/item/weapon/storage/box/mousetraps,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bKi" = (
+"bIy" = (
/obj/structure/table,
/obj/item/stack/cable_coil,
/obj/item/weapon/extinguisher,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bKj" = (
+"bIz" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 1;
name = "Connector Port (Air Supply)"
@@ -44311,32 +43624,32 @@
/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bKk" = (
+"bIA" = (
/obj/machinery/atmospherics/components/unary/tank/air{
dir = 1
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"bKl" = (
+"bIB" = (
/obj/structure/grille/broken,
/obj/structure/piano,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bKm" = (
+"bIC" = (
/obj/item/weapon/reagent_containers/food/snacks/beans,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bKn" = (
+"bID" = (
/obj/structure/closet,
/obj/item/weapon/shard,
/obj/item/stack/spacecash/c10,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bKo" = (
+"bIE" = (
/obj/machinery/space_heater,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bKp" = (
+"bIF" = (
/obj/machinery/light,
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
@@ -44344,31 +43657,31 @@
on = 1;
pressure_checks = 1
},
-/turf/open/floor/plasteel/black,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel/black,
/area/engine/gravity_generator)
-"bKq" = (
+"bIG" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/turf/open/floor/plasteel/black,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel/black,
/area/engine/gravity_generator)
-"bKr" = (
+"bIH" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9;
pixel_y = 0
},
-/turf/open/floor/plasteel/black,
/obj/effect/turf_decal/stripes/corner{
dir = 4
},
+/turf/open/floor/plasteel/black,
/area/engine/gravity_generator)
-"bKs" = (
+"bII" = (
/obj/machinery/power/apc{
dir = 8;
name = "Gravity Generator APC";
@@ -44388,12 +43701,12 @@
d2 = 4
},
/obj/machinery/light,
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plating,
/area/engine/gravity_generator)
-"bKt" = (
+"bIJ" = (
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
@@ -44401,20 +43714,20 @@
/obj/machinery/power/smes{
charge = 5e+006
},
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plating,
/area/engine/gravity_generator)
-"bKu" = (
+"bIK" = (
/obj/machinery/suit_storage_unit/standard_unit,
/turf/open/floor/plasteel/black,
/area/storage/tech)
-"bKv" = (
+"bIL" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/black,
/area/storage/tech)
-"bKw" = (
+"bIM" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/closet/crate/engineering/electrical,
/obj/item/stack/cable_coil,
@@ -44424,7 +43737,7 @@
/obj/item/weapon/electronics/airlock,
/turf/open/floor/plasteel/black,
/area/storage/tech)
-"bKx" = (
+"bIN" = (
/obj/structure/rack,
/obj/item/weapon/stock_parts/subspace/filter,
/obj/item/weapon/stock_parts/subspace/filter,
@@ -44434,7 +43747,7 @@
/obj/item/weapon/stock_parts/subspace/transmitter,
/turf/open/floor/plasteel/black,
/area/storage/tech)
-"bKy" = (
+"bIO" = (
/obj/structure/rack,
/obj/item/weapon/stock_parts/subspace/ansible,
/obj/item/weapon/stock_parts/subspace/ansible,
@@ -44443,7 +43756,7 @@
/obj/machinery/light,
/turf/open/floor/plasteel/black,
/area/storage/tech)
-"bKz" = (
+"bIP" = (
/obj/structure/rack,
/obj/item/weapon/stock_parts/subspace/amplifier,
/obj/item/weapon/stock_parts/subspace/amplifier,
@@ -44451,7 +43764,7 @@
/obj/item/weapon/stock_parts/subspace/analyzer,
/turf/open/floor/plasteel/black,
/area/storage/tech)
-"bKA" = (
+"bIQ" = (
/obj/structure/rack{
dir = 8;
layer = 2.9
@@ -44464,7 +43777,7 @@
/obj/item/device/t_scanner,
/turf/open/floor/plasteel/black,
/area/storage/tech)
-"bKB" = (
+"bIR" = (
/obj/structure/rack{
dir = 8;
layer = 2.9
@@ -44482,7 +43795,7 @@
},
/turf/open/floor/plasteel/black,
/area/storage/tech)
-"bKC" = (
+"bIS" = (
/obj/structure/closet/crate{
name = "solar pack crate"
},
@@ -44511,18 +43824,18 @@
/obj/structure/cable,
/turf/open/floor/plasteel/black,
/area/storage/tech)
-"bKD" = (
+"bIT" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/security/checkpoint/engineering)
-"bKE" = (
+"bIU" = (
/turf/closed/wall,
/area/security/checkpoint/engineering)
-"bKF" = (
+"bIV" = (
/turf/closed/wall,
/area/engine/engineering)
-"bKG" = (
+"bIW" = (
/obj/machinery/door/airlock/engineering{
cyclelinkeddir = 2;
name = "Engineering";
@@ -44536,11 +43849,11 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bKH" = (
+"bIX" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall,
/area/engine/engineering)
-"bKI" = (
+"bIY" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
tag = "icon-intact (SOUTHEAST)";
@@ -44551,7 +43864,7 @@
dir = 1
},
/area/atmos)
-"bKJ" = (
+"bIZ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 4
},
@@ -44559,7 +43872,7 @@
dir = 1
},
/area/atmos)
-"bKK" = (
+"bJa" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 4
},
@@ -44578,7 +43891,7 @@
dir = 1
},
/area/atmos)
-"bKL" = (
+"bJb" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 4
},
@@ -44590,11 +43903,11 @@
dir = 1
},
/area/atmos)
-"bKM" = (
+"bJc" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible,
/turf/open/floor/plasteel,
/area/atmos)
-"bKN" = (
+"bJd" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 4
},
@@ -44606,7 +43919,7 @@
},
/turf/open/floor/plasteel,
/area/atmos)
-"bKO" = (
+"bJe" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 4
},
@@ -44615,7 +43928,7 @@
dir = 1
},
/area/atmos)
-"bKP" = (
+"bJf" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 4
},
@@ -44627,7 +43940,7 @@
dir = 1
},
/area/atmos)
-"bKQ" = (
+"bJg" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 4
},
@@ -44641,7 +43954,7 @@
dir = 1
},
/area/atmos)
-"bKR" = (
+"bJh" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 8;
name = "Port to Filter";
@@ -44649,18 +43962,18 @@
},
/turf/open/floor/plasteel,
/area/atmos)
-"bKS" = (
+"bJi" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible,
/obj/item/weapon/cigbutt,
/turf/open/floor/plasteel,
/area/atmos)
-"bKT" = (
+"bJj" = (
/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
dir = 8
},
/turf/open/floor/plasteel,
/area/atmos)
-"bKU" = (
+"bJk" = (
/obj/machinery/atmospherics/components/trinary/filter{
dir = 1;
filter_type = "plasma";
@@ -44668,7 +43981,7 @@
},
/turf/open/floor/plasteel,
/area/atmos)
-"bKV" = (
+"bJl" = (
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/obj/structure/window/reinforced/fulltile,
@@ -44677,7 +43990,7 @@
},
/turf/open/floor/plating,
/area/atmos)
-"bKW" = (
+"bJm" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 8;
frequency = 1441;
@@ -44686,15 +43999,15 @@
},
/turf/open/floor/engine/plasma,
/area/atmos)
-"bKX" = (
+"bJn" = (
/obj/item/weapon/cigbutt/cigarbutt,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bKY" = (
+"bJo" = (
/obj/structure/sign/securearea,
/turf/closed/wall/r_wall,
/area/storage/tech)
-"bKZ" = (
+"bJp" = (
/obj/machinery/door/airlock/highsecurity{
name = "Secure Tech Storage";
req_access_txt = "19;23"
@@ -44702,12 +44015,12 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/black,
/area/storage/tech)
-"bLa" = (
+"bJq" = (
/obj/structure/sign/securearea,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall/r_wall,
/area/storage/tech)
-"bLb" = (
+"bJr" = (
/obj/structure/table,
/obj/item/weapon/book/manual/wiki/security_space_law,
/obj/machinery/camera{
@@ -44724,19 +44037,19 @@
dir = 9
},
/area/security/checkpoint/engineering)
-"bLc" = (
+"bJs" = (
/obj/machinery/computer/secure_data,
/turf/open/floor/plasteel/red/side{
dir = 1
},
/area/security/checkpoint/engineering)
-"bLd" = (
+"bJt" = (
/obj/machinery/computer/secure_data,
/turf/open/floor/plasteel/red/side{
dir = 5
},
/area/security/checkpoint/engineering)
-"bLe" = (
+"bJu" = (
/obj/machinery/light{
dir = 1
},
@@ -44748,24 +44061,24 @@
pixel_x = 0;
pixel_y = 28
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 9
},
+/turf/open/floor/plasteel,
/area/engine/engineering)
-"bLf" = (
+"bJv" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel,
/area/engine/engineering)
-"bLg" = (
+"bJw" = (
/obj/machinery/light{
dir = 1
},
@@ -44781,12 +44094,12 @@
pixel_x = 0;
pixel_y = 24
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 5
},
+/turf/open/floor/plasteel,
/area/engine/engineering)
-"bLh" = (
+"bJx" = (
/obj/machinery/door/poddoor/preopen{
id = "atmos";
name = "atmos blast door"
@@ -44795,31 +44108,31 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
+/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel{
name = "floor"
},
-/obj/effect/turf_decal/delivery,
/area/engine/engineering)
-"bLi" = (
+"bJy" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
dir = 4
},
/turf/open/floor/plasteel,
/area/atmos)
-"bLj" = (
+"bJz" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
/turf/open/floor/plasteel,
/area/atmos)
-"bLk" = (
+"bJA" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 6
},
/turf/open/floor/plasteel,
/area/atmos)
-"bLl" = (
+"bJB" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 4;
name = "N2 to Pure";
@@ -44827,37 +44140,37 @@
},
/turf/open/floor/plasteel,
/area/atmos)
-"bLm" = (
+"bJC" = (
/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
dir = 1
},
/turf/open/floor/plasteel,
/area/atmos)
-"bLn" = (
+"bJD" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 1
},
/turf/open/floor/plating/airless,
/area/space)
-"bLo" = (
+"bJE" = (
/obj/machinery/light/small{
dir = 8
},
/obj/machinery/libraryscanner,
/turf/open/floor/plasteel/black,
/area/library)
-"bLp" = (
+"bJF" = (
/obj/machinery/newscaster{
pixel_x = -32;
pixel_y = -32
},
/turf/open/floor/carpet,
/area/library)
-"bLq" = (
+"bJG" = (
/obj/structure/closet/crate/bin,
/turf/open/floor/plasteel/black,
/area/library)
-"bLr" = (
+"bJH" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
},
@@ -44866,13 +44179,13 @@
dir = 4
},
/area/atmos)
-"bLs" = (
+"bJI" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/turf/open/floor/plating,
/area/atmos)
-"bLt" = (
+"bJJ" = (
/obj/docking_port/stationary{
dheight = 9;
dir = 2;
@@ -44885,27 +44198,27 @@
},
/turf/open/space,
/area/space)
-"bLu" = (
+"bJK" = (
/obj/structure/mopbucket,
/obj/item/weapon/mop,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bLv" = (
+"bJL" = (
/obj/structure/grille/broken,
/obj/structure/window/fulltile,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bLw" = (
+"bJM" = (
/obj/structure/bookcase/random/adult,
/turf/open/floor/plasteel/black,
/area/library)
-"bLx" = (
+"bJN" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plating{
icon_state = "panelscorched"
},
/area/maintenance/aft)
-"bLy" = (
+"bJO" = (
/obj/structure/table/wood,
/obj/item/weapon/clipboard,
/obj/item/weapon/paper,
@@ -44913,12 +44226,12 @@
/obj/item/clothing/head/fedora,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bLz" = (
+"bJP" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bLA" = (
+"bJQ" = (
/obj/structure/closet{
name = "Clue Closet"
},
@@ -44935,18 +44248,18 @@
icon_state = "panelscorched"
},
/area/maintenance/aft)
-"bLB" = (
+"bJR" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bLC" = (
+"bJS" = (
/obj/item/weapon/circuitboard/computer/libraryconsole,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bLD" = (
+"bJT" = (
/turf/closed/wall/r_wall,
/area/engine/chiefs_office)
-"bLE" = (
+"bJU" = (
/obj/item/weapon/cartridge/engineering{
pixel_x = 4;
pixel_y = 5
@@ -44972,7 +44285,7 @@
dir = 9
},
/area/engine/chiefs_office)
-"bLF" = (
+"bJV" = (
/obj/structure/filingcabinet/chestdrawer,
/obj/machinery/light{
dir = 1
@@ -44986,7 +44299,7 @@
dir = 1
},
/area/engine/chiefs_office)
-"bLG" = (
+"bJW" = (
/obj/machinery/computer/atmos_alert,
/obj/machinery/airalarm{
dir = 2;
@@ -44996,7 +44309,7 @@
dir = 1
},
/area/engine/chiefs_office)
-"bLH" = (
+"bJX" = (
/obj/machinery/computer/station_alert,
/obj/machinery/computer/security/telescreen/entertainment{
pixel_y = 32
@@ -45005,13 +44318,13 @@
dir = 1
},
/area/engine/chiefs_office)
-"bLI" = (
+"bJY" = (
/obj/machinery/computer/card/minor/ce,
/turf/open/floor/plasteel/yellow/side{
dir = 5
},
/area/engine/chiefs_office)
-"bLJ" = (
+"bJZ" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-07";
name = "Photosynthetic Potted plant";
@@ -45021,7 +44334,7 @@
dir = 8
},
/area/storage/tech)
-"bLK" = (
+"bKa" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-07";
name = "Photosynthetic Potted plant";
@@ -45032,7 +44345,7 @@
dir = 8
},
/area/storage/tech)
-"bLL" = (
+"bKb" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -45040,7 +44353,7 @@
},
/turf/closed/wall,
/area/engine/engine_smes)
-"bLM" = (
+"bKc" = (
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
@@ -45054,7 +44367,7 @@
dir = 1
},
/area/engine/engine_smes)
-"bLN" = (
+"bKd" = (
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
@@ -45073,7 +44386,7 @@
dir = 1
},
/area/engine/engine_smes)
-"bLO" = (
+"bKe" = (
/obj/structure/cable{
d2 = 8;
icon_state = "0-8"
@@ -45083,13 +44396,13 @@
dir = 1
},
/area/engine/engine_smes)
-"bLP" = (
+"bKf" = (
/turf/closed/wall,
/area/engine/engine_smes)
-"bLQ" = (
+"bKg" = (
/turf/closed/wall/r_wall,
/area/engine/engine_smes)
-"bLR" = (
+"bKh" = (
/obj/structure/table,
/obj/item/weapon/pen,
/obj/machinery/light{
@@ -45111,7 +44424,7 @@
dir = 8
},
/area/security/checkpoint/engineering)
-"bLS" = (
+"bKi" = (
/obj/structure/chair/office/dark{
dir = 1
},
@@ -45130,7 +44443,7 @@
},
/turf/open/floor/plasteel,
/area/security/checkpoint/engineering)
-"bLT" = (
+"bKj" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -45143,7 +44456,7 @@
dir = 4
},
/area/security/checkpoint/engineering)
-"bLU" = (
+"bKk" = (
/obj/machinery/door/airlock/glass_security{
name = "Engineering Security Post";
req_access_txt = "63"
@@ -45158,7 +44471,7 @@
},
/turf/open/floor/plasteel/red,
/area/security/checkpoint/engineering)
-"bLV" = (
+"bKl" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -45168,12 +44481,12 @@
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel,
/area/engine/engineering)
-"bLW" = (
+"bKm" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -45194,21 +44507,21 @@
},
/turf/open/floor/goonplaque,
/area/engine/engineering)
-"bLX" = (
+"bKn" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
-/turf/open/floor/plasteel{
- tag = "icon-warning (EAST)"
- },
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plasteel{
+ tag = "icon-warning (EAST)"
+ },
/area/engine/engineering)
-"bLY" = (
+"bKo" = (
/obj/machinery/door/poddoor/preopen{
id = "atmos";
name = "atmos blast door"
@@ -45221,12 +44534,12 @@
dir = 8;
initialize_directions = 11
},
+/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel{
name = "floor"
},
-/obj/effect/turf_decal/delivery,
/area/engine/engineering)
-"bLZ" = (
+"bKp" = (
/obj/machinery/door/firedoor/heavy,
/obj/machinery/door/airlock/atmos{
name = "Atmospherics";
@@ -45240,7 +44553,7 @@
},
/turf/open/floor/plasteel,
/area/atmos)
-"bMa" = (
+"bKq" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -45250,7 +44563,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/turf/open/floor/plasteel,
/area/atmos)
-"bMb" = (
+"bKr" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
@@ -45261,19 +44574,19 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/turf/open/floor/plasteel,
/area/atmos)
-"bMc" = (
+"bKs" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/atmos)
-"bMd" = (
+"bKt" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/atmos)
-"bMe" = (
+"bKu" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
},
@@ -45284,20 +44597,20 @@
},
/turf/open/floor/plasteel,
/area/atmos)
-"bMf" = (
+"bKv" = (
/obj/effect/decal/remains/human,
/turf/closed/mineral,
/area/chapel/asteroid{
name = "Monastery Asteroid"
})
-"bMg" = (
+"bKw" = (
/obj/structure/table/wood,
/obj/machinery/computer/libraryconsole/bookmanagement{
pixel_y = 0
},
/turf/open/floor/plasteel/black,
/area/library)
-"bMh" = (
+"bKx" = (
/obj/structure/table/wood,
/obj/item/weapon/paper_bin{
layer = 2.9;
@@ -45308,11 +44621,11 @@
/obj/item/weapon/barcodescanner,
/turf/open/floor/plasteel/black,
/area/library)
-"bMi" = (
+"bKy" = (
/obj/machinery/atmospherics/pipe/manifold/yellow/visible,
/turf/open/floor/plasteel,
/area/atmos)
-"bMj" = (
+"bKz" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 8;
name = "CO2 Outlet Pump";
@@ -45323,7 +44636,7 @@
dir = 4
},
/area/atmos)
-"bMk" = (
+"bKA" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
@@ -45332,7 +44645,7 @@
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/turf/open/floor/plating,
/area/atmos)
-"bMl" = (
+"bKB" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
external_pressure_bound = 0;
@@ -45346,14 +44659,14 @@
},
/turf/open/floor/engine/co2,
/area/atmos)
-"bMm" = (
+"bKC" = (
/turf/open/floor/engine/co2,
/area/atmos)
-"bMn" = (
+"bKD" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bMo" = (
+"bKE" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/machinery/light/small{
dir = 4
@@ -45363,13 +44676,13 @@
icon_state = "platingdmg1"
},
/area/maintenance/aft)
-"bMp" = (
+"bKF" = (
/obj/structure/chair{
dir = 1
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"bMq" = (
+"bKG" = (
/obj/structure/closet/lawcloset,
/obj/item/weapon/gavelhammer,
/obj/item/weapon/gavelblock,
@@ -45377,13 +44690,13 @@
/obj/item/clothing/head/powdered_wig,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bMr" = (
+"bKH" = (
/obj/structure/chair{
dir = 8
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"bMs" = (
+"bKI" = (
/obj/item/weapon/book/manual/barman_recipes,
/obj/structure/closet/crate{
icon_state = "crateopen";
@@ -45393,7 +44706,7 @@
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bMt" = (
+"bKJ" = (
/obj/machinery/button/door{
desc = "A remote control-switch for the engineering security doors.";
id = "Engineering";
@@ -45426,22 +44739,22 @@
tag = ""
},
/area/engine/chiefs_office)
-"bMu" = (
+"bKK" = (
/turf/open/floor/plasteel,
/area/engine/chiefs_office)
-"bMv" = (
+"bKL" = (
/obj/effect/landmark/start{
name = "Chief Engineer"
},
/turf/open/floor/plasteel,
/area/engine/chiefs_office)
-"bMw" = (
+"bKM" = (
/obj/structure/chair/office/light{
dir = 1
},
/turf/open/floor/plasteel,
/area/engine/chiefs_office)
-"bMx" = (
+"bKN" = (
/obj/structure/table/reinforced,
/obj/item/weapon/clipboard,
/obj/item/weapon/lighter,
@@ -45459,7 +44772,7 @@
dir = 4
},
/area/engine/chiefs_office)
-"bMy" = (
+"bKO" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1;
@@ -45471,13 +44784,13 @@
},
/turf/open/floor/plasteel/black,
/area/storage/tech)
-"bMz" = (
+"bKP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
/turf/open/floor/plasteel/black,
/area/storage/tech)
-"bMA" = (
+"bKQ" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
external_pressure_bound = 101.325;
@@ -45489,7 +44802,7 @@
},
/turf/open/floor/plasteel/black,
/area/storage/tech)
-"bMB" = (
+"bKR" = (
/obj/structure/table,
/obj/item/weapon/storage/box/metalfoam{
pixel_x = 4;
@@ -45511,7 +44824,7 @@
tag = ""
},
/area/engine/engine_smes)
-"bMC" = (
+"bKS" = (
/obj/machinery/power/terminal{
icon_state = "term";
dir = 1
@@ -45520,21 +44833,21 @@
d2 = 2;
icon_state = "0-2"
},
-/turf/open/floor/plasteel{
- tag = "icon-warning (NORTH)"
- },
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel{
+ tag = "icon-warning (NORTH)"
+ },
/area/engine/engine_smes)
-"bMD" = (
+"bKT" = (
/obj/machinery/suit_storage_unit/engine,
/turf/open/floor/plasteel/yellow/side{
tag = "icon-yellow (EAST)";
dir = 4
},
/area/engine/engine_smes)
-"bME" = (
+"bKU" = (
/obj/structure/table,
/obj/machinery/recharger{
pixel_y = 4
@@ -45552,7 +44865,7 @@
dir = 8
},
/area/security/checkpoint/engineering)
-"bMF" = (
+"bKV" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -45563,7 +44876,7 @@
},
/turf/open/floor/plasteel,
/area/security/checkpoint/engineering)
-"bMG" = (
+"bKW" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -45571,7 +44884,7 @@
dir = 4
},
/area/security/checkpoint/engineering)
-"bMH" = (
+"bKX" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -45579,14 +44892,14 @@
},
/turf/open/floor/plating,
/area/security/checkpoint/engineering)
-"bMI" = (
+"bKY" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 10
},
+/turf/open/floor/plasteel,
/area/engine/engineering)
-"bMJ" = (
+"bKZ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -45597,22 +44910,22 @@
dir = 4;
initialize_directions = 11
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
/area/engine/engineering)
-"bMK" = (
+"bLa" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1;
scrub_N2O = 0;
scrub_Toxins = 0
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 6
},
+/turf/open/floor/plasteel,
/area/engine/engineering)
-"bML" = (
+"bLb" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
on = 1;
@@ -45621,13 +44934,13 @@
},
/turf/open/floor/plasteel,
/area/atmos)
-"bMM" = (
+"bLc" = (
/obj/item/weapon/pickaxe/mini,
/turf/closed/mineral,
/area/chapel/asteroid{
name = "Monastery Asteroid"
})
-"bMN" = (
+"bLd" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
on = 1;
@@ -45636,17 +44949,17 @@
},
/turf/open/floor/plasteel,
/area/atmos)
-"bMO" = (
+"bLe" = (
/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
dir = 1
},
/turf/open/floor/plasteel,
/area/atmos)
-"bMP" = (
+"bLf" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/turf/open/floor/plasteel,
/area/atmos)
-"bMQ" = (
+"bLg" = (
/obj/machinery/computer/atmos_control/tank{
frequency = 1441;
input_tag = "co2_in";
@@ -45659,42 +44972,42 @@
dir = 4
},
/area/atmos)
-"bMR" = (
+"bLh" = (
/obj/machinery/air_sensor{
frequency = 1441;
id_tag = "co2_sensor"
},
/turf/open/floor/engine/co2,
/area/atmos)
-"bMS" = (
+"bLi" = (
/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
/turf/open/floor/engine/co2,
/area/atmos)
-"bMT" = (
+"bLj" = (
/obj/machinery/light/small{
dir = 4
},
/turf/open/floor/engine/co2,
/area/atmos)
-"bMU" = (
+"bLk" = (
/obj/effect/spawner/lootdrop/maintenance,
/turf/closed/mineral/random/low_chance,
/area/mine/explored{
name = "Bomb Testing Asteroid"
})
-"bMV" = (
+"bLl" = (
/obj/structure/grille/broken,
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
/area/maintenance/aft)
-"bMW" = (
+"bLm" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating{
icon_state = "panelscorched"
},
/area/maintenance/aft)
-"bMX" = (
+"bLn" = (
/obj/structure/closet/secure_closet/engineering_chief{
req_access_txt = "0"
},
@@ -45708,7 +45021,7 @@
tag = ""
},
/area/engine/chiefs_office)
-"bMY" = (
+"bLo" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1;
@@ -45717,13 +45030,13 @@
},
/turf/open/floor/plasteel,
/area/engine/chiefs_office)
-"bMZ" = (
+"bLp" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
/turf/open/floor/plasteel,
/area/engine/chiefs_office)
-"bNa" = (
+"bLq" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -45734,7 +45047,7 @@
},
/turf/open/floor/plasteel,
/area/engine/chiefs_office)
-"bNb" = (
+"bLr" = (
/obj/machinery/power/apc{
dir = 4;
name = "CE Office APC";
@@ -45751,7 +45064,7 @@
dir = 4
},
/area/engine/chiefs_office)
-"bNc" = (
+"bLs" = (
/obj/structure/rack{
dir = 8;
layer = 2.9
@@ -45766,7 +45079,7 @@
},
/turf/open/floor/plating,
/area/storage/tech)
-"bNd" = (
+"bLt" = (
/obj/structure/rack{
dir = 8;
layer = 2.9
@@ -45789,7 +45102,7 @@
},
/turf/open/floor/plating,
/area/storage/tech)
-"bNe" = (
+"bLu" = (
/obj/structure/rack{
dir = 8;
layer = 2.9
@@ -45804,7 +45117,7 @@
},
/turf/open/floor/plating,
/area/storage/tech)
-"bNf" = (
+"bLv" = (
/obj/structure/table,
/obj/item/stack/sheet/plasteel{
amount = 20;
@@ -45850,7 +45163,7 @@
tag = ""
},
/area/engine/engine_smes)
-"bNg" = (
+"bLw" = (
/obj/structure/cable/yellow{
icon_state = "1-4";
d1 = 1;
@@ -45870,7 +45183,7 @@
},
/turf/open/floor/plasteel,
/area/engine/engine_smes)
-"bNh" = (
+"bLx" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -45895,7 +45208,7 @@
},
/turf/open/floor/plasteel,
/area/engine/engine_smes)
-"bNi" = (
+"bLy" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 8;
@@ -45907,7 +45220,7 @@
},
/turf/open/floor/plasteel,
/area/engine/engine_smes)
-"bNj" = (
+"bLz" = (
/obj/structure/tank_dispenser,
/obj/machinery/light{
dir = 4;
@@ -45918,20 +45231,20 @@
dir = 4
},
/area/engine/engine_smes)
-"bNk" = (
+"bLA" = (
/obj/structure/filingcabinet,
/turf/open/floor/plasteel/red/side{
dir = 10
},
/area/security/checkpoint/engineering)
-"bNl" = (
+"bLB" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
},
/turf/open/floor/plasteel/red/side,
/area/security/checkpoint/engineering)
-"bNm" = (
+"bLC" = (
/obj/structure/reagent_dispensers/peppertank{
pixel_x = 32;
pixel_y = 0
@@ -45941,21 +45254,21 @@
dir = 6
},
/area/security/checkpoint/engineering)
-"bNn" = (
+"bLD" = (
/turf/closed/wall/r_wall,
/area/security/checkpoint/engineering)
-"bNo" = (
+"bLE" = (
/obj/machinery/door/poddoor/preopen{
id = "Engineering";
name = "engineering security door"
},
/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel{
name = "floor"
},
-/obj/effect/turf_decal/delivery,
/area/engine/engineering)
-"bNp" = (
+"bLF" = (
/obj/machinery/door/poddoor/preopen{
id = "Engineering";
name = "engineering security door"
@@ -45968,12 +45281,12 @@
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel{
name = "floor"
},
-/obj/effect/turf_decal/delivery,
/area/engine/engineering)
-"bNq" = (
+"bLG" = (
/obj/machinery/door/poddoor/preopen{
id = "Engineering";
name = "engineering security door"
@@ -45982,23 +45295,23 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
+/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel{
name = "floor"
},
-/obj/effect/turf_decal/delivery,
/area/engine/engineering)
-"bNr" = (
+"bLH" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
/turf/closed/wall,
/area/engine/engineering)
-"bNs" = (
+"bLI" = (
/obj/machinery/portable_atmospherics/scrubber,
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/turf/open/floor/plasteel,
/area/atmos)
-"bNt" = (
+"bLJ" = (
/obj/machinery/portable_atmospherics/pump,
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
tag = "icon-intact (NORTHEAST)";
@@ -46007,7 +45320,7 @@
},
/turf/open/floor/plasteel,
/area/atmos)
-"bNu" = (
+"bLK" = (
/obj/machinery/atmospherics/components/trinary/filter{
dir = 4;
filter_type = "o2";
@@ -46015,20 +45328,20 @@
},
/turf/open/floor/plasteel,
/area/atmos)
-"bNv" = (
+"bLL" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 4
},
/turf/open/floor/plasteel,
/area/atmos)
-"bNw" = (
+"bLM" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/turf/open/floor/plasteel,
/area/atmos)
-"bNx" = (
+"bLN" = (
/obj/machinery/camera{
c_tag = "Telecoms External Fore";
dir = 1;
@@ -46039,7 +45352,7 @@
},
/turf/open/space,
/area/space)
-"bNy" = (
+"bLO" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 4;
initialize_directions = 12
@@ -46047,13 +45360,13 @@
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/turf/open/floor/plasteel,
/area/atmos)
-"bNz" = (
+"bLP" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 10
},
/turf/open/floor/plasteel,
/area/atmos)
-"bNA" = (
+"bLQ" = (
/obj/machinery/atmospherics/components/trinary/filter{
dir = 1;
filter_type = "co2";
@@ -46061,7 +45374,7 @@
},
/turf/open/floor/plasteel,
/area/atmos)
-"bNB" = (
+"bLR" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/green/visible{
@@ -46069,7 +45382,7 @@
},
/turf/open/floor/plating,
/area/atmos)
-"bNC" = (
+"bLS" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 8;
frequency = 1441;
@@ -46078,16 +45391,16 @@
},
/turf/open/floor/engine/co2,
/area/atmos)
-"bND" = (
+"bLT" = (
/obj/item/device/flashlight,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bNE" = (
+"bLU" = (
/obj/effect/decal/cleanable/vomit/old,
/obj/structure/grille/broken,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bNF" = (
+"bLV" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance{
lootcount = 2;
@@ -46095,20 +45408,20 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"bNG" = (
+"bLW" = (
/obj/machinery/suit_storage_unit/ce,
/turf/open/floor/plasteel/yellow/side{
dir = 10
},
/area/engine/chiefs_office)
-"bNH" = (
+"bLX" = (
/turf/open/floor/plasteel/yellow/side,
/area/engine/chiefs_office)
-"bNI" = (
+"bLY" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/yellow/side,
/area/engine/chiefs_office)
-"bNJ" = (
+"bLZ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -46121,7 +45434,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/yellow/side,
/area/engine/chiefs_office)
-"bNK" = (
+"bMa" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 8
@@ -46133,10 +45446,10 @@
dir = 6
},
/area/engine/chiefs_office)
-"bNL" = (
+"bMb" = (
/turf/closed/wall/r_wall,
/area/engine/engineering)
-"bNM" = (
+"bMc" = (
/obj/structure/table,
/obj/item/stack/sheet/metal{
amount = 50
@@ -46166,7 +45479,7 @@
tag = ""
},
/area/engine/engine_smes)
-"bNN" = (
+"bMd" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -46174,7 +45487,7 @@
},
/turf/open/floor/plasteel,
/area/engine/engine_smes)
-"bNO" = (
+"bMe" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -46183,11 +45496,11 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/engine/engine_smes)
-"bNP" = (
+"bMf" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/engine/engine_smes)
-"bNQ" = (
+"bMg" = (
/obj/machinery/door/airlock/engineering{
cyclelinkeddir = 1;
name = "Engine Room";
@@ -46202,24 +45515,24 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bNR" = (
+"bMh" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall/r_wall,
/area/engine/engineering)
-"bNS" = (
+"bMi" = (
/obj/machinery/portable_atmospherics/scrubber,
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/turf/open/floor/plasteel/yellow/side,
/area/atmos)
-"bNT" = (
+"bMj" = (
/obj/machinery/portable_atmospherics/pump,
/turf/open/floor/plasteel/yellow/side,
/area/atmos)
-"bNU" = (
+"bMk" = (
/obj/machinery/atmospherics/pipe/simple/green/visible,
/turf/open/floor/plasteel/yellow/side,
/area/atmos)
-"bNV" = (
+"bMl" = (
/obj/machinery/computer/atmos_control/tank{
frequency = 1441;
input_tag = "n2_in";
@@ -46229,7 +45542,7 @@
},
/turf/open/floor/plasteel/yellow/side,
/area/atmos)
-"bNW" = (
+"bMm" = (
/obj/machinery/camera/motion{
c_tag = "Telecoms External Access";
dir = 1;
@@ -46237,11 +45550,11 @@
},
/turf/open/floor/plasteel,
/area/tcommsat/computer)
-"bNX" = (
+"bMn" = (
/obj/machinery/light,
/turf/open/floor/plasteel/yellow/side,
/area/atmos)
-"bNY" = (
+"bMo" = (
/obj/machinery/computer/atmos_control/tank{
frequency = 1441;
input_tag = "o2_in";
@@ -46251,17 +45564,17 @@
},
/turf/open/floor/plasteel/yellow/side,
/area/atmos)
-"bNZ" = (
+"bMp" = (
/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
dir = 8
},
/turf/open/floor/plasteel/yellow/side,
/area/atmos)
-"bOa" = (
+"bMq" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/turf/open/floor/plasteel/yellow/side,
/area/atmos)
-"bOb" = (
+"bMr" = (
/obj/machinery/computer/atmos_control/tank{
frequency = 1441;
input_tag = "air_in";
@@ -46271,7 +45584,7 @@
},
/turf/open/floor/plasteel/yellow/side,
/area/atmos)
-"bOc" = (
+"bMs" = (
/obj/structure/lattice,
/obj/machinery/camera/motion{
c_tag = "Telecoms External Port";
@@ -46280,7 +45593,7 @@
},
/turf/open/space,
/area/space)
-"bOd" = (
+"bMt" = (
/obj/machinery/light,
/obj/machinery/atmospherics/components/binary/pump{
dir = 4;
@@ -46289,13 +45602,13 @@
},
/turf/open/floor/plasteel/yellow/side,
/area/atmos)
-"bOe" = (
+"bMu" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
},
/turf/open/floor/plasteel/yellow/side,
/area/atmos)
-"bOf" = (
+"bMv" = (
/obj/structure/lattice,
/obj/machinery/camera/motion{
c_tag = "Telecoms External Starboard";
@@ -46304,7 +45617,7 @@
},
/turf/open/space,
/area/space)
-"bOg" = (
+"bMw" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
},
@@ -46312,7 +45625,7 @@
dir = 6
},
/area/atmos)
-"bOh" = (
+"bMx" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -46325,7 +45638,7 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"bOi" = (
+"bMy" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -46338,18 +45651,18 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"bOj" = (
+"bMz" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/engine/chiefs_office)
-"bOk" = (
+"bMA" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/engine/chiefs_office)
-"bOl" = (
+"bMB" = (
/obj/machinery/door/airlock/glass_command{
name = "Chief Engineer";
req_access_txt = "56"
@@ -46363,16 +45676,16 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/engine/chiefs_office)
-"bOm" = (
+"bMC" = (
/turf/closed/wall,
/area/engine/chiefs_office)
-"bOn" = (
+"bMD" = (
/obj/machinery/computer/atmos_alert,
/turf/open/floor/plasteel/yellow/side{
dir = 1
},
/area/engine/engineering)
-"bOo" = (
+"bME" = (
/obj/machinery/computer/monitor{
name = "Engineering Power Monitoring Console"
},
@@ -46384,13 +45697,13 @@
dir = 1
},
/area/engine/engineering)
-"bOp" = (
+"bMF" = (
/obj/machinery/computer/station_alert,
/turf/open/floor/plasteel/yellow/side{
dir = 1
},
/area/engine/engineering)
-"bOq" = (
+"bMG" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/sign/securearea{
@@ -46400,7 +45713,7 @@
},
/turf/open/floor/plating,
/area/engine/engine_smes)
-"bOr" = (
+"bMH" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/cable{
@@ -46410,7 +45723,7 @@
},
/turf/open/floor/plating,
/area/engine/engine_smes)
-"bOs" = (
+"bMI" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_engineering{
name = "Power Storage";
@@ -46425,37 +45738,37 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/engine/engine_smes)
-"bOt" = (
+"bMJ" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/engine/engine_smes)
-"bOu" = (
+"bMK" = (
/obj/machinery/vending/engivend,
/turf/open/floor/plasteel/yellow/side{
dir = 1
},
/area/engine/engineering)
-"bOv" = (
+"bML" = (
/obj/machinery/vending/tool,
/turf/open/floor/plasteel/yellow/side{
dir = 1
},
/area/engine/engineering)
-"bOw" = (
+"bMM" = (
/obj/structure/closet/firecloset,
/turf/open/floor/plasteel/yellow/side{
dir = 1
},
/area/engine/engineering)
-"bOx" = (
-/turf/open/floor/plasteel,
+"bMN" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel,
/area/engine/engineering)
-"bOy" = (
+"bMO" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -46463,25 +45776,25 @@
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel,
/area/engine/engineering)
-"bOz" = (
+"bMP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel,
/area/engine/engineering)
-"bOA" = (
+"bMQ" = (
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/green/visible,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/atmos)
-"bOB" = (
+"bMR" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 0;
name = "Waste to Space";
@@ -46489,7 +45802,7 @@
},
/turf/open/floor/plasteel,
/area/atmos)
-"bOC" = (
+"bMS" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
@@ -46499,7 +45812,7 @@
},
/turf/open/floor/plating,
/area/atmos)
-"bOD" = (
+"bMT" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 2;
name = "Atmospherics External Access";
@@ -46508,22 +45821,22 @@
},
/turf/open/floor/plating,
/area/atmos)
-"bOE" = (
+"bMU" = (
/obj/structure/table_frame/wood,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bOF" = (
+"bMV" = (
/obj/item/trash/candy,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bOG" = (
+"bMW" = (
/turf/open/space,
/area/space/nearstation)
-"bOH" = (
+"bMX" = (
/obj/structure/lattice,
/turf/open/space,
/area/space/nearstation)
-"bOI" = (
+"bMY" = (
/obj/machinery/power/apc{
cell_type = 5000;
dir = 8;
@@ -46537,7 +45850,7 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"bOJ" = (
+"bMZ" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -46555,7 +45868,7 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"bOK" = (
+"bNa" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/door/airlock/maintenance{
name = "Engineering Maintenance";
@@ -46571,7 +45884,7 @@
},
/turf/open/floor/plating,
/area/engine/engineering)
-"bOL" = (
+"bNb" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -46585,7 +45898,7 @@
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bOM" = (
+"bNc" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -46600,7 +45913,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bON" = (
+"bNd" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -46620,7 +45933,7 @@
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bOO" = (
+"bNe" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -46639,7 +45952,7 @@
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bOP" = (
+"bNf" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -46662,7 +45975,7 @@
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bOQ" = (
+"bNg" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -46676,7 +45989,7 @@
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bOR" = (
+"bNh" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -46696,7 +46009,7 @@
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bOS" = (
+"bNi" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -46710,7 +46023,7 @@
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bOT" = (
+"bNj" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -46728,7 +46041,7 @@
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bOU" = (
+"bNk" = (
/obj/structure/cable{
icon_state = "1-8"
},
@@ -46746,7 +46059,7 @@
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bOV" = (
+"bNl" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -46766,7 +46079,7 @@
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bOW" = (
+"bNm" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -46778,7 +46091,7 @@
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bOX" = (
+"bNn" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -46795,7 +46108,7 @@
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bOY" = (
+"bNo" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -46813,7 +46126,7 @@
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bOZ" = (
+"bNp" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -46838,7 +46151,7 @@
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bPa" = (
+"bNq" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -46859,7 +46172,7 @@
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bPb" = (
+"bNr" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -46875,28 +46188,28 @@
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bPc" = (
+"bNs" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bPd" = (
+"bNt" = (
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bPe" = (
+"bNu" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/simple/green/visible,
/turf/open/space,
/area/space)
-"bPf" = (
+"bNv" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall/r_wall,
/area/atmos)
-"bPg" = (
+"bNw" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/turf/open/space,
/area/space)
-"bPh" = (
+"bNx" = (
/obj/machinery/light/small{
dir = 8
},
@@ -46910,36 +46223,36 @@
},
/turf/open/floor/plating,
/area/atmos)
-"bPi" = (
+"bNy" = (
/obj/structure/table_frame/wood,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bPj" = (
+"bNz" = (
/obj/item/weapon/bikehorn/rubberducky,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bPk" = (
+"bNA" = (
/turf/closed/wall/r_wall,
/area/maintenance/aft)
-"bPl" = (
+"bNB" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bPm" = (
+"bNC" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8;
initialize_directions = 11
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bPn" = (
+"bND" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bPo" = (
+"bNE" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -46951,21 +46264,21 @@
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bPp" = (
+"bNF" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bPq" = (
+"bNG" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1;
initialize_directions = 11
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bPr" = (
+"bNH" = (
/obj/machinery/holopad,
/obj/structure/cable/yellow{
d1 = 1;
@@ -46975,14 +46288,14 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bPs" = (
+"bNI" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bPt" = (
+"bNJ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -46997,7 +46310,7 @@
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bPu" = (
+"bNK" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -47006,7 +46319,7 @@
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bPv" = (
+"bNL" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -47015,20 +46328,20 @@
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bPw" = (
+"bNM" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 8
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bPx" = (
+"bNN" = (
/obj/machinery/atmospherics/pipe/simple,
/obj/structure/grille,
/obj/machinery/meter,
/turf/closed/wall/r_wall,
/area/atmos)
-"bPy" = (
+"bNO" = (
/obj/machinery/atmospherics/pipe/simple,
/obj/structure/grille,
/obj/machinery/meter{
@@ -47036,7 +46349,7 @@
},
/turf/closed/wall/r_wall,
/area/atmos)
-"bPz" = (
+"bNP" = (
/obj/machinery/atmospherics/pipe/simple,
/obj/structure/grille,
/obj/machinery/meter{
@@ -47044,7 +46357,7 @@
},
/turf/closed/wall/r_wall,
/area/atmos)
-"bPA" = (
+"bNQ" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 1;
name = "Atmospherics External Access";
@@ -47053,7 +46366,7 @@
},
/turf/open/floor/plating,
/area/atmos)
-"bPB" = (
+"bNR" = (
/obj/structure/plasticflaps{
opacity = 1
},
@@ -47061,7 +46374,7 @@
dir = 8
},
/area/engine/engineering)
-"bPC" = (
+"bNS" = (
/obj/machinery/door/window/southleft{
base_state = "left";
dir = 4;
@@ -47078,17 +46391,17 @@
dir = 8
},
/area/engine/engineering)
-"bPD" = (
+"bNT" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/loadingarea{
dir = 4
},
/area/engine/engineering)
-"bPE" = (
+"bNU" = (
/obj/structure/chair/stool,
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bPF" = (
+"bNV" = (
/obj/structure/chair/stool,
/obj/structure/cable{
d1 = 1;
@@ -47098,14 +46411,14 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bPG" = (
+"bNW" = (
/obj/structure/chair/stool,
/obj/effect/landmark/start{
name = "Station Engineer"
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bPH" = (
+"bNX" = (
/obj/structure/rack{
dir = 8;
layer = 2.9
@@ -47121,7 +46434,7 @@
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bPI" = (
+"bNY" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
on = 1;
@@ -47130,7 +46443,7 @@
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bPJ" = (
+"bNZ" = (
/obj/structure/cable/yellow{
d1 = 2;
d2 = 4;
@@ -47139,7 +46452,7 @@
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bPK" = (
+"bOa" = (
/obj/structure/cable/yellow{
icon_state = "1-4";
d1 = 1;
@@ -47159,7 +46472,7 @@
/obj/machinery/light,
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bPL" = (
+"bOb" = (
/obj/structure/cable/yellow{
d1 = 2;
d2 = 8;
@@ -47167,14 +46480,14 @@
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bPM" = (
+"bOc" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bPN" = (
+"bOd" = (
/obj/structure/rack{
dir = 8;
layer = 2.9
@@ -47190,7 +46503,7 @@
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bPO" = (
+"bOe" = (
/obj/structure/table,
/obj/item/weapon/airlock_painter{
pixel_y = 3
@@ -47198,7 +46511,7 @@
/obj/item/device/flashlight,
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bPP" = (
+"bOf" = (
/obj/structure/table,
/obj/item/weapon/electronics/airlock,
/obj/item/weapon/electronics/airlock,
@@ -47213,11 +46526,11 @@
/obj/item/stack/cable_coil,
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bPQ" = (
+"bOg" = (
/obj/structure/closet/wardrobe/engineering_yellow,
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bPR" = (
+"bOh" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 1;
frequency = 1441;
@@ -47225,14 +46538,14 @@
},
/turf/open/floor/engine/n2,
/area/atmos)
-"bPS" = (
+"bOi" = (
/obj/machinery/air_sensor{
frequency = 1441;
id_tag = "n2_sensor"
},
/turf/open/floor/engine/n2,
/area/atmos)
-"bPT" = (
+"bOj" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
external_pressure_bound = 0;
@@ -47246,7 +46559,7 @@
},
/turf/open/floor/engine/n2,
/area/atmos)
-"bPU" = (
+"bOk" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 1;
frequency = 1441;
@@ -47254,14 +46567,14 @@
},
/turf/open/floor/engine/o2,
/area/atmos)
-"bPV" = (
+"bOl" = (
/obj/machinery/air_sensor{
frequency = 1441;
id_tag = "o2_sensor"
},
/turf/open/floor/engine/o2,
/area/atmos)
-"bPW" = (
+"bOm" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
external_pressure_bound = 0;
@@ -47275,7 +46588,7 @@
},
/turf/open/floor/engine/o2,
/area/atmos)
-"bPX" = (
+"bOn" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 1;
frequency = 1441;
@@ -47283,14 +46596,14 @@
},
/turf/open/floor/engine/air,
/area/atmos)
-"bPY" = (
+"bOo" = (
/obj/machinery/air_sensor{
frequency = 1441;
id_tag = "air_sensor"
},
/turf/open/floor/engine/air,
/area/atmos)
-"bPZ" = (
+"bOp" = (
/obj/machinery/atmospherics/components/unary/vent_pump/high_volume{
dir = 1;
external_pressure_bound = 0;
@@ -47304,13 +46617,13 @@
},
/turf/open/floor/engine/air,
/area/atmos)
-"bQa" = (
+"bOq" = (
/obj/structure/rack,
/obj/item/weapon/paper,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bQb" = (
+"bOr" = (
/obj/item/toy/beach_ball{
desc = "The simple beach ball is one of Nanotrasen's most popular products. 'Why do we make beach balls? Because we can! (TM)' - Nanotrasen";
item_state = "beachball";
@@ -47319,11 +46632,11 @@
},
/turf/open/floor/plating/airless,
/area/space/nearstation)
-"bQc" = (
+"bOs" = (
/obj/item/weapon/phone,
/turf/open/floor/plating/airless,
/area/space/nearstation)
-"bQd" = (
+"bOt" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/light{
dir = 8
@@ -47333,12 +46646,12 @@
name = "Station Intercom (General)";
pixel_x = -27
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/corner{
dir = 1
},
+/turf/open/floor/plasteel,
/area/engine/engineering)
-"bQe" = (
+"bOu" = (
/obj/structure/table,
/obj/item/weapon/pen,
/obj/item/weapon/storage/belt/utility,
@@ -47351,7 +46664,7 @@
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bQf" = (
+"bOv" = (
/obj/structure/table,
/obj/item/weapon/book/manual/wiki/engineering_hacking{
pixel_x = 3;
@@ -47367,7 +46680,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bQg" = (
+"bOw" = (
/obj/structure/table,
/obj/item/weapon/book/manual/engineering_singularity_safety{
pixel_x = 3;
@@ -47381,7 +46694,7 @@
/obj/item/clothing/gloves/color/yellow,
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bQh" = (
+"bOx" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
external_pressure_bound = 101.325;
@@ -47391,7 +46704,7 @@
/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bQi" = (
+"bOy" = (
/obj/machinery/light{
dir = 4;
icon_state = "tube1"
@@ -47399,7 +46712,7 @@
/obj/structure/closet/radiation,
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bQj" = (
+"bOz" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'RADIOACTIVE AREA'";
icon_state = "radiation";
@@ -47409,7 +46722,7 @@
},
/turf/closed/wall/r_wall,
/area/engine/engineering)
-"bQk" = (
+"bOA" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/poddoor/shutters/preopen{
id = "Singularity";
@@ -47420,28 +46733,28 @@
d2 = 2;
icon_state = "1-2"
},
-/turf/open/floor/plasteel{
+/obj/effect/turf_decal/bot{
dir = 2
},
-/obj/effect/turf_decal/bot{
+/turf/open/floor/plasteel{
dir = 2
},
/area/engine/engineering)
-"bQl" = (
+"bOB" = (
/obj/machinery/light{
dir = 8
},
/obj/structure/closet/secure_closet/engineering_welding,
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bQm" = (
+"bOC" = (
/obj/structure/table,
/obj/item/clothing/gloves/color/yellow,
/obj/item/weapon/storage/belt/utility,
/obj/item/clothing/glasses/meson,
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bQn" = (
+"bOD" = (
/obj/structure/table,
/obj/machinery/cell_charger,
/obj/structure/cable{
@@ -47451,7 +46764,7 @@
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bQo" = (
+"bOE" = (
/obj/effect/landmark/start{
name = "Station Engineer"
},
@@ -47463,92 +46776,92 @@
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bQp" = (
+"bOF" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bQq" = (
+"bOG" = (
/obj/structure/closet/secure_closet/engineering_personal,
/obj/machinery/light{
dir = 4
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bQr" = (
+"bOH" = (
/turf/open/floor/engine/n2,
/area/atmos)
-"bQs" = (
+"bOI" = (
/obj/machinery/portable_atmospherics/canister/nitrogen,
/turf/open/floor/engine/n2,
/area/atmos)
-"bQt" = (
+"bOJ" = (
/turf/open/floor/engine/o2,
/area/atmos)
-"bQu" = (
+"bOK" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/turf/open/floor/engine/o2,
/area/atmos)
-"bQv" = (
+"bOL" = (
/obj/effect/landmark{
name = "xeno_spawn";
pixel_x = -1
},
/turf/open/floor/engine/air,
/area/atmos)
-"bQw" = (
+"bOM" = (
/obj/machinery/portable_atmospherics/canister/air,
/obj/effect/landmark/event_spawn,
/turf/open/floor/engine/air,
/area/atmos)
-"bQx" = (
+"bON" = (
/turf/open/floor/engine/air,
/area/atmos)
-"bQy" = (
+"bOO" = (
/obj/item/trash/tray,
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
/area/maintenance/aft)
-"bQz" = (
+"bOP" = (
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
/area/maintenance/aft)
-"bQA" = (
+"bOQ" = (
/obj/machinery/shieldgen,
/turf/open/floor/plating,
/area/engine/engineering)
-"bQB" = (
+"bOR" = (
/obj/machinery/shieldgen,
/obj/machinery/light/small{
dir = 1
},
/turf/open/floor/plating,
/area/engine/engineering)
-"bQC" = (
+"bOS" = (
/turf/open/floor/plating,
/area/engine/engineering)
-"bQD" = (
+"bOT" = (
/obj/machinery/door/poddoor{
id = "Secure Storage";
name = "secure storage"
},
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plating,
/area/engine/engineering)
-"bQE" = (
+"bOU" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel,
/area/engine/engineering)
-"bQF" = (
+"bOV" = (
/obj/structure/closet/radiation,
/obj/structure/extinguisher_cabinet{
pixel_x = 27;
@@ -47556,24 +46869,24 @@
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bQG" = (
-/turf/open/floor/plating,
+"bOW" = (
/obj/effect/turf_decal/stripes/line{
dir = 9
},
+/turf/open/floor/plating,
/area/engine/engineering)
-"bQH" = (
+"bOX" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plating,
/area/engine/engineering)
-"bQI" = (
+"bOY" = (
/obj/machinery/camera{
c_tag = "Engineering Center";
dir = 2;
@@ -47582,18 +46895,18 @@
/obj/machinery/light{
dir = 1
},
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
-/area/engine/engineering)
-"bQJ" = (
/turf/open/floor/plating,
+/area/engine/engineering)
+"bOZ" = (
/obj/effect/turf_decal/stripes/line{
dir = 5
},
+/turf/open/floor/plating,
/area/engine/engineering)
-"bQK" = (
+"bPa" = (
/obj/structure/closet/secure_closet/engineering_electrical,
/obj/structure/extinguisher_cabinet{
pixel_x = -27;
@@ -47601,7 +46914,7 @@
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bQL" = (
+"bPb" = (
/obj/structure/table,
/obj/item/weapon/storage/toolbox/mechanical{
pixel_x = 2;
@@ -47612,7 +46925,7 @@
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bQM" = (
+"bPc" = (
/obj/structure/table,
/obj/item/weapon/storage/toolbox/electrical{
pixel_x = 2;
@@ -47628,23 +46941,23 @@
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bQN" = (
+"bPd" = (
/obj/structure/closet/secure_closet/engineering_personal,
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bQO" = (
+"bPe" = (
/obj/machinery/light/small,
/turf/open/floor/engine/n2,
/area/atmos)
-"bQP" = (
+"bPf" = (
/obj/machinery/light/small,
/turf/open/floor/engine/o2,
/area/atmos)
-"bQQ" = (
+"bPg" = (
/obj/machinery/light/small,
/turf/open/floor/engine/air,
/area/atmos)
-"bQR" = (
+"bPh" = (
/obj/structure/table,
/obj/item/weapon/wirecutters,
/obj/effect/spawner/lootdrop/maintenance,
@@ -47654,28 +46967,28 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"bQS" = (
+"bPi" = (
/obj/structure/table,
/obj/item/weapon/storage/fancy/cigarettes/cigpack_robustgold,
/obj/effect/decal/cleanable/deadcockroach,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bQT" = (
+"bPj" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
/area/maintenance/aft)
-"bQU" = (
+"bPk" = (
/turf/open/floor/plating{
icon_state = "panelscorched"
},
/area/maintenance/aft)
-"bQV" = (
+"bPl" = (
/obj/machinery/field/generator,
/turf/open/floor/plating,
/area/engine/engineering)
-"bQW" = (
+"bPm" = (
/obj/structure/closet/crate,
/obj/item/stack/sheet/metal{
amount = 50
@@ -47694,7 +47007,7 @@
},
/turf/open/floor/plating,
/area/engine/engineering)
-"bQX" = (
+"bPn" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -47703,7 +47016,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bQY" = (
+"bPo" = (
/obj/structure/cable/yellow{
d1 = 2;
d2 = 4;
@@ -47711,7 +47024,7 @@
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bQZ" = (
+"bPp" = (
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -47724,7 +47037,7 @@
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bRa" = (
+"bPq" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/poddoor/shutters/preopen{
id = "Singularity";
@@ -47735,14 +47048,14 @@
d2 = 8;
icon_state = "4-8"
},
-/turf/open/floor/plasteel{
+/obj/effect/turf_decal/bot{
dir = 2
},
-/obj/effect/turf_decal/bot{
+/turf/open/floor/plasteel{
dir = 2
},
/area/engine/engineering)
-"bRb" = (
+"bPr" = (
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -47754,12 +47067,12 @@
icon_state = "2-4";
tag = ""
},
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plating,
/area/engine/engineering)
-"bRc" = (
+"bPs" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -47772,11 +47085,11 @@
},
/turf/open/floor/plating,
/area/engine/engineering)
-"bRd" = (
+"bPt" = (
/obj/structure/particle_accelerator/end_cap,
/turf/open/floor/plating,
/area/engine/engineering)
-"bRe" = (
+"bPu" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 4;
@@ -47785,18 +47098,18 @@
/obj/effect/landmark/event_spawn,
/turf/open/floor/plating,
/area/engine/engineering)
-"bRf" = (
+"bPv" = (
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8"
},
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plating,
/area/engine/engineering)
-"bRg" = (
+"bPw" = (
/obj/structure/cable/yellow{
d1 = 2;
d2 = 8;
@@ -47810,7 +47123,7 @@
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bRh" = (
+"bPx" = (
/obj/structure/cable/yellow{
d1 = 2;
d2 = 8;
@@ -47819,7 +47132,7 @@
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bRi" = (
+"bPy" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -47827,54 +47140,54 @@
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bRj" = (
+"bPz" = (
/obj/item/weapon/shovel,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bRk" = (
+"bPA" = (
/obj/machinery/portable_atmospherics/canister/toxins,
/turf/open/floor/plating,
/area/engine/engineering)
-"bRl" = (
+"bPB" = (
/obj/machinery/power/port_gen/pacman,
/turf/open/floor/plating,
/area/engine/engineering)
-"bRm" = (
+"bPC" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/corner{
dir = 4
},
-/area/engine/engineering)
-"bRn" = (
/turf/open/floor/plasteel,
-/obj/effect/turf_decal/stripes/corner,
/area/engine/engineering)
-"bRo" = (
+"bPD" = (
+/obj/effect/turf_decal/stripes/corner,
/turf/open/floor/plasteel,
+/area/engine/engineering)
+"bPE" = (
/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
/area/engine/engineering)
-"bRp" = (
+"bPF" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
/area/engine/engineering)
-"bRq" = (
+"bPG" = (
/obj/machinery/camera{
c_tag = "Engineering Port Aft";
dir = 1;
network = list("SS13")
},
/obj/machinery/light,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
/area/engine/engineering)
-"bRr" = (
+"bPH" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -47882,7 +47195,7 @@
},
/turf/open/floor/plasteel/yellow/side,
/area/engine/engineering)
-"bRs" = (
+"bPI" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -47897,7 +47210,7 @@
},
/turf/open/floor/plasteel/yellow/side,
/area/engine/engineering)
-"bRt" = (
+"bPJ" = (
/obj/machinery/button/door{
id = "Singularity";
name = "Shutters Control";
@@ -47910,27 +47223,27 @@
d2 = 2;
icon_state = "1-2"
},
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plating,
/area/engine/engineering)
-"bRu" = (
+"bPK" = (
/obj/machinery/particle_accelerator/control_box,
/obj/structure/cable/yellow,
/turf/open/floor/plating,
/area/engine/engineering)
-"bRv" = (
+"bPL" = (
/obj/structure/particle_accelerator/fuel_chamber,
/turf/open/floor/plating,
/area/engine/engineering)
-"bRw" = (
+"bPM" = (
/obj/effect/landmark/start{
name = "Station Engineer"
},
/turf/open/floor/plating,
/area/engine/engineering)
-"bRx" = (
+"bPN" = (
/obj/machinery/button/door{
id = "Singularity";
name = "Shutters Control";
@@ -47938,12 +47251,12 @@
pixel_y = 0;
req_access_txt = "11"
},
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plating,
/area/engine/engineering)
-"bRy" = (
+"bPO" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -47958,53 +47271,53 @@
},
/turf/open/floor/plasteel/yellow/side,
/area/engine/engineering)
-"bRz" = (
+"bPP" = (
/obj/machinery/camera{
c_tag = "Engineering Starboard Aft";
dir = 1;
network = list("SS13")
},
/obj/machinery/light,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
/area/engine/engineering)
-"bRA" = (
+"bPQ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
/area/engine/engineering)
-"bRB" = (
+"bPR" = (
/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/corner{
dir = 1
},
+/turf/open/floor/plasteel,
/area/engine/engineering)
-"bRC" = (
+"bPS" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bRD" = (
+"bPT" = (
/obj/structure/closet/crate/medical,
/obj/item/stack/medical/gauze,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bRE" = (
+"bPU" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/random,
/obj/structure/table/optable,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bRF" = (
+"bPV" = (
/obj/machinery/power/emitter,
/turf/open/floor/plating,
/area/engine/engineering)
-"bRG" = (
+"bPW" = (
/obj/machinery/door/airlock/engineering{
name = "Telecommunications Transit Tube";
req_access_txt = "10; 61"
@@ -48018,7 +47331,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bRH" = (
+"bPX" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -48033,7 +47346,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/engine/engineering)
-"bRI" = (
+"bPY" = (
/obj/machinery/door/poddoor/shutters/preopen{
id = "Singularity";
name = "radiation shutters"
@@ -48043,12 +47356,12 @@
d2 = 2;
icon_state = "1-2"
},
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plating,
/area/engine/engineering)
-"bRJ" = (
+"bPZ" = (
/obj/item/stack/cable_coil{
pixel_x = 3;
pixel_y = -7
@@ -48063,30 +47376,30 @@
d2 = 2;
icon_state = "1-2"
},
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plating,
/area/engine/engineering)
-"bRK" = (
+"bQa" = (
/obj/structure/chair/stool,
/turf/open/floor/plating,
/area/engine/engineering)
-"bRL" = (
+"bQb" = (
/obj/structure/particle_accelerator/power_box,
/turf/open/floor/plating,
/area/engine/engineering)
-"bRM" = (
+"bQc" = (
/obj/item/weapon/screwdriver,
/turf/open/floor/plating,
/area/engine/engineering)
-"bRN" = (
-/turf/open/floor/plating,
+"bQd" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plating,
/area/engine/engineering)
-"bRO" = (
+"bQe" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -48100,44 +47413,44 @@
},
/turf/open/floor/plating,
/area/engine/engineering)
-"bRP" = (
+"bQf" = (
/obj/effect/landmark{
name = "xeno_spawn";
pixel_x = -1
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"bRQ" = (
+"bQg" = (
/obj/effect/decal/cleanable/robot_debris{
icon_state = "gib7"
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"bRR" = (
+"bQh" = (
/obj/item/device/radio,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bRS" = (
+"bQi" = (
/obj/effect/spawner/lootdrop/maintenance,
/obj/structure/grille/broken,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bRT" = (
+"bQj" = (
/obj/machinery/field/generator,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bRU" = (
+"bQk" = (
/obj/machinery/power/emitter,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bRV" = (
+"bQl" = (
/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plating,
/area/engine/engineering)
-"bRW" = (
+"bQm" = (
/obj/structure/sign/poster{
pixel_x = 0;
pixel_y = 32
@@ -48150,14 +47463,14 @@
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bRX" = (
+"bQn" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9;
pixel_y = 0
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bRY" = (
+"bQo" = (
/obj/machinery/light/small{
dir = 8
},
@@ -48168,7 +47481,7 @@
},
/turf/open/floor/plating,
/area/engine/engineering)
-"bRZ" = (
+"bQp" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -48184,56 +47497,56 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/engine/engineering)
-"bSa" = (
+"bQq" = (
/obj/machinery/power/rad_collector{
anchored = 1
},
/obj/item/weapon/tank/internals/plasma,
/obj/structure/cable/yellow,
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plating,
/area/engine/engineering)
-"bSb" = (
+"bQr" = (
/obj/machinery/power/rad_collector{
anchored = 1
},
/obj/structure/cable/yellow,
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plating,
/area/engine/engineering)
-"bSc" = (
+"bQs" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/engine/engineering)
-"bSd" = (
+"bQt" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
icon_state = "1-2"
},
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plating,
/area/engine/engineering)
-"bSe" = (
+"bQu" = (
/obj/structure/particle_accelerator/particle_emitter/left,
/turf/open/floor/plating,
/area/engine/engineering)
-"bSf" = (
+"bQv" = (
/obj/structure/particle_accelerator/particle_emitter/center,
/turf/open/floor/plating,
/area/engine/engineering)
-"bSg" = (
+"bQw" = (
/obj/structure/particle_accelerator/particle_emitter/right,
/turf/open/floor/plating,
/area/engine/engineering)
-"bSh" = (
+"bQx" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -48248,7 +47561,7 @@
},
/turf/open/floor/plating,
/area/engine/engineering)
-"bSi" = (
+"bQy" = (
/obj/machinery/light/small{
dir = 4
},
@@ -48259,7 +47572,7 @@
},
/turf/open/floor/plating,
/area/engine/engineering)
-"bSj" = (
+"bQz" = (
/obj/docking_port/stationary{
dheight = 9;
dir = 2;
@@ -48272,26 +47585,26 @@
},
/turf/open/space,
/area/space)
-"bSk" = (
+"bQA" = (
/obj/structure/chair,
/obj/item/weapon/cigbutt,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bSl" = (
+"bQB" = (
/obj/item/weapon/reagent_containers/food/drinks/soda_cans/cola,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bSm" = (
+"bQC" = (
/obj/structure/transit_tube_pod,
/obj/structure/transit_tube/station/reverse{
dir = 4
},
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plating,
/area/engine/engineering)
-"bSn" = (
+"bQD" = (
/obj/machinery/camera{
c_tag = "Engineering Telecoms Access";
dir = 8;
@@ -48312,7 +47625,7 @@
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bSo" = (
+"bQE" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -48327,28 +47640,28 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/engine/engineering)
-"bSp" = (
+"bQF" = (
/obj/structure/cable/yellow{
icon_state = "1-4";
d1 = 1;
d2 = 4
},
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 10
},
+/turf/open/floor/plating,
/area/engine/engineering)
-"bSq" = (
+"bQG" = (
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
icon_state = "4-8";
pixel_y = 0
},
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating,
/area/engine/engineering)
-"bSr" = (
+"bQH" = (
/obj/item/weapon/wirecutters,
/obj/structure/cable/yellow{
d1 = 2;
@@ -48356,20 +47669,20 @@
icon_state = "2-8";
tag = ""
},
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line,
-/area/engine/engineering)
-"bSs" = (
/turf/open/floor/plating,
-/obj/effect/turf_decal/stripes/line,
/area/engine/engineering)
-"bSt" = (
+"bQI" = (
+/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating,
+/area/engine/engineering)
+"bQJ" = (
/obj/effect/turf_decal/stripes/line{
dir = 6
},
+/turf/open/floor/plating,
/area/engine/engineering)
-"bSu" = (
+"bQK" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -48383,7 +47696,7 @@
},
/turf/open/floor/plating,
/area/engine/engineering)
-"bSv" = (
+"bQL" = (
/obj/structure/lattice,
/obj/machinery/camera/motion{
c_tag = "Telecoms External Port Aft";
@@ -48392,7 +47705,7 @@
},
/turf/open/space,
/area/space)
-"bSw" = (
+"bQM" = (
/obj/structure/lattice,
/obj/machinery/camera/motion{
c_tag = "Telecoms External Starboard Aft";
@@ -48401,14 +47714,14 @@
},
/turf/open/space,
/area/space)
-"bSx" = (
+"bQN" = (
/obj/structure/transit_tube,
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plating,
/area/engine/engineering)
-"bSy" = (
+"bQO" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1;
@@ -48417,13 +47730,13 @@
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"bSz" = (
+"bQP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall/r_wall,
/area/engine/engineering)
-"bSA" = (
+"bQQ" = (
/obj/structure/grille,
/obj/structure/cable{
d1 = 2;
@@ -48435,7 +47748,7 @@
},
/turf/open/floor/plating/airless,
/area/engine/engineering)
-"bSB" = (
+"bQR" = (
/obj/structure/cable{
icon_state = "1-8"
},
@@ -48444,7 +47757,7 @@
},
/turf/open/floor/plating/airless,
/area/engine/engineering)
-"bSC" = (
+"bQS" = (
/obj/machinery/camera/emp_proof{
c_tag = "Engine Containment Port Fore";
dir = 2;
@@ -48452,14 +47765,14 @@
},
/turf/open/floor/plating/airless,
/area/engine/engineering)
-"bSD" = (
+"bQT" = (
/obj/machinery/power/grounding_rod,
/turf/open/floor/plating/airless,
/area/engine/engineering)
-"bSE" = (
+"bQU" = (
/turf/open/floor/plating/airless,
/area/engine/engineering)
-"bSF" = (
+"bQV" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/cable/yellow{
@@ -48469,7 +47782,7 @@
},
/turf/open/floor/plating,
/area/engine/engineering)
-"bSG" = (
+"bQW" = (
/obj/machinery/camera/emp_proof{
c_tag = "Engine Containment Starboard Fore";
dir = 2;
@@ -48477,7 +47790,7 @@
},
/turf/open/floor/plating/airless,
/area/engine/engineering)
-"bSH" = (
+"bQX" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -48485,7 +47798,7 @@
},
/turf/open/floor/plating/airless,
/area/engine/engineering)
-"bSI" = (
+"bQY" = (
/obj/structure/grille,
/obj/structure/cable{
d1 = 2;
@@ -48494,12 +47807,12 @@
},
/turf/open/floor/plating/airless,
/area/engine/engineering)
-"bSJ" = (
+"bQZ" = (
/obj/structure/window/reinforced/fulltile,
/obj/structure/transit_tube,
/turf/open/floor/plating,
/area/engine/engineering)
-"bSK" = (
+"bRa" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 2;
name = "Engineering External Access";
@@ -48508,7 +47821,7 @@
},
/turf/open/floor/plating,
/area/engine/engineering)
-"bSL" = (
+"bRb" = (
/obj/structure/grille,
/obj/structure/cable{
d1 = 1;
@@ -48517,7 +47830,7 @@
},
/turf/open/floor/plating/airless,
/area/engine/engineering)
-"bSM" = (
+"bRc" = (
/obj/structure/cable/yellow{
d1 = 2;
d2 = 4;
@@ -48526,7 +47839,7 @@
},
/turf/open/floor/plating/airless,
/area/engine/engineering)
-"bSN" = (
+"bRd" = (
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -48535,7 +47848,7 @@
},
/turf/open/floor/plating/airless,
/area/engine/engineering)
-"bSO" = (
+"bRe" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 8;
@@ -48550,7 +47863,7 @@
},
/turf/open/floor/plating/airless,
/area/engine/engineering)
-"bSP" = (
+"bRf" = (
/obj/structure/cable/yellow{
d1 = 2;
d2 = 8;
@@ -48559,11 +47872,11 @@
},
/turf/open/floor/plating/airless,
/area/engine/engineering)
-"bSQ" = (
+"bRg" = (
/obj/structure/transit_tube,
/turf/open/floor/plating,
/area/space)
-"bSR" = (
+"bRh" = (
/obj/machinery/light/small{
dir = 8
},
@@ -48577,7 +47890,7 @@
},
/turf/open/floor/plating,
/area/engine/engineering)
-"bSS" = (
+"bRi" = (
/obj/structure/grille,
/obj/structure/cable{
d1 = 1;
@@ -48591,7 +47904,7 @@
},
/turf/open/floor/plating/airless,
/area/engine/engineering)
-"bST" = (
+"bRj" = (
/obj/machinery/power/emitter{
anchored = 1;
dir = 4;
@@ -48603,13 +47916,13 @@
},
/turf/open/floor/plating/airless,
/area/engine/engineering)
-"bSU" = (
-/turf/open/floor/plating/airless,
+"bRk" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plating/airless,
/area/engine/engineering)
-"bSV" = (
+"bRl" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -48617,20 +47930,20 @@
},
/turf/open/floor/plating/airless,
/area/engine/engineering)
-"bSW" = (
+"bRm" = (
/obj/machinery/field/generator{
anchored = 1;
state = 2
},
/turf/open/floor/plating/airless,
/area/space/nearstation)
-"bSX" = (
-/turf/open/floor/plating/airless,
+"bRn" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plating/airless,
/area/engine/engineering)
-"bSY" = (
+"bRo" = (
/obj/machinery/power/emitter{
anchored = 1;
dir = 8;
@@ -48642,7 +47955,7 @@
},
/turf/open/floor/plating/airless,
/area/engine/engineering)
-"bSZ" = (
+"bRp" = (
/obj/structure/grille,
/obj/structure/cable{
d1 = 1;
@@ -48656,7 +47969,7 @@
},
/turf/open/floor/plating/airless,
/area/engine/engineering)
-"bTa" = (
+"bRq" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 1;
name = "Engineering External Access";
@@ -48665,7 +47978,7 @@
},
/turf/open/floor/plating,
/area/engine/engineering)
-"bTb" = (
+"bRr" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -48678,7 +47991,7 @@
},
/turf/open/floor/plating/airless,
/area/engine/engineering)
-"bTc" = (
+"bRs" = (
/obj/structure/cable/yellow{
d2 = 8;
icon_state = "0-8"
@@ -48686,7 +47999,7 @@
/obj/machinery/power/tesla_coil,
/turf/open/floor/plating/airless,
/area/engine/engineering)
-"bTd" = (
+"bRt" = (
/obj/structure/cable/yellow{
icon_state = "0-4";
d2 = 4
@@ -48694,7 +48007,7 @@
/obj/machinery/power/tesla_coil,
/turf/open/floor/plating/airless,
/area/engine/engineering)
-"bTe" = (
+"bRu" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 2;
@@ -48708,11 +48021,11 @@
},
/turf/open/floor/plating/airless,
/area/engine/engineering)
-"bTf" = (
+"bRv" = (
/obj/structure/lattice/catwalk,
/turf/open/space,
/area/space/nearstation)
-"bTg" = (
+"bRw" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -48721,7 +48034,7 @@
/obj/structure/grille,
/turf/open/floor/plating/airless,
/area/engine/engineering)
-"bTh" = (
+"bRx" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -48730,7 +48043,7 @@
/obj/structure/grille,
/turf/open/floor/plating/airless,
/area/engine/engineering)
-"bTi" = (
+"bRy" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -48739,7 +48052,7 @@
/obj/structure/grille,
/turf/open/floor/plating/airless,
/area/engine/engineering)
-"bTj" = (
+"bRz" = (
/obj/structure/cable{
d1 = 1;
d2 = 8;
@@ -48748,17 +48061,17 @@
/obj/structure/grille,
/turf/open/floor/plating/airless,
/area/engine/engineering)
-"bTk" = (
+"bRA" = (
/turf/closed/mineral,
/area/mine/explored{
name = "Bomb Testing Asteroid"
})
-"bTl" = (
+"bRB" = (
/turf/closed/wall,
/area/mine/explored{
name = "Bomb Testing Asteroid"
})
-"bTm" = (
+"bRC" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'BOMB RANGE";
name = "BOMB RANGE"
@@ -48771,16 +48084,16 @@
/area/mine/explored{
name = "Bomb Testing Asteroid"
})
-"bTn" = (
+"bRD" = (
/turf/open/floor/plating/asteroid/airless,
/area/mine/explored{
name = "Bomb Testing Asteroid"
})
-"bTo" = (
+"bRE" = (
/obj/structure/transit_tube/crossing,
/turf/open/floor/plating,
/area/space)
-"bTp" = (
+"bRF" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -48789,25 +48102,25 @@
/obj/structure/grille,
/turf/open/floor/plating/airless,
/area/engine/engineering)
-"bTq" = (
-/turf/open/floor/plating/airless,
+"bRG" = (
/obj/effect/turf_decal/stripes/line{
dir = 9
},
-/area/space/nearstation)
-"bTr" = (
/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"bRH" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
-/area/space/nearstation)
-"bTs" = (
/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"bRI" = (
/obj/effect/turf_decal/stripes/line{
dir = 5
},
+/turf/open/floor/plating/airless,
/area/space/nearstation)
-"bTt" = (
+"bRJ" = (
/obj/machinery/camera{
active_power_usage = 0;
c_tag = "Bomb Testing Asteroid Fore";
@@ -48822,7 +48135,7 @@
/area/mine/explored{
name = "Bomb Testing Asteroid"
})
-"bTu" = (
+"bRK" = (
/obj/machinery/light{
dir = 8
},
@@ -48834,24 +48147,24 @@
/obj/structure/grille,
/turf/open/floor/plating/airless,
/area/engine/engineering)
-"bTv" = (
+"bRL" = (
/obj/machinery/the_singularitygen,
-/turf/open/floor/plating/airless,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plating/airless,
/area/space/nearstation)
-"bTw" = (
+"bRM" = (
/obj/machinery/the_singularitygen/tesla,
/turf/open/floor/plating/airless,
/area/space/nearstation)
-"bTx" = (
-/turf/open/floor/plating/airless,
+"bRN" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plating/airless,
/area/space/nearstation)
-"bTy" = (
+"bRO" = (
/obj/machinery/light{
dir = 4;
icon_state = "tube1"
@@ -48864,36 +48177,36 @@
/obj/structure/grille,
/turf/open/floor/plating/airless,
/area/engine/engineering)
-"bTz" = (
+"bRP" = (
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating/asteroid/airless,
/area/mine/explored{
name = "Bomb Testing Asteroid"
})
-"bTA" = (
-/turf/open/floor/plating/airless,
+"bRQ" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
},
-/area/space/nearstation)
-"bTB" = (
/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"bRR" = (
/obj/effect/turf_decal/stripes/line{
dir = 2
},
-/area/space/nearstation)
-"bTC" = (
/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"bRS" = (
/obj/effect/turf_decal/stripes/line{
dir = 6
},
+/turf/open/floor/plating/airless,
/area/space/nearstation)
-"bTD" = (
+"bRT" = (
/turf/closed/mineral/random/low_chance,
/area/mine/explored{
name = "Bomb Testing Asteroid"
})
-"bTE" = (
+"bRU" = (
/obj/item/device/radio/beacon,
/obj/effect/landmark{
name = "revenantspawn"
@@ -48902,7 +48215,7 @@
/area/mine/explored{
name = "Bomb Testing Asteroid"
})
-"bTF" = (
+"bRV" = (
/obj/item/device/flashlight/lantern{
on = 1
},
@@ -48910,7 +48223,7 @@
/area/mine/explored{
name = "Bomb Testing Asteroid"
})
-"bTG" = (
+"bRW" = (
/obj/structure/grille,
/obj/structure/cable{
d1 = 1;
@@ -48919,7 +48232,7 @@
},
/turf/open/floor/plating/airless,
/area/engine/engineering)
-"bTH" = (
+"bRX" = (
/obj/structure/grille,
/obj/structure/cable{
d1 = 1;
@@ -48928,11 +48241,11 @@
},
/turf/open/floor/plating/airless,
/area/engine/engineering)
-"bTI" = (
+"bRY" = (
/obj/structure/grille,
/turf/open/floor/plating/airless,
/area/engine/engineering)
-"bTJ" = (
+"bRZ" = (
/obj/structure/cable/yellow{
icon_state = "0-2";
d2 = 2
@@ -48940,7 +48253,7 @@
/obj/machinery/power/tesla_coil,
/turf/open/floor/plating/airless,
/area/engine/engineering)
-"bTK" = (
+"bSa" = (
/obj/machinery/camera/emp_proof{
c_tag = "Engine Containment Port Aft";
dir = 1;
@@ -48948,7 +48261,7 @@
},
/turf/open/floor/plating/airless,
/area/engine/engineering)
-"bTL" = (
+"bSb" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 4;
@@ -48957,7 +48270,7 @@
},
/turf/open/floor/plating/airless,
/area/engine/engineering)
-"bTM" = (
+"bSc" = (
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -48972,7 +48285,7 @@
},
/turf/open/floor/plating/airless,
/area/engine/engineering)
-"bTN" = (
+"bSd" = (
/obj/structure/cable/yellow{
d1 = 4;
d2 = 8;
@@ -48988,7 +48301,7 @@
/obj/machinery/light,
/turf/open/floor/plating/airless,
/area/engine/engineering)
-"bTO" = (
+"bSe" = (
/obj/structure/cable/yellow{
d1 = 1;
d2 = 8;
@@ -48997,7 +48310,7 @@
},
/turf/open/floor/plating/airless,
/area/engine/engineering)
-"bTP" = (
+"bSf" = (
/obj/machinery/camera/emp_proof{
c_tag = "Engine Containment Starboard Aft";
dir = 1;
@@ -49005,38 +48318,38 @@
},
/turf/open/floor/plating/airless,
/area/engine/engineering)
-"bTQ" = (
+"bSg" = (
/turf/closed/mineral/iron,
/area/mine/explored{
name = "Bomb Testing Asteroid"
})
-"bTR" = (
+"bSh" = (
/obj/structure/sign/securearea,
/turf/closed/wall/r_wall,
/area/engine/engineering)
-"bTS" = (
+"bSi" = (
/obj/effect/spawner/lootdrop/maintenance,
/turf/closed/mineral,
/area/mine/explored{
name = "Bomb Testing Asteroid"
})
-"bTT" = (
+"bSj" = (
/turf/closed/wall/r_wall,
/area/tcommsat/computer)
-"bTU" = (
+"bSk" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 4
},
/turf/open/floor/plating/airless,
/area/space)
-"bTV" = (
+"bSl" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
/turf/open/space,
/area/space)
-"bTW" = (
+"bSm" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 2;
name = "Telecommunications External Access";
@@ -49045,14 +48358,14 @@
},
/turf/open/floor/plating,
/area/tcommsat/computer)
-"bTX" = (
+"bSn" = (
/obj/machinery/light/small{
brightness = 3;
dir = 8
},
/turf/open/floor/plating,
/area/tcommsat/computer)
-"bTY" = (
+"bSo" = (
/obj/structure/closet/emcloset{
anchored = 1;
desc = "It's a storage unit for emergency breath masks and O2 tanks, and is securely bolted in place.";
@@ -49060,12 +48373,12 @@
},
/turf/open/floor/plating,
/area/tcommsat/computer)
-"bTZ" = (
+"bSp" = (
/obj/structure/window/reinforced/fulltile,
/obj/structure/transit_tube,
/turf/open/floor/plating,
/area/tcommsat/computer)
-"bUa" = (
+"bSq" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 1;
name = "Telecommunications External Access";
@@ -49074,11 +48387,11 @@
},
/turf/open/floor/plating,
/area/tcommsat/computer)
-"bUb" = (
+"bSr" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall/r_wall,
/area/tcommsat/computer)
-"bUc" = (
+"bSs" = (
/obj/docking_port/stationary{
dheight = 9;
dir = 2;
@@ -49091,28 +48404,28 @@
},
/turf/open/space,
/area/space)
-"bUd" = (
+"bSt" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/tcommsat/computer)
-"bUe" = (
+"bSu" = (
/obj/structure/transit_tube,
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plating,
/area/tcommsat/computer)
-"bUf" = (
+"bSv" = (
/obj/machinery/light/small{
dir = 1
},
/turf/open/floor/plasteel,
/area/tcommsat/computer)
-"bUg" = (
+"bSw" = (
/turf/open/floor/plasteel,
/area/tcommsat/computer)
-"bUh" = (
+"bSx" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
on = 1
},
@@ -49121,10 +48434,10 @@
},
/turf/open/floor/plasteel,
/area/tcommsat/computer)
-"bUi" = (
+"bSy" = (
/turf/closed/wall,
/area/tcommsat/computer)
-"bUj" = (
+"bSz" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 1;
name = "Waste Out";
@@ -49132,26 +48445,26 @@
},
/turf/open/floor/plating,
/area/tcommsat/computer)
-"bUk" = (
+"bSA" = (
/obj/machinery/atmospherics/components/unary/tank/air,
/turf/open/floor/plating,
/area/tcommsat/computer)
-"bUl" = (
+"bSB" = (
/obj/structure/grille,
/obj/structure/lattice,
/obj/structure/lattice,
/turf/open/space,
/area/space)
-"bUm" = (
+"bSC" = (
/obj/structure/transit_tube/station/reverse/flipped{
dir = 8
},
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plating,
/area/tcommsat/computer)
-"bUn" = (
+"bSD" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1;
@@ -49160,7 +48473,7 @@
},
/turf/open/floor/plasteel,
/area/tcommsat/computer)
-"bUo" = (
+"bSE" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1;
initialize_directions = 11
@@ -49168,14 +48481,14 @@
/obj/item/device/radio/beacon,
/turf/open/floor/plasteel,
/area/tcommsat/computer)
-"bUp" = (
+"bSF" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/tcommsat/computer)
-"bUq" = (
+"bSG" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "Telecommunications Maintenance";
req_access_txt = "61"
@@ -49185,13 +48498,13 @@
},
/turf/open/floor/plating,
/area/tcommsat/computer)
-"bUr" = (
+"bSH" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
/turf/open/floor/plating,
/area/tcommsat/computer)
-"bUs" = (
+"bSI" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 0;
name = "Air Out";
@@ -49202,29 +48515,29 @@
},
/turf/open/floor/plating,
/area/tcommsat/computer)
-"bUt" = (
-/turf/open/floor/plating,
+"bSJ" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plating,
/area/tcommsat/computer)
-"bUu" = (
+"bSK" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/tcommsat/computer)
-"bUv" = (
+"bSL" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
/turf/open/floor/plasteel,
/area/tcommsat/computer)
-"bUw" = (
+"bSM" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/closed/wall,
/area/tcommsat/computer)
-"bUx" = (
+"bSN" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -49232,7 +48545,7 @@
/obj/item/stack/cable_coil,
/turf/open/floor/plating,
/area/tcommsat/computer)
-"bUy" = (
+"bSO" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9;
pixel_y = 0
@@ -49240,7 +48553,7 @@
/obj/machinery/power/port_gen/pacman,
/turf/open/floor/plating,
/area/tcommsat/computer)
-"bUz" = (
+"bSP" = (
/obj/machinery/door/airlock/engineering{
name = "Telecommunications Chamber";
req_access_txt = "61"
@@ -49248,11 +48561,11 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/tcommsat/computer)
-"bUA" = (
+"bSQ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall/r_wall,
/area/tcommsat/computer)
-"bUB" = (
+"bSR" = (
/obj/structure/rack,
/obj/item/weapon/storage/toolbox/mechanical,
/obj/item/device/radio,
@@ -49265,7 +48578,7 @@
dir = 9
},
/area/tcommsat/computer)
-"bUC" = (
+"bSS" = (
/obj/machinery/requests_console{
announcementConsole = 1;
department = "Telecoms Admin";
@@ -49284,13 +48597,13 @@
dir = 1
},
/area/tcommsat/computer)
-"bUD" = (
+"bST" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/yellow/side{
dir = 1
},
/area/tcommsat/computer)
-"bUE" = (
+"bSU" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -49314,7 +48627,7 @@
dir = 1
},
/area/tcommsat/computer)
-"bUF" = (
+"bSV" = (
/obj/machinery/door/airlock/glass_command{
name = "Control Room";
req_access_txt = "19; 61"
@@ -49332,7 +48645,7 @@
dir = 1
},
/area/tcommsat/computer)
-"bUG" = (
+"bSW" = (
/obj/machinery/power/apc{
dir = 1;
name = "Telecoms Monitoring APC";
@@ -49352,13 +48665,13 @@
dir = 1
},
/area/tcommsat/computer)
-"bUH" = (
+"bSX" = (
/obj/machinery/announcement_system,
/turf/open/floor/plasteel/yellow/side{
dir = 5
},
/area/tcommsat/computer)
-"bUI" = (
+"bSY" = (
/obj/machinery/light/small{
brightness = 3;
dir = 8
@@ -49374,20 +48687,20 @@
tag = ""
},
/area/tcommsat/computer)
-"bUJ" = (
+"bSZ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/structure/chair/office/dark,
/turf/open/floor/plasteel/yellow/corner,
/area/tcommsat/computer)
-"bUK" = (
+"bTa" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/yellow/side,
/area/tcommsat/computer)
-"bUL" = (
+"bTb" = (
/obj/structure/cable{
tag = "icon-1-2";
icon_state = "1-2"
@@ -49395,7 +48708,7 @@
/obj/machinery/atmospherics/pipe/manifold/supply,
/turf/open/floor/plasteel/yellow/side,
/area/tcommsat/computer)
-"bUM" = (
+"bTc" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -49403,7 +48716,7 @@
},
/turf/open/floor/plating,
/area/tcommsat/computer)
-"bUN" = (
+"bTd" = (
/obj/structure/chair/office/dark,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -49412,7 +48725,7 @@
dir = 8
},
/area/tcommsat/computer)
-"bUO" = (
+"bTe" = (
/obj/machinery/light/small{
dir = 4
},
@@ -49424,7 +48737,7 @@
dir = 4
},
/area/tcommsat/computer)
-"bUP" = (
+"bTf" = (
/obj/machinery/status_display{
pixel_x = -32
},
@@ -49439,7 +48752,7 @@
dir = 10
},
/area/tcommsat/computer)
-"bUQ" = (
+"bTg" = (
/obj/machinery/computer/telecomms/monitor{
network = "tcommsat"
},
@@ -49447,7 +48760,7 @@
dir = 6
},
/area/tcommsat/computer)
-"bUR" = (
+"bTh" = (
/obj/machinery/door/airlock/glass_engineering{
cyclelinkeddir = 2;
name = "Server Room";
@@ -49461,7 +48774,7 @@
dir = 5
},
/area/tcommsat/computer)
-"bUS" = (
+"bTi" = (
/obj/machinery/computer/telecomms/server{
network = "tcommsat"
},
@@ -49469,13 +48782,13 @@
dir = 10
},
/area/tcommsat/computer)
-"bUT" = (
+"bTj" = (
/obj/machinery/computer/message_monitor,
/turf/open/floor/plasteel/yellow/side{
dir = 6
},
/area/tcommsat/computer)
-"bUU" = (
+"bTk" = (
/obj/structure/cable{
tag = "icon-1-2";
icon_state = "1-2"
@@ -49484,10 +48797,10 @@
dir = 5
},
/area/tcommsat/computer)
-"bUV" = (
+"bTl" = (
/turf/closed/wall/r_wall,
/area/tcommsat/server)
-"bUW" = (
+"bTm" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -49495,7 +48808,7 @@
},
/turf/closed/wall/r_wall,
/area/tcommsat/server)
-"bUX" = (
+"bTn" = (
/obj/machinery/power/smes{
charge = 5e+006
},
@@ -49512,7 +48825,7 @@
initial_gas_mix = "n2=100;TEMP=80"
},
/area/tcommsat/server)
-"bUY" = (
+"bTo" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/cable{
@@ -49523,7 +48836,7 @@
},
/turf/open/floor/plating,
/area/tcommsat/computer)
-"bUZ" = (
+"bTp" = (
/obj/machinery/door/airlock/glass_engineering{
cyclelinkeddir = 1;
name = "Server Room";
@@ -49538,21 +48851,21 @@
dir = 5
},
/area/tcommsat/computer)
-"bVa" = (
+"bTq" = (
/obj/machinery/blackbox_recorder,
/turf/open/floor/bluegrid{
name = "Mainframe Base";
initial_gas_mix = "n2=100;TEMP=80"
},
/area/tcommsat/server)
-"bVb" = (
+"bTr" = (
/obj/machinery/message_server,
/turf/open/floor/bluegrid{
name = "Mainframe Base";
initial_gas_mix = "n2=100;TEMP=80"
},
/area/tcommsat/server)
-"bVc" = (
+"bTs" = (
/obj/machinery/power/apc{
cell_type = 5000;
dir = 1;
@@ -49564,59 +48877,59 @@
/obj/structure/cable,
/turf/open/floor/plasteel/black,
/area/tcommsat/server)
-"bVd" = (
+"bTt" = (
/obj/machinery/power/terminal{
icon_state = "term";
dir = 1
},
/turf/open/floor/plasteel/black,
/area/tcommsat/server)
-"bVe" = (
+"bTu" = (
/turf/open/floor/plasteel/black,
/area/tcommsat/server)
-"bVf" = (
+"bTv" = (
/obj/machinery/telecomms/bus/preset_three,
/turf/open/floor/bluegrid{
name = "Mainframe Base";
initial_gas_mix = "n2=100;TEMP=80"
},
/area/tcommsat/server)
-"bVg" = (
+"bTw" = (
/obj/machinery/telecomms/receiver/preset_left,
/turf/open/floor/bluegrid{
name = "Mainframe Base";
initial_gas_mix = "n2=100;TEMP=80"
},
/area/tcommsat/server)
-"bVh" = (
+"bTx" = (
/obj/machinery/telecomms/processor/preset_three,
/turf/open/floor/bluegrid{
name = "Mainframe Base";
initial_gas_mix = "n2=100;TEMP=80"
},
/area/tcommsat/server)
-"bVi" = (
+"bTy" = (
/obj/machinery/telecomms/processor/preset_one,
/turf/open/floor/bluegrid{
name = "Mainframe Base";
initial_gas_mix = "n2=100;TEMP=80"
},
/area/tcommsat/server)
-"bVj" = (
+"bTz" = (
/obj/machinery/telecomms/receiver/preset_right,
/turf/open/floor/bluegrid{
name = "Mainframe Base";
initial_gas_mix = "n2=100;TEMP=80"
},
/area/tcommsat/server)
-"bVk" = (
+"bTA" = (
/obj/machinery/telecomms/bus/preset_one,
/turf/open/floor/bluegrid{
name = "Mainframe Base";
initial_gas_mix = "n2=100;TEMP=80"
},
/area/tcommsat/server)
-"bVl" = (
+"bTB" = (
/obj/machinery/camera{
active_power_usage = 0;
c_tag = "Bomb Testing Asteroid Aft";
@@ -49632,26 +48945,26 @@
/area/mine/explored{
name = "Bomb Testing Asteroid"
})
-"bVm" = (
+"bTC" = (
/obj/machinery/light{
dir = 8
},
/turf/open/floor/plasteel/darkred/side,
/area/tcommsat/server)
-"bVn" = (
+"bTD" = (
/turf/open/floor/plasteel/darkpurple/side,
/area/tcommsat/server)
-"bVo" = (
+"bTE" = (
/turf/open/floor/plasteel/darkgreen/side,
/area/tcommsat/server)
-"bVp" = (
+"bTF" = (
/obj/machinery/light{
dir = 4;
icon_state = "tube1"
},
/turf/open/floor/plasteel/darkgreen/side,
/area/tcommsat/server)
-"bVq" = (
+"bTG" = (
/turf/closed/indestructible{
desc = "A wall impregnated with Fixium, able to withstand massive explosions with ease";
icon_state = "riveted";
@@ -49660,56 +48973,56 @@
/area/mine/explored{
name = "Bomb Testing Asteroid"
})
-"bVr" = (
+"bTH" = (
/obj/machinery/telecomms/server/presets/security,
/turf/open/floor/bluegrid{
name = "Mainframe Base";
initial_gas_mix = "n2=100;TEMP=80"
},
/area/tcommsat/server)
-"bVs" = (
+"bTI" = (
/obj/machinery/telecomms/server/presets/science,
/turf/open/floor/bluegrid{
name = "Mainframe Base";
initial_gas_mix = "n2=100;TEMP=80"
},
/area/tcommsat/server)
-"bVt" = (
+"bTJ" = (
/obj/machinery/telecomms/hub/preset,
/turf/open/floor/bluegrid{
name = "Mainframe Base";
initial_gas_mix = "n2=100;TEMP=80"
},
/area/tcommsat/server)
-"bVu" = (
+"bTK" = (
/obj/machinery/telecomms/server/presets/common,
/turf/open/floor/bluegrid{
name = "Mainframe Base";
initial_gas_mix = "n2=100;TEMP=80"
},
/area/tcommsat/server)
-"bVv" = (
+"bTL" = (
/obj/machinery/telecomms/server/presets/service,
/turf/open/floor/bluegrid{
name = "Mainframe Base";
initial_gas_mix = "n2=100;TEMP=80"
},
/area/tcommsat/server)
-"bVw" = (
+"bTM" = (
/obj/machinery/telecomms/server/presets/medical,
/turf/open/floor/bluegrid{
name = "Mainframe Base";
initial_gas_mix = "n2=100;TEMP=80"
},
/area/tcommsat/server)
-"bVx" = (
+"bTN" = (
/obj/machinery/telecomms/server/presets/command,
/turf/open/floor/bluegrid{
name = "Mainframe Base";
initial_gas_mix = "n2=100;TEMP=80"
},
/area/tcommsat/server)
-"bVy" = (
+"bTO" = (
/obj/machinery/power/terminal,
/obj/machinery/ntnet_relay,
/turf/open/floor/bluegrid{
@@ -49717,21 +49030,21 @@
initial_gas_mix = "n2=100;TEMP=80"
},
/area/tcommsat/server)
-"bVz" = (
+"bTP" = (
/obj/machinery/telecomms/server/presets/supply,
/turf/open/floor/bluegrid{
name = "Mainframe Base";
initial_gas_mix = "n2=100;TEMP=80"
},
/area/tcommsat/server)
-"bVA" = (
+"bTQ" = (
/obj/machinery/telecomms/server/presets/engineering,
/turf/open/floor/bluegrid{
name = "Mainframe Base";
initial_gas_mix = "n2=100;TEMP=80"
},
/area/tcommsat/server)
-"bVB" = (
+"bTR" = (
/obj/machinery/light{
dir = 8
},
@@ -49739,17 +49052,17 @@
dir = 1
},
/area/tcommsat/server)
-"bVC" = (
+"bTS" = (
/turf/open/floor/plasteel/darkblue/side{
dir = 1
},
/area/tcommsat/server)
-"bVD" = (
+"bTT" = (
/turf/open/floor/plasteel/darkyellow/side{
dir = 1
},
/area/tcommsat/server)
-"bVE" = (
+"bTU" = (
/obj/machinery/light{
dir = 4;
icon_state = "tube1"
@@ -49758,49 +49071,49 @@
dir = 1
},
/area/tcommsat/server)
-"bVF" = (
+"bTV" = (
/obj/machinery/telecomms/processor/preset_four,
/turf/open/floor/bluegrid{
name = "Mainframe Base";
initial_gas_mix = "n2=100;TEMP=80"
},
/area/tcommsat/server)
-"bVG" = (
+"bTW" = (
/obj/machinery/telecomms/broadcaster/preset_left,
/turf/open/floor/bluegrid{
name = "Mainframe Base";
initial_gas_mix = "n2=100;TEMP=80"
},
/area/tcommsat/server)
-"bVH" = (
+"bTX" = (
/obj/machinery/telecomms/bus/preset_four,
/turf/open/floor/bluegrid{
name = "Mainframe Base";
initial_gas_mix = "n2=100;TEMP=80"
},
/area/tcommsat/server)
-"bVI" = (
+"bTY" = (
/obj/machinery/telecomms/bus/preset_two,
/turf/open/floor/bluegrid{
name = "Mainframe Base";
initial_gas_mix = "n2=100;TEMP=80"
},
/area/tcommsat/server)
-"bVJ" = (
+"bTZ" = (
/obj/machinery/telecomms/broadcaster/preset_right,
/turf/open/floor/bluegrid{
name = "Mainframe Base";
initial_gas_mix = "n2=100;TEMP=80"
},
/area/tcommsat/server)
-"bVK" = (
+"bUa" = (
/obj/machinery/telecomms/processor/preset_two,
/turf/open/floor/bluegrid{
name = "Mainframe Base";
initial_gas_mix = "n2=100;TEMP=80"
},
/area/tcommsat/server)
-"bVL" = (
+"bUb" = (
/obj/structure/table,
/obj/item/weapon/stock_parts/subspace/amplifier,
/obj/item/weapon/stock_parts/subspace/amplifier,
@@ -49808,7 +49121,7 @@
/obj/item/weapon/stock_parts/subspace/analyzer,
/turf/open/floor/plasteel/black,
/area/tcommsat/server)
-"bVM" = (
+"bUc" = (
/obj/structure/table,
/obj/item/weapon/stock_parts/subspace/ansible,
/obj/item/weapon/stock_parts/subspace/ansible,
@@ -49816,7 +49129,7 @@
/obj/item/weapon/stock_parts/subspace/crystal,
/turf/open/floor/plasteel/black,
/area/tcommsat/server)
-"bVN" = (
+"bUd" = (
/obj/structure/table,
/obj/item/weapon/stock_parts/subspace/filter,
/obj/item/weapon/stock_parts/subspace/filter,
@@ -49824,7 +49137,7 @@
/obj/item/weapon/stock_parts/subspace/transmitter,
/turf/open/floor/plasteel/black,
/area/tcommsat/server)
-"bVO" = (
+"bUe" = (
/obj/machinery/camera/motion{
c_tag = "Telecoms Server Room";
dir = 1;
@@ -49835,7 +49148,7 @@
initial_gas_mix = "n2=100;TEMP=80"
},
/area/tcommsat/server)
-"bVP" = (
+"bUf" = (
/obj/structure/table,
/obj/item/weapon/stock_parts/subspace/treatment,
/obj/item/weapon/stock_parts/subspace/treatment,
@@ -49843,7 +49156,7 @@
/obj/item/weapon/stock_parts/manipulator,
/turf/open/floor/plasteel/black,
/area/tcommsat/server)
-"bVQ" = (
+"bUg" = (
/obj/structure/table,
/obj/item/weapon/stock_parts/console_screen,
/obj/item/weapon/stock_parts/console_screen,
@@ -49851,13 +49164,13 @@
/obj/item/weapon/stock_parts/micro_laser,
/turf/open/floor/plasteel/black,
/area/tcommsat/server)
-"bVR" = (
+"bUh" = (
/obj/structure/table,
/obj/item/weapon/stock_parts/scanning_module,
/obj/item/weapon/stock_parts/scanning_module,
/turf/open/floor/plasteel/black,
/area/tcommsat/server)
-"bVS" = (
+"bUi" = (
/obj/machinery/camera/motion{
c_tag = "MiniSat External Port";
dir = 8;
@@ -49865,7 +49178,7 @@
},
/turf/open/space,
/area/space)
-"bVT" = (
+"bUj" = (
/obj/machinery/door/firedoor/heavy,
/obj/machinery/door/airlock/glass_command{
name = "AI Core";
@@ -49873,7 +49186,7 @@
},
/turf/open/floor/plasteel/white,
/area/wreck/ai)
-"bVU" = (
+"bUk" = (
/obj/machinery/camera/motion{
c_tag = "MiniSat External Starboard";
dir = 4;
@@ -49881,7 +49194,7 @@
},
/turf/open/space,
/area/space)
-"bVV" = (
+"bUl" = (
/obj/item/device/radio/intercom{
broadcasting = 1;
frequency = 1447;
@@ -49892,7 +49205,7 @@
},
/turf/open/floor/bluegrid,
/area/wreck/ai)
-"bVW" = (
+"bUm" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
on = 1;
@@ -49901,7 +49214,7 @@
},
/turf/open/floor/plasteel/black,
/area/wreck/ai)
-"bVX" = (
+"bUn" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -49909,10 +49222,10 @@
},
/turf/open/floor/plating,
/area/wreck/ai)
-"bVY" = (
+"bUo" = (
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAP)
-"bVZ" = (
+"bUp" = (
/obj/structure/lattice,
/obj/machinery/camera/motion{
c_tag = "MiniSat Entrance";
@@ -49921,7 +49234,7 @@
},
/turf/open/space,
/area/space)
-"bWa" = (
+"bUq" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/cable{
@@ -49931,35 +49244,35 @@
/obj/structure/cable,
/turf/open/floor/plating,
/area/security/transfer)
-"bWb" = (
+"bUr" = (
/obj/structure/closet/l3closet,
/turf/open/floor/plasteel/showroomfloor,
/area/security/main)
-"bWc" = (
+"bUs" = (
/obj/structure/closet/bombcloset,
/turf/open/floor/plasteel/showroomfloor,
/area/security/main)
-"bWd" = (
+"bUt" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/sign/barsign,
/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"bWe" = (
+"bUu" = (
/turf/closed/wall/r_wall,
/area/security/hos)
-"bWf" = (
+"bUv" = (
/obj/machinery/door/poddoor/shutters{
id = "supplybridge"
},
-/turf/open/floor/plating{
- tag = "icon-warnplate (NORTH)"
- },
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plating{
+ tag = "icon-warnplate (NORTH)"
+ },
/area/maintenance/fsmaint)
-"bWg" = (
+"bUw" = (
/obj/effect/landmark/start{
name = "Security Officer"
},
@@ -49971,7 +49284,7 @@
},
/turf/open/floor/plasteel,
/area/security/main)
-"bWh" = (
+"bUx" = (
/obj/effect/landmark/start{
name = "Security Officer"
},
@@ -49980,13 +49293,13 @@
},
/turf/open/floor/plasteel,
/area/security/main)
-"bWi" = (
+"bUy" = (
/obj/structure/extinguisher_cabinet{
pixel_x = -24
},
/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"bWj" = (
+"bUz" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -49996,14 +49309,14 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/turf/open/floor/plating{
- tag = "icon-warnplate (WEST)"
- },
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plating{
+ tag = "icon-warnplate (WEST)"
+ },
/area/maintenance/fsmaint)
-"bWk" = (
+"bUA" = (
/obj/machinery/door/airlock/glass{
name = "space-bridge access"
},
@@ -50023,21 +49336,21 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/turf/open/floor/plating{
- tag = "icon-warnplate (WEST)"
- },
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plating{
+ tag = "icon-warnplate (WEST)"
+ },
/area/maintenance/fsmaint)
-"bWl" = (
+"bUB" = (
/obj/item/weapon/storage/secure/safe{
pixel_x = -22;
pixel_y = 32
},
/turf/open/floor/plasteel/darkred/side,
/area/security/hos)
-"bWm" = (
+"bUC" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -50054,7 +49367,7 @@
dir = 8
},
/area/security/main)
-"bWn" = (
+"bUD" = (
/obj/structure/cable{
icon_state = "1-8"
},
@@ -50062,7 +49375,7 @@
/area/security/processing{
name = "Crematorium"
})
-"bWo" = (
+"bUE" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
tag = "icon-intact (SOUTHEAST)";
icon_state = "intact";
@@ -50072,19 +49385,19 @@
/area/security/processing{
name = "Crematorium"
})
-"bWp" = (
+"bUF" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/turf/open/floor/plasteel,
/area/security/main)
-"bWq" = (
+"bUG" = (
/turf/open/floor/plating{
icon_state = "platingdmg1"
},
/area/maintenance/fsmaint)
-"bWr" = (
+"bUH" = (
/turf/closed/wall/r_wall,
/area/maintenance/fore)
-"bWs" = (
+"bUI" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -50098,7 +49411,7 @@
icon_state = "platingdmg3"
},
/area/maintenance/fsmaint)
-"bWt" = (
+"bUJ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -50111,35 +49424,35 @@
dir = 1
},
/area/security/brig)
-"bWu" = (
+"bUK" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating,
/area/crew_quarters/sleep)
-"bWv" = (
+"bUL" = (
/obj/machinery/computer/shuttle/monastery_shuttle,
/obj/structure/sign/pods{
pixel_y = 32
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/sleep)
-"bWw" = (
+"bUM" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plating,
/area/crew_quarters/sleep)
-"bWx" = (
+"bUN" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/holopad,
/turf/open/floor/plasteel,
/area/crew_quarters/sleep)
-"bWy" = (
+"bUO" = (
/obj/machinery/light{
icon_state = "tube1";
dir = 4
@@ -50153,14 +49466,14 @@
dir = 4
},
/area/bridge)
-"bWz" = (
+"bUP" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 0;
pixel_y = 30
},
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"bWA" = (
+"bUQ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -50170,7 +49483,7 @@
},
/turf/open/floor/plasteel,
/area/crew_quarters/sleep)
-"bWB" = (
+"bUR" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -50184,7 +49497,7 @@
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"bWC" = (
+"bUS" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -50200,7 +49513,7 @@
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"bWD" = (
+"bUT" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk,
/obj/structure/extinguisher_cabinet{
@@ -50208,7 +49521,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bWE" = (
+"bUU" = (
/turf/open/floor/plating{
broken = 1;
icon_state = "platingdmg3"
@@ -50216,14 +49529,14 @@
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"bWF" = (
+"bUV" = (
/turf/open/floor/plating{
icon_state = "panelscorched"
},
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"bWG" = (
+"bUW" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/extinguisher_cabinet{
pixel_x = -26;
@@ -50234,13 +49547,13 @@
dir = 8
},
/area/hallway/primary/fore)
-"bWH" = (
+"bUX" = (
/obj/machinery/porta_turret/ai{
dir = 8
},
/turf/open/floor/plasteel/darkblue,
/area/ai_monitored/turret_protected/ai_upload)
-"bWI" = (
+"bUY" = (
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating{
broken = 1;
@@ -50249,7 +49562,7 @@
/area/maintenance/fpmaint2{
name = "Brig Maintenance"
})
-"bWJ" = (
+"bUZ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/light{
dir = 4;
@@ -50257,11 +49570,11 @@
},
/turf/open/floor/plasteel/red/corner,
/area/hallway/primary/fore)
-"bWK" = (
+"bVa" = (
/obj/structure/chair/stool,
/turf/open/floor/plasteel,
/area/storage/primary)
-"bWL" = (
+"bVb" = (
/obj/structure/extinguisher_cabinet{
pixel_x = -24
},
@@ -50269,7 +49582,7 @@
/area/crew_quarters/locker/locker_toilet{
name = "\improper Restrooms"
})
-"bWM" = (
+"bVc" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
icon_state = "space";
@@ -50280,21 +49593,21 @@
},
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"bWN" = (
+"bVd" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 4;
req_access_txt = "13"
},
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"bWO" = (
+"bVe" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 8;
req_access_txt = "13"
},
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"bWP" = (
+"bVf" = (
/obj/structure/table,
/obj/machinery/light{
dir = 4;
@@ -50303,23 +49616,23 @@
/obj/item/device/taperecorder,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bWQ" = (
+"bVg" = (
/obj/machinery/light/small{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"bWR" = (
+"bVh" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
icon_state = "1-2";
pixel_y = 0
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bWS" = (
+"bVi" = (
/obj/structure/sink{
icon_state = "sink";
dir = 8;
@@ -50334,7 +49647,7 @@
/area/crew_quarters/locker/locker_toilet{
name = "\improper Restrooms"
})
-"bWT" = (
+"bVj" = (
/obj/machinery/camera{
c_tag = "Dormitory Toilets";
dir = 1
@@ -50343,7 +49656,7 @@
/area/crew_quarters/locker/locker_toilet{
name = "\improper Restrooms"
})
-"bWU" = (
+"bVk" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/cable,
@@ -50353,7 +49666,7 @@
},
/turf/open/floor/plating,
/area/hallway/primary/central)
-"bWV" = (
+"bVl" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/cable{
@@ -50366,7 +49679,7 @@
},
/turf/open/floor/plating,
/area/hallway/primary/central)
-"bWW" = (
+"bVm" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/cable,
@@ -50376,7 +49689,7 @@
},
/turf/open/floor/plating,
/area/hallway/primary/central)
-"bWX" = (
+"bVn" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -50384,7 +49697,7 @@
dir = 4
},
/area/hallway/primary/central)
-"bWY" = (
+"bVo" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -50397,7 +49710,7 @@
dir = 4
},
/area/hallway/primary/central)
-"bWZ" = (
+"bVp" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1;
initialize_directions = 11
@@ -50406,13 +49719,13 @@
dir = 4
},
/area/hallway/primary/central)
-"bXa" = (
+"bVq" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
/area/hallway/primary/central)
-"bXb" = (
+"bVr" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -50424,7 +49737,7 @@
dir = 1
},
/area/hallway/primary/central)
-"bXc" = (
+"bVs" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -50437,7 +49750,7 @@
dir = 1
},
/area/hallway/primary/central)
-"bXd" = (
+"bVt" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -50449,7 +49762,7 @@
dir = 1
},
/area/hallway/primary/central)
-"bXe" = (
+"bVu" = (
/obj/structure/toilet{
dir = 8
},
@@ -50461,11 +49774,11 @@
/area/crew_quarters/locker/locker_toilet{
name = "\improper Restrooms"
})
-"bXf" = (
+"bVv" = (
/obj/machinery/recharge_station,
/turf/open/floor/mineral/titanium/yellow,
/area/shuttle/escape)
-"bXg" = (
+"bVw" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -50483,7 +49796,7 @@
icon_state = "platingdmg1"
},
/area/maintenance/apmaint)
-"bXh" = (
+"bVx" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -50502,26 +49815,26 @@
icon_state = "panelscorched"
},
/area/maintenance/apmaint)
-"bXi" = (
+"bVy" = (
/obj/structure/closet/coffin,
/obj/item/toy/figure/ian,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"bXj" = (
+"bVz" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 27;
pixel_y = 0
},
/turf/open/floor/mineral/titanium/yellow,
/area/shuttle/escape)
-"bXk" = (
+"bVA" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/machinery/light,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bXl" = (
+"bVB" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -50530,7 +49843,7 @@
dir = 8
},
/area/hallway/primary/central)
-"bXm" = (
+"bVC" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/cable{
@@ -50540,21 +49853,21 @@
},
/turf/open/floor/plating,
/area/teleporter)
-"bXn" = (
+"bVD" = (
/obj/machinery/door/airlock/glass{
name = "Emergency Shuttle Cargo Hold";
req_access_txt = "0"
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/escape)
-"bXo" = (
+"bVE" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 27;
pixel_y = 0
},
/turf/open/floor/plasteel/floorgrime,
/area/quartermaster/storage)
-"bXp" = (
+"bVF" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/sign/directions/evac{
dir = 1;
@@ -50565,14 +49878,14 @@
},
/turf/open/floor/plasteel/neutral/corner,
/area/hallway/primary/central)
-"bXq" = (
+"bVG" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/brown/corner{
dir = 1;
tag = "icon-browncorner (NORTH)"
},
/area/hallway/primary/central)
-"bXr" = (
+"bVH" = (
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
},
@@ -50581,7 +49894,7 @@
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"bXs" = (
+"bVI" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4;
initialize_directions = 11
@@ -50591,24 +49904,24 @@
tag = "icon-browncorner (NORTH)"
},
/area/hallway/primary/central)
-"bXt" = (
+"bVJ" = (
/obj/structure/extinguisher_cabinet{
pixel_x = -24
},
/turf/open/floor/plasteel/hydrofloor,
/area/hydroponics)
-"bXu" = (
+"bVK" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 26
},
/turf/open/floor/plasteel/showroomfloor,
/area/crew_quarters/kitchen)
-"bXv" = (
+"bVL" = (
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"bXw" = (
+"bVM" = (
/obj/structure/closet,
/obj/item/weapon/canvas/twentythreeXnineteen,
/obj/item/weapon/canvas/nineteenXnineteen,
@@ -50616,7 +49929,7 @@
/obj/item/weapon/storage/crayons,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"bXx" = (
+"bVN" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -50625,52 +49938,52 @@
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/bar)
-"bXy" = (
+"bVO" = (
/obj/effect/decal/remains/human,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"bXz" = (
+"bVP" = (
/turf/closed/wall/r_wall,
/area/hallway/secondary/exit{
name = "\improper Departure Lounge"
})
-"bXA" = (
+"bVQ" = (
/turf/closed/wall/r_wall,
/area/security/checkpoint2{
name = "Customs"
})
-"bXB" = (
+"bVR" = (
/obj/item/weapon/reagent_containers/glass/bucket,
/turf/open/floor/plasteel,
/area/hydroponics)
-"bXC" = (
+"bVS" = (
/obj/structure/window/reinforced,
/obj/item/device/flashlight/lantern,
/turf/open/floor/wood,
/area/crew_quarters/theatre)
-"bXD" = (
+"bVT" = (
/obj/item/device/flashlight/lantern,
/obj/structure/window/reinforced,
/turf/open/floor/wood,
/area/crew_quarters/theatre)
-"bXE" = (
+"bVU" = (
/obj/structure/grille/broken,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"bXF" = (
+"bVV" = (
/turf/open/floor/plasteel/green/corner{
dir = 4
},
/area/hydroponics)
-"bXG" = (
+"bVW" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/green/corner{
dir = 1
},
/area/hydroponics)
-"bXH" = (
+"bVX" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -50679,7 +49992,7 @@
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/bar)
-"bXI" = (
+"bVY" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -50690,7 +50003,7 @@
dir = 5
},
/area/crew_quarters/bar)
-"bXJ" = (
+"bVZ" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -50702,7 +50015,7 @@
dir = 5
},
/area/crew_quarters/bar)
-"bXK" = (
+"bWa" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/light{
dir = 4;
@@ -50712,7 +50025,7 @@
dir = 4
},
/area/hallway/primary/central)
-"bXL" = (
+"bWb" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
tag = "icon-intact (EAST)";
icon_state = "intact";
@@ -50725,12 +50038,12 @@
dir = 1
},
/area/hallway/secondary/entry)
-"bXM" = (
+"bWc" = (
/turf/open/floor/plasteel/green/side{
dir = 4
},
/area/hydroponics)
-"bXN" = (
+"bWd" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9;
pixel_y = 0
@@ -50738,7 +50051,7 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/black,
/area/crew_quarters/bar)
-"bXO" = (
+"bWe" = (
/obj/structure/table/reinforced,
/obj/item/weapon/book/manual/barman_recipes,
/obj/item/weapon/reagent_containers/glass/rag,
@@ -50746,7 +50059,7 @@
dir = 8
},
/area/crew_quarters/bar)
-"bXP" = (
+"bWf" = (
/obj/machinery/computer/slot_machine,
/obj/item/device/radio/intercom{
dir = 0;
@@ -50758,7 +50071,7 @@
icon_state = "carpetsymbol"
},
/area/crew_quarters/bar)
-"bXQ" = (
+"bWg" = (
/obj/machinery/computer/slot_machine,
/obj/machinery/airalarm{
pixel_y = 24
@@ -50767,7 +50080,7 @@
icon_state = "carpetsymbol"
},
/area/crew_quarters/bar)
-"bXR" = (
+"bWh" = (
/obj/machinery/computer/arcade,
/obj/structure/noticeboard{
pixel_y = 32
@@ -50776,7 +50089,7 @@
icon_state = "carpetsymbol"
},
/area/crew_quarters/bar)
-"bXS" = (
+"bWi" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
@@ -50790,43 +50103,43 @@
},
/turf/open/floor/plasteel/neutral/corner,
/area/hallway/primary/central)
-"bXT" = (
+"bWj" = (
/obj/effect/landmark/start{
name = "Botanist"
},
/obj/machinery/holopad,
/turf/open/floor/plasteel,
/area/hydroponics)
-"bXU" = (
+"bWk" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/green/side{
dir = 8
},
/area/hydroponics)
-"bXV" = (
+"bWl" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/bar)
-"bXW" = (
+"bWm" = (
/obj/structure/table/wood/fancy,
/obj/item/toy/cards/deck,
/turf/open/floor/carpet{
icon_state = "carpetsymbol"
},
/area/crew_quarters/bar)
-"bXX" = (
+"bWn" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/poddoor/shutters{
id = "jangarage";
name = "Custodial Closet Shutters"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
/area/janitor)
-"bXY" = (
+"bWo" = (
/obj/structure/table/reinforced,
/obj/machinery/door/firedoor,
/obj/machinery/door/window/westright{
@@ -50837,13 +50150,13 @@
/obj/item/weapon/reagent_containers/food/snacks/monkeycube,
/turf/open/floor/plasteel,
/area/hydroponics)
-"bXZ" = (
+"bWp" = (
/obj/machinery/newscaster{
pixel_y = 1
},
/turf/closed/wall,
/area/crew_quarters/kitchen)
-"bYa" = (
+"bWq" = (
/obj/structure/chair/wood/normal{
icon_state = "wooden_chair";
dir = 1
@@ -50852,7 +50165,7 @@
icon_state = "carpetsymbol"
},
/area/crew_quarters/bar)
-"bYb" = (
+"bWr" = (
/obj/effect/landmark/start{
name = "Assistant"
},
@@ -50864,7 +50177,7 @@
icon_state = "carpetsymbol"
},
/area/crew_quarters/bar)
-"bYc" = (
+"bWs" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
name = "Bar"
@@ -50877,7 +50190,7 @@
},
/turf/open/floor/plasteel,
/area/crew_quarters/bar)
-"bYd" = (
+"bWt" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
tag = "icon-manifold-b-f (EAST)";
dir = 4
@@ -50887,40 +50200,40 @@
tag = "icon-browncorner (NORTH)"
},
/area/hallway/primary/central)
-"bYe" = (
+"bWu" = (
/obj/effect/decal/cleanable/cobweb,
/turf/open/floor/plating{
burnt = 1;
icon_state = "panelscorched"
},
/area/maintenance/apmaint)
-"bYf" = (
+"bWv" = (
/obj/item/chair,
/turf/open/floor/plating{
broken = 1;
icon_state = "platingdmg3"
},
/area/maintenance/apmaint)
-"bYg" = (
+"bWw" = (
/turf/open/floor/plasteel/green/corner{
dir = 8
},
/area/hydroponics)
-"bYh" = (
+"bWx" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/green/corner{
dir = 8
},
/area/hydroponics)
-"bYi" = (
+"bWy" = (
/obj/machinery/door/airlock/glass{
name = "Kitchen";
req_access_txt = "25;28"
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/kitchen)
-"bYj" = (
+"bWz" = (
/obj/structure/chair/stool/bar,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -50929,20 +50242,20 @@
dir = 5
},
/area/crew_quarters/bar)
-"bYk" = (
+"bWA" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
name = "Bar"
},
/turf/open/floor/plasteel,
/area/crew_quarters/bar)
-"bYl" = (
+"bWB" = (
/turf/open/floor/plating{
broken = 1;
icon_state = "platingdmg3"
},
/area/maintenance/apmaint)
-"bYm" = (
+"bWC" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -50957,7 +50270,7 @@
},
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"bYn" = (
+"bWD" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
tag = "icon-intact (EAST)";
@@ -50966,7 +50279,7 @@
},
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"bYo" = (
+"bWE" = (
/obj/structure/sink{
icon_state = "sink";
dir = 8;
@@ -50978,7 +50291,7 @@
dir = 8
},
/area/hydroponics)
-"bYp" = (
+"bWF" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -50988,7 +50301,7 @@
/obj/machinery/holopad,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bYq" = (
+"bWG" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
@@ -51000,68 +50313,68 @@
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/bar)
-"bYr" = (
+"bWH" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/bar)
-"bYs" = (
+"bWI" = (
/obj/structure/chair/wood/normal{
icon_state = "wooden_chair";
dir = 4
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/bar)
-"bYt" = (
+"bWJ" = (
/obj/structure/chair/wood/normal{
icon_state = "wooden_chair";
dir = 8
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/bar)
-"bYu" = (
+"bWK" = (
/obj/machinery/hydroponics/constructable,
/turf/open/floor/plasteel/green/side,
/area/hydroponics)
-"bYv" = (
+"bWL" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall,
/area/crew_quarters/bar)
-"bYw" = (
+"bWM" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/vault{
dir = 5
},
/area/crew_quarters/bar)
-"bYx" = (
+"bWN" = (
/obj/structure/frame/machine,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"bYy" = (
+"bWO" = (
/obj/machinery/airalarm{
pixel_y = 22
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/arrival)
-"bYz" = (
+"bWP" = (
/obj/machinery/atmospherics/components/unary/tank/air,
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/arrival)
-"bYA" = (
+"bWQ" = (
/turf/closed/wall,
/area/construction/quarters{
name = "Lounge"
})
-"bYB" = (
+"bWR" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk,
/turf/open/floor/plasteel/purple/corner{
dir = 4
},
/area/hallway/primary/central)
-"bYC" = (
+"bWS" = (
/obj/structure/table,
/obj/item/trash/plate,
/obj/item/weapon/storage/fancy/rollingpapers,
@@ -51069,7 +50382,7 @@
dir = 1
},
/area/hallway/primary/central)
-"bYD" = (
+"bWT" = (
/obj/structure/chair{
dir = 4
},
@@ -51077,14 +50390,14 @@
dir = 1
},
/area/hallway/primary/central)
-"bYE" = (
+"bWU" = (
/obj/structure/table,
/obj/item/weapon/storage/fancy,
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
/area/hallway/primary/central)
-"bYF" = (
+"bWV" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-14";
layer = 4.1
@@ -51093,14 +50406,14 @@
dir = 4
},
/area/hallway/primary/central)
-"bYG" = (
+"bWW" = (
/obj/structure/chair,
/obj/item/clothing/head/bowler,
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
/area/hallway/primary/central)
-"bYH" = (
+"bWX" = (
/obj/machinery/firealarm{
dir = 1;
pixel_x = 0;
@@ -51112,7 +50425,7 @@
dir = 4
},
/area/hallway/primary/central)
-"bYI" = (
+"bWY" = (
/obj/structure/sign/poster{
pixel_y = 32
},
@@ -51120,19 +50433,19 @@
dir = 4
},
/area/hallway/primary/central)
-"bYJ" = (
+"bWZ" = (
/obj/machinery/computer/security/telescreen/entertainment{
pixel_y = 32
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bYK" = (
-/turf/open/floor/plasteel,
+"bXa" = (
/obj/effect/turf_decal/stripes/line{
dir = 5
},
+/turf/open/floor/plasteel,
/area/assembly/chargebay)
-"bYL" = (
+"bXb" = (
/obj/structure/grille,
/obj/structure/window/shuttle,
/obj/machinery/door/poddoor/shutters/preopen{
@@ -51141,13 +50454,13 @@
},
/turf/open/floor/plating,
/area/shuttle/arrival)
-"bYM" = (
+"bXc" = (
/obj/machinery/door/airlock/titanium{
name = "Arrivals Shuttle Airlock"
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/arrival)
-"bYN" = (
+"bXd" = (
/obj/structure/chair{
dir = 8
},
@@ -51160,23 +50473,23 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/arrival)
-"bYO" = (
+"bXe" = (
/obj/item/trash/tray,
/obj/item/weapon/reagent_containers/food/snacks/badrecipe,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"bYP" = (
+"bXf" = (
/obj/structure/closet/radiation,
/obj/structure/sign/poster{
pixel_x = 32
},
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"bYQ" = (
+"bXg" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bYR" = (
+"bXh" = (
/obj/item/chair,
/obj/item/trash/popcorn,
/turf/open/floor/plating{
@@ -51184,7 +50497,7 @@
icon_state = "platingdmg3"
},
/area/maintenance/apmaint)
-"bYS" = (
+"bXi" = (
/obj/structure/chair,
/obj/structure/sign/poster{
pixel_x = 32
@@ -51193,13 +50506,13 @@
icon_state = "platingdmg1"
},
/area/maintenance/apmaint)
-"bYT" = (
+"bXj" = (
/obj/structure/extinguisher_cabinet{
pixel_y = -29
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/arrival)
-"bYU" = (
+"bXk" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/obj/structure/extinguisher_cabinet{
pixel_x = 27;
@@ -51207,7 +50520,7 @@
},
/turf/open/floor/plasteel/neutral/corner,
/area/hallway/secondary/entry)
-"bYV" = (
+"bXl" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -51218,48 +50531,48 @@
/area/construction/quarters{
name = "Lounge"
})
-"bYW" = (
+"bXm" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/blue/corner,
/area/hallway/primary/central)
-"bYX" = (
+"bXn" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1;
initialize_directions = 11
},
/turf/open/floor/plasteel/blue/corner,
/area/hallway/primary/central)
-"bYY" = (
+"bXo" = (
/obj/machinery/light,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/purple/corner,
/area/hallway/primary/central)
-"bYZ" = (
+"bXp" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/purple/corner,
/area/hallway/primary/central)
-"bZa" = (
-/turf/open/floor/plasteel,
+"bXq" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plasteel,
/area/assembly/chargebay)
-"bZb" = (
+"bXr" = (
/obj/item/weapon/wrench,
/turf/open/floor/plating,
/area/maintenance/apmaint)
-"bZc" = (
+"bXs" = (
/obj/structure/table,
/obj/item/trash/plate,
/turf/open/floor/plating{
icon_state = "platingdmg1"
},
/area/maintenance/apmaint)
-"bZd" = (
+"bXt" = (
/obj/structure/table,
/obj/item/weapon/kitchen/fork,
/turf/open/floor/plating{
@@ -51267,7 +50580,7 @@
icon_state = "panelscorched"
},
/area/maintenance/apmaint)
-"bZe" = (
+"bXu" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp/green{
pixel_x = 1;
@@ -51284,47 +50597,47 @@
/area/construction/quarters{
name = "Lounge"
})
-"bZf" = (
+"bXv" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-05";
layer = 4.1
},
/turf/open/floor/plasteel/blue/side,
/area/hallway/primary/central)
-"bZg" = (
+"bXw" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plasteel/blue/corner{
dir = 8
},
/area/hallway/primary/central)
-"bZh" = (
+"bXx" = (
/obj/structure/closet/firecloset,
/turf/open/floor/plasteel/blue/corner{
dir = 8
},
/area/hallway/primary/central)
-"bZi" = (
+"bXy" = (
/turf/open/floor/plasteel/blue/side,
/area/hallway/primary/central)
-"bZj" = (
+"bXz" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-10";
layer = 4.1
},
/turf/open/floor/plasteel/purple/side,
/area/hallway/primary/central)
-"bZk" = (
+"bXA" = (
/obj/effect/decal/cleanable/cobweb/cobweb2,
/turf/open/floor/plasteel/black,
/area/medical/morgue)
-"bZl" = (
+"bXB" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/shower{
dir = 8
},
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bZm" = (
+"bXC" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/sink{
dir = 8;
@@ -51335,27 +50648,27 @@
/area/medical/research{
name = "Research Division"
})
-"bZn" = (
+"bXD" = (
/obj/structure/chair{
dir = 4
},
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bZo" = (
+"bXE" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
-"bZp" = (
+"bXF" = (
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
-"bZq" = (
+"bXG" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
-"bZr" = (
+"bXH" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -51364,7 +50677,7 @@
/area/medical/research{
name = "Research Division"
})
-"bZs" = (
+"bXI" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
@@ -51373,42 +50686,42 @@
/area/medical/research{
name = "Research Division"
})
-"bZt" = (
+"bXJ" = (
/obj/structure/chair/stool,
/turf/open/floor/plasteel/white,
/area/medical/research{
name = "Research Division"
})
-"bZu" = (
+"bXK" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-05";
layer = 4.1
},
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bZv" = (
+"bXL" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel/white,
/area/medical/research{
name = "Research Division"
})
-"bZw" = (
-/turf/open/floor/plasteel,
+"bXM" = (
/obj/effect/turf_decal/stripes/corner,
-/area/assembly/robotics)
-"bZx" = (
/turf/open/floor/plasteel,
+/area/assembly/robotics)
+"bXN" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plasteel,
/area/assembly/robotics)
-"bZy" = (
+"bXO" = (
/obj/structure/chair,
/turf/open/floor/plasteel/whitepurple/side,
/area/medical/research{
name = "Research Division"
})
-"bZz" = (
+"bXP" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-17"
},
@@ -51416,17 +50729,17 @@
/area/medical/research{
name = "Research Division"
})
-"bZA" = (
-/turf/open/floor/plasteel/white,
+"bXQ" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel/white,
/area/medical/genetics)
-"bZB" = (
+"bXR" = (
/obj/machinery/smartfridge/chemistry,
/turf/open/floor/plasteel/black,
/area/medical/chemistry)
-"bZC" = (
+"bXS" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/extinguisher_cabinet{
pixel_x = -24
@@ -51435,7 +50748,7 @@
dir = 1
},
/area/hallway/primary/aft)
-"bZD" = (
+"bXT" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/yellow/corner{
tag = "icon-yellowcorner (EAST)";
@@ -51443,25 +50756,25 @@
dir = 4
},
/area/hallway/primary/aft)
-"bZE" = (
+"bXU" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/yellow/corner{
dir = 1
},
/area/hallway/primary/aft)
-"bZF" = (
+"bXV" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/obj/structure/chair/stool,
/turf/open/floor/plasteel/white,
/area/medical/genetics)
-"bZG" = (
+"bXW" = (
/turf/open/floor/plasteel/purple/side{
dir = 8
},
/area/assembly/robotics)
-"bZH" = (
+"bXX" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -51474,20 +50787,20 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"bZI" = (
+"bXY" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/holopad,
/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
-"bZJ" = (
+"bXZ" = (
/obj/effect/spawner/lootdrop/grille_or_trash,
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
/area/maintenance/aft)
-"bZK" = (
+"bYa" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -51498,7 +50811,7 @@
/area/medical/research{
name = "Research Division"
})
-"bZL" = (
+"bYb" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -51511,14 +50824,14 @@
},
/turf/open/floor/plasteel/white,
/area/medical/sleeper)
-"bZM" = (
+"bYc" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/obj/structure/bed/roller,
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bZN" = (
+"bYd" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -51528,18 +50841,18 @@
},
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bZO" = (
+"bYe" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel/white,
/area/medical/chemistry)
-"bZP" = (
+"bYf" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
-"bZQ" = (
+"bYg" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1
},
@@ -51547,7 +50860,7 @@
/area/medical/research{
name = "Research Division"
})
-"bZR" = (
+"bYh" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
@@ -51556,7 +50869,7 @@
/area/medical/research{
name = "Research Division"
})
-"bZS" = (
+"bYi" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -51569,7 +50882,7 @@
/area/medical/research{
name = "Research Division"
})
-"bZT" = (
+"bYj" = (
/obj/structure/chair/comfy{
tag = "icon-comfychair (EAST)";
icon_state = "comfychair";
@@ -51582,7 +50895,7 @@
/area/medical/research{
name = "Research Division"
})
-"bZU" = (
+"bYk" = (
/obj/structure/chair/comfy{
tag = "icon-comfychair (WEST)";
icon_state = "comfychair";
@@ -51595,14 +50908,14 @@
/area/medical/research{
name = "Research Division"
})
-"bZV" = (
+"bYl" = (
/turf/open/floor/plasteel/white/side{
dir = 8
},
/area/medical/research{
name = "Research Division"
})
-"bZW" = (
+"bYm" = (
/obj/item/weapon/folder/white,
/obj/item/clothing/gloves/color/latex,
/obj/structure/table/glass,
@@ -51610,7 +50923,7 @@
dir = 8
},
/area/hallway/primary/aft)
-"bZX" = (
+"bYn" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
@@ -51618,22 +50931,22 @@
/area/medical/research{
name = "Research Division"
})
-"bZY" = (
+"bYo" = (
/obj/machinery/atmospherics/components/unary/tank/air{
dir = 2
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"bZZ" = (
+"bYp" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/turf/open/floor/plating,
/area/maintenance/aft)
-"caa" = (
+"bYq" = (
/obj/structure/grille/broken,
/obj/structure/lattice,
/turf/open/space,
/area/space)
-"cab" = (
+"bYr" = (
/obj/machinery/atmospherics/pipe/manifold/general/hidden{
tag = "icon-manifold (WEST)";
icon_state = "manifold";
@@ -51641,13 +50954,13 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"cac" = (
+"bYs" = (
/obj/machinery/atmospherics/pipe/manifold/general/hidden,
/obj/machinery/meter,
/obj/machinery/light/small,
/turf/open/floor/plating,
/area/maintenance/aft)
-"cad" = (
+"bYt" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 4;
name = "Air Out";
@@ -51655,7 +50968,7 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"cae" = (
+"bYu" = (
/obj/machinery/door/airlock/atmos{
name = "Atmospherics Maintenance";
req_access_txt = "12;24"
@@ -51667,7 +50980,7 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"caf" = (
+"bYv" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -51679,7 +50992,7 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"cag" = (
+"bYw" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/sign/poster{
pixel_x = -32
@@ -51688,7 +51001,7 @@
dir = 8
},
/area/hallway/primary/aft)
-"cah" = (
+"bYx" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
on = 1
@@ -51697,16 +51010,16 @@
/area/medical/research{
name = "Research Division"
})
-"cai" = (
+"bYy" = (
/obj/structure/chair/stool,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plasteel,
/area/toxins/mixing{
name = "\improper Toxins Lab"
})
-"caj" = (
+"bYz" = (
/obj/docking_port/stationary{
dwidth = 2;
height = 6;
@@ -51716,15 +51029,15 @@
},
/turf/open/space,
/area/space)
-"cak" = (
+"bYA" = (
/obj/effect/decal/cleanable/cobweb,
/turf/open/floor/plating,
/area/maintenance/aft)
-"cal" = (
+"bYB" = (
/obj/effect/decal/cleanable/vomit/old,
/turf/open/floor/plating,
/area/maintenance/aft)
-"cam" = (
+"bYC" = (
/obj/structure/chair/office/light{
dir = 1
},
@@ -51733,27 +51046,27 @@
},
/turf/open/floor/plasteel/freezer,
/area/medical/surgery)
-"can" = (
+"bYD" = (
/turf/closed/wall/r_wall,
/area/space)
-"cao" = (
+"bYE" = (
/obj/structure/window/reinforced{
dir = 4
},
/turf/open/space,
/area/space)
-"cap" = (
+"bYF" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/chapel/dock)
-"caq" = (
+"bYG" = (
/obj/machinery/door/airlock/external{
name = "Pod Docking Bay"
},
/turf/open/floor/plating,
/area/chapel/dock)
-"car" = (
+"bYH" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 2
},
@@ -51764,16 +51077,16 @@
},
/turf/open/floor/plating/airless,
/area/space/nearstation)
-"cas" = (
-/turf/open/floor/plasteel/black,
+"bYI" = (
/obj/effect/turf_decal/stripes/line{
dir = 9
},
+/turf/open/floor/plasteel/black,
/area/maintenance/aft)
-"cat" = (
+"bYJ" = (
/turf/open/floor/plating,
/area/chapel/dock)
-"cau" = (
+"bYK" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -51781,7 +51094,7 @@
},
/turf/open/floor/plating,
/area/chapel/dock)
-"cav" = (
+"bYL" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -51789,32 +51102,32 @@
},
/turf/open/floor/plating,
/area/chapel/dock)
-"caw" = (
+"bYM" = (
/obj/structure/window/reinforced{
dir = 8
},
/turf/open/space,
/area/space)
-"cax" = (
-/turf/open/floor/plasteel/black,
+"bYN" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel/black,
/area/maintenance/aft)
-"cay" = (
+"bYO" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
/obj/structure/sign/deathsposal,
/turf/open/floor/plating,
/area/medical/virology)
-"caz" = (
+"bYP" = (
/obj/machinery/portable_atmospherics/scrubber,
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
dir = 6
},
/turf/open/floor/plasteel,
/area/atmos)
-"caA" = (
+"bYQ" = (
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
dir = 4
@@ -51822,12 +51135,12 @@
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/atmos)
-"caB" = (
+"bYR" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/closed/wall,
/area/chapel/dock)
-"caC" = (
+"bYS" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/sign/securearea{
@@ -51841,13 +51154,13 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/chapel/dock)
-"caD" = (
+"bYT" = (
/obj/machinery/computer/shuttle/monastery_shuttle,
/turf/open/floor/plasteel/vault{
dir = 8
},
/area/chapel/dock)
-"caE" = (
+"bYU" = (
/obj/machinery/atmospherics/components/unary/tank/air{
dir = 2
},
@@ -51855,37 +51168,37 @@
dir = 8
},
/area/chapel/dock)
-"caF" = (
+"bYV" = (
/obj/structure/window/reinforced{
dir = 8
},
/obj/structure/lattice,
/turf/open/space,
/area/space)
-"caG" = (
+"bYW" = (
/obj/effect/decal/cleanable/oil{
icon_state = "floor6"
},
/obj/effect/decal/cleanable/robot_debris/old,
/turf/open/floor/plating,
/area/maintenance/aft)
-"caH" = (
-/turf/open/floor/plasteel/black,
+"bYX" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plasteel/black,
/area/maintenance/aft)
-"caI" = (
+"bYY" = (
/obj/structure/window/reinforced{
dir = 4
},
/obj/structure/window/reinforced,
/turf/open/space,
/area/space)
-"caJ" = (
+"bYZ" = (
/turf/closed/wall/r_wall,
/area/chapel/dock)
-"caK" = (
+"bZa" = (
/obj/machinery/airalarm{
dir = 4;
icon_state = "alarm0";
@@ -51893,7 +51206,7 @@
},
/turf/open/floor/plasteel/black,
/area/chapel/dock)
-"caL" = (
+"bZb" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable{
d1 = 2;
@@ -51903,7 +51216,7 @@
},
/turf/open/floor/plasteel/black,
/area/chapel/dock)
-"caM" = (
+"bZc" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -51911,7 +51224,7 @@
},
/turf/open/floor/plasteel/black,
/area/chapel/dock)
-"caN" = (
+"bZd" = (
/obj/machinery/power/apc{
dir = 4;
name = "Monastery Docking Bay APC";
@@ -51924,31 +51237,31 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/black,
/area/chapel/dock)
-"caO" = (
+"bZe" = (
/obj/structure/window/reinforced{
dir = 8
},
/obj/structure/window/reinforced,
/turf/open/space,
/area/space)
-"caP" = (
+"bZf" = (
/obj/effect/decal/cleanable/blood/old,
/turf/open/floor/engine,
/area/maintenance/aft)
-"caQ" = (
+"bZg" = (
/obj/effect/decal/cleanable/oil,
/turf/open/floor/plating{
icon_state = "panelscorched"
},
/area/maintenance/aft)
-"caR" = (
+"bZh" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/obj/structure/chair/office/light{
dir = 8
},
/turf/open/floor/plasteel/white,
/area/medical/virology)
-"caS" = (
+"bZi" = (
/obj/structure/window/reinforced{
dir = 4
},
@@ -51956,14 +51269,14 @@
/obj/structure/lattice,
/turf/open/space,
/area/space)
-"caT" = (
+"bZj" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/chapel/asteroid{
name = "Monastery Asteroid"
})
-"caU" = (
+"bZk" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1;
@@ -51983,7 +51296,7 @@
dir = 4
},
/area/chapel/dock)
-"caV" = (
+"bZl" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
@@ -51995,10 +51308,10 @@
},
/turf/open/floor/plasteel/black,
/area/chapel/dock)
-"caW" = (
+"bZm" = (
/turf/open/floor/plasteel/black,
/area/chapel/dock)
-"caX" = (
+"bZn" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
on = 1
@@ -52013,7 +51326,7 @@
dir = 1
},
/area/chapel/dock)
-"caY" = (
+"bZo" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
},
@@ -52024,7 +51337,7 @@
},
/turf/open/floor/plasteel,
/area/atmos)
-"caZ" = (
+"bZp" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
@@ -52033,22 +51346,22 @@
},
/turf/open/floor/plating,
/area/atmos)
-"cba" = (
+"bZq" = (
/obj/structure/window/reinforced{
dir = 4
},
/obj/structure/lattice,
/turf/open/space,
/area/space)
-"cbb" = (
+"bZr" = (
/turf/open/floor/plating/asteroid,
/area/chapel/asteroid{
name = "Monastery Asteroid"
})
-"cbc" = (
+"bZs" = (
/turf/closed/wall,
/area/chapel/dock)
-"cbd" = (
+"bZt" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -52056,29 +51369,29 @@
},
/turf/open/floor/plasteel/vault,
/area/chapel/dock)
-"cbe" = (
+"bZu" = (
/turf/open/floor/plasteel/vault,
/area/chapel/dock)
-"cbf" = (
-/turf/open/floor/plasteel/black,
+"bZv" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
},
+/turf/open/floor/plasteel/black,
/area/maintenance/aft)
-"cbg" = (
+"bZw" = (
/obj/structure/chair/comfy/black{
dir = 1
},
-/turf/open/floor/plasteel/black,
/obj/effect/turf_decal/stripes/line,
-/area/maintenance/aft)
-"cbh" = (
/turf/open/floor/plasteel/black,
+/area/maintenance/aft)
+"bZx" = (
/obj/effect/turf_decal/stripes/line{
dir = 6
},
+/turf/open/floor/plasteel/black,
/area/maintenance/aft)
-"cbi" = (
+"bZy" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/extinguisher_cabinet{
pixel_x = -24
@@ -52087,17 +51400,17 @@
dir = 8
},
/area/hallway/primary/aft)
-"cbj" = (
+"bZz" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 1
},
/turf/open/floor/plasteel,
/area/atmos)
-"cbk" = (
+"bZA" = (
/obj/machinery/atmospherics/pipe/manifold4w/yellow/visible,
/turf/open/floor/plasteel,
/area/atmos)
-"cbl" = (
+"bZB" = (
/obj/machinery/door/airlock/centcom{
name = "Chapel";
opacity = 1
@@ -52111,7 +51424,7 @@
dir = 5
},
/area/chapel/dock)
-"cbm" = (
+"bZC" = (
/obj/machinery/door/airlock/centcom{
name = "Chapel";
opacity = 1
@@ -52120,7 +51433,7 @@
dir = 5
},
/area/chapel/dock)
-"cbn" = (
+"bZD" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -52137,7 +51450,7 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"cbo" = (
+"bZE" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -52146,10 +51459,10 @@
/obj/machinery/holopad,
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
-"cbp" = (
+"bZF" = (
/turf/closed/wall,
/area/atmos)
-"cbq" = (
+"bZG" = (
/obj/machinery/camera{
c_tag = "Monastery Asteroid Dock Port";
dir = 4;
@@ -52159,14 +51472,14 @@
/area/chapel/asteroid{
name = "Monastery Asteroid"
})
-"cbr" = (
+"bZH" = (
/obj/structure/flora/ausbushes/leafybush,
/obj/structure/flora/ausbushes/reedbush,
/turf/open/floor/plating/asteroid,
/area/chapel/asteroid{
name = "Monastery Asteroid"
})
-"cbs" = (
+"bZI" = (
/obj/item/device/flashlight/lantern{
on = 1
},
@@ -52174,7 +51487,7 @@
/area/chapel/asteroid{
name = "Monastery Asteroid"
})
-"cbt" = (
+"bZJ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -52187,14 +51500,14 @@
/area/chapel/asteroid{
name = "Monastery Asteroid"
})
-"cbu" = (
+"bZK" = (
/turf/open/floor/plasteel/asteroid{
icon_plating = "asteroid"
},
/area/chapel/asteroid{
name = "Monastery Asteroid"
})
-"cbv" = (
+"bZL" = (
/obj/machinery/camera{
c_tag = "Monastery Asteroid Dock Staboard";
dir = 8;
@@ -52204,28 +51517,28 @@
/area/chapel/asteroid{
name = "Monastery Asteroid"
})
-"cbw" = (
-/turf/open/floor/plasteel/black,
+"bZM" = (
/obj/effect/turf_decal/stripes/corner,
-/area/engine/gravity_generator)
-"cbx" = (
/turf/open/floor/plasteel/black,
+/area/engine/gravity_generator)
+"bZN" = (
/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/black,
/area/engine/gravity_generator)
-"cby" = (
+"bZO" = (
/obj/structure/table,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
/area/maintenance/aft)
-"cbz" = (
-/turf/open/floor/plasteel/black,
+"bZP" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plasteel/black,
/area/engine/gravity_generator)
-"cbA" = (
+"bZQ" = (
/obj/structure/lattice,
/obj/structure/window/reinforced{
dir = 8
@@ -52234,56 +51547,56 @@
/obj/structure/lattice,
/turf/open/space,
/area/space)
-"cbB" = (
-/turf/open/floor/plasteel/black,
+"bZR" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
-/area/engine/gravity_generator)
-"cbC" = (
/turf/open/floor/plasteel/black,
+/area/engine/gravity_generator)
+"bZS" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel/black,
/area/storage/tech)
-"cbD" = (
+"bZT" = (
/obj/structure/flora/ausbushes,
/turf/open/floor/plating/asteroid,
/area/chapel/asteroid{
name = "Monastery Asteroid"
})
-"cbE" = (
+"bZU" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"cbF" = (
+"bZV" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"cbG" = (
+"bZW" = (
/obj/structure/disposalpipe/segment{
dir = 8;
icon_state = "pipe-c"
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"cbH" = (
+"bZX" = (
/obj/item/device/radio/beacon,
/turf/open/floor/plasteel,
/area/atmos)
-"cbI" = (
+"bZY" = (
/obj/structure/lattice,
/obj/structure/window/reinforced{
dir = 8
},
/turf/open/space,
/area/space)
-"cbJ" = (
+"bZZ" = (
/obj/structure/disposalpipe/segment{
dir = 4;
icon_state = "pipe-c"
@@ -52291,30 +51604,30 @@
/obj/structure/lattice,
/turf/open/space,
/area/space/nearstation)
-"cbK" = (
+"caa" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plating/airless,
/area/space/nearstation)
-"cbL" = (
-/turf/open/floor/plasteel/black,
+"cab" = (
/obj/effect/turf_decal/stripes/corner{
dir = 8
},
-/area/engine/gravity_generator)
-"cbM" = (
/turf/open/floor/plasteel/black,
+/area/engine/gravity_generator)
+"cac" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel/black,
/area/engine/gravity_generator)
-"cbN" = (
+"cad" = (
/obj/structure/disposalpipe/segment,
/obj/structure/lattice,
/turf/open/space,
/area/space/nearstation)
-"cbO" = (
+"cae" = (
/obj/structure/sign/directions/engineering{
tag = "icon-direction_eng (EAST)";
icon_state = "direction_eng";
@@ -52322,25 +51635,25 @@
},
/turf/closed/wall,
/area/maintenance/aft)
-"cbP" = (
+"caf" = (
/turf/open/floor/plating{
broken = 1;
icon_state = "platingdmg3"
},
/area/maintenance/aft)
-"cbQ" = (
+"cag" = (
/obj/item/clothing/head/welding,
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
/area/maintenance/aft)
-"cbR" = (
+"cah" = (
/obj/structure/flora/ausbushes/fernybush,
/turf/open/floor/plating/asteroid,
/area/chapel/asteroid{
name = "Monastery Asteroid"
})
-"cbS" = (
+"cai" = (
/obj/structure/lattice,
/obj/structure/disposalpipe/segment{
dir = 4;
@@ -52348,7 +51661,7 @@
},
/turf/open/space,
/area/space)
-"cbT" = (
+"caj" = (
/obj/structure/lattice,
/obj/structure/disposalpipe/segment{
dir = 8;
@@ -52356,7 +51669,7 @@
},
/turf/open/space,
/area/space/nearstation)
-"cbU" = (
+"cak" = (
/obj/machinery/light/small{
brightness = 3;
dir = 8
@@ -52367,47 +51680,47 @@
icon_state = "platingdmg3"
},
/area/maintenance/aft)
-"cbV" = (
+"cal" = (
/turf/open/floor/plating{
icon_state = "platingdmg1"
},
/area/maintenance/aft)
-"cbW" = (
+"cam" = (
/obj/structure/window/reinforced,
/obj/structure/lattice,
/turf/open/space,
/area/space)
-"cbX" = (
+"can" = (
/obj/structure/disposaloutlet,
/obj/structure/disposalpipe/trunk{
dir = 1
},
/turf/open/floor/plating/airless,
/area/space/nearstation)
-"cbY" = (
+"cao" = (
/obj/structure/grille/broken,
/turf/open/floor/plating{
icon_state = "panelscorched"
},
/area/maintenance/aft)
-"cbZ" = (
+"cap" = (
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating{
burnt = 1;
icon_state = "panelscorched"
},
/area/maintenance/aft)
-"cca" = (
+"caq" = (
/obj/item/weapon/cigbutt/cigarbutt,
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
/area/maintenance/aft)
-"ccb" = (
+"car" = (
/obj/effect/decal/cleanable/blood/old,
/turf/open/floor/plating,
/area/maintenance/aft)
-"ccc" = (
+"cas" = (
/obj/structure/window/reinforced{
dir = 4
},
@@ -52417,7 +51730,7 @@
},
/turf/open/space,
/area/space)
-"ccd" = (
+"cat" = (
/obj/structure/flora/ausbushes/leafybush,
/obj/structure/flora/ausbushes/reedbush,
/obj/machinery/camera{
@@ -52429,7 +51742,7 @@
/area/chapel/asteroid{
name = "Monastery Asteroid"
})
-"cce" = (
+"cau" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 1;
name = "Air to Pure";
@@ -52437,7 +51750,7 @@
},
/turf/open/floor/plasteel,
/area/atmos)
-"ccf" = (
+"cav" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/green/visible{
@@ -52446,7 +51759,7 @@
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/turf/open/floor/plating,
/area/atmos)
-"ccg" = (
+"caw" = (
/obj/structure/flora/ausbushes,
/obj/machinery/camera{
c_tag = "Monastery Asteroid Port Fore";
@@ -52457,12 +51770,12 @@
/area/chapel/asteroid{
name = "Monastery Asteroid"
})
-"cch" = (
+"cax" = (
/turf/closed/wall,
/area/chapel/main{
name = "Monastery"
})
-"cci" = (
+"cay" = (
/obj/machinery/door/airlock/centcom{
name = "Chapel";
opacity = 1
@@ -52476,7 +51789,7 @@
/area/chapel/main{
name = "Monastery"
})
-"ccj" = (
+"caz" = (
/obj/machinery/door/airlock/centcom{
name = "Chapel";
opacity = 1
@@ -52485,7 +51798,7 @@
/area/chapel/main{
name = "Monastery"
})
-"cck" = (
+"caA" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/sign/securearea{
@@ -52500,14 +51813,14 @@
/area/chapel/asteroid{
name = "Monastery Asteroid"
})
-"ccl" = (
+"caB" = (
/obj/structure/lattice,
/obj/structure/window/reinforced{
dir = 8
},
/turf/open/space,
/area/space/nearstation)
-"ccm" = (
+"caC" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/requests_console{
announcementConsole = 0;
@@ -52519,7 +51832,7 @@
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"ccn" = (
+"caD" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/light/small{
dir = 4
@@ -52528,14 +51841,14 @@
/area/chapel/main{
name = "Monastery"
})
-"cco" = (
+"caE" = (
/obj/machinery/atmospherics/pipe/simple/green/visible,
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
},
/turf/open/floor/plasteel/yellow/side,
/area/atmos)
-"ccp" = (
+"caF" = (
/obj/machinery/atmospherics/components/trinary/mixer{
node1_concentration = 0.8;
node2_concentration = 0.2;
@@ -52543,7 +51856,7 @@
},
/turf/open/floor/plasteel/yellow/side,
/area/atmos)
-"ccq" = (
+"caG" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
tag = "icon-intact (NORTHWEST)";
icon_state = "intact";
@@ -52551,7 +51864,7 @@
},
/turf/closed/wall/r_wall,
/area/atmos)
-"ccr" = (
+"caH" = (
/obj/machinery/light/small{
dir = 1
},
@@ -52559,7 +51872,7 @@
/area/chapel/main{
name = "Monastery"
})
-"ccs" = (
+"caI" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -52569,12 +51882,12 @@
/area/chapel/main{
name = "Monastery"
})
-"cct" = (
+"caJ" = (
/turf/open/floor/plasteel/black,
/area/chapel/main{
name = "Monastery"
})
-"ccu" = (
+"caK" = (
/obj/item/device/radio/beacon,
/obj/machinery/light/small{
dir = 1
@@ -52583,7 +51896,7 @@
/area/chapel/main{
name = "Monastery"
})
-"ccv" = (
+"caL" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 4
},
@@ -52591,7 +51904,7 @@
/area/chapel/asteroid{
name = "Monastery Asteroid"
})
-"ccw" = (
+"caM" = (
/obj/machinery/light/small{
dir = 1
},
@@ -52599,7 +51912,7 @@
/area/chapel/asteroid{
name = "Monastery Asteroid"
})
-"ccx" = (
+"caN" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 8
},
@@ -52607,14 +51920,14 @@
/area/chapel/asteroid{
name = "Monastery Asteroid"
})
-"ccy" = (
+"caO" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 4;
req_access_txt = "13"
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"ccz" = (
+"caP" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
icon_state = "space";
@@ -52625,21 +51938,21 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"ccA" = (
+"caQ" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 8;
req_access_txt = "13"
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"ccB" = (
+"caR" = (
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating{
broken = 1;
icon_state = "platingdmg1"
},
/area/maintenance/aft)
-"ccC" = (
+"caS" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/green/visible{
@@ -52648,7 +51961,7 @@
},
/turf/open/floor/plating,
/area/atmos)
-"ccD" = (
+"caT" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/green/visible{
@@ -52657,7 +51970,7 @@
},
/turf/open/floor/plating,
/area/atmos)
-"ccE" = (
+"caU" = (
/obj/machinery/atmospherics/pipe/simple/green/hidden{
tag = "icon-intact (WEST)";
icon_state = "intact";
@@ -52665,7 +51978,7 @@
},
/turf/closed/wall/r_wall,
/area/atmos)
-"ccF" = (
+"caV" = (
/obj/machinery/atmospherics/pipe/simple/green/hidden{
tag = "icon-intact (NORTHWEST)";
icon_state = "intact";
@@ -52673,7 +51986,7 @@
},
/turf/closed/wall/r_wall,
/area/atmos)
-"ccG" = (
+"caW" = (
/obj/machinery/light/small{
dir = 1
},
@@ -52682,7 +51995,7 @@
/area/chapel/main{
name = "Monastery"
})
-"ccH" = (
+"caX" = (
/obj/machinery/door/morgue{
name = "Confession Booth"
},
@@ -52690,7 +52003,7 @@
/area/chapel/main{
name = "Monastery"
})
-"ccI" = (
+"caY" = (
/obj/structure/chair,
/turf/open/floor/plasteel/chapel{
dir = 1
@@ -52698,7 +52011,7 @@
/area/chapel/main{
name = "Monastery"
})
-"ccJ" = (
+"caZ" = (
/obj/structure/chair,
/turf/open/floor/plasteel/chapel{
dir = 4
@@ -52706,7 +52019,7 @@
/area/chapel/main{
name = "Monastery"
})
-"ccK" = (
+"cba" = (
/obj/structure/chair,
/obj/item/device/radio/intercom{
dir = 0;
@@ -52720,7 +52033,7 @@
/area/chapel/main{
name = "Monastery"
})
-"ccL" = (
+"cbb" = (
/obj/structure/lattice,
/obj/structure/window/reinforced{
dir = 8
@@ -52728,7 +52041,7 @@
/obj/structure/window/reinforced,
/turf/open/space,
/area/space/nearstation)
-"ccM" = (
+"cbc" = (
/obj/structure/closet/emcloset{
anchored = 1;
desc = "It's a storage unit for emergency breath masks and O2 tanks, and is securely bolted in place.";
@@ -52736,13 +52049,13 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"ccN" = (
+"cbd" = (
/obj/structure/chair,
/turf/open/floor/plasteel/black,
/area/chapel/main{
name = "Monastery"
})
-"ccO" = (
+"cbe" = (
/obj/structure/chair,
/obj/machinery/light/small{
dir = 8
@@ -52753,13 +52066,13 @@
/area/chapel/main{
name = "Monastery"
})
-"ccP" = (
+"cbf" = (
/obj/structure/chair,
/turf/open/floor/plasteel/chapel,
/area/chapel/main{
name = "Monastery"
})
-"ccQ" = (
+"cbg" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -52769,12 +52082,12 @@
/area/chapel/main{
name = "Monastery"
})
-"ccR" = (
+"cbh" = (
/turf/open/floor/carpet,
/area/chapel/main{
name = "Monastery"
})
-"ccS" = (
+"cbi" = (
/obj/structure/chair,
/turf/open/floor/plasteel/chapel{
dir = 8
@@ -52782,7 +52095,7 @@
/area/chapel/main{
name = "Monastery"
})
-"ccT" = (
+"cbj" = (
/obj/structure/chair,
/obj/machinery/light/small{
dir = 4
@@ -52791,13 +52104,13 @@
/area/chapel/main{
name = "Monastery"
})
-"ccU" = (
+"cbk" = (
/mob/living/simple_animal/butterfly,
/turf/open/floor/grass,
/area/hallway/secondary/construction{
name = "\improper Monastery Garden"
})
-"ccV" = (
+"cbl" = (
/obj/machinery/camera{
c_tag = "Monastery Asteroid Port";
dir = 1;
@@ -52807,45 +52120,45 @@
/area/chapel/asteroid{
name = "Monastery Asteroid"
})
-"ccW" = (
+"cbm" = (
/obj/structure/flora/ausbushes/palebush,
/turf/open/floor/plating/asteroid,
/area/chapel/asteroid{
name = "Monastery Asteroid"
})
-"ccX" = (
+"cbn" = (
/turf/closed/wall,
/area/chapel/office)
-"ccY" = (
+"cbo" = (
/obj/structure/grille,
/obj/structure/window/reinforced/tinted/fulltile,
/turf/open/floor/plasteel/black,
/area/chapel/office)
-"ccZ" = (
+"cbp" = (
/turf/closed/wall,
/area/chapel/asteroid{
name = "Monastery Asteroid"
})
-"cda" = (
+"cbq" = (
/obj/machinery/light/small{
dir = 1
},
/turf/open/floor/plasteel/black,
/area/chapel/office)
-"cdb" = (
+"cbr" = (
/obj/structure/chair{
dir = 1
},
/turf/open/floor/plasteel/black,
/area/chapel/office)
-"cdc" = (
+"cbs" = (
/obj/machinery/holopad,
/obj/item/device/flashlight/lantern,
/turf/open/floor/plasteel/chapel,
/area/chapel/main{
name = "Monastery"
})
-"cdd" = (
+"cbt" = (
/obj/item/device/flashlight/lantern,
/turf/open/floor/plasteel/chapel{
dir = 8
@@ -52853,7 +52166,7 @@
/area/chapel/main{
name = "Monastery"
})
-"cde" = (
+"cbu" = (
/obj/structure/chair,
/obj/machinery/camera{
c_tag = "Chapel";
@@ -52864,7 +52177,7 @@
/area/chapel/main{
name = "Monastery"
})
-"cdf" = (
+"cbv" = (
/obj/structure/flora/ausbushes/pointybush,
/obj/machinery/camera{
c_tag = "Monastery Asteroid Starboard";
@@ -52875,13 +52188,13 @@
/area/chapel/asteroid{
name = "Monastery Asteroid"
})
-"cdg" = (
+"cbw" = (
/obj/structure/flora/ausbushes/genericbush,
/turf/open/floor/plating/asteroid,
/area/chapel/asteroid{
name = "Monastery Asteroid"
})
-"cdh" = (
+"cbx" = (
/obj/structure/closet{
name = "chaplain closet"
},
@@ -52907,7 +52220,7 @@
},
/turf/open/floor/carpet,
/area/chapel/office)
-"cdi" = (
+"cby" = (
/obj/machinery/airalarm{
frequency = 1439;
locked = 0;
@@ -52915,7 +52228,7 @@
},
/turf/open/floor/carpet,
/area/chapel/office)
-"cdj" = (
+"cbz" = (
/obj/structure/table/wood,
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-18";
@@ -52929,13 +52242,13 @@
},
/turf/open/floor/carpet,
/area/chapel/office)
-"cdk" = (
+"cbA" = (
/obj/machinery/door/morgue{
name = "Confession Booth"
},
/turf/open/floor/plasteel/black,
/area/chapel/office)
-"cdl" = (
+"cbB" = (
/obj/machinery/light/small{
dir = 8
},
@@ -52945,14 +52258,14 @@
/area/chapel/main{
name = "Monastery"
})
-"cdm" = (
+"cbC" = (
/turf/open/floor/plasteel/chapel{
dir = 4
},
/area/chapel/main{
name = "Monastery"
})
-"cdn" = (
+"cbD" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/book/bible,
/obj/structure/cable{
@@ -52964,7 +52277,7 @@
/area/chapel/main{
name = "Monastery"
})
-"cdo" = (
+"cbE" = (
/obj/structure/table/wood,
/obj/item/weapon/reagent_containers/food/drinks/trophy{
pixel_y = 8
@@ -52973,14 +52286,14 @@
/area/chapel/main{
name = "Monastery"
})
-"cdp" = (
+"cbF" = (
/turf/open/floor/plasteel/chapel{
dir = 1
},
/area/chapel/main{
name = "Monastery"
})
-"cdq" = (
+"cbG" = (
/obj/machinery/light/small{
dir = 4
},
@@ -52990,7 +52303,7 @@
/area/chapel/main{
name = "Monastery"
})
-"cdr" = (
+"cbH" = (
/obj/machinery/door/airlock/centcom{
name = "Chapel Access";
opacity = 1
@@ -52999,30 +52312,30 @@
/area/chapel/main{
name = "Monastery"
})
-"cds" = (
+"cbI" = (
/obj/structure/flora/ausbushes/pointybush,
/turf/open/floor/plating/asteroid,
/area/chapel/asteroid{
name = "Monastery Asteroid"
})
-"cdt" = (
+"cbJ" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/chapel/office)
-"cdu" = (
+"cbK" = (
/obj/machinery/light/small{
dir = 8
},
/turf/open/floor/carpet,
/area/chapel/office)
-"cdv" = (
+"cbL" = (
/obj/structure/chair/comfy/black{
dir = 4
},
/turf/open/floor/carpet,
/area/chapel/office)
-"cdw" = (
+"cbM" = (
/obj/structure/table/wood,
/obj/item/weapon/reagent_containers/food/drinks/bottle/holywater{
name = "flask of holy water";
@@ -53032,7 +52345,7 @@
/obj/item/weapon/nullrod,
/turf/open/floor/carpet,
/area/chapel/office)
-"cdx" = (
+"cbN" = (
/obj/structure/chair{
dir = 8
},
@@ -53042,14 +52355,14 @@
},
/turf/open/floor/plasteel/black,
/area/chapel/office)
-"cdy" = (
+"cbO" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
on = 1
},
/turf/open/floor/plasteel/black,
/area/chapel/office)
-"cdz" = (
+"cbP" = (
/obj/machinery/light/small{
dir = 1
},
@@ -53072,7 +52385,7 @@
},
/turf/open/floor/plasteel/black,
/area/chapel/office)
-"cdA" = (
+"cbQ" = (
/obj/machinery/door/airlock/centcom{
name = "Chapel Access";
opacity = 1
@@ -53088,7 +52401,7 @@
/area/chapel/main{
name = "Monastery"
})
-"cdB" = (
+"cbR" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -53102,7 +52415,7 @@
/area/chapel/main{
name = "Monastery"
})
-"cdC" = (
+"cbS" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1;
@@ -53120,7 +52433,7 @@
/area/chapel/main{
name = "Monastery"
})
-"cdD" = (
+"cbT" = (
/obj/structure/cable{
icon_state = "1-8"
},
@@ -53131,7 +52444,7 @@
/area/chapel/main{
name = "Monastery"
})
-"cdE" = (
+"cbU" = (
/obj/effect/landmark/start{
name = "Chaplain"
},
@@ -53142,7 +52455,7 @@
/area/chapel/main{
name = "Monastery"
})
-"cdF" = (
+"cbV" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
on = 1
@@ -53153,12 +52466,12 @@
/area/chapel/main{
name = "Monastery"
})
-"cdG" = (
+"cbW" = (
/turf/open/floor/plasteel/chapel,
/area/chapel/main{
name = "Monastery"
})
-"cdH" = (
+"cbX" = (
/obj/machinery/door/airlock/centcom{
name = "Chape Access";
opacity = 1
@@ -53167,7 +52480,7 @@
/area/chapel/main{
name = "Monastery"
})
-"cdI" = (
+"cbY" = (
/obj/machinery/light/small{
dir = 1
},
@@ -53184,7 +52497,7 @@
/area/chapel/main{
name = "Monastery"
})
-"cdJ" = (
+"cbZ" = (
/obj/machinery/light/small{
dir = 1
},
@@ -53197,30 +52510,30 @@
/area/chapel/main{
name = "Monastery"
})
-"cdK" = (
+"cca" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/chapel/main{
name = "Monastery"
})
-"cdL" = (
+"ccb" = (
/obj/structure/chair,
/turf/open/floor/plating/asteroid,
/area/chapel/asteroid{
name = "Monastery Asteroid"
})
-"cdM" = (
+"ccc" = (
/obj/structure/closet/crate/bin,
/obj/machinery/newscaster{
pixel_x = -32
},
/turf/open/floor/carpet,
/area/chapel/office)
-"cdN" = (
+"ccd" = (
/turf/open/floor/carpet,
/area/chapel/office)
-"cdO" = (
+"cce" = (
/obj/structure/table/wood,
/obj/item/weapon/paper_bin{
layer = 2.9;
@@ -53230,7 +52543,7 @@
/obj/item/weapon/pen,
/turf/open/floor/carpet,
/area/chapel/office)
-"cdP" = (
+"ccf" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -53242,7 +52555,7 @@
},
/turf/open/floor/plasteel/black,
/area/chapel/office)
-"cdQ" = (
+"ccg" = (
/obj/machinery/door/airlock/centcom{
name = "Chapel Office";
opacity = 1;
@@ -53259,7 +52572,7 @@
},
/turf/open/floor/plasteel/black,
/area/chapel/office)
-"cdR" = (
+"cch" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -53272,7 +52585,7 @@
},
/turf/open/floor/plasteel/black,
/area/chapel/office)
-"cdS" = (
+"cci" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -53292,7 +52605,7 @@
},
/turf/open/floor/plasteel/black,
/area/chapel/office)
-"cdT" = (
+"ccj" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-08";
layer = 4.1
@@ -53303,7 +52616,7 @@
/area/chapel/main{
name = "Monastery"
})
-"cdU" = (
+"cck" = (
/obj/structure/table/wood/fancy,
/obj/item/weapon/storage/box/matches{
pixel_x = -3;
@@ -53316,19 +52629,19 @@
/area/chapel/main{
name = "Monastery"
})
-"cdV" = (
+"ccl" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/black,
/area/chapel/main{
name = "Monastery"
})
-"cdW" = (
+"ccm" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/black,
/area/chapel/main{
name = "Monastery"
})
-"cdX" = (
+"ccn" = (
/obj/structure/table/wood/fancy,
/obj/item/weapon/storage/fancy/candle_box,
/obj/machinery/light/small,
@@ -53338,7 +52651,7 @@
/area/chapel/main{
name = "Monastery"
})
-"cdY" = (
+"cco" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-08";
layer = 4.1
@@ -53349,7 +52662,7 @@
/area/chapel/main{
name = "Monastery"
})
-"cdZ" = (
+"ccp" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
@@ -53357,7 +52670,7 @@
/area/chapel/main{
name = "Monastery"
})
-"cea" = (
+"ccq" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
on = 1
@@ -53366,13 +52679,13 @@
/area/chapel/main{
name = "Monastery"
})
-"ceb" = (
+"ccr" = (
/obj/structure/chair/wood/normal,
/turf/open/floor/plasteel/black,
/area/chapel/main{
name = "Monastery"
})
-"cec" = (
+"ccs" = (
/obj/structure/table,
/obj/item/trash/plate,
/obj/item/weapon/kitchen/fork,
@@ -53380,7 +52693,7 @@
/area/chapel/asteroid{
name = "Monastery Asteroid"
})
-"ced" = (
+"cct" = (
/obj/machinery/field/generator,
/obj/machinery/camera{
c_tag = "Engineering Secure Storage";
@@ -53389,7 +52702,7 @@
},
/turf/open/floor/plating,
/area/engine/engineering)
-"cee" = (
+"ccu" = (
/obj/machinery/power/apc{
dir = 8;
name = "Chapel Office APC";
@@ -53408,7 +52721,7 @@
},
/turf/open/floor/plasteel/black,
/area/chapel/office)
-"cef" = (
+"ccv" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -53417,7 +52730,7 @@
},
/turf/open/floor/plasteel/black,
/area/chapel/office)
-"ceg" = (
+"ccw" = (
/obj/machinery/light/small{
dir = 4
},
@@ -53430,11 +52743,11 @@
},
/turf/open/floor/plasteel/black,
/area/chapel/office)
-"ceh" = (
+"ccx" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall,
/area/chapel/office)
-"cei" = (
+"ccy" = (
/obj/machinery/door/airlock/centcom{
name = "Chapel Access";
opacity = 1
@@ -53448,7 +52761,7 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/black,
/area/chapel/office)
-"cej" = (
+"ccz" = (
/obj/machinery/door/airlock/centcom{
name = "Chapel";
opacity = 1
@@ -53458,7 +52771,7 @@
/area/chapel/main{
name = "Monastery"
})
-"cek" = (
+"ccA" = (
/obj/machinery/door/airlock/centcom{
name = "Chapel";
opacity = 1
@@ -53468,7 +52781,7 @@
/area/chapel/main{
name = "Monastery"
})
-"cel" = (
+"ccB" = (
/obj/machinery/door/airlock/centcom{
name = "Chapel Access";
opacity = 1
@@ -53478,20 +52791,20 @@
/area/chapel/main{
name = "Monastery"
})
-"cem" = (
+"ccC" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall,
/area/chapel/main{
name = "Monastery"
})
-"cen" = (
+"ccD" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/photo_album,
/turf/open/floor/plasteel/black,
/area/chapel/main{
name = "Monastery"
})
-"ceo" = (
+"ccE" = (
/obj/structure/chair{
dir = 1
},
@@ -53499,14 +52812,14 @@
/area/chapel/asteroid{
name = "Monastery Asteroid"
})
-"cep" = (
+"ccF" = (
/obj/structure/bodycontainer/crematorium{
id = "foo"
},
/obj/effect/decal/cleanable/cobweb,
/turf/open/floor/plasteel/black,
/area/chapel/office)
-"ceq" = (
+"ccG" = (
/obj/machinery/light/small{
dir = 1
},
@@ -53517,7 +52830,7 @@
},
/turf/open/floor/plasteel/black,
/area/chapel/office)
-"cer" = (
+"ccH" = (
/obj/machinery/door/airlock/centcom{
name = "Crematorium";
opacity = 1;
@@ -53525,19 +52838,19 @@
},
/turf/open/floor/plasteel/black,
/area/chapel/office)
-"ces" = (
+"ccI" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/black,
/area/chapel/office)
-"cet" = (
+"ccJ" = (
/obj/structure/filingcabinet,
/turf/open/floor/plasteel/black,
/area/chapel/office)
-"ceu" = (
+"ccK" = (
/obj/machinery/suit_storage_unit/standard_unit,
/turf/open/floor/plasteel/black,
/area/chapel/office)
-"cev" = (
+"ccL" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -53551,7 +52864,7 @@
/area/chapel/main{
name = "Monastery"
})
-"cew" = (
+"ccM" = (
/obj/structure/cable{
icon_state = "1-8"
},
@@ -53568,7 +52881,7 @@
/area/chapel/main{
name = "Monastery"
})
-"cex" = (
+"ccN" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -53581,7 +52894,7 @@
/area/chapel/main{
name = "Monastery"
})
-"cey" = (
+"ccO" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -53598,7 +52911,7 @@
/area/chapel/main{
name = "Monastery"
})
-"cez" = (
+"ccP" = (
/obj/machinery/light/small{
dir = 1
},
@@ -53609,7 +52922,7 @@
/area/chapel/main{
name = "Monastery"
})
-"ceA" = (
+"ccQ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -53618,13 +52931,13 @@
/area/chapel/main{
name = "Monastery"
})
-"ceB" = (
+"ccR" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel/black,
/area/chapel/main{
name = "Monastery"
})
-"ceC" = (
+"ccS" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -53635,7 +52948,7 @@
/area/chapel/main{
name = "Monastery"
})
-"ceD" = (
+"ccT" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -53643,7 +52956,7 @@
/area/chapel/main{
name = "Monastery"
})
-"ceE" = (
+"ccU" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4;
initialize_directions = 11
@@ -53652,30 +52965,30 @@
/area/chapel/main{
name = "Monastery"
})
-"ceF" = (
+"ccV" = (
/obj/effect/decal/cleanable/blood/old,
/turf/open/floor/plasteel/black,
/area/chapel/office)
-"ceG" = (
+"ccW" = (
/obj/machinery/button/crematorium{
id = "foo";
pixel_x = 25
},
/turf/open/floor/plasteel/black,
/area/chapel/office)
-"ceH" = (
+"ccX" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
/turf/closed/wall,
/area/chapel/office)
-"ceI" = (
+"ccY" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall,
/area/chapel/office)
-"ceJ" = (
+"ccZ" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -53690,7 +53003,7 @@
/area/chapel/main{
name = "Monastery"
})
-"ceK" = (
+"cda" = (
/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
/turf/open/floor/plasteel/vault{
dir = 5
@@ -53698,7 +53011,7 @@
/area/chapel/main{
name = "Monastery"
})
-"ceL" = (
+"cdb" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -53708,7 +53021,7 @@
/area/chapel/main{
name = "Monastery"
})
-"ceM" = (
+"cdc" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/vault{
dir = 5
@@ -53716,7 +53029,7 @@
/area/chapel/main{
name = "Monastery"
})
-"ceN" = (
+"cdd" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
@@ -53726,7 +53039,7 @@
/area/chapel/main{
name = "Monastery"
})
-"ceO" = (
+"cde" = (
/obj/machinery/light/small{
dir = 1
},
@@ -53739,13 +53052,13 @@
/area/chapel/main{
name = "Monastery"
})
-"ceP" = (
+"cdf" = (
/obj/machinery/chem_master/condimaster,
/turf/open/floor/plasteel/hydrofloor,
/area/chapel/main{
name = "Monastery"
})
-"ceQ" = (
+"cdg" = (
/obj/machinery/seed_extractor,
/obj/machinery/light/small{
dir = 1
@@ -53754,13 +53067,13 @@
/area/chapel/main{
name = "Monastery"
})
-"ceR" = (
+"cdh" = (
/obj/machinery/biogenerator,
/turf/open/floor/plasteel/hydrofloor,
/area/chapel/main{
name = "Monastery"
})
-"ceS" = (
+"cdi" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -53772,7 +53085,7 @@
/area/chapel/main{
name = "Monastery"
})
-"ceT" = (
+"cdj" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/vault{
dir = 5
@@ -53780,18 +53093,18 @@
/area/chapel/main{
name = "Monastery"
})
-"ceU" = (
+"cdk" = (
/turf/closed/wall,
/area/hallway/secondary/construction{
name = "\improper Monastery Garden"
})
-"ceV" = (
+"cdl" = (
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/hallway/secondary/construction{
name = "\improper Monastery Garden"
})
-"ceW" = (
+"cdm" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 4
},
@@ -53799,12 +53112,12 @@
/area/chapel/main{
name = "Monastery"
})
-"ceX" = (
+"cdn" = (
/turf/open/floor/plating,
/area/chapel/main{
name = "Monastery"
})
-"ceY" = (
+"cdo" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 8
},
@@ -53812,12 +53125,12 @@
/area/chapel/main{
name = "Monastery"
})
-"ceZ" = (
+"cdp" = (
/turf/open/floor/plasteel/asteroid,
/area/chapel/asteroid{
name = "Monastery Asteroid"
})
-"cfa" = (
+"cdq" = (
/obj/structure/flora/ausbushes/fernybush,
/obj/machinery/camera{
c_tag = "Monastery Asteroid Starboard Aft";
@@ -53828,18 +53141,18 @@
/area/chapel/asteroid{
name = "Monastery Asteroid"
})
-"cfb" = (
+"cdr" = (
/obj/structure/flora/ausbushes,
/turf/open/floor/plasteel/asteroid,
/area/chapel/asteroid{
name = "Monastery Asteroid"
})
-"cfc" = (
+"cds" = (
/turf/closed/mineral,
/area/chapel/asteroid{
name = "Monastery Asteroid"
})
-"cfd" = (
+"cdt" = (
/obj/structure/cable{
icon_state = "0-2";
d2 = 2
@@ -53855,7 +53168,7 @@
/area/chapel/asteroid{
name = "Monastery Asteroid"
})
-"cfe" = (
+"cdu" = (
/obj/machinery/airalarm{
pixel_y = 22
},
@@ -53864,13 +53177,13 @@
/area/chapel/main{
name = "Monastery"
})
-"cff" = (
+"cdv" = (
/obj/item/seeds/wheat,
/turf/open/floor/plasteel/hydrofloor,
/area/chapel/main{
name = "Monastery"
})
-"cfg" = (
+"cdw" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
on = 1;
@@ -53881,7 +53194,7 @@
/area/chapel/main{
name = "Monastery"
})
-"cfh" = (
+"cdx" = (
/obj/item/weapon/storage/bag/plants,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -53893,7 +53206,7 @@
/area/chapel/main{
name = "Monastery"
})
-"cfi" = (
+"cdy" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -53901,7 +53214,7 @@
/area/chapel/main{
name = "Monastery"
})
-"cfj" = (
+"cdz" = (
/obj/machinery/light/small{
dir = 8
},
@@ -53919,13 +53232,13 @@
/area/chapel/main{
name = "Monastery"
})
-"cfk" = (
+"cdA" = (
/obj/structure/flora/ausbushes/pointybush,
/turf/open/floor/grass,
/area/hallway/secondary/construction{
name = "\improper Monastery Garden"
})
-"cfl" = (
+"cdB" = (
/obj/structure/flora/ausbushes/ywflowers,
/obj/structure/flora/ausbushes/sparsegrass,
/obj/machinery/light/small{
@@ -53935,7 +53248,7 @@
/area/hallway/secondary/construction{
name = "\improper Monastery Garden"
})
-"cfm" = (
+"cdC" = (
/obj/structure/flora/ausbushes/ywflowers,
/obj/structure/flora/ausbushes/ppflowers,
/obj/structure/flora/ausbushes/sparsegrass,
@@ -53943,7 +53256,7 @@
/area/hallway/secondary/construction{
name = "\improper Monastery Garden"
})
-"cfn" = (
+"cdD" = (
/obj/structure/flora/ausbushes/ywflowers,
/obj/structure/flora/ausbushes/sparsegrass,
/obj/machinery/camera{
@@ -53955,7 +53268,7 @@
/area/hallway/secondary/construction{
name = "\improper Monastery Garden"
})
-"cfo" = (
+"cdE" = (
/obj/machinery/hydroponics/soil,
/obj/item/seeds/carrot,
/obj/machinery/light/small{
@@ -53965,14 +53278,14 @@
/area/hallway/secondary/construction{
name = "\improper Monastery Garden"
})
-"cfp" = (
+"cdF" = (
/obj/machinery/hydroponics/soil,
/obj/item/seeds/watermelon/holy,
/turf/open/floor/grass,
/area/hallway/secondary/construction{
name = "\improper Monastery Garden"
})
-"cfq" = (
+"cdG" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -53984,7 +53297,7 @@
/area/chapel/asteroid{
name = "Monastery Asteroid"
})
-"cfr" = (
+"cdH" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 4
},
@@ -53997,7 +53310,7 @@
/area/chapel/main{
name = "Monastery"
})
-"cfs" = (
+"cdI" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -54007,7 +53320,7 @@
/area/chapel/main{
name = "Monastery"
})
-"cft" = (
+"cdJ" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 8
},
@@ -54020,7 +53333,7 @@
/area/chapel/main{
name = "Monastery"
})
-"cfu" = (
+"cdK" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -54030,7 +53343,7 @@
/area/chapel/main{
name = "Monastery"
})
-"cfv" = (
+"cdL" = (
/obj/machinery/vending/hydronutrients,
/obj/structure/cable{
d1 = 4;
@@ -54041,7 +53354,7 @@
/area/chapel/main{
name = "Monastery"
})
-"cfw" = (
+"cdM" = (
/obj/item/weapon/shovel/spade,
/obj/structure/cable{
d1 = 4;
@@ -54052,7 +53365,7 @@
/area/chapel/main{
name = "Monastery"
})
-"cfx" = (
+"cdN" = (
/obj/structure/sink{
dir = 4;
pixel_x = 11
@@ -54067,7 +53380,7 @@
/area/chapel/main{
name = "Monastery"
})
-"cfy" = (
+"cdO" = (
/obj/structure/flora/ausbushes/genericbush,
/obj/machinery/power/apc{
dir = 8;
@@ -54084,25 +53397,25 @@
/area/hallway/secondary/construction{
name = "\improper Monastery Garden"
})
-"cfz" = (
+"cdP" = (
/turf/open/floor/grass,
/area/hallway/secondary/construction{
name = "\improper Monastery Garden"
})
-"cfA" = (
+"cdQ" = (
/obj/item/weapon/cultivator,
/turf/open/floor/grass,
/area/hallway/secondary/construction{
name = "\improper Monastery Garden"
})
-"cfB" = (
+"cdR" = (
/obj/machinery/hydroponics/soil,
/obj/item/seeds/sugarcane,
/turf/open/floor/grass,
/area/hallway/secondary/construction{
name = "\improper Monastery Garden"
})
-"cfC" = (
+"cdS" = (
/obj/structure/closet/cabinet,
/obj/item/clothing/suit/holidaypriest,
/obj/item/clothing/suit/nun,
@@ -54120,7 +53433,7 @@
/area/chapel/main{
name = "Monastery"
})
-"cfD" = (
+"cdT" = (
/obj/structure/dresser,
/obj/structure/sign/securearea{
desc = "Under the painting a plaque reads: 'While the meat grinder may not have spared you, fear not. Not one part of you has gone to waste... You were delicious.'";
@@ -54133,7 +53446,7 @@
/area/chapel/main{
name = "Monastery"
})
-"cfE" = (
+"cdU" = (
/obj/structure/table/wood,
/obj/effect/decal/cleanable/cobweb{
icon_state = "cobweb2"
@@ -54146,7 +53459,7 @@
/area/chapel/main{
name = "Monastery"
})
-"cfF" = (
+"cdV" = (
/obj/structure/toilet{
pixel_y = 8
},
@@ -54158,7 +53471,7 @@
/area/chapel/main{
name = "Monastery"
})
-"cfG" = (
+"cdW" = (
/obj/machinery/camera{
c_tag = "Monastery Kitchen";
dir = 4;
@@ -54168,19 +53481,19 @@
/area/chapel/main{
name = "Monastery"
})
-"cfH" = (
+"cdX" = (
/obj/machinery/vending/dinnerware,
/turf/open/floor/plasteel/hydrofloor,
/area/chapel/main{
name = "Monastery"
})
-"cfI" = (
+"cdY" = (
/obj/item/clothing/suit/apron/chef,
/turf/open/floor/plasteel/hydrofloor,
/area/chapel/main{
name = "Monastery"
})
-"cfJ" = (
+"cdZ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
@@ -54193,7 +53506,7 @@
/area/chapel/main{
name = "Monastery"
})
-"cfK" = (
+"cea" = (
/obj/machinery/door/airlock{
name = "Kitchen"
},
@@ -54209,7 +53522,7 @@
/area/chapel/main{
name = "Monastery"
})
-"cfL" = (
+"ceb" = (
/obj/structure/cable{
d1 = 2;
d2 = 4;
@@ -54233,7 +53546,7 @@
/area/chapel/main{
name = "Monastery"
})
-"cfM" = (
+"cec" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -54247,7 +53560,7 @@
/area/chapel/main{
name = "Monastery"
})
-"cfN" = (
+"ced" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -54263,7 +53576,7 @@
/area/hallway/secondary/construction{
name = "\improper Monastery Garden"
})
-"cfO" = (
+"cee" = (
/obj/structure/cable{
icon_state = "1-8"
},
@@ -54271,7 +53584,7 @@
/area/hallway/secondary/construction{
name = "\improper Monastery Garden"
})
-"cfP" = (
+"cef" = (
/obj/structure/sink/puddle,
/obj/item/weapon/reagent_containers/glass/bucket,
/obj/effect/landmark/event_spawn,
@@ -54279,13 +53592,13 @@
/area/hallway/secondary/construction{
name = "\improper Monastery Garden"
})
-"cfQ" = (
+"ceg" = (
/obj/structure/flora/ausbushes/sunnybush,
/turf/open/floor/grass,
/area/hallway/secondary/construction{
name = "\improper Monastery Garden"
})
-"cfR" = (
+"ceh" = (
/obj/machinery/door/airlock{
name = "Garden"
},
@@ -54295,7 +53608,7 @@
/area/hallway/secondary/construction{
name = "\improper Monastery Garden"
})
-"cfS" = (
+"cei" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
@@ -54305,7 +53618,7 @@
/area/chapel/main{
name = "Monastery"
})
-"cfT" = (
+"cej" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -54314,7 +53627,7 @@
/area/chapel/main{
name = "Monastery"
})
-"cfU" = (
+"cek" = (
/obj/machinery/door/airlock{
id_tag = "Cell1";
name = "Cell 1"
@@ -54326,7 +53639,7 @@
/area/chapel/main{
name = "Monastery"
})
-"cfV" = (
+"cel" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
on = 1;
@@ -54337,12 +53650,12 @@
/area/chapel/main{
name = "Monastery"
})
-"cfW" = (
+"cem" = (
/turf/open/floor/plasteel/grimy,
/area/chapel/main{
name = "Monastery"
})
-"cfX" = (
+"cen" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
on = 1
@@ -54351,7 +53664,7 @@
/area/chapel/main{
name = "Monastery"
})
-"cfY" = (
+"ceo" = (
/obj/machinery/door/airlock{
name = "Bathroom"
},
@@ -54359,7 +53672,7 @@
/area/chapel/main{
name = "Monastery"
})
-"cfZ" = (
+"cep" = (
/obj/structure/sink{
dir = 4;
pixel_x = 11
@@ -54368,21 +53681,21 @@
/area/chapel/main{
name = "Monastery"
})
-"cga" = (
+"ceq" = (
/obj/item/chair/stool,
/turf/open/floor/plating{
broken = 1;
icon_state = "platingdmg1"
},
/area/maintenance/aft)
-"cgb" = (
+"cer" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plating{
broken = 1;
icon_state = "platingdmg3"
},
/area/maintenance/aft)
-"cgc" = (
+"ces" = (
/obj/structure/flora/ausbushes/leafybush,
/obj/machinery/camera{
c_tag = "Monastery Asteroid Port Aft";
@@ -54393,7 +53706,7 @@
/area/chapel/asteroid{
name = "Monastery Asteroid"
})
-"cgd" = (
+"cet" = (
/obj/structure/table,
/obj/machinery/microwave,
/obj/machinery/light/small{
@@ -54410,12 +53723,12 @@
/area/chapel/main{
name = "Monastery"
})
-"cge" = (
+"ceu" = (
/turf/open/floor/plasteel/hydrofloor,
/area/chapel/main{
name = "Monastery"
})
-"cgf" = (
+"cev" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
on = 1
@@ -54424,7 +53737,7 @@
/area/chapel/main{
name = "Monastery"
})
-"cgg" = (
+"cew" = (
/obj/item/weapon/reagent_containers/glass/bucket,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
@@ -54433,7 +53746,7 @@
/area/chapel/main{
name = "Monastery"
})
-"cgh" = (
+"cex" = (
/obj/structure/cable{
d1 = 1;
d2 = 2;
@@ -54446,20 +53759,20 @@
/area/chapel/main{
name = "Monastery"
})
-"cgi" = (
+"cey" = (
/obj/machinery/hydroponics/soil,
/obj/item/seeds/wheat,
/turf/open/floor/grass,
/area/hallway/secondary/construction{
name = "\improper Monastery Garden"
})
-"cgj" = (
+"cez" = (
/obj/structure/flora/ausbushes/genericbush,
/turf/open/floor/grass,
/area/hallway/secondary/construction{
name = "\improper Monastery Garden"
})
-"cgk" = (
+"ceA" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
@@ -54467,7 +53780,7 @@
/area/chapel/main{
name = "Monastery"
})
-"cgl" = (
+"ceB" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -54475,7 +53788,7 @@
/area/chapel/main{
name = "Monastery"
})
-"cgm" = (
+"ceC" = (
/obj/structure/table/wood,
/obj/machinery/light/small{
dir = 8
@@ -54488,7 +53801,7 @@
/area/chapel/main{
name = "Monastery"
})
-"cgn" = (
+"ceD" = (
/obj/structure/chair/wood/normal{
icon_state = "wooden_chair";
dir = 8
@@ -54500,7 +53813,7 @@
/area/chapel/main{
name = "Monastery"
})
-"cgo" = (
+"ceE" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/green,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -54510,7 +53823,7 @@
/area/chapel/main{
name = "Monastery"
})
-"cgp" = (
+"ceF" = (
/obj/machinery/shower{
dir = 8;
pixel_y = -4
@@ -54520,34 +53833,34 @@
/area/chapel/main{
name = "Monastery"
})
-"cgq" = (
+"ceG" = (
/turf/closed/mineral{
baseturf = /turf/open/floor/plating/asteroid
},
/area/chapel/asteroid{
name = "Monastery Asteroid"
})
-"cgr" = (
+"ceH" = (
/obj/structure/flora/ausbushes/leafybush,
/obj/structure/flora/ausbushes/fernybush,
/turf/open/floor/plating/asteroid,
/area/chapel/asteroid{
name = "Monastery Asteroid"
})
-"cgs" = (
+"ceI" = (
/obj/item/weapon/phone,
/turf/open/floor/plating,
/area/chapel/main{
name = "Monastery"
})
-"cgt" = (
+"ceJ" = (
/obj/structure/table,
/obj/machinery/reagentgrinder,
/turf/open/floor/plasteel/hydrofloor,
/area/chapel/main{
name = "Monastery"
})
-"cgu" = (
+"ceK" = (
/obj/structure/table,
/obj/item/weapon/reagent_containers/food/condiment/saltshaker{
pixel_x = 3;
@@ -54561,7 +53874,7 @@
/area/chapel/main{
name = "Monastery"
})
-"cgv" = (
+"ceL" = (
/obj/structure/table,
/obj/item/weapon/reagent_containers/food/condiment/flour,
/obj/item/weapon/kitchen/rollingpin,
@@ -54571,19 +53884,19 @@
/area/chapel/main{
name = "Monastery"
})
-"cgw" = (
+"ceM" = (
/obj/structure/closet/crate/bin,
/turf/open/floor/plasteel/hydrofloor,
/area/chapel/main{
name = "Monastery"
})
-"cgx" = (
+"ceN" = (
/obj/structure/reagent_dispensers/watertank/high,
/turf/open/floor/plasteel/hydrofloor,
/area/chapel/main{
name = "Monastery"
})
-"cgy" = (
+"ceO" = (
/obj/machinery/light/small{
dir = 8
},
@@ -54603,14 +53916,14 @@
/area/chapel/main{
name = "Monastery"
})
-"cgz" = (
+"ceP" = (
/obj/machinery/hydroponics/soil,
/obj/item/seeds/grass,
/turf/open/floor/grass,
/area/hallway/secondary/construction{
name = "\improper Monastery Garden"
})
-"cgA" = (
+"ceQ" = (
/obj/machinery/hydroponics/soil,
/obj/item/seeds/apple,
/obj/machinery/light/small,
@@ -54618,14 +53931,14 @@
/area/hallway/secondary/construction{
name = "\improper Monastery Garden"
})
-"cgB" = (
+"ceR" = (
/obj/structure/flora/ausbushes/ywflowers,
/obj/structure/flora/ausbushes/sparsegrass,
/turf/open/floor/grass,
/area/hallway/secondary/construction{
name = "\improper Monastery Garden"
})
-"cgC" = (
+"ceS" = (
/obj/structure/flora/ausbushes/ywflowers,
/obj/structure/flora/ausbushes/sparsegrass,
/obj/machinery/light/small,
@@ -54633,7 +53946,7 @@
/area/hallway/secondary/construction{
name = "\improper Monastery Garden"
})
-"cgD" = (
+"ceT" = (
/obj/machinery/light/small{
dir = 4
},
@@ -54647,10 +53960,10 @@
/area/chapel/main{
name = "Monastery"
})
-"cgE" = (
+"ceU" = (
/turf/closed/wall/mineral/titanium,
/area/shuttle/abandoned)
-"cgF" = (
+"ceV" = (
/obj/structure/shuttle/engine/propulsion/burst{
tag = "icon-propulsion (NORTH)";
icon_state = "propulsion";
@@ -54658,13 +53971,13 @@
},
/turf/closed/wall/mineral/titanium,
/area/shuttle/abandoned)
-"cgG" = (
+"ceW" = (
/obj/machinery/door/airlock/glass{
name = "Shuttle Airlock"
},
/turf/open/floor/plasteel/black,
/area/shuttle/abandoned)
-"cgH" = (
+"ceX" = (
/obj/structure/closet/cabinet,
/obj/item/clothing/suit/holidaypriest,
/obj/item/clothing/suit/nun,
@@ -54682,7 +53995,7 @@
/area/chapel/main{
name = "Monastery"
})
-"cgI" = (
+"ceY" = (
/obj/machinery/light/small{
dir = 4
},
@@ -54692,7 +54005,7 @@
/area/chapel/main{
name = "Monastery"
})
-"cgJ" = (
+"ceZ" = (
/obj/structure/toilet{
pixel_y = 8
},
@@ -54700,13 +54013,13 @@
/area/chapel/main{
name = "Monastery"
})
-"cgK" = (
+"cfa" = (
/turf/open/floor/plasteel/black,
/area/shuttle/abandoned)
-"cgL" = (
+"cfb" = (
/turf/open/floor/plasteel,
/area/shuttle/abandoned)
-"cgM" = (
+"cfc" = (
/obj/machinery/light/small{
dir = 8
},
@@ -54717,13 +54030,13 @@
/area/chapel/main{
name = "Monastery"
})
-"cgN" = (
+"cfd" = (
/obj/structure/closet/coffin,
/turf/open/floor/plasteel/black,
/area/chapel/main{
name = "Monastery"
})
-"cgO" = (
+"cfe" = (
/obj/structure/closet/coffin,
/obj/machinery/camera{
c_tag = "Monastery Funeral Parlor";
@@ -54734,7 +54047,7 @@
/area/chapel/main{
name = "Monastery"
})
-"cgP" = (
+"cff" = (
/obj/structure/closet/coffin,
/obj/machinery/light/small{
dir = 4
@@ -54746,7 +54059,7 @@
/area/chapel/main{
name = "Monastery"
})
-"cgQ" = (
+"cfg" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
@@ -54754,7 +54067,7 @@
/area/chapel/main{
name = "Monastery"
})
-"cgR" = (
+"cfh" = (
/obj/machinery/door/airlock/centcom{
name = "Chapel Garden";
opacity = 1
@@ -54766,7 +54079,7 @@
/area/chapel/main{
name = "Monastery"
})
-"cgS" = (
+"cfi" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1;
initialize_directions = 11
@@ -54777,7 +54090,7 @@
/area/chapel/main{
name = "Monastery"
})
-"cgT" = (
+"cfj" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
@@ -54787,7 +54100,7 @@
/area/chapel/main{
name = "Monastery"
})
-"cgU" = (
+"cfk" = (
/obj/machinery/door/airlock{
id_tag = "Cell2";
name = "Cell 2"
@@ -54799,7 +54112,7 @@
/area/chapel/main{
name = "Monastery"
})
-"cgV" = (
+"cfl" = (
/obj/structure/closet/emcloset,
/obj/effect/decal/cleanable/cobweb,
/obj/effect/decal/cleanable/blood/old,
@@ -54807,7 +54120,7 @@
/area/chapel/main{
name = "Monastery"
})
-"cgW" = (
+"cfm" = (
/obj/structure/table,
/obj/item/weapon/crowbar,
/obj/item/clothing/mask/gas,
@@ -54815,7 +54128,7 @@
/area/chapel/main{
name = "Monastery"
})
-"cgX" = (
+"cfn" = (
/obj/machinery/door/window/eastleft{
dir = 1;
name = "Coffin Storage";
@@ -54836,7 +54149,7 @@
/area/chapel/main{
name = "Monastery"
})
-"cgY" = (
+"cfo" = (
/obj/structure/window/reinforced{
dir = 1;
layer = 2.9
@@ -54848,7 +54161,7 @@
/area/chapel/main{
name = "Monastery"
})
-"cgZ" = (
+"cfp" = (
/obj/structure/window/reinforced{
dir = 1;
layer = 2.9
@@ -54861,7 +54174,7 @@
/area/chapel/main{
name = "Monastery"
})
-"cha" = (
+"cfq" = (
/obj/structure/window/reinforced{
dir = 1;
layer = 2.9
@@ -54873,7 +54186,7 @@
/area/chapel/main{
name = "Monastery"
})
-"chb" = (
+"cfr" = (
/obj/machinery/light/small{
dir = 8
},
@@ -54887,7 +54200,7 @@
/area/chapel/main{
name = "Monastery"
})
-"chc" = (
+"cfs" = (
/obj/structure/cable{
d1 = 1;
d2 = 4;
@@ -54899,7 +54212,7 @@
/area/chapel/main{
name = "Monastery"
})
-"chd" = (
+"cft" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -54913,7 +54226,7 @@
/area/chapel/main{
name = "Monastery"
})
-"che" = (
+"cfu" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -54933,7 +54246,7 @@
/area/chapel/main{
name = "Monastery"
})
-"chf" = (
+"cfv" = (
/obj/machinery/light/small,
/obj/structure/cable{
d1 = 4;
@@ -54949,7 +54262,7 @@
/area/chapel/main{
name = "Monastery"
})
-"chg" = (
+"cfw" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -54963,7 +54276,7 @@
/area/chapel/main{
name = "Monastery"
})
-"chh" = (
+"cfx" = (
/obj/machinery/light/small,
/obj/structure/cable{
d1 = 4;
@@ -54978,7 +54291,7 @@
/area/chapel/main{
name = "Monastery"
})
-"chi" = (
+"cfy" = (
/obj/structure/cable{
d1 = 4;
d2 = 8;
@@ -54992,7 +54305,7 @@
/area/chapel/main{
name = "Monastery"
})
-"chj" = (
+"cfz" = (
/obj/structure/cable{
d1 = 2;
d2 = 8;
@@ -55007,20 +54320,20 @@
/area/chapel/main{
name = "Monastery"
})
-"chk" = (
+"cfA" = (
/obj/structure/closet/firecloset,
/obj/effect/decal/cleanable/cobweb,
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
/area/maintenance/fsmaint)
-"chl" = (
+"cfB" = (
/obj/structure/grille/broken,
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
/area/maintenance/fsmaint)
-"chm" = (
+"cfC" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/obj/structure/disposalpipe/segment{
dir = 2;
@@ -55028,7 +54341,7 @@
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"chn" = (
+"cfD" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden,
/obj/structure/disposalpipe/segment{
dir = 1;
@@ -55036,18 +54349,18 @@
},
/turf/open/floor/plasteel,
/area/security/brig)
-"cho" = (
+"cfE" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel,
/area/security/brig)
-"chp" = (
+"cfF" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel,
/area/quartermaster/miningdock)
-"chq" = (
+"cfG" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -55057,817 +54370,1107 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"chr" = (
+"cfH" = (
/obj/item/weapon/storage/toolbox/mechanical,
/turf/open/floor/plating,
/area/maintenance/aft)
-
-(1,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(2,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(3,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(4,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+"cfI" = (
+/turf/open/space,
+/obj/machinery/porta_turret/syndicate{
+ dir = 9
+ },
+/turf/closed/wall/mineral/plastitanium{
+ dir = 8;
+ icon_state = "diagonalWall3"
+ },
+/area/space)
+"cfJ" = (
+/turf/closed/wall/mineral/plastitanium,
+/area/space)
+"cfK" = (
+/obj/structure/grille,
+/obj/machinery/door/poddoor/shutters{
+ id = "syndieshutters";
+ name = "blast shutters"
+ },
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/space)
+"cfL" = (
+/turf/open/space,
+/obj/machinery/porta_turret/syndicate{
+ dir = 5
+ },
+/turf/closed/wall/mineral/plastitanium{
+ dir = 1;
+ icon_state = "diagonalWall3"
+ },
+/area/space)
+"cfM" = (
+/obj/structure/table,
+/obj/machinery/microwave,
+/turf/open/floor/mineral/plastitanium,
+/area/space)
+"cfN" = (
+/turf/open/floor/mineral/plastitanium,
+/area/space)
+"cfO" = (
+/obj/structure/table,
+/obj/item/device/flashlight/lamp{
+ pixel_x = 4;
+ pixel_y = 1
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/space)
+"cfP" = (
+/obj/machinery/computer/shuttle/syndicate,
+/turf/open/floor/mineral/plastitanium,
+/area/space)
+"cfQ" = (
+/obj/structure/table,
+/obj/machinery/button/door{
+ id = "syndieshutters";
+ name = "remote shutter control";
+ req_access_txt = "150"
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/space)
+"cfR" = (
+/obj/structure/frame/computer,
+/turf/open/floor/mineral/plastitanium,
+/area/space)
+"cfS" = (
+/obj/structure/table,
+/obj/item/weapon/storage/box/donkpockets{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/space)
+"cfT" = (
+/obj/structure/chair/comfy/beige{
+ dir = 1;
+ icon_state = "comfychair"
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/space)
+"cfU" = (
+/obj/structure/table,
+/obj/item/stack/sheet/glass{
+ amount = 10
+ },
+/obj/item/device/multitool,
+/turf/open/floor/mineral/plastitanium,
+/area/space)
+"cfV" = (
+/obj/item/device/radio/intercom{
+ desc = "Talk through this. Evilly";
+ freerange = 1;
+ frequency = 1213;
+ name = "Syndicate Intercom";
+ pixel_y = -32;
+ subspace_transmission = 1;
+ syndie = 1
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/space)
+"cfW" = (
+/obj/structure/closet/syndicate/personal,
+/turf/open/floor/mineral/plastitanium,
+/area/space)
+"cfX" = (
+/turf/open/space,
+/turf/closed/wall/mineral/plastitanium{
+ icon_state = "diagonalWall3"
+ },
+/area/space)
+"cfY" = (
+/obj/machinery/door/window{
+ name = "Cockpit";
+ req_access_txt = "150"
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/space)
+"cfZ" = (
+/turf/open/space,
+/turf/closed/wall/mineral/plastitanium{
+ dir = 4;
+ icon_state = "diagonalWall3"
+ },
+/area/space)
+"cga" = (
+/obj/structure/table,
+/obj/item/stack/cable_coil,
+/obj/item/weapon/crowbar/red,
+/turf/open/floor/mineral/plastitanium,
+/area/space)
+"cgb" = (
+/obj/structure/table,
+/obj/item/weapon/storage/box/zipties{
+ pixel_x = 1;
+ pixel_y = 2
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/space)
+"cgc" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/space)
+"cgd" = (
+/obj/machinery/porta_turret/syndicate{
+ dir = 4
+ },
+/turf/closed/wall/mineral/plastitanium,
+/area/space)
+"cge" = (
+/obj/machinery/suit_storage_unit/syndicate,
+/turf/open/floor/mineral/plastitanium,
+/area/space)
+"cgf" = (
+/obj/structure/closet/syndicate/nuclear,
+/turf/open/floor/mineral/plastitanium,
+/area/space)
+"cgg" = (
+/obj/structure/chair/stool{
+ pixel_y = 8
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/space)
+"cgh" = (
+/obj/structure/table,
+/obj/item/device/aicard,
+/turf/open/floor/mineral/plastitanium,
+/area/space)
+"cgi" = (
+/obj/machinery/door/poddoor{
+ id = "smindicate";
+ name = "outer blast door"
+ },
+/obj/machinery/button/door{
+ id = "smindicate";
+ name = "external door control";
+ pixel_x = -26;
+ pixel_y = 0;
+ req_access_txt = "150"
+ },
+/obj/docking_port/mobile{
+ dheight = 9;
+ dir = 2;
+ dwidth = 5;
+ height = 24;
+ id = "syndicate";
+ name = "syndicate infiltrator";
+ port_angle = 0;
+ roundstart_move = "syndicate_away";
+ width = 18
+ },
+/obj/docking_port/stationary{
+ dheight = 9;
+ dir = 2;
+ dwidth = 5;
+ height = 24;
+ id = "syndicate_nw";
+ name = "northwest of station";
+ turf_type = /turf/open/space;
+ width = 18
+ },
+/turf/open/floor/plating,
+/area/space)
+"cgj" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 0
+ },
+/turf/closed/wall/mineral/plastitanium,
+/area/space)
+"cgk" = (
+/obj/structure/table,
+/obj/item/weapon/c4{
+ pixel_x = 2;
+ pixel_y = -5
+ },
+/obj/item/weapon/c4{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/weapon/c4{
+ pixel_x = 2;
+ pixel_y = -3
+ },
+/obj/item/weapon/c4{
+ pixel_x = -2;
+ pixel_y = -1
+ },
+/obj/item/weapon/c4{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/space)
+"cgl" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/space)
+"cgm" = (
+/obj/machinery/door/window{
+ name = "Ready Room";
+ req_access_txt = "150"
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/space)
+"cgn" = (
+/obj/machinery/door/window{
+ dir = 4;
+ name = "EVA Storage";
+ req_access_txt = "150"
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/space)
+"cgo" = (
+/obj/machinery/door/airlock/external{
+ req_access_txt = "150"
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/space)
+"cgp" = (
+/obj/machinery/door/window{
+ base_state = "right";
+ dir = 4;
+ icon_state = "right";
+ name = "EVA Storage";
+ req_access_txt = "150"
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/space)
+"cgq" = (
+/turf/open/space,
+/turf/closed/wall/mineral/plastitanium{
+ dir = 1;
+ icon_state = "diagonalWall3"
+ },
+/area/space)
+"cgr" = (
+/obj/item/device/radio/intercom{
+ desc = "Talk through this. Evilly";
+ freerange = 1;
+ frequency = 1213;
+ name = "Syndicate Intercom";
+ pixel_x = -32;
+ subspace_transmission = 1;
+ syndie = 1
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/space)
+"cgs" = (
+/obj/machinery/sleeper/syndie{
+ dir = 4
+ },
+/turf/open/floor/mineral/titanium,
+/area/space)
+"cgt" = (
+/turf/open/floor/mineral/titanium,
+/area/space)
+"cgu" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/open/floor/mineral/titanium,
+/area/space)
+"cgv" = (
+/obj/structure/tank_dispenser/oxygen,
+/turf/open/floor/mineral/titanium,
+/area/space)
+"cgw" = (
+/obj/structure/table,
+/obj/item/stack/medical/ointment,
+/obj/item/stack/medical/bruise_pack,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -5;
+ pixel_y = 30
+ },
+/turf/open/floor/mineral/titanium,
+/area/space)
+"cgx" = (
+/obj/structure/table,
+/obj/item/weapon/stock_parts/cell/high{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/weapon/stock_parts/cell/high,
+/turf/open/floor/mineral/plastitanium,
+/area/space)
+"cgy" = (
+/obj/structure/table,
+/obj/item/weapon/screwdriver{
+ pixel_y = 9
+ },
+/obj/item/device/assembly/voice{
+ pixel_y = 3
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/space)
+"cgz" = (
+/obj/structure/table,
+/obj/item/weapon/wrench,
+/obj/item/device/assembly/infra,
+/turf/open/floor/mineral/plastitanium,
+/area/space)
+"cgA" = (
+/obj/structure/table,
+/obj/item/device/assembly/signaler,
+/obj/item/device/assembly/signaler,
+/obj/item/device/assembly/prox_sensor{
+ pixel_x = -8;
+ pixel_y = 4
+ },
+/obj/item/device/assembly/prox_sensor{
+ pixel_x = -8;
+ pixel_y = 4
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/space)
+"cgB" = (
+/obj/structure/table,
+/obj/item/weapon/weldingtool/largetank{
+ pixel_y = 3
+ },
+/obj/item/device/multitool,
+/turf/open/floor/mineral/plastitanium,
+/area/space)
+"cgC" = (
+/obj/structure/bed/roller,
+/turf/open/floor/mineral/titanium,
+/area/space)
+"cgD" = (
+/obj/structure/sign/bluecross_2,
+/turf/closed/wall/mineral/plastitanium,
+/area/space)
+"cgE" = (
+/obj/structure/table,
+/obj/item/weapon/storage/toolbox/syndicate,
+/obj/item/weapon/crowbar/red,
+/turf/open/floor/mineral/plastitanium,
+/area/space)
+"cgF" = (
+/obj/machinery/door/window{
+ dir = 4;
+ name = "Infirmary";
+ req_access_txt = "150"
+ },
+/turf/open/floor/mineral/titanium,
+/area/space)
+"cgG" = (
+/obj/machinery/door/window/westright{
+ name = "Tool Storage";
+ req_access_txt = "150"
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/space)
+"cgH" = (
+/obj/machinery/door/window{
+ base_state = "right";
+ dir = 4;
+ icon_state = "right";
+ name = "Infirmary";
+ req_access_txt = "150"
+ },
+/turf/open/floor/mineral/titanium,
+/area/space)
+"cgI" = (
+/obj/machinery/door/window{
+ dir = 8;
+ name = "Tool Storage";
+ req_access_txt = "150"
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/space)
+"cgJ" = (
+/obj/machinery/recharge_station,
+/turf/open/floor/mineral/plastitanium,
+/area/space)
+"cgK" = (
+/obj/machinery/porta_turret/syndicate{
+ dir = 5
+ },
+/turf/closed/wall/mineral/plastitanium,
+/area/space)
+"cgL" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/table,
+/obj/item/bodypart/r_arm/robot,
+/obj/item/bodypart/l_arm/robot,
+/turf/open/floor/mineral/titanium,
+/area/space)
+"cgM" = (
+/obj/machinery/door/window{
+ dir = 1;
+ name = "Surgery";
+ req_access_txt = "150"
+ },
+/turf/open/floor/mineral/titanium,
+/area/space)
+"cgN" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/open/floor/mineral/titanium,
+/area/space)
+"cgO" = (
+/obj/structure/table,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/firstaid/brute,
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/turf/open/floor/mineral/titanium,
+/area/space)
+"cgP" = (
+/obj/structure/table,
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/firstaid/fire,
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/turf/open/floor/mineral/titanium,
+/area/space)
+"cgQ" = (
+/obj/structure/table,
+/obj/item/device/sbeacondrop/bomb{
+ pixel_y = 5
+ },
+/obj/item/device/sbeacondrop/bomb,
+/turf/open/floor/mineral/plastitanium,
+/area/space)
+"cgR" = (
+/obj/structure/table,
+/obj/item/weapon/grenade/syndieminibomb{
+ pixel_x = 4;
+ pixel_y = 2
+ },
+/obj/item/weapon/grenade/syndieminibomb{
+ pixel_x = -1
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/space)
+"cgS" = (
+/obj/structure/table,
+/obj/item/weapon/surgicaldrill,
+/obj/item/weapon/circular_saw,
+/turf/open/floor/mineral/titanium,
+/area/space)
+"cgT" = (
+/obj/structure/sink{
+ dir = 4;
+ icon_state = "sink";
+ pixel_x = 11;
+ pixel_y = 0
+ },
+/obj/structure/mirror{
+ pixel_x = 30
+ },
+/turf/open/floor/mineral/titanium,
+/area/space)
+"cgU" = (
+/obj/machinery/nuclearbomb/syndicate,
+/obj/machinery/door/window{
+ dir = 1;
+ name = "Secure Storage";
+ req_access_txt = "150"
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/space)
+"cgV" = (
+/obj/machinery/telecomms/allinone{
+ intercept = 1
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/space)
+"cgW" = (
+/obj/structure/table,
+/obj/item/weapon/cautery,
+/obj/item/weapon/scalpel,
+/turf/open/floor/mineral/titanium,
+/area/space)
+"cgX" = (
+/obj/structure/table/optable,
+/obj/item/weapon/surgical_drapes,
+/turf/open/floor/mineral/titanium,
+/area/space)
+"cgY" = (
+/obj/structure/table,
+/obj/item/weapon/retractor,
+/obj/item/weapon/hemostat,
+/turf/open/floor/mineral/titanium,
+/area/space)
+"cgZ" = (
+/obj/structure/shuttle/engine/heater,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/space)
+"cha" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/mineral/plastitanium,
+/area/space)
+"chb" = (
+/obj/structure/table,
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/obj/item/stack/sheet/glass{
+ amount = 50
+ },
+/obj/item/stack/rods{
+ amount = 50
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/space)
+"chc" = (
+/obj/structure/rack,
+/obj/item/clothing/suit/space/syndicate/black/red,
+/obj/item/clothing/head/helmet/space/syndicate/black/red,
+/turf/open/floor/mineral/plastitanium,
+/area/space)
+"chd" = (
+/obj/structure/shuttle/engine/propulsion{
+ icon_state = "propulsion_l"
+ },
+/turf/open/floor/plating,
+/area/space)
+"che" = (
+/obj/structure/shuttle/engine/propulsion,
+/turf/open/floor/plating,
+/area/space)
+"chf" = (
+/obj/structure/shuttle/engine/propulsion{
+ icon_state = "propulsion_r"
+ },
+/turf/open/floor/plating,
+/area/space)
+"chg" = (
+/turf/open/space,
+/obj/machinery/porta_turret/syndicate{
+ dir = 6
+ },
+/turf/closed/wall/mineral/plastitanium{
+ dir = 4;
+ icon_state = "diagonalWall3"
+ },
+/area/space)
+"chh" = (
+/turf/open/space,
+/obj/machinery/porta_turret/syndicate{
+ dir = 10
+ },
+/turf/closed/wall/mineral/plastitanium{
+ icon_state = "diagonalWall3"
+ },
+/area/space)
+"chi" = (
+/obj/structure/lattice,
+/obj/structure/grille,
+/turf/open/space,
+/area/solar/port{
+ name = "Port Solar Array"
+ })
+"chj" = (
+/obj/structure/lattice,
+/turf/open/space,
+/area/solar/port{
+ name = "Port Solar Array"
+ })
+"chk" = (
+/obj/structure/lattice,
+/obj/structure/grille/broken,
+/turf/open/space,
+/area/solar/port{
+ name = "Port Solar Array"
+ })
+"chl" = (
+/obj/structure/lattice/catwalk,
+/obj/item/stack/cable_coil,
+/turf/open/space,
+/area/solar/port{
+ name = "Port Solar Array"
+ })
+"chm" = (
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/solar/port{
+ name = "Port Solar Array"
+ })
+"chn" = (
+/turf/open/space,
+/area/shuttle/escape)
+"cho" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"chp" = (
+/obj/item/weapon/twohanded/required/kirbyplants,
+/turf/open/floor/plasteel/escape{
+ dir = 9
+ },
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"chq" = (
+/turf/open/floor/plasteel/escape{
+ dir = 1
+ },
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"chr" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/escape{
+ dir = 1
+ },
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"chs" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/escape{
+ dir = 1
+ },
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cht" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/escape{
+ dir = 1
+ },
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"chu" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/escape{
+ dir = 1
+ },
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"chv" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/escape{
+ dir = 1
+ },
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"chw" = (
+/obj/structure/table,
+/obj/item/weapon/storage/firstaid/regular,
+/turf/open/floor/plasteel/escape{
+ dir = 1
+ },
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"chx" = (
+/turf/open/floor/plasteel/escape{
+ dir = 8
+ },
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"chy" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"chz" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"chA" = (
+/obj/structure/table,
+/obj/item/toy/cards/deck,
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"chB" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"chC" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"chD" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"chE" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = -32;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/escape{
+ dir = 8
+ },
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"chF" = (
+/obj/machinery/status_display,
+/turf/closed/wall,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"chG" = (
+/obj/structure/flora/ausbushes/leafybush,
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/grass,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"chH" = (
+/obj/machinery/status_display,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"chI" = (
+/obj/structure/table,
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen,
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"chJ" = (
+/obj/structure/chair,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"chK" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/ausbushes/palebush,
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/grass,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"chL" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/ausbushes/palebush,
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/turf/open/floor/grass,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"chM" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/ausbushes/palebush,
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ layer = 2.9
+ },
+/turf/open/floor/grass,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"chN" = (
+/obj/machinery/camera{
+ c_tag = "Departures - Port";
+ dir = 4;
+ name = "security camera";
+ pixel_x = 0;
+ pixel_y = -7
+ },
+/turf/open/floor/plasteel/escape{
+ dir = 8
+ },
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"chO" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"chP" = (
+/obj/item/device/radio/beacon,
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"chQ" = (
+/obj/item/weapon/statuebust{
+ anchored = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/grass,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"chR" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ layer = 2.4;
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"chS" = (
+/obj/structure/table,
+/obj/item/weapon/folder,
+/obj/item/weapon/pen,
+/obj/machinery/light,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"chT" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/ausbushes/palebush,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/grass,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"chU" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/ausbushes/palebush,
+/obj/structure/window/reinforced,
+/turf/open/floor/grass,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"chV" = (
+/obj/structure/flora/ausbushes/ywflowers,
+/obj/structure/flora/ausbushes/lavendergrass,
+/obj/structure/flora/ausbushes/ppflowers,
+/obj/structure/flora/ausbushes/brflowers,
+/obj/structure/flora/ausbushes/palebush,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4;
+ layer = 2.9
+ },
+/turf/open/floor/grass,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"chW" = (
+/obj/structure/table,
+/obj/item/weapon/storage/pill_bottle/dice,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"chX" = (
+/obj/structure/table,
+/obj/item/weapon/storage/firstaid/regular,
+/turf/open/floor/plasteel/escape,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"chY" = (
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-21";
+ layer = 4.1;
+ pixel_x = 0;
+ pixel_y = 3
+ },
+/turf/open/floor/plasteel/escape{
+ dir = 10;
+ tag = "icon-escape (NORTHWEST)"
+ },
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"chZ" = (
+/obj/machinery/camera{
+ c_tag = "Departures - Port";
+ dir = 1
+ },
+/turf/open/floor/plasteel/escape,
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cia" = (
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-10";
+ layer = 4.1
+ },
+/turf/open/floor/plasteel/escape{
+ dir = 6
+ },
+/area/hallway/secondary/exit{
+ name = "\improper Departure Lounge"
+ })
+"cib" = (
+/obj/machinery/door/airlock/external,
+/turf/open/floor/pod/light,
+/area/shuttle/transport)
+"cic" = (
+/turf/open/floor/pod/light,
+/area/shuttle/transport)
+"cid" = (
+/obj/machinery/door/airlock/titanium,
+/turf/open/floor/pod/light,
+/area/shuttle/transport)
+"cie" = (
+/obj/machinery/computer/shuttle/ferry/request,
+/turf/open/floor/pod/dark,
+/area/shuttle/transport)
+"cif" = (
+/obj/structure/shuttle/engine/heater{
+ icon_state = "heater";
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/turf/open/floor/plating,
+/area/shuttle/transport)
+"cig" = (
+/obj/machinery/door/airlock/external,
+/turf/open/floor/pod/light,
+/area/shuttle/transport)
+"cih" = (
+/obj/machinery/door/airlock/external,
+/turf/open/floor/pod/dark,
+/area/shuttle/transport)
+
+(1,1,1) = {"
aaa
aaa
aaa
@@ -56089,8 +55692,6 @@ aaa
aaa
aaa
aaa
-"}
-(5,1,1) = {"
aaa
aaa
aaa
@@ -56125,6 +55726,8 @@ aaa
aaa
aaa
aaa
+"}
+(2,1,1) = {"
aaa
aaa
aaa
@@ -56346,8 +55949,6 @@ aaa
aaa
aaa
aaa
-"}
-(6,1,1) = {"
aaa
aaa
aaa
@@ -56382,6 +55983,8 @@ aaa
aaa
aaa
aaa
+"}
+(3,1,1) = {"
aaa
aaa
aaa
@@ -56603,8 +56206,6 @@ aaa
aaa
aaa
aaa
-"}
-(7,1,1) = {"
aaa
aaa
aaa
@@ -56639,6 +56240,8 @@ aaa
aaa
aaa
aaa
+"}
+(4,1,1) = {"
aaa
aaa
aaa
@@ -56860,8 +56463,6 @@ aaa
aaa
aaa
aaa
-"}
-(8,1,1) = {"
aaa
aaa
aaa
@@ -56896,6 +56497,8 @@ aaa
aaa
aaa
aaa
+"}
+(5,1,1) = {"
aaa
aaa
aaa
@@ -57117,8 +56720,6 @@ aaa
aaa
aaa
aaa
-"}
-(9,1,1) = {"
aaa
aaa
aaa
@@ -57153,6 +56754,8 @@ aaa
aaa
aaa
aaa
+"}
+(6,1,1) = {"
aaa
aaa
aaa
@@ -57374,8 +56977,6 @@ aaa
aaa
aaa
aaa
-"}
-(10,1,1) = {"
aaa
aaa
aaa
@@ -57410,6 +57011,8 @@ aaa
aaa
aaa
aaa
+"}
+(7,1,1) = {"
aaa
aaa
aaa
@@ -57631,8 +57234,6 @@ aaa
aaa
aaa
aaa
-"}
-(11,1,1) = {"
aaa
aaa
aaa
@@ -57667,6 +57268,8 @@ aaa
aaa
aaa
aaa
+"}
+(8,1,1) = {"
aaa
aaa
aaa
@@ -57888,8 +57491,6 @@ aaa
aaa
aaa
aaa
-"}
-(12,1,1) = {"
aaa
aaa
aaa
@@ -57924,6 +57525,8 @@ aaa
aaa
aaa
aaa
+"}
+(9,1,1) = {"
aaa
aaa
aaa
@@ -58145,8 +57748,6 @@ aaa
aaa
aaa
aaa
-"}
-(13,1,1) = {"
aaa
aaa
aaa
@@ -58181,6 +57782,8 @@ aaa
aaa
aaa
aaa
+"}
+(10,1,1) = {"
aaa
aaa
aaa
@@ -58402,8 +58005,6 @@ aaa
aaa
aaa
aaa
-"}
-(14,1,1) = {"
aaa
aaa
aaa
@@ -58438,6 +58039,8 @@ aaa
aaa
aaa
aaa
+"}
+(11,1,1) = {"
aaa
aaa
aaa
@@ -58659,8 +58262,6 @@ aaa
aaa
aaa
aaa
-"}
-(15,1,1) = {"
aaa
aaa
aaa
@@ -58695,6 +58296,8 @@ aaa
aaa
aaa
aaa
+"}
+(12,1,1) = {"
aaa
aaa
aaa
@@ -58916,8 +58519,6 @@ aaa
aaa
aaa
aaa
-"}
-(16,1,1) = {"
aaa
aaa
aaa
@@ -58952,6 +58553,8 @@ aaa
aaa
aaa
aaa
+"}
+(13,1,1) = {"
aaa
aaa
aaa
@@ -59173,8 +58776,6 @@ aaa
aaa
aaa
aaa
-"}
-(17,1,1) = {"
aaa
aaa
aaa
@@ -59209,6 +58810,8 @@ aaa
aaa
aaa
aaa
+"}
+(14,1,1) = {"
aaa
aaa
aaa
@@ -59430,8 +59033,6 @@ aaa
aaa
aaa
aaa
-"}
-(18,1,1) = {"
aaa
aaa
aaa
@@ -59466,6 +59067,8 @@ aaa
aaa
aaa
aaa
+"}
+(15,1,1) = {"
aaa
aaa
aaa
@@ -59687,8 +59290,6 @@ aaa
aaa
aaa
aaa
-"}
-(19,1,1) = {"
aaa
aaa
aaa
@@ -59723,6 +59324,8 @@ aaa
aaa
aaa
aaa
+"}
+(16,1,1) = {"
aaa
aaa
aaa
@@ -59944,8 +59547,6 @@ aaa
aaa
aaa
aaa
-"}
-(20,1,1) = {"
aaa
aaa
aaa
@@ -59980,6 +59581,8 @@ aaa
aaa
aaa
aaa
+"}
+(17,1,1) = {"
aaa
aaa
aaa
@@ -60201,8 +59804,6 @@ aaa
aaa
aaa
aaa
-"}
-(21,1,1) = {"
aaa
aaa
aaa
@@ -60237,6 +59838,8 @@ aaa
aaa
aaa
aaa
+"}
+(18,1,1) = {"
aaa
aaa
aaa
@@ -60458,8 +60061,6 @@ aaa
aaa
aaa
aaa
-"}
-(22,1,1) = {"
aaa
aaa
aaa
@@ -60494,6 +60095,8 @@ aaa
aaa
aaa
aaa
+"}
+(19,1,1) = {"
aaa
aaa
aaa
@@ -60715,8 +60318,6 @@ aaa
aaa
aaa
aaa
-"}
-(23,1,1) = {"
aaa
aaa
aaa
@@ -60751,6 +60352,8 @@ aaa
aaa
aaa
aaa
+"}
+(20,1,1) = {"
aaa
aaa
aaa
@@ -60972,8 +60575,6 @@ aaa
aaa
aaa
aaa
-"}
-(24,1,1) = {"
aaa
aaa
aaa
@@ -61008,6 +60609,8 @@ aaa
aaa
aaa
aaa
+"}
+(21,1,1) = {"
aaa
aaa
aaa
@@ -61229,8 +60832,6 @@ aaa
aaa
aaa
aaa
-"}
-(25,1,1) = {"
aaa
aaa
aaa
@@ -61265,6 +60866,8 @@ aaa
aaa
aaa
aaa
+"}
+(22,1,1) = {"
aaa
aaa
aaa
@@ -61486,8 +61089,6 @@ aaa
aaa
aaa
aaa
-"}
-(26,1,1) = {"
aaa
aaa
aaa
@@ -61522,6 +61123,8 @@ aaa
aaa
aaa
aaa
+"}
+(23,1,1) = {"
aaa
aaa
aaa
@@ -61743,8 +61346,6 @@ aaa
aaa
aaa
aaa
-"}
-(27,1,1) = {"
aaa
aaa
aaa
@@ -61779,6 +61380,8 @@ aaa
aaa
aaa
aaa
+"}
+(24,1,1) = {"
aaa
aaa
aaa
@@ -62000,8 +61603,6 @@ aaa
aaa
aaa
aaa
-"}
-(28,1,1) = {"
aaa
aaa
aaa
@@ -62036,6 +61637,8 @@ aaa
aaa
aaa
aaa
+"}
+(25,1,1) = {"
aaa
aaa
aaa
@@ -62066,6 +61669,16 @@ aaa
aaa
aaa
aaa
+cfI
+cfJ
+cfJ
+cfJ
+cfJ
+cgK
+cfJ
+cfJ
+cfJ
+cfX
aaa
aaa
aaa
@@ -62113,6 +61726,11 @@ aaa
aaa
aaa
aaa
+chi
+chi
+chi
+chi
+chi
aaa
aaa
aaa
@@ -62257,8 +61875,6 @@ aaa
aaa
aaa
aaa
-"}
-(29,1,1) = {"
aaa
aaa
aaa
@@ -62278,6 +61894,8 @@ aaa
aaa
aaa
aaa
+"}
+(26,1,1) = {"
aaa
aaa
aaa
@@ -62302,6 +61920,22 @@ aaa
aaa
aaa
aaa
+cfI
+cfJ
+cfJ
+cfJ
+cfJ
+cfJ
+cfJ
+cgs
+cgC
+cgs
+cgt
+cgL
+cgS
+cgW
+cgZ
+chd
aaa
aaa
aaa
@@ -62349,8 +61983,11 @@ aaa
aaa
aaa
aaa
+chi
aaa
+chj
aaa
+chi
aaa
aaa
aaa
@@ -62515,8 +62152,7 @@ aaa
aaa
aaa
"}
-(30,1,1) = {"
-aaa
+(27,1,1) = {"
aaa
aaa
aaa
@@ -62541,6 +62177,22 @@ aaa
aaa
aaa
aaa
+cfJ
+cge
+cge
+cge
+cge
+cge
+cfJ
+cgt
+cgt
+cgt
+cgt
+cgM
+cgt
+cgX
+cgZ
+che
aaa
aaa
aaa
@@ -62588,6 +62240,11 @@ aaa
aaa
aaa
aaa
+chj
+chj
+awf
+chj
+chj
aaa
aaa
aaa
@@ -62751,6 +62408,8 @@ aaa
aaa
aaa
aaa
+"}
+(28,1,1) = {"
aaa
aaa
aaa
@@ -62771,12 +62430,26 @@ aaa
aaa
aaa
aaa
-"}
-(31,1,1) = {"
aaa
aaa
aaa
aaa
+cfJ
+cfN
+cfN
+cfN
+cfN
+cfN
+cfJ
+cgu
+cgt
+cgt
+cgt
+cgN
+cgT
+cgY
+cgZ
+chf
aaa
aaa
aaa
@@ -62815,8 +62488,29 @@ aaa
aaa
aaa
aaa
+chi
+chi
+chi
+chi
+chi
+chi
+chi
+chi
+chi
+chi
aaa
+awg
aaa
+chi
+chi
+chi
+chi
+chi
+chi
+chi
+chi
+chi
+chi
aaa
aaa
aaa
@@ -62971,6 +62665,8 @@ aaa
aaa
aaa
aaa
+"}
+(29,1,1) = {"
aaa
aaa
aaa
@@ -62988,8 +62684,29 @@ aaa
aaa
aaa
aaa
+cfI
+cfJ
+cfJ
+cfJ
+cfX
aaa
aaa
+cfJ
+cfN
+cgg
+cfN
+cfN
+cfN
+cfJ
+cgv
+cgt
+cgt
+cgt
+cgO
+cfJ
+cfJ
+cfJ
+chg
aaa
aaa
aaa
@@ -63028,8 +62745,7 @@ aaa
aaa
aaa
aaa
-"}
-(32,1,1) = {"
+chj
aaa
aaa
aaa
@@ -63040,6 +62756,7 @@ aaa
aaa
aaa
aaa
+awg
aaa
aaa
aaa
@@ -63050,6 +62767,7 @@ aaa
aaa
aaa
aaa
+chj
aaa
aaa
aaa
@@ -63083,16 +62801,6 @@ aaa
aaa
aaa
aaa
-aar
-aas
-aas
-aas
-aas
-aec
-aas
-aas
-aas
-aaY
aaa
aaa
aaa
@@ -63214,6 +62922,8 @@ aaa
aaa
aaa
aaa
+"}
+(30,1,1) = {"
aaa
aaa
aaa
@@ -63231,8 +62941,26 @@ aaa
aaa
aaa
aaa
+cfJ
+cfM
+cfS
+cfU
+cfJ
aaa
aaa
+cfJ
+cgf
+cgh
+cgk
+cfN
+cfN
+cfJ
+cgw
+cgt
+cgt
+cgt
+cgP
+cfJ
aaa
aaa
aaa
@@ -63274,28 +63002,29 @@ aaa
aaa
aaa
aaa
+chi
aaa
+ans
+ans
+ans
+ans
+ans
+ans
+ans
+ans
aaa
+awh
aaa
+ans
+ans
+ans
+ans
+ans
+ans
+ans
+ans
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(33,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+chi
aaa
aaa
aaa
@@ -63334,22 +63063,6 @@ aaa
aaa
aaa
aaa
-aar
-aas
-aas
-aas
-aas
-aas
-aas
-acV
-adn
-acV
-acW
-aed
-aeE
-aeX
-afa
-afv
aaa
aaa
aaa
@@ -63466,6 +63179,8 @@ aaa
aaa
aaa
aaa
+"}
+(31,1,1) = {"
aaa
aaa
aaa
@@ -63483,6 +63198,28 @@ aaa
aaa
aaa
aaa
+cfK
+cfN
+cfN
+cfN
+cfJ
+cfJ
+cfJ
+cfJ
+cfJ
+cfJ
+cfJ
+cgn
+cgp
+cfJ
+cfJ
+cgD
+cgF
+cgH
+cfJ
+cfJ
+cfJ
+cfX
aaa
aaa
aaa
@@ -63522,6 +63259,29 @@ aaa
aaa
aaa
aaa
+chi
+chj
+anv
+aoj
+aoj
+aoj
+aoj
+aoj
+aoj
+aoj
+auT
+chl
+axv
+ayv
+ayv
+ayv
+ayv
+ayv
+ayv
+ayv
+aEn
+chj
+chi
aaa
aaa
aaa
@@ -63542,8 +63302,6 @@ aaa
aaa
aaa
aaa
-"}
-(34,1,1) = {"
aaa
aaa
aaa
@@ -63591,22 +63349,6 @@ aaa
aaa
aaa
aaa
-aas
-abv
-abv
-abv
-abv
-abv
-aas
-acW
-acW
-acW
-acW
-aee
-acW
-aeY
-afa
-afw
aaa
aaa
aaa
@@ -63631,11 +63373,6 @@ aaa
aaa
aaa
aaa
-aac
-aac
-aac
-aac
-aac
aaa
aaa
aaa
@@ -63699,6 +63436,8 @@ aaa
aaa
aaa
aaa
+"}
+(32,1,1) = {"
aaa
aaa
aaa
@@ -63716,6 +63455,28 @@ aaa
aaa
aaa
aaa
+cfK
+cfO
+cfN
+cfN
+cfJ
+cga
+cfN
+cfN
+cfN
+cfN
+cgl
+cfN
+cfN
+cgr
+cfN
+cfN
+cfN
+cfN
+cfN
+cgl
+cgZ
+chd
aaa
aaa
aaa
@@ -63730,6 +63491,16 @@ aaa
aaa
aaa
aaa
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
aaa
aaa
aaa
@@ -63745,10 +63516,29 @@ aaa
aaa
aaa
aaa
+chi
aaa
+anu
+anu
+anu
+anu
+anu
+anu
+anu
+anu
aaa
+awj
aaa
+anw
+anw
+anw
+anw
+anw
+anw
+anw
+anu
aaa
+chi
aaa
aaa
aaa
@@ -63799,8 +63589,6 @@ aaa
aaa
aaa
aaa
-"}
-(35,1,1) = {"
aaa
aaa
aaa
@@ -63848,22 +63636,6 @@ aaa
aaa
aaa
aaa
-aas
-aax
-aax
-aax
-aax
-aax
-aas
-acX
-acW
-acW
-acW
-aef
-aeF
-aeZ
-afa
-afx
aaa
aaa
aaa
@@ -63888,11 +63660,8 @@ aaa
aaa
aaa
aaa
-aac
aaa
-aad
aaa
-aac
aaa
aaa
aaa
@@ -63924,6 +63693,8 @@ aaa
aaa
aaa
aaa
+"}
+(33,1,1) = {"
aaa
aaa
aaa
@@ -63941,6 +63712,28 @@ aaa
aaa
aaa
aaa
+cfK
+cfP
+cfT
+cfN
+cfY
+cfN
+cfN
+cfN
+cfN
+cfN
+cgm
+cfN
+cfN
+cfN
+cfN
+cfN
+cfN
+cfN
+cfN
+cgU
+cgZ
+che
aaa
aaa
aaa
@@ -63949,6 +63742,22 @@ aaa
aaa
aaa
aaa
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
aaa
aaa
aaa
@@ -63964,6 +63773,7 @@ aaa
aaa
aaa
aaa
+chk
aaa
aaa
aaa
@@ -63974,6 +63784,7 @@ aaa
aaa
aaa
aaa
+awj
aaa
aaa
aaa
@@ -63984,6 +63795,7 @@ aaa
aaa
aaa
aaa
+chi
aaa
aaa
aaa
@@ -64056,8 +63868,6 @@ aaa
aaa
aaa
aaa
-"}
-(36,1,1) = {"
aaa
aaa
aaa
@@ -64098,29 +63908,8 @@ aaa
aaa
aaa
aaa
-aar
-aas
-aas
-aas
-aaY
aaa
aaa
-aas
-aax
-abF
-aax
-aax
-aax
-aas
-acY
-acW
-acW
-acW
-aeg
-aas
-aas
-aas
-afM
aaa
aaa
aaa
@@ -64145,11 +63934,6 @@ aaa
aaa
aaa
aaa
-aad
-aad
-axF
-aad
-aad
aaa
aaa
aaa
@@ -64166,6 +63950,8 @@ aaa
aaa
aaa
aaa
+"}
+(34,1,1) = {"
aaa
aaa
aaa
@@ -64183,6 +63969,28 @@ aaa
aaa
aaa
aaa
+cfK
+cfQ
+cfN
+cfV
+cfJ
+cgb
+cgc
+cgc
+cgc
+cgc
+cgl
+cfN
+cfN
+cfN
+cfN
+cfN
+cfN
+cfN
+cfN
+cgl
+cgZ
+chf
aaa
aaa
aaa
@@ -64191,6 +63999,22 @@ aaa
aaa
aaa
aaa
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
aaa
aaa
aaa
@@ -64206,10 +64030,29 @@ aaa
aaa
aaa
aaa
+chi
aaa
+ans
+ans
+ans
+ans
+ans
+ans
+ans
+ans
aaa
+awj
aaa
+ans
+ans
+ans
+ans
+ans
+ans
+ans
+ans
aaa
+chi
aaa
aaa
aaa
@@ -64313,8 +64156,6 @@ aaa
aaa
aaa
aaa
-"}
-(37,1,1) = {"
aaa
aaa
aaa
@@ -64355,26 +64196,7 @@ aaa
aaa
aaa
aaa
-aas
-aaw
-aaH
-aaS
-aas
-abb
aaa
-aas
-abw
-abG
-abR
-aax
-aax
-aas
-acZ
-acW
-acW
-acW
-aeh
-aas
aaa
aaa
aaa
@@ -64385,6 +64207,8 @@ aaa
aaa
aaa
aaa
+"}
+(35,1,1) = {"
aaa
aaa
aaa
@@ -64393,29 +64217,8 @@ aaa
aaa
aaa
aaa
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
aaa
-axG
aaa
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
aaa
aaa
aaa
@@ -64423,6 +64226,28 @@ aaa
aaa
aaa
aaa
+cfK
+cfR
+cfN
+cfN
+cfJ
+cfJ
+cfJ
+cgd
+cfJ
+cfJ
+cfJ
+cgo
+cgl
+cfJ
+cfJ
+cfJ
+cgG
+cgI
+cfJ
+cfJ
+cfJ
+cfZ
aaa
aaa
aaa
@@ -64431,6 +64256,22 @@ aaa
aaa
aaa
aaa
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
aaa
aaa
aaa
@@ -64446,6 +64287,29 @@ aaa
aaa
aaa
aaa
+chi
+chj
+anv
+aoj
+aoj
+aoj
+aoj
+aoj
+aoj
+aoj
+auT
+awj
+axv
+ayv
+ayv
+ayv
+ayv
+ayv
+ayv
+ayv
+aEn
+chj
+chi
aaa
aaa
aaa
@@ -64496,11 +64360,6 @@ aaa
aaa
aaa
aaa
-cgE
-aaQ
-cgG
-aaQ
-cgE
aaa
aaa
aaa
@@ -64570,8 +64429,6 @@ aaa
aaa
aaa
aaa
-"}
-(38,1,1) = {"
aaa
aaa
aaa
@@ -64607,33 +64464,13 @@ aaa
aaa
aaa
aaa
+"}
+(36,1,1) = {"
aaa
aaa
aaa
aaa
aaa
-aat
-aax
-aax
-aax
-aas
-aas
-aas
-aas
-aas
-aas
-aas
-acf
-acv
-aas
-aas
-ado
-ads
-adI
-aas
-aas
-aas
-aaY
aaa
aaa
aaa
@@ -64646,14 +64483,52 @@ aaa
aaa
aaa
aaa
+cfJ
+cfR
+cfN
+cfW
+cfJ
+cfZ
aaa
aaa
aaa
+cfJ
+cfN
+cfN
+cfN
+cfJ
+cgx
+cfN
+cfN
+cfN
+cgQ
+cgV
+cfJ
aaa
-aad
aaa
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
aaa
aaa
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
aaa
aaa
aaa
@@ -64661,7 +64536,6 @@ aaa
aaa
aaa
aaa
-axG
aaa
aaa
aaa
@@ -64670,11 +64544,29 @@ aaa
aaa
aaa
aaa
+chi
aaa
+anu
+anu
+anu
+anu
+anu
+anu
+anu
+anu
aaa
-aad
+awj
aaa
+anw
+anw
+anw
+anw
+anw
+anw
+anw
+anu
aaa
+chi
aaa
aaa
aaa
@@ -64752,23 +64644,6 @@ aaa
aaa
aaa
aaa
-cgE
-cgE
-cgK
-cgL
-cgK
-cgE
-cgE
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
aaa
aaa
aaa
@@ -64827,23 +64702,6 @@ aaa
aaa
aaa
aaa
-"}
-(39,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
aaa
aaa
aaa
@@ -64863,42 +64721,8 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aat
-aay
-aax
-aax
-aas
-abc
-aax
-aax
-aax
-aax
-abS
-aax
-aax
-acI
-aax
-aax
-aax
-aax
-aax
-abS
-afa
-afv
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+"}
+(37,1,1) = {"
aaa
aaa
aaa
@@ -64907,39 +64731,58 @@ aaa
aaa
aaa
aaa
-aac
aaa
-aoS
-aoS
-aoS
-aoS
-aoS
-aoS
-aoS
-aoS
aaa
-axH
aaa
-aoS
-aoS
-aoS
-aoS
-aoS
-aoS
-aoS
-aoS
aaa
-aac
aaa
aaa
aaa
aaa
aaa
+cfL
+cfJ
+cfJ
+cfJ
+cfZ
aaa
aaa
aaa
aaa
+cgi
+cfN
+cfN
+cfN
+cfJ
+cgy
+cfN
+cfN
+cfN
+cgR
+cfJ
+cfJ
+cfJ
+chh
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
aaa
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
aaa
aaa
aaa
@@ -64958,6 +64801,7 @@ aaa
aaa
aaa
aaa
+chi
aaa
aaa
aaa
@@ -64968,6 +64812,7 @@ aaa
aaa
aaa
aaa
+awj
aaa
aaa
aaa
@@ -64978,6 +64823,7 @@ aaa
aaa
aaa
aaa
+chi
aaa
aaa
aaa
@@ -65008,15 +64854,6 @@ aaa
aaa
aaa
aaa
-cgE
-cgE
-cgK
-cgK
-cgL
-cgK
-cgK
-cgE
-cgE
aaa
aaa
aaa
@@ -65067,6 +64904,11 @@ aaa
aaa
aaa
aaa
+ceU
+aaE
+ceW
+aaE
+ceU
aaa
aaa
aaa
@@ -65084,8 +64926,6 @@ aaa
aaa
aaa
aaa
-"}
-(40,1,1) = {"
aaa
aaa
aaa
@@ -65126,28 +64966,6 @@ aaa
aaa
aaa
aaa
-aat
-aaz
-aaI
-aax
-aaZ
-aax
-aax
-aax
-aax
-aax
-abT
-aax
-aax
-aax
-aax
-aax
-aax
-aax
-aax
-aeG
-afa
-afw
aaa
aaa
aaa
@@ -65160,33 +64978,12 @@ aaa
aaa
aaa
aaa
+"}
+(38,1,1) = {"
aaa
aaa
aaa
aaa
-aac
-aad
-aoT
-apI
-apI
-apI
-apI
-apI
-apI
-apI
-aws
-axI
-ayV
-azV
-azV
-azV
-azV
-azV
-azV
-azV
-aFN
-aad
-aac
aaa
aaa
aaa
@@ -65209,6 +65006,42 @@ aaa
aaa
aaa
aaa
+cgj
+cfN
+cfN
+cfN
+cfJ
+cgz
+cfN
+cfN
+cfN
+cfN
+cfN
+cha
+cgZ
+chd
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
aaa
aaa
aaa
@@ -65225,10 +65058,29 @@ aaa
aaa
aaa
aaa
+chi
aaa
+ans
+ans
+ans
+ans
+ans
+ans
+ans
+ans
aaa
+awj
aaa
+ans
+ans
+ans
+ans
+ans
+ans
+ans
+ans
aaa
+chi
aaa
aaa
aaa
@@ -65265,15 +65117,6 @@ aaa
aaa
aaa
aaa
-cgF
-cgK
-cgK
-ajC
-aHi
-aYY
-cgK
-cgK
-bDQ
aaa
aaa
aaa
@@ -65317,6 +65160,13 @@ aaa
aaa
aaa
aaa
+ceU
+ceU
+cfa
+cfb
+cfa
+ceU
+ceU
aaa
aaa
aaa
@@ -65341,8 +65191,6 @@ aaa
aaa
aaa
aaa
-"}
-(41,1,1) = {"
aaa
aaa
aaa
@@ -65383,32 +65231,12 @@ aaa
aaa
aaa
aaa
-aat
-aaA
-aax
-aaT
-aas
-abd
-abg
-abg
-abg
-abg
-abS
-aax
-aax
-aax
-aax
-aax
-aax
-aax
-aax
-abS
-afa
-afx
aaa
aaa
aaa
aaa
+"}
+(39,1,1) = {"
aaa
aaa
aaa
@@ -65421,29 +65249,10 @@ aaa
aaa
aaa
aaa
-aac
aaa
-aoU
-aoU
-aoU
-aoU
-aoU
-aoU
-aoU
-aoU
aaa
-axJ
aaa
-aoW
-aoW
-aoW
-aoW
-aoW
-aoW
-aoW
-aoU
aaa
-aac
aaa
aaa
aaa
@@ -65454,6 +65263,42 @@ aaa
aaa
aaa
aaa
+cfL
+cfJ
+cfJ
+cfJ
+cfJ
+cgA
+cgg
+cfN
+cfN
+cfN
+cfN
+chb
+cgZ
+che
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
aaa
aaa
aaa
@@ -65470,6 +65315,29 @@ aaa
aaa
aaa
aaa
+chi
+chj
+anv
+aoj
+aoj
+aoj
+aoj
+aoj
+aoj
+aoj
+auT
+awj
+axv
+ayv
+ayv
+ayv
+ayv
+ayv
+ayv
+ayv
+aEn
+chj
+chi
aaa
aaa
aaa
@@ -65522,15 +65390,6 @@ aaa
aaa
aaa
aaa
-cgG
-cgL
-cgL
-aks
-aHn
-aZd
-cgL
-cgL
-cgG
aaa
aaa
aaa
@@ -65557,6 +65416,15 @@ aaa
aaa
aaa
aaa
+ceU
+ceU
+cfa
+cfa
+cfb
+cfa
+cfa
+ceU
+ceU
aaa
aaa
aaa
@@ -65598,8 +65466,6 @@ aaa
aaa
aaa
aaa
-"}
-(42,1,1) = {"
aaa
aaa
aaa
@@ -65626,6 +65492,8 @@ aaa
aaa
aaa
aaa
+"}
+(40,1,1) = {"
aaa
aaa
aaa
@@ -65640,28 +65508,6 @@ aaa
aaa
aaa
aaa
-aat
-aaB
-aax
-aax
-aas
-aas
-aas
-abl
-aas
-aas
-aas
-acg
-abS
-aas
-aas
-aas
-adt
-adJ
-aas
-aas
-aas
-aba
aaa
aaa
aaa
@@ -65677,8 +65523,40 @@ aaa
aaa
aaa
aaa
+cgq
+cfJ
+cgB
+cgE
+cfN
+cgJ
+cgJ
+cfN
+chc
+cgZ
+chf
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
aaa
-adf
aaa
aaa
aaa
@@ -65689,18 +65567,35 @@ aaa
aaa
aaa
aaa
-axJ
aaa
aaa
aaa
aaa
aaa
+chi
aaa
+anw
+anw
+anw
+anw
+anw
+anw
+anw
+anu
aaa
+awj
aaa
+anw
+anw
+anw
+anw
+anw
+anw
+anw
+anu
aaa
+chi
aaa
-aac
aaa
aaa
aaa
@@ -65736,7 +65631,6 @@ aaa
aaa
aaa
aaa
-aab
aaa
aaa
aaa
@@ -65779,15 +65673,15 @@ aaa
aaa
aaa
aaa
-cgF
-cgK
-cgK
-akv
-aHF
-aZe
-cgK
-cgK
-bDQ
+ceV
+cfa
+cfa
+aic
+aFH
+aXo
+cfa
+cfa
+bCg
aaa
aaa
aaa
@@ -65856,7 +65750,7 @@ aaa
aaa
aaa
"}
-(43,1,1) = {"
+(41,1,1) = {"
aaa
aaa
aaa
@@ -65887,6 +65781,38 @@ aaa
aaa
aaa
aaa
+cfL
+cfJ
+cfJ
+cfJ
+cfJ
+cgd
+cfJ
+cfJ
+cfJ
+cfZ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
aaa
aaa
aaa
@@ -65897,30 +65823,13 @@ aaa
aaa
aaa
aaa
-aas
-aaB
-aax
-aaU
-aas
-aba
aaa
aaa
aaa
-aas
-aax
-aax
-aax
-aas
-ada
-aax
-aax
-aax
-aei
-aeH
-aas
aaa
aaa
aaa
+chi
aaa
aaa
aaa
@@ -65931,35 +65840,18 @@ aaa
aaa
aaa
aaa
+awj
aaa
aaa
aaa
aaa
-aac
aaa
-aoS
-aoS
-aoS
-aoS
-aoS
-aoS
-aoS
-aoS
aaa
-axJ
aaa
-aoS
-aoS
-aoS
-aoS
-aoS
-aoS
-aoS
-aoS
aaa
-aac
aaa
aaa
+chk
aaa
aaa
aaa
@@ -66036,15 +65928,17 @@ aaa
aaa
aaa
aaa
-cgE
-cgE
-cgK
-cgK
-cgL
-cgK
-cgK
-cgE
-cgE
+aaa
+aaa
+ceW
+cfb
+cfb
+aiS
+aFM
+aXt
+cfb
+cfb
+ceW
aaa
aaa
aaa
@@ -66113,7 +66007,7 @@ aaa
aaa
aaa
"}
-(44,1,1) = {"
+(42,1,1) = {"
aaa
aaa
aaa
@@ -66154,29 +66048,32 @@ aaa
aaa
aaa
aaa
-aau
-aas
-aas
-aas
-aba
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
aaa
aaa
aaa
aaa
-abH
-aax
-aax
-aax
-aas
-adb
-aax
-aax
-aax
-aej
-aas
-aas
-aas
-afN
aaa
aaa
aaa
@@ -66189,33 +66086,29 @@ aaa
aaa
aaa
aaa
+chi
aaa
+ans
+ans
+ans
+ans
+ans
+ans
+ans
+ans
aaa
+awj
aaa
-aac
-aad
-aoV
-apJ
-apJ
-apJ
-apJ
-apJ
-apJ
-apJ
-awt
-axJ
-ayW
-azW
-azW
-azW
-azW
-azW
-azW
-azW
-aFO
-aad
-aac
+ans
+ans
+ans
+ans
+ans
+ans
+ans
+ans
aaa
+chi
aaa
aaa
aaa
@@ -66251,6 +66144,7 @@ aaa
aaa
aaa
aaa
+aab
aaa
aaa
aaa
@@ -66293,14 +66187,16 @@ aaa
aaa
aaa
aaa
+ceV
+cfa
+cfa
+aiV
+aGe
+aXu
+cfa
+cfa
+bCg
aaa
-cgE
-cgE
-cgK
-cgL
-cgK
-cgE
-cgE
aaa
aaa
aaa
@@ -66367,10 +66263,10 @@ aaa
aaa
aaa
aaa
+"}
+(43,1,1) = {"
aaa
aaa
-"}
-(45,1,1) = {"
aaa
aaa
aaa
@@ -66409,9 +66305,27 @@ aaa
aaa
aaa
aaa
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
aaa
aaa
aaa
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
aaa
aaa
aaa
@@ -66420,20 +66334,6 @@ aaa
aaa
aaa
aaa
-abI
-aax
-aax
-aax
-aas
-adc
-aax
-aax
-aax
-aax
-aax
-afb
-afa
-afv
aaa
aaa
aaa
@@ -66443,35 +66343,39 @@ aaa
aaa
aaa
aaa
+chi
+chj
+anv
+aoj
+aoj
+aoj
+aoj
+aoj
+aoj
+aoj
+auT
+awj
+axv
+ayv
+ayv
+ayv
+ayv
+ayv
+ayv
+ayv
+aEn
+chj
+chi
aaa
aaa
aaa
aaa
aaa
aaa
-aac
aaa
-aoU
-aoU
-aoU
-aoU
-aoU
-aoU
-aoU
-aoU
aaa
-axJ
aaa
-aoW
-aoW
-aoW
-aoW
-aoW
-aoW
-aoW
-aoU
aaa
-aac
aaa
aaa
aaa
@@ -66540,6 +66444,15 @@ aaa
aaa
aaa
aaa
+ceU
+ceU
+cfa
+cfa
+cfb
+cfa
+cfa
+ceU
+ceU
aaa
aaa
aaa
@@ -66552,11 +66465,6 @@ aaa
aaa
aaa
aaa
-cgE
-amo
-aHG
-amo
-cgE
aaa
aaa
aaa
@@ -66612,6 +66520,12 @@ aaa
aaa
aaa
aaa
+"}
+(44,1,1) = {"
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -66626,8 +66540,6 @@ aaa
aaa
aaa
aaa
-"}
-(46,1,1) = {"
aaa
aaa
aaa
@@ -66650,9 +66562,29 @@ aaa
aaa
aaa
aaa
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaa
aaa
aaa
aaa
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
aaa
aaa
aaa
@@ -66668,29 +66600,34 @@ aaa
aaa
aaa
aaa
+chi
aaa
+anw
+anw
+anw
+anw
+anw
+anw
+anw
+anu
aaa
+awj
aaa
+anw
+anw
+anw
+anw
+anw
+anw
+anw
+anu
aaa
+chi
aaa
aaa
aaa
aaa
aaa
-aau
-aas
-aas
-aas
-aas
-add
-abF
-aax
-aax
-aax
-aax
-afc
-afa
-afw
aaa
aaa
aaa
@@ -66706,7 +66643,6 @@ aaa
aaa
aaa
aaa
-aac
aaa
aaa
aaa
@@ -66717,7 +66653,6 @@ aaa
aaa
aaa
aaa
-axJ
aaa
aaa
aaa
@@ -66728,7 +66663,6 @@ aaa
aaa
aaa
aaa
-aac
aaa
aaa
aaa
@@ -66768,6 +66702,13 @@ aaa
aaa
aaa
aaa
+ceU
+ceU
+cfa
+cfb
+cfa
+ceU
+ceU
aaa
aaa
aaa
@@ -66796,24 +66737,10 @@ aaa
aaa
aaa
aaa
-aac
-aac
-aac
-adf
-aac
-aac
-aac
-aac
-aac
aaa
aaa
aaa
aaa
-cfc
-cdK
-ceW
-cdK
-cfc
aaa
aaa
aaa
@@ -66850,6 +66777,8 @@ aaa
aaa
aaa
aaa
+"}
+(45,1,1) = {"
aaa
aaa
aaa
@@ -66883,8 +66812,6 @@ aaa
aaa
aaa
aaa
-"}
-(47,1,1) = {"
aaa
aaa
aaa
@@ -66901,6 +66828,20 @@ aaa
aaa
aaa
aaa
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
aaa
aaa
aaa
@@ -66916,38 +66857,32 @@ aaa
aaa
aaa
aaa
+chi
aaa
aaa
aaa
+chj
aaa
aaa
aaa
aaa
aaa
aaa
+awj
aaa
aaa
aaa
aaa
aaa
aaa
+chj
aaa
aaa
aaa
+chj
aaa
aaa
aaa
-acw
-aas
-ade
-adp
-aax
-adK
-adK
-aax
-afd
-afa
-afx
aaa
aaa
aaa
@@ -66963,29 +66898,10 @@ aaa
aaa
aaa
aaa
-aac
aaa
-aoS
-aoS
-aoS
-aoS
-aoS
-aoS
-aoS
-aoS
aaa
-axJ
aaa
-aoS
-aoS
-aoS
-aoS
-aoS
-aoS
-aoS
-aoS
aaa
-aac
aaa
aaa
aaa
@@ -67044,35 +66960,13 @@ aaa
aaa
aaa
aaa
+ceU
+akO
+aGf
+akO
+ceU
aaa
-aac
-aad
-aac
-aac
-aac
-aac
-aac
aaa
-cao
-cba
-cao
-cao
-cao
-cba
-cao
-cba
-cao
-cao
-cao
-cfc
-cfc
-cfc
-cdK
-ceX
-cdK
-cfc
-cfc
-cfc
aaa
aaa
aaa
@@ -67141,7 +67035,7 @@ aaa
aaa
aaa
"}
-(48,1,1) = {"
+(46,1,1) = {"
aaa
aaa
aaa
@@ -67191,20 +67085,24 @@ aaa
aaa
aaa
aaa
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
aaa
aaa
aaa
aaa
-aau
-aas
-aas
-aas
-aas
-abl
-aas
-aas
-aas
-aba
aaa
aaa
aaa
@@ -67216,33 +67114,34 @@ aaa
aaa
aaa
aaa
+chi
+chj
+chi
+chi
+chi
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+chm
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+chi
+chj
+chi
+chi
+chi
+aaa
aaa
aaa
aaa
aaa
-aac
-aad
-aoV
-apJ
-apJ
-apJ
-apJ
-apJ
-apJ
-apJ
-awt
-axJ
-ayW
-azW
-azW
-azW
-azW
-azW
-azW
-azW
-aFO
-aad
-aac
aaa
aaa
aaa
@@ -67302,35 +67201,30 @@ aaa
aaa
aaa
aaa
+aaa
+aaa
+aaa
+aac
+aac
+aac
+acl
+aac
+aac
+aac
+aac
aac
aaa
aaa
-aad
aaa
-cba
-cao
-caI
-caT
-caT
-caT
-caT
-caT
-caT
-caT
-caT
-caT
-caT
-caT
-cfc
-cfc
-cfc
-cdK
-aHT
-cdK
-cfc
-cfc
-cfc
-cfc
+aaa
+cds
+cca
+cdm
+cca
+cds
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -67398,17 +67292,9 @@ aaa
aaa
aaa
"}
-(49,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+(47,1,1) = {"
+aaa
+aaa
aaa
aaa
aaa
@@ -67459,11 +67345,44 @@ aaa
aaa
aaa
aaa
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
aaa
aaa
+awg
aaa
aaa
aaa
@@ -67477,31 +67396,6 @@ aaa
aaa
aaa
aaa
-aac
-aaa
-aoW
-aoW
-aoW
-aoW
-aoW
-aoW
-aoW
-aoU
-aaa
-axJ
-aaa
-aoW
-aoW
-aoW
-aoW
-aoW
-aoW
-aoW
-aoU
-aaa
-aac
-aaa
-aaa
aaa
aaa
aaa
@@ -67560,39 +67454,33 @@ aaa
aaa
aaa
aac
+aad
+aac
+aac
+aac
+aac
+aac
aaa
-cao
-cba
-caI
-caT
-caT
-caT
-caT
-cbb
-cbb
-cbb
-cbR
-cbb
-cbb
-cdg
-cbb
-cbb
-cgq
-cgq
-cch
-cch
-cdK
-ceY
-cdK
-cch
-cfc
-cfc
-cfc
-aaa
-aaa
-aaa
-aaa
-aaa
+bYE
+bZq
+bYE
+bYE
+bYE
+bZq
+bYE
+bZq
+bYE
+bYE
+bYE
+cds
+cds
+cds
+cca
+cdn
+cca
+cds
+cds
+cds
aaa
aaa
aaa
@@ -67654,14 +67542,14 @@ aaa
aaa
aaa
aaa
-"}
-(50,1,1) = {"
aaa
aaa
aaa
aaa
aaa
aaa
+"}
+(48,1,1) = {"
aaa
aaa
aaa
@@ -67715,6 +67603,16 @@ aaa
aaa
aaa
aaa
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
+aaJ
aaa
aaa
aaa
@@ -67734,7 +67632,6 @@ aaa
aaa
aaa
aaa
-aac
aaa
aaa
aaa
@@ -67742,10 +67639,10 @@ aaa
aaa
aaa
aaa
+awg
aaa
aaa
aaa
-axJ
aaa
aaa
aaa
@@ -67756,7 +67653,6 @@ aaa
aaa
aaa
aaa
-adf
aaa
aaa
aaa
@@ -67815,45 +67711,34 @@ aaa
aaa
aaa
aac
-aad
-aac
-cbW
-caT
-caT
-caT
-caT
-cbb
-cbb
-cbb
-cbb
-cbb
-cbb
-cbb
-cbb
-cbb
-cbs
-cbb
-cbb
-cbR
-cgq
-cch
-cgV
-anI
-cct
-aZk
-cch
-cfc
-cfc
-cfc
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
aaa
aaa
+aad
aaa
+bZq
+bYE
+bYY
+bZj
+bZj
+bZj
+bZj
+bZj
+bZj
+bZj
+bZj
+bZj
+bZj
+bZj
+cds
+cds
+cds
+cca
+aGs
+cca
+cds
+cds
+cds
+cds
aaa
aaa
aaa
@@ -67911,8 +67796,6 @@ aaa
aaa
aaa
aaa
-"}
-(51,1,1) = {"
aaa
aaa
aaa
@@ -67922,6 +67805,8 @@ aaa
aaa
aaa
aaa
+"}
+(49,1,1) = {"
aaa
aaa
aaa
@@ -67991,33 +67876,13 @@ aaa
aaa
aaa
aaa
-aac
aaa
-aoS
-aoS
-aoS
-aoS
-aoS
-aoS
-aoS
-aoS
aaa
-axJ
aaa
-aoS
-aoS
-aoS
-aoS
-aoS
-aoS
-aoS
-aoS
aaa
-aac
aaa
aaa
aaa
-aab
aaa
aaa
aaa
@@ -68031,6 +67896,7 @@ aaa
aaa
aaa
aaa
+awg
aaa
aaa
aaa
@@ -68071,36 +67937,7 @@ aaa
aaa
aaa
aaa
-aac
aaa
-cao
-caI
-caT
-cbb
-cbb
-cbb
-cbb
-cbs
-cbb
-cbb
-cbb
-cbb
-cbb
-cbb
-cbb
-cbb
-cbb
-cgc
-cgr
-cgq
-cch
-cgW
-aod
-aIq
-aZn
-cch
-cch
-cch
aaa
aaa
aaa
@@ -68130,7 +67967,35 @@ aaa
aaa
aaa
aaa
+aac
aaa
+bYE
+bZq
+bYY
+bZj
+bZj
+bZj
+bZj
+bZr
+bZr
+bZr
+cah
+bZr
+bZr
+cbw
+bZr
+bZr
+ceG
+ceG
+cax
+cax
+cca
+cdo
+cca
+cax
+cds
+cds
+cds
aaa
aaa
aaa
@@ -68168,8 +68033,6 @@ aaa
aaa
aaa
aaa
-"}
-(52,1,1) = {"
aaa
aaa
aaa
@@ -68199,6 +68062,8 @@ aaa
aaa
aaa
aaa
+"}
+(50,1,1) = {"
aaa
aaa
aaa
@@ -68248,29 +68113,6 @@ aaa
aaa
aaa
aaa
-aac
-aad
-aoV
-apJ
-apJ
-apJ
-apJ
-apJ
-apJ
-apJ
-awt
-axJ
-ayW
-azW
-azW
-azW
-azW
-azW
-azW
-azW
-aFO
-aad
-aac
aaa
aaa
aaa
@@ -68311,6 +68153,7 @@ aaa
aaa
aaa
aaa
+awg
aaa
aaa
aaa
@@ -68328,36 +68171,6 @@ aaa
aaa
aaa
aaa
-adf
-cbW
-caT
-caT
-caT
-cbb
-cbb
-cbb
-cbb
-cbb
-cbb
-cbb
-cbr
-cbb
-cbb
-cbb
-cfd
-cfq
-cbu
-cch
-cch
-cch
-cch
-cch
-apM
-cgl
-cch
-cch
-cch
-bDT
aaa
aaa
aaa
@@ -68409,6 +68222,37 @@ aaa
aaa
aaa
aaa
+aac
+aad
+aac
+cam
+bZj
+bZj
+bZj
+bZj
+bZr
+bZr
+bZr
+bZr
+bZr
+bZr
+bZr
+bZr
+bZr
+bZI
+bZr
+bZr
+cah
+ceG
+cax
+cfl
+ami
+caJ
+aXA
+cax
+cds
+cds
+cds
aaa
aaa
aaa
@@ -68425,8 +68269,6 @@ aaa
aaa
aaa
aaa
-"}
-(53,1,1) = {"
aaa
aaa
aaa
@@ -68477,6 +68319,8 @@ aaa
aaa
aaa
aaa
+"}
+(51,1,1) = {"
aaa
aaa
aaa
@@ -68505,29 +68349,10 @@ aaa
aaa
aaa
aaa
-aac
aaa
-aoW
-aoW
-aoW
-aoW
-aoW
-aoW
-aoW
-aoU
aaa
-axJ
aaa
-aoW
-aoW
-aoW
-aoW
-aoW
-aoW
-aoW
-aoU
aaa
-aac
aaa
aaa
aaa
@@ -68585,36 +68410,7 @@ aaa
aaa
aaa
aaa
-aac
-asa
-caT
-cbb
-cbb
-cbb
-cbD
-ccV
-ccZ
-caT
-ccZ
-caT
-ccX
-ccX
-ccX
-ccX
-cch
-cfr
-cch
-cch
-cgs
-cch
-cgM
-cgX
-arz
-aIr
-aZq
-bhR
-cdK
-bEt
+awg
aaa
aaa
aaa
@@ -68629,6 +68425,7 @@ aaa
aaa
aaa
aaa
+aab
aaa
aaa
aaa
@@ -68682,9 +68479,36 @@ aaa
aaa
aaa
aaa
-"}
-(54,1,1) = {"
+aac
aaa
+bYE
+bYY
+bZj
+bZr
+bZr
+bZr
+bZr
+bZI
+bZr
+bZr
+bZr
+bZr
+bZr
+bZr
+bZr
+bZr
+bZr
+ces
+ceH
+ceG
+cax
+cfm
+amD
+aGP
+aXD
+cax
+cax
+cax
aaa
aaa
aaa
@@ -68752,6 +68576,8 @@ aaa
aaa
aaa
aaa
+"}
+(52,1,1) = {"
aaa
aaa
aaa
@@ -68762,29 +68588,24 @@ aaa
aaa
aaa
aaa
-aac
aaa
aaa
aaa
-aad
aaa
aaa
aaa
aaa
aaa
aaa
-axJ
aaa
aaa
aaa
aaa
aaa
aaa
-aad
aaa
aaa
aaa
-aac
aaa
aaa
aaa
@@ -68842,40 +68663,11 @@ aaa
aaa
aaa
aaa
-aac
-cbW
-caT
-cbb
-cbb
-cbb
-cbb
-ccW
-ccZ
-cdg
-cds
-cdg
-ccX
-cep
-ceF
-ccX
-ceO
-cfs
-cch
-cch
-cch
-cch
-cgN
-cgY
-atk
-ceD
-cct
-cct
-cdK
-cdK
aaa
aaa
aaa
aaa
+awg
aaa
aaa
aaa
@@ -68939,8 +68731,59 @@ aaa
aaa
aaa
aaa
-"}
-(55,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+acl
+cam
+bZj
+bZj
+bZj
+bZr
+bZr
+bZr
+bZr
+bZr
+bZr
+bZr
+bZH
+bZr
+bZr
+bZr
+cdt
+cdG
+bZK
+cax
+cax
+cax
+cax
+cax
+aom
+ceB
+cax
+cax
+cax
+bCj
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -68990,6 +68833,8 @@ aaa
aaa
aaa
aaa
+"}
+(53,1,1) = {"
aaa
aaa
aaa
@@ -69019,29 +68864,18 @@ aaa
aaa
aaa
aaa
-aac
-aad
-aac
-aac
-aac
aaa
aaa
aaa
aaa
aaa
aaa
-axK
aaa
aaa
aaa
aaa
aaa
aaa
-aac
-aac
-aac
-aad
-aac
aaa
aaa
aaa
@@ -69090,6 +68924,7 @@ aaa
aaa
aaa
aaa
+awg
aaa
aaa
aaa
@@ -69100,35 +68935,6 @@ aaa
aaa
aaa
aaa
-asa
-caT
-cbR
-cbb
-cbb
-cbb
-cbb
-ccX
-ccX
-cdt
-ccX
-ccX
-ceq
-ceG
-ccX
-cch
-cft
-cch
-cgd
-cgt
-cch
-cgN
-cgZ
-ccR
-aJQ
-aZt
-bir
-brL
-bEu
aaa
aaa
aaa
@@ -69187,6 +68993,36 @@ aaa
aaa
aaa
aaa
+aac
+aqA
+bZj
+bZr
+bZr
+bZr
+bZT
+cbl
+cbp
+bZj
+cbp
+bZj
+cbn
+cbn
+cbn
+cbn
+cax
+cdH
+cax
+cax
+ceI
+cax
+cfc
+cfn
+apZ
+aGQ
+aXG
+bgh
+cca
+bCJ
aaa
aaa
aaa
@@ -69196,8 +69032,6 @@ aaa
aaa
aaa
aaa
-"}
-(56,1,1) = {"
aaa
aaa
aaa
@@ -69256,6 +69090,8 @@ aaa
aaa
aaa
aaa
+"}
+(54,1,1) = {"
aaa
aaa
aaa
@@ -69287,7 +69123,6 @@ aaa
aaa
aaa
aaa
-axG
aaa
aaa
aaa
@@ -69346,46 +69181,13 @@ aaa
aaa
aaa
aaa
+awg
aaa
aaa
aaa
aaa
aaa
aaa
-aac
-aac
-aac
-aac
-aac
-cbW
-caT
-caT
-cbb
-cbb
-cbb
-cbb
-ccX
-cdh
-cdu
-cdM
-ccX
-cer
-ccX
-ccX
-cfe
-cfu
-cfG
-cge
-cgu
-cch
-cgO
-cgZ
-ccR
-aMx
-aZt
-biu
-brM
-bEu
aaa
aaa
aaa
@@ -69448,13 +69250,41 @@ aaa
aaa
aaa
aaa
+aac
+cam
+bZj
+bZr
+bZr
+bZr
+bZr
+cbm
+cbp
+cbw
+cbI
+cbw
+cbn
+ccF
+ccV
+cbn
+cde
+cdI
+cax
+cax
+cax
+cax
+cfd
+cfo
+arK
+ccT
+caJ
+caJ
+cca
+cca
aaa
aaa
aaa
aaa
aaa
-"}
-(57,1,1) = {"
aaa
aaa
aaa
@@ -69517,6 +69347,8 @@ aaa
aaa
aaa
aaa
+"}
+(55,1,1) = {"
aaa
aaa
aaa
@@ -69544,7 +69376,6 @@ aaa
aaa
aaa
aaa
-axG
aaa
aaa
aaa
@@ -69607,42 +69438,39 @@ aaa
aaa
aaa
aaa
+awg
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aCh
+aCi
+aCi
+aMQ
+aCh
+aCh
+aCi
+aCi
+aCh
+aMQ
+aCh
+aMQ
+aCh
+aCh
+aCh
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
-aac
aaa
aaa
-cba
-cao
-cao
-ccc
-caT
-cbb
-cbb
-cbs
-cbb
-ccX
-cdi
-cdv
-cdN
-cee
-ces
-ceH
-ceP
-cff
-cfv
-cfH
-cge
-cgv
-cch
-cgP
-cha
-atl
-aSm
-cct
-cct
-cdK
-cdK
aaa
aaa
aaa
@@ -69680,6 +69508,49 @@ aaa
aaa
aaa
aaa
+aqA
+bZj
+cah
+bZr
+bZr
+bZr
+bZr
+cbn
+cbn
+cbJ
+cbn
+cbn
+ccG
+ccW
+cbn
+cax
+cdJ
+cax
+cet
+ceJ
+cax
+cfd
+cfp
+cbh
+aIp
+aXJ
+bgH
+bqb
+bCK
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -69710,8 +69581,6 @@ aaa
aaa
aaa
aaa
-"}
-(58,1,1) = {"
aaa
aaa
aaa
@@ -69735,6 +69604,8 @@ aaa
aaa
aaa
aaa
+"}
+(56,1,1) = {"
aaa
aaa
aaa
@@ -69801,7 +69672,6 @@ aaa
aaa
aaa
aaa
-axG
aaa
aaa
aaa
@@ -69825,6 +69695,7 @@ aaa
aaa
aaa
aaa
+awg
aaa
aaa
aaa
@@ -69832,6 +69703,21 @@ aaa
aaa
aaa
aaa
+aCh
+aEp
+aFl
+aFl
+aCi
+aIy
+aJJ
+aJJ
+aJJ
+aIy
+aJJ
+aIy
+aJJ
+aQF
+aRA
aaa
aaa
aaa
@@ -69866,40 +69752,6 @@ aaa
aaa
aaa
aaa
-aad
-cao
-caI
-caT
-caT
-caT
-caT
-caT
-cbb
-cbb
-cbb
-cbb
-ccX
-cdj
-cdw
-cdO
-cef
-cet
-ceI
-ceQ
-cfg
-cfw
-cfI
-cgf
-cgw
-cch
-cch
-cfi
-aye
-cgl
-aZS
-bjm
-cdK
-bEx
aaa
aaa
aaa
@@ -69908,6 +69760,40 @@ aaa
aaa
aaa
aaa
+aac
+aac
+aac
+aac
+aac
+cam
+bZj
+bZj
+bZr
+bZr
+bZr
+bZr
+cbn
+cbx
+cbK
+ccc
+cbn
+ccH
+cbn
+cbn
+cdu
+cdK
+cdW
+ceu
+ceK
+cax
+cfe
+cfp
+cbh
+aKR
+aXJ
+bgK
+bqc
+bCK
aaa
aaa
aaa
@@ -69967,8 +69853,6 @@ aaa
aaa
aaa
aaa
-"}
-(59,1,1) = {"
aaa
aaa
aaa
@@ -69977,6 +69861,8 @@ aaa
aaa
aaa
aaa
+"}
+(57,1,1) = {"
aaa
aaa
aaa
@@ -70058,7 +69944,6 @@ aaa
aaa
aaa
aaa
-axG
aaa
aaa
aaa
@@ -70067,6 +69952,7 @@ aaa
aaa
aaa
aaa
+awg
aaa
aaa
aaa
@@ -70074,6 +69960,21 @@ aaa
aaa
aaa
aaa
+aCh
+bVv
+aFl
+aFl
+bVD
+aDz
+aDz
+aDz
+aDz
+aDz
+aDz
+aDz
+aDz
+aQF
+aRA
aaa
aaa
aaa
@@ -70117,46 +70018,39 @@ aaa
aaa
aaa
aac
-aad
-aac
-aac
-aac
-aac
aaa
-caS
-caT
-caT
-caT
-cbR
-cbb
-cbb
-cbb
-cbb
-cbb
-cbb
-cbD
-ccX
+aaa
+bZq
+bYE
+bYE
+cas
+bZj
+bZr
+bZr
+bZI
+bZr
+cbn
+cby
+cbL
+ccd
+ccu
+ccI
ccX
-cdx
-cdP
-ceg
+cdf
+cdv
+cdL
+cdX
ceu
-ceI
-ceR
-cfh
-cfx
-cfJ
-cgg
-cgx
-cch
-cgQ
-chb
-ceE
-aSs
-cch
-cch
-cch
-bDT
+ceL
+cax
+cff
+cfq
+arL
+aQE
+caJ
+caJ
+cca
+cca
aaa
aaa
aaa
@@ -70225,7 +70119,7 @@ aaa
aaa
aaa
"}
-(60,1,1) = {"
+(58,1,1) = {"
aaa
aaa
aaa
@@ -70315,7 +70209,7 @@ aaa
aaa
aaa
aaa
-axG
+awg
aaa
aaa
aaa
@@ -70323,6 +70217,24 @@ aaa
aaa
aaa
aaa
+aCh
+aEq
+bVz
+aGg
+aCi
+aDz
+aJK
+aJK
+aJK
+aDz
+aDz
+aJO
+aJO
+aQF
+aRA
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -70362,6 +70274,41 @@ aaa
aaa
aaa
aaa
+aad
+bYE
+bYY
+bZj
+bZj
+bZj
+bZj
+bZj
+bZr
+bZr
+bZr
+bZr
+cbn
+cbz
+cbM
+cce
+ccv
+ccJ
+ccY
+cdg
+cdw
+cdM
+cdY
+cev
+ceM
+cax
+cax
+cdy
+awD
+ceB
+aYi
+bhC
+cca
+bCN
+aaa
aaa
aaa
aaa
@@ -70373,48 +70320,8 @@ aaa
aaa
aaa
aaa
-aac
aaa
aaa
-cba
-cao
-cba
-caI
-caT
-caT
-cbb
-cbb
-cbb
-cbb
-cbb
-cbb
-cbb
-cbb
-cbb
-ccX
-ccX
-ccX
-ccX
-cdQ
-ccX
-ccX
-ceI
-cch
-cfi
-cch
-cfK
-cch
-cch
-cch
-cgR
-cgl
-aCl
-aTi
-bas
-bjo
-aCl
-bFm
-bLn
aaa
aaa
aaa
@@ -70468,6 +70375,8 @@ aaa
aaa
aaa
aaa
+"}
+(59,1,1) = {"
aaa
aaa
aaa
@@ -70481,8 +70390,6 @@ aaa
aaa
aaa
aaa
-"}
-(61,1,1) = {"
aaa
aaa
aaa
@@ -70519,7 +70426,6 @@ aaa
aaa
aaa
aaa
-aab
aaa
aaa
aaa
@@ -70559,24 +70465,31 @@ aaa
aaa
aaa
aaa
-aad
-aad
-ahV
-ahU
-ahU
-ahU
-aad
-aad
-aad
aaa
+awg
aaa
aaa
aaa
-axG
aaa
aaa
aaa
aaa
+aCh
+aCh
+aCh
+aCh
+aCh
+aDz
+aJL
+aJL
+aJL
+aDz
+aCh
+aCh
+aCh
+aCh
+aCh
+aCh
aaa
aaa
aaa
@@ -70611,7 +70524,47 @@ aaa
aaa
aaa
aaa
+aac
+aad
+aac
+aac
+aac
+aac
aaa
+bZi
+bZj
+bZj
+bZj
+cah
+bZr
+bZr
+bZr
+bZr
+bZr
+bZr
+bZT
+cbn
+cbn
+cbN
+ccf
+ccw
+ccK
+ccY
+cdh
+cdx
+cdN
+cdZ
+cew
+ceN
+cax
+cfg
+cfr
+ccU
+aQJ
+cax
+cax
+cax
+bCj
aaa
aaa
aaa
@@ -70630,49 +70583,6 @@ aaa
aaa
aaa
aaa
-adf
-aad
-caS
-caT
-caT
-caT
-caT
-caT
-cbD
-cbb
-cbb
-cbb
-cbb
-cbb
-ccg
-cch
-cch
-cch
-ccX
-cda
-cdk
-cdy
-cdR
-ceh
-cev
-ceJ
-ceS
-cfj
-ceS
-cfL
-cgh
-cgy
-ceS
-ceJ
-chc
-aCl
-aUg
-bbb
-bbb
-bsw
-bFn
-cfc
-cfc
aaa
aaa
aaa
@@ -70722,6 +70632,8 @@ aaa
aaa
aaa
aaa
+"}
+(60,1,1) = {"
aaa
aaa
aaa
@@ -70738,8 +70650,6 @@ aaa
aaa
aaa
aaa
-"}
-(62,1,1) = {"
aaa
aaa
aaa
@@ -70813,24 +70723,30 @@ aaa
aaa
aaa
aaa
+awg
aaa
aaa
aaa
-ahV
-ahV
-ahV
-aow
-aoX
-ahU
-ahV
-aad
-aad
-aad
aaa
aaa
-avs
-axL
-avs
+aCh
+aCh
+aCh
+aEr
+aFm
+aGh
+aHe
+aDz
+aDz
+aDz
+aDz
+aDz
+aCh
+aOK
+aIy
+aOK
+aQF
+aRA
aaa
aaa
aaa
@@ -70865,8 +70781,48 @@ aaa
aaa
aaa
aaa
+aac
aaa
aaa
+bZq
+bYE
+bZq
+bYY
+bZj
+bZj
+bZr
+bZr
+bZr
+bZr
+bZr
+bZr
+bZr
+bZr
+bZr
+cbn
+cbn
+cbn
+cbn
+ccg
+cbn
+cbn
+ccY
+cax
+cdy
+cax
+cea
+cax
+cax
+cax
+cfh
+ceB
+aAK
+aRz
+aYI
+bhE
+aAK
+bDC
+bJD
aaa
aaa
aaa
@@ -70887,50 +70843,6 @@ aaa
aaa
aaa
aaa
-aac
-asa
-caT
-caT
-cbb
-cbq
-cbb
-cbb
-cbb
-cbb
-cbb
-cbb
-cbb
-cbb
-cbb
-cch
-ccG
-ccN
-ccY
-cdb
-ccX
-cdz
-cdS
-cei
-cew
-ceK
-ceT
-ceN
-ceT
-cfM
-ceT
-ceT
-ceT
-ceM
-chd
-aCl
-aUm
-bbd
-bkn
-buQ
-bFn
-cfc
-cfc
-cfc
aaa
aaa
aaa
@@ -70977,6 +70889,8 @@ aaa
aaa
aaa
aaa
+"}
+(61,1,1) = {"
aaa
aaa
aaa
@@ -70995,8 +70909,6 @@ aaa
aaa
aaa
aaa
-"}
-(63,1,1) = {"
aaa
aaa
aaa
@@ -71015,6 +70927,7 @@ aaa
aaa
aaa
aaa
+aab
aaa
aaa
aaa
@@ -71054,40 +70967,50 @@ aaa
aaa
aaa
aaa
+aad
+aad
+agv
+agu
+agu
+agu
+aad
+aad
+aad
aaa
aaa
aaa
aaa
+awg
aaa
aaa
aaa
aaa
aaa
+aCi
+aCW
+aDz
+aEs
+aEs
+aCi
+aDz
+aDz
+aJM
+aKK
+aJM
+aDz
+aCi
+aIy
+aIy
+aIy
+aQF
+aRA
aaa
aaa
aaa
-ahU
-ahU
-ahU
-ahV
-ahV
aaa
aaa
-ahV
-anl
-anN
-aox
-aoY
-apK
-ahV
-ahU
-ahU
-ahV
aaa
aaa
-awu
-axM
-avs
aaa
aaa
aaa
@@ -71115,6 +71038,49 @@ aaa
aaa
aaa
aaa
+acl
+aad
+bZi
+bZj
+bZj
+bZj
+bZj
+bZj
+bZT
+bZr
+bZr
+bZr
+bZr
+bZr
+caw
+cax
+cax
+cax
+cbn
+cbq
+cbA
+cbO
+cch
+ccx
+ccL
+ccZ
+cdi
+cdz
+cdi
+ceb
+cex
+ceO
+cdi
+ccZ
+cfs
+aAK
+aSw
+aZr
+aZr
+bqM
+bDD
+cds
+cds
aaa
aaa
aaa
@@ -71142,52 +71108,6 @@ aaa
aaa
aaa
aaa
-cao
-cao
-cao
-caI
-caT
-cbb
-cbb
-cbb
-cbb
-cbb
-cbb
-cbb
-cbb
-cbb
-cbb
-cbb
-cbb
-cch
-ccH
-cch
-cch
-cch
-cch
-cdA
-cch
-cch
-cex
-ceL
-ceU
-ceV
-ceU
-cfN
-ceU
-ceV
-ceU
-ceL
-chd
-aCl
-aVd
-bbe
-bko
-buQ
-bFn
-cfc
-bMf
-bMM
aaa
aaa
aaa
@@ -71226,6 +71146,8 @@ aaa
aaa
aaa
aaa
+"}
+(62,1,1) = {"
aaa
aaa
aaa
@@ -71252,8 +71174,6 @@ aaa
aaa
aaa
aaa
-"}
-(64,1,1) = {"
aaa
aaa
aaa
@@ -71304,12 +71224,43 @@ aaa
aaa
aaa
aaa
+agv
+agv
+agv
+amW
+anx
+agu
+agv
+aad
+aad
+aad
aaa
aaa
+atS
+awk
+atS
aaa
aaa
aaa
aaa
+aCi
+aCX
+aDA
+aDz
+aDz
+aGi
+aDz
+aDz
+aJN
+aKL
+aLL
+aDz
+aNC
+aIy
+aIy
+aIy
+aQF
+aRA
aaa
aaa
aaa
@@ -71323,29 +71274,7 @@ aaa
aaa
aaa
aaa
-ahU
-aiv
-aiW
-ajE
-ahV
-ahU
-ahU
-ahV
-aiY
-ahV
-aoy
-aiY
-aiY
-anN
-aiY
-aiY
-ahV
aaa
-avs
-avs
-axN
-avs
-avs
aaa
aaa
aaa
@@ -71366,6 +71295,50 @@ aaa
aaa
aaa
aaa
+aac
+aqA
+bZj
+bZj
+bZr
+bZG
+bZr
+bZr
+bZr
+bZr
+bZr
+bZr
+bZr
+bZr
+bZr
+cax
+caW
+cbd
+cbo
+cbr
+cbn
+cbP
+cci
+ccy
+ccM
+cda
+cdj
+cdd
+cdj
+cec
+cdj
+cdj
+cdj
+cdc
+cft
+aAK
+aSC
+aZt
+biD
+btg
+bDD
+cds
+cds
+cds
aaa
aaa
aaa
@@ -71399,54 +71372,6 @@ aaa
aaa
aaa
aaa
-cap
-cap
-caB
-caJ
-caJ
-cbc
-cbb
-cbr
-cbb
-cbr
-cbb
-cbr
-cbb
-cbr
-cbb
-cbr
-cch
-cch
-ccI
-ccO
-ccI
-ccS
-cdl
-cdB
-cdT
-cch
-cey
-ceL
-ceV
-cfk
-cfy
-cfO
-cgi
-cgz
-ceV
-ceL
-che
-aCz
-aVe
-bbD
-bkp
-buQ
-bFn
-cfc
-cfc
-cfc
-cfc
-cfc
aaa
aaa
aaa
@@ -71478,6 +71403,8 @@ aaa
aaa
aaa
aaa
+"}
+(63,1,1) = {"
aaa
aaa
aaa
@@ -71509,8 +71436,6 @@ aaa
aaa
aaa
aaa
-"}
-(65,1,1) = {"
aaa
aaa
aaa
@@ -71549,14 +71474,50 @@ aaa
aaa
aaa
aaa
+agu
+agu
+agu
+agv
+agv
aaa
aaa
+agv
+alL
+amn
+amX
+any
+aok
+agv
+agu
+agu
+agv
aaa
aaa
+auU
+awl
+atS
aaa
aaa
aaa
aaa
+aCi
+aCY
+aDz
+aEt
+aEt
+aCi
+aDz
+aDz
+aJM
+aKM
+aJM
+aDz
+aCi
+aIy
+aJJ
+aJJ
+aQF
+aRA
aaa
aaa
aaa
@@ -71580,49 +71541,61 @@ aaa
aaa
aaa
aaa
-ahU
-aiw
-aiX
-aiY
-akx
-aiY
-aiY
-amB
-aiY
-ahV
-ahV
-ahV
-ahV
-ahV
-ahV
-aiY
-ahV
-ahV
-avt
-awv
-axO
-ayX
-avt
aaa
aaa
aaa
aaa
aaa
-aDI
-aDJ
-aDJ
-aOx
-aDI
-aDI
-aDJ
-aDJ
-aDI
-aOx
-aDI
-aOx
-aDI
-aDI
-aDI
+aaa
+aaa
+aaa
+aaa
+bYE
+bYE
+bYE
+bYY
+bZj
+bZr
+bZr
+bZr
+bZr
+bZr
+bZr
+bZr
+bZr
+bZr
+bZr
+bZr
+bZr
+cax
+caX
+cax
+cax
+cax
+cax
+cbQ
+cax
+cax
+ccN
+cdb
+cdk
+cdl
+cdk
+ced
+cdk
+cdl
+cdk
+cdb
+cft
+aAK
+aTt
+aZu
+biE
+btg
+bDD
+cds
+bKv
+bLc
aaa
aaa
aaa
@@ -71655,56 +71628,6 @@ aaa
aaa
aaa
aaa
-caj
-caq
-cat
-caq
-caK
-caU
-cbc
-cbc
-cbs
-cbb
-cbb
-cbb
-cbs
-cbb
-cbb
-cbb
-cbs
-cch
-ccr
-ccJ
-ccP
-ccJ
-cdc
-cdm
-cdC
-cdU
-cch
-cez
-ceL
-ceU
-cfl
-cfz
-cfz
-cfz
-cgA
-ceU
-cgS
-chf
-aDx
-aVz
-bca
-bca
-bvo
-bFp
-cfc
-cfc
-cfc
-cfc
-cfc
-cfc
aaa
aaa
aaa
@@ -71737,6 +71660,8 @@ aaa
aaa
aaa
aaa
+"}
+(64,1,1) = {"
aaa
aaa
aaa
@@ -71766,8 +71691,6 @@ aaa
aaa
aaa
aaa
-"}
-(66,1,1) = {"
aaa
aaa
aaa
@@ -71808,10 +71731,50 @@ aaa
aaa
aaa
aaa
+agu
+agV
+ahw
+aie
+agv
+agu
+agu
+agv
+ahy
+agv
+amY
+ahy
+ahy
+amn
+ahy
+ahy
+agv
aaa
+atS
+atS
+awm
+atS
+atS
aaa
aaa
aaa
+aCh
+aCh
+aCh
+aEu
+aFn
+aGh
+aHe
+aDz
+aDz
+aDz
+aDz
+aDz
+aCh
+aOL
+aPC
+aQG
+aQF
+aRA
aaa
aaa
aaa
@@ -71837,49 +71800,65 @@ aaa
aaa
aaa
aaa
-ahV
-aix
-aiY
-ajF
-ahV
-ahU
-ahU
-ahV
-amC
-anO
-anO
-anO
-anO
-aqH
-anO
-anO
-anO
-auz
-avt
-aww
-axP
-ayY
-avt
aaa
aaa
aaa
aaa
aaa
-aDI
-aFQ
-aGM
-aGM
-aDJ
-aJZ
-aLl
-aLl
-aLl
-aJZ
-aLl
-aJZ
-aLl
-aSn
-aTj
+aaa
+aaa
+bYF
+bYF
+bYR
+bYZ
+bYZ
+bZs
+bZr
+bZH
+bZr
+bZH
+bZr
+bZH
+bZr
+bZH
+bZr
+bZH
+cax
+cax
+caY
+cbe
+caY
+cbi
+cbB
+cbR
+ccj
+cax
+ccO
+cdb
+cdl
+cdA
+cdO
+cee
+cey
+ceP
+cdl
+cdb
+cfu
+aAY
+aTu
+aZT
+biF
+btg
+bDD
+cds
+cds
+cds
+cds
+cds
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -71913,55 +71892,6 @@ aaa
aaa
aaa
aaa
-cap
-cau
-caC
-caL
-caV
-cbd
-cbl
-cbt
-cbt
-cbt
-cbt
-cbt
-cbt
-cbt
-cbt
-cbt
-cci
-ccs
-ccs
-ccQ
-ccQ
-ccQ
-cdn
-cdD
-cdV
-cej
-ceA
-ceM
-ceV
-cfm
-cfz
-cfP
-cfz
-cgB
-ceV
-ceL
-chg
-aCl
-aVA
-bdi
-bkq
-bzJ
-aCl
-cfc
-cfc
-cfc
-cfc
-cfc
-cfc
aaa
aaa
aaa
@@ -71987,6 +71917,8 @@ aaa
aaa
aaa
aaa
+"}
+(65,1,1) = {"
aaa
aaa
aaa
@@ -72023,8 +71955,6 @@ aaa
aaa
aaa
aaa
-"}
-(67,1,1) = {"
aaa
aaa
aaa
@@ -72058,9 +71988,50 @@ aaa
aaa
aaa
aaa
+agu
+agW
+ahx
+ahy
+aiX
+ahy
+ahy
+alb
+ahy
+agv
+agv
+agv
+agv
+agv
+agv
+ahy
+agv
+agv
+atT
+auV
+awn
+axw
+atT
aaa
aaa
aaa
+chn
+chn
+aCh
+aCh
+aCh
+aCh
+aCh
+aDz
+aJK
+aJK
+aJK
+aDz
+aCh
+aCh
+aCh
+aCh
+aCh
+aCh
aaa
aaa
aaa
@@ -72092,51 +72063,65 @@ aaa
aaa
aaa
aaa
+bYz
+bYG
+bYJ
+bYG
+bZa
+bZk
+bZs
+bZs
+bZI
+bZr
+bZr
+bZr
+bZI
+bZr
+bZr
+bZr
+bZI
+cax
+caH
+caZ
+cbf
+caZ
+cbs
+cbC
+cbS
+cck
+cax
+ccP
+cdb
+cdk
+cdB
+cdP
+cdP
+cdP
+ceQ
+cdk
+cfi
+cfv
+aBW
+aTP
+baq
+baq
+btE
+bDF
+cds
+cds
+cds
+cds
+cds
+cds
aaa
aaa
-ahU
-aiy
-aiZ
-ajG
-ahV
aaa
aaa
-ahV
-anm
-aiY
-ahV
-ahV
-ahU
-aqI
-ahV
-ahU
-ahV
-anm
-avt
-awx
-axQ
-ayZ
-avt
aaa
aaa
aaa
aaa
aaa
-aDI
-bXf
-aGM
-aGM
-bXn
-aFa
-aFa
-aFa
-aFa
-aFa
-aFa
-aFa
-aFa
-aSn
-aTj
aaa
aaa
aaa
@@ -72170,55 +72155,6 @@ aaa
aaa
aaa
aaa
-car
-cav
-caD
-caM
-caW
-cbe
-cbm
-cbu
-cbu
-cbu
-cbu
-cbu
-cbu
-cbu
-cbu
-cbu
-ccj
-cct
-cct
-ccR
-ccR
-ccR
-cdo
-cdE
-cdW
-cek
-ceB
-ceL
-ceV
-cfn
-ccU
-cfQ
-cfz
-cfm
-ceV
-ceL
-chg
-aEZ
-aEZ
-aEZ
-aEZ
-aEZ
-aEZ
-aEZ
-aEZ
-cfc
-cfc
-cfc
-cfc
aaa
aaa
aaa
@@ -72238,6 +72174,8 @@ aaa
aaa
aaa
aaa
+"}
+(66,1,1) = {"
aaa
aaa
aaa
@@ -72280,8 +72218,78 @@ aaa
aaa
aaa
aaa
-"}
-(68,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+agv
+agX
+ahy
+aif
+agv
+agu
+agu
+agv
+alc
+amo
+amo
+amo
+amo
+aph
+amo
+amo
+amo
+asZ
+atT
+auW
+awo
+axx
+atT
+aaa
+aaa
+aaa
+aaa
+aaa
+aCh
+aEv
+aFo
+aGj
+aCi
+aDz
+aJL
+aJL
+aJL
+aDz
+aDz
+aJJ
+aJJ
+aQF
+aRA
+aaa
+aaa
aaa
aaa
aaa
@@ -72313,6 +72321,55 @@ aaa
aaa
aaa
aaa
+bYF
+bYK
+bYS
+bZb
+bZl
+bZt
+bZB
+bZJ
+bZJ
+bZJ
+bZJ
+bZJ
+bZJ
+bZJ
+bZJ
+bZJ
+cay
+caI
+caI
+cbg
+cbg
+cbg
+cbD
+cbT
+ccl
+ccz
+ccQ
+cdc
+cdl
+cdC
+cdP
+cef
+cdP
+ceR
+cdl
+cdb
+cfw
+aAK
+aTQ
+bby
+biG
+bxZ
+aAK
+cds
+cds
+cds
+cds
+cds
+cds
aaa
aaa
aaa
@@ -72351,49 +72408,10 @@ aaa
aaa
aaa
aaa
-ahV
-ahV
-ahV
-ahV
-ahV
-ahV
-ahV
-ahV
-anm
-aiY
-ahV
-aoZ
-apL
-aqJ
-arF
-asw
-ahV
-anm
-avt
-avt
-axR
-avt
-avt
-ahV
aaa
aaa
aaa
aaa
-aDI
-aFR
-bXj
-aHH
-aDJ
-aFa
-aLm
-aLm
-aLm
-aFa
-aFa
-aLq
-aLq
-aSn
-aTj
aaa
aaa
aaa
@@ -72413,6 +72431,13 @@ aaa
aaa
aaa
aaa
+"}
+(67,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -72427,55 +72452,6 @@ aaa
aaa
aaa
aaa
-asa
-cap
-caE
-caN
-caX
-cbc
-cbc
-cbs
-cbb
-cbb
-cbb
-cbs
-cbb
-cbb
-cbb
-cbs
-cch
-ccu
-ccI
-ccS
-ccI
-cdd
-cdp
-cdF
-cdX
-cch
-cez
-ceL
-ceU
-cfo
-cfA
-cfz
-cfz
-cgC
-ceU
-ceL
-chh
-aEZ
-aVB
-bgd
-bkt
-bAB
-bGc
-bLo
-aEZ
-aEZ
-cfc
-cfc
-cfc
aaa
aaa
aaa
@@ -72526,19 +72502,55 @@ aaa
aaa
aaa
aaa
+agu
+agY
+ahz
+aig
+agv
+aaa
+aaa
+agv
+alM
+ahy
+agv
+agv
+agu
+api
+agv
+agu
+agv
+alM
+atT
+auX
+awp
+axy
+atT
aaa
aaa
aaa
aaa
aaa
+aCh
+aEv
+aFp
+aFp
+aHd
+aDz
+aDz
+aDz
+aDz
+aDz
+aDz
+aDz
+aDz
+aQF
+aRA
aaa
aaa
aaa
aaa
aaa
aaa
-"}
-(69,1,1) = {"
aaa
aaa
aaa
@@ -72566,6 +72578,55 @@ aaa
aaa
aaa
aaa
+bYH
+bYL
+bYT
+bZc
+bZm
+bZu
+bZC
+bZK
+bZK
+bZK
+bZK
+bZK
+bZK
+bZK
+bZK
+bZK
+caz
+caJ
+caJ
+cbh
+cbh
+cbh
+cbE
+cbU
+ccm
+ccA
+ccR
+cdb
+cdl
+cdD
+cbk
+ceg
+cdP
+cdC
+cdl
+cdb
+cfw
+aDy
+aDy
+aDy
+aDy
+aDy
+aDy
+aDy
+aDy
+cds
+cds
+cds
+cds
aaa
aaa
aaa
@@ -72609,49 +72670,10 @@ aaa
aaa
aaa
aaa
-ahV
-aja
-ajH
-aky
-alm
-ahV
-amC
-ann
-anN
-ahU
-apa
-aiY
-aqK
-arG
-asx
-ahV
-auA
-anO
-anO
-axS
-anN
-azX
-ahV
aaa
aaa
aaa
aaa
-aDI
-aDI
-aDI
-aDI
-aDI
-aFa
-aLn
-aLn
-aLn
-aFa
-aDI
-aDI
-aDI
-aDI
-aDI
-aDI
aaa
aaa
aaa
@@ -72666,14 +72688,13 @@ aaa
aaa
aaa
aaa
+"}
+(68,1,1) = {"
aaa
aaa
aaa
aaa
aaa
-blI
-bow
-blI
aaa
aaa
aaa
@@ -72684,56 +72705,6 @@ aaa
aaa
aaa
aaa
-asa
-cap
-cap
-caJ
-caJ
-cbc
-cbb
-cbr
-cbb
-cbr
-cbb
-cbr
-cbb
-cbr
-cbb
-ccd
-cch
-cch
-ccK
-ccT
-ccJ
-cde
-cdq
-cdG
-cdY
-cch
-ceC
-ceL
-ceV
-cfp
-cfB
-cfz
-cgj
-cfk
-ceV
-ceL
-chi
-aFP
-aWD
-aWD
-blN
-bAP
-bAP
-bLp
-bMg
-aEZ
-cfc
-cfc
-cfc
-cfc
aaa
aaa
aaa
@@ -72788,14 +72759,51 @@ aaa
aaa
aaa
aaa
+agv
+agv
+agv
+agv
+agv
+agv
+agv
+agv
+alM
+ahy
+agv
+anz
+aol
+apj
+aqf
+aqW
+agv
+alM
+atT
+atT
+awq
+atT
+atT
+agv
aaa
aaa
aaa
aaa
+aCh
+aEv
+aFp
+aFp
+aCi
+aIy
+aJO
+aJO
+aJO
+aIy
+aJO
+aIy
+aJO
+aQF
+aRA
aaa
aaa
-"}
-(70,1,1) = {"
aaa
aaa
aaa
@@ -72815,6 +72823,7 @@ aaa
aaa
aaa
aaa
+bjY
aaa
aaa
aaa
@@ -72826,6 +72835,55 @@ aaa
aaa
aaa
aaa
+aqA
+bYF
+bYU
+bZd
+bZn
+bZs
+bZs
+bZI
+bZr
+bZr
+bZr
+bZI
+bZr
+bZr
+bZr
+bZI
+cax
+caK
+caY
+cbi
+caY
+cbt
+cbF
+cbV
+ccn
+cax
+ccP
+cdb
+cdk
+cdE
+cdQ
+cdP
+cdP
+ceS
+cdk
+cdb
+cfx
+aDy
+aTR
+bet
+biJ
+byR
+bEs
+bJE
+aDy
+aDy
+cds
+cds
+cds
aaa
aaa
aaa
@@ -72862,53 +72920,8 @@ aaa
aaa
aaa
aaa
-afy
-agZ
-bWa
-afy
-afy
-ajb
-ajI
-akz
-aln
-alV
-amD
-ahV
-anP
-ahV
-apb
-apN
-aqL
-arF
-asy
-ahV
-auB
-aiY
-aiY
-anm
-aiY
-azY
-ahV
aaa
aaa
-aDI
-aDI
-aDI
-aFS
-aGN
-aHI
-aIF
-aFa
-aFa
-aFa
-aFa
-aFa
-aDI
-aQr
-aJZ
-aQr
-aSn
-aTj
aaa
aaa
aaa
@@ -72916,10 +72929,6 @@ aaa
aaa
aaa
aaa
-baG
-bYL
-bYL
-baG
aaa
aaa
aaa
@@ -72927,11 +72936,6 @@ aaa
aaa
aaa
aaa
-blI
-bnc
-bnd
-bnc
-blI
aaa
aaa
aaa
@@ -72941,56 +72945,9 @@ aaa
aaa
aaa
aaa
+"}
+(69,1,1) = {"
aaa
-caw
-caF
-caO
-caT
-cbb
-cbb
-cbb
-cbb
-cbb
-cbb
-cbb
-cbb
-cbb
-cbb
-cbb
-cbb
-cch
-cch
-cch
-cch
-cch
-cch
-cdH
-cch
-cch
-ceD
-ceL
-ceU
-ceV
-ceU
-cfR
-ceU
-ceV
-ceU
-cgT
-chj
-aHc
-aXw
-bho
-blO
-bho
-bGj
-bAP
-bMh
-aEZ
-cfc
-cfc
-cfc
-cfc
aaa
aaa
aaa
@@ -73051,8 +73008,6 @@ aaa
aaa
aaa
aaa
-"}
-(71,1,1) = {"
aaa
aaa
aaa
@@ -73062,10 +73017,48 @@ aaa
aaa
aaa
aaa
+agv
+ahA
+aih
+aiY
+ajM
+agv
+alc
+alN
+amn
+agu
+anA
+ahy
+apk
+aqg
+aqX
+agv
+ata
+amo
+amo
+awr
+amn
+ayw
+agv
aaa
aaa
aaa
aaa
+aCh
+aCi
+aCi
+aGk
+aCh
+aCh
+aCi
+aCi
+aCh
+aMQ
+aCh
+aOM
+aCh
+aCh
+aCh
aaa
aaa
aaa
@@ -73086,6 +73079,9 @@ aaa
aaa
aaa
aaa
+bjY
+bmM
+bjY
aaa
aaa
aaa
@@ -73096,6 +73092,58 @@ aaa
aaa
aaa
aaa
+aqA
+bYF
+bYF
+bYZ
+bYZ
+bZs
+bZr
+bZH
+bZr
+bZH
+bZr
+bZH
+bZr
+bZH
+bZr
+cat
+cax
+cax
+cba
+cbj
+caZ
+cbu
+cbG
+cbW
+cco
+cax
+ccS
+cdb
+cdl
+cdF
+cdR
+cdP
+cez
+cdA
+cdl
+cdb
+cfy
+aEo
+aUT
+aUT
+bkd
+bzf
+bzf
+bJF
+bKw
+aDy
+cds
+cds
+cds
+cds
+aaa
+aaa
aaa
aaa
aaa
@@ -73119,53 +73167,8 @@ aaa
aaa
aaa
aaa
-afy
-aha
-ahw
-ahW
-afy
-ajb
-ajJ
-akA
-alo
-ahV
-amE
-ahV
-anQ
-ahV
-ahV
-ahU
-ahU
-ahV
-ahU
-ahV
-ahV
-ahV
-awy
-bWB
-bWE
-aiY
-ahU
aaa
aaa
-aDJ
-aEx
-aFa
-aFT
-aFT
-aDJ
-aFa
-aFa
-aLo
-aMo
-aLo
-aFa
-aDJ
-aJZ
-aJZ
-aJZ
-aSn
-aTj
aaa
aaa
aaa
@@ -73173,10 +73176,6 @@ aaa
aaa
aaa
aaa
-baG
-bbC
-bbC
-baG
aaa
aaa
aaa
@@ -73184,11 +73183,6 @@ aaa
aaa
aaa
aaa
-blJ
-bnd
-bnd
-bpJ
-blJ
aaa
aaa
aaa
@@ -73200,54 +73194,6 @@ aaa
aaa
aaa
aaa
-aac
-asa
-caT
-caT
-cbb
-cbv
-cbb
-cbb
-cbb
-cbD
-cbb
-cbb
-cbb
-cbb
-cbb
-cbb
-cbb
-cbR
-cbb
-cbs
-cch
-cdI
-cdV
-cel
-ceA
-ceN
-ceT
-ceT
-ceT
-cfS
-ceT
-ceT
-ceT
-ceM
-ceD
-aEZ
-aYl
-bhp
-blP
-bCs
-bIk
-bLq
-aEZ
-aEZ
-cfc
-cfc
-cfc
-cfc
aaa
aaa
aaa
@@ -73256,6 +73202,12 @@ aaa
aaa
aaa
aaa
+"}
+(70,1,1) = {"
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -73308,8 +73260,6 @@ aaa
aaa
aaa
aaa
-"}
-(72,1,1) = {"
aaa
aaa
aaa
@@ -73320,8 +73270,50 @@ aaa
aaa
aaa
aaa
+aea
+afz
+bUq
+aea
+aea
+ahB
+aii
+aiZ
+ajN
+akv
+ald
+agv
+amp
+agv
+anB
+aon
+apl
+aqf
+aqY
+agv
+atb
+ahy
+ahy
+alM
+ahy
+ayx
+agv
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aHf
+aGl
+aHf
+aaa
aaa
aaa
+aHf
+aGl
+aHf
+aGl
+aHf
aaa
aaa
aaa
@@ -73332,6 +73324,10 @@ aaa
aaa
aaa
aaa
+aYW
+bXb
+bXb
+aYW
aaa
aaa
aaa
@@ -73340,6 +73336,9 @@ aaa
aaa
aaa
aaa
+bls
+blt
+cif
aaa
aaa
aaa
@@ -73351,6 +73350,55 @@ aaa
aaa
aaa
aaa
+bYM
+bYV
+bZe
+bZj
+bZr
+bZr
+bZr
+bZr
+bZr
+bZr
+bZr
+bZr
+bZr
+bZr
+bZr
+bZr
+cax
+cax
+cax
+cax
+cax
+cax
+cbX
+cax
+cax
+ccT
+cdb
+cdk
+cdl
+cdk
+ceh
+cdk
+cdl
+cdk
+cfj
+cfz
+aFB
+aVM
+bfE
+bke
+bfE
+bEz
+bzf
+bKx
+aDy
+cds
+cds
+cds
+cds
aaa
aaa
aaa
@@ -73371,25 +73419,6 @@ aaa
aaa
aaa
aaa
-afy
-afO
-afO
-afO
-afy
-afy
-ahb
-ahx
-ahX
-afy
-ajc
-ajc
-ajc
-ajc
-ajc
-amE
-ahV
-ahV
-ahV
aaa
aaa
aaa
@@ -73397,55 +73426,12 @@ aaa
aaa
aaa
aaa
-ahV
-ahV
-bWC
-bWF
-bWI
-ahU
aaa
aaa
-aDJ
-aEy
-aFb
-aFa
-aFa
-aHJ
-aFa
-aFa
-aLp
-aMp
-aNr
-aFa
-aPj
-aJZ
-aJZ
-aJZ
-aSn
-aTj
-aVb
-aVb
-aVb
-aVb
aaa
aaa
-baG
-baG
-bYM
-bYM
-baG
-baG
aaa
aaa
-aVb
-aVb
-aVb
-aVb
-blJ
-bne
-bnd
-bpJ
-blJ
aaa
aaa
aaa
@@ -73457,54 +73443,7 @@ aaa
aaa
aaa
aaa
-aac
aaa
-caF
-caT
-caT
-caT
-caT
-caT
-cbb
-cbb
-cbb
-cbb
-cbb
-cbb
-cbb
-cbb
-cbb
-cbb
-cbb
-cbu
-cdr
-cct
-cdZ
-cem
-ceE
-cdW
-cdW
-ccn
-cdW
-cfT
-cgk
-cgD
-cdW
-cfT
-ceB
-aEZ
-aEZ
-bhq
-bnu
-bCQ
-bnu
-bLw
-aEZ
-cfc
-cfc
-cfc
-cfc
-cfc
aaa
aaa
aaa
@@ -73520,6 +73459,8 @@ aaa
aaa
aaa
aaa
+"}
+(71,1,1) = {"
aaa
aaa
aaa
@@ -73565,8 +73506,6 @@ aaa
aaa
aaa
aaa
-"}
-(73,1,1) = {"
aaa
aaa
aaa
@@ -73588,15 +73527,50 @@ aaa
aaa
aaa
aaa
+aea
+afA
+afW
+agw
+aea
+ahB
+aij
+aja
+ajO
+agv
+ale
+agv
+amq
+agv
+agv
+agu
+agu
+agv
+agu
+agv
+agv
+agv
+auY
+bUR
+bUU
+ahy
+agu
aaa
aaa
aaa
aaa
aaa
aaa
+aHf
+aGm
+aHf
aaa
aaa
aaa
+aHf
+aGm
+aHf
+aGm
+aHf
aaa
aaa
aaa
@@ -73607,6 +73581,10 @@ aaa
aaa
aaa
aaa
+aYW
+aZS
+aZS
+aYW
aaa
aaa
aaa
@@ -73615,6 +73593,9 @@ aaa
aaa
aaa
aaa
+bjZ
+blt
+bjZ
aaa
aaa
aaa
@@ -73627,82 +73608,57 @@ aaa
aaa
aaa
aaa
+aac
+aqA
+bZj
+bZj
+bZr
+bZL
+bZr
+bZr
+bZr
+bZT
+bZr
+bZr
+bZr
+bZr
+bZr
+bZr
+bZr
+cah
+bZr
+bZI
+cax
+cbY
+ccl
+ccB
+ccQ
+cdd
+cdj
+cdj
+cdj
+cei
+cdj
+cdj
+cdj
+cdc
+ccT
+aDy
+aWB
+bfF
+bkf
+bAI
+bGA
+bJG
+aDy
+aDy
+cds
+cds
+cds
+cds
aaa
-afz
-afP
-agb
-agl
-agA
-agQ
-ahc
-ahy
-ahY
-aiz
-ajc
-ajK
-akB
-alp
-alW
-amF
-ano
-ahV
-aoz
-aoz
-aoA
-aoz
-aoz
-aoA
-aoz
-aoz
-aoz
-ahV
-axU
-bWF
-aiY
-ahU
aaa
aaa
-aDJ
-aEz
-aFa
-aFU
-aFU
-aDJ
-aFa
-aFa
-aLo
-aMq
-aLo
-aFa
-aDJ
-aJZ
-aLl
-aLl
-aSn
-aTj
-aVb
-aVR
-aWV
-aVb
-aYS
-aVb
-baG
-bbB
-bbC
-bbC
-bdz
-baG
-aVb
-aVb
-aVb
-aWV
-bjj
-aVb
-blK
-bnf
-bnd
-bpK
-blK
aaa
aaa
aaa
@@ -73714,54 +73670,7 @@ aaa
aaa
aaa
aaa
-aac
aaa
-aad
-caw
-caw
-caF
-caO
-caT
-caT
-cbb
-cbb
-cbb
-cbb
-cbb
-cbu
-cbu
-cbu
-cbb
-cbb
-cbu
-cdr
-cct
-cea
-cch
-cch
-cch
-ceW
-cch
-cch
-cfU
-cgl
-cch
-cch
-cgU
-cgl
-cch
-aEZ
-bhq
-bnu
-bDk
-bnu
-bLw
-aEZ
-cfc
-cfc
-cfc
-cfc
-cfc
aaa
aaa
aaa
@@ -73807,6 +73716,8 @@ aaa
aaa
aaa
aaa
+"}
+(72,1,1) = {"
aaa
aaa
aaa
@@ -73822,8 +73733,6 @@ aaa
aaa
aaa
aaa
-"}
-(74,1,1) = {"
aaa
aaa
aaa
@@ -73870,6 +73779,25 @@ aaa
aaa
aaa
aaa
+aea
+aeo
+aeo
+aeo
+aea
+aea
+afB
+afX
+agx
+aea
+ahC
+ahC
+ahC
+ahC
+ahC
+ale
+agv
+agv
+agv
aaa
aaa
aaa
@@ -73877,89 +73805,55 @@ aaa
aaa
aaa
aaa
+agv
+agv
+bUS
+bUV
+bUY
+agu
aaa
aaa
aaa
aaa
aaa
aaa
+aHf
+aMR
+aHf
+aad
+aad
+aad
+aHf
+aMR
+aHf
+aON
+aHf
+aad
+aad
+aad
+aTs
+aTr
+aTr
+aTr
aaa
aaa
-afA
-afQ
-agc
-agm
-agB
-agR
-ahd
-ahz
-ahZ
-aiA
-ajd
-ajL
-akC
-bWn
-bWo
-amG
-anp
-ahV
-aoA
-apc
-apO
-aqM
-arH
-asz
-atq
-auC
-avu
-ahV
-axV
-aza
-auz
-ahV
+aYW
+aYW
+bXc
+bXc
+aYW
+aYW
aaa
aaa
-aDI
-aDI
-aDI
-aFV
-aGO
-aHI
-aIF
-aFa
-aFa
-aFa
-aFa
-aFa
-aDI
-aQs
-aRj
-aSo
-aSn
-aTj
-aVb
-aVR
-aWW
-aXV
-aYT
-aXV
-baH
-bbC
-bco
-bco
-bbC
-bed
-aXV
-aYT
-aXV
-aWW
-bjj
-aVb
-blJ
-bnf
-bnd
-bpK
-blJ
+aTr
+aTr
+aTr
+aTr
+bjZ
+bjZ
+cid
+bjZ
+bjZ
aaa
aaa
aaa
@@ -73972,60 +73866,53 @@ aaa
aaa
aaa
aac
-aac
-adf
-aac
-aad
-aac
-aad
-cbA
-caT
-caT
-caT
-caT
-cbR
-cbb
-cck
-ccv
-caT
-cbb
-cbb
-cbb
-cch
-cdJ
-ceb
-cen
-cch
-ceO
-ceX
-cch
-cfC
-cfV
-cgm
-cch
-cgH
-cfV
-aaC
-cch
-aEZ
-bhr
-boR
-bDn
-boR
-bLw
-aEZ
-cfc
-cfc
-cfc
-cfc
-cfc
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
aaa
+bYV
+bZj
+bZj
+bZj
+bZj
+bZj
+bZr
+bZr
+bZr
+bZr
+bZr
+bZr
+bZr
+bZr
+bZr
+bZr
+bZr
+bZK
+cbH
+caJ
+ccp
+ccC
+ccU
+ccm
+ccm
+caD
+ccm
+cej
+ceA
+ceT
+ccm
+cej
+ccR
+aDy
+aDy
+bfG
+blK
+bBg
+blK
+bJM
+aDy
+cds
+cds
+cds
+cds
+cds
aaa
aaa
aaa
@@ -74079,8 +73966,6 @@ aaa
aaa
aaa
aaa
-"}
-(75,1,1) = {"
aaa
aaa
aaa
@@ -74088,6 +73973,8 @@ aaa
aaa
aaa
aaa
+"}
+(73,1,1) = {"
aaa
aaa
aaa
@@ -74135,88 +74022,10 @@ aaa
aaa
aaa
aaa
-adf
-acJ
-aad
-aad
-aad
-aad
-aad
-afB
-afR
-agd
-agn
-agC
-agS
-ahe
-ahA
-aia
-aiB
-ajc
-ajM
-akD
-alq
-alX
-amH
-anp
-ahV
-aoA
-apd
-apP
-aoz
-arH
-arH
-arH
-auC
-avu
-ahV
-axW
-ahV
-anm
-ahV
aaa
aaa
aaa
aaa
-aDI
-aDI
-aDI
-aDI
-aDI
-aFa
-aLm
-aLm
-aLm
-aFa
-aDI
-aDI
-aDI
-aDI
-aDI
-aDI
-aVb
-aVS
-aWW
-aVb
-aVb
-aVb
-baG
-bYy
-bbC
-bbC
-bYT
-baG
-aVb
-aVb
-aVb
-aWW
-bjj
-aVb
-blJ
-bnf
-bnd
-bpK
-blJ
aaa
aaa
aaa
@@ -74227,55 +74036,81 @@ aaa
aaa
aaa
aaa
+aeb
+aep
+aeB
+aeL
+afa
+afq
+afC
+afY
+agy
+agZ
+ahC
+aik
+ajb
+ajP
+akw
+alf
+alO
+agv
+amZ
+amZ
+ana
+amZ
+amZ
+ana
+amZ
+amZ
+amZ
+agv
+awt
+bUV
+ahy
+agu
aaa
aaa
aaa
aaa
aaa
aaa
-aac
-aac
-aad
-caw
-cbI
-caO
-caT
-caT
-caT
-caT
-ccw
-caT
-cbb
-cbb
-cdf
-cch
-cdK
-cch
-cch
-cch
-cch
-ceY
-cch
-cfD
-cfW
-cgn
-cch
-cfD
-cfW
-cgn
-cch
-aEZ
-aEZ
-aEZ
-aEZ
-aEZ
-aEZ
-aEZ
-aEZ
-cfc
-cfc
-cfc
-cfc
+aHf
+aGm
+aHf
+aHf
+aHf
+aHf
+aHf
+aGn
+aHf
+aGn
+aHf
+aHf
+aHf
+aHf
+aTs
+aUh
+aVl
+aTr
+aXi
+aTr
+aYW
+aZR
+aZS
+aZS
+bbP
+aYW
+aTr
+aTr
+aTr
+aVl
+bhz
+aTr
+bkb
+blv
+blt
+boa
+bkb
aaa
aaa
aaa
@@ -74287,7 +74122,54 @@ aaa
aaa
aaa
aaa
+aac
aaa
+aad
+bYM
+bYM
+bYV
+bZe
+bZj
+bZj
+bZr
+bZr
+bZr
+bZr
+bZr
+bZK
+bZK
+bZK
+bZr
+bZr
+bZK
+cbH
+caJ
+ccq
+cax
+cax
+cax
+cdm
+cax
+cax
+cek
+ceB
+cax
+cax
+cfk
+ceB
+cax
+aDy
+bfG
+blK
+bBA
+blK
+bJM
+aDy
+cds
+cds
+cds
+cds
+cds
aaa
aaa
aaa
@@ -74336,8 +74218,6 @@ aaa
aaa
aaa
aaa
-"}
-(76,1,1) = {"
aaa
aaa
aaa
@@ -74350,6 +74230,8 @@ aaa
aaa
aaa
aaa
+"}
+(74,1,1) = {"
aaa
aaa
aaa
@@ -74391,89 +74273,13 @@ aaa
aaa
aaa
aaa
-acJ
aaa
-aad
aaa
-adq
-adq
-adq
-adq
-afC
-afS
-afS
-afS
-afS
-afS
-ahf
-ahB
-aib
-aib
-aib
-ajN
-akE
-ajN
-ajN
-ajN
-anq
-ahV
-aoA
-ape
-apQ
-aqN
-arI
-asA
-arH
-auC
-avu
-ahV
-axX
-ahV
-anm
-ahV
aaa
aaa
aaa
aaa
-aDI
-aFW
-aGP
-aHK
-aDJ
-aFa
-aLn
-aLn
-aLn
-aFa
-aFa
-aLl
-aLl
-aSn
-aTj
aaa
-aVb
-aVT
-aWW
-aXW
-aYU
-aVb
-baI
-bbE
-bco
-bco
-bbC
-baI
-aVb
-bga
-aXW
-aWW
-bjj
-aVb
-blJ
-bnf
-bnd
-bpK
-blJ
aaa
aaa
aaa
@@ -74487,51 +74293,81 @@ aaa
aaa
aaa
aaa
+aec
+aeq
+aeC
+aeM
+afb
+afr
+afD
+afZ
+agz
+aha
+ahD
+ail
+ajc
+bUD
+bUE
+alg
+alP
+agv
+ana
+anC
+aoo
+apm
+aqh
+aqZ
+arQ
+atc
+atU
+agv
+awu
+axz
+asZ
+agv
aaa
aaa
aaa
aaa
aaa
-aad
-aad
-aad
-aad
-cbI
-cbI
-caO
-caT
-ccx
-caT
-cbb
-cbb
-cbb
-cbb
-cdL
-cec
-ceo
-cbb
-cbb
-ceZ
-cch
-cfE
-cfX
-cgo
-cch
-cgI
-cfX
-aaG
-cch
-cfc
-cfc
-cfc
-cfc
-cfc
-cfc
-cfc
-cfc
-cfc
-cfc
-cfc
+aEz
+aEz
+aGn
+aEz
+aEz
+chp
+chx
+chE
+chx
+chN
+chx
+chE
+chx
+chx
+chY
+aTs
+aUh
+aVm
+aWl
+aXj
+aWl
+aYX
+aZS
+baE
+baE
+aZS
+bct
+aWl
+aXj
+aWl
+aVm
+bhz
+aTr
+bjZ
+blv
+blt
+boa
+bjZ
aaa
aaa
aaa
@@ -74543,6 +74379,54 @@ aaa
aaa
aaa
aaa
+aac
+aac
+acl
+aac
+aad
+aac
+aad
+bZQ
+bZj
+bZj
+bZj
+bZj
+cah
+bZr
+caA
+caL
+bZj
+bZr
+bZr
+bZr
+cax
+cbZ
+ccr
+ccD
+cax
+cde
+cdn
+cax
+cdS
+cel
+ceC
+cax
+ceX
+cel
+aas
+cax
+aDy
+bfH
+bnh
+bBD
+bnh
+bJM
+aDy
+cds
+cds
+cds
+cds
+cds
aaa
aaa
aaa
@@ -74593,8 +74477,6 @@ aaa
aaa
aaa
aaa
-"}
-(77,1,1) = {"
aaa
aaa
aaa
@@ -74605,6 +74487,8 @@ aaa
aaa
aaa
aaa
+"}
+(75,1,1) = {"
aaa
aaa
aaa
@@ -74648,96 +74532,99 @@ aaa
aaa
aaa
aaa
-acJ
aaa
-adq
-adq
-adq
-aek
-aeI
-adq
-afD
-afT
-age
-age
-age
-age
-ahg
-ahC
-aic
-aiC
-age
-ajO
-akF
-alr
-alY
-amI
-anr
-ahV
-aoz
-aoz
-apR
-aoz
-aoz
-aoz
-atr
-aoz
-aoz
-ahV
-axY
-ahV
-axT
-ahV
aaa
aaa
aaa
aaa
-aDI
-aFW
-aGQ
-aGQ
-aIE
-aFa
-aFa
-aFa
-aFa
-aFa
-aFa
-aFa
-aFa
-aSn
-aTj
aaa
-aVb
-aVT
-aWX
-aWW
-aYV
-aVb
-baI
-bbF
-bcp
-bdd
-bbC
-baI
-aVb
-bgb
-aWW
-aWX
-bjj
-aVb
-blL
-bnf
-bnd
-bpK
-blL
aaa
aaa
aaa
aaa
aaa
+acl
+abZ
+aad
+aad
+aad
+aad
+aad
+aed
+aer
+aeD
+aeN
+afc
+afs
+afE
+aga
+agA
+ahb
+ahC
+aim
+ajd
+ajQ
+akx
+alh
+alP
+agv
+ana
+anD
+aop
+amZ
+aqh
+aqh
+aqh
+atc
+atU
+agv
+awv
+agv
+alM
+agv
+aaa
+aaa
+aaa
aaa
aaa
+aEz
+aFq
+aGo
+aHg
+aHf
+chq
+aGp
+aGp
+aGp
+aGp
+aGp
+aGp
+aGp
+aGp
+aRE
+aTs
+aUi
+aVm
+aTr
+aTr
+aTr
+aYW
+bWO
+aZS
+aZS
+bXj
+aYW
+aTr
+aTr
+aTr
+aVm
+bhz
+aTr
+bjZ
+blt
+blt
+blt
+bjZ
aaa
aaa
aaa
@@ -74751,45 +74638,52 @@ aaa
aaa
aaa
aaa
-aad
aaa
aaa
-aad
-asa
-caT
-bTf
-caT
-cbD
-cbb
-cbb
-cbb
-cbb
-cbs
-cbb
-cbb
-cbb
-cfa
-cch
-cch
-cfY
-cch
-cch
-cch
-cfY
-cch
-cch
-cfc
-cfc
-cfc
-cfc
-cfc
-cfc
-cfc
-cfc
-cfc
-cfc
-cfc
aaa
+aac
+aac
+aad
+bYM
+bZY
+bZe
+bZj
+bZj
+bZj
+bZj
+caM
+bZj
+bZr
+bZr
+cbv
+cax
+cca
+cax
+cax
+cax
+cax
+cdo
+cax
+cdT
+cem
+ceD
+cax
+cdT
+cem
+ceD
+cax
+aDy
+aDy
+aDy
+aDy
+aDy
+aDy
+aDy
+aDy
+cds
+cds
+cds
+cds
aaa
aaa
aaa
@@ -74851,7 +74745,7 @@ aaa
aaa
aaa
"}
-(78,1,1) = {"
+(76,1,1) = {"
aaa
aaa
aaa
@@ -74905,91 +74799,89 @@ aaa
aaa
aaa
aaa
-acJ
-aad
-adq
-adu
-adL
-ael
-ael
-afe
-ael
-ael
-age
-ago
-agD
-agg
-ahh
-ahD
-aid
-aiC
-age
-ajP
-akG
-als
-alZ
-ajN
-ajN
-ajN
-aoB
-aoB
-apS
-aoB
-arJ
-aoB
-ats
-aoB
-ajh
-ahV
-ahV
-ahV
-anm
-ahV
+abZ
aaa
+aad
aaa
+act
+act
+act
+act
+aee
+aes
+aes
+aes
+aes
+aes
+afF
+agb
+agB
+agB
+agB
+ain
+aje
+ain
+ain
+ain
+alQ
+agv
+ana
+anE
+aoq
+apn
+aqi
+ara
+aqh
+atc
+atU
+agv
+aww
+agv
+alM
+agv
aaa
aaa
-aDI
-aFW
-aGQ
-aGQ
-aDJ
-aJZ
-aLq
-aLq
-aLq
-aJZ
-aLq
-aJZ
-aLq
-aSn
-aTj
aaa
-aVb
-aVT
-aWW
-aXX
-aYW
-aVb
-baI
-bYz
-bYN
-bco
-bbC
-baI
-aVb
-bgc
-aXX
-aWW
-bjj
-aVb
-blJ
-bnf
-bnd
-bpK
-blJ
aaa
aaa
+aEz
+aFr
+aGp
+aHh
+aHf
+chq
+chy
+chF
+aMT
+aGp
+chy
+chF
+aMT
+aGp
+aRE
+aTs
+aUj
+aVm
+aWm
+aXk
+aTr
+aYY
+aZU
+baE
+baE
+aZS
+aYY
+aTr
+beq
+aWm
+aVm
+bhz
+aTr
+cih
+blt
+cie
+blt
+cig
aaa
aaa
aaa
@@ -75012,40 +74904,42 @@ aad
aad
aad
aad
-aad
-ccl
-bTf
-caT
-caT
-cbb
-cbb
-cbR
-cbb
-cbb
-cbb
-cbb
-cbR
-cfb
-cch
-cfF
-cfZ
-cgp
-cch
-cgJ
-cfZ
-aaM
-cch
-cfc
-cfc
-cfc
-cfc
-cfc
-cfc
-cfc
-cfc
-cfc
-cfc
-aaa
+bZY
+bZY
+bZe
+bZj
+caN
+bZj
+bZr
+bZr
+bZr
+bZr
+ccb
+ccs
+ccE
+bZr
+bZr
+cdp
+cax
+cdU
+cen
+ceE
+cax
+ceY
+cen
+aaw
+cax
+cds
+cds
+cds
+cds
+cds
+cds
+cds
+cds
+cds
+cds
+cds
aaa
aaa
aaa
@@ -75108,10 +75002,7 @@ aaa
aaa
aaa
"}
-(79,1,1) = {"
-aaa
-aaa
-aaa
+(77,1,1) = {"
aaa
aaa
aaa
@@ -75162,92 +75053,92 @@ aaa
aaa
aaa
aaa
-acJ
aaa
-adr
-adv
-adM
-ael
-aeJ
-aff
-afE
-afE
-agf
-agp
-agE
-agT
-ahi
-ahE
-aie
-aiC
-age
-ajQ
-akH
-alt
-ama
-ajh
-ans
-anR
-aoC
-aoB
-apu
-aoB
-arJ
-ajh
-att
-auD
-avv
-awz
-axZ
-ahV
-anm
-ahV
aaa
aaa
+abZ
aaa
+act
+act
+act
+ada
+adu
+act
+aef
+aet
+aeE
+aeE
+aeE
+aeE
+afG
+agc
+agC
+ahc
+aeE
+aio
+ajf
+ajR
+aky
+ali
+alR
+agv
+amZ
+amZ
+aor
+amZ
+amZ
+amZ
+arR
+amZ
+amZ
+agv
+awx
+agv
+aws
+agv
aaa
-aDI
-aDJ
-aDJ
-aHL
-aDI
-aDI
-aDJ
-aDJ
-aDI
-aOx
-aDI
-aQt
-aDI
-aDI
-aDI
aaa
-aVb
-aVU
-aWY
-aVb
-aVb
-aVb
-baG
-bbG
-bco
-bco
-bdA
-baG
-aVb
-aVb
-aVb
-bio
-bjk
-aVb
-blJ
-bnf
-bnd
-bpK
-blJ
aaa
aaa
aaa
+aEz
+aFs
+aGp
+aHi
+aIz
+chr
+chy
+chG
+aMT
+aGp
+chy
+chG
+aMT
+aGp
+aRE
+aTs
+aUj
+aVn
+aVm
+aXl
+aTr
+aYY
+aZV
+baF
+bbt
+aZS
+aYY
+aTr
+ber
+aVm
+aVn
+bhz
+aTr
+bjZ
+blt
+blt
+blt
+bjZ
aaa
aaa
aaa
@@ -75270,39 +75161,42 @@ aaa
aaa
aad
aaa
-aad
-bTf
-ccL
-caT
-caT
-caT
-caT
-caT
-caT
-caT
-caT
-caT
-caT
-cch
-cch
-cch
-cch
-cch
-cch
-cch
-cch
-cch
-cfc
-cfc
-cfc
-cfc
-cfc
-cfc
-cfc
-cfc
-cfc
-cfc
aaa
+aad
+aqA
+bZj
+bRv
+bZj
+bZT
+bZr
+bZr
+bZr
+bZr
+bZI
+bZr
+bZr
+bZr
+cdq
+cax
+cax
+ceo
+cax
+cax
+cax
+ceo
+cax
+cax
+cds
+cds
+cds
+cds
+cds
+cds
+cds
+cds
+cds
+cds
+cds
aaa
aaa
aaa
@@ -75365,7 +75259,7 @@ aaa
aaa
aaa
"}
-(80,1,1) = {"
+(78,1,1) = {"
aaa
aaa
aaa
@@ -75419,96 +75313,92 @@ aaa
aaa
aaa
aaa
-acJ
+abZ
aad
-adq
-adw
-adN
-ael
-aeK
-afg
-ael
-ael
-age
-agq
-agF
-age
-ahj
-ahF
-aif
-age
-age
-ajR
-akI
-alu
-amb
-ajh
-ant
-anS
-aoD
-ajh
-apT
-ajh
-ajh
-ajN
-ajN
-ajN
-ajh
-awA
-aya
-ahV
-anm
-ahV
-ahV
-ahV
-ahV
-ahV
-ahV
-ahV
-aGa
-aHM
-aIG
+act
+acv
+acJ
+adb
+adb
+adJ
+adb
+adb
+aeE
+aeO
+afd
+aeG
+afH
+agd
+agD
+ahc
+aeE
+aip
+ajg
+ajS
+akz
+ain
+ain
+ain
+anb
+anb
+aos
+anb
+aqj
+anb
+arS
+anb
+ahH
+agv
+agv
+agv
+alM
+agv
aaa
aaa
aaa
-aIG
-aHM
-aIG
-aHM
-aIG
aaa
aaa
+aEz
+aFt
+aGq
+aHj
+cho
+chs
+chz
+chF
+aMT
+aGp
+chy
+chF
+aMT
+aGp
+aRE
+aTs
+aUj
+aVm
+aWn
+aXm
+aTr
+aYY
+bWP
+bXd
+baE
+aZS
+aYY
+aTr
+bes
+aWn
+aVm
+bhz
+aTr
+bjZ
+blv
+blt
+boa
+bjZ
aaa
-aVb
-aVT
-aWZ
-aXV
-aYT
-aXV
-baH
-bbC
-bbC
-bbC
-bbC
-baH
-aXV
-aYT
-aXV
-aZc
-bjj
-aVb
-blJ
-blK
-box
-blK
-blJ
aaa
aaa
-abu
-acJ
-acJ
-caa
-acJ
aaa
aaa
aaa
@@ -75525,40 +75415,44 @@ aaa
aaa
aaa
aaa
-aad
aaa
aad
-bTf
-bOH
-cbI
-cbI
-cbI
-cbI
-cbI
-caw
-caw
-cbI
-cbI
-cfc
-cfc
-cfc
-cfc
-cfc
-cfc
-cfc
-cfc
-cfc
-cfc
-cfc
-cfc
-cfc
-cfc
-cfc
-cfc
-cfc
-aaa
-aaa
-aaa
+aad
+aad
+aad
+aad
+caB
+bRv
+bZj
+bZj
+bZr
+bZr
+cah
+bZr
+bZr
+bZr
+bZr
+cah
+cdr
+cax
+cdV
+cep
+ceF
+cax
+ceZ
+cep
+aaA
+cax
+cds
+cds
+cds
+cds
+cds
+cds
+cds
+cds
+cds
+cds
aaa
aaa
aaa
@@ -75622,7 +75516,7 @@ aaa
aaa
aaa
"}
-(81,1,1) = {"
+(79,1,1) = {"
aaa
aaa
aaa
@@ -75676,146 +75570,146 @@ aaa
aaa
aaa
aaa
-acJ
+abZ
aaa
-adr
-adx
-adO
-aem
-aeL
-afh
-afF
-afF
-agg
-agg
-agg
-agU
-ahk
-ahF
-aig
-aiD
-aje
-ajS
-akJ
-alv
-amc
-amJ
-anu
-anu
-ajS
-anu
-apU
-aqO
-arK
-asB
-atu
-auE
-avw
-avx
-ayb
-ahV
-azZ
-aBg
-aBg
-aBg
-aBg
-aEA
-aFc
-aFX
-aGa
-aHN
-aIG
+acu
+acw
+acK
+adb
+adv
+adK
+aeg
+aeg
+aeF
+aeP
+afe
+aft
+afI
+age
+agE
+ahc
+aeE
+aiq
+ajh
+ajT
+akA
+ahH
+alS
+amr
+anc
+anb
+anU
+anb
+aqj
+ahH
+arT
+atd
+atV
+auZ
+awy
+agv
+alM
+agv
aaa
aaa
aaa
-aIG
-aHN
-aIG
-aHN
-aIG
+aaa
+aaa
+aEz
+aEz
+aEz
+aEz
+aEz
+cht
+chA
+chG
+chI
+aPD
+chS
+chG
+chW
+aGp
+chZ
+aTs
+aUk
+aVo
+aTr
+aTr
+aTr
+aYW
+aZW
+baE
+baE
+bbQ
+aYW
+aTr
+aTr
+aTr
+bgE
+bhA
+aTr
+bkb
+blv
+blt
+boa
+bkb
aaa
aaa
aaa
-aVb
-aVT
-aWZ
-aVb
-aYS
-aVb
-baG
-bbH
-bbH
-bbH
-bbH
-baG
-aVb
-aVb
-aVb
-aZc
-bjj
-aVb
-aVb
-bng
-boy
-aVb
aaa
aaa
aaa
aaa
-aad
-aad
-aad
-aad
aaa
-bpM
-bwu
-bwu
-bpM
-bpM
-bwu
-bwu
-bpM
-aad
aaa
aaa
aaa
aaa
aaa
aaa
-aad
-aad
-bOH
-bTf
-aad
aaa
aaa
aaa
-aad
-aad
-aad
-aad
-aad
aaa
aaa
-cfc
-cfc
-cfc
-cfc
-cfc
-cfc
-cfc
-cfc
-cfc
-cfc
-cfc
-cfc
-cfc
-cfc
aaa
aaa
aaa
aaa
+aad
aaa
+aad
+bRv
+cbb
+bZj
+bZj
+bZj
+bZj
+bZj
+bZj
+bZj
+bZj
+bZj
+bZj
+cax
+cax
+cax
+cax
+cax
+cax
+cax
+cax
+cax
+cds
+cds
+cds
+cds
+cds
+cds
+cds
+cds
+cds
+cds
aaa
aaa
aaa
@@ -75879,7 +75773,7 @@ aaa
aaa
aaa
"}
-(82,1,1) = {"
+(80,1,1) = {"
aaa
aaa
aaa
@@ -75933,143 +75827,143 @@ aaa
aaa
aaa
aaa
-acJ
-aad
-adq
-ady
-adP
-ael
-aeJ
-afi
-ael
-ael
-age
-agr
-agG
-agV
-ahl
-ahG
-aih
-aiE
-ajf
-ajT
-akK
-alw
-amd
-amK
-anv
-anv
-aoE
-apf
-anv
-aqP
-arL
-asC
-atv
-auF
-avx
-awB
-aya
-ahV
-aAa
-aBh
-azc
-azc
-azc
-azc
-aFd
-aFY
-aGa
-aOy
-aIG
-aad
-aad
-aad
-aIG
-aOy
-aIG
-aQu
-aIG
-aad
-aad
+abZ
aad
-aVc
-aVT
-aWZ
-aXW
-aXW
-aVc
-baJ
-baJ
-bcq
-bcq
-bdB
-baJ
-aVc
-aXW
-aXW
-aZc
-aWW
-aXW
-aXW
-aVb
-aYT
-aVb
+act
+acx
+acL
+adb
+adw
+adL
+adb
+adb
+aeE
+aeQ
+aff
+aeE
+afJ
+agf
+agF
+aeE
+aeE
+air
+aji
+ajU
+akB
+ahH
+alT
+ams
+and
+ahH
+aot
+ahH
+ahH
+ain
+ain
+ain
+ahH
+ava
+awz
+agv
+alM
+agv
+agv
+agv
+agv
+agv
+agv
+agv
+agv
aaa
aaa
+aEz
+chu
+chB
+chH
+chJ
+chO
+chy
+chF
+aMT
+aGp
+aRE
+aTs
+aUj
+aVp
+aWl
+aXj
+aWl
+aYX
+aZS
+aZS
+aZS
+aZS
+aYX
+aWl
+aXj
+aWl
+aXs
+bhz
+aTr
+bjZ
+bkb
+bmN
+bkb
+bjZ
aaa
aaa
-bPk
-bPk
-bPk
-bPk
-bpM
-bpM
-byL
-bvp
-caG
-bvp
-bFx
-bvp
-bpM
-bpM
+aaY
+abZ
+abZ
+bYq
+abZ
aaa
aaa
aaa
aaa
aaa
-bOG
-aad
aaa
-bOH
-bTf
-aad
aaa
aaa
aaa
-aad
aaa
aaa
-aad
aaa
aaa
aaa
-aad
-cfc
-cfc
-cfc
-cfc
-cfc
-cfc
-cfc
-cfc
-cfc
-cfc
-cfc
-cfc
aaa
aaa
+aad
aaa
+aad
+bRv
+bMX
+bZY
+bZY
+bZY
+bZY
+bZY
+bYM
+bYM
+bZY
+bZY
+cds
+cds
+cds
+cds
+cds
+cds
+cds
+cds
+cds
+cds
+cds
+cds
+cds
+cds
+cds
+cds
+cds
aaa
aaa
aaa
@@ -76136,10 +76030,7 @@ aaa
aaa
aaa
"}
-(83,1,1) = {"
-aaa
-aaa
-aaa
+(81,1,1) = {"
aaa
aaa
aaa
@@ -76190,141 +76081,144 @@ aaa
aaa
aaa
aaa
-acJ
aaa
-adr
-adz
-adQ
-adQ
-adQ
-afj
-adQ
-adQ
-agh
-ags
-agH
-agW
-ahm
-ahH
-aii
-aiF
-ajg
-ajU
-akL
-alx
-ame
-amL
-anw
-anw
-anw
-apg
-apV
-aqQ
-arM
-asD
-atw
-auF
-avx
-awC
-ayc
-azb
-aAb
-anN
-azc
-aDa
-aDK
-azc
-aAa
-aFZ
-aGa
-aHN
-aIG
-aIG
-aIG
-aIG
-aIG
-aHN
-aIG
-aHN
-aIG
-aIG
-aIG
-aIG
-aVc
-aVV
-aWZ
-aWW
-aWW
-aVc
-aVc
-aVb
-bcr
-bcr
-aVb
-aVc
-aVc
-aWW
-aWW
-bip
-aWY
-aWW
-aWW
-bng
-boz
-aVb
-aVb
aaa
aaa
+abZ
aaa
-bPk
-bZY
-cab
-bKk
-bpM
-cak
-cas
-cax
-cax
-cax
-cax
-cbf
-bGR
-bpM
+acu
+acy
+acM
+adc
+adx
+adM
+aeh
+aeh
+aeG
+aeG
+aeG
+afu
+afK
+agf
+agG
+ahd
+ahE
+ais
+ajj
+ajV
+akC
+alj
+alU
+alU
+ais
+alU
+aou
+apo
+aqk
+arb
+arU
+ate
+atW
+atX
+awA
+agv
+ayy
+azF
+azF
+azF
+azF
+aCZ
+aDB
+aEw
+agv
aaa
aaa
+aHf
+chu
+chy
+chG
+aMT
+aQH
+chy
+chG
+aMT
+aGp
+aRE
+aTs
+aUj
+aVp
+aTr
+aXi
+aTr
+aYW
+aZX
+aZX
+aZX
+aZX
+aYW
+aTr
+aTr
+aTr
+aXs
+bhz
+aTr
+aTr
+blw
+bmO
+aTr
aaa
aaa
aaa
aaa
-bdx
aad
-bOH
-bTf
-bOH
aad
aad
aad
+aaa
+boc
+buK
+buK
+boc
+boc
+buK
+buK
+boc
aad
aaa
aaa
-aad
aaa
aaa
+aaa
+aaa
+aad
aad
+bMX
+bRv
aad
aaa
aaa
aaa
-cfc
-cfc
-cfc
-cfc
-cfc
-cfc
-cfc
-cfc
+aad
+aad
+aad
+aad
+aad
aaa
aaa
+cds
+cds
+cds
+cds
+cds
+cds
+cds
+cds
+cds
+cds
+cds
+cds
+cds
+cds
aaa
aaa
aaa
@@ -76393,7 +76287,7 @@ aaa
aaa
aaa
"}
-(84,1,1) = {"
+(82,1,1) = {"
aaa
aaa
aaa
@@ -76447,130 +76341,141 @@ aaa
aaa
aaa
aaa
-acJ
+abZ
aad
-adq
-adA
-adR
-ael
-ael
-afk
-ael
-ael
-age
-agt
-agF
-age
-ahn
-ahI
-aij
-age
-ajh
-ajV
-akM
-aly
-aly
-amM
-amn
-anT
-aoF
-aph
-apW
-aqR
-arN
-ajh
-ajh
-auG
-bWz
-awD
-ayd
-azc
-azc
-azc
-azc
-aDb
-aDL
-azc
-aAa
-aGa
-aGa
-aHO
-aGa
-aGa
-aLr
-aMr
-aIG
-aHO
-aIG
-aHO
-aIG
-aMr
-aTk
-bXz
-aVc
-bXL
-aXa
-aXY
-aXY
-aXY
-baK
-aXY
-aXY
-aXY
-aXY
-aXY
-aXY
-aXY
-aXY
-aZb
-bjl
-aWW
-aWW
-aWW
-aWW
-aWW
-aVb
-aaa
+act
+acz
+acN
+adb
+adv
+adN
+adb
+adb
+aeE
+aeR
+afg
+afv
+afL
+agg
+agH
+ahe
+ahF
+ait
+ajk
+ajW
+akD
+alk
+alV
+alV
+ane
+anF
+alV
+app
+aql
+arc
+arV
+atf
+atX
+avb
+awz
+agv
+ayz
+azG
+axB
+axB
+axB
+axB
+aDC
+aEx
+agv
aaa
aaa
-bPk
-bZY
-cac
-bpM
-bpM
-bvp
-bBy
-bCD
-bDD
-bDD
-bFy
-cbg
-bvp
-bwu
+aHf
+chu
+chy
+chF
+aMT
+chP
+chy
+chF
+aMT
+aGp
+aRE
+aTs
+aUj
+aVp
+aWm
+aWm
+aTs
+aYZ
+aYZ
+baG
+baG
+bbR
+aYZ
+aTs
+aWm
+aWm
+aXs
+aVm
+aWm
+aWm
+aTr
+aXj
+aTr
aaa
aaa
aaa
aaa
+bNA
+bNA
+bNA
+bNA
+boc
+boc
+bxb
+btF
+bYW
+btF
+bDN
+btF
+boc
+boc
aaa
-cbS
-cbX
aaa
-bOH
-bTf
-bOH
aaa
aaa
aaa
+bMW
aad
+aaa
+bMX
+bRv
aad
+aaa
+aaa
+aaa
aad
-aad
-aad
-aad
+aaa
+aaa
aad
aaa
aaa
aaa
+aad
+cds
+cds
+cds
+cds
+cds
+cds
+cds
+cds
+cds
+cds
+cds
+cds
+aaa
aaa
aaa
aaa
@@ -76638,6 +76543,8 @@ aaa
aaa
aaa
aaa
+"}
+(83,1,1) = {"
aaa
aaa
aaa
@@ -76649,8 +76556,6 @@ aaa
aaa
aaa
aaa
-"}
-(85,1,1) = {"
aaa
aaa
aaa
@@ -76693,137 +76598,139 @@ aaa
aaa
aaa
aaa
+abZ
aaa
+acu
+acA
+acO
+acO
+acO
+adO
+acO
+acO
+aeH
+aeS
+afh
+afw
+afM
+agh
+agI
+ahf
+ahG
+aiu
+ajl
+ajX
+akE
+all
+alW
+alW
+alW
+anG
+aov
+apq
+aqm
+ard
+arW
+atf
+atX
+avc
+awB
+axA
+ayA
+amn
+axB
+aBz
+aCj
+axB
+ayz
+aEy
+agv
aaa
aaa
+aEz
+chv
+chC
+aGp
+aGp
+aQH
+aGp
+aGp
+aGp
+aGp
+cia
+aTs
+aUl
+aVp
+aVm
+aVm
+aTs
+aTs
+aTr
+baH
+baH
+aTr
+aTs
+aTs
+aVm
+aVm
+bgF
+aVo
+aVm
+aVm
+blw
+bmP
+aTr
+aTr
aaa
aaa
aaa
+bNA
+bYo
+bYr
+bIA
+boc
+bYA
+bYI
+bYN
+bYN
+bYN
+bYN
+bZv
+bFh
+boc
aaa
aaa
aaa
aaa
aaa
-acJ
aaa
-adq
-adq
-adq
-aen
-aeM
-adq
-afG
-afU
-age
-age
-age
-age
-aho
-ahJ
-aik
-age
-aji
-ajW
-akN
-aly
-amf
-amN
-anx
-anU
-aoG
-api
-anv
-aqS
-arO
-asB
-atx
-auH
-avx
-avx
-avx
-azc
-aAc
-aBi
-azc
-azc
-aDM
-azc
-aAa
-aGa
-aGR
-aHP
-aIH
-aIG
-aLs
-aHQ
-aNs
-aHQ
-aPk
-aHQ
-aNs
-aHQ
-aTl
-bXz
-aVc
-aVW
-aXb
-aXZ
-aYX
-aZM
-baL
-bbI
-bbI
-bde
-bYU
-bee
-bbI
-bbI
-bbI
-biq
-bbI
-bbI
-blM
-bnh
-boA
-bpL
-aVb
-aad
+bbN
+aad
+bMX
+bRv
+bMX
+aad
+aad
aad
-aaa
-bPk
-bZZ
-cad
-bpM
-bzM
-bvp
-bBz
-bCE
-bDE
-bEK
-bFz
-cbg
-bvp
-bwu
-bOG
-bOG
-bOG
-cbJ
-cbN
-cbT
-bdx
aad
-bpM
-ccy
-bpM
aaa
aaa
+aad
aaa
aaa
aad
+aad
aaa
aaa
-aad
aaa
+cds
+cds
+cds
+cds
+cds
+cds
+cds
+cds
aaa
aaa
aaa
@@ -76893,6 +76800,8 @@ aaa
aaa
aaa
aaa
+"}
+(84,1,1) = {"
aaa
aaa
aaa
@@ -76906,8 +76815,6 @@ aaa
aaa
aaa
aaa
-"}
-(86,1,1) = {"
aaa
aaa
aaa
@@ -76948,130 +76855,122 @@ aaa
aaa
aaa
aaa
+abZ
+aad
+act
+acB
+acP
+adb
+adb
+adP
+adb
+adb
+aeE
+aeT
+aff
+aeE
+afN
+agi
+agJ
+aeE
+ahH
+aiv
+ajm
+ajY
+ajY
+alm
+akN
+amt
+anf
+anH
+aow
+apr
+aqn
+ahH
+ahH
+atg
+bUP
+avd
+awC
+axB
+axB
+axB
+axB
+aBA
+aCk
+axB
+ayz
+agv
+agv
aaa
aaa
+aHf
+aJP
+aKO
+aGp
+aGp
+aQH
+aGp
+aGp
+aGp
+aRC
+bVP
+aTs
+bWb
+aVq
+aWo
+aWo
+aWo
+aZa
+aWo
+aWo
+aWo
+aWo
+aWo
+aWo
+aWo
+aWo
+aXr
+bhB
+aVm
+aVm
+aVm
+aVm
+aVm
+aTr
aaa
aaa
aaa
+bNA
+bYo
+bYs
+boc
+boc
+btF
+bzO
+bAT
+bBT
+bBT
+bDO
+bZw
+btF
+buK
aaa
aaa
aaa
aaa
aaa
+cai
+can
aaa
+bMX
+bRv
+bMX
aaa
aaa
-acJ
aaa
aad
-aaa
-adq
-aeo
-aeN
-adq
-afH
-afV
-agi
-agu
-agI
-age
-ahp
-ahK
-ail
-age
-ajj
-ajX
-akO
-aly
-amg
-amO
-amk
-anV
-aoG
-apj
-anv
-aqP
-arP
-asE
-aty
-auF
-avx
-avx
-avx
-azc
-aAd
-aBj
-aCf
-aDc
-aDd
-azc
-aFe
-aGa
-aGS
-aHQ
-aII
-aIG
-aLs
-aHQ
-aHQ
-aHQ
-aHQ
-aHQ
-aHQ
-aHQ
-aTm
-bXA
-bXA
-bXA
-bXA
-bXA
-aZN
-bYn
-baM
-bbJ
-bbK
-bbJ
-bbJ
-bef
-bbJ
-bge
-bge
-bge
-bjn
-bge
-bge
-bge
-boB
-bpM
-bpM
-bpM
-bwu
-bwu
-bpM
-bpM
-cae
-bpM
-bzN
-bvp
-bBA
-bCF
-bDF
-caP
-bFA
-cbg
-bvp
-bwu
-bOH
-bOH
-bOG
-cbK
-bOH
-bpM
-bpM
-bpM
-bpM
-ccz
-bwu
+aad
aad
aad
aad
@@ -77079,7 +76978,6 @@ aad
aad
aaa
aaa
-aad
aaa
aaa
aaa
@@ -77159,12 +77057,16 @@ aaa
aaa
aaa
aaa
+"}
+(85,1,1) = {"
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
aaa
-"}
-(87,1,1) = {"
aaa
aaa
aaa
@@ -77210,133 +77112,126 @@ aaa
aaa
aaa
aaa
+abZ
aaa
+act
+act
+act
+add
+ady
+act
+aei
+aeu
+aeE
+aeE
+aeE
+aeE
+afO
+agj
+agK
+aeE
+ahI
+aiw
+ajn
+ajY
+akF
+aln
+alX
+amu
+ang
+anI
+alV
+aps
+aqo
+arb
+arX
+ath
+atX
+atX
+atX
+axB
+ayB
+azH
+axB
+axB
+aCl
+axB
+ayz
+agv
aaa
aaa
aaa
+aHf
+aJP
+aKO
+aGp
+chK
+aND
+chT
+aGp
+aGp
+aRB
+bVP
+aTs
+aUm
+aVr
+aWp
+aXn
+aYc
+aZb
+aZY
+aZY
+bbu
+bXk
+bcu
+aZY
+aZY
+aZY
+bgG
+aZY
+aZY
+bkc
+blx
+bmQ
+bob
+aTr
+aad
+aad
aaa
+bNA
+bYp
+bYt
+boc
+byc
+btF
+bzP
+bAU
+bBU
+bDa
+bDP
+bZw
+btF
+buK
+bMW
+bMW
+bMW
+bZZ
+cad
+caj
+bbN
+aad
+boc
+caO
+boc
aaa
aaa
aaa
aaa
-adf
-acJ
aad
-adq
-adq
-adq
-adq
-adq
-adq
-adq
-adq
-adq
-adq
-ahq
-ahq
-ahq
-ahq
-ahq
-ahq
-ahq
-aly
-amh
-amP
-amk
-anW
-aoH
-apk
-apV
-aqQ
-arM
-asD
-atz
-auF
-avx
-awE
-ayf
-azd
-aAe
-aBk
-aCg
-aDd
-aDN
-azc
-aFe
-aGa
-aGT
-aHQ
-aIJ
-aKa
-aLt
-aMs
-aNt
-aHQ
-aPl
-aHQ
-aRk
-aHQ
-aTn
-bXA
-aVf
-aVX
-aXc
-bXA
-aYZ
-aZO
-baN
-bbJ
-bcs
-bdf
-bdC
-beg
-bbJ
-bge
-bhn
-bhn
-bhn
-bhn
-bhn
-bge
-bZH
-bZJ
-bxw
-bsj
-btx
-btx
-bwv
-bvp
-byN
-bpM
-bzO
-cal
-bBB
-bCG
-bDG
-bDG
-bFB
-cbg
-bvp
-bwu
-bOH
-bwu
-bwu
-bJx
-bwu
-bpM
-bLu
-bMn
-bpM
-ccA
-bpM
-bpM
+aaa
+aaa
aad
aaa
-bpM
-bpM
-bwu
-bwu
-bwu
aaa
aaa
aaa
@@ -77419,12 +77314,180 @@ aaa
aaa
aaa
aaa
+"}
+(86,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abZ
+aaa
+aad
+aaa
+act
+ade
+adz
+act
+aej
+aev
+aeI
+aeU
+afi
+aeE
+afP
+agk
+agL
+aeE
+ahJ
+aix
+ajo
+ajY
+akG
+alo
+akK
+amv
+ang
+anJ
+alV
+app
+aqp
+are
+arY
+atf
+atX
+atX
+atX
+axB
+ayC
+azI
+aAE
+aBB
+aBC
+axB
+aDD
+agu
+aaa
aaa
-"}
-(88,1,1) = {"
aaa
+aEz
+chw
+aKO
+aGp
+chL
+chQ
+chU
+aGp
+aGp
+chX
+bVQ
+bVQ
+bVQ
+bVQ
+bVQ
+aYd
+bWD
+aZc
+aZZ
+baa
+aZZ
+aZZ
+bcv
+aZZ
+beu
+beu
+beu
+bhD
+beu
+beu
+beu
+bmR
+boc
+boc
+boc
+buK
+buK
+boc
+boc
+bYu
+boc
+byd
+btF
+bzQ
+bAV
+bBV
+bZf
+bDQ
+bZw
+btF
+buK
+bMX
+bMX
+bMW
+caa
+bMX
+boc
+boc
+boc
+boc
+caP
+buK
+aad
+aad
+aad
+aad
+aad
aaa
aaa
+aad
aaa
aaa
aaa
@@ -77486,114 +77549,42 @@ aaa
aaa
aaa
aaa
-aac
-aad
-aad
-ahq
-ahL
-aim
-aiG
-ajk
-ajY
-akP
-alz
-ami
-amQ
-amj
-anX
-aoI
-apl
-anv
-aqT
-arQ
-ajh
-ajh
-auG
-avy
-awF
-ayg
-aze
-aAf
-aBl
-aCh
-aDe
-aDO
-azc
-aFe
-aGa
-aGU
-aHR
-aIK
-aKb
-aLu
-aMt
-aNu
-aNu
-aPm
-aNu
-aRl
-aSp
-aTo
-aUk
-aVg
-aVY
-aXd
-aUk
-aZa
-aWW
-aWZ
-bbK
-bct
-bdg
-bdg
-beh
-beU
-bge
-bhn
-bis
-bjp
-bkr
-bhn
-bge
-boD
-bvp
-bqY
-bqX
-bty
-bqX
-bvp
-bww
-byN
-bpM
-bpM
-bpN
-bBC
-bCH
-caH
-bEL
-caH
-cbh
-bGS
-bpM
-bpM
-bwu
-cbE
-bJy
-bKh
-bpM
-bLv
-bpM
-bpM
-bvp
-ccM
-bpM
aaa
aaa
-bwu
-bQR
-bGk
-bRD
-bwu
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(87,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -77636,10 +77627,124 @@ aaa
aaa
aaa
aaa
+acl
+abZ
+aad
+act
+act
+act
+act
+act
+act
+act
+act
+act
+act
+afQ
+afQ
+afQ
+afQ
+afQ
+afQ
+afQ
+ajY
+akH
+alp
+akK
+amw
+anh
+anK
+aov
+apq
+aqm
+ard
+arZ
+atf
+atX
+ave
+awE
+axC
+ayD
+azJ
+aAF
+aBC
+aCm
+axB
+aDD
+agu
aaa
aaa
aaa
+aHf
+aJP
+aKO
+aGp
+chM
+aNE
+chV
+aGp
+aGp
+aRD
+bVQ
+aTv
+aUn
+aVs
+bVQ
+aXp
+aYe
+aZd
+aZZ
+baI
+bbv
+bbS
+bcw
+aZZ
+beu
+bfD
+bfD
+bfD
+bfD
+bfD
+beu
+bXX
+bXZ
+bvM
+bqz
+brN
+brN
+buL
+btF
+bxd
+boc
+bye
+bYB
+bzR
+bAW
+bBW
+bBW
+bDR
+bZw
+btF
+buK
+bMX
+buK
+buK
+bHN
+buK
+boc
+bJK
+bKD
+boc
+caQ
+boc
+boc
+aad
aaa
+boc
+boc
+buK
+buK
+buK
aaa
aaa
aaa
@@ -77677,8 +77782,6 @@ aaa
aaa
aaa
aaa
-"}
-(89,1,1) = {"
aaa
aaa
aaa
@@ -77725,6 +77828,47 @@ aaa
aaa
aaa
aaa
+"}
+(88,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -77743,114 +77887,121 @@ aaa
aaa
aaa
aaa
-aac
-aad
-aad
-ahq
-ahM
-ain
-ain
-ajl
-ajZ
-ajZ
-alA
-amj
-amR
-amk
-anY
-aoG
-apm
-apX
-aqS
-arO
-asB
-atA
-auH
-avx
-awG
-ayh
-azd
-aAg
-aBm
-aCi
-aDd
-aDd
-azc
-aFf
-aGa
-aGa
-aGa
-aGa
-aGa
-aLv
-aMu
-aHQ
-aHQ
-aHQ
-aHQ
-aHQ
-aSq
-aTo
-aUl
-aVg
-aVZ
-aXe
-aYa
-aXY
-aZP
-baO
-bbL
-bcu
-bdh
-bdD
-bei
-beV
-bge
-bhn
-bit
-bjq
-bks
-bhn
-bge
-boE
-bpP
-bzP
-bzP
-btz
-bzP
-bpP
-bzP
-caf
-byL
-bpM
-bAD
-bBD
-bCI
-bvp
-caQ
-bCI
-bGl
-bGT
-bpM
-cby
-bvp
-bJw
-bJz
-bKi
-bpM
-bQU
-bpN
-bQU
-ccB
-bwx
-bwu
aaa
aaa
-bwu
-bQS
-bRj
-bvp
-bwu
+aaa
+aaa
+aaa
+aaa
+aaa
+aac
+aad
+aad
+afQ
+agl
+agM
+ahg
+ahK
+aiy
+ajp
+ajZ
+akI
+alq
+akJ
+amx
+ani
+anL
+alV
+apt
+aqq
+ahH
+ahH
+atg
+atY
+avf
+awF
+axD
+ayE
+azK
+aAG
+aBD
+aCn
+axB
+aDD
+agv
+aaa
+aaa
+aaa
+aHf
+aJQ
+aKN
+aLN
+aLN
+aNF
+aGp
+aGp
+aGp
+aRC
+aSA
+aTw
+aUo
+aVt
+aSA
+aXq
+aVm
+aVp
+baa
+baJ
+bbw
+bbw
+bcx
+bdk
+beu
+bfD
+bgI
+bhF
+biH
+bfD
+beu
+bmT
+btF
+bpo
+bpn
+brO
+bpn
+btF
+buM
+bxd
+boc
+boc
+bod
+bzS
+bAX
+bYX
+bDb
+bYX
+bZx
+bFi
+boc
+boc
+buK
+bZU
+bHO
+bIx
+boc
+bJL
+boc
+boc
+btF
+cbc
+boc
+aaa
+aaa
+buK
+bPh
+bEA
+bPT
+buK
aaa
aaa
aaa
@@ -77935,7 +78086,7 @@ aaa
aaa
aaa
"}
-(90,1,1) = {"
+(89,1,1) = {"
aaa
aaa
aaa
@@ -78003,111 +78154,111 @@ aaa
aac
aad
aad
-ahq
-ahN
-ain
-aiH
-ajm
+afQ
+agm
+agN
+agN
+ahL
+aiz
+aiz
aka
-ain
-alB
-amk
-amS
-any
-chm
-aoJ
-apn
-chn
-aqU
-arR
-asE
-atB
-auF
-avx
+akJ
+alr
+akK
+amy
+ang
+anM
+aox
+aps
+aqo
+arb
+asa
+ath
+atX
+avg
awG
-ayh
-azc
-aAh
-aBn
-aCj
-aDf
-aDP
-aEB
-aFg
-aGb
-aGb
-aGb
-aGb
-aKc
-aLw
-aMv
-aNv
-aOz
-aOz
-aOz
-aRm
-aSq
-aTo
-aUk
-aVh
-aWa
-aXf
-aUk
-aWW
-aZQ
-baP
-bbM
-bcv
-bdg
-bYV
-bct
-beW
-bge
-bhn
-bhn
-bjr
-bhn
-bhn
-bge
-boC
-bpQ
-bpS
-bpS
-bpS
-bpS
-bpS
-bwx
-boC
-bvp
-bpM
-bpM
-bpM
-bpM
-bDH
-bDH
-bpM
-bpM
-bpM
-bpM
-bJH
-bvp
-cbF
-bvp
-cbP
-cbU
-cbY
-bpM
-cbP
-bvp
-bMn
-bwu
+axC
+ayF
+azL
+aAH
+aBC
+aBC
+axB
+aDE
+agv
+agv
+agv
+agv
+aEz
+aJR
+chD
+aLM
+aGp
+chR
+aGp
+aGp
+aGp
+aRE
+aSB
+aTw
+aUp
+aVu
+aWq
+aWo
+aYf
+aZe
+bab
+baK
+bbx
+bbT
+bcy
+bdl
+beu
+bfD
+bgJ
+bhG
+biI
+bfD
+beu
+bmU
+bof
+byf
+byf
+brP
+byf
+bof
+byf
+bYv
+bxb
+boc
+byT
+bzT
+bAY
+btF
+bZg
+bAY
+bEB
+bFj
+boc
+bZO
+btF
+bHM
+bHP
+bIy
+boc
+bPk
+bod
+bPk
+caR
+buN
+buK
aaa
aaa
-bwu
-bQT
-bvp
-bRE
-bwu
+buK
+bPi
+bPz
+btF
+buK
aaa
aaa
aaa
@@ -78192,7 +78343,7 @@ aaa
aaa
aaa
"}
-(91,1,1) = {"
+(90,1,1) = {"
aaa
aaa
aaa
@@ -78260,111 +78411,111 @@ aaa
aac
aad
aad
-ahq
-ahO
-aio
-aiI
-ajn
-akb
+afQ
+agn
+agN
+ahh
+ahM
+aiA
+agN
akb
-alC
-aml
-amT
-anz
-anZ
-aoG
-apm
-cho
-aqQ
-arS
-asD
-atC
-auF
-avx
+akK
+als
+alY
+cfC
+anj
+anN
+cfD
+apu
+aqr
+are
+asb
+atf
+atX
+avg
awG
-ayh
-azc
-aAi
-aAe
-aCk
-aDg
-aDQ
-azc
-azY
-aGc
-ahV
-ahV
-ahV
-aGa
-aLx
-aMu
-aNw
-aOA
-aPn
-aQv
-aRn
-aSq
-aTp
-aUj
-aVi
-aWb
-aXg
-aUj
-aZR
-aZR
-baQ
-bYA
-bcw
-bdj
-bdE
-bZe
-bYA
-bge
-bge
-bge
-bge
-bge
-bge
-bge
-boC
-bpR
-bpS
-bsk
-btA
-bur
-bpS
-bwy
-boC
-bvp
-bpM
-bpO
-bBE
-bpM
-bDI
-bDI
-bpM
-bBE
-bpO
-bIl
-bpQ
-bvp
-cbF
-bpM
-bpM
-bpM
-bpM
-bpM
-bvp
-bvp
-bpM
-bpM
-bpM
-aad
-bpM
-bpM
-bFC
-bpM
-bpM
+axB
+ayG
+azM
+aAI
+aBE
+aCo
+aDa
+aDF
+aEA
+aEA
+aEA
+aEA
+aIA
+aJS
+aKP
+aLO
+aMS
+aMS
+aMS
+aPE
+aGp
+aRE
+aSA
+aTx
+aUq
+aVv
+aSA
+aVm
+aYg
+aZf
+bac
+baL
+bbw
+bXl
+baJ
+bdm
+beu
+bfD
+bfD
+bhH
+bfD
+bfD
+beu
+bmS
+bog
+boi
+boi
+boi
+boi
+boi
+buN
+bmS
+btF
+boc
+boc
+boc
+boc
+bBX
+bBX
+boc
+boc
+boc
+boc
+bHX
+btF
+bZV
+btF
+caf
+cak
+cao
+boc
+caf
+btF
+bKD
+buK
+aaa
+aaa
+buK
+bPj
+btF
+bPU
+buK
aaa
aaa
aaa
@@ -78449,7 +78600,7 @@ aaa
aaa
aaa
"}
-(92,1,1) = {"
+(91,1,1) = {"
aaa
aaa
aaa
@@ -78517,111 +78668,111 @@ aaa
aac
aad
aad
-ahq
-ahP
-aip
-aiJ
-ajo
+afQ
+ago
+agO
+ahi
+ahN
+aiB
+aiB
akc
-akP
-alB
-amm
-amU
-amk
-aoa
-aoK
-api
-apZ
-aqV
-arQ
-ajh
-ajh
-auG
-avx
+akL
+alt
+alZ
+amz
+ang
+anM
+cfE
+apq
+aqs
+ard
+asc
+atf
+atX
+avg
awG
-ayh
-azc
-azc
-azc
-azc
-azc
-azc
-azc
-ahV
-ahV
-ahV
-bel
-aHS
-aGa
-aGa
-aMw
-aNx
-aOB
-aOB
-aOB
-aRo
-aSr
-aGa
-aUj
-aUk
-aWc
-aUk
-aUj
-aED
-aED
-baR
-bYA
-bbK
-bYA
-bYA
-bbK
-bYA
-bgf
-bhs
-biv
-biv
-bku
-biv
-biv
-boF
-bpS
-bpS
-bsl
-btB
-bus
-bpS
-bpS
-bxy
-byM
-bzP
-bzP
-bzP
-bzP
-bzP
-bzP
-bzP
-bzP
-bGU
-bpM
-bpM
-bvp
-cbF
-bpM
-cbQ
-cbV
-cbZ
-bpM
-bpM
-bvp
-bOE
-bPi
-bpM
-aad
-aad
-bwu
-bvp
-bwu
+axB
+ayH
+ayD
+aAJ
+aBF
+aCp
+axB
+ayx
+aEB
+agv
+agv
+agv
+aEz
+aJT
+aKO
+aLP
+aMT
+aNG
+aOO
+aPF
+aGp
+aRF
+aSz
+aTy
+aUr
+aVw
+aSz
+aYh
+aYh
+aZg
+bWQ
+baM
+bbz
+bbU
+bXu
+bWQ
+beu
+beu
+beu
+beu
+beu
+beu
+beu
+bmS
+boh
+boi
+bqA
+brQ
+bsH
+boi
+buO
+bmS
+btF
+boc
+boe
+bzU
+boc
+bBY
+bBY
+boc
+bzU
+boe
+bGB
+bog
+btF
+bZV
+boc
+boc
+boc
+boc
+boc
+btF
+btF
+boc
+boc
+boc
aad
+boc
+boc
+bDS
+boc
+boc
aaa
aaa
aaa
@@ -78706,7 +78857,9 @@ aaa
aaa
aaa
"}
-(93,1,1) = {"
+(92,1,1) = {"
+aaa
+aaa
aaa
aaa
aaa
@@ -78771,113 +78924,111 @@ aaa
aaa
aac
aad
-agw
-agx
-agx
-ahq
-ahq
-ahq
-ahq
-ahq
-ahq
-ahq
-alD
-amn
-amV
-anA
-aob
-aoL
-apo
-cho
-aqQ
-arT
-asF
-atD
-auI
-avz
-awH
-ayi
-bWG
-aAj
-aBo
-azf
-aDh
-aDR
-aEC
-aFh
-azF
-azF
-azF
-azF
-aKd
-azF
-aAT
-aNy
-azF
-azF
-azF
-aRp
-aHo
-azF
-aEC
-azF
-aWd
-azF
-azF
-azF
-azF
-baS
-azF
-azF
-bdk
-bdF
-bej
-beX
-beX
-bht
-beX
-beX
-beX
-beX
-beX
-beX
-bpS
-bqZ
-bsm
-btC
-but
-bvq
-bpS
-bvp
-byN
-bvp
-bvp
-bBF
-bvp
-bvp
-bvp
-bFC
-bGm
-cbn
-bHy
-bHy
-bHy
-cbG
-bvp
-bvp
-bvp
-cca
-bMV
-bvp
-bvp
-bvp
-bGR
-bpM
+aad
+afQ
+agp
+agP
+ahj
+ahO
+aiC
+ajp
+akb
+akM
+alu
+akK
+amA
+ank
+anI
+aoz
+apv
+aqq
+ahH
+ahH
+atg
+atX
+avg
+awG
+axB
+axB
+axB
+axB
+axB
+axB
+axB
+agv
+agv
+agv
+bcB
+aGr
+aEz
+aEz
+aKQ
+aLQ
+aMU
+aMU
+aMU
+aPG
+aQI
+aEz
+aSz
+aSA
+aUs
+aSA
+aSz
+aDc
+aDc
+aZh
+bWQ
+baa
+bWQ
+bWQ
+baa
+bWQ
+bev
+bfI
+bgL
+bgL
+biK
+bgL
+bgL
+bmV
+boi
+boi
+bqB
+brR
+bsI
+boi
+boi
+bvO
+bxc
+byf
+byf
+byf
+byf
+byf
+byf
+byf
+byf
+bFk
+boc
+boc
+btF
+bZV
+boc
+cag
+cal
+cap
+boc
+boc
+btF
+bMU
+bNy
+boc
aad
aad
-bwu
-byL
-bwu
+buK
+btF
+buK
aad
aaa
aaa
@@ -78963,7 +79114,7 @@ aaa
aaa
aaa
"}
-(94,1,1) = {"
+(93,1,1) = {"
aaa
aaa
aaa
@@ -79026,118 +79177,118 @@ aaa
aaa
aaa
aaa
-aac
+aac
+aad
+aeW
+aeX
+aeX
+afQ
+afQ
+afQ
+afQ
+afQ
+afQ
+afQ
+akd
+akN
+alv
+ama
+amB
+anl
+anO
+cfE
+apq
+aqt
+arf
+asd
+ati
+atZ
+avh
+awH
+bUW
+ayI
+azN
+axE
+aBG
+aCq
+aDb
+aDG
+aye
+aye
+aye
+aye
+aIB
+aye
+azs
+aLR
+aye
+aye
+aye
+aPH
+aye
+aye
+aDb
+aye
+aUt
+aye
+aye
+aye
+aye
+aZi
+aye
+aye
+bbA
+bbV
+bcz
+bdn
+bdn
+bfJ
+bdn
+bdn
+bdn
+bdn
+bdn
+bdn
+boi
+bpp
+bqC
+brS
+bsJ
+btG
+boi
+btF
+bxd
+btF
+btF
+bzV
+btF
+btF
+btF
+bDS
+bEC
+bZD
+bFO
+bFO
+bFO
+bZW
+btF
+btF
+btF
+caq
+bLl
+btF
+btF
+btF
+bFh
+boc
+aad
+aad
+buK
+bxb
+buK
+aad
+aaa
aaa
-agw
-agJ
-agX
-ahr
-ahQ
-aiq
-aiK
-ajp
-akd
-bWm
-alE
-akQ
-amW
-anB
-aoc
-agw
-app
-apZ
-aqW
-arU
-apW
-apW
-auJ
-avx
-awI
-ayj
-avx
-aAk
-avx
-avx
-avx
-aDS
-aED
-aFi
-aGd
-aBT
-aBT
-aBT
-aKe
-aBT
-aBT
-aNz
-aMS
-aMS
-aMS
-aRq
-aKN
-aBU
-aEQ
-aBU
-aWe
-aXh
-aBU
-aBU
-aBU
-baT
-aBU
-bcx
-bdl
-bdG
-bek
-beY
-bgg
-bhu
-beX
-bjs
-bkv
-blQ
-bni
-boG
-biw
-bra
-bsn
-bkw
-buu
-bvr
-bpS
-bxz
-byO
-bxz
-bxz
-bxz
-bxz
-bxz
-bxz
-bxz
-bxz
-bGV
-bHz
-bpM
-bpM
-bJA
-bpM
-bpM
-bLx
-bMo
-bMW
-bpM
-byL
-bvp
-bvp
-bpM
-bpM
-bpM
-bpM
-bvp
-bpM
-bpM
-bwu
-bwu
aaa
aaa
aaa
@@ -79220,7 +79371,7 @@ aaa
aaa
aaa
"}
-(95,1,1) = {"
+(94,1,1) = {"
aaa
aaa
aaa
@@ -79285,116 +79436,116 @@ aaa
aaa
aac
aaa
-agx
-agK
-agX
-ahs
-bWb
-agw
-aiL
-ajq
+aeW
+afj
+afx
+afR
+agq
+agQ
+ahk
+ahP
+aiD
+bUC
+ake
ajq
-akR
-alF
-akR
-akT
-anC
-aoe
-agw
-bWt
-apY
-aqX
-arV
-asG
-asG
-auK
-avA
-awJ
-ayk
-azg
-azg
-bWJ
-azg
-azg
-aDT
-aEE
-aFj
-aGe
-aGV
-aHU
-aIL
-aKf
-aHU
-bXp
-aNA
-aHU
-aHU
-aQw
-aRr
-aSt
-aHU
-aUn
-aVj
-aWf
-bXS
-aHU
-aHU
-aVj
-aHU
-bbN
-bcy
-bdm
-aFk
-bZf
-beX
-bgh
-bhv
-biw
-bjt
-bZA
-bZA
-bnj
-boH
-biw
-brb
-bso
-btD
-bnm
-bvs
-bpS
-bpS
-byP
-bzQ
-bAE
-bBG
-bCJ
-bDJ
-bEM
-bFD
-byU
-bGW
-bHA
-bpM
-bIO
-bJB
-bKj
-bpM
-bpM
-bpM
-bpM
-bpM
-bIl
-bpM
-bvp
-bpO
-bQa
-bQy
-bqY
-bpN
-bvp
-bKo
-bSk
-bwu
+alw
+amb
+amC
+aeW
+anP
+aoz
+apw
+aqu
+aow
+aow
+atj
+atX
+avi
+awI
+atX
+ayJ
+atX
+atX
+atX
+aCr
+aDc
+aDH
+aEC
+aAs
+aAs
+aAs
+aIC
+aAs
+aAs
+aLS
+aLm
+aLm
+aLm
+aPI
+aAt
+aAt
+aDp
+aAt
+aUu
+aVx
+aAt
+aAt
+aAt
+aZj
+aAt
+baN
+bbB
+bbW
+bcA
+bdo
+bew
+bfK
+bdn
+bhI
+biL
+bkg
+bly
+bmW
+bgM
+bpq
+bqD
+biM
+bsK
+btH
+boi
+bvP
+bxe
+bvP
+bvP
+bvP
+bvP
+bvP
+bvP
+bvP
+bvP
+bFl
+bFP
+boc
+boc
+bHQ
+boc
+boc
+bJN
+bKE
+bLm
+boc
+bxb
+btF
+btF
+boc
+boc
+boc
+boc
+btF
+boc
+boc
+buK
+buK
aaa
aaa
aaa
@@ -79477,7 +79628,7 @@ aaa
aaa
aaa
"}
-(96,1,1) = {"
+(95,1,1) = {"
aaa
aaa
aaa
@@ -79542,116 +79693,116 @@ aaa
aaa
aac
aaa
-agx
-agK
-agX
-agX
-agK
-agw
-aiM
+aeX
+afk
+afx
+afS
+bUr
+aeW
+ahl
+ahQ
+ahQ
ajr
-ajq
-akS
-alG
-amp
-amX
-anC
-aoe
-agx
-api
-apZ
-aqY
-ajh
-asH
-atE
-ajh
-avx
-avx
-ayl
-azh
-azh
-azh
-azh
-azh
-azh
-azh
-bWX
-aBT
-aGW
-aHV
-aIM
-aKg
-aHW
-aHV
-aNB
-aOC
-aEj
-aIf
-aRs
-aSu
-aSu
-aUo
-aSu
-aSu
-aUo
-bXX
-bXX
-aSu
-aSu
-bYB
-bcz
-aBT
-bdH
-ayN
-beX
-bgi
-bhw
-bix
-bju
-bkx
-blR
-bnk
-boI
-bpT
-brc
-bsp
-btE
-buv
-bvt
-bwz
-bpS
-byQ
-bzR
-bAF
-bBH
-bCK
-bDK
-bEN
-bFE
-bxz
-bGX
-bHB
-bIm
-bIP
-bJC
-bKk
-bpM
-bLy
-bMp
-bpM
-bvp
-bvp
-bOF
-bvp
-bvp
-bvp
-bvp
-bpN
-bQU
-bpN
-bRP
-bSl
-bwu
+akf
+ajr
+ajt
+amc
+amE
+aeW
+bUJ
+aoy
+apx
+aqv
+arg
+arg
+atk
+aua
+avj
+awJ
+axF
+axF
+bUZ
+axF
+axF
+aCs
+aDd
+aDI
+aED
+aFu
+aGt
+aHk
+aID
+aGt
+bVF
+aLT
+aGt
+aGt
+aOP
+aPJ
+aQK
+aGt
+aSD
+aTz
+aUv
+bWi
+aGt
+aGt
+aTz
+aGt
+bad
+baO
+bbC
+aDJ
+bXv
+bdn
+bex
+bfL
+bgM
+bhJ
+bXQ
+bXQ
+blz
+bmX
+bgM
+bpr
+bqE
+brT
+blC
+btI
+boi
+boi
+bxf
+byg
+byU
+bzW
+bAZ
+bBZ
+bDc
+bDT
+bxk
+bFm
+bFQ
+boc
+bHe
+bHR
+bIz
+boc
+boc
+boc
+boc
+boc
+bGB
+boc
+btF
+boe
+bOq
+bOO
+bpo
+bod
+btF
+bIE
+bQA
+buK
aaa
aaa
aaa
@@ -79734,7 +79885,7 @@ aaa
aaa
aaa
"}
-(97,1,1) = {"
+(96,1,1) = {"
aaa
aaa
aaa
@@ -79799,116 +79950,116 @@ aaa
aaa
aac
aaa
-agx
-agK
-agX
-agX
-agK
-agw
-aiN
-ajr
-ajq
-akT
-alH
-bWp
-bWp
-anD
-aof
-aoM
-apq
-aqa
-aqW
-ajh
-asI
-atF
-auL
-avx
-avx
-ayl
-azh
-aAl
-aBp
-aCm
-aDi
-aDU
-aEF
-bWX
-aBT
-aGX
-aHW
-aIN
-aKh
-aLy
-aHV
-aIf
-aIf
-aIf
-aIf
-aRt
-aSu
-aTq
-aUp
-aSu
-aWg
-aXi
-aYb
-aZf
-aZT
-baU
-bbO
-bcA
-azF
-aFo
-bZg
-beX
-bgj
-bhx
-biw
-bjv
-bky
-blS
-bnl
-boJ
-bpU
-brd
-bsq
+aeX
+afk
+afx
+afx
+afk
+aeW
+ahm
+ahR
+ahQ
+ajs
+akg
+akP
+alx
+amc
+amE
+aeX
+anI
+aoz
+apy
+ahH
+arh
+ase
+ahH
+atX
+atX
+awK
+axG
+axG
+axG
+axG
+axG
+axG
+axG
+bVn
+aAs
+aFv
+aGu
+aHl
+aIE
+aGv
+aGu
+aLU
+aMV
+aCI
+aGE
+aPK
+aQL
+aQL
+aSE
+aQL
+aQL
+aSE
+bWn
+bWn
+aQL
+aQL
+bWR
+baP
+aAs
+bbX
+axm
+bdn
+bey
+bfM
+bgN
+bhK
+biN
+bkh
+blA
+bmY
+boj
+bps
+bqF
+brU
+bsL
+btJ
+buP
+boi
+bxg
+byh
+byV
+bzX
+bBa
+bCa
+bDd
+bDU
+bvP
+bFn
+bFR
+bGC
+bHf
+bHS
+bIA
+boc
+bJO
+bKF
+boc
btF
-buw
-bvu
-bwA
-bpS
-byR
-bzS
-bAG
-bBI
-bCJ
-bCJ
-bCJ
-bCJ
-bxz
-bGY
-bpM
-bpM
-bpM
-bpM
-bpM
-bpM
-bLz
-ccb
-bpM
-bvp
-bpM
-bpM
-bwu
-bpM
-bwu
-bpM
-bwu
-bpM
-bpM
-bRQ
-bpM
-bpM
+btF
+bMV
+btF
+btF
+btF
+btF
+bod
+bPk
+bod
+bQf
+bQB
+buK
aaa
aaa
aaa
@@ -79991,7 +80142,7 @@ aaa
aaa
aaa
"}
-(98,1,1) = {"
+(97,1,1) = {"
aaa
aaa
aaa
@@ -80055,116 +80206,117 @@ aaa
aaa
aaa
aac
-aad
-agw
-agL
-agX
-agX
-agK
-agw
-aiO
-bWg
-ajq
-akR
-alF
-akR
-akT
-anE
-aog
-agx
-apr
-aqb
-aqS
-arW
-asJ
-atG
-auM
-avx
+aaa
+aeX
+afk
+afx
+afx
+afk
+aeW
+ahn
+ahR
+ahQ
+ajt
+akh
+bUF
+bUF
+amd
+amF
+anm
+anQ
+aoA
+apw
+ahH
+ari
+asf
+atl
+atX
+atX
awK
-aym
-azh
-aAm
-aBq
-aCn
-aDj
-aDj
-aEG
-aFl
-aGf
-aGY
-aHX
-aIO
-aKi
-aLz
-aHV
-aNC
-aOD
-aPo
-aPo
-aRu
-aSv
-aTr
-aUq
-aVk
-aWh
-aXj
-aWh
-aZg
-aZU
-aSu
-bbP
-bcB
-aBT
-aFk
-bZg
-beX
-beX
-beX
-beX
-bjw
-bky
-blT
-bZF
-boK
-bpS
-bre
-bsr
-btG
-bux
-bvv
-bwB
-bpS
-byS
-bzT
-bAH
-bBH
-bCL
-bDK
-bEN
-bFF
-bxz
-bGY
-bHC
-bpM
-bIQ
-bJD
-bKl
-bpM
-bpN
-bvp
-bpM
-bND
-bpM
-bOG
-bOG
-bOG
-bOH
-bOG
-bOG
-bOG
-bwu
-bvp
-bwu
+axG
+ayK
+azO
+aAL
+aBH
+aCt
+aDe
+bVn
+aAs
+aFw
+aGv
+aHm
+aIF
+aJU
+aGu
+aGE
+aGE
+aGE
+aGE
+aPL
+aQL
+aRG
+aSF
+aQL
+aUw
+aVy
+aWr
+aXv
+aYj
+aZk
+bae
+baQ
+aye
+aDN
+bXw
+bdn
+bez
+bfN
+bgM
+bhL
+biO
+bki
+blB
+bmZ
+bok
+bpt
+bqG
+brV
+bsM
+btK
+buQ
+boi
+bxh
+byi
+byW
+bzY
+bAZ
+bAZ
+bAZ
+bAZ
+bvP
+bFo
+boc
+boc
+boc
+boc
+boc
+boc
+bJP
+car
+boc
+btF
+boc
+boc
+buK
+boc
+buK
+boc
+buK
+boc
+boc
+bQg
+boc
+boc
aaa
aaa
aaa
@@ -80179,7 +80331,6 @@ aaa
aaa
aaa
aaa
-bLt
aaa
aaa
aaa
@@ -80248,7 +80399,7 @@ aaa
aaa
aaa
"}
-(99,1,1) = {"
+(98,1,1) = {"
aaa
aaa
aaa
@@ -80312,117 +80463,116 @@ aaa
aaa
aaa
aac
-aaa
-agx
-agK
-agX
-agX
-bWc
-agw
-aiP
-bWh
-ajq
-akU
-alI
-amq
-amY
-anF
-aoh
-agw
+aad
+aeW
+afl
+afx
+afx
+afk
+aeW
+aho
+bUw
+ahQ
+ajr
+akf
+ajr
+ajt
+ame
+amG
+aeX
+anR
+aoB
aps
-aqc
-aqZ
-ajh
-asK
-atH
-auN
-avx
+aqw
+arj
+asg
+atm
+atX
+avk
awL
-avx
-azh
-aAn
-aBr
-aBs
-aBs
-aDV
-aEF
-bWX
-aGg
-aGX
-aHW
-aIP
-aKj
-aLA
-aHV
-aND
-aOE
-aOF
-aOF
-aRv
-aSw
-aTs
-aUr
-aSu
-aWi
-aXk
-aYc
-aZh
-aZV
-aSu
-bbQ
-bcB
-aBT
-aFk
-bZh
-bem
-bgk
-bhy
-beX
-beX
-bkz
-blU
-bnn
-beX
-bpS
-bpS
-bpS
-bpS
-bpS
-bpS
-bpS
-bpS
-buy
-buy
-bAI
-bBI
-bCJ
-bDL
-bEM
-bFG
-byU
-bGZ
-bHC
-bHC
-bvp
-bGl
-bvp
-bpR
-bvp
-bvp
-bpM
-bFC
-bpM
-bOH
-bOH
-bOH
-bQb
-bOG
-bOG
-bOG
-bwu
-bRR
-bwu
-aaa
+axG
+ayL
+azP
+aAM
+aBI
+aBI
+aDf
+aDK
+aEE
+aFx
+aGw
+aHn
+aIG
+aJV
+aGu
+aLV
+aMW
+aNH
+aNH
+aPM
+aQM
+aRH
+aSG
+aTA
+aUx
+aVz
+aUx
+aXw
+aYk
+aQL
+baf
+baR
+aAs
+aDJ
+bXw
+bdn
+bdn
+bdn
+bdn
+bhM
+biO
+bkj
+bXV
+bna
+boi
+bpu
+bqH
+brW
+bsN
+btL
+buR
+boi
+bxi
+byj
+byX
+bzX
+bBb
+bCa
+bDd
+bDV
+bvP
+bFo
+bFS
+boc
+bHg
+bHT
+bIB
+boc
+bod
+btF
+boc
+bLT
+boc
+bMW
+bMW
+bMW
+bMX
+bMW
+bMW
+bMW
+buK
+btF
+buK
aaa
aaa
aaa
@@ -80437,6 +80587,7 @@ aaa
aaa
aaa
aaa
+bJJ
aaa
aaa
aaa
@@ -80505,7 +80656,7 @@ aaa
aaa
aaa
"}
-(100,1,1) = {"
+(99,1,1) = {"
aaa
aaa
aaa
@@ -80570,115 +80721,115 @@ aaa
aaa
aac
aaa
-agx
-agM
-agX
-aht
-ahR
-air
-aiQ
-ajs
-ake
-akV
-alJ
-amr
-amZ
-anG
-aoi
-ajh
-ajh
-aqd
-ara
-ajh
-asL
-atI
-asL
-avB
-awM
-ayn
-azh
-aAo
-bWK
-aBs
-aBs
-aDW
-azh
-bWY
-aGg
-aGX
-aHV
-aHV
-aHV
-aHV
-aHV
-aNE
-aOF
-aOF
-aOF
-aRw
-aSu
-aSu
-aSu
-aSu
-aSu
-aSu
-aSu
-aSu
-aSu
-aSu
-aOF
-bcB
-aBT
-bYW
-bem
-bem
-bgl
-bhz
-biy
-bjx
-bkA
-blV
-bno
-boL
-bpV
-brf
-bss
-btH
-buy
-bvw
-bwC
-bxA
-bxz
-bzU
-bAJ
-bBJ
-cay
-bCJ
-bCJ
-bCJ
-bxz
-bGY
-bvp
-bFC
-bIR
-bJE
-bvp
-bpM
-bvp
-bvp
-bpM
-bFC
-bpM
-bOG
-bOG
-bOG
-bQc
-bOH
-bOH
-bOH
-bwu
-bvp
-bwu
+aeX
+afk
+afx
+afx
+bUs
+aeW
+ahp
+bUx
+ahQ
+aju
+aki
+akQ
+aly
+amf
+amH
+aeW
+anS
+aoC
+apz
+ahH
+ark
+ash
+atn
+atX
+avl
+atX
+axG
+ayM
+azQ
+azR
+azR
+aCu
+aDe
+bVn
+aEF
+aFw
+aGv
+aHo
+aIH
+aJW
+aGu
+aLW
+aMX
+aMY
+aMY
+aPN
+aQN
+aRI
+aSH
+aQL
+aUy
+aVA
+aWs
+aXx
+aYl
+aQL
+bag
+baR
+aAs
+aDJ
+bXx
+bcC
+beA
+bfO
+bdn
+bdn
+biP
+bkk
+blD
+bdn
+boi
+boi
+boi
+boi
+boi
+boi
+boi
+boi
+bsO
+bsO
+byY
+bzY
+bAZ
+bCb
+bDc
+bDW
+bxk
+bFp
+bFS
+bFS
+btF
+bEB
+btF
+boh
+btF
+btF
+boc
+bDS
+boc
+bMX
+bMX
+bMX
+bOr
+bMW
+bMW
+bMW
+buK
+bQh
+buK
aaa
aaa
aaa
@@ -80762,7 +80913,7 @@ aaa
aaa
aaa
"}
-(101,1,1) = {"
+(100,1,1) = {"
aaa
aaa
aaa
@@ -80827,115 +80978,115 @@ aaa
aaa
aac
aaa
-agx
-agN
-agX
-ahu
+aeX
+afm
+afx
+afT
+agr
+agR
+ahq
ahS
-agw
-agw
-agw
-akf
-akW
-alK
-akW
-ana
-agw
-aoj
-ajh
-apt
-aqe
-arb
-arX
-asM
-atJ
-auO
-auO
-auO
-auO
-azi
-aAp
-bWK
-aBs
-aBs
-aDX
-azh
-aFm
-aGg
-aGX
-aHY
-aIQ
-aKk
-aIb
-aKy
-aNE
-aOF
-aPp
-bXt
-aRx
-aOF
-aTt
-aZW
-aUs
-aWj
-aUs
-aUs
-aUs
-bYo
-baV
-aZi
+aiE
+ajv
+akj
+akR
+alz
+amg
+amI
+ahH
+ahH
+aoD
+apA
+ahH
+arl
+asi
+arl
+aub
+avm
+awM
+axG
+ayN
+bVa
+azR
+azR
+aCv
+axG
+bVo
+aEF
+aFw
+aGu
+aGu
+aGu
+aGu
+aGu
+aLX
+aMY
+aMY
+aMY
+aPO
+aQL
+aQL
+aQL
+aQL
+aQL
+aQL
+aQL
+aQL
+aQL
+aQL
+aMY
+baR
+aAs
+bXm
bcC
-azE
-bdI
-ben
-beZ
-bgm
-bhA
-biy
-bjy
-bkB
-blW
-bnp
-bnp
-bpW
-brg
-bst
-btI
-buz
-bvx
-bwD
-bxB
-byT
-bzV
-bAK
-bBI
-bCM
-bDM
-bEO
-bFH
-bGn
-bHa
-bpR
-bpM
-bFN
-bGl
-bKm
-bpM
-bLA
-bMq
-bpM
-bNE
-bpM
-bOG
-bOG
-bOG
-bOH
-bOG
-bOG
-bOG
-bwu
-bvp
-bwu
+bcC
+beB
+bfP
+bgO
+bhN
+biQ
+bkl
+blE
+bnb
+bol
+bpv
+bqI
+brX
+bsO
+btM
+buS
+bvQ
+bvP
+byk
+byZ
+bzZ
+bYO
+bAZ
+bAZ
+bAZ
+bvP
+bFo
+btF
+bDS
+bHh
+bHU
+btF
+boc
+btF
+btF
+boc
+bDS
+boc
+bMW
+bMW
+bMW
+bOs
+bMX
+bMX
+bMX
+buK
+btF
+buK
aaa
aaa
aaa
@@ -81019,7 +81170,7 @@ aaa
aaa
aaa
"}
-(102,1,1) = {"
+(101,1,1) = {"
aaa
aaa
aaa
@@ -81084,118 +81235,118 @@ aaa
aaa
aac
aaa
-agw
-agN
-agX
-ahv
-ahT
-agw
-aiR
-ais
-akg
-ais
-alL
-ais
-anb
-ais
-aok
-ajh
-apu
-aqf
-arc
-apu
-asL
-atK
-asL
-avC
-awN
-ayo
-azi
-aAq
-aBs
-aBr
-aBs
-aDY
+aeX
+afn
+afx
+afU
+ags
+aeW
+aeW
+aeW
+aiF
+ajw
+akk
+ajw
+alA
+aeW
+amJ
+ahH
+anT
+aoE
+apB
+aqx
+arm
+asj
+ato
+ato
+ato
+ato
+axH
+ayO
+bVa
+azR
+azR
+aCw
+axG
+aDL
aEF
-bWZ
-aGh
-aGZ
-aHZ
-aIR
-aKl
-aIb
-aMy
-aNF
-aOG
-aPq
-aQy
-aRy
-aOF
-aTu
-bXB
-aUt
-aUt
-bXT
-aUt
-aUt
-aUt
-bYu
-aZi
-aGX
-aBT
-bYW
-bem
-bfa
-bem
-bhB
-biy
-bjz
-bkC
-blX
-bnq
-boM
-bpX
-brh
-bsu
-btJ
-buA
-bvy
-bwE
-bxC
-byU
-bzW
-bAL
-bBK
-bCN
-bDN
-caR
-bFI
-byU
-bHb
-bHD
-bpM
-bIS
-bJF
-bKn
-bpM
-bpM
-bpM
-bpM
-bvp
-bpM
-bpM
-bwu
-bpM
-bwu
-bpM
-bwu
-bpM
-bpM
-bRS
-bpM
-bpM
-bpM
-bpM
+aFw
+aGx
+aHp
+aII
+aGA
+aIW
+aLX
+aMY
+aNI
+bVJ
+aPP
+aMY
+aRJ
+aYm
+aSI
+aUz
+aSI
+aSI
+aSI
+bWE
+aZl
+aXy
+baS
+ayd
+bbY
+bcD
+bdp
+beC
+bfQ
+bgO
+bhO
+biR
+bkm
+blF
+blF
+bom
+bpw
+bqJ
+brY
+bsP
+btN
+buT
+bvR
+bxj
+byl
+bza
+bzY
+bBc
+bCc
+bDe
+bDX
+bED
+bFq
+boh
+boc
+bEd
+bEB
+bIC
+boc
+bJQ
+bKG
+boc
+bLU
+boc
+bMW
+bMW
+bMW
+bMX
+bMW
+bMW
+bMW
+buK
+btF
+buK
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -81276,7 +81427,8 @@ aaa
aaa
aaa
"}
-(103,1,1) = {"
+(102,1,1) = {"
+aaa
aaa
aaa
aaa
@@ -81313,7 +81465,6 @@ aaa
aaa
aaa
aaa
-aab
aaa
aaa
aaa
@@ -81340,119 +81491,119 @@ aaa
aaa
aaa
aac
-aad
-agw
-agx
-agx
-agw
-agw
-agw
-bWe
-ais
-akh
-akX
-alM
-ams
-anc
-ais
-aok
-ajh
-apv
-aqg
-ard
-apu
-asL
-atL
-auP
-avD
-awO
-ayp
-azi
-aAm
-aBs
-aCo
-aDk
-aDk
-aEH
-bXa
-aGi
-aHa
-aIa
-aIS
-aKm
-aIb
-aMz
-aNG
-aOF
-aPr
-aQz
-aRz
-aOF
-aTu
-aUt
-bXF
-bXM
-bXM
-bXM
-aXm
-aZX
-baW
-aZi
-aGX
-aBT
-bdJ
-beo
-bfb
-beo
-beo
-beo
-beo
-bkD
-beo
-bnr
-boN
-bpY
-bZL
-bnr
-bes
-bes
-bes
-bes
-bes
-bes
-bxz
-bAM
-bBI
-bCO
-bBI
-bEP
-bFJ
-bxz
-bxy
-bxx
-bpM
-bpM
-bpM
-bpM
-bpM
-bLB
-bpR
-bpM
-bvp
-bpM
-bOI
-bvp
-bvp
-bvp
-bQz
-bQU
-bpN
-bvp
-bvp
-bvp
-byL
-bvp
-bwu
+aaa
+aeW
+afn
+afx
+afV
+agt
+aeW
+ahr
+agS
+aiG
+agS
+akl
+agS
+alB
+agS
+amK
+ahH
+anU
+aoF
+apC
+anU
+arl
+ask
+arl
+auc
+avn
+awN
+axH
+ayP
+azR
+azQ
+azR
+aCx
+aDe
+bVp
+aEG
+aFy
+aGy
+aHq
+aIJ
+aGA
+aKS
+aLY
+aMZ
+aNJ
+aOR
+aPQ
+aMY
+aRK
+bVR
+aSJ
+aSJ
+bWj
+aSJ
+aSJ
+aSJ
+bWK
+aXy
+aFw
+aAs
+bXm
+bcC
+bdq
+bcC
+bfR
+bgO
+bhP
+biS
+bkn
+blG
+bnc
+bon
+bpx
+bqK
+brZ
+bsQ
+btO
+buU
+bvS
+bxk
+bym
+bzb
+bAa
+bBd
+bCd
+bZh
+bDY
+bxk
+bFr
+bFT
+boc
+bHi
+bHV
+bID
+boc
+boc
+boc
+boc
+btF
+boc
+boc
+buK
+boc
+buK
+boc
+buK
+boc
+boc
+bQi
+boc
+boc
+boc
+boc
aaa
aaa
aaa
@@ -81533,9 +81684,7 @@ aaa
aaa
aaa
"}
-(104,1,1) = {"
-aaa
-aaa
+(103,1,1) = {"
aaa
aaa
aaa
@@ -81572,9 +81721,9 @@ aaa
aaa
aaa
aaa
+aab
aaa
aaa
-aav
aaa
aaa
aaa
@@ -81598,124 +81747,120 @@ aaa
aaa
aaa
aaa
+aac
aad
-aad
-aad
-aad
-aad
-aad
-bWe
-ajt
-bWl
-akY
-alN
-amt
-and
-ais
-aol
-ajh
-apu
-aqh
-are
-apu
-asL
-atM
-asL
-avE
-awP
-ayq
-azi
-aAr
-aBt
-aCp
-aDl
-aDZ
-aEF
-bWX
-aGg
-aGX
-aIb
-aIT
-aKn
-aIb
-aMA
-aNH
-aOF
-aPs
-aQA
-aQx
-aOF
-aTw
-aUt
-bXF
-aWk
-aXl
-aYd
-bYg
-aZY
-baW
-aZi
-aGX
-aBT
-bYW
-beo
-bfc
-bgn
-bhC
-bgn
-bgn
-bkE
-beo
-bns
-boO
-bpZ
-brj
-bsv
-bet
-buB
-bvz
-bwF
-bxD
-bes
-bxz
-bAN
-bBL
-bCP
-bDO
-bEQ
-bxz
-bxz
-bpR
-bHE
-bDb
-bDb
-bJG
-bDb
-bDb
-bDb
-bDb
-bDb
-bDb
-bOh
-boC
-bPj
-bFC
-bPk
-bPk
-bPk
-bPk
-bPk
-bPk
+aeW
+aeX
+aeX
+aeW
+aeW
+aeW
+bUu
+agS
+aiH
+ajx
+akm
+akS
+alC
+agS
+amK
+ahH
+anV
+aoG
+apD
+anU
+arl
+asl
+atp
+aud
+avo
+awO
+axH
+ayL
+azR
+aAN
+aBJ
+aBJ
+aDg
+bVq
+aEH
+aFz
+aGz
+aHr
+aIK
+aGA
+aKT
+aLZ
+aMY
+aNK
+aOS
+aPR
+aMY
+aRK
+aSJ
+bVV
+bWc
+bWc
+bWc
+aVC
+aYn
+aZm
+aXy
+aFw
+aAs
+bbZ
+bcE
+bdr
+bcE
+bcE
+bcE
+bcE
+biT
+bcE
+blH
+bnd
+boo
+bYb
+blH
+bcI
+bcI
+bcI
+bcI
+bcI
+bcI
+bvP
+bzc
+bzY
+bBe
+bzY
+bDf
+bDZ
+bvP
+bvO
+bvN
+boc
+boc
+boc
+boc
+boc
+bJR
+boh
+boc
+btF
+boc
+bMY
+btF
+btF
+btF
+bOP
bPk
-bvp
-bpM
-bpM
-bpM
-bpM
-aaa
-aaa
-aaa
-aaa
+bod
+btF
+btF
+btF
+bxb
+btF
+buK
aaa
aaa
aaa
@@ -81789,14 +81934,14 @@ aaa
aaa
aaa
aaa
-"}
-(105,1,1) = {"
aaa
aaa
aaa
aaa
aaa
aaa
+"}
+(104,1,1) = {"
aaa
aaa
aaa
@@ -81837,6 +81982,7 @@ aaa
aaa
aaa
aaa
+aar
aaa
aaa
aaa
@@ -81861,114 +82007,123 @@ aaa
aaa
aaa
aad
-bWe
-aju
-akj
-akZ
-alO
-amu
-ane
-ais
-aok
-ajh
-apu
-aqi
-arf
-arY
-asL
-asL
-asL
-avF
-awQ
-ayr
-azi
-azi
-azi
-azi
-azi
-azi
-azh
-aFk
-aGg
-aGX
-aIc
-aIc
-aIc
-aIc
-aJb
-aNI
-aOF
-aPt
-aQB
-aRA
-aSx
-aTx
-aUu
-bXG
-aWl
-bXU
-bXU
-bYh
-aZZ
-baX
-bbR
-bcD
-aBT
-bYW
-beo
-bfd
-bgo
-bfc
-bfc
-bjA
-bkF
-beo
-bnt
-boP
-bpZ
-brk
-bsy
-bes
-buC
-bfq
-bfq
-bxE
-bes
-buy
-bxz
-bxz
-bxz
-bxz
-bxz
-bxz
-bGo
-bDb
-bHF
-bvp
-chr
-bJH
-bKo
-bKX
-byL
-bMr
-bpM
-bpO
-bOi
-bOJ
-cbO
-bFC
-bNL
-bQA
-bQV
-ced
-bQV
-bRT
-bPk
-bvp
-cbP
-bvp
-cga
-bpM
+aad
+aad
+aad
+aad
+aad
+bUu
+ahT
+bUB
+ajy
+akn
+akT
+alD
+agS
+amL
+ahH
+anU
+aoH
+apE
+anU
+arl
+asm
+arl
+aue
+avp
+awP
+axH
+ayQ
+azS
+aAO
+aBK
+aCy
+aDe
+bVn
+aEF
+aFw
+aGA
+aHs
+aIL
+aGA
+aKU
+aMa
+aMY
+aNL
+aOT
+aOQ
+aMY
+aRM
+aSJ
+bVV
+aUA
+aVB
+aWt
+bWw
+aYo
+aZm
+aXy
+aFw
+aAs
+bXm
+bcE
+bds
+beD
+bfS
+beD
+beD
+biU
+bcE
+blI
+bne
+bop
+bpz
+bqL
+bcJ
+bsR
+btP
+buV
+bvT
+bcI
+bvP
+bzd
+bAb
+bBf
+bCe
+bDg
+bvP
+bvP
+boh
+bFU
+bBr
+bBr
+bHW
+bBr
+bBr
+bBr
+bBr
+bBr
+bBr
+bMx
+bmS
+bNz
+bDS
+bNA
+bNA
+bNA
+bNA
+bNA
+bNA
+bNA
+btF
+boc
+boc
+boc
+boc
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -81995,22 +82150,18 @@ aaa
aaa
aaa
aaa
-aad
aaa
aaa
aaa
aaa
-aad
aaa
aaa
aaa
aaa
-aad
aaa
aaa
aaa
aaa
-aad
aaa
aaa
aaa
@@ -82047,7 +82198,7 @@ aaa
aaa
aaa
"}
-(106,1,1) = {"
+(105,1,1) = {"
aaa
aaa
aaa
@@ -82118,114 +82269,114 @@ aaa
aaa
aaa
aad
-bWe
-ajv
-aki
-ala
-alP
-amv
-anf
-ais
-aom
-ajh
-ajh
-ajh
-ajh
-ajh
-ajh
-atN
-asL
-asL
-awR
-asL
-auO
-auO
-auO
-auO
-auO
-auO
-aEI
-aFk
-aGg
-aHb
-aIc
-aIU
-aKo
-aIc
-aJb
-aNJ
-aOF
-aPu
-aQx
-aRB
-aOF
-aTy
-aUt
-aUt
-aWm
-aUt
-aYe
-aUt
-baa
-baY
-aZi
-aGX
-aBT
-bYW
-beo
-bfe
-bgn
-bgn
-bgn
-bgn
-bkG
-beo
-bnt
-boQ
-bqa
-brk
-bsx
-bet
-buD
-bfq
-bwG
-bxF
-bes
-bzX
-bAO
-bes
-bzX
-bAO
-bes
-bFK
-bGp
-bHc
-bHc
-bHc
-bHc
-bHc
-bHc
-bHc
-bGm
-bpM
-bpM
-bNF
-bvp
-bGp
-bIl
-bvp
-bNL
-bQB
-bQW
-bRk
-bRF
-bRU
-bPk
-bvp
-bpM
-bQU
-cgb
-bpM
+bUu
+ahU
+aiJ
+ajz
+ako
+akU
+alE
+agS
+amK
+ahH
+anU
+aoI
+apF
+aqy
+arl
+arl
+arl
+auf
+avq
+awQ
+axH
+axH
+axH
+axH
+axH
+axH
+axG
+aDJ
+aEF
+aFw
+aGB
+aGB
+aGB
+aGB
+aHA
+aMb
+aMY
+aNM
+aOU
+aPS
+aQO
+aRN
+aSK
+bVW
+aUB
+bWk
+bWk
+bWx
+aYp
+aZn
+bah
+baT
+aAs
+bXm
+bcE
+bdt
+beE
+bds
+bds
+bhQ
+biV
+bcE
+blJ
+bnf
+bop
+bpA
+bqO
+bcI
+bsS
+bdG
+bdG
+bvU
+bcI
+bsO
+bvP
+bvP
+bvP
+bvP
+bvP
+bvP
+bEE
+bBr
+bFV
+btF
+cfH
+bHX
+bIE
+bJn
+bxb
+bKH
+boc
+boe
+bMy
+bMZ
+cae
+bDS
+bMb
+bOQ
+bPl
+cct
+bPl
+bQj
+bNA
+btF
+caf
+btF
+ceq
+boc
aaa
aaa
aaa
@@ -82250,41 +82401,24 @@ aaa
aaa
aaa
aaa
-acJ
-acJ
-bUl
-acJ
-acJ
-acJ
-acJ
-bUl
-acJ
-acJ
-acJ
-acJ
-bUl
-acJ
-acJ
-acJ
-acJ
-bUl
-acJ
-acJ
aaa
-acJ
aaa
+aad
aaa
aaa
aaa
aaa
+aad
aaa
aaa
aaa
aaa
+aad
aaa
aaa
aaa
aaa
+aad
aaa
aaa
aaa
@@ -82303,8 +82437,6 @@ aaa
aaa
aaa
aaa
-"}
-(107,1,1) = {"
aaa
aaa
aaa
@@ -82322,6 +82454,8 @@ aaa
aaa
aaa
aaa
+"}
+(106,1,1) = {"
aaa
aaa
aaa
@@ -82374,115 +82508,6 @@ aaa
aaa
aaa
aaa
-aad
-bWe
-ajw
-aki
-akY
-alQ
-akY
-ang
-ais
-aon
-aoN
-apw
-apw
-apw
-arZ
-asN
-apw
-auQ
-avG
-awS
-ays
-azj
-aAs
-aBu
-aCq
-aDm
-auO
-aEJ
-aFk
-aGi
-aHa
-aId
-aIV
-aKp
-aIc
-aJb
-aNK
-aOF
-aPv
-aQC
-aRC
-aOF
-aOF
-aUv
-aUt
-aWn
-aXm
-aOF
-aZi
-bab
-aZi
-aOF
-bcE
-bdn
-bYX
-bep
-bff
-bgp
-bgp
-bgp
-bgp
-bkH
-beo
-bnv
-boP
-bpZ
-brk
-bsy
-bes
-buE
-bvA
-boV
-bxG
-bes
-bzY
-bDP
-bes
-bzY
-bDP
-bes
-bFL
-bGp
-bHc
-cbw
-cbz
-cbz
-cbz
-cbL
-bHc
-bLC
-bMs
-bIl
-bHA
-bpN
-bGp
-bFC
-bvp
-bNL
-bQC
-bQC
-bQC
-bRF
-bRU
-bPk
-byL
-bpM
-bwu
-bpM
-bpM
aaa
aaa
aaa
@@ -82500,6 +82525,116 @@ aaa
aaa
aaa
aaa
+aad
+bUu
+ahV
+aiI
+ajA
+akp
+akV
+alF
+agS
+amM
+ahH
+ahH
+ahH
+ahH
+ahH
+ahH
+asn
+arl
+arl
+avr
+arl
+ato
+ato
+ato
+ato
+ato
+ato
+aDh
+aDJ
+aEF
+aFA
+aGB
+aHt
+aIM
+aGB
+aHA
+aMc
+aMY
+aNN
+aOQ
+aPT
+aMY
+aRO
+aSJ
+aSJ
+aUC
+aSJ
+aWu
+aSJ
+aYq
+aZo
+aXy
+aFw
+aAs
+bXm
+bcE
+bdu
+beD
+beD
+beD
+beD
+biW
+bcE
+blJ
+bng
+boq
+bpA
+bqN
+bcJ
+bsT
+bdG
+buW
+bvV
+bcI
+byn
+bze
+bcI
+byn
+bze
+bcI
+bEa
+bEF
+bFs
+bFs
+bFs
+bFs
+bFs
+bFs
+bFs
+bEC
+boc
+boc
+bLV
+btF
+bEF
+bGB
+btF
+bMb
+bOR
+bPm
+bPA
+bPV
+bQk
+bNA
+btF
+boc
+bPk
+cer
+boc
+aaa
aaa
aaa
aaa
@@ -82509,26 +82644,42 @@ aaa
aaa
aaa
aaa
-aad
aaa
aaa
aaa
aaa
-bOc
aaa
aaa
aaa
aaa
-aad
aaa
aaa
aaa
aaa
-aad
aaa
aaa
+abZ
+abZ
+bSB
+abZ
+abZ
+abZ
+abZ
+bSB
+abZ
+abZ
+abZ
+abZ
+bSB
+abZ
+abZ
+abZ
+abZ
+bSB
+abZ
+abZ
aaa
-acJ
+abZ
aaa
aaa
aaa
@@ -82561,7 +82712,7 @@ aaa
aaa
aaa
"}
-(108,1,1) = {"
+(107,1,1) = {"
aaa
aaa
aaa
@@ -82632,417 +82783,117 @@ aaa
aaa
aaa
aad
-bWe
-ajx
-akk
-alb
-alR
-amw
-ane
-bWe
-aoo
-anH
-anH
-anH
-anH
-anH
-asL
-atO
-auO
-avH
-awT
-ayt
-azk
-aAt
-aBv
-awV
-awV
-auO
-ayI
-aFp
-aGh
-aGZ
-aIe
-aIW
-aKq
-aIc
-aMB
-aNL
-aOH
-aOH
-aOH
-aOH
-aOH
-aOH
-aUw
-aUt
-aUt
-aXn
-aYf
-aZj
-bac
-aZj
-aZj
-aGX
-aBT
-bYW
-beo
-bZk
-bgq
-bhE
-biz
-bhD
-bkI
-beo
-bnw
-boS
-bpZ
-brl
-bsz
-bet
-buF
-biF
-boV
-bxH
-bes
-bzZ
-bAQ
-bes
-bCR
-bAQ
-bes
-bFM
-bGp
-bHc
-cbx
-bIn
-bIo
-bIp
-cbM
-bHc
-bvp
-bMn
-bIl
-bpQ
-bvp
-bGp
-bpM
-bvp
-bNL
-bQC
-bQC
-bRl
-bNL
-bNL
-bNL
-bNL
-bNL
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-bTT
-bUd
-bUd
-bUd
-bTT
-bTT
-bTT
-bTT
-bTT
-bUV
-bUV
-bUV
-bUV
-bUV
-bUV
-bUV
-bUV
-bUV
-bUV
-bUV
-bSv
-bUl
-aad
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(109,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-bdx
-bWe
-bWe
-akl
-alc
-alc
-alc
-anh
-bWe
-aop
-aoO
-aaa
-aaa
-aaa
-asa
-asO
-atP
-auO
-avI
-awU
-ayu
-azl
-aAu
-aBw
-aCr
-aDn
-auO
-auO
-aFq
-aGg
-bXk
-aIc
-aIc
-aIc
-aIc
-aJb
-aNL
-aOH
-aOH
-aQD
-aRD
-aSy
-aOH
-aUx
-aUt
-aWo
-aXn
-aYg
-aBT
-bYp
-aBT
-aBT
-aGX
-aBT
-bYW
-beo
-beo
-beo
-beo
-beo
-beo
-bkJ
-beo
-bnr
-boN
-bpY
-bri
-bnr
-bes
-bet
-bvB
-bwH
-bet
-bes
-bAa
-bAR
-bes
-bCS
-bDR
-bes
-bes
-bGp
-bHc
-bHH
-bIo
-bHG
-bJI
-bKp
-bHc
-bLD
-bLD
-bLD
-bLD
-bLD
-bGp
-bKF
-bPB
-bNL
-bQC
-bQC
-bRl
-bNL
-bRV
-bSm
-bSx
-bSJ
-bSQ
-bSQ
-bSQ
-bTo
-bSQ
-bSQ
-bSQ
-bSQ
-bTo
-bSQ
-bSQ
-bSQ
-bSQ
-bTo
-bSQ
-bSQ
-bSQ
-bSQ
-bTo
-bSQ
-bSQ
-bSQ
-bSQ
-bTo
-bSQ
-bSQ
-bSQ
-bTZ
-bUe
-bUm
-bUt
-bTT
-bUB
-bUI
-bUP
-bUd
-bUW
-bVc
-bVf
-bVm
-bVr
-bVw
-bVB
-bVF
-bVe
-bVL
-bUV
+bUu
+ahW
+aiI
+ajy
+akq
+ajy
+alG
+agS
+amN
+ann
+anW
+anW
+anW
+aqz
+arn
+anW
+atq
+aug
+avs
+awR
+axI
+ayR
+azT
+aAP
+aBL
+ato
+aDi
+aDJ
+aEH
+aFz
+aGC
+aHu
+aIN
+aGB
+aHA
+aMd
+aMY
+aNO
+aOV
+aPU
+aMY
+aMY
+aSL
+aSJ
+aUD
+aVC
+aMY
+aXy
+aYr
+aXy
+aMY
+baU
+bbD
+bXn
+bcF
+bdv
+beF
+beF
+beF
+beF
+biX
+bcE
+blL
+bnf
+bop
+bpA
+bqO
+bcI
+bsU
+btQ
+bnl
+bvW
+bcI
+byo
+bCf
+bcI
+byo
+bCf
+bcI
+bEb
+bEF
+bFs
+bZM
+bZP
+bZP
+bZP
+cab
+bFs
+bJS
+bKI
+bGB
+bFQ
+bod
+bEF
+bDS
+btF
+bMb
+bOS
+bOS
+bOS
+bPV
+bQk
+bNA
+bxb
+boc
+buK
+boc
+boc
+aaa
+aaa
aaa
-acJ
aaa
aaa
aaa
@@ -83066,19 +82917,60 @@ aaa
aaa
aaa
aaa
+aad
aaa
aaa
aaa
aaa
+bMs
aaa
aaa
aaa
aaa
-"}
-(110,1,1) = {"
+aad
+aaa
aaa
aaa
aaa
+aad
+aaa
+aaa
+aaa
+abZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(108,1,1) = {"
+aaa
aaa
aaa
aaa
@@ -83147,113 +83039,116 @@ aaa
aaa
aaa
aaa
-bdx
aad
+bUu
+ahX
+aiK
+ajB
+akr
+akW
+alE
+bUu
+amO
+amh
+amh
+amh
+amh
+amh
+arl
+aso
+ato
+auh
+avt
+awS
+axJ
+ayS
+azU
+avv
+avv
+ato
+axh
+aDO
+aEG
+aFy
+aGD
+aHv
+aIO
+aGB
+aKV
+aMe
+aNa
+aNa
+aNa
+aNa
+aNa
+aNa
+aSM
+aSJ
+aSJ
+aVD
+aWv
+aXz
+aYs
+aXz
+aXz
+aFw
+aAs
+bXm
+bcE
+bXA
+beG
+bfU
+bgP
+bfT
+biY
+bcE
+blM
+bni
+bop
+bpB
+bqP
+bcJ
+bsV
+bgV
+bnl
+bvX
+bcI
+byp
+bzg
+bcI
+bBh
+bzg
+bcI
+bEc
+bEF
+bFs
+bZN
+bGD
+bGE
+bGF
+cac
+bFs
+btF
+bKD
+bGB
+bog
+btF
+bEF
+boc
+btF
+bMb
+bOS
+bOS
+bPB
+bMb
+bMb
+bMb
+bMb
+bMb
aad
aad
aad
aad
-bWr
-aoq
-anH
-aaa
-aaa
-aaa
-asa
-asO
-atQ
-auO
-avJ
-awV
-ayv
-azm
-aAv
-aBw
-aCs
-aDn
-aEa
-auO
-aFr
-aGg
-aHd
-aIf
-aIX
-aKr
-aIf
-aJb
-aNM
-aOI
-aPw
-aQE
-aRE
-aSz
-aOH
-aTv
-aVl
-aUt
-aXn
-bXY
-bbY
-bad
-baZ
-baZ
-aHo
-azF
-bdK
-beq
-bfg
-bgr
-bhF
-biA
-bjB
-bkK
-blY
-bnx
-bfq
-bqb
-brm
-bsA
-btK
-buG
-bvC
-bwI
-bxI
-byV
-bwI
-bvC
-bBM
-bwI
-bDS
-bER
-bes
-bGp
-bHc
-bHI
-bIp
-bIo
-bIn
-bKq
-bHc
-bLE
-bMt
-bMX
-bNG
-bLD
-bOK
-bNL
-bPC
-bNL
-bQD
-bQD
-bNL
-bNL
-bRW
-bPd
-bSy
-bNL
-bNL
-bNL
-bNL
aad
aad
aad
@@ -83275,32 +83170,31 @@ aad
aad
aad
aad
-bTT
-bTT
-bTT
-bTT
-bUf
-bUn
-bNW
-bTT
-bUC
-bUJ
-bUQ
-bUd
-bUX
-bVd
-bVg
-bVn
-bVs
-bVx
-bVC
-bVG
-bVe
-bVM
-bUV
-aaa
-acJ
-aaa
+aad
+aad
+bSj
+bSt
+bSt
+bSt
+bSj
+bSj
+bSj
+bSj
+bSj
+bTl
+bTl
+bTl
+bTl
+bTl
+bTl
+bTl
+bTl
+bTl
+bTl
+bTl
+bQL
+bSB
+aad
aaa
aaa
aaa
@@ -83332,15 +83226,7 @@ aaa
aaa
aaa
"}
-(111,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+(109,1,1) = {"
aaa
aaa
aaa
@@ -83410,116 +83296,164 @@ aaa
aaa
aaa
aaa
-agP
-agP
-agP
+bbN
+bUu
+bUu
+aiL
+ajC
+ajC
+ajC
+alH
+bUu
+amP
+ano
aaa
aaa
aaa
-asa
-asO
-atR
-auO
-avK
-awW
-ayw
-azn
-aAv
-aBx
-aCt
-aDo
-aEb
-auO
-aFs
-aGj
-aHe
-aIf
-aIY
-aKs
-aIf
-aMC
-aNN
-aOH
-aOH
-aQF
-aRF
-aSA
-aOH
-aOH
-aOH
-aWp
-aXo
-aOH
-aOH
-bae
-aOH
-aOH
-aGX
-aBT
-bYX
-ber
-bfh
-bgs
-bhG
-biB
-bjC
-bkL
-blZ
-bfp
-boT
-bqc
-brn
-bsB
-bsB
-buH
-bvD
-boV
-bfq
-byW
-boV
-bAb
-bfq
-bCT
-biH
-bES
-bes
-bGp
-bHc
-bHJ
-bIq
-cbB
-bJJ
-bKr
-bHc
-bLF
-bMu
-bMY
-bNH
-bOj
-bOL
-ccm
-bPD
-bQd
-bQE
-bQE
-bRm
-bRG
-bRX
-bSn
-bPn
-bSK
+aqA
+aro
+asp
+ato
+aui
+avu
+awT
+axK
+ayT
+azV
+aAQ
+aBM
+ato
+ato
+aDP
+aEF
+bVA
+aGB
+aGB
+aGB
+aGB
+aHA
+aMe
+aNa
+aNa
+aOW
+aPV
+aQP
+aNa
+aSN
+aSJ
+aUE
+aVD
+aWw
+aAs
+bWF
+aAs
+aAs
+aFw
+aAs
+bXm
+bcE
+bcE
+bcE
+bcE
+bcE
+bcE
+biZ
+bcE
+blH
+bnd
+boo
+bpy
+blH
+bcI
+bcJ
+btR
+buX
+bcJ
+bcI
+byq
+bzh
+bcI
+bBi
+bCh
+bcI
+bcI
+bEF
+bFs
+bFX
+bGE
+bFW
+bHY
+bIF
+bFs
+bJT
+bJT
+bJT
+bJT
+bJT
+bEF
+bIV
+bNR
+bMb
+bOS
+bOS
+bPB
+bMb
+bQl
+bQC
+bQN
+bQZ
+bRg
+bRg
+bRg
+bRE
+bRg
+bRg
+bRg
+bRg
+bRE
+bRg
+bRg
+bRg
+bRg
+bRE
+bRg
+bRg
+bRg
+bRg
+bRE
+bRg
+bRg
+bRg
+bRg
+bRE
+bRg
+bRg
+bRg
+bSp
+bSu
+bSC
+bSJ
+bSj
bSR
-bTa
+bSY
bTf
-aad
-aad
-aad
-aaa
+bSt
+bTm
+bTs
+bTv
+bTC
+bTH
+bTM
+bTR
+bTV
+bTu
+bUb
+bTl
aaa
+abZ
aaa
aaa
aaa
-aad
aaa
aaa
aaa
@@ -83532,31 +83466,7 @@ aaa
aaa
aaa
aaa
-agP
-bTW
-bTX
-bUa
-bUg
-bUo
-bUu
-bUz
-bUD
-bUK
-bUd
-bUd
-bUY
-bVe
-bVh
-bVe
-bVe
-bVe
-bVe
-bVH
-bVe
-bVN
-bUV
aaa
-acJ
aaa
aaa
aaa
@@ -83572,6 +83482,8 @@ aaa
aaa
aaa
aaa
+"}
+(110,1,1) = {"
aaa
aaa
aaa
@@ -83588,8 +83500,6 @@ aaa
aaa
aaa
aaa
-"}
-(112,1,1) = {"
aaa
aaa
aaa
@@ -83645,10 +83555,159 @@ aaa
aaa
aaa
aaa
+bbN
+aad
+aad
+aad
+aad
+aad
+bUH
+amQ
+amh
aaa
aaa
aaa
+aqA
+aro
+asq
+ato
+auj
+avv
+awU
+axL
+ayU
+azV
+aAR
+aBM
+aCz
+ato
+aDQ
+aEF
+aFC
+aGE
+aHw
+aIP
+aGE
+aHA
+aMf
+aNb
+aNP
+aOX
+aPW
+aQQ
+aNa
+aRL
+aTB
+aSJ
+aVD
+bWo
+bao
+aYt
+aZp
+aZp
+aFN
+aye
+bca
+bcG
+bdw
+beH
+bfV
+bgQ
+bhR
+bja
+bko
+blN
+bdG
+bor
+bpC
+bqQ
+bsa
+bsW
+btS
+buY
+bvY
+bxl
+buY
+btS
+bAc
+buY
+bCi
+bDh
+bcI
+bEF
+bFs
+bFY
+bGF
+bGE
+bGD
+bIG
+bFs
+bJU
+bKJ
+bLn
+bLW
+bJT
+bNa
+bMb
+bNS
+bMb
+bOT
+bOT
+bMb
+bMb
+bQm
+bNt
+bQO
+bMb
+bMb
+bMb
+bMb
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+bSj
+bSj
+bSj
+bSj
+bSv
+bSD
+bMm
+bSj
+bSS
+bSZ
+bTg
+bSt
+bTn
+bTt
+bTw
+bTD
+bTI
+bTN
+bTS
+bTW
+bTu
+bUc
+bTl
aaa
+abZ
aaa
aaa
aaa
@@ -83673,110 +83732,6 @@ aaa
aaa
aaa
aaa
-asa
-asO
-atS
-auO
-avL
-awX
-ayx
-azo
-aAw
-aBy
-azl
-aDp
-aEc
-auO
-aFr
-aGg
-aHd
-aIf
-aIZ
-aJb
-aLB
-aJb
-aNN
-aOH
-aPx
-aPz
-aPz
-aPz
-aTz
-aOH
-aVm
-aVn
-aVn
-aYh
-aYh
-baf
-bba
-bbS
-aGX
-aBT
-bYW
-beq
-bfi
-bgt
-bhH
-biA
-bjD
-bkM
-bma
-bny
-blZ
-bqd
-bro
-bsC
-btL
-bkM
-bvE
-bwJ
-bxJ
-byX
-bAc
-bkM
-bBN
-bCU
-bDU
-bET
-bes
-bGp
-bHc
-bHc
-bIr
-bIT
-bJK
-bHc
-bHc
-bLG
-bMv
-bMZ
-bNI
-bOk
-bOM
-bPm
-bPc
-bPI
-bPd
-bPd
-bRn
-bNL
-bNL
-bNL
-bSz
-bNL
-bNL
-bNL
-bNL
-bNL
-bNL
-bQj
-bNL
-bNL
-bNL
-bNL
-bNL
-bNL
aaa
aaa
aaa
@@ -83784,37 +83739,12 @@ aaa
aaa
aaa
aaa
+"}
+(111,1,1) = {"
aaa
aaa
aaa
aaa
-bNx
-bTT
-bTT
-bTY
-bTT
-bUh
-bUp
-bUv
-bUA
-bUE
-bUL
-bUR
-bUU
-bUZ
-bVe
-bVe
-bVe
-bVt
-bVy
-bVe
-bVe
-bVe
-bVO
-bUV
-aad
-bUl
-aad
aaa
aaa
aaa
@@ -83845,8 +83775,6 @@ aaa
aaa
aaa
aaa
-"}
-(113,1,1) = {"
aaa
aaa
aaa
@@ -83890,14 +83818,116 @@ aaa
aaa
aaa
aaa
+afp
+afp
+afp
aaa
aaa
aaa
+aqA
+aro
+asr
+ato
+auk
+avw
+awV
+axM
+ayU
+azW
+aAS
+aBN
+aCA
+ato
+aDR
+aEI
+aFD
+aGE
+aHx
+aIQ
+aGE
+aKW
+aMg
+aNa
+aNa
+aOY
+aPX
+aQR
+aNa
+aNa
+aNa
+aUF
+aVE
+aNa
+aNa
+aYu
+aNa
+aNa
+aFw
+aAs
+bXn
+bcH
+bdx
+beI
+bfW
+bgR
+bhS
+bjb
+bkp
+bdF
+bnj
+bos
+bpD
+bqR
+bqR
+bsX
+btT
+bnl
+bdG
+bxm
+bnl
+byr
+bdG
+bBj
+bgX
+bDi
+bcI
+bEF
+bFs
+bFZ
+bGG
+bZR
+bHZ
+bIH
+bFs
+bJV
+bKK
+bLo
+bLX
+bMz
+bNb
+caC
+bNT
+bOt
+bOU
+bOU
+bPC
+bPW
+bQn
+bQD
+bND
+bRa
+bRh
+bRq
+bRv
+aad
+aad
+aad
aaa
aaa
aaa
aaa
aaa
+aad
aaa
aaa
aaa
@@ -83909,9 +83939,32 @@ aaa
aaa
aaa
aaa
-aab
aaa
+afp
+bSm
+bSn
+bSq
+bSw
+bSE
+bSK
+bSP
+bST
+bTa
+bSt
+bSt
+bTo
+bTu
+bTx
+bTu
+bTu
+bTu
+bTu
+bTX
+bTu
+bUd
+bTl
aaa
+abZ
aaa
aaa
aaa
@@ -83929,111 +83982,6 @@ aaa
aaa
aaa
aaa
-arg
-arg
-arg
-arg
-auO
-auO
-auO
-auO
-auO
-aAx
-aBz
-auO
-auO
-auO
-auO
-aFt
-aGk
-aHd
-aIf
-aJa
-aKt
-aIf
-aMD
-aNN
-aOH
-aPy
-aPz
-aRG
-aSB
-aTA
-aUy
-aVn
-aVn
-aXp
-aYi
-aYi
-bag
-aYi
-bbT
-bcD
-aBT
-bYW
-beq
-bfj
-bgu
-bhI
-beq
-bes
-bkN
-bes
-bes
-boU
-bqe
-brp
-bsD
-btM
-bsE
-bvF
-bsE
-btM
-byY
-byY
-bAS
-bBO
-bAS
-byY
-byY
-bes
-bGp
-bGl
-bHc
-bIs
-bIU
-bJL
-bKs
-bHc
-bLH
-bMw
-bNa
-bNJ
-bOl
-bON
-bPn
-bPE
-bQe
-bPG
-bPd
-bRo
-bNL
-bRY
-bNL
-bSA
-bSL
-bSS
-bSL
-bTg
-bNL
-bNL
-bNL
-bTi
-bSL
-bTG
-bTI
-bTI
-bNL
aaa
aaa
aaa
@@ -84046,32 +83994,10 @@ aaa
aaa
aaa
aaa
-bTU
-bTT
-bTT
-bTT
-bUi
-bUq
-bUw
-bTT
-bUF
-bUM
-bUd
-bUd
-bUd
-bVe
-bVi
-bVe
-bVe
-bVe
-bVe
-bVI
-bVe
-bVP
-bUV
aaa
-acJ
aaa
+"}
+(112,1,1) = {"
aaa
aaa
aaa
@@ -84102,8 +84028,6 @@ aaa
aaa
aaa
aaa
-"}
-(114,1,1) = {"
aaa
aaa
aaa
@@ -84157,6 +84081,110 @@ aaa
aaa
aaa
aaa
+aqA
+aro
+ass
+ato
+aul
+avx
+awW
+axN
+ayV
+azX
+axK
+aBO
+aCB
+ato
+aDQ
+aEF
+aFC
+aGE
+aHy
+aHA
+aJX
+aHA
+aMg
+aNa
+aNQ
+aNS
+aNS
+aNS
+aRP
+aNa
+aTC
+aTD
+aTD
+aWx
+aWx
+aYv
+aZq
+bai
+aFw
+aAs
+bXm
+bcG
+bdy
+beJ
+bfX
+bgQ
+bhT
+bjc
+bkq
+blO
+bkp
+bot
+bpE
+bqS
+bsb
+bjc
+btU
+buZ
+bvZ
+bxn
+bys
+bjc
+bAd
+bBk
+bCk
+bDj
+bcI
+bEF
+bFs
+bFs
+bGH
+bHj
+bIa
+bFs
+bFs
+bJW
+bKL
+bLp
+bLY
+bMA
+bNc
+bNC
+bNs
+bNY
+bNt
+bNt
+bPD
+bMb
+bMb
+bMb
+bQP
+bMb
+bMb
+bMb
+bMb
+bMb
+bMb
+bOz
+bMb
+bMb
+bMb
+bMb
+bMb
+bMb
aaa
aaa
aaa
@@ -84168,6 +84196,33 @@ aaa
aaa
aaa
aaa
+bLN
+bSj
+bSj
+bSo
+bSj
+bSx
+bSF
+bSL
+bSQ
+bSU
+bTb
+bTh
+bTk
+bTp
+bTu
+bTu
+bTu
+bTJ
+bTO
+bTu
+bTu
+bTu
+bUe
+bTl
+aad
+bSB
+aad
aaa
aaa
aaa
@@ -84183,114 +84238,6 @@ aaa
aaa
aaa
aaa
-aad
-apx
-aqj
-arh
-asb
-asP
-atT
-auR
-avM
-awY
-ayy
-azp
-aAy
-aBA
-aCu
-aCu
-aCu
-aEK
-aFu
-aGl
-aHf
-aIf
-aIf
-aIf
-aIf
-aME
-aNO
-aOH
-aPz
-bXu
-aRH
-aSC
-aTB
-aOH
-aVo
-aVn
-aXq
-aYj
-aZl
-bah
-aVn
-bbS
-aGX
-aBT
-bYW
-bes
-bfk
-bfk
-bfk
-bes
-bjE
-bfq
-bmb
-bfk
-boV
-bqb
-bZM
-bsE
-btN
-buI
-bvG
-bwK
-bxK
-byY
-bAd
-bAT
-bBP
-bCV
-bCV
-byY
-bvp
-bGp
-bHd
-bHc
-bIt
-bIV
-bJM
-bKt
-bHc
-bLI
-bMx
-bNb
-bNK
-bOj
-bOO
-bPo
-bPF
-bQf
-bPF
-bQX
-bRp
-bRH
-bRZ
-bSo
-bSB
-bSE
-bST
-bSE
-bTh
-bTp
-bTu
-bTp
-bTj
-bSE
-bST
-bSE
-bSE
-bNL
aaa
aaa
aaa
@@ -84303,33 +84250,11 @@ aaa
aaa
aaa
aaa
-bTV
-abt
-abt
-bUb
-bUj
-bUr
-bUx
-bTT
-bUG
-bUN
-bUS
-bUd
-bVa
-bVe
-bVj
-bVo
-bVu
-bVz
-bVD
-bVJ
-bVe
-bVQ
-bUV
aaa
-acJ
aaa
aaa
+"}
+(113,1,1) = {"
aaa
aaa
aaa
@@ -84359,8 +84284,6 @@ aaa
aaa
aaa
aaa
-"}
-(115,1,1) = {"
aaa
aaa
aaa
@@ -84394,6 +84317,7 @@ aaa
aaa
aaa
aaa
+aab
aaa
aaa
aaa
@@ -84413,6 +84337,111 @@ aaa
aaa
aaa
aaa
+apG
+apG
+apG
+apG
+ato
+ato
+ato
+ato
+ato
+ayW
+azY
+ato
+ato
+ato
+ato
+aDS
+aEJ
+aFC
+aGE
+aHz
+aIR
+aGE
+aKX
+aMg
+aNa
+aNR
+aNS
+aPY
+aQS
+aRQ
+aSO
+aTD
+aTD
+aVF
+aWy
+aWy
+aYw
+aWy
+baj
+baT
+aAs
+bXm
+bcG
+bdz
+beK
+bfY
+bcG
+bcI
+bjd
+bcI
+bcI
+bnk
+bou
+bpF
+bqT
+bsc
+bqU
+btV
+bqU
+bsc
+bxo
+bxo
+bzi
+bAe
+bzi
+bxo
+bxo
+bcI
+bEF
+bEB
+bFs
+bGI
+bHk
+bIb
+bII
+bFs
+bJX
+bKM
+bLq
+bLZ
+bMB
+bNd
+bND
+bNU
+bOu
+bNW
+bNt
+bPE
+bMb
+bQo
+bMb
+bQQ
+bRb
+bRi
+bRb
+bRw
+bMb
+bMb
+bMb
+bRy
+bRb
+bRW
+bRY
+bRY
+bMb
aaa
aaa
aaa
@@ -84425,7 +84454,31 @@ aaa
aaa
aaa
aaa
+bSk
+bSj
+bSj
+bSj
+bSy
+bSG
+bSM
+bSj
+bSV
+bTc
+bSt
+bSt
+bSt
+bTu
+bTy
+bTu
+bTu
+bTu
+bTu
+bTY
+bTu
+bUf
+bTl
aaa
+abZ
aaa
aaa
aaa
@@ -84441,113 +84494,6 @@ aaa
aaa
aaa
aaa
-apy
-aqk
-ari
-asc
-asQ
-asc
-auS
-avN
-awZ
-ayz
-azq
-aAz
-aBB
-aCv
-aBB
-ayz
-aEL
-aFv
-aGm
-bXl
-aIf
-aJb
-aKu
-aKy
-aJb
-aNN
-aOH
-aPA
-aOH
-aOH
-aSD
-aOH
-aOH
-aVp
-aVn
-aXr
-aYk
-aZm
-bai
-aVn
-bbS
-aGX
-aBT
-bYW
-bes
-bfl
-bZn
-bZu
-biC
-bjF
-bkO
-bmc
-bfk
-boV
-bqb
-bZN
-bsD
-btO
-buJ
-bvH
-bwL
-bxL
-byY
-bAe
-cam
-bBQ
-bCW
-bDV
-byY
-bFN
-bGq
-bHe
-bHK
-bIu
-bIW
-bJN
-bHK
-bHK
-bLD
-bLD
-bLD
-bLD
-bOm
-bOP
-bPn
-bPG
-bQg
-bPG
-bPd
-bRq
-bNL
-bKF
-bNL
-bSC
-bSE
-bSU
-bSE
-bSE
-bSE
-bSE
-bSE
-bSE
-bSE
-bSU
-bSE
-bTK
-bKF
aaa
aaa
aaa
@@ -84560,34 +84506,12 @@ aaa
aaa
aaa
aaa
-aad
-aad
-aad
-bTT
-bUk
-bUs
-bUy
-bTT
-bUH
-bUO
-bUT
-bUd
-bVb
-bVe
-bVk
-bVp
-bVv
-bVA
-bVE
-bVK
-bVe
-bVR
-bUV
aaa
-acJ
aaa
aaa
aaa
+"}
+(114,1,1) = {"
aaa
aaa
aaa
@@ -84616,8 +84540,6 @@ aaa
aaa
aaa
aaa
-"}
-(116,1,1) = {"
aaa
aaa
aaa
@@ -84669,6 +84591,114 @@ aaa
aaa
aaa
aaa
+aad
+anX
+aoJ
+apH
+aqB
+arp
+ast
+atr
+aum
+avy
+awX
+axO
+ayX
+azZ
+aAT
+aAT
+aAT
+aDj
+aDT
+aEK
+aFE
+aGE
+aGE
+aGE
+aGE
+aKY
+aMh
+aNa
+aNS
+bVK
+aPZ
+aQT
+aRR
+aNa
+aTE
+aTD
+aVG
+aWz
+aXB
+aYx
+aTD
+bai
+aFw
+aAs
+bXm
+bcI
+bdA
+bdA
+bdA
+bcI
+bhU
+bdG
+bkr
+bdA
+bnl
+bor
+bYc
+bqU
+bsd
+bsY
+btW
+bva
+bwa
+bxo
+byt
+bzj
+bAf
+bBl
+bBl
+bxo
+btF
+bEF
+bFt
+bFs
+bGJ
+bHl
+bIc
+bIJ
+bFs
+bJY
+bKN
+bLr
+bMa
+bMz
+bNe
+bNE
+bNV
+bOv
+bNV
+bPn
+bPF
+bPX
+bQp
+bQE
+bQR
+bQU
+bRj
+bQU
+bRx
+bRF
+bRK
+bRF
+bRz
+bQU
+bRj
+bQU
+bQU
+bMb
aaa
aaa
aaa
@@ -84681,7 +84711,31 @@ aaa
aaa
aaa
aaa
+bSl
+aaX
+aaX
+bSr
+bSz
+bSH
+bSN
+bSj
+bSW
+bTd
+bTi
+bSt
+bTq
+bTu
+bTz
+bTE
+bTK
+bTP
+bTT
+bTZ
+bTu
+bUg
+bTl
aaa
+abZ
aaa
aaa
aaa
@@ -84698,113 +84752,6 @@ aaa
aaa
aaa
aaa
-apy
-aql
-arj
-asd
-asR
-atU
-auT
-avO
-axa
-ayA
-ayA
-ayA
-ayA
-ayA
-ayA
-arg
-arg
-aFw
-aGn
-aHh
-aIg
-aJc
-aKv
-aLC
-aKv
-aNP
-aOJ
-aPB
-aQG
-aRI
-bXx
-aTC
-aUz
-aVq
-aWq
-aWq
-aWq
-aWq
-baj
-aVn
-bbS
-aGX
-aBT
-bYW
-bet
-bfm
-bfq
-bfq
-biD
-bjG
-bkP
-bfk
-bes
-boV
-bqb
-bZN
-bsE
-btP
-buK
-bvI
-bwM
-bxM
-byY
-bAf
-bAU
-bBP
-bCX
-bCX
-byY
-byL
-bGp
-bHe
-bHL
-bIv
-cbC
-bJO
-bKu
-bKY
-bLJ
-bMy
-bNc
-bNL
-bOn
-bOQ
-bPp
-bPl
-bQh
-bPd
-bQY
-bRr
-bRI
-bSa
-bSc
-bSD
-bSM
-bSV
-bTb
-bSV
-bSV
-bTb
-bSV
-bSV
-bTb
-bSV
-bSV
-bTL
-bKF
aaa
aaa
aaa
@@ -84817,35 +84764,11 @@ aaa
aaa
aaa
aaa
-aad
-aad
-aad
-bTT
-bTT
-bTT
-bTT
-bTT
-bTT
-bTT
-bTT
-bTT
-bUV
-bUV
-bUV
-bUV
-bUV
-bUV
-bUV
-bUV
-bUV
-bUV
-bUV
-bSw
-bUl
-aad
aaa
aaa
aaa
+"}
+(115,1,1) = {"
aaa
aaa
aaa
@@ -84873,8 +84796,6 @@ aaa
aaa
aaa
aaa
-"}
-(117,1,1) = {"
aaa
aaa
aaa
@@ -84928,6 +84849,113 @@ aaa
aaa
aaa
aaa
+anY
+aoK
+apI
+aqC
+arq
+aqC
+ats
+aun
+avz
+awY
+axP
+ayY
+aAa
+aAU
+aAa
+awY
+aDk
+aDU
+aEL
+bVB
+aGE
+aHA
+aIS
+aIW
+aHA
+aMg
+aNa
+aNT
+aNa
+aNa
+aQU
+aNa
+aNa
+aTF
+aTD
+aVH
+aWA
+aXC
+aYy
+aTD
+bai
+aFw
+aAs
+bXm
+bcI
+bdB
+bXD
+bXK
+bgS
+bhV
+bje
+bks
+bdA
+bnl
+bor
+bYd
+bqT
+bse
+bsZ
+btX
+bvb
+bwb
+bxo
+byu
+bYC
+bAg
+bBm
+bCl
+bxo
+bEd
+bEG
+bFu
+bGa
+bGK
+bHm
+bId
+bGa
+bGa
+bJT
+bJT
+bJT
+bJT
+bMC
+bNf
+bND
+bNW
+bOw
+bNW
+bNt
+bPG
+bMb
+bIV
+bMb
+bQS
+bQU
+bRk
+bQU
+bQU
+bQU
+bQU
+bQU
+bQU
+bQU
+bRk
+bQU
+bSa
+bIV
aaa
aaa
aaa
@@ -84940,7 +84968,31 @@ aaa
aaa
aaa
aaa
+aad
+aad
+aad
+bSj
+bSA
+bSI
+bSO
+bSj
+bSX
+bTe
+bTj
+bSt
+bTr
+bTu
+bTA
+bTF
+bTL
+bTQ
+bTU
+bUa
+bTu
+bUh
+bTl
aaa
+abZ
aaa
aaa
aaa
@@ -84955,114 +85007,6 @@ aaa
aaa
aaa
aaa
-apy
-aqm
-arj
-ark
-ark
-ark
-ark
-avP
-axb
-ayA
-bWH
-aAA
-aBC
-aCw
-ayA
-aEd
-axo
-bXb
-aGg
-aHd
-aIf
-aJd
-aJb
-aLD
-aMF
-aMF
-aMF
-aMF
-aMF
-aMF
-aSF
-aTD
-aOH
-aOH
-aWr
-aXs
-bXZ
-bYi
-aOH
-aOH
-aOH
-aGX
-aBT
-bdL
-beu
-bfn
-bgv
-bfp
-bfp
-bfp
-bkQ
-bmd
-bnz
-bgx
-bqb
-biF
-bsD
-btQ
-buL
-bvJ
-bwN
-bxN
-byY
-byY
-bAV
-bBR
-byY
-byY
-byY
-byY
-bGr
-bHf
-bHM
-bIw
-bIX
-bJP
-bKv
-bKZ
-bKv
-bMz
-bNd
-bNL
-bOo
-bOR
-bPn
-bPd
-bPd
-bPd
-bQZ
-bRr
-bRI
-bSb
-bSc
-bSE
-bSN
-bSE
-bTc
-bSE
-bSE
-bTc
-bSE
-bSE
-bTc
-bSE
-bSE
-bSN
-bKF
-aad
aaa
aaa
aaa
@@ -85079,26 +85023,23 @@ aaa
aaa
aaa
aaa
-aad
aaa
+"}
+(116,1,1) = {"
aaa
aaa
aaa
-bOf
aaa
aaa
aaa
aaa
-aad
aaa
aaa
aaa
aaa
-aad
aaa
aaa
aaa
-acJ
aaa
aaa
aaa
@@ -85130,8 +85071,6 @@ aaa
aaa
aaa
aaa
-"}
-(118,1,1) = {"
aaa
aaa
aaa
@@ -85167,6 +85106,113 @@ aaa
aaa
aaa
aaa
+anY
+aoL
+apJ
+aqD
+arr
+asu
+att
+auo
+avA
+awZ
+awZ
+awZ
+awZ
+awZ
+awZ
+apG
+apG
+aDV
+aEM
+aFG
+aGF
+aHB
+aIT
+aJY
+aIT
+aMi
+aNc
+aNU
+aOZ
+aQa
+bVN
+aRS
+aSP
+aTG
+aUG
+aUG
+aUG
+aUG
+aYz
+aTD
+bai
+aFw
+aAs
+bXm
+bcJ
+bdC
+bdG
+bdG
+bgT
+bhW
+bjf
+bdA
+bcI
+bnl
+bor
+bYd
+bqU
+bsf
+bta
+btY
+bvc
+bwc
+bxo
+byv
+bzk
+bAf
+bBn
+bBn
+bxo
+bxb
+bEF
+bFu
+bGb
+bGL
+bZS
+bIe
+bIK
+bJo
+bJZ
+bKO
+bLs
+bMb
+bMD
+bNg
+bNF
+bNB
+bOx
+bNt
+bPo
+bPH
+bPY
+bQq
+bQs
+bQT
+bRc
+bRl
+bRr
+bRl
+bRl
+bRr
+bRl
+bRl
+bRr
+bRl
+bRl
+bSb
+bIV
aaa
aaa
aaa
@@ -85179,6 +85225,32 @@ aaa
aaa
aaa
aaa
+aad
+aad
+aad
+bSj
+bSj
+bSj
+bSj
+bSj
+bSj
+bSj
+bSj
+bSj
+bTl
+bTl
+bTl
+bTl
+bTl
+bTl
+bTl
+bTl
+bTl
+bTl
+bTl
+bQM
+bSB
+aad
aaa
aaa
aaa
@@ -85209,124 +85281,15 @@ aaa
aaa
aaa
aaa
+"}
+(117,1,1) = {"
aaa
aaa
-aad
-apz
-aqn
-ark
-ase
-asS
-atV
-auU
-avQ
-axc
-ayA
-azr
-aAB
-aBD
-aCx
-ayA
-aad
-aEM
-aFx
-aGo
-aHd
-aIf
-aIf
-aKw
-aLD
-aMF
-aNQ
-aOK
-aPC
-aQH
-aMF
-aSG
-aTE
-aMF
-aVr
-aWs
-bXV
-aYm
-aYm
-bYq
-bYv
-bbU
-bcD
-aBT
-aFk
-bet
-bfo
-bgw
-bhJ
-biE
-bjH
-bkR
-bme
-bkR
-boW
-bqf
-brq
-bsE
-btR
-buM
-bvK
-bwO
-bxO
-byY
-byY
-bAW
-bBS
-bCY
-bDW
-bEU
-byY
-bvM
-bHe
-bHN
-bIx
-bIY
-bJQ
-bKw
-bLa
-bLK
-bMA
-bNe
-bNL
-bOp
-bOS
-bPn
-bPd
-bQi
-bQF
-bQZ
-bRs
-bRI
-bSb
-bSc
-bSD
-bSN
-bSW
-bOG
-bOG
-bOH
-bOG
-bSW
-bOG
-bOG
-bSW
-bSE
-bSN
-bKF
-aad
-aad
aaa
aaa
aaa
aaa
aaa
-aab
aaa
aaa
aaa
@@ -85334,28 +85297,7 @@ aaa
aaa
aaa
aaa
-acJ
-acJ
-bUl
-acJ
-acJ
-acJ
-acJ
-bUl
-acJ
-acJ
-acJ
-acJ
-bUl
-acJ
-acJ
-acJ
-acJ
-bUl
-acJ
-acJ
aaa
-acJ
aaa
aaa
aaa
@@ -85387,8 +85329,6 @@ aaa
aaa
aaa
aaa
-"}
-(119,1,1) = {"
aaa
aaa
aaa
@@ -85423,6 +85363,114 @@ aaa
aaa
aaa
aaa
+anY
+aoM
+apJ
+apK
+apK
+apK
+apK
+aup
+avB
+awZ
+bUX
+ayZ
+aAb
+aAV
+awZ
+aCC
+avO
+bVr
+aEF
+aFC
+aGE
+aHC
+aHA
+aJZ
+aKZ
+aKZ
+aKZ
+aKZ
+aKZ
+aKZ
+aQW
+aRT
+aNa
+aNa
+aUH
+aVI
+bWp
+bWy
+aNa
+aNa
+aNa
+aFw
+aAs
+bcb
+bcK
+bdD
+beL
+bdF
+bdF
+bdF
+bjg
+bkt
+blP
+beN
+bor
+bgV
+bqT
+bsg
+btb
+btZ
+bvd
+bwd
+bxo
+bxo
+bzl
+bAh
+bxo
+bxo
+bxo
+bxo
+bEH
+bFv
+bGc
+bGM
+bHn
+bIf
+bIL
+bJp
+bIL
+bKP
+bLt
+bMb
+bME
+bNh
+bND
+bNt
+bNt
+bNt
+bPp
+bPH
+bPY
+bQr
+bQs
+bQU
+bRd
+bQU
+bRs
+bQU
+bQU
+bRs
+bQU
+bQU
+bRs
+bQU
+bQU
+bRd
+bIV
+aad
aaa
aaa
aaa
@@ -85439,28 +85487,26 @@ aaa
aaa
aaa
aaa
+aad
aaa
aaa
aaa
aaa
+bMv
aaa
aaa
-abu
-aac
-aac
-aac
-aac
-aac
aaa
-aac
aaa
+aad
aaa
aaa
aaa
aaa
+aad
aaa
aaa
aaa
+abZ
aaa
aaa
aaa
@@ -85469,114 +85515,6 @@ aaa
aaa
aaa
aaa
-apy
-aqo
-arj
-ase
-asS
-atW
-auU
-avQ
-axd
-ayA
-azs
-aAC
-aBE
-aCy
-ayA
-aad
-aEM
-aFx
-aGo
-aHd
-aIh
-aIf
-aKx
-aLD
-aMF
-aNR
-aOL
-aPD
-aQI
-aRJ
-aSH
-aTF
-aUA
-aVs
-bXN
-aXt
-aYn
-aZo
-bYr
-aMF
-bYC
-bcE
-ayJ
-aFj
-bev
-bfp
-bgx
-bfq
-biF
-bjI
-bkS
-bkS
-bkV
-bkV
-bqg
-bkU
-bkV
-bkV
-bkV
-bvL
-bwP
-bwP
-bwP
-byY
-bAX
-bBT
-bBV
-bDX
-bEV
-byY
-bvM
-bHe
-bHO
-bIx
-bIZ
-bJR
-bKx
-bHK
-bHK
-bHK
-bHK
-bNL
-bKF
-bOT
-bPn
-bPH
-bQj
-bNL
-bRa
-bNL
-bNL
-bSc
-bSc
-bSc
-bSN
-bOG
-bOG
-bOG
-bOH
-bOG
-bOH
-bOG
-bOG
-bOG
-bTJ
-bTM
-bKF
-aad
aaa
aaa
aaa
@@ -85593,22 +85531,20 @@ aaa
aaa
aaa
aaa
-aad
aaa
aaa
aaa
aaa
-aad
aaa
aaa
aaa
+"}
+(118,1,1) = {"
aaa
-aad
aaa
aaa
aaa
aaa
-aad
aaa
aaa
aaa
@@ -85644,8 +85580,6 @@ aaa
aaa
aaa
aaa
-"}
-(120,1,1) = {"
aaa
aaa
aaa
@@ -85685,31 +85619,152 @@ aaa
aaa
aaa
aaa
+aad
+anZ
+aoN
+apK
+aqE
+ars
+asv
+atu
+auq
+avC
+awZ
+axQ
+aza
+aAc
+aAW
+awZ
+aad
+aDl
+aDW
+aEN
+aFC
+aGE
+aGE
+aIU
+aJZ
+aKZ
+aMj
+aNd
+aNV
+aPa
+aKZ
+aQX
+aRU
+aKZ
+aTH
+aUI
+bWl
+aWC
+aWC
+bWG
+bWL
+bak
+baT
+aAs
+aDJ
+bcJ
+bdE
+beM
+bfZ
+bgU
+bhX
+bjh
+bku
+bjh
+bnm
+bov
+bpG
+bqU
+bsh
+btc
+bua
+bve
+bwe
+bxo
+bxo
+bzm
+bAi
+bBo
+bCm
+bDk
+bxo
+buc
+bFu
+bGd
+bGN
+bHo
+bIg
+bIM
+bJq
+bKa
+bKQ
+bLu
+bMb
+bMF
+bNi
+bND
+bNt
+bOy
+bOV
+bPp
+bPI
+bPY
+bQr
+bQs
+bQT
+bRd
+bRm
+bMW
+bMW
+bMX
+bMW
+bRm
+bMW
+bMW
+bRm
+bQU
+bRd
+bIV
+aad
+aad
aaa
aaa
aaa
aaa
aaa
+aab
aaa
aaa
aaa
aaa
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
aaa
-aad
aaa
aaa
+abZ
+abZ
+bSB
+abZ
+abZ
+abZ
+abZ
+bSB
+abZ
+abZ
+abZ
+abZ
+bSB
+abZ
+abZ
+abZ
+abZ
+bSB
+abZ
+abZ
aaa
-aad
+abZ
aaa
-aac
aaa
aaa
aaa
@@ -85726,114 +85781,6 @@ aaa
aaa
aaa
aaa
-apy
-aqp
-arj
-asf
-asS
-atX
-auU
-avQ
-axe
-ayB
-azt
-aAD
-aBF
-ayA
-ayA
-aad
-aEM
-aFx
-aGo
-aHd
-aIi
-aIf
-aKy
-aLD
-aMF
-aNS
-aOM
-aPE
-aQJ
-aMF
-aSI
-aTG
-aMF
-aVt
-bXO
-aXu
-aYo
-aZp
-aZu
-aYv
-bbV
-aGX
-aBT
-aFk
-bew
-bfq
-bfq
-bhK
-biF
-bjJ
-bkS
-bmf
-bnA
-boX
-bqh
-brr
-bsF
-btS
-bkV
-bvM
-bwP
-bxP
-byZ
-byY
-bAY
-bBU
-bCZ
-bDY
-bEW
-byY
-bvM
-bHe
-bHP
-bIx
-bJa
-bJR
-bKy
-bHK
-bLL
-bMB
-bNf
-bNM
-bOq
-bOS
-bPq
-bPI
-bNL
-bQG
-bRb
-bRt
-bRJ
-bSd
-bSp
-bSc
-bSN
-bOG
-bOG
-bOH
-bOH
-bOH
-bOH
-bOH
-bOG
-bOG
-bSE
-bSN
-bKF
-aad
aaa
aaa
aaa
@@ -85848,6 +85795,8 @@ aaa
aaa
aaa
aaa
+"}
+(119,1,1) = {"
aaa
aaa
aaa
@@ -85901,12 +85850,17 @@ aaa
aaa
aaa
aaa
-"}
-(121,1,1) = {"
aaa
aaa
aaa
+aaY
+aac
+aac
+aac
+aac
+aac
aaa
+aac
aaa
aaa
aaa
@@ -85923,6 +85877,114 @@ aaa
aaa
aaa
aaa
+anY
+aoO
+apJ
+aqE
+ars
+asw
+atu
+auq
+avD
+awZ
+axR
+azb
+aAd
+aAX
+awZ
+aad
+aDl
+aDW
+aEN
+aFC
+aGG
+aGE
+aIV
+aJZ
+aKZ
+aMk
+aNe
+aNW
+aPb
+aQb
+aQY
+aRV
+aSQ
+aTI
+bWd
+aVJ
+aWD
+aXE
+bWH
+aKZ
+bWS
+baU
+axi
+aDI
+bcL
+bdF
+beN
+bdG
+bgV
+bhY
+bji
+bji
+bjl
+bjl
+bow
+bjk
+bjl
+bjl
+bjl
+bub
+bvf
+bvf
+bvf
+bxo
+bzn
+bAj
+bAl
+bCn
+bDl
+bxo
+buc
+bFu
+bGe
+bGN
+bHp
+bIh
+bIN
+bGa
+bGa
+bGa
+bGa
+bMb
+bIV
+bNj
+bND
+bNX
+bOz
+bMb
+bPq
+bMb
+bMb
+bQs
+bQs
+bQs
+bRd
+bMW
+bMW
+bMW
+bMX
+bMW
+bMX
+bMW
+bMW
+bMW
+bRZ
+bSc
+bIV
+aad
aaa
aaa
aaa
@@ -85937,19 +85999,6 @@ aaa
aaa
aaa
aaa
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
aaa
aaa
aad
@@ -85960,136 +86009,13 @@ aaa
aad
aaa
aaa
-abx
-abx
-abx
-abx
-abx
-aad
-aac
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
aaa
aaa
+aad
aaa
aaa
aaa
aaa
-apy
-aqq
-arj
-ase
-asS
-atY
-auU
-avQ
-axf
-ayA
-azs
-aAE
-aBG
-aCA
-ayA
-aad
-aEM
-aFx
-aGo
-aHd
-aIj
-aIf
-aJb
-aLD
-aMF
-aNT
-aON
-aPF
-aMF
-aMF
-aSJ
-aTH
-aMF
-aMF
-aWt
-aXv
-aYp
-bYj
-bak
-bbc
-bbW
-aGX
-aBT
-aFn
-bex
-bZl
-bgy
-bfr
-biG
-bjK
-bkT
-bmg
-bnB
-boY
-bqi
-brs
-bsG
-btT
-buN
-bvN
-bwP
-bxQ
-bza
-bAg
-bAZ
-bBV
-bBV
-bDZ
-bEX
-byY
-bvM
-bHe
-bHQ
-bIx
-bJb
-bJR
-bKz
-bHK
-bLM
-bMC
-bNg
-bNN
-bOr
-bOU
-bPn
-bPJ
-bQk
-bQH
-bRc
-bRu
-bRK
-bSe
-bSq
-bSc
-bSN
-bSW
-bOH
-bOH
-bTq
-bTv
-bTA
-bOH
-bOH
-bOH
-bSE
-bSN
-bKF
aad
aaa
aaa
@@ -86126,6 +86052,8 @@ aaa
aaa
aaa
aaa
+"}
+(120,1,1) = {"
aaa
aaa
aaa
@@ -86158,8 +86086,6 @@ aaa
aaa
aaa
aaa
-"}
-(122,1,1) = {"
aaa
aaa
aaa
@@ -86176,11 +86102,22 @@ aaa
aaa
aaa
aaa
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
aaa
+aad
aaa
aaa
aaa
+aad
aaa
+aac
aaa
aaa
aaa
@@ -86196,34 +86133,123 @@ aaa
aaa
aaa
aaa
-aad
aaa
+anY
+aoP
+apJ
+aqF
+ars
+asx
+atu
+auq
+avE
+axa
+axS
+azc
+aAe
+awZ
+awZ
+aad
+aDl
+aDW
+aEN
+aFC
+aGH
+aGE
+aIW
+aJZ
+aKZ
+aMl
+aNf
+aNX
+aPc
+aKZ
+aQZ
+aRW
+aKZ
+aTJ
+bWe
+aVK
+aWE
+aXF
+aXK
+aWL
+bal
+aFw
+aAs
+aDJ
+bcM
+bdG
+bdG
+bga
+bgV
+bhZ
+bji
+bkv
+blQ
+bnn
+box
+bpH
+bqV
+bsi
+bjl
+buc
+bvf
+bwf
+bxp
+bxo
+bzo
+bAk
+bBp
+bCo
+bDm
+bxo
+buc
+bFu
+bGf
+bGN
+bHq
+bIh
+bIO
+bGa
+bKb
+bKR
+bLv
+bMc
+bMG
+bNi
+bNG
+bNY
+bMb
+bOW
+bPr
+bPJ
+bPZ
+bQt
+bQF
+bQs
+bRd
+bMW
+bMW
+bMX
+bMX
+bMX
+bMX
+bMX
+bMW
+bMW
+bQU
+bRd
+bIV
+aad
aaa
aaa
aaa
-aad
-bVS
aaa
aaa
aaa
-aad
aaa
-abx
-abx
-abx
-abx
-acx
-acK
-acK
-acK
-acK
-adS
-aep
-aeO
-afl
-abx
aaa
-aac
aaa
aaa
aaa
@@ -86239,115 +86265,6 @@ aaa
aaa
aaa
aaa
-aad
-apz
-aqr
-ark
-ase
-asS
-atZ
-auU
-avQ
-axg
-ayA
-azu
-aAF
-aAE
-aCB
-ayA
-aad
-aEM
-aFx
-aGp
-aHd
-aIf
-aIf
-aKz
-aLD
-aMF
-aMF
-aOO
-aMF
-aMF
-aRK
-aSK
-aTI
-aUB
-aVu
-aWu
-aWv
-aWu
-aSE
-aWu
-aMF
-bYD
-aGX
-aBT
-aFk
-bet
-bes
-bgz
-bfq
-biH
-bjK
-bZB
-bmh
-bnC
-boZ
-bnB
-bZO
-bnB
-btU
-bkV
-bvM
-bwP
-bxR
-bzb
-byY
-bBa
-bBW
-bDa
-bEa
-bEY
-byY
-bvM
-bHe
-bHR
-bIx
-bJc
-bJR
-bKA
-bHK
-bLN
-bMC
-bNh
-bNO
-bOs
-bOV
-bPr
-bPK
-bNL
-bQI
-bRd
-bRv
-bRL
-bSf
-bSr
-bSF
-bSO
-bOG
-bOG
-bOH
-bTr
-bTw
-bTB
-bOH
-bOG
-bOG
-bTJ
-bTN
-bKF
-aad
aaa
aaa
aaa
@@ -86392,6 +86309,8 @@ aaa
aaa
aaa
aaa
+"}
+(121,1,1) = {"
aaa
aaa
aaa
@@ -86415,8 +86334,6 @@ aaa
aaa
aaa
aaa
-"}
-(123,1,1) = {"
aaa
aaa
aaa
@@ -86428,14 +86345,36 @@ aaa
aaa
aaa
aaa
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+aac
aaa
aaa
+aad
aaa
aaa
aaa
aaa
+aad
aaa
aaa
+aaZ
+aaZ
+aaZ
+aaZ
+aaZ
+aad
+aac
aaa
aaa
aaa
@@ -86451,39 +86390,115 @@ aaa
aaa
aaa
aaa
-aac
aaa
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-abx
-abJ
-abU
-ach
-acy
-acL
-bVY
-bVY
-adB
-ack
-aeq
-aeP
-afm
-abx
+anY
+aoQ
+apJ
+aqE
+ars
+asy
+atu
+auq
+avF
+awZ
+axR
+azd
+aAf
+aAZ
+awZ
+aad
+aDl
+aDW
+aEN
+aFC
+aGI
+aGE
+aHA
+aJZ
+aKZ
+aMm
+aNg
+aNY
+aKZ
+aKZ
+aRa
+aRX
+aKZ
+aKZ
+aUJ
+aVL
+aWF
+bWz
+aYA
+aZs
+bam
+aFw
+aAs
+aDM
+bcN
+bXB
+beO
+bdH
+bgW
+bia
+bjj
+bkw
+blR
+bno
+boy
+bpI
+bqW
+bsj
+btd
+bud
+bvf
+bwg
+bxq
+byw
+bzp
+bAl
+bAl
+bCp
+bDn
+bxo
+buc
+bFu
+bGg
+bGN
+bHr
+bIh
+bIP
+bGa
+bKc
+bKS
+bLw
+bMd
+bMH
+bNk
+bND
+bNZ
+bOA
+bOX
+bPs
+bPK
+bQa
+bQu
+bQG
+bQs
+bRd
+bRm
+bMX
+bMX
+bRG
+bRL
+bRQ
+bMX
+bMX
+bMX
+bQU
+bRd
+bIV
aad
-aac
-aaa
-aaa
-aaa
aaa
aaa
aaa
@@ -86497,113 +86512,6 @@ aaa
aaa
aaa
aaa
-apy
-aqs
-arj
-ark
-ark
-ark
-ark
-avP
-axh
-ayA
-bWH
-aAG
-aBH
-aCC
-ayA
-aEd
-axo
-bXc
-aBT
-aHd
-aIf
-aJe
-aJb
-aLE
-aMG
-aNU
-aOP
-aPG
-aQK
-aQK
-aQK
-aQK
-aQK
-aVv
-aWv
-aWu
-aWv
-aZr
-bYs
-aYv
-bYE
-aGX
-aBT
-aFk
-bey
-bet
-bgA
-bfq
-bfq
-bjK
-bkT
-bmg
-bnD
-bpa
-bqj
-brt
-bsH
-btV
-bkV
-bvO
-bwP
-bxS
-bwP
-byY
-byY
-bBX
-byY
-byY
-byY
-byY
-bvM
-bHe
-bHS
-bIx
-bJd
-bJS
-bKB
-bHK
-bLO
-bMC
-bNi
-bNP
-bOt
-bOW
-bPn
-bPL
-bQk
-bQH
-bRe
-bRw
-bRM
-bSg
-bSs
-bSc
-bSN
-bOH
-bOH
-bOH
-bTs
-bTx
-bTC
-bOH
-bOH
-bSW
-bSE
-bSN
-bKF
aaa
aaa
aaa
@@ -86658,6 +86566,8 @@ aaa
aaa
aaa
aaa
+"}
+(122,1,1) = {"
aaa
aaa
aaa
@@ -86672,8 +86582,6 @@ aaa
aaa
aaa
aaa
-"}
-(124,1,1) = {"
aaa
aaa
aaa
@@ -86696,46 +86604,37 @@ aaa
aaa
aaa
aaa
+aad
aaa
aaa
aaa
aaa
+aad
+bUi
aaa
aaa
aaa
+aad
aaa
+aaZ
+aaZ
+aaZ
+aaZ
+abO
+aca
+aca
+aca
+aca
+acQ
+adf
+adA
+adQ
+aaZ
aaa
+aac
aaa
aaa
aaa
-aac
-aad
-aaf
-aag
-aak
-aap
-aaj
-aah
-aaJ
-aaV
-aaj
-aag
-aak
-abm
-aby
-abK
-abV
-aci
-acz
-acM
-adg
-adg
-adC
-adT
-aer
-aeQ
-afn
-abx
aaa
aaa
aaa
@@ -86748,119 +86647,121 @@ aaa
aaa
aaa
aaa
+aad
+anZ
+aoR
+apK
+aqE
+ars
+asz
+atu
+auq
+avG
+awZ
+axT
+aze
+azd
+aBa
+awZ
+aad
+aDl
+aDW
+aEO
+aFC
+aGE
+aGE
+aIX
+aJZ
+aKZ
+aKZ
+aNh
+aKZ
+aKZ
+aQc
+aRb
+aRY
+aSR
+aTK
+aUK
+aUL
+aUK
+aQV
+aUK
+aKZ
+bWT
+aFw
+aAs
+aDJ
+bcJ
+bcI
+beP
+bdG
+bgX
+bia
+bXR
+bkx
+blS
+bnp
+blR
+bYe
+blR
+bsk
+bjl
+buc
+bvf
+bwh
+bxr
+bxo
+bzq
+bAm
+bBq
+bCq
+bDo
+bxo
+buc
+bFu
+bGh
+bGN
+bHs
+bIh
+bIQ
+bGa
+bKd
+bKS
+bLx
+bMe
+bMI
+bNl
+bNH
+bOa
+bMb
+bOY
+bPt
+bPL
+bQb
+bQv
+bQH
+bQV
+bRe
+bMW
+bMW
+bMX
+bRH
+bRM
+bRR
+bMX
+bMW
+bMW
+bRZ
+bSd
+bIV
+aad
aaa
aaa
aaa
aaa
aaa
aaa
-apy
-aqt
-arj
-asg
-asT
-aua
-auV
-avR
-axi
-ayA
-ayA
-aAH
-ayA
-ayA
-ayA
-arg
-arg
-aFw
-aBT
-aHd
-aIf
-aJf
-aKA
-aLF
-aMH
-aNV
-aOQ
-aPH
-aQL
-aRL
-aSL
-aTJ
-bXC
-bXH
-aWu
-aWv
-aWu
-aSE
-bal
-aYv
-bbV
-bcF
-bdo
-bdM
-bZi
-bet
-bgB
-bfq
-bfq
-bjL
-bkS
-bmi
-bnE
-bpb
-bkV
-bkS
-bsI
-bkS
-bkV
-bvP
-bwQ
-bxT
-bzc
-bwQ
-bwQ
-bBY
-bDb
-bDb
-bDb
-bFO
-bGs
-bHe
-bHT
-bIy
-bJe
-bJT
-bKC
-bHK
-bLP
-bMD
-bNj
-bMD
-bOq
-bOX
-bPs
-bPM
-bNL
-bQJ
-bRf
-bRx
-bRN
-bRN
-bSt
-bSc
-bSN
-bOG
-bOG
-bOH
-bOH
-bOH
-bOH
-bOH
-bOG
-bOG
-bSE
-bSN
-bKF
aaa
aaa
aaa
@@ -86922,6 +86823,8 @@ aaa
aaa
aaa
aaa
+"}
+(123,1,1) = {"
aaa
aaa
aaa
@@ -86929,8 +86832,6 @@ aaa
aaa
aaa
aaa
-"}
-(125,1,1) = {"
aaa
aaa
aaa
@@ -86958,43 +86859,43 @@ aaa
aaa
aaa
aaa
+aac
aaa
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaZ
+abh
+abp
+abA
+abP
+acb
+bUo
+bUo
+acC
+abD
+adg
+adB
+adR
+aaZ
+aad
+aac
aaa
aaa
aaa
aaa
aaa
aaa
-aac
aaa
-aaf
-aah
-aal
-aam
-aam
-aam
-aaK
-aaW
-aaW
-abe
-aal
-abn
-abx
-abL
-abW
-acj
-acA
-acN
-acN
-acN
-acN
-adU
-aes
-abx
-abx
-abx
-afW
-acP
aaa
aaa
aaa
@@ -87004,6 +86905,113 @@ aaa
aaa
aaa
aaa
+anY
+aoS
+apJ
+apK
+apK
+apK
+apK
+aup
+avH
+awZ
+bUX
+azf
+aAg
+aBb
+awZ
+aCC
+avO
+bVs
+aAs
+aFC
+aGE
+aHD
+aHA
+aKa
+aLa
+aMn
+aNi
+aNZ
+aPd
+aPd
+aPd
+aPd
+aPd
+aTL
+aUL
+aUK
+aUL
+aXH
+bWI
+aWL
+bWU
+aFw
+aAs
+aDJ
+bcO
+bcJ
+beQ
+bdG
+bdG
+bia
+bjj
+bkw
+blT
+bnq
+boz
+bpJ
+bqX
+bsl
+bjl
+bue
+bvf
+bwi
+bvf
+bxo
+bxo
+bAn
+bxo
+bxo
+bxo
+bxo
+buc
+bFu
+bGi
+bGN
+bHt
+bIi
+bIR
+bGa
+bKe
+bKS
+bLy
+bMf
+bMJ
+bNm
+bND
+bOb
+bOA
+bOX
+bPu
+bPM
+bQc
+bQw
+bQI
+bQs
+bRd
+bMX
+bMX
+bMX
+bRI
+bRN
+bRS
+bMX
+bMX
+bRm
+bQU
+bRd
+bIV
aaa
aaa
aaa
@@ -87011,113 +87019,6 @@ aaa
aaa
aaa
aaa
-apy
-aqu
-arl
-ash
-ash
-ash
-auS
-avN
-axj
-ayC
-azq
-avO
-aBI
-aCD
-aBI
-ayz
-aEL
-aFv
-aGq
-aHg
-aIk
-aIk
-aIk
-aIk
-aIk
-aIk
-aIk
-aLD
-aQK
-aRM
-aSM
-aTK
-aUC
-bXI
-aWw
-aXx
-bYa
-aZr
-bam
-aMF
-aMF
-aGX
-aBT
-aFk
-bez
-beu
-bet
-bhL
-bhL
-bet
-bkV
-bkV
-bkV
-bkV
-bkV
-bru
-bsJ
-bZW
-bpM
-bpM
-bpM
-bpM
-bpM
-bpM
-bpM
-bpM
-bpM
-bpM
-bpM
-bFP
-bpM
-bHe
-bHe
-bHe
-bJf
-bHe
-bHe
-bHK
-bLQ
-bLQ
-bLQ
-bLQ
-bLP
-bOY
-bPn
-bPN
-bQj
-bNL
-bRa
-bNL
-bNL
-bSc
-bSc
-bSc
-bSN
-bOG
-bOG
-bOG
-bOH
-bOG
-bOH
-bOG
-bOG
-bOG
-bTJ
-bTM
-bKF
aaa
aaa
aaa
@@ -87179,6 +87080,8 @@ aaa
aaa
aaa
aaa
+"}
+(124,1,1) = {"
aaa
aaa
aaa
@@ -87186,8 +87089,6 @@ aaa
aaa
aaa
aaa
-"}
-(126,1,1) = {"
aaa
aaa
aaa
@@ -87215,6 +87116,34 @@ aaa
aaa
aaa
aaa
+aac
+aad
+aaf
+aag
+aak
+aap
+aaj
+aah
+aax
+aaG
+aaj
+aag
+aak
+aaQ
+aba
+abi
+abq
+abB
+abQ
+acc
+acm
+acm
+acD
+acR
+adh
+adC
+adS
+aaZ
aaa
aaa
aaa
@@ -87222,36 +87151,7 @@ aaa
aaa
aaa
aaa
-aac
aaa
-aaf
-aai
-aam
-aam
-aaf
-aaf
-aaL
-aaf
-aaf
-abf
-aaW
-abo
-abx
-abx
-abx
-ack
-acB
-acO
-adh
-adh
-adD
-adV
-aet
-abx
-afo
-afI
-afX
-acP
aaa
aaa
aaa
@@ -87262,120 +87162,118 @@ aaa
aaa
aaa
aaa
+anY
+aoT
+apJ
+aqG
+art
+asA
+atv
+aur
+avI
+awZ
+awZ
+azg
+awZ
+awZ
+awZ
+apG
+apG
+aDV
+aAs
+aFC
+aGE
+aHE
+aIY
+aKb
+aLb
+aMo
+aNj
+aOa
+aPe
+aQd
+aRc
+aRZ
+bVS
+bVX
+aUK
+aUL
+aUK
+aQV
+aYB
+aWL
+bal
+baV
+bbE
+bcc
+bXy
+bcJ
+beR
+bdG
+bdG
+bib
+bji
+bky
+blU
+bnr
+bjl
+bji
+bqY
+bji
+bjl
+buf
+bvg
+bwj
+bxs
+bvg
+bvg
+bAo
+bBr
+bBr
+bBr
+bEe
+bEI
+bFu
+bGj
+bGO
+bHu
+bIj
+bIS
+bGa
+bKf
+bKT
+bLz
+bKT
+bMG
+bNn
+bNI
+bOc
+bMb
+bOZ
+bPv
+bPN
+bQd
+bQd
+bQJ
+bQs
+bRd
+bMW
+bMW
+bMX
+bMX
+bMX
+bMX
+bMX
+bMW
+bMW
+bQU
+bRd
+bIV
aaa
aaa
aaa
aaa
aaa
-aad
-apA
-aqj
-arm
-asi
-asU
-aub
-bWy
-avS
-axk
-ayD
-azp
-aAI
-aBJ
-aCE
-aCE
-aCE
-aEN
-aFy
-aGr
-aHf
-aIl
-aJg
-aKB
-aLG
-aMI
-aNW
-aIk
-aLD
-aQK
-aRN
-aRM
-aTK
-aUC
-bXH
-aWx
-aXy
-bYa
-aSE
-aWu
-aWv
-bYk
-bcE
-ayJ
-aFj
-ayJ
-bfs
-bZo
-bgC
-bgC
-bgC
-bZC
-bZE
-bnF
-bZE
-bqk
-bZP
-bsK
-btW
-bBZ
-bBZ
-bBZ
-cag
-bBZ
-bBZ
-bBb
-cag
-bDc
-bBZ
-bBb
-bFQ
-cbi
-bHg
-bHU
-bBZ
-bJg
-bJU
-bKD
-bLb
-bLR
-bME
-bNk
-bKD
-bOu
-bOS
-bPn
-bPd
-bQl
-bQK
-bRg
-bRy
-bRI
-bSb
-bSc
-bSD
-bSN
-bSW
-bOG
-bOG
-bSW
-bOG
-bOH
-bOG
-bOG
-bSW
-bSE
-bSN
-bKF
-aad
aaa
aaa
aaa
@@ -87439,12 +87337,12 @@ aaa
aaa
aaa
aaa
+"}
+(125,1,1) = {"
aaa
aaa
aaa
aaa
-"}
-(127,1,1) = {"
aaa
aaa
aaa
@@ -87475,42 +87373,40 @@ aaa
aaa
aaa
aaa
+aac
aaa
+aaf
+aah
+aal
+aam
+aam
+aam
+aay
+aaH
+aaH
+aaK
+aal
+aaR
+aaZ
+abj
+abr
+abC
+abR
+acd
+acd
+acd
+acd
+acS
+adi
+aaZ
+aaZ
+aaZ
+aew
+acf
aaa
aaa
aaa
-aac
aaa
-aaf
-aaj
-aam
-aaf
-aaf
-aaf
-aaL
-aaf
-aaf
-aaf
-abh
-abp
-aaf
-abz
-abX
-acl
-acC
-acN
-acN
-acN
-acN
-adW
-aeu
-aeR
-afp
-afJ
-afY
-acP
-acP
-acP
aaa
aaa
aaa
@@ -87523,119 +87419,117 @@ aaa
aaa
aaa
aaa
+anY
+aoU
+apL
+aqH
+aqH
+aqH
+ats
+aun
+avJ
+axb
+axP
+auo
+aAh
+aBc
+aAh
+awY
+aDk
+aDU
+aEP
+aFF
+aGJ
+aGJ
+aGJ
+aGJ
+aGJ
+aGJ
+aGJ
+aJZ
+aPd
+aQe
+aRd
+aSa
+aSS
+bVY
+aUM
+aVN
+bWq
+aXH
+aYC
+aKZ
+aKZ
+aFw
+aAs
+aDJ
+bcP
+bcK
+bcJ
+bgb
+bgb
+bcJ
+bjl
+bjl
+bjl
+bjl
+bjl
+bpK
+bqZ
+bYm
+boc
+boc
+boc
+boc
+boc
+boc
+boc
+boc
+boc
+boc
+boc
+bEf
+boc
+bFu
+bFu
+bFu
+bHv
+bFu
+bFu
+bGa
+bKg
+bKg
+bKg
+bKg
+bKf
+bNo
+bND
+bOd
+bOz
+bMb
+bPq
+bMb
+bMb
+bQs
+bQs
+bQs
+bRd
+bMW
+bMW
+bMW
+bMX
+bMW
+bMX
+bMW
+bMW
+bMW
+bRZ
+bSc
+bIV
aaa
aaa
aaa
aaa
-arg
-arg
-arg
-arg
-arg
-avT
-arg
-ayE
-ayH
-ayH
-aBK
-ayH
-ayH
-axo
-axo
-aFz
-aGs
-aHj
-aIm
-aJh
-aKC
-aKC
-aMJ
-aNX
-aIk
-aLD
-aQK
-aRO
-aSN
-aTL
-aUD
-aVw
-aWy
-aXz
-aYq
-aZs
-ban
-bYw
-bbX
-aHo
-bdp
-bdN
-aBT
-bft
-bZp
-bgD
-bgD
-bgD
-bgD
-bgD
-bnG
-bgD
-bgD
-brv
-bsL
-btX
-bsL
-bsL
-bsL
-bxU
-bsL
-bsL
-bBc
-bCa
-bDd
-bCa
-bEZ
-bFR
-bCa
-cbo
-bHV
-bCa
-bJh
-bJV
-bKD
-bLc
-bLS
-bMF
-bNl
-bKD
-bOv
-bOS
-bPn
-bPd
-bPd
-bPd
-bRg
-bRr
-bRI
-bSb
-bSc
-bSE
-bSN
-bSE
-bTd
-bSE
-bSE
-bTd
-bSE
-bSE
-bTd
-bSE
-bSE
-bSN
-bKF
-aad
-aad
-aad
-aad
aaa
aaa
aaa
@@ -87701,7 +87595,7 @@ aaa
aaa
aaa
"}
-(128,1,1) = {"
+(126,1,1) = {"
aaa
aaa
aaa
@@ -87739,36 +87633,33 @@ aaa
aac
aaa
aaf
-aaj
+aai
+aam
aam
aaf
aaf
-aaD
-aaN
-aaf
+aaz
aaf
aaf
-abi
-abq
-abA
-abM
-abY
-acm
-acC
-acP
-adi
-adi
-acP
-adW
-aev
-aeS
-aeS
-aeS
-acP
-acP
-acP
-agO
-aaa
+aaL
+aaH
+aaS
+aaZ
+aaZ
+aaZ
+abD
+abS
+ace
+acn
+acn
+acE
+acT
+adj
+aaZ
+adT
+aek
+aex
+acf
aaa
aaa
aaa
@@ -87784,113 +87675,114 @@ aaa
aaa
aaa
aaa
-agP
-arn
-asV
-arn
-auW
-avU
-auW
-ayE
-azv
-aAJ
-aBL
-aCF
-ayH
-aEe
-ayN
-aFw
-aBT
-aHd
-aIl
-aJi
-aKD
-aLH
-aMK
-aNY
-aOR
-aPI
-aQK
-aRN
-aRM
-aRM
-aUC
-aTG
-aWz
-aXA
-bYa
-aWv
-aWu
-aWv
-bYk
-aGX
-aBT
-aFn
-azF
-bfu
-bZq
-bgE
-bgE
-bgE
-bZD
-bZD
-bZD
-bZD
-bZD
-brw
-bgE
-btY
-bEb
-bvQ
-bEb
-bxV
-bzd
-bEb
-bBd
-bCb
-bDe
-bEb
-bFa
-bFS
-bgE
-bHh
-bgE
-bIz
-bJi
-bJV
-bKD
-bLd
-bLT
-bMG
-bNm
-bKD
-bOw
-bOQ
-bPp
-bPl
-bPM
-bPd
-bRh
-bRr
-bRI
-bSb
-bSc
-bSD
-bSP
-bSV
-bTe
-bSV
-bSV
-bTe
-bSV
-bSV
-bTe
-bSV
-bSV
-bTO
-bKF
aad
-aaa
+aoa
+aoJ
+apM
+aqI
+aru
+asB
+bUO
+aus
+avK
+axc
+axO
+azh
+aAi
+aBd
+aBd
+aBd
+aDm
+aDX
+aEQ
+aFE
+aGK
+aHF
+aIZ
+aKc
+aLc
+aMp
+aGJ
+aJZ
+aPd
+aQf
+aQe
+aSa
+aSS
+bVX
+aUN
+aVO
+bWq
+aQV
+aUK
+aUL
+bWA
+baU
+axi
+aDI
+axi
+bdI
+bXE
+beS
+beS
+beS
+bXS
+bXU
+blV
+bXU
+boA
+bYf
+bra
+bsm
+bAp
+bAp
+bAp
+bYw
+bAp
+bAp
+bzr
+bYw
+bBs
+bAp
+bzr
+bEg
+bZy
+bFw
+bGk
+bAp
+bHw
+bIk
+bIT
+bJr
+bKh
+bKU
+bLA
+bIT
+bMK
+bNi
+bND
+bNt
+bOB
+bPa
+bPw
+bPO
+bPY
+bQr
+bQs
+bQT
+bRd
+bRm
+bMW
+bMW
+bRm
+bMW
+bMX
+bMW
+bMW
+bRm
+bQU
+bRd
+bIV
aad
aaa
aaa
@@ -87906,7 +87798,9 @@ aaa
aaa
aaa
aaa
-aab
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -87958,7 +87852,7 @@ aaa
aaa
aaa
"}
-(129,1,1) = {"
+(127,1,1) = {"
aaa
aaa
aaa
@@ -87994,37 +87888,37 @@ aaa
aaa
aaa
aac
-aae
+aaa
aaf
aaj
-aan
+aam
aaf
aaf
-aaE
-aaO
-aaX
aaf
+aaz
aaf
-abj
-abr
-abB
-abN
-abZ
-acn
-acD
-acQ
-adj
-adj
-adE
-adX
-aew
-aeT
-afq
-afJ
-afZ
-agj
-agy
-agP
+aaf
+aaf
+aaM
+aaT
+aaf
+abb
+abs
+abE
+abT
+acd
+acd
+acd
+acd
+acU
+adk
+adD
+adU
+ael
+aey
+acf
+acf
+acf
aaa
aaa
aaa
@@ -88041,115 +87935,115 @@ aaa
aaa
aaa
aaa
-agP
-asj
-asW
-auc
-auX
-avV
-axl
-ayF
-azw
-aAK
-aBM
-aAM
-ayH
-aEf
-aEO
-aFw
-aBT
-aHk
-aIn
-aJj
-aKE
-aKE
-aML
-aNZ
-aIk
-aNN
-aQK
-aRM
-aSO
-aRM
-aUE
-aVx
-aWz
-bXW
-bYb
-aWu
-bao
-aMF
-aMF
-chq
-aBT
-aFk
-beA
-beF
-beB
-bhM
-bhM
-beB
-beJ
-beJ
-beJ
-beJ
-beJ
-brx
-bsM
-btZ
-buO
-buO
-buO
-buO
-buO
-buO
-bBe
-bCc
-bDf
-bEc
-bFb
-bgD
-bGt
-bHi
-bGt
-bIA
-bJi
-bJW
-bKE
-bKD
-bLU
-bMH
-bNn
-bNn
-bKF
-bOZ
-bPn
-bPO
-bQm
-bQL
-bPd
-bRz
-bNL
-bNL
-bNL
-bSG
-bSE
-bSX
-bSE
-bSE
-bSE
-bSE
-bSE
-bSE
-bSE
-bSX
-bSE
-bTP
-bNL
+apG
+apG
+apG
+apG
+apG
+aut
+apG
+axd
+axg
+axg
+aAj
+axg
+axg
+avO
+avO
+aDY
+aER
+aFI
+aGL
+aHG
+aJa
+aJa
+aLd
+aMq
+aGJ
+aJZ
+aPd
+aQg
+aRe
+aSb
+aST
+aTM
+aUO
+aVP
+aWG
+aXI
+aYD
+bWM
+ban
+aFN
+bbF
+bcd
+aAs
+bdJ
+bXF
+beT
+beT
+beT
+beT
+beT
+blW
+beT
+beT
+bpL
+brb
+bsn
+brb
+brb
+brb
+bwk
+brb
+brb
+bzs
+bAq
+bBt
+bAq
+bDp
+bEh
+bAq
+bZE
+bGl
+bAq
+bHx
+bIl
+bIT
+bJs
+bKi
+bKV
+bLB
+bIT
+bML
+bNi
+bND
+bNt
+bNt
+bNt
+bPw
+bPH
+bPY
+bQr
+bQs
+bQU
+bRd
+bQU
+bRt
+bQU
+bQU
+bRt
+bQU
+bQU
+bRt
+bQU
+bQU
+bRd
+bIV
+aad
+aad
+aad
aad
-aaa
-aaa
-aaa
aaa
aaa
aaa
@@ -88215,7 +88109,7 @@ aaa
aaa
aaa
"}
-(130,1,1) = {"
+(128,1,1) = {"
aaa
aaa
aaa
@@ -88257,31 +88151,31 @@ aaj
aam
aaf
aaf
-aaF
-aaP
+aat
+aaB
aaf
aaf
aaf
-bVV
-aaj
-bVW
-bVX
-aca
+aaN
+aaU
+abc
+abk
+abt
+abF
+abT
+acf
aco
-acC
-acP
-adi
-adi
-acP
-adW
-aex
-aeU
-aeU
-afK
-acP
-acP
-acP
-agO
+aco
+acf
+acU
+adl
+adE
+adE
+adE
+acf
+acf
+acf
+afo
aaa
aaa
aaa
@@ -88298,115 +88192,114 @@ aaa
aaa
aaa
aaa
-agP
-arn
-asX
-arn
-arn
-avW
-arn
-ayE
-azx
-aAL
-aBN
-aCG
-aDq
-bWR
-bWU
+afp
+apN
+arv
+apN
+atw
+auu
+atw
+axd
+axU
+azi
+aAk
+aBe
+axg
+aCD
+axm
+aDV
+aAs
+aFC
+aGK
+aHH
+aJb
+aKd
+aLe
+aMr
+aNk
+aOb
+aPd
+aQf
+aQe
+aQe
+aSS
+aRW
+aUP
+aVQ
+bWq
+aUL
+aUK
+aUL
+bWA
aFw
-aBT
-aHd
-aIl
-aJk
-aKF
-aLI
-aMM
-aOa
-aIk
-aPJ
-aQM
-aRP
-aSP
-aTM
-bXD
-aTG
-aWA
-aWv
-aWu
-aWv
-bap
-aYv
-bYF
-aGX
-aBT
-aFk
-beH
-beB
-bgF
-bfw
-bfw
-bjM
-beJ
-bmj
-bnH
-bpc
-beJ
-bry
-bsN
-bua
-buO
-bvR
-bwR
-bxW
-bze
-buO
-bBf
-bCd
-bDf
-bEd
-bFc
-bFT
-bGt
-bHj
-bGt
-bIB
-bJj
-bJV
-bKF
-bLe
-bLV
-bMI
-bNo
-bNL
-bOx
-bPa
-bPt
-bPP
-bQn
-bQM
-bRi
-bRA
-bRO
-bSh
-bSu
-bSH
-bSE
-bSY
-bSE
-bTi
-bTp
-bTy
-bTp
-bTg
-bSE
-bSY
-bSE
-bSE
-bNL
-aad
-aad
+aAs
+aDM
+aye
+bdK
+bXG
+beU
+beU
+beU
+bXT
+bXT
+bXT
+bXT
+bXT
+bpM
+beU
+bso
+bCr
+bug
+bCr
+bwl
+bxt
+bCr
+bzt
+bAr
+bBu
+bCr
+bDq
+bEi
+beU
+bFx
+beU
+bGP
+bHy
+bIl
+bIT
+bJt
+bKj
+bKW
+bLC
+bIT
+bMM
+bNg
+bNF
+bNB
+bOc
+bNt
+bPx
+bPH
+bPY
+bQr
+bQs
+bQT
+bRf
+bRl
+bRu
+bRl
+bRl
+bRu
+bRl
+bRl
+bRu
+bRl
+bRl
+bSe
+bIV
aad
aaa
+aad
aaa
aaa
aaa
@@ -88421,6 +88314,7 @@ aaa
aaa
aaa
aaa
+aab
aaa
aaa
aaa
@@ -88472,7 +88366,7 @@ aaa
aaa
aaa
"}
-(131,1,1) = {"
+(129,1,1) = {"
aaa
aaa
aaa
@@ -88508,247 +88402,37 @@ aaa
aaa
aaa
aac
-aaa
+aae
aaf
aaj
-aam
-aaf
-aaf
-aaf
-bVT
+aan
aaf
aaf
+aau
+aaC
+aaI
aaf
-abh
-abs
aaf
-abC
-acb
+aaO
+aaV
+abd
+abl
+abu
+abG
+abU
+acg
acp
-acC
-acR
-acR
-acR
-acR
-adY
-aey
-aeV
-afr
-afJ
-afY
-acP
-acP
-acP
-bVZ
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aqv
-arn
-arn
-arn
-arn
-auY
-avX
-axm
-ayG
-azy
-aAM
-aBO
-aCH
-ayH
-aEg
-bWV
-aFw
-aBT
-aHl
-aIk
-aJl
-aJl
-aJl
-aJl
-aIk
-aIk
-aNL
-aQK
-aQK
-aQK
-aQK
-aQK
-bXJ
-aWv
-aWu
-aWv
-aWu
-bYt
-aYv
-bYG
-aGX
-aBT
-aFk
-bZj
-beB
-bgG
-bfw
-bfw
-bjN
-beJ
-bmk
-bmD
-bmD
-bql
-brz
-bsO
-bub
-buP
-bvS
-bwS
-bxX
-bzf
-buO
-bBg
-bCe
-bDf
-bEe
-bgD
-bgD
-bGt
-bHk
-bGt
-bIA
-bJk
-bJX
-bKG
-bLf
-bLW
-bMJ
-bNp
-bNQ
-bOy
-bPb
-bPu
-bPd
-bQo
-bPd
-bPd
-bRo
-bNL
-bSi
-bNL
-bSI
-bSL
-bSZ
-bSL
-bTj
-bNL
-bNL
-bNL
-bTh
-bSL
-bTH
-bTI
-bTI
-bNL
-aad
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-"}
-(132,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+acp
+acF
+acV
+adm
+adF
+adV
+ael
+aez
+aeJ
+aeY
+afp
aaa
aaa
aaa
@@ -88764,159 +88448,112 @@ aaa
aaa
aaa
aaa
-aac
aaa
-aaf
-aag
-aam
-aam
-aaf
-aaf
-bVT
-aaf
-aaf
-aam
-aam
-aap
-abD
-abD
-abD
-acq
-acE
-acS
-adk
-adk
-adF
-adZ
-aez
-abD
-afs
-afL
-aga
-agk
-agz
-agz
-agY
-agz
-agz
-agz
-agz
-agY
-agz
-agz
-agz
-agz
-agY
-agz
-agz
-agz
-agz
-agY
-agz
-agz
-agz
-aud
-auZ
-avY
-axn
-ayH
-azz
-aAM
-aBP
-aCI
-ayH
-aEg
-bWV
-aFw
-aBT
-bXl
-aIo
-aJm
-aKG
-aLJ
-aMN
-aIo
-aMC
-aNL
-aQK
-aRQ
-aSQ
+afp
+aqJ
+arw
+asC
+atx
+auv
+avL
+axe
+axV
+azj
+aAl
+azl
+axg
+aCE
+aDn
+aDV
+aAs
+aFJ
+aGM
+aHI
+aJc
+aJc
+aLf
+aMs
+aGJ
+aMg
+aPd
+aQe
+aRf
+aQe
+aSU
aTN
-aUF
-aVy
-aWB
-aXB
-aYr
-aYn
-baq
-aMF
-bYH
-aGX
-aBT
-aFk
-beB
-beG
-bgH
-bfw
-bhN
-bjO
-beJ
-bml
-bnI
-bpd
-bqm
-brA
-bsP
-buc
-buO
-buO
-bwT
-bxY
-buO
-buO
-bBg
-bCd
-bDf
-bEf
-bgD
-bgD
-bgD
-bgD
-bgD
-bIA
-bgD
-bHW
-bKF
-bLg
-bLX
-bMK
-bNq
-bNR
-bOz
-bPc
-bPv
-bPc
-bQp
-bPd
-bPd
-bRB
-bNL
-bNL
-bNL
-bNL
-bNL
-bNL
-bNL
-bNL
-bNL
-bQj
-bNL
-bNL
-bNL
-bNL
-bNL
-bNL
-bTR
+aUP
+bWm
+bWr
+aUK
+aYE
+aKZ
+aKZ
+cfG
+aAs
+aDJ
+bcQ
+bcV
+bcR
+bgc
+bgc
+bcR
+bcZ
+bcZ
+bcZ
+bcZ
+bcZ
+bpN
+brc
+bsp
+bte
+bte
+bte
+bte
+bte
+bte
+bzu
+bAs
+bBv
+bCs
+bDr
+beT
+bEJ
+bFy
+bEJ
+bGQ
+bHy
+bIm
+bIU
+bIT
+bKk
+bKX
+bLD
+bLD
+bIV
+bNp
+bND
+bOe
+bOC
+bPb
+bNt
+bPP
+bMb
+bMb
+bMb
+bQW
+bQU
+bRn
+bQU
+bQU
+bQU
+bQU
+bQU
+bQU
+bQU
+bRn
+bQU
+bSf
+bMb
aad
aaa
aaa
@@ -88986,7 +88623,7 @@ aaa
aaa
aaa
"}
-(133,1,1) = {"
+(130,1,1) = {"
aaa
aaa
aaa
@@ -89024,159 +88661,159 @@ aaa
aac
aaa
aaf
-aah
-aal
-aam
-aam
-aam
-aam
-aam
-aam
+aaj
aam
-aal
-aaV
-abD
-abO
-acc
-acr
-acF
-acR
-acR
-acR
-acR
-aea
-aeA
-abD
-abD
-abD
-afW
-acP
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-arn
-ava
-arn
-arn
-ayH
-azA
-aAM
-aBQ
-aCJ
-aDq
-bWR
-bWW
-aFw
-aBT
-aHd
-bXm
-aJn
-aKH
-aLK
-aMO
-aIo
-aOS
-aNL
-aQK
-aRR
-aSR
-aTO
-aQK
-aQK
-aMF
-aYv
-aYs
-aWu
-bar
-aMF
-bbZ
-aGX
-aBT
-bdO
-beC
-bZm
-bgI
-bfv
-biI
-bZy
-bkW
-bmm
-bnJ
-bpe
-bqn
-brB
-bmG
-bud
-buO
-bvT
-bwU
-bxZ
-bzg
-buO
-bBg
-bCd
-bDf
-bEg
-bFd
-bFU
-bGu
-bHl
-bHW
-bIC
-bEb
-bJY
-bKH
-bLh
-bLY
-bLh
-bNr
-bNL
-bKF
-bPd
-bPw
-bPQ
-bQq
-bQN
-bPd
-bRC
-bNL
+aaf
+aaf
+aav
+aaD
+aaf
+aaf
+aaf
+bUl
+aaj
+bUm
+bUn
+abv
+abH
+abT
+acf
+aco
+aco
+acf
+acU
+adn
+adG
+adG
+aem
+acf
+acf
+acf
+afo
aaa
aaa
aaa
aaa
aaa
aaa
-aad
aaa
aaa
aaa
-aad
aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+afp
+apN
+arx
+apN
+apN
+auw
+apN
+axd
+axW
+azk
+aAm
+aBf
+aBP
+bVh
+bVk
+aDV
+aAs
+aFC
+aGK
+aHJ
+aJd
+aKe
+aLg
+aMt
+aGJ
+aOc
+aPf
+aQh
+aRg
+aSc
+bVT
+aRW
+aUQ
+aUL
+aUK
+aUL
+aYF
+aWL
+bWV
+aFw
+aAs
+aDJ
+bcX
+bcR
+beV
+bdM
+bdM
+bic
+bcZ
+bkz
+blX
+bns
+bcZ
+bpO
+brd
+bsq
+bte
+buh
+bvh
+bwm
+bxu
+bte
+bzv
+bAt
+bBv
+bCt
+bDs
+bEj
+bEJ
+bFz
+bEJ
+bGR
+bHz
+bIl
+bIV
+bJu
+bKl
+bKY
+bLE
+bMb
+bMN
+bNq
+bNJ
+bOf
+bOD
+bPc
+bPy
+bPQ
+bQe
+bQx
+bQK
+bQX
+bQU
+bRo
+bQU
+bRy
+bRF
+bRO
+bRF
+bRw
+bQU
+bRo
+bQU
+bQU
+bMb
aad
aad
aad
-aad
-aad
-aaa
-aaa
aaa
aaa
aaa
@@ -89243,7 +88880,7 @@ aaa
aaa
aaa
"}
-(134,1,1) = {"
+(131,1,1) = {"
aaa
aaa
aaa
@@ -89279,33 +88916,197 @@ aaa
aaa
aaa
aac
-aad
+aaa
aaf
-aai
-aao
-aaq
-aaj
-aah
-aaR
-aaV
aaj
-aai
-aao
-aaq
-abD
-abP
-acd
-acs
-acG
-acT
-adl
-adl
-adG
-acu
-aeB
-adm
-aft
-abD
+aam
+aaf
+aaf
+aaf
+bUj
+aaf
+aaf
+aaf
+aaM
+aaW
+aaf
+abe
+abw
+abI
+abT
+ach
+ach
+ach
+ach
+acW
+ado
+adH
+adW
+ael
+aey
+acf
+acf
+acf
+bUp
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aoV
+apN
+apN
+apN
+apN
+aty
+aux
+avM
+axf
+axX
+azl
+aAn
+aBg
+axg
+aCF
+bVl
+aDV
+aAs
+aFK
+aGJ
+aHK
+aHK
+aHK
+aHK
+aGJ
+aGJ
+aMe
+aPd
+aPd
+aPd
+aPd
+aPd
+bVZ
+aUL
+aUK
+aUL
+aUK
+bWJ
+aWL
+bWW
+aFw
+aAs
+aDJ
+bXz
+bcR
+beW
+bdM
+bdM
+bid
+bcZ
+bkA
+bkT
+bkT
+boB
+bpP
+bre
+bsr
+btf
+bui
+bvi
+bwn
+bxv
+bte
+bzw
+bAu
+bBv
+bCu
+beT
+beT
+bEJ
+bFA
+bEJ
+bGQ
+bHA
+bIn
+bIW
+bJv
+bKm
+bKZ
+bLF
+bMg
+bMO
+bNr
+bNK
+bNt
+bOE
+bNt
+bNt
+bPE
+bMb
+bQy
+bMb
+bQY
+bRb
+bRp
+bRb
+bRz
+bMb
+bMb
+bMb
+bRx
+bRb
+bRX
+bRY
+bRY
+bMb
+aad
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -89333,99 +89134,15 @@ aaa
aaa
aaa
aaa
-ayH
-azB
-aAN
-aBR
-aCK
-aDr
-aEh
-aEP
-aFw
-aBT
-aHk
-aIp
-aJo
-aKI
-aLL
-aMP
-aIo
-aOT
-aNL
-aQK
-aRS
-aSS
-aTP
-aUG
-aQK
-bXP
-aXC
-aYt
-aWv
-aVx
-bYk
-bbY
-aGX
-aBT
-aFk
-beD
-bfw
-bfw
-bZv
-biJ
-bZy
-bkX
-bmn
-bnI
-bpf
-bqo
-brC
-bmG
-bue
-bzm
-bzm
-bzm
-bzm
-bzm
-bzm
-bBh
-bCd
-bCk
-bEh
-bFe
-bFV
-bGv
-bCk
-bHX
-bID
-bJl
-bCk
-bCk
-bCk
-bLZ
-bCk
-bCk
-bCk
-bCk
-bNL
-bNL
-bNL
-bNL
-bNL
-bNL
-bNL
-bNL
-aad
-acJ
aaa
aaa
+"}
+(132,1,1) = {"
aaa
aaa
-aad
aaa
aaa
aaa
-aad
aaa
aaa
aaa
@@ -89455,7 +89172,160 @@ aaa
aaa
aaa
aaa
+aac
aaa
+aaf
+aag
+aam
+aam
+aaf
+aaf
+bUj
+aaf
+aaf
+aam
+aam
+aap
+abf
+abf
+abf
+abJ
+abV
+aci
+acq
+acq
+acG
+acX
+adp
+abf
+adX
+aen
+aeA
+aeK
+aeZ
+aeZ
+afy
+aeZ
+aeZ
+aeZ
+aeZ
+afy
+aeZ
+aeZ
+aeZ
+aeZ
+afy
+aeZ
+aeZ
+aeZ
+aeZ
+afy
+aeZ
+aeZ
+aeZ
+asD
+atz
+auy
+avN
+axg
+axY
+azl
+aAo
+aBh
+axg
+aCF
+bVl
+aDV
+aAs
+bVB
+aGN
+aHL
+aJe
+aKf
+aLh
+aGN
+aKW
+aMe
+aPd
+aQi
+aRh
+aSd
+aSV
+aTO
+aUR
+aVR
+aWH
+aWD
+aYG
+aKZ
+bWX
+aFw
+aAs
+aDJ
+bcR
+bcW
+beX
+bdM
+bgd
+bie
+bcZ
+bkB
+blY
+bnt
+boC
+bpQ
+brf
+bss
+bte
+bte
+bvj
+bwo
+bte
+bte
+bzw
+bAt
+bBv
+bCv
+beT
+beT
+beT
+beT
+beT
+bGQ
+beT
+bGm
+bIV
+bJw
+bKn
+bLa
+bLG
+bMh
+bMP
+bNs
+bNL
+bNs
+bOF
+bNt
+bNt
+bPR
+bMb
+bMb
+bMb
+bMb
+bMb
+bMb
+bMb
+bMb
+bMb
+bOz
+bMb
+bMb
+bMb
+bMb
+bMb
+bMb
+bSh
+aad
aaa
aaa
aaa
@@ -89499,8 +89369,6 @@ aaa
aaa
aaa
aaa
-"}
-(135,1,1) = {"
aaa
aaa
aaa
@@ -89525,6 +89393,8 @@ aaa
aaa
aaa
aaa
+"}
+(133,1,1) = {"
aaa
aaa
aaa
@@ -89535,36 +89405,7 @@ aaa
aaa
aaa
aaa
-aac
aaa
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-aaf
-abD
-abQ
-ace
-act
-acH
-acU
-adm
-adm
-adH
-aeb
-aeC
-adm
-aft
-abD
-aad
-aac
aaa
aaa
aaa
@@ -89588,84 +89429,156 @@ aaa
aaa
aaa
aaa
+aac
aaa
+aaf
+aah
+aal
+aam
+aam
+aam
+aam
+aam
+aam
+aam
+aal
+aaG
+abf
+abm
+abx
+abK
+abW
+ach
+ach
+ach
+ach
+acY
+adq
+abf
+abf
+abf
+aew
+acf
aad
-ayH
-azC
-aAO
-aBS
-aCL
-ayH
-aEi
-ayN
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+apN
+atA
+apN
+apN
+axg
+axZ
+azl
+aAp
+aBi
+aBP
+bVh
+bVm
+aDV
+aAs
+aFC
+bVC
+aHM
+aJf
+aKg
+aLi
+aGN
+aNl
+aMe
+aPd
+aQj
+aRi
+aSe
+aPd
+aPd
+aKZ
+aWL
+aWI
+aUK
+aYH
+aKZ
+bap
aFw
-aBT
-aHd
-bXm
-aJp
-aKJ
-aLM
-aMQ
-aIo
-aOU
-aNL
-aQK
-aQK
-aST
-aTQ
-aUH
-aQK
-bXQ
-aXD
-aYu
-aWu
-aTG
-bYk
-bbY
-bcH
-ayJ
-aFj
-beE
-bfx
-bgJ
-bhP
-biJ
-bZz
+aAs
+bce
+bcS
+bXC
+beY
+bdL
+bgY
+bXO
+bjm
+bkC
+blZ
+bnu
+boD
+bpR
bkW
-bmo
-bnK
-bpg
-bqp
-brD
-bmG
-buf
-buR
-bvU
-bwV
-bya
-bzh
-bzm
-bBg
-bCd
-bCk
-bEi
-bFf
-bFW
-bGw
-bHm
-bHY
-bIE
-bJm
-bHm
-bEi
-bcG
-bMa
-bOB
-bNs
-bNS
-bPf
-abt
-bLn
+bst
+bte
+buj
+bvk
+bwp
+bxw
+bte
+bzw
+bAt
+bBv
+bCw
+bDt
+bEk
+bEK
+bFB
+bGm
+bGS
+bCr
+bIo
+bIX
+bJx
+bKo
+bJx
+bLH
+bMb
+bIV
+bNt
+bNM
+bOg
+bOG
+bPd
+bNt
+bPS
+bMb
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+aaa
+aaa
+aaa
+aad
+aaa
+aad
aad
aad
aad
@@ -89673,17 +89586,8 @@ aad
aaa
aaa
aaa
-acJ
aaa
aaa
-abu
-acJ
-acJ
-acJ
-acJ
-acJ
-acJ
-acJ
aaa
aaa
aaa
@@ -89746,6 +89650,27 @@ aaa
aaa
aaa
aaa
+"}
+(134,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -89756,13 +89681,39 @@ aaa
aaa
aaa
aaa
-"}
-(136,1,1) = {"
aaa
aaa
aaa
aaa
aaa
+aac
+aad
+aaf
+aai
+aao
+aaq
+aaj
+aah
+aaF
+aaG
+aaj
+aai
+aao
+aaq
+abf
+abn
+aby
+abL
+abX
+acj
+acr
+acr
+acH
+abN
+adr
+acs
+adY
+abf
aaa
aaa
aaa
@@ -89790,6 +89741,90 @@ aaa
aaa
aaa
aaa
+axg
+aya
+azm
+aAq
+aBj
+aBQ
+aCG
+aDo
+aDV
+aAs
+aFJ
+aGO
+aHN
+aJg
+aKh
+aLj
+aGN
+aNm
+aMe
+aPd
+aQk
+aRj
+aSf
+aSW
+aPd
+bWf
+aVS
+aWJ
+aUL
+aTN
+bWA
+bao
+aFw
+aAs
+aDJ
+bcT
+bdM
+bdM
+bXL
+bgZ
+bXO
+bjn
+bkD
+blY
+bnv
+boE
+bpS
+bkW
+bsu
+bxC
+bxC
+bxC
+bxC
+bxC
+bxC
+bzx
+bAt
+bAA
+bCx
+bDu
+bEl
+bEL
+bAA
+bGn
+bGT
+bHB
+bAA
+bAA
+bAA
+bKp
+bAA
+bAA
+bAA
+bAA
+bMb
+bMb
+bMb
+bMb
+bMb
+bMb
+bMb
+bMb
+aad
+abZ
aaa
aaa
aaa
@@ -89798,30 +89833,11 @@ aad
aaa
aaa
aaa
-aaa
aad
-bVU
aaa
aaa
aaa
-abk
-abt
-abE
-abE
-abE
-acu
-abD
-abD
-abD
-abD
-abD
-abD
-aeD
-aeW
-afu
-abD
aaa
-aac
aaa
aaa
aaa
@@ -89838,99 +89854,6 @@ aaa
aaa
aaa
aaa
-aad
-aqw
-aqw
-aqw
-aqw
-aqw
-aqw
-aad
-axo
-ayH
-ayH
-aAP
-ayH
-ayH
-ayH
-ayN
-ayN
-aFA
-aED
-aHe
-aIo
-aJq
-aKK
-aLN
-aMR
-aIo
-aOV
-aPK
-aKv
-aRT
-aSU
-aTR
-aUI
-aQK
-bXR
-aXE
-aYt
-aWv
-bat
-aMF
-bYI
-aGX
-aBT
-bdQ
-beB
-bfy
-bgK
-bhQ
-biK
-beG
-beJ
-beJ
-beJ
-beJ
-bpn
-brE
-bpn
-bjU
-buR
-bvV
-bwW
-byb
-bzi
-bzm
-bBi
-bCf
-bDg
-bEj
-bFg
-bFX
-bGx
-bHn
-bHZ
-bIF
-bJn
-bJZ
-bKI
-bLi
-bMb
-bIc
-bNt
-bNT
-bCk
-aad
-bCt
-bCt
-bCt
-bCt
-bCt
-aad
-aac
-aad
-acJ
aaa
aaa
aaa
@@ -89984,6 +89907,10 @@ aaa
aaa
aaa
aaa
+"}
+(135,1,1) = {"
+aaa
+aaa
aaa
aaa
aaa
@@ -90013,8 +89940,164 @@ aaa
aaa
aaa
aaa
-"}
-(137,1,1) = {"
+aaa
+aaa
+aaa
+aac
+aaa
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+abf
+abo
+abz
+abM
+abY
+ack
+acs
+acs
+acI
+acZ
+ads
+acs
+adY
+abf
+aad
+aac
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+axg
+ayb
+azn
+aAr
+aBk
+axg
+aCH
+axm
+aDV
+aAs
+aFC
+bVC
+aHO
+aJh
+aKi
+aLk
+aGN
+aNn
+aMe
+aPd
+aPd
+aRk
+aSg
+aSX
+aPd
+bWg
+aVT
+aWK
+aUK
+aRW
+bWA
+bao
+baX
+axi
+aDI
+bcU
+bdN
+beZ
+bgf
+bgZ
+bXP
+bjm
+bkE
+bma
+bnw
+boF
+bpT
+bkW
+bsv
+bth
+buk
+bvl
+bwq
+bxx
+bxC
+bzw
+bAt
+bAA
+bCy
+bDv
+bEm
+bEM
+bFC
+bGo
+bGU
+bHC
+bFC
+bCy
+baW
+bKq
+bMR
+bLI
+bMi
+bNv
+aaX
+bJD
+aad
+aad
+aad
+aad
+aaa
+aaa
+aaa
+abZ
+aaa
+aaa
+aaY
+abZ
+abZ
+abZ
+abZ
+abZ
+abZ
+abZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -90049,36 +90132,14 @@ aaa
aaa
aaa
aaa
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
-aac
aaa
aaa
-aad
aaa
aaa
aaa
aaa
-aad
aaa
aaa
-abD
-abD
-abD
-abD
-abD
-aad
-aac
aaa
aaa
aaa
@@ -90096,98 +90157,80 @@ aaa
aaa
aaa
aaa
-aqw
-aro
-ask
-asY
-aue
-avb
-aad
-awb
-bWD
-azD
-aAQ
-aBT
-ayN
-aDs
-aEj
-ayN
-bXd
-aBT
-aHd
-aIo
-aIo
-aKL
-aLO
-aIo
-aIo
-aIf
-bXr
-aIf
-aQK
-aQK
-aTS
-aQK
-aQK
-aMF
-aMF
-bYc
-bYk
-aMF
-aMF
-aBT
-aGX
-aBT
-bYY
-beF
-bfz
-bZr
-bfw
-biL
-bjP
-bkY
-bmp
-bnL
-bph
-bqq
-brF
-bsQ
-bug
-buS
-bvW
-bwX
-byc
-bzj
-bAh
-bBj
-bCd
-bCk
-bEk
-bFh
-bFY
-bGy
-bHm
-bIa
-bIG
-bJo
-bHm
-bKJ
-bGI
-bMc
-bGI
-bNu
-bNU
-bOA
-bPe
-bPx
-bPR
-bQr
-bQr
-bCt
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(136,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aad
+aaa
+aaa
+aaa
+aaa
+aad
+bUk
+aaa
+aaa
+aaa
+aaP
+aaX
+abg
+abg
+abg
+abN
+abf
+abf
+abf
+abf
+abf
+abf
+adt
+adI
+adZ
+abf
aaa
aac
aaa
-acJ
aaa
aaa
aaa
@@ -90203,6 +90246,101 @@ aaa
aaa
aaa
aaa
+aad
+aoW
+aoW
+aoW
+aoW
+aoW
+aoW
+aad
+avO
+axg
+axg
+azo
+axg
+axg
+axg
+axm
+axm
+aDZ
+aDc
+aFD
+aGN
+aHP
+aJi
+aKj
+aLl
+aGN
+aNo
+aOd
+aIT
+aQl
+aRl
+aSh
+aSY
+aPd
+bWh
+aVU
+aWJ
+aUL
+aYJ
+aKZ
+bWY
+aFw
+aAs
+bcg
+bcR
+bdO
+bfa
+bgg
+bha
+bcW
+bcZ
+bcZ
+bcZ
+bcZ
+bnD
+bpU
+bnD
+bik
+bth
+bul
+bvm
+bwr
+bxy
+bxC
+bzy
+bAv
+bBw
+bCz
+bDw
+bEn
+bEN
+bFD
+bGp
+bGV
+bHD
+bIp
+bIY
+bJy
+bKr
+bGs
+bLJ
+bMj
+bAA
+aad
+bAJ
+bAJ
+bAJ
+bAJ
+bAJ
+aad
+aac
+aad
+abZ
+aaa
+aaa
aaa
aaa
aaa
@@ -90270,8 +90408,6 @@ aaa
aaa
aaa
aaa
-"}
-(138,1,1) = {"
aaa
aaa
aaa
@@ -90285,6 +90421,8 @@ aaa
aaa
aaa
aaa
+"}
+(137,1,1) = {"
aaa
aaa
aaa
@@ -90319,7 +90457,6 @@ aaa
aaa
aaa
aaa
-abu
aac
aac
aac
@@ -90328,13 +90465,27 @@ aac
aac
aac
aac
+aac
+aac
+aac
+aac
+aac
+aaa
aaa
aad
aaa
aaa
aaa
+aaa
aad
aaa
+aaa
+abf
+abf
+abf
+abf
+abf
+aad
aac
aaa
aaa
@@ -90352,99 +90503,99 @@ aaa
aaa
aaa
aaa
+aaa
+aoW
+apO
+aqK
+ary
+asE
+atB
aad
-aqw
-arp
-asl
-asZ
-auf
-avc
-avZ
-avZ
-ayJ
-ayJ
-aAR
-ayJ
-aCM
-ayJ
-ayJ
-aEE
-aFj
-ayJ
-aHm
-ayJ
-aJr
-aKM
-aLP
-aJr
-aOb
-bXq
-bXs
-aQN
-aRU
-bXq
-aTT
-bXq
-aVC
-aWC
-bXq
-bYd
-bXq
-ayJ
-aEE
-bcb
-bcD
-aBT
-bdQ
-beB
-bfA
-bZs
-bfx
-biM
-bjQ
-bkZ
-bmq
-bnM
-bpi
-bqr
-brG
-bsR
-buh
-buT
-bvX
-bwY
-byd
-bzk
-bzm
-bBk
-bCd
-bCk
-bEl
-bFh
-bFY
-bGz
-bCk
-bCk
-bCk
-bCk
-bCk
-bKK
-bLj
-bMd
-bML
-bNv
-bNV
-bHm
-aad
-bEA
-bPS
-bQs
-bQO
-bCt
+auB
+bUT
+ayc
+azp
+aAs
+axm
+aBR
+aCI
+axm
+bVt
+aAs
+aFC
+aGN
+aGN
+aJj
+aKk
+aGN
+aGN
+aGE
+bVH
+aGE
+aPd
+aPd
+aSi
+aPd
+aPd
+aKZ
+aKZ
+bWs
+bWA
+aKZ
+aKZ
+aAs
+aFw
+aAs
+bXo
+bcV
+bdP
+bXH
+bdM
+bhb
+bif
+bjo
+bkF
+bmb
+bnx
+boG
+bpV
+brg
+bsw
+bti
+bum
+bvn
+bws
+bxz
+byx
+bzz
+bAt
+bAA
+bCA
+bDx
+bEo
+bEO
+bFC
+bGq
+bGW
+bHE
+bFC
+bIZ
+bEY
+bKs
+bEY
+bLK
+bMk
+bMQ
+bNu
+bNN
+bOh
+bOH
+bOH
+bAJ
aaa
aac
aaa
-aaa
+abZ
aaa
aaa
aaa
@@ -90528,17 +90679,7 @@ aaa
aaa
aaa
"}
-(139,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+(138,1,1) = {"
aaa
aaa
aaa
@@ -90586,12 +90727,22 @@ aaa
aaa
aaa
aaa
+aaY
+aac
+aac
+aac
aac
aac
aac
aac
aac
aaa
+aad
+aaa
+aaa
+aaa
+aad
+aaa
aac
aaa
aaa
@@ -90608,96 +90759,96 @@ aaa
aaa
aaa
aaa
+aaa
aad
-aad
-aqw
-arq
-asm
-ata
-aug
-avd
-awa
-axp
-ayK
-azE
-aAS
-aBU
-aBU
-aBU
-aBU
-aEQ
-aFB
-aGt
-aKN
-aBU
-aBU
-aKN
-aLQ
-aMS
-aMS
-aMS
-aMS
-aQO
-aGX
-aBT
-aFk
-aBT
-aBT
-aBT
-aXF
-aBT
-aBT
-aBT
-aED
-aBT
-bcI
-bdn
-bdP
-beG
-bfB
-bZt
-bfw
-biN
-beG
-bla
-bmr
-bnN
-bpj
-bqs
-brH
-biJ
-bug
-buS
-bvY
-bwZ
-bye
-bzl
-bzm
-bBk
-bCd
-bCk
-bEm
-bFh
-bFY
-bGA
-cbp
-bIb
-bIH
-bJp
-cbp
-bKL
-bMc
-bGI
-bLk
-bNw
-bOa
-bLs
-bPg
-bPx
-bPT
-bQr
-bQr
-bCt
+aoW
+apP
+aqL
+arz
+asF
+atC
+auz
+auz
+axi
+axi
+azq
+axi
+aBl
+axi
+axi
+aDd
+aDI
+axi
+aFL
+axi
+aHQ
+aJk
+aKl
+aHQ
+aMu
+bVG
+bVI
+aPg
+aQm
+bVG
+aSj
+bVG
+aTS
+aUS
+bVG
+bWt
+bVG
+axi
+aDd
+bar
+baT
+aAs
+bcg
+bcR
+bdQ
+bXI
+bdN
+bhc
+big
+bjp
+bkG
+bmc
+bny
+boH
+bpW
+brh
+bsx
+btj
+bun
+bvo
+bwt
+bxA
+bxC
+bzA
+bAt
+bAA
+bCB
+bDx
+bEo
+bEP
+bAA
+bAA
+bAA
+bAA
+bAA
+bJa
+bJz
+bKt
+bLb
+bLL
+bMl
+bFC
+aad
+bCQ
+bOi
+bOI
+bPe
+bAJ
aaa
aac
aaa
@@ -90785,14 +90936,7 @@ aaa
aaa
aaa
"}
-(140,1,1) = {"
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+(139,1,1) = {"
aaa
aaa
aaa
@@ -90850,7 +90994,13 @@ aaa
aaa
aaa
aaa
+aac
+aac
+aac
+aac
+aac
aaa
+aac
aaa
aaa
aaa
@@ -90867,94 +91017,95 @@ aaa
aaa
aaa
aad
-aqw
-arr
-asn
-atb
-auh
-ave
-awb
-awb
-ayL
-azF
-aAT
-azF
-azF
-azF
-azF
-aEC
-aAT
-aGu
-aHo
-azF
-aJs
-aKO
-aLR
-aMT
-aJs
-aJs
-aFh
-aQP
-aHo
-aJs
-aTU
-aJs
-bXK
-aJs
-aTU
-aJs
-aMT
-azF
-aEC
-azF
-aHo
-azF
-bYZ
-beG
-bfC
-bfD
-bfD
-bfC
-bfC
-bfC
-bfC
-bfC
-bfC
-bqt
-brI
-biJ
-bui
-buR
-buR
-buR
-buR
-bzm
-bzm
-bBk
-bCg
-bDh
-bEn
-bFi
-bFZ
-bGB
-bHo
-bIc
-bIc
-bIc
-bIc
-bKM
-bMc
-bGI
-bFY
-bNv
-bNX
-bHm
aad
-bCt
-bCt
-bCt
-bCt
-bCt
+aoW
+apQ
+aqM
+arA
+asG
+atD
+auA
+avP
+axj
+ayd
+azr
+aAt
+aAt
+aAt
+aAt
+aDp
+aEa
+aES
+aJl
+aAt
+aAt
+aJl
+aKm
+aLm
+aLm
+aLm
+aLm
+aPh
+aFw
+aAs
+aDJ
+aAs
+aAs
+aAs
+aVV
+aAs
+aAs
+aAs
+aDc
+aAs
+baY
+bbD
+bcf
+bcW
+bdR
+bXJ
+bdM
+bhd
+bcW
+bjq
+bkH
+bmd
+bnz
+boI
+bpX
+bgZ
+bsw
+bti
+buo
+bvp
+bwu
+bxB
+bxC
+bzA
+bAt
+bAA
+bCC
+bDx
+bEo
+bEQ
+bZF
+bGr
+bGX
+bHF
+bZF
+bJb
+bKs
+bEY
+bJA
+bLM
+bMq
+bJI
+bNw
+bNN
+bOj
+bOH
+bOH
+bAJ
aaa
aac
aaa
@@ -90988,7 +91139,7 @@ aaa
aaa
aaa
aaa
-bUc
+aaa
aaa
aaa
aaa
@@ -91042,7 +91193,7 @@ aaa
aaa
aaa
"}
-(141,1,1) = {"
+(140,1,1) = {"
aaa
aaa
aaa
@@ -91124,94 +91275,94 @@ aaa
aaa
aaa
aad
-aqw
-ars
-aso
-atc
-aui
-aqw
-aad
-awb
-ayM
-azG
-aAU
-aBV
-ayM
-bWP
-aAU
-ayN
-aFC
-aGv
-aHp
-aIs
-aIs
-aKP
-aLS
-aIs
-aIs
-aMX
-aPL
-aQQ
-aQX
-aMX
-aIt
-aIt
-aIt
-aIt
-aIt
-aCd
-aCd
-aCd
-aCd
-bYJ
-aGX
-aBT
-aFk
-beH
-bfD
-bgN
-bhS
-biO
-bjR
-blb
-bms
-bZG
-bpk
-bqu
-brJ
-bsS
-bui
-buU
-bvZ
-bxa
-byf
-bzn
-bAi
-bBl
-bCh
-bCk
+aoW
+apR
+aqN
+arB
+asH
+atE
+auB
+auB
+axk
+aye
+azs
+aye
+aye
+aye
+aye
+aDb
+azs
+aET
+aFN
+aye
+aHR
+aJm
+aKn
+aLn
+aHR
+aHR
+aDG
+aPi
+aFN
+aHR
+aSk
+aHR
+bWa
+aHR
+aSk
+aHR
+aLn
+aye
+aDb
+aye
+aFN
+aye
+bXp
+bcW
+bdS
+bdT
+bdT
+bdS
+bdS
+bdS
+bdS
+bdS
+bdS
+boJ
+bpY
+bgZ
+bsy
+bth
+bth
+bth
+bth
+bxC
+bxC
+bzA
+bAw
+bBx
+bCD
+bDy
+bEp
+bER
+bFE
+bGs
+bGs
+bGs
+bGs
+bJc
+bKs
+bEY
bEo
-bFj
-bFY
-bGC
-bHp
-bHp
-bII
-bGI
-bGI
-bKN
-bMN
-bGI
-bFY
-bNu
-bNU
-bOA
-bPe
-bPx
-bPU
-bQt
-bQt
-bCt
+bLL
+bMn
+bFC
+aad
+bAJ
+bAJ
+bAJ
+bAJ
+bAJ
aaa
aac
aaa
@@ -91245,7 +91396,7 @@ aaa
aaa
aaa
aaa
-aaa
+bSs
aaa
aaa
aaa
@@ -91299,7 +91450,31 @@ aaa
aaa
aaa
"}
-(142,1,1) = {"
+(141,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -91356,6 +91531,98 @@ aaa
aaa
aaa
aaa
+aad
+aoW
+apS
+aqO
+arC
+asI
+aoW
+aad
+auB
+axl
+ayf
+azt
+aAu
+axl
+bVf
+azt
+axm
+aEb
+aEU
+aFO
+aGR
+aGR
+aJn
+aKo
+aGR
+aGR
+aLr
+aOe
+aPj
+aPq
+aLr
+aGS
+aGS
+aGS
+aGS
+aGS
+aAC
+aAC
+aAC
+aAC
+bWZ
+aFw
+aAs
+aDJ
+bcX
+bdT
+bfd
+bgi
+bhe
+bih
+bjr
+bkI
+bXW
+bnA
+boK
+bpZ
+bri
+bsy
+btk
+bup
+bvq
+bwv
+bxD
+byy
+bzB
+bAx
+bAA
+bCE
+bDz
+bEo
+bES
+bFF
+bFF
+bGY
+bEY
+bEY
+bJd
+bLd
+bEY
+bEo
+bLK
+bMk
+bMQ
+bNu
+bNN
+bOk
+bOJ
+bOJ
+bAJ
+aaa
+aac
+aaa
aaa
aaa
aaa
@@ -91380,101 +91647,9 @@ aaa
aaa
aaa
aaa
-aad
-aqw
-aqw
-aqw
-aqw
-aqw
-aqw
-aad
-axo
-ayN
-awb
-awb
-ayN
-ayN
-awb
-awb
-aoP
-aFD
-aGw
-aHq
-aIs
-aJt
-aKQ
-aLT
-aMU
-aOc
-aOW
-aPM
-aLY
-aRV
-aSV
-aMX
-aUJ
-aVD
-aWE
-aIt
-bYe
-bYl
-aDH
-bbf
-aBT
-aGX
-bYQ
-aFk
-beH
-bfE
-bgO
-bgP
-bgP
-bgP
-blc
-bmt
-bnO
-bpl
-bqv
-brK
-bsT
-buj
-buV
-bwa
-bxb
-byg
-bzn
-bAj
-bBm
-bCi
-bDi
-bEp
-bFj
-bFY
-bGD
-cbp
-bId
-bIJ
-bId
-cbp
-bKO
-bGI
-bGI
-bFY
-bNv
-bNY
-bHm
-aad
-bEA
-bPV
-bQu
-bQP
-bCt
-aad
-aac
aaa
aaa
aaa
-aac
aaa
aaa
aaa
@@ -91531,6 +91706,8 @@ aaa
aaa
aaa
aaa
+"}
+(142,1,1) = {"
aaa
aaa
aaa
@@ -91555,8 +91732,6 @@ aaa
aaa
aaa
aaa
-"}
-(143,1,1) = {"
aaa
aaa
aaa
@@ -91613,9 +91788,101 @@ aaa
aaa
aaa
aaa
+aad
+aoW
+aoW
+aoW
+aoW
+aoW
+aoW
+aad
+avO
+axm
+auB
+auB
+axm
+axm
+auB
+auB
+anp
+aEc
+aEV
+aFP
+aGR
+aHS
+aJo
+aKp
+aLo
+aMv
+aNp
+aOf
+aKu
+aQn
+aRm
+aLr
+aSZ
+aTT
+aUU
+aGS
+bWu
+bWB
+aCg
+aZv
+aAs
+aFw
+bXg
+aDJ
+bcX
+bdU
+bfe
+bff
+bff
+bff
+bjs
+bkJ
+bme
+bnB
+boL
+bqa
+brj
+bsz
+btl
+buq
+bvr
+bww
+bxD
+byz
+bzC
+bAy
+bBy
+bCF
+bDz
+bEo
+bET
+bZF
+bGt
+bGZ
+bGt
+bZF
+bJe
+bEY
+bEY
+bEo
+bLL
+bMo
+bFC
+aad
+bCQ
+bOl
+bOK
+bPf
+bAJ
+aad
+aac
aaa
aaa
aaa
+aac
aaa
aaa
aaa
@@ -91653,85 +91920,10 @@ aaa
aaa
aaa
aaa
-aoP
-aFE
-aGx
-axz
-aIs
-aJu
-aKR
-aLU
-aMV
-aOd
-aOX
-aPN
-aLY
-aRW
-aSW
-aTV
-aUK
-aSa
-aWF
-aIt
-bYf
-aIy
-aCd
-aCd
-bcc
-bcJ
-bdq
-bdQ
-beH
-bfD
-bgP
-bZw
-bZx
-bZx
-bld
-bgP
-bgP
-bpk
-bqu
-bfw
-bsU
-bui
-buW
-bwb
-bxc
-byh
-bzo
-bAk
-bBn
-bCj
-bCk
-bEq
-bFk
-bGa
-bGE
-cbp
-cbp
-cbp
-cbp
-cbp
-bKP
-bGI
-bDj
-bMe
-bNy
-bNZ
-bLs
-bPg
-bPx
-bPW
-bQt
-bQt
-bCt
aaa
-aac
aaa
aaa
aaa
-aac
aaa
aaa
aaa
@@ -91771,6 +91963,8 @@ aaa
aaa
aaa
aaa
+"}
+(143,1,1) = {"
aaa
aaa
aaa
@@ -91812,8 +92006,6 @@ aaa
aaa
aaa
aaa
-"}
-(144,1,1) = {"
aaa
aaa
aaa
@@ -91869,10 +92061,85 @@ aaa
aaa
aaa
aaa
+anp
+aEd
+aEW
+avZ
+aGR
+aHT
+aJp
+aKq
+aLp
+aMw
+aNq
+aOg
+aKu
+aQo
+aRn
+aSl
+aTa
+aQs
+aUV
+aGS
+bWv
+aGX
+aAC
+aAC
+bas
+baZ
+bbG
+bcg
+bcX
+bdT
+bff
+bXM
+bXN
+bXN
+bjt
+bff
+bff
+bnA
+boK
+bdM
+brk
+bsy
+btm
+bur
+bvs
+bwx
+bxE
+byA
+bzD
+bAz
+bAA
+bCG
+bDA
+bEq
+bEU
+bZF
+bZF
+bZF
+bZF
+bZF
+bJf
+bEY
+bBz
+bKu
+bLO
+bMp
+bJI
+bNw
+bNN
+bOm
+bOJ
+bOJ
+bAJ
aaa
+aac
aaa
aaa
aaa
+aac
aaa
aaa
aaa
@@ -91883,13 +92150,6 @@ aaa
aaa
aaa
aaa
-aad
-ait
-ait
-aiu
-aiu
-ait
-ait
aaa
aaa
aaa
@@ -91910,85 +92170,7 @@ aaa
aaa
aaa
aaa
-aER
-aFE
-aGx
-aHr
-aIs
-aJv
-aKS
-aLV
-aMW
-aOc
-aOW
-aPM
-aQR
-aRV
-aSX
-aTW
-aUL
-aMZ
-aWG
-aIt
-aDH
-aZv
-bau
-bau
-bcd
-bcK
-bau
-bdR
-bau
-bfC
-bgQ
-bhT
-biP
-biP
-bld
-bmu
-bnP
-bpm
-bqw
-bfw
-bZS
-buk
-buk
-buk
-buk
-buk
-buk
-bwg
-buk
-bCk
-bCk
-bEr
-bFj
-bFY
-bGF
-cbp
-bIe
-bIe
-bIe
-cbp
-bKQ
-bGI
-bDl
-bFY
-bNz
-cco
-ccC
-aad
-bCt
-bCt
-bCt
-bCt
-bCt
aaa
-aac
-aad
-aad
-aad
-aac
aaa
aaa
aaa
@@ -92038,6 +92220,8 @@ aaa
aaa
aaa
aaa
+"}
+(144,1,1) = {"
aaa
aaa
aaa
@@ -92069,8 +92253,6 @@ aaa
aaa
aaa
aaa
-"}
-(145,1,1) = {"
aaa
aaa
aaa
@@ -92109,6 +92291,13 @@ aaa
aaa
aaa
aaa
+aad
+agT
+agT
+agU
+agU
+agT
+agT
aaa
aaa
aaa
@@ -92129,7 +92318,85 @@ aaa
aaa
aaa
aaa
+aDq
+aEd
+aEW
+aFQ
+aGR
+aHU
+aJq
+aKr
+aLq
+aMv
+aNp
+aOf
+aPk
+aQn
+aRo
+aSm
+aTb
+aLt
+aUW
+aGS
+aCg
+aXL
+aYK
+aYK
+bat
+bba
+aYK
+bch
+aYK
+bdS
+bfg
+bgj
+bhf
+bhf
+bjt
+bkK
+bmf
+bnC
+boM
+bdM
+bYi
+bsA
+bsA
+bsA
+bsA
+bsA
+bsA
+buw
+bsA
+bAA
+bAA
+bCH
+bDz
+bEo
+bEV
+bZF
+bGu
+bGu
+bGu
+bZF
+bJg
+bEY
+bBB
+bEo
+bLP
+caE
+caS
+aad
+bAJ
+bAJ
+bAJ
+bAJ
+bAJ
aaa
+aac
+aad
+aad
+aad
+aac
aaa
aaa
aaa
@@ -92140,17 +92407,6 @@ aaa
aaa
aaa
aaa
-aad
-ait
-bWi
-aiT
-ald
-ald
-ait
-ait
-ait
-aiu
-ait
aaa
aaa
aaa
@@ -92167,85 +92423,10 @@ aaa
aaa
aaa
aaa
-aER
-aFE
-aGx
-axz
-aIt
-aIt
-aKT
-aLW
-aMX
-aIt
-aIt
-aPO
-aLY
-aRV
-aSX
-aTX
-aUM
-aMZ
-aWH
-aIt
-aDH
-aDH
-bau
-bbg
-bce
-bcL
-bdr
-bdS
-bcg
-bfC
-bgR
-bhT
-biP
-bjS
-bld
-bmv
-bnQ
-bpm
-bqx
-bfw
-bsV
-buk
-buX
-buX
-bxd
-byi
-bzp
-bAl
-buk
-bCl
-caz
-bEs
-bFl
-bGb
-bGd
-bHq
-bGH
-bIK
-bJq
-bKa
-bKM
-bGI
-bDl
-bMO
-bMP
-ccp
-bOC
-bPg
-bPy
-bPX
-bQv
-bQx
-bCt
aaa
-aac
aaa
aaa
aaa
-aac
aaa
aaa
aaa
@@ -92289,7 +92470,6 @@ aaa
aaa
aaa
aaa
-aab
aaa
aaa
aaa
@@ -92297,6 +92477,8 @@ aaa
aaa
aaa
aaa
+"}
+(145,1,1) = {"
aaa
aaa
aaa
@@ -92326,8 +92508,6 @@ aaa
aaa
aaa
aaa
-"}
-(146,1,1) = {"
aaa
aaa
aaa
@@ -92368,6 +92548,17 @@ aaa
aaa
aaa
aaa
+aad
+agT
+bUy
+aht
+ajD
+ajD
+agT
+agT
+agT
+agU
+agT
aaa
aaa
aaa
@@ -92384,10 +92575,85 @@ aaa
aaa
aaa
aaa
+aDq
+aEd
+aEW
+avZ
+aGS
+aGS
+aJr
+aKs
+aLr
+aGS
+aGS
+aOh
+aKu
+aQn
+aRo
+aSn
+aTc
+aLt
+aUX
+aGS
+aCg
+aCg
+aYK
+aZw
+bau
+bbb
+bbH
+bci
+baw
+bdS
+bfh
+bgj
+bhf
+bii
+bjt
+bkL
+bmg
+bnC
+boN
+bdM
+brl
+bsA
+btn
+btn
+bvt
+bwy
+bxF
+byB
+bsA
+bAB
+bYP
+bCI
+bDB
+bEr
+bEt
+bFG
+bEX
+bHa
+bHG
+bIq
+bJc
+bEY
+bBB
+bLe
+bLf
+caF
+bMS
+bNw
+bNO
+bOn
+bOL
+bON
+bAJ
aaa
+aac
aaa
aaa
aaa
+aac
aaa
aaa
aaa
@@ -92397,112 +92663,13 @@ aaa
aaa
aaa
aaa
-ait
-ait
-ajy
-ait
-ait
-ajy
-ait
-chk
-ait
-aor
-ait
-ait
-ait
-ait
-aoP
-atd
-atd
-aoP
-awc
-awc
-aoP
-azH
-azH
-aoP
aaa
aaa
aaa
-aER
-aFE
-aGx
-axz
-aIt
-aJw
-aKU
-aLX
-aMY
-aOe
-aOY
-aPP
-aLY
-aRV
-aSX
-aMX
-aUN
-aMa
-aWI
-aXG
-aYw
-aZw
-bau
-bbh
-bcf
-bcM
-bds
-bds
-bds
-bfF
-bgS
-bhU
-biQ
-biQ
-ble
-bmw
-bnR
-bpm
-bZK
-bZQ
-bsW
-buk
-buX
-buX
-bxd
-byi
-bzp
-bAl
-buk
-bCm
-bDl
-bGI
-bFj
-bFY
-bGG
-bGI
-bGI
-bIL
-bGI
-cbH
-bKR
-bGI
-bDl
-bLl
-bGI
-bOb
-ccD
-aad
-bEA
-bPY
-bQw
-bQQ
-bCt
aaa
-aac
aaa
aaa
aaa
-aac
aaa
aaa
aaa
@@ -92530,6 +92697,7 @@ aaa
aaa
aaa
aaa
+aab
aaa
aaa
aaa
@@ -92566,6 +92734,8 @@ aaa
aaa
aaa
aaa
+"}
+(146,1,1) = {"
aaa
aaa
aaa
@@ -92583,8 +92753,6 @@ aaa
aaa
aaa
aaa
-"}
-(147,1,1) = {"
aaa
aaa
aaa
@@ -92637,13 +92805,112 @@ aaa
aaa
aaa
aaa
+agT
+agT
+ahY
+agT
+agT
+ahY
+agT
+cfA
+agT
+amR
+agT
+agT
+agT
+agT
+anp
+arD
+arD
+anp
+auC
+auC
+anp
+ayg
+ayg
+anp
aaa
aaa
aaa
+aDq
+aEd
+aEW
+avZ
+aGS
+aHV
+aJs
+aKt
+aLs
+aMx
+aNr
+aOi
+aKu
+aQn
+aRo
+aLr
+aTd
+aKw
+aUY
+aVW
+aWM
+aXM
+aYK
+aZx
+bav
+bbc
+bbI
+bbI
+bbI
+bdV
+bfi
+bgk
+bhg
+bhg
+bju
+bkM
+bmh
+bnC
+bYa
+bYg
+brm
+bsA
+btn
+btn
+bvt
+bwy
+bxF
+byB
+bsA
+bAC
+bBB
+bEY
+bDz
+bEo
+bEW
+bEY
+bEY
+bHb
+bEY
+bZX
+bJh
+bEY
+bBB
+bJB
+bEY
+bMr
+caT
+aad
+bCQ
+bOo
+bOM
+bPg
+bAJ
aaa
+aac
aaa
aaa
aaa
+aac
aaa
aaa
aaa
@@ -92654,112 +92921,10 @@ aaa
aaa
aaa
aaa
-aiu
-aiS
-aiT
-akm
-ale
-alS
-ait
-bWq
-aiU
-aos
-alh
-alh
-aqx
-art
-aoP
-ate
-auj
-aoP
-awd
-axq
-aoP
-azI
-aAV
-aoP
-aCN
-aCN
-aCN
-aCN
-aFE
-aGy
-aHs
-aIt
-aJx
-aKV
-aLY
-aMZ
-aOf
-aOZ
-aPQ
-aQS
-aRX
-aSX
-aIt
-aUO
-aVE
-aWJ
-aIt
-aDH
-aQj
-bau
-bbi
-bYK
-bcN
-bdt
-bZa
-bZa
-bfC
-bgT
-bhV
-bgP
-bgP
-bgP
-bmx
-bnS
-bpm
-bqy
-bfw
-bsX
-buk
-buX
-bwc
-bxd
-byi
-bzp
-bAl
-buk
-bCn
-bDl
-bGI
-bFj
-bFY
-cbj
-bHr
-bGd
-bIM
-bGd
-bKb
-bKS
-bGI
-bLm
-bEs
-cce
-bNZ
-bOC
-bPg
-bPz
-bPZ
-bQx
-bQx
-bCt
aaa
-aac
aaa
aaa
aaa
-aac
aaa
aaa
aaa
@@ -92826,6 +92991,8 @@ aaa
aaa
aaa
aaa
+"}
+(147,1,1) = {"
aaa
aaa
aaa
@@ -92840,8 +93007,6 @@ aaa
aaa
aaa
aaa
-"}
-(148,1,1) = {"
aaa
aaa
aaa
@@ -92897,10 +93062,114 @@ aaa
aaa
aaa
aaa
+agU
+ahs
+aht
+aiM
+ajE
+aks
+agT
+bUG
+ahu
+amS
+ajH
+ajH
+aoX
+apT
+anp
+arE
+asJ
+anp
+auD
+avQ
+anp
+ayh
+azu
+anp
+aBm
+aBm
+aBm
+aBm
+aEd
+aEX
+aFR
+aGS
+aHW
+aJt
+aKu
+aLt
+aMy
+aNs
+aOj
+aPl
+aQp
+aRo
+aGS
+aTe
+aTU
+aUZ
+aGS
+aCg
+aOC
+aYK
+aZy
+bXa
+bbd
+bbJ
+bXq
+bXq
+bdS
+bfj
+bgl
+bff
+bff
+bff
+bkN
+bmi
+bnC
+boO
+bdM
+brn
+bsA
+btn
+bus
+bvt
+bwy
+bxF
+byB
+bsA
+bAD
+bBB
+bEY
+bDz
+bEo
+bZz
+bFH
+bEt
+bHc
+bEt
+bIr
+bJi
+bEY
+bJC
+bCI
+cau
+bMp
+bMS
+bNw
+bNP
+bOp
+bON
+bON
+bAJ
aaa
+aac
aaa
aaa
aaa
+aac
+aaa
+aaa
aaa
aaa
aaa
@@ -92911,112 +93180,6 @@ aaa
aaa
aaa
aaa
-bWd
-aiT
-ajz
-akn
-alf
-alT
-amx
-chl
-ait
-akt
-aoP
-aoP
-aqy
-aru
-aoP
-atf
-auk
-aoP
-awe
-axr
-aoP
-azJ
-aAW
-aoP
-aCO
-aDt
-aEk
-aES
-aFF
-aGz
-aHt
-aIt
-aJy
-aKW
-aLY
-aNa
-aOg
-aIt
-aPR
-aQT
-aRY
-aSY
-aIt
-aUP
-aVF
-aWK
-aIt
-aIt
-aQj
-bau
-bbj
-bch
-bcO
-bdu
-bdT
-bdT
-bfC
-bgU
-bhW
-biR
-bjT
-blf
-bmy
-bnT
-bpm
-bZK
-bfw
-bsY
-buk
-buY
-bwc
-bxd
-byi
-bzp
-bAm
-buk
-bCo
-bDm
-bEv
-bFo
-bFY
-bGe
-bGI
-bIf
-bIf
-bIf
-bKc
-bKT
-bGI
-bDl
-bGI
-bGI
-bOd
-ccE
-aad
-bCt
-bCt
-bCt
-bCt
-bCt
-aad
-aac
-aad
-aad
-aad
-aac
aaa
aaa
aaa
@@ -93085,6 +93248,44 @@ aaa
aaa
aaa
aaa
+"}
+(148,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -93097,8 +93298,6 @@ aaa
aaa
aaa
aaa
-"}
-(149,1,1) = {"
aaa
aaa
aaa
@@ -93120,6 +93319,112 @@ aaa
aaa
aaa
aaa
+bUt
+aht
+ahZ
+aiN
+ajF
+akt
+akX
+cfB
+agT
+aiT
+anp
+anp
+aoY
+apU
+anp
+arF
+asK
+anp
+auE
+avR
+anp
+ayi
+azv
+anp
+aBn
+aBS
+aCJ
+aDr
+aEe
+aEY
+aFS
+aGS
+aHX
+aJu
+aKu
+aLu
+aMz
+aGS
+aOk
+aPm
+aQq
+aRp
+aGS
+aTf
+aTV
+aVa
+aGS
+aGS
+aOC
+aYK
+aZz
+bax
+bbe
+bbK
+bcj
+bcj
+bdS
+bfk
+bgm
+bhh
+bij
+bjv
+bkO
+bmj
+bnC
+bYa
+bdM
+bro
+bsA
+bto
+bus
+bvt
+bwy
+bxF
+byC
+bsA
+bAE
+bBC
+bCL
+bDE
+bEo
+bEu
+bEY
+bGv
+bGv
+bGv
+bIs
+bJj
+bEY
+bBB
+bEY
+bEY
+bMt
+caU
+aad
+bAJ
+bAJ
+bAJ
+bAJ
+bAJ
+aad
+aac
+aad
+aad
+aad
+aac
aaa
aaa
aaa
@@ -93168,100 +93473,203 @@ aaa
aaa
aaa
aaa
-aiu
-aiU
-ajA
-ako
-alg
-alU
-ait
-ait
-ait
-akt
-aoP
-apB
-aqz
-arv
-asp
-atg
-aul
-aoP
-awf
-axs
-aoP
-azK
-aAX
-aoP
-aCP
-aDu
-aEl
-aCN
-aFE
-aGx
-axz
-aIt
-aJz
-aKX
-aLY
-aMZ
-aMZ
-aMX
-aPS
-aQU
-aRZ
-aRZ
-aRZ
-aRZ
-aVG
-aMZ
-aXH
-aIt
-bYm
-bau
-bbk
-bci
-bcP
-bbk
-bau
-beI
-bfC
-bfC
-bfC
-beJ
-bjU
-bjU
-bjU
-bjU
-bjU
-bgL
-bfw
-bZT
-buk
-buZ
-bwd
-buZ
-buZ
-buZ
-bAn
-buk
-bCp
-bDl
-bGI
-bEw
-caY
-cbk
-bHs
-bHs
-bHs
-bGJ
-bHs
-bHs
-bHs
-bMi
-bGI
-bGI
-bOe
-ccE
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(149,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+agU
+ahu
+aia
+aiO
+ajG
+aku
+agT
+agT
+agT
+aiT
+anp
+aob
+aoZ
+apV
+aqP
+arG
+asL
+anp
+auF
+avS
+anp
+ayj
+azw
+anp
+aBo
+aBT
+aCK
+aBm
+aEd
+aEW
+avZ
+aGS
+aHY
+aJv
+aKu
+aLt
+aLt
+aLr
+aOl
+aPn
+aQr
+aQr
+aQr
+aQr
+aTW
+aLt
+aVX
+aGS
+bWC
+aYK
+aZA
+bay
+bbf
+aZA
+aYK
+bcY
+bdS
+bdS
+bdS
+bcZ
+bik
+bik
+bik
+bik
+bik
+bfb
+bdM
+bYj
+bsA
+btp
+but
+btp
+btp
+btp
+byD
+bsA
+bAF
+bBB
+bEY
+bCM
+bZo
+bZA
+bFI
+bFI
+bFI
+bEZ
+bFI
+bFI
+bFI
+bKy
+bEY
+bEY
+bMu
+caU
aad
aaa
aaa
@@ -93425,102 +93833,102 @@ aaa
aaa
aaa
aaa
-ait
-aiV
-ait
-ait
-ait
-ait
-ait
-anj
-anJ
-bWs
-aoP
-apC
-aqA
-arw
-aoP
-aru
-aum
-aoP
-aru
-axt
-aoP
-aru
-aAY
-aoP
-aCN
-aCN
-aCN
-aCN
-aFE
-aGx
-axz
-aIt
-aJA
-aKY
-aLZ
-aNb
-aOh
-aPa
-aPT
-aQV
-aSa
-aMZ
-aMZ
-aMZ
-aVH
-aMZ
-aXI
-aIt
-aQj
-bau
-bbl
-bcj
-bcO
-bdv
-bau
-beJ
-bfG
-bgV
-bhX
-biS
-bjV
-blg
-bmz
-bnU
-bpn
-bqz
-bfx
-bsZ
-bul
-bva
-bwe
-bxe
-byj
-byj
-bAo
-bBo
-bCq
-bDl
-bGI
-bFq
-bGf
-bGK
-bHt
-bIg
-bHt
-bGK
-bHt
-bKU
-bHt
-bGK
-bHt
-bNA
-cco
-ccF
-bCk
-bCk
+agT
+ahv
+agT
+agT
+agT
+agT
+agT
+alJ
+amj
+bUI
+anp
+aoc
+apa
+apW
+anp
+apU
+asM
+anp
+apU
+avT
+anp
+apU
+azx
+anp
+aBm
+aBm
+aBm
+aBm
+aEd
+aEW
+avZ
+aGS
+aHZ
+aJw
+aKv
+aLv
+aMA
+aNt
+aOm
+aPo
+aQs
+aLt
+aLt
+aLt
+aTX
+aLt
+aVY
+aGS
+aOC
+aYK
+aZB
+baz
+bbe
+bbL
+aYK
+bcZ
+bdW
+bfl
+bgn
+bhi
+bil
+bjw
+bkP
+bmk
+bnD
+boP
+bdN
+brp
+bsB
+btq
+buu
+bvu
+bwz
+bwz
+byE
+bzE
+bAG
+bBB
+bEY
+bDG
+bEv
+bFa
+bFJ
+bGw
+bFJ
+bFa
+bFJ
+bJk
+bFJ
+bFa
+bFJ
+bLQ
+caE
+caV
+bAA
+bAA
aaa
aaa
aaa
@@ -93682,102 +94090,102 @@ aaa
aaa
aaa
aaa
-ait
-ait
-akp
-alh
-alh
-alh
-alh
-alh
-alh
-aot
-aoP
-apD
-aqB
-arx
-asq
-ath
-aun
-avf
-bWA
-aun
-ayO
-awg
-aun
-ayO
-aCQ
-ayO
-aEm
-ayO
-aun
-aGA
-axz
-aIt
-aJB
-aKZ
-aMa
-aNc
-aOi
-aPb
-aPU
-aQW
-aSb
-aSZ
-aTY
-aUQ
-aLY
-aMZ
-aXJ
-aIt
-bYm
-bau
-bau
-bau
-bcQ
-bau
-bau
-beJ
-bfG
-bgW
-bhY
-biT
-bjW
-blh
-bmA
-bmA
-bpo
-bqA
-bfw
-bZU
-buk
-bvb
-bwf
-bxf
-byk
-bzq
-bAp
-buk
-bCr
-bDo
-bEy
-bFr
-bLr
-bGL
-bHu
-bFr
-bIN
-bJr
-bKd
-bFr
-bGg
-bMj
-bMQ
-bFr
-bOg
-bOD
-bPh
-bPA
+agT
+agT
+aiP
+ajH
+ajH
+ajH
+ajH
+ajH
+ajH
+amT
+anp
+aod
+apb
+apX
+aqQ
+arH
+asN
+atF
+bUQ
+asN
+axn
+auG
+asN
+axn
+aBp
+axn
+aCL
+axn
+asN
+aEZ
+avZ
+aGS
+aIa
+aJx
+aKw
+aLw
+aMB
+aNu
+aOn
+aPp
+aQt
+aRq
+aSo
+aTg
+aKu
+aLt
+aVZ
+aGS
+bWC
+aYK
+aYK
+aYK
+bbg
+aYK
+aYK
+bcZ
+bdW
+bfm
+bgo
+bhj
+bim
+bjx
+bkQ
+bkQ
+bnE
+boQ
+bdM
+bYk
+bsA
+btr
+buv
+bvv
+bwA
+bxG
+byF
+bsA
+bAH
+bBE
+bCO
+bDH
+bJH
+bFb
+bFK
+bDH
+bHd
+bHH
+bIt
+bDH
+bEw
+bKz
+bLg
+bDH
+bMw
+bMT
+bNx
+bNQ
aaa
aaa
aaa
@@ -93940,101 +94348,101 @@ aaa
aaa
aaa
aaa
-aiu
-akq
-ait
-ait
-ait
-aiu
-aiu
-aiu
-ait
-aoP
-apE
-aqC
-ary
-aoP
-ati
-auo
-avg
-awh
-axu
-axu
-azL
-aAZ
-aAZ
-aCR
-aAZ
-aEn
-aAZ
-aAZ
-aGB
-aHr
-aIt
-aJC
-aIt
-aMb
-aIt
-aIt
-aIt
-aPL
-aQX
-aIt
-aIt
-aIt
-aIt
-aQQ
-aWL
-aIt
-aIt
-aZx
-aYw
-aYw
-aYw
-bcR
-aLd
-bdU
-beJ
-bfG
-bgX
-bfG
-biU
-bjX
-bli
-bmB
-bnV
-bpp
-bqB
-bfv
-bta
-buk
-buk
-bwg
-bxg
-buk
-buk
-buk
-buk
-bCk
-caA
-bHm
-bNB
-caZ
-bDp
-bEz
-bFs
-bEz
-bJs
-bEz
-bKV
-bLs
-bMk
-bLs
-ccf
-ccq
-bCk
-bCk
-bCk
+agU
+aiQ
+agT
+agT
+agT
+agU
+agU
+agU
+agT
+anp
+aoe
+apc
+apY
+anp
+arI
+asO
+atG
+auH
+avU
+avU
+ayk
+azy
+azy
+aBq
+azy
+aCM
+azy
+azy
+aFa
+aFQ
+aGS
+aIb
+aGS
+aKx
+aGS
+aGS
+aGS
+aOe
+aPq
+aGS
+aGS
+aGS
+aGS
+aPj
+aVb
+aGS
+aGS
+aXN
+aWM
+aWM
+aWM
+bbh
+aJB
+bck
+bcZ
+bdW
+bfn
+bdW
+bhk
+bin
+bjy
+bkR
+bml
+bnF
+boR
+bdL
+brq
+bsA
+bsA
+buw
+bvw
+bsA
+bsA
+bsA
+bsA
+bAA
+bYQ
+bFC
+bLR
+bZp
+bBF
+bCP
+bDI
+bCP
+bHI
+bCP
+bJl
+bJI
+bKA
+bJI
+cav
+caG
+bAA
+bAA
+bAA
aaa
aaa
aaa
@@ -94197,97 +94605,97 @@ aaa
aaa
aaa
aaa
-ait
-akr
-ait
+agT
+aiR
+agT
aaa
aaa
aaa
aaa
aaa
aaa
-aoP
-aoP
-aoP
-aoP
-aoP
-atj
-aup
-avh
-awi
-axv
-ayP
-azM
-aBa
-aBW
-aCS
-aBW
-aBW
-aBW
-aBW
-aGC
-aHu
-aIt
-aJD
-aIt
-aMc
-aIt
-aOj
-aIu
-aPV
-aQY
-aSc
-aTa
-aTZ
-aUR
-aVI
-aPZ
-aXK
-aXK
-aXK
-aXK
-aXK
-aXK
-aCd
-bdw
-bdV
-beJ
-bfH
-bgY
-bfG
-biU
-bjY
-blj
-blm
-bnW
-bjU
-bgL
-bfw
-biJ
-bum
-bvc
-bwh
-bxh
-byl
-bzr
-bAq
+anp
+anp
+anp
+anp
+anp
+arJ
+asP
+atH
+auI
+avV
+axo
+ayl
+azz
+aAv
+aBr
+aAv
+aAv
+aAv
+aAv
+aFb
+aFT
+aGS
+aIc
+aGS
+aKy
+aGS
+aMC
+aGT
+aOo
+aPr
+aQu
+aRr
+aSp
+aTh
+aTY
+aOs
+aWa
+aWa
+aWa
+aWa
+aWa
+aWa
+aAC
+bbM
+bcl
+bcZ
+bdX
+bfo
+bdW
+bhk
+bio
+bjz
+bjC
+bmm
+bik
+bfb
+bdM
+bgZ
+bsC
+bts
+bux
+bvx
+bwB
+bxH
+byG
aad
aad
-bDq
+bBG
aad
-bFt
+bDJ
aad
-bDq
+bBG
aad
-bFt
+bDJ
aad
-bDq
+bBG
aad
-bFt
+bDJ
aad
-bDq
+bBG
aad
-bFt
+bDJ
aad
aaa
aaa
@@ -94454,98 +94862,98 @@ aaa
aaa
aaa
aaa
-ajB
-bWj
-ali
+aib
+bUz
+ajI
aaa
aaa
aaa
-amy
-amy
-amz
-amy
-apF
-aoP
-aoP
-bWv
-atm
-bWx
-avi
-awj
-axw
-ayQ
-atm
-aBb
-aBX
-aBX
-aBX
-aBX
-aBX
-aFG
-aGD
-aHv
-aIu
-aJE
-aIu
-aIu
-aIu
-aIu
-aIu
-aPW
-aQZ
-aSd
-aSd
-aSd
-aUS
-aVJ
-aVN
-aXL
-aYx
-aZy
-bav
-bbm
-aXK
-aVO
-aRi
-bdW
-beJ
-bfI
+akY
+akY
+akZ
+akY
+aof
+anp
+anp
+bUL
+arM
+bUN
+atI
+auJ
+avW
+axp
+arM
+azA
+aAw
+aAw
+aAw
+aAw
+aAw
+aEf
+aFc
+aFU
+aGT
+aId
+aGT
+aGT
+aGT
+aGT
+aGT
+aOp
+aPs
+aQv
+aQv
+aQv
+aTi
+aTZ
+aUd
+aWb
+aWN
+aXO
+aYL
+aZC
+aWa
+aUe
+aPB
+bcm
+bcZ
+bdY
+bfp
+bdY
+bhk
+bip
+bjA
+bjC
+bmn
+bik
+bfc
+bYh
bgZ
-bfI
-biU
-bjZ
-blk
-blm
-bnX
-bjU
-bgM
-bZR
-biJ
-bfw
-bvc
-bZX
-bxi
-cah
-bzs
-bAq
+bdM
+bts
+bYn
+bvy
+bYx
+bxI
+byG
aad
-bCt
-bDr
-bEA
-bDr
-bCt
-bDr
-bEA
-bDr
-bCt
-bDr
-bEA
-bDr
-bCt
-bDr
-bEA
-bDr
-bCt
+bAJ
+bBH
+bCQ
+bBH
+bAJ
+bBH
+bCQ
+bBH
+bAJ
+bBH
+bCQ
+bBH
+bAJ
+bBH
+bCQ
+bBH
+bAJ
aad
aac
aaa
@@ -94711,98 +95119,98 @@ aaa
aaa
aaa
aaa
-bWf
-akt
-alj
+bUv
+aiT
+ajJ
aaa
aaa
-amy
-amy
-anK
-aou
-aoQ
-apF
-aER
-aER
-aER
-atm
-auq
-avj
-awk
-axx
-ayR
-atm
-aBc
-aBX
-aCT
-aCT
-bWS
-aBX
-aBX
-aGE
-aBX
-aBX
-aJF
-aLa
-aMd
-aNd
-aOk
-aPc
-aPX
-aRa
-aSe
-aTb
+akY
+akY
+amk
+amU
+anq
+aof
+aDq
+aDq
+aDq
+arM
+asQ
+atJ
+auK
+avX
+axq
+arM
+azB
+aAw
+aBs
+aBs
+bVi
+aAw
+aAw
+aFd
+aAw
+aAw
+aIe
+aJy
+aKz
+aLx
+aMD
+aNv
+aOq
+aPt
+aQw
+aRs
+aSq
+aTj
aUa
-aUT
-aVK
-aWM
-aXM
-aYy
-aZz
-baw
-bbn
-aXK
-aVP
-aCd
-aVP
-beJ
-bfJ
-bha
-bhZ
-biV
-bka
-bll
-bmC
-bnY
-bjU
-bfw
-brN
-bhO
-bfv
-bvd
-bwi
-bxj
-bZV
-bzt
-bAq
+aVc
+aWc
+aWO
+aXP
+aYM
+aZD
+aWa
+aUf
+aAC
+aUf
+bcZ
+bdZ
+bfq
+bgp
+bhl
+biq
+bjB
+bkS
+bmo
+bik
+bdM
+bqd
+bge
+bdL
+btt
+buy
+bvz
+bYl
+bxJ
+byG
aad
-bCt
-bDs
-bEB
-bFu
-bCt
-bGM
-bHv
-bIh
-bCt
-bJt
-bKe
-bKW
-bCt
-bMl
-bMR
-bNC
-bCt
+bAJ
+bBI
+bCR
+bDK
+bAJ
+bFc
+bFL
+bGx
+bAJ
+bHJ
+bIu
+bJm
+bAJ
+bKB
+bLh
+bLS
+bAJ
aaa
aac
aaa
@@ -94824,23 +95232,23 @@ aaa
aaa
aaa
aaa
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
aaa
aaa
aaa
aaa
aaa
-bTk
-bTk
-bTk
-bTk
-bTk
+bRA
+bRA
+bRA
+bRA
+bRA
aaa
aaa
aaa
@@ -94968,98 +95376,98 @@ aaa
aaa
aaa
aaa
-bWf
-aku
-alj
+bUv
+aiU
+ajJ
aaa
aaa
-amz
-ank
-anL
-anL
-anL
-apG
-aqD
-arA
-aqD
-atm
-auq
-avk
-awl
-axy
-awl
-azN
-aBd
-aBY
-aCU
-aDv
-aCW
-aCW
-aCW
-aGF
-aHw
-aBX
-aJG
-aLb
-aMe
-aNe
-aOl
-aPd
-aPY
-aRb
-aPZ
-aPZ
-aPZ
-aUU
-aVI
-aWN
-aXN
-aYz
-aZA
-bax
-bbo
-aXK
-aVP
-aCd
-bdX
-beJ
-beJ
-beJ
-beJ
-beJ
-bkb
-blm
-bmD
-bnZ
-bjU
-bqC
-brO
-bZV
-bun
-bun
-bwj
-bxk
-bym
-bun
-bAr
+akZ
+alK
+aml
+aml
+aml
+aog
+apd
+aqa
+apd
+arM
+asQ
+atK
+auL
+avY
+auL
+aym
+azC
+aAx
+aBt
+aBU
+aBv
+aBv
+aBv
+aFe
+aFV
+aAw
+aIf
+aJz
+aKA
+aLy
+aME
+aNw
+aOr
+aPu
+aOs
+aOs
+aOs
+aTk
+aTY
+aVd
+aWd
+aWP
+aXQ
+aYN
+aZE
+aWa
+aUf
+aAC
+bcn
+bcZ
+bcZ
+bcZ
+bcZ
+bcZ
+bir
+bjC
+bkT
+bmp
+bik
+boS
+bqe
+bYl
+bsD
+bsD
+buz
+bvA
+bwC
+bsD
+byH
aad
-bCt
-bDt
-bDu
-bDu
-bCt
-bGN
-bHw
-bGN
-bCt
-bJu
-bKf
-bJu
-bCt
-bMm
-bMS
-bMm
-bCt
+bAJ
+bBJ
+bBK
+bBK
+bAJ
+bFd
+bFM
+bFd
+bAJ
+bHK
+bIv
+bHK
+bAJ
+bKC
+bLi
+bKC
+bAJ
aaa
aac
aaa
@@ -95081,24 +95489,24 @@ aaa
aaa
aaa
aaa
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
aaa
aaa
aaa
@@ -95225,98 +95633,98 @@ aaa
aaa
aaa
aaa
-bWf
-akt
-alj
+bUv
+aiT
+ajJ
aaa
aaa
-amy
-amy
-anM
-aov
-aoR
-apF
-bWu
-arB
-bWw
-atn
-auq
-avl
-awm
-axz
-atm
-atm
-aBe
-aBX
-aCV
-aDw
-aEo
-aET
-aFH
-aGG
-aCW
-aBX
-aJH
-aLb
-aMf
-aLb
-aOm
-aPe
-aPZ
-aQY
-aSf
-aTc
-aSf
-aUV
-aVI
-aWO
-aXO
-aXO
-aZB
-aZB
-aZB
-aXO
-bcS
-aXO
-aVP
-beK
-beJ
-bhb
-bia
-biW
-bkc
-blm
-bmE
-boa
-bpq
-bmM
-brP
-bij
-bun
-bve
-bwk
-bxl
-byn
-bzu
-bAr
+akY
+akY
+amm
+amV
+anr
+aof
+bUK
+aqb
+bUM
+arN
+asQ
+atL
+auM
+avZ
+arM
+arM
+azD
+aAw
+aBu
+aBV
+aCN
+aDs
+aEg
+aFf
+aBv
+aAw
+aIg
+aJz
+aKB
+aJz
+aMF
+aNx
+aOs
+aPr
+aQx
+aRt
+aQx
+aTl
+aTY
+aVe
+aWe
+aWe
+aXR
+aXR
+aXR
+aWe
+bbi
+aWe
+aUf
+bda
+bcZ
+bfr
+bgq
+bhm
+bis
+bjC
+bkU
+bmq
+bnG
+blc
+bqf
+bgz
+bsD
+btu
+buA
+bvB
+bwD
+bxK
+byH
aad
-bCt
-bDu
-bEC
-bDu
-bCt
-bGN
-bHx
-bGN
-bCt
-bJv
-bKg
-bJu
-bCt
-bMm
-bMT
-bMm
-bCt
+bAJ
+bBK
+bCS
+bBK
+bAJ
+bFd
+bFN
+bFd
+bAJ
+bHL
+bIw
+bHK
+bAJ
+bKC
+bLj
+bKC
+bAJ
aaa
aac
aaa
@@ -95336,26 +95744,26 @@ aaa
aaa
aaa
aaa
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTD
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTD
-bTk
-bTk
-bTk
-bTk
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRT
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRT
+bRA
+bRA
+bRA
+bRA
aaa
aaa
aaa
@@ -95482,98 +95890,98 @@ aaa
aaa
aaa
aaa
-ajD
-akq
-alk
+aid
+aiQ
+ajK
aaa
aaa
aaa
-amy
-amy
-amz
-amy
-apF
-aoP
-aoP
-aoP
-arD
-aur
-avm
-awn
-axA
-avm
-avm
-arD
-aBX
-aBX
-aDy
-bWT
-aBX
-aBX
-aBX
-aHx
+akY
+akY
+akZ
+akY
+aof
+anp
+anp
+anp
+aqd
+asR
+atM
+auN
+awa
+atM
+atM
+aqd
+aAw
+aAw
aBX
-aJI
-aLb
-aMg
-aNf
-aIu
-aIu
-aQa
-aRc
-aSg
-aPZ
-aPZ
-aPW
-aVL
-aWP
-aXO
-aYA
-aZC
-bay
-bbp
-bck
-bcT
-aXO
-bdY
-aYw
-bfK
-bhc
-bib
-biX
-bkd
-blm
-bmF
-bob
-bjU
-bqD
-brQ
-btb
-bun
-bvf
-bwl
-bxm
-byo
-bzv
-bAr
+bVj
+aAw
+aAw
+aAw
+aFW
+aAw
+aIh
+aJz
+aKC
+aLz
+aGT
+aGT
+aOt
+aPv
+aQy
+aOs
+aOs
+aOp
+aUb
+aVf
+aWe
+aWQ
+aXS
+aYO
+aZF
+baA
+bbj
+aWe
+bco
+aWM
+bea
+bfs
+bgr
+bhn
+bit
+bjC
+bkV
+bmr
+bik
+boT
+bqg
+brr
+bsD
+btv
+buB
+bvC
+bwE
+bxL
+byH
aad
-bCt
-bCt
-bCt
-bCt
-bCt
-bCt
-bCt
-bCt
-bCt
-bCt
-bCt
-bCt
-bCt
-bCt
-bCt
-bCt
-bCt
+bAJ
+bAJ
+bAJ
+bAJ
+bAJ
+bAJ
+bAJ
+bAJ
+bAJ
+bAJ
+bAJ
+bAJ
+bAJ
+bAJ
+bAJ
+bAJ
+bAJ
aad
aac
aaa
@@ -95593,27 +96001,27 @@ aaa
aaa
aaa
aaa
-bTk
-bTk
-bTk
-bTD
-bTk
-bTD
-bTD
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTD
-bTD
-bTD
-bTk
-bTD
-bTk
-bTk
+bRA
+bRA
+bRA
+bRT
+bRA
+bRT
+bRT
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRT
+bRT
+bRT
+bRA
+bRT
+bRA
+bRA
aaa
aaa
aaa
@@ -95739,80 +96147,80 @@ aaa
aaa
aaa
aaa
-ait
-bWk
-ait
+agT
+bUA
+agT
aaa
aaa
aaa
aaa
aaa
aaa
-ait
-ait
-ait
-arC
-asr
-arD
-aus
-avn
-awo
-axB
-avn
-azO
-arD
-aBZ
-bWL
-aDy
-aCW
-aEU
-aFI
-aBX
-aHy
+agT
+agT
+agT
+aqc
+aqR
+aqd
+asS
+atN
+auO
+awb
+atN
+ayn
+aqd
+aAy
+bVb
aBX
-aJJ
-aLc
-aMg
-aLb
-aLc
-aIu
-aQb
-aPe
-aPZ
-aPZ
-aPZ
-aUU
-aVM
-aWQ
-aXP
-aYB
-aZD
-baz
-bbq
-bcl
-bcU
-aXO
-aVP
-beJ
-beJ
-bhd
-bic
-biY
-bke
-bln
-bmG
-boc
-bjU
-bqE
-brR
-btc
-bun
-bvg
-bwm
-bxl
-byp
-bzw
-bAr
+aBv
+aDt
+aEh
+aAw
+aFX
+aAw
+aIi
+aJA
+aKC
+aJz
+aJA
+aGT
+aOu
+aNx
+aOs
+aOs
+aOs
+aTk
+aUc
+aVg
+aWf
+aWR
+aXT
+aYP
+aZG
+baB
+bbk
+aWe
+aUf
+bcZ
+bcZ
+bft
+bgs
+bho
+biu
+bjD
+bkW
+bms
+bik
+boU
+bqh
+brs
+bsD
+btw
+buC
+bvB
+bwF
+bxM
+byH
aad
aaa
aaa
@@ -95850,27 +96258,27 @@ aaa
aaa
aaa
aaa
-bTk
-bTk
-bTD
-bTk
-bTD
-bTk
-bTD
-bTD
-bTk
-bTk
-bTk
-bTD
-bTk
-bTD
-bTk
-bTk
-bTk
-bTD
-bTk
-bTk
-bTk
+bRA
+bRA
+bRT
+bRA
+bRT
+bRA
+bRT
+bRT
+bRA
+bRA
+bRA
+bRT
+bRA
+bRT
+bRA
+bRA
+bRA
+bRT
+bRA
+bRA
+bRA
aaa
aaa
aaa
@@ -95996,80 +96404,80 @@ aaa
aaa
aaa
aaa
-aiu
-bWj
-ait
-ait
-ait
-aiu
-aiu
-aiu
-ait
-ait
-apH
-aqE
-aiU
-aiU
-arD
-aut
-avn
-awo
-axB
-avn
-azP
-arD
-aCa
-aCX
-aDz
-aCW
-aBX
-aBX
-aBX
-aBX
-aBX
-aJK
-aLb
-aMh
-aNg
-aOn
-aIu
-aQc
-aPe
-aPZ
-aPZ
-aPZ
-aUW
-aVN
-aVJ
-aXQ
-aYC
-aZE
-chp
-bbr
-baA
-bcV
-aXO
-aVP
-beL
-bfL
-bfG
-bid
-biZ
-bkf
-blo
-bmH
-bod
-bjU
-bqF
-brS
-btd
-buo
-bvh
-bwn
-bxn
-byq
-bzx
-bAr
+agU
+bUz
+agT
+agT
+agT
+agU
+agU
+agU
+agT
+agT
+aoh
+ape
+ahu
+ahu
+aqd
+asT
+atN
+auO
+awb
+atN
+ayo
+aqd
+aAz
+aBw
+aBY
+aBv
+aAw
+aAw
+aAw
+aAw
+aAw
+aIj
+aJz
+aKD
+aLA
+aMG
+aGT
+aOv
+aNx
+aOs
+aOs
+aOs
+aTm
+aUd
+aTZ
+aWg
+aWS
+aXU
+cfF
+aZH
+aYQ
+bbl
+aWe
+aUf
+bdb
+beb
+bdW
+bgt
+bhp
+biv
+bjE
+bkX
+bmt
+bik
+boV
+bqi
+brt
+bsE
+btx
+buD
+bvD
+bwG
+bxN
+byH
aad
aaa
aaa
@@ -96078,7 +96486,7 @@ aaa
aaa
aaa
aaa
-agv
+aeV
aac
aac
aac
@@ -96105,32 +96513,32 @@ aaa
aaa
aaa
aaa
-bTk
-bTk
-bTk
-bTD
-bTD
-bTD
-bTk
-bTD
-bTD
-bTk
-bTk
-bTk
-bTD
-bTD
-bTD
-bTD
-bTk
-bTk
-bTk
-bTD
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
+bRA
+bRA
+bRA
+bRT
+bRT
+bRT
+bRA
+bRT
+bRT
+bRA
+bRA
+bRA
+bRT
+bRT
+bRT
+bRT
+bRA
+bRA
+bRA
+bRT
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
aaa
aaa
aaa
@@ -96253,81 +96661,81 @@ aaa
aaa
aaa
aaa
-aiu
-akw
-alh
-alh
-alh
-amA
-alh
-alh
-alh
-alh
-alh
-alh
-alh
-ass
-arD
-auu
-avo
-awp
-axC
-ayS
-azQ
-arD
-aCb
-aCY
-aDy
-aCW
-aEV
-bXe
+agU
+aiW
+ajH
+ajH
+ajH
+ala
+ajH
+ajH
+ajH
+ajH
+ajH
+ajH
+ajH
+aqS
+aqd
+asU
+atO
+auP
+awc
+axr
+ayp
+aqd
+aAA
+aBx
aBX
-aHz
-aIv
-aJL
-bXo
-aLb
-aNh
-aLc
-aIu
-aQd
-aPe
-aSh
-aTd
-aUb
-aUX
-aPZ
-aWR
-aXO
-aYD
-aZF
-baB
-bbs
-bbs
-bcW
-aXO
-aVP
-beJ
-beJ
-beJ
-bfN
-bij
-bij
-bij
-bij
-bij
-bij
-bqG
-brT
-bij
-bun
-bvi
-bwm
-bxl
-byr
-bzy
-bAr
-can
+aBv
+aDu
+bVu
+aAw
+aFY
+aGU
+aIk
+bVE
+aJz
+aLB
+aJA
+aGT
+aOw
+aNx
+aQz
+aRu
+aSr
+aTn
+aOs
+aVh
+aWe
+aWT
+aXV
+aYR
+aZI
+aZI
+bbm
+aWe
+aUf
+bcZ
+bcZ
+bcZ
+bed
+bgz
+bgz
+bgz
+bgz
+bgz
+bgz
+boW
+bqj
+bgz
+bsD
+bty
+buC
+bvB
+bwH
+bxO
+byH
+bYD
aaa
aaa
aaa
@@ -96362,35 +96770,35 @@ aaa
aaa
aaa
aaa
-bTk
-bTk
-bTk
-bTD
-bTD
-bTD
-bTD
-bTD
-bTk
-bTD
-bTk
-bTD
-bTD
-bTk
-bTD
-bTD
-bTk
-bTD
-bTD
-bTD
-bTD
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
+bRA
+bRA
+bRA
+bRT
+bRT
+bRT
+bRT
+bRT
+bRA
+bRT
+bRA
+bRT
+bRT
+bRA
+bRT
+bRT
+bRA
+bRT
+bRT
+bRT
+bRT
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
aaa
aaa
aaa
@@ -96510,97 +96918,97 @@ aaa
aaa
aaa
aaa
-ait
-ait
-ait
-ait
-ait
-aiu
-aiu
-aiu
-ait
-ait
-ait
-ani
-ait
-ast
-arD
-auv
-avn
-avn
-avn
-avn
-azR
-arD
-aBX
-aBX
-aDA
-aBX
-aBX
-aBX
-aBX
-aHA
-aIu
-aIu
-aIu
-aMi
-aMi
-aMi
-aIu
-aQe
-aRd
-aMi
-aRd
-aUc
-aIu
-aIu
-aIu
-aXO
-aXO
-aXO
-aZB
-bbt
-aZB
-aXO
-aXO
-bdZ
-aRi
-aRi
-bhe
-bfN
-bja
-bkg
-blp
-bmI
-boe
-bpr
-bqH
-brU
-bte
-bun
-bvj
-bwo
-bxo
-bys
-cai
-bzz
-bAr
-bAr
-bAr
-bED
-bAr
+agT
+agT
+agT
+agT
+agT
+agU
+agU
+agU
+agT
+agT
+agT
+alI
+agT
+aqT
+aqd
+asV
+atN
+atN
+atN
+atN
+ayq
+aqd
+aAw
+aAw
+aBZ
+aAw
+aAw
+aAw
+aAw
+aFZ
+aGT
+aGT
+aGT
+aKE
+aKE
+aKE
+aGT
+aOx
+aPw
+aKE
+aPw
+aSs
+aGT
+aGT
+aGT
+aWe
+aWe
+aWe
+aXR
+aZJ
+aXR
+aWe
+aWe
+bcp
+aPB
+aPB
+bfu
+bed
+bhq
+biw
+bjF
+bkY
+bmu
+bnH
+boX
+bqk
+bru
+bsD
+btz
+buE
+bvE
+bwI
+bYy
+bxP
+byH
+byH
+byH
+bCT
+byH
aad
aad
aad
aaa
-abu
+aaY
aac
aac
aac
aaa
-abu
+aaY
aac
-agv
+aeV
aaa
aaa
aaa
@@ -96619,38 +97027,38 @@ aaa
aaa
aaa
aaa
-bTk
-bTk
-bTk
-bTD
-bTk
-bTD
-bTD
-bTk
-bTD
-bTk
-bTD
-bTD
-bTk
-bTk
-bTk
-bTD
-bTk
-bTD
-bTD
-bTD
-bTk
-bTk
-bTD
-bTk
-bTD
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
+bRA
+bRA
+bRA
+bRT
+bRA
+bRT
+bRT
+bRA
+bRT
+bRA
+bRT
+bRT
+bRA
+bRA
+bRA
+bRT
+bRA
+bRT
+bRT
+bRT
+bRA
+bRA
+bRT
+bRA
+bRT
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
aaa
aaa
aaa
@@ -96777,77 +97185,77 @@ aaa
aaa
aaa
aaa
-ait
-aos
-alh
-asu
-arD
-auw
-avn
-avn
-avn
-avn
-azS
-arD
-aCc
-aBX
-aDB
-aEp
-aEW
-aBX
-aGH
-aHB
-aIw
-aJM
-aCd
+agT
+amS
+ajH
+aqU
+aqd
+asW
+atN
+atN
+atN
+atN
+ayr
+aqd
+aAB
+aAw
+aCa
+aCO
+aDv
+aAw
+aFg
+aGa
+aGV
+aIl
+aAC
aaa
aaa
aaa
-aIu
-aQf
-aRe
-aMi
-aTe
-aUd
-aIu
+aGT
+aOy
+aPx
+aKE
+aRv
+aSt
+aGT
aaa
aaa
aaa
aaa
aaa
-aZB
-bbu
-aZB
+aXR
+aZK
+aXR
aaa
-bdx
-aDH
-aDH
-bfM
-bhf
-bfN
-bjb
-bkh
-blq
-bmJ
-bof
-bps
-bqI
-brR
-btf
-bun
-bvk
-bwp
-bxp
-byt
-bzA
-bAs
-bBp
-bCu
-bBp
-bEE
-bAr
-bAr
-bGO
+bbN
+aCg
+aCg
+bec
+bfv
+bed
+bhr
+bix
+bjG
+bkZ
+bmv
+bnI
+boY
+bqh
+brv
+bsD
+btA
+buF
+bvF
+bwJ
+bxQ
+byI
+bzF
+bAK
+bzF
+bCU
+byH
+byH
+bFe
aad
aaa
aaa
@@ -96876,39 +97284,39 @@ aaa
aaa
aaa
aaa
-bTk
-bTk
-bTk
-bTk
-bTk
-bTD
-bTk
-bTD
-bTD
-bTD
-bTD
-bTk
-bTD
-bTk
-bTD
-bTD
-bTD
-bTD
-bMU
-bTk
-bTk
-bTD
-bTD
-bTk
-bTk
-bTk
-bTk
-bTD
-bTk
-bTk
-bTk
-bTk
-bTk
+bRA
+bRA
+bRA
+bRA
+bRA
+bRT
+bRA
+bRT
+bRT
+bRT
+bRT
+bRA
+bRT
+bRA
+bRT
+bRT
+bRT
+bRT
+bLk
+bRA
+bRA
+bRT
+bRT
+bRA
+bRA
+bRA
+bRA
+bRT
+bRA
+bRA
+bRA
+bRA
+bRA
aaa
aaa
aaa
@@ -97034,77 +97442,77 @@ aaa
aaa
aaa
aaa
-ait
-akt
-arD
-arD
-ato
-ato
-avp
-ato
-ato
-avp
-ato
-ato
-arD
-arD
-aDC
-aEq
-aEq
-aFJ
-aCe
-aCe
-aIx
-aJN
-aCd
+agT
+aiT
+aqd
+aqd
+arO
+arO
+atP
+arO
+arO
+atP
+arO
+arO
+aqd
+aqd
+aCb
+aCP
+aCP
+aEi
+aAD
+aAD
+aGW
+aIm
+aAC
aaa
aaa
aaa
-aIu
-aQe
-aRd
-aMi
-aRd
-aUc
-aIu
+aGT
+aOx
+aPw
+aKE
+aPw
+aSs
+aGT
aaa
aaa
aaa
aaa
aaa
-aZB
-bbt
-aZB
+aXR
+aZJ
+aXR
aaa
-bdx
-aCd
-aCd
-aCd
-bhg
-bfN
-bjc
-bki
-bkh
-bmK
-bog
-bpt
-bqJ
-brV
-btg
-bun
-bvl
-bwq
-bxq
-byu
-bzB
-bAt
-bBq
-bCv
-bDv
-bEF
-bFv
-bGh
-bGP
+bbN
+aAC
+aAC
+aAC
+bfw
+bed
+bhs
+biy
+bix
+bla
+bmw
+bnJ
+boZ
+bql
+brw
+bsD
+btB
+buG
+bvG
+bwK
+bxR
+byJ
+bzG
+bAL
+bBL
+bCV
+bDL
+bEx
+bFf
aad
aaa
aaa
@@ -97132,43 +97540,43 @@ aaa
aaa
aaa
aaa
-bTk
-bTk
-bTD
-bTk
-bTk
-bTk
-bTk
-bTD
-bTD
-bTk
-bTk
-bTk
-bTD
-bTD
-bTD
-bTD
-bTk
-bTD
-bTD
-bTk
-bTk
-bTk
-bTD
-bTk
-bTk
-bTk
-bTD
-bTk
-bTk
-bTk
-bTD
-bTQ
-bTk
-bTk
-bTk
-bTk
-bTk
+bRA
+bRA
+bRT
+bRA
+bRA
+bRA
+bRA
+bRT
+bRT
+bRA
+bRA
+bRA
+bRT
+bRT
+bRT
+bRT
+bRA
+bRT
+bRT
+bRA
+bRA
+bRA
+bRT
+bRA
+bRA
+bRA
+bRT
+bRA
+bRA
+bRA
+bRT
+bSg
+bRA
+bRA
+bRA
+bRA
+bRA
aaa
aaa
aaa
@@ -97291,77 +97699,77 @@ aaa
aaa
aaa
aaa
-aiu
-akt
-arD
-asv
-asv
-asv
-asv
-asv
-asv
-asv
-asv
-asv
-asv
-arD
-aBX
-aBX
-aBX
-aBX
-aCd
-aCd
-aIy
-aGJ
-aCd
+agU
+aiT
+aqd
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqd
+aAw
+aAw
+aAw
+aAw
+aAC
+aAC
+aGX
+aFi
+aAC
aaa
-aNi
-aNi
-aNi
-aQg
-aRf
-aNi
-aTf
-aUe
-aNi
-aNi
-aNi
+aLC
+aLC
+aLC
+aOz
+aPy
+aLC
+aRw
+aSu
+aLC
+aLC
+aLC
aaa
-aoz
-aoz
-aoA
-bbv
-aoA
-aoz
-aoz
-aCd
-aVO
-aRi
-bhh
-bfN
-bjd
-bkj
-blr
-bmL
-boh
-bpu
-bqK
-brW
-bth
-bun
-bvm
-bwr
-bxr
-byv
-bzC
-bAu
-bBr
-bCw
-bBr
-bEG
-bAr
-bAr
-bGO
+amZ
+amZ
+ana
+aZL
+ana
+amZ
+amZ
+aAC
+aUe
+aPB
+bfx
+bed
+bht
+biz
+bjH
+blb
+bmx
+bnK
+bpa
+bqm
+brx
+bsD
+btC
+buH
+bvH
+bwL
+bxS
+byK
+bzH
+bAM
+bzH
+bCW
+byH
+byH
+bFe
aad
aaa
aaa
@@ -97388,45 +97796,45 @@ aaa
aaa
aaa
aaa
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTD
-bTk
-bTk
-bTD
-bTD
-bTk
-bTD
-bTD
-bTD
-bTD
-bTD
-bTD
-bTk
-bTk
-bTD
-bTk
-bTD
-bTD
-bTD
-bTk
-bTD
-bTk
-bTD
-bTD
-bTD
-bTD
-bTk
-bTk
-bTk
-bTk
-bTk
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRT
+bRA
+bRA
+bRT
+bRT
+bRA
+bRT
+bRT
+bRT
+bRT
+bRT
+bRT
+bRA
+bRA
+bRT
+bRA
+bRT
+bRT
+bRT
+bRA
+bRT
+bRA
+bRT
+bRT
+bRT
+bRT
+bRA
+bRA
+bRA
+bRA
+bRA
aaa
aaa
aaa
@@ -97548,79 +97956,79 @@ aaa
aaa
aaa
aaa
-aiu
-akt
-arD
-asv
-asv
-asv
-asv
-asv
-asv
-asv
-asv
-asv
-asv
-arD
-aDD
-aEr
-aEX
-aCd
-aGI
-aHC
-aHC
-aJO
-aCd
-aMj
-aNi
-aNi
-aOo
-aOo
-aOo
-aSi
-aOo
-aOo
-aOo
-aOo
-aNi
+agU
+aiT
+aqd
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqd
+aCc
+aCQ
+aDw
+aAC
+aFh
+aGb
+aGb
+aIn
+aAC
+aKF
+aLC
+aLC
+aMH
+aMH
+aMH
+aQA
+aMH
+aMH
+aMH
+aMH
+aLC
aaa
-aoz
-aZG
-arH
-arH
-baC
-atq
-aoz
-aCd
-aVP
-bfN
-bfN
-bfN
-bfN
-bfN
-bij
-bmM
-boi
-bpv
-bqL
-bmM
-bij
-bun
-bun
-bun
-bun
-byw
-bzD
-bun
-bAr
-bAr
-bAr
-bAr
-bAr
-bAr
-agP
-agP
-bIi
+amZ
+aXW
+aqh
+aqh
+aYS
+arQ
+amZ
+aAC
+aUf
+bed
+bed
+bed
+bed
+bed
+bgz
+blc
+bmy
+bnL
+bpb
+blc
+bgz
+bsD
+bsD
+bsD
+bsD
+bwM
+bxT
+bsD
+byH
+byH
+byH
+byH
+byH
+byH
+afp
+afp
+bGy
aaa
aaa
aaa
@@ -97645,45 +98053,45 @@ aaa
aaa
aaa
aaa
-bTl
-bTk
-bTk
-bTk
-bTk
-bTD
-bTk
-bTk
-bTk
-bTk
-bTD
-bTD
-bTk
-bTk
-bTD
-bTD
-bTD
-bTk
-bTk
-bTk
-bTk
-bTD
-bTD
-bTD
-bTD
-bTD
-bTk
-bTD
-bTD
-bTD
-bTk
-bTD
-bTD
-bTQ
-bTk
-bTk
-bTk
-bTk
-bTk
+bRB
+bRA
+bRA
+bRA
+bRA
+bRT
+bRA
+bRA
+bRA
+bRA
+bRT
+bRT
+bRA
+bRA
+bRT
+bRT
+bRT
+bRA
+bRA
+bRA
+bRA
+bRT
+bRT
+bRT
+bRT
+bRT
+bRA
+bRT
+bRT
+bRT
+bRA
+bRT
+bRT
+bSg
+bRA
+bRA
+bRA
+bRA
+bRA
aaa
aaa
aaa
@@ -97782,102 +98190,102 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-ait
-aqF
-arD
-asv
-asv
-asv
-asv
-asv
-asv
-asv
-asv
-asv
-asv
-arD
-aDE
-aEs
-aEY
-aCd
-bXg
-aCd
-aIz
-aIz
-aCd
-aMj
-aNj
-aOo
-aOo
-aOo
-aOo
-aOo
-aOo
-aOo
-aOo
-aOo
-aNi
-aaa
-aoA
-aZH
-baC
-arH
-baC
-bcX
-bdy
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+agT
+apf
+aqd
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqd
aCd
-aVP
-bfN
-bhi
-bie
-bhi
-bfN
-bls
-bmN
-boj
-bpu
-bqM
-brX
-bti
-bup
-bhi
-bhi
-bxs
-byx
-bzE
-bAv
-bBs
-bBs
-bDw
-bEH
-bFw
-bGi
-bGQ
-bGQ
-bIj
+aCR
+aDx
+aAC
+bVw
+aAC
+aGY
+aGY
+aAC
+aKF
+aLD
+aMH
+aMH
+aMH
+aMH
+aMH
+aMH
+aMH
+aMH
+aMH
+aLC
+aaa
+ana
+aXX
+aYS
+aqh
+aYS
+bbn
+bbO
+aAC
+aUf
+bed
+bfy
+bgu
+bfy
+bed
+bjI
+bld
+bmz
+bnK
+bpc
+bqn
+bry
+bsF
+bfy
+bfy
+bvI
+bwN
+bxU
+byL
+bzI
+bzI
+bBM
+bCX
+bDM
+bEy
+bFg
+bFg
+bGz
aaa
aaa
aaa
@@ -97902,46 +98310,46 @@ aaa
aaa
aad
aad
-bTl
-bTl
-bTn
-bTn
-bTn
-bTk
-bTk
-bTD
-bTk
-bTk
-bTD
-bTD
-bTk
-bTk
-bTD
-bTD
-bTD
-bTk
-bTk
-bTD
-bTD
-bTD
-bTD
-bTD
-bTD
-bTD
-bTD
-bTD
-bTD
-bTk
-bTD
-bTD
-bTk
-bTk
-bTk
-bTk
-bTk
-bTD
-bTk
-bTk
+bRB
+bRB
+bRD
+bRD
+bRD
+bRA
+bRA
+bRT
+bRA
+bRA
+bRT
+bRT
+bRA
+bRA
+bRT
+bRT
+bRT
+bRA
+bRA
+bRT
+bRT
+bRT
+bRT
+bRT
+bRT
+bRT
+bRT
+bRT
+bRT
+bRA
+bRT
+bRT
+bRA
+bRA
+bRA
+bRA
+bRA
+bRT
+bRA
+bRA
aaa
aaa
aaa
@@ -98062,78 +98470,78 @@ aaa
aaa
aaa
aaa
-aiu
-akt
-arD
-asv
-asv
-asv
-asv
-asv
-asv
-asv
-asv
-asv
-asv
-arD
-aDF
-aEt
-aDH
-aFK
-aGJ
-aHD
-aIA
-aJP
-aCd
-aMj
-aNj
-aOo
-aOo
-aOo
-aOo
-aOo
-aOo
-aOo
-aOo
-aOo
-aNi
+agU
+aiT
+aqd
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqd
+aCe
+aCS
+aCg
+aEj
+aFi
+aGc
+aGZ
+aIo
+aAC
+aKF
+aLD
+aMH
+aMH
+aMH
+aMH
+aMH
+aMH
+aMH
+aMH
+aMH
+aLC
aaa
-aoz
-aZG
-arH
-arH
-baC
-bcY
-aoz
-aCd
-aVP
-bfN
-bhi
-bhi
-bhi
-bkk
-blt
-bmO
-boj
-bZI
-bqM
-brY
-btj
-bhi
-bvn
-bws
-bxs
-byy
-bzF
-bAw
-bzG
-bCx
-bxs
-bEI
-bxu
-bxu
-agP
-agP
+amZ
+aXW
+aqh
+aqh
+aYS
+bbo
+amZ
+aAC
+aUf
+bed
+bfy
+bfy
+bfy
+biA
+bjJ
+ble
+bmz
+bXY
+bpc
+bqo
+brz
+bfy
+btD
+buI
+bvI
+bwO
+bxV
+byM
+bxW
+bAN
+bvI
+bCY
+bvK
+bvK
+afp
+afp
aaa
aaa
aaa
@@ -98158,47 +98566,47 @@ aaa
aaa
aaa
aad
-agP
-bTm
-bTt
-bTz
-bTn
-bTn
-bTn
-bTk
-bTk
-bTD
-bTD
-bTD
-bTD
-bTk
-bTk
-bTD
-bTD
-bTD
-bTk
-bTD
-bTD
-bTD
-bTk
-bTk
-bTD
-bTD
-bTk
-bTD
-bTD
-bTD
-bTD
-bTD
-bTk
-bTD
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
+afp
+bRC
+bRJ
+bRP
+bRD
+bRD
+bRD
+bRA
+bRA
+bRT
+bRT
+bRT
+bRT
+bRA
+bRA
+bRT
+bRT
+bRT
+bRA
+bRT
+bRT
+bRT
+bRA
+bRA
+bRT
+bRT
+bRA
+bRT
+bRT
+bRT
+bRT
+bRT
+bRA
+bRT
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
aaa
aaa
aaa
@@ -98319,75 +98727,75 @@ aaa
aaa
aaa
aaa
-aiu
-akt
-arD
-asv
-asv
-asv
-asv
-asv
-asv
-asv
-asv
-asv
-asv
-arD
-aDG
-aEu
-aEu
-aCd
-bXh
-aDH
-aDH
-aCd
-aCd
-aMj
-aNj
-aOo
-aOo
-aOo
-aOo
-aOo
-aOo
-aOo
-aOo
-aOo
-aNi
-aaa
-aoz
-aoz
-aoA
-bbw
-aoA
-aoz
-aoz
-aCd
-beM
-bfN
-bhi
-bhi
-bii
-bhi
-blu
-bmP
-boj
-bpw
-bqN
-brZ
-btk
-bhi
-bhi
-bhi
-bxs
-byz
-bzG
-bAx
-bzG
-bCy
-bxs
-bxu
-bxu
+agU
+aiT
+aqd
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqV
+aqd
+aCf
+aCT
+aCT
+aAC
+bVx
+aCg
+aCg
+aAC
+aAC
+aKF
+aLD
+aMH
+aMH
+aMH
+aMH
+aMH
+aMH
+aMH
+aMH
+aMH
+aLC
+aaa
+amZ
+amZ
+ana
+aZM
+ana
+amZ
+amZ
+aAC
+bdc
+bed
+bfy
+bfy
+bgy
+bfy
+bjK
+blf
+bmz
+bnM
+bpd
+bqp
+brA
+bfy
+bfy
+bfy
+bvI
+bwP
+bxW
+byN
+bxW
+bAO
+bvI
+bvK
+bvK
aad
aad
aad
@@ -98415,47 +98823,47 @@ aad
aad
aad
aad
-agP
-bTn
-bTn
-bTn
-bTn
-bTn
-bTn
-bTn
-bTD
-bTD
-bTD
-bTD
-bTk
-bTk
-bTD
-bTD
-bTD
-bTk
-bTD
-bTk
-bTD
-bTD
-bTD
-bTk
-bTD
-bTD
-bTD
-bTD
-bTD
-bTD
-bTD
-bTk
-bTD
-bTD
-bTk
-bTk
-bTk
-bTn
-bTk
-bTk
-bTk
+afp
+bRD
+bRD
+bRD
+bRD
+bRD
+bRD
+bRD
+bRT
+bRT
+bRT
+bRT
+bRA
+bRA
+bRT
+bRT
+bRT
+bRA
+bRT
+bRA
+bRT
+bRT
+bRT
+bRA
+bRT
+bRT
+bRT
+bRT
+bRT
+bRT
+bRT
+bRA
+bRT
+bRT
+bRA
+bRA
+bRA
+bRD
+bRA
+bRA
+bRA
aaa
aaa
aaa
@@ -98576,41 +98984,41 @@ aaa
aaa
aaa
aaa
-ait
-akt
-arD
-arD
-ato
-ato
-avp
-ato
-ato
-avp
-ato
-ato
-arD
-arD
-aCd
-aCd
-aCd
-aCd
-aGK
-aHE
-aDH
-aJR
-aCd
-aMj
-aNi
-aNi
-aOo
-aOo
-aOo
-aOo
-aOo
-aOo
-aOo
-aOo
-aNi
+agT
+aiT
+aqd
+aqd
+arO
+arO
+atP
+arO
+arO
+atP
+arO
+arO
+aqd
+aqd
+aAC
+aAC
+aAC
+aAC
+aFj
+aGd
+aCg
+aIq
+aAC
+aKF
+aLC
+aLC
+aMH
+aMH
+aMH
+aMH
+aMH
+aMH
+aMH
+aMH
+aLC
aaa
aaa
aaa
@@ -98619,31 +99027,31 @@ aaa
aaa
aaa
aaa
-aCd
-aVP
-bfO
-bhj
-bif
-bhi
-bhi
-blv
-bmQ
-boj
-bpx
-bqO
-bsa
-bsa
-bsa
-bsa
-bsa
-bxt
-byA
-bzH
-bAy
-bBt
-bCz
-bDx
-bEJ
+aAC
+aUf
+bee
+bfz
+bgv
+bfy
+bfy
+bjL
+blg
+bmz
+bnN
+bpe
+bqq
+bqq
+bqq
+bqq
+bqq
+bvJ
+bwQ
+bxX
+byO
+bzJ
+bAP
+bBN
+bCZ
aaa
aaa
aaa
@@ -98672,47 +99080,47 @@ aaa
aaa
aaa
aad
-agP
-bTn
-bTn
-bTn
-bTE
-bTn
-bTF
-bTn
-bTD
-bTD
-bTD
-bTD
-bTk
-bTD
-bTD
-bTD
-bTk
-bTD
-bTD
-bTk
-bTk
-bTD
-bTD
-bTQ
-bTQ
-bTQ
-bTD
-bTD
-bTD
-bTD
-bTk
-bTD
-bTk
-bTD
-bTD
-bTk
-bTn
-bVl
-bVq
-bTk
-bTk
+afp
+bRD
+bRD
+bRD
+bRU
+bRD
+bRV
+bRD
+bRT
+bRT
+bRT
+bRT
+bRA
+bRT
+bRT
+bRT
+bRA
+bRT
+bRT
+bRA
+bRA
+bRT
+bRT
+bSg
+bSg
+bSg
+bRT
+bRT
+bRT
+bRT
+bRA
+bRT
+bRA
+bRT
+bRT
+bRA
+bRD
+bTB
+bTG
+bRA
+bRA
aaa
aaa
aaa
@@ -98833,41 +99241,41 @@ aaa
aaa
aaa
aaa
-ait
-akt
-arE
-ait
-arD
-aux
-avq
-awq
-axD
-ayT
-azT
-arD
-aCd
-aCZ
-aDH
-aDH
-aDH
-aDH
-aGJ
-aDH
-aDH
-aDH
-aCd
+agT
+aiT
+aqe
+agT
+aqd
+asX
+atQ
+auQ
+awd
+axs
+ays
+aqd
+aAC
+aBy
+aCg
+aCg
+aCg
+aCg
+aFi
+aCg
+aCg
+aCg
+aAC
aaa
-aNi
-aNi
-aNi
-aNi
-aNi
-aNi
-aNi
-aNi
-aNi
-aNi
-aNi
+aLC
+aLC
+aLC
+aLC
+aLC
+aLC
+aLC
+aLC
+aLC
+aLC
+aLC
aaa
aaa
aaa
@@ -98876,40 +99284,31 @@ aaa
aaa
aaa
aaa
-aCd
-beN
-bfP
-bhi
-bhi
-bhi
-bkl
-blw
-bmR
-boj
-bpy
-bqP
-brX
-btl
-bup
-bhi
-bhi
-bxs
-byB
-bzI
-bzI
-bzI
-bzI
-bDy
-bxu
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
-aad
+aAC
+bdd
+bef
+bfy
+bfy
+bfy
+biB
+bjM
+blh
+bmz
+bnO
+bpf
+bqn
+brB
+bsF
+bfy
+bfy
+bvI
+bwR
+bxY
+bxY
+bxY
+bxY
+bBO
+bvK
aad
aad
aad
@@ -98929,47 +99328,56 @@ aad
aad
aad
aad
-agP
-bTn
-bTn
-bTn
-bTn
-bTn
-bTn
-bTn
-bTk
-bTD
-bTD
-bTk
-bTD
-bTD
-bTD
-bTD
-bTk
-bTD
-bTD
-bTk
-bTk
-bTD
-bTD
-bTk
-bTk
-bTD
-bTD
-bTD
-bTD
-bTD
-bTD
-bTk
-bTk
-bTD
-bTk
-bTk
-bTk
-bTn
-bTk
-bTk
-bTk
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+aad
+afp
+bRD
+bRD
+bRD
+bRD
+bRD
+bRD
+bRD
+bRA
+bRT
+bRT
+bRA
+bRT
+bRT
+bRT
+bRT
+bRA
+bRT
+bRT
+bRA
+bRA
+bRT
+bRT
+bRA
+bRA
+bRT
+bRT
+bRT
+bRT
+bRT
+bRT
+bRA
+bRA
+bRT
+bRA
+bRA
+bRA
+bRD
+bRA
+bRA
+bRA
aaa
aaa
aaa
@@ -99090,29 +99498,29 @@ aaa
aaa
aaa
aaa
-ait
-aqG
-alh
-alh
-atp
-auy
-avr
-awr
-axE
-ayU
-azU
-aBf
-aCe
-aCe
-aCe
-aCe
-aCe
-aCe
-aGL
-aHC
-aHC
-aJS
-aCd
+agT
+apg
+ajH
+ajH
+arP
+asY
+atR
+auR
+awe
+axt
+ayt
+azE
+aAD
+aAD
+aAD
+aAD
+aAD
+aAD
+aFk
+aGb
+aGb
+aIr
+aAC
aaa
aaa
aaa
@@ -99126,38 +99534,38 @@ aaa
aaa
aaa
aaa
-aCd
-aCd
-aCd
-aEw
-aEw
-aCd
-aEw
-aCd
-aVP
-bfP
-bhi
-bhi
-bhi
-bkk
-blx
-bmS
-boj
-bpz
-bqM
-bsb
-btm
-bhi
-bvn
-bws
-bxs
-byC
-bzI
-bAz
-bzG
-bzG
-bDz
-bBx
+aAC
+aAC
+aAC
+aCV
+aCV
+aAC
+aCV
+aAC
+aUf
+bef
+bfy
+bfy
+bfy
+biA
+bjN
+bli
+bmz
+bnP
+bpc
+bqr
+brC
+bfy
+btD
+buI
+bvI
+bwS
+bxY
+byP
+bxW
+bxW
+bBP
+bzN
aad
aaa
aaa
@@ -99186,47 +99594,47 @@ aaa
aaa
aaa
aad
-agP
-bTm
-bTn
-bTn
-bTz
-bTn
-bTn
-bTk
-bTk
-bTD
-bTk
-bTD
-bTD
-bTD
-bTD
-bTk
-bTD
-bTD
-bTD
-bTk
-bTD
-bTD
-bTk
-bTD
-bTD
-bTD
-bTk
-bTk
-bTD
-bTD
-bTk
-bTk
-bTD
-bTk
-bTD
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
+afp
+bRC
+bRD
+bRD
+bRP
+bRD
+bRD
+bRA
+bRA
+bRT
+bRA
+bRT
+bRT
+bRT
+bRT
+bRA
+bRT
+bRT
+bRT
+bRA
+bRT
+bRT
+bRA
+bRT
+bRT
+bRT
+bRA
+bRA
+bRT
+bRT
+bRA
+bRA
+bRT
+bRA
+bRT
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
aaa
aaa
aaa
@@ -99347,29 +99755,29 @@ aaa
aaa
aaa
aaa
-ait
-aiu
-ait
-ait
-arD
-arD
-ato
-ato
-ato
-ato
-arD
-arD
-aCd
-aCd
-aCd
-aCd
-aUh
-aCd
-aCd
-aFL
-aCd
-aGJ
-aCd
+agT
+agU
+agT
+agT
+aqd
+aqd
+arO
+arO
+arO
+arO
+aqd
+aqd
+aAC
+aAC
+aAC
+aAC
+aSx
+aAC
+aAC
+aEk
+aAC
+aFi
+aAC
aaa
aaa
aaa
@@ -99383,38 +99791,38 @@ aaa
aaa
aaa
aaa
-aEw
-aZI
-baD
-aRi
-aRi
-bcZ
-aRi
-aRi
-beO
-bfP
-bhi
-big
-bhi
-bfN
-bly
-bmT
-bok
-bpA
-bqN
-bsc
-btn
-bhi
-bhi
-bhi
-bxs
-byD
-bzG
-bAA
-bBu
-bCA
-bDA
-bBx
+aCV
+aXY
+aYT
+aPB
+aPB
+bbp
+aPB
+aPB
+bde
+bef
+bfy
+bgw
+bfy
+bed
+bjO
+blj
+bmA
+bnQ
+bpd
+bqs
+brD
+bfy
+bfy
+bfy
+bvI
+bwT
+bxW
+byQ
+bzK
+bAQ
+bBQ
+bzN
aad
aaa
aaa
@@ -99444,46 +99852,46 @@ aaa
aaa
aad
aad
-bTl
-bTl
-bTn
-bTn
-bTn
-bTk
-bTD
-bTD
-bTk
-bTD
-bTD
-bTD
-bTD
-bTk
-bTD
-bTD
-bTD
-bTk
-bTk
-bTD
-bTD
-bTD
-bTD
-bTD
-bTD
-bTD
-bTD
-bTD
-bTD
-bTD
-bTk
-bTD
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
+bRB
+bRB
+bRD
+bRD
+bRD
+bRA
+bRT
+bRT
+bRA
+bRT
+bRT
+bRT
+bRT
+bRA
+bRT
+bRT
+bRT
+bRA
+bRA
+bRT
+bRT
+bRT
+bRT
+bRT
+bRT
+bRT
+bRT
+bRT
+bRT
+bRT
+bRA
+bRT
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
aaa
aaa
aaa
@@ -99592,86 +100000,86 @@ aaa
aaa
aaa
aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-bdx
-aad
-aad
-aaa
-aaa
-aaa
-aaa
-aad
-aad
-aCd
-bWM
-bWQ
-aRh
-aDH
-aRh
-aDH
-aDH
-aCd
-aGJ
-aCd
-aCd
-aEw
-aEw
-aEw
-aEw
-aCd
-aCd
-aEw
-aEw
-aCd
-aEw
-aEw
-aCd
-aCd
-aVP
-baE
-aDH
-aRh
-bda
-aCd
-aIz
-beP
-bfQ
-bhk
-bhk
-bhk
-bhk
-blz
-bmU
-bol
-bpz
-bqM
-bij
-bij
-bij
-bij
-bij
-bxs
-byE
-bzK
-bxs
-bBv
-bCB
-bDB
-bxu
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bbN
+aad
+aad
+aaa
+aaa
+aaa
+aaa
+aad
+aad
+aAC
+bVc
+bVg
+aPA
+aCg
+aPA
+aCg
+aCg
+aAC
+aFi
+aAC
+aAC
+aCV
+aCV
+aCV
+aCV
+aAC
+aAC
+aCV
+aCV
+aAC
+aCV
+aCV
+aAC
+aAC
+aUf
+aYU
+aCg
+aPA
+bbq
+aAC
+aGY
+bdf
+beg
+bfA
+bfA
+bfA
+bfA
+bjP
+blk
+bmB
+bnP
+bpc
+bgz
+bgz
+bgz
+bgz
+bgz
+bvI
+bwU
+bya
+bvI
+bzL
+bAR
+bBR
+bvK
aad
aaa
aaa
@@ -99701,46 +100109,46 @@ aaa
aaa
aaa
aaa
-bTl
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTD
-bTk
-bTD
-bTk
-bTk
-bTD
-bTD
-bTD
-bTD
-bTD
-bTk
-bTk
-bTD
-bTD
-bTD
-bTk
-bTk
-bTk
-bTD
-bTD
-bTD
-bTD
-bTk
-bTD
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTD
-bTk
-bTk
+bRB
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRT
+bRA
+bRT
+bRA
+bRA
+bRT
+bRT
+bRT
+bRT
+bRT
+bRA
+bRA
+bRT
+bRT
+bRT
+bRA
+bRA
+bRA
+bRT
+bRT
+bRT
+bRT
+bRA
+bRT
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRT
+bRA
+bRA
aaa
aaa
aaa
@@ -99873,62 +100281,62 @@ aaa
aad
aad
aad
-aCd
-bWN
-aCd
-bbz
-aCd
-aFL
-aCd
-aCd
-aCd
-aJT
-aLd
-aLd
-aLd
-aLd
-aLd
-aQh
-aRg
-aCd
-aTg
-aUf
-aCd
-aVO
-aRi
-aRi
-aYE
-aVQ
-aDH
-bbx
-aDH
-bda
-aCd
-bea
-beQ
-bfR
-bfN
-bhi
-bhi
-bkl
-blA
-bmV
-bom
-bpz
-bqM
-brX
-bto
-bup
-bhi
-bhi
-bxs
-byF
-bzL
-bAC
-bBw
-bCC
-bDC
-bxu
+aAC
+bVd
+aAC
+aZP
+aAC
+aEk
+aAC
+aAC
+aAC
+aIs
+aJB
+aJB
+aJB
+aJB
+aJB
+aOA
+aPz
+aAC
+aRx
+aSv
+aAC
+aUe
+aPB
+aPB
+aWU
+aUg
+aCg
+aZN
+aCg
+bbq
+aAC
+bcq
+bdg
+beh
+bed
+bfy
+bfy
+biB
+bjQ
+bll
+bmC
+bnP
+bpc
+bqn
+brE
+bsF
+bfy
+bfy
+bvI
+bwV
+byb
+byS
+bzM
+bAS
+bBS
+bvK
aad
aaa
aaa
@@ -99958,45 +100366,45 @@ aaa
aaa
aaa
aaa
-bTk
-bTk
-bTk
-bTk
-bTk
-bTD
-bTD
-bTk
-bTD
-bTk
-bTk
-bTD
-bTD
-bTk
-bTD
-bTk
-bTk
-bTk
-bTD
-bTk
-bTD
-bTk
-bTk
-bTk
-bTD
-bTk
-bTD
-bTD
-bTk
-bTk
-bTk
-bTk
-bTk
-bTD
-bTk
-bTk
-bTk
-bTk
-bTk
+bRA
+bRA
+bRA
+bRA
+bRA
+bRT
+bRT
+bRA
+bRT
+bRA
+bRA
+bRT
+bRT
+bRA
+bRT
+bRA
+bRA
+bRA
+bRT
+bRA
+bRT
+bRA
+bRA
+bRA
+bRT
+bRA
+bRT
+bRT
+bRA
+bRA
+bRA
+bRA
+bRA
+bRT
+bRA
+bRA
+bRA
+bRA
+bRA
aaa
aaa
aaa
@@ -100130,62 +100538,62 @@ aaa
aaa
aad
aaa
-aEw
-aDH
-aCd
-aCd
-aCd
-aEv
-bXi
-aFM
-aCd
-aJU
-aLe
-aMk
-aNk
-aOp
-aPf
-aQi
-aRh
-aCd
-aTh
-aDH
-aCd
-aVP
-aRh
-aDH
-aYF
-aDH
-baF
-bby
-bcm
-bda
-aCd
-beb
-beR
-bfS
-bfN
-bih
-bje
-bhi
-blB
-bmW
-bom
-bpz
-bqM
-bsd
-btp
-bhi
-bje
-bws
-bxu
-byG
-bxu
-bxu
-bBx
-bxu
-bBx
-bxu
+aCV
+aCg
+aAC
+aAC
+aAC
+aCU
+bVy
+aEl
+aAC
+aIt
+aJC
+aKG
+aLE
+aMI
+aNy
+aOB
+aPA
+aAC
+aRy
+aCg
+aAC
+aUf
+aPA
+aCg
+aWV
+aCg
+aYV
+aZO
+baC
+bbq
+aAC
+bcr
+bdh
+bei
+bed
+bgx
+bhu
+bfy
+bjR
+blm
+bmC
+bnP
+bpc
+bqt
+brF
+bfy
+bhu
+buI
+bvK
+bwW
+bvK
+bvK
+bzN
+bvK
+bzN
+bvK
aad
aaa
aaa
@@ -100216,56 +100624,56 @@ aaa
aaa
aaa
aaa
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTD
-bTD
-bTk
-bTk
-bTD
-bTk
-bTD
-bTD
-bTD
-bTQ
-bTD
-bTD
-bTk
-bTk
-bTk
-bTD
-bTD
-bTk
-bTk
-bTD
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
-aaa
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRT
+bRT
+bRA
+bRA
+bRT
+bRA
+bRT
+bRT
+bRT
+bSg
+bRT
+bRT
+bRA
+bRA
+bRA
+bRT
+bRT
+bRA
+bRA
+bRT
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
aaa
aaa
aaa
@@ -100387,57 +100795,57 @@ aaa
aaa
aad
aad
-aCd
-bWO
-aCd
+aAC
+bVe
+aAC
aaa
-aCd
-aEw
-aCd
-aCd
-aIB
-aIB
-aIB
-aIB
-aNl
-aOq
-aIB
-aQj
-aDH
-aDH
-aDH
-bXy
-aCd
-aVP
-aWS
-aWS
-aYG
-aWS
-aWS
-aCd
-aCd
-bdb
-aCd
-bec
-beS
-aDH
-bfN
-bii
-bhi
-bhi
-blC
-bmX
-bon
-bpB
-bqN
-bse
-btq
-bhi
-bhi
-bhi
-bfN
-byH
-btw
+aAC
+aCV
+aAC
+aAC
+aHa
+aHa
+aHa
+aHa
+aLF
+aMJ
+aHa
+aOC
+aCg
+aCg
+aCg
+bVO
+aAC
+aUf
+aVi
+aVi
+aWW
+aVi
+aVi
+aAC
+aAC
+bbr
+aAC
+bcs
+bdi
+aCg
+bed
+bgy
+bfy
+bfy
+bjS
+bln
+bmD
+bnR
+bpd
+bqu
+brG
+bfy
+bfy
+bfy
+bed
+bwX
+brM
aaa
aaa
aaa
@@ -100474,41 +100882,41 @@ aaa
aaa
aaa
aaa
-bTk
-bTk
-bTk
-bTD
-bTD
-bTD
-bTD
-bTD
-bTD
-bTk
-bTk
-bTD
-bTD
-bTk
-bTD
-bTD
-bTk
-bTk
-bTk
-bTD
-bTD
-bTk
-bTk
-bTD
-bTD
-bTk
-bTk
-bTD
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
+bRA
+bRA
+bRA
+bRT
+bRT
+bRT
+bRT
+bRT
+bRT
+bRA
+bRA
+bRT
+bRT
+bRA
+bRT
+bRT
+bRA
+bRA
+bRA
+bRT
+bRT
+bRA
+bRA
+bRT
+bRT
+bRA
+bRA
+bRT
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
aaa
aaa
aaa
@@ -100644,57 +101052,57 @@ aaa
aaa
aaa
aad
-agP
-agP
-agP
+afp
+afp
+afp
aaa
aaa
aaa
aaa
aaa
-aIC
-aIC
-aLf
-aMl
-aNm
-aOr
-aIB
-aQj
-aDH
-aCd
-aCd
-aCd
-aCd
-aVP
-aWS
-aXR
-aYH
-aZJ
-aWS
-bYx
-aDH
-bda
-aCd
-aCd
-beS
-aHE
-bfN
-bij
-bij
-bij
-bij
-bij
-boo
-bpC
-bqQ
-bij
-bij
-bij
-bij
-bij
-bfN
-byI
-btw
+aHb
+aHb
+aJD
+aKH
+aLG
+aMK
+aHa
+aOC
+aCg
+aAC
+aAC
+aAC
+aAC
+aUf
+aVi
+aWh
+aWX
+aXZ
+aVi
+bWN
+aCg
+bbq
+aAC
+aAC
+bdi
+aGd
+bed
+bgz
+bgz
+bgz
+bgz
+bgz
+bmE
+bnS
+bpg
+bgz
+bgz
+bgz
+bgz
+bgz
+bed
+bwY
+brM
aaa
aaa
aaa
@@ -100732,35 +101140,35 @@ aaa
aaa
aaa
aaa
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTD
-bTD
-bTS
-bTD
-bTD
-bTk
-bTk
-bTD
-bTk
-bTk
-bTD
-bTk
-bTk
-bTk
-bTk
-bTD
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRT
+bRT
+bSi
+bRT
+bRT
+bRA
+bRA
+bRT
+bRA
+bRA
+bRT
+bRA
+bRA
+bRA
+bRA
+bRT
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
aaa
aaa
aaa
@@ -100909,49 +101317,49 @@ aaa
aaa
aaa
aaa
-aIB
-aIB
-aLg
-aMm
-aNn
-aOs
-aIB
-aQk
-aRi
-aSj
-aRi
-aRi
-aRi
-aVQ
-aWS
-aXS
-aYI
-aZK
-aWS
-bbA
-bcn
-bdc
-aLd
-aLd
-beT
-bfT
-bfN
-bhi
-bhi
-bkl
-blD
-bmV
-bom
-bpz
-bqM
-brX
-btr
-bup
-bhi
-bhi
-bfN
-byH
-btw
+aHa
+aHa
+aJE
+aKI
+aLH
+aML
+aHa
+aOD
+aPB
+aQB
+aPB
+aPB
+aPB
+aUg
+aVi
+aWi
+aWY
+aYa
+aVi
+aZQ
+baD
+bbs
+aJB
+aJB
+bdj
+bej
+bed
+bfy
+bfy
+biB
+bjT
+bll
+bmC
+bnP
+bpc
+bqn
+brH
+bsF
+bfy
+bfy
+bed
+bwX
+brM
aaa
aaa
aaa
@@ -100990,34 +101398,34 @@ aaa
aaa
aaa
aaa
-bTk
-bTk
-bTk
-bTD
-bTk
-bTD
-bTk
-bTD
-bTD
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
+bRA
+bRA
+bRA
+bRT
+bRA
+bRT
+bRA
+bRT
+bRT
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
aaa
aaa
aaa
@@ -101166,49 +101574,49 @@ aaa
aaa
aaa
aaa
-aIB
-aJV
-aLh
-aMm
-aNn
-aOt
-aIB
-aQl
-aCd
-aCd
-aCd
-aCd
-bXE
-aCd
-aWS
-aXT
-aYJ
-aZL
-aWS
-aCd
-aEw
-aEw
-aCd
-aCd
-aCd
-bfU
-bfN
-bih
-bje
-bhi
-blE
-bmY
-bom
-bpz
-bqM
-bsf
-bts
-bhi
-bje
-bws
-bfN
-byJ
-btw
+aHa
+aIu
+aJF
+aKI
+aLH
+aMM
+aHa
+aOE
+aAC
+aAC
+aAC
+aAC
+bVU
+aAC
+aVi
+aWj
+aWZ
+aYb
+aVi
+aAC
+aCV
+aCV
+aAC
+aAC
+aAC
+bek
+bed
+bgx
+bhu
+bfy
+bjU
+blo
+bmC
+bnP
+bpc
+bqv
+brI
+bfy
+bhu
+buI
+bed
+bwZ
+brM
aaa
aaa
aaa
@@ -101250,28 +101658,28 @@ aaa
aaa
aaa
aaa
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
aaa
aaa
aaa
@@ -101423,49 +101831,49 @@ aaa
aaa
aaa
aaa
-aID
-aJW
-aLi
-aMm
-aNo
-aOu
-aPg
-aQm
-aCd
-bXv
-aDH
-aDH
-aDH
-aCd
-aWT
-aWT
-aYK
-aWT
-aWT
+aHc
+aIv
+aJG
+aKI
+aLI
+aMN
+aNz
+aOF
+aAC
+bVL
+aCg
+aCg
+aCg
+aAC
+aVj
+aVj
+aXa
+aVj
+aVj
aad
aad
aad
-aCd
-bZb
-aCd
-bfV
-bfN
-bhi
-bhi
-bhi
-blF
-bmZ
-bop
-bpD
-bqN
-bsg
-btt
-bhi
-bhi
-bhi
-bfN
-byH
-btw
+aAC
+bXr
+aAC
+bel
+bed
+bfy
+bfy
+bfy
+bjV
+blp
+bmF
+bnT
+bpd
+bqw
+brJ
+bfy
+bfy
+bfy
+bed
+bwX
+brM
aaa
aaa
aaa
@@ -101514,16 +101922,16 @@ aaa
aaa
aaa
aaa
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
-bTk
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
+bRA
aaa
aaa
aaa
@@ -101680,49 +102088,49 @@ aaa
aaa
aaa
aaa
-aID
-aJX
-aLj
-aMm
-aNp
-aOv
-aPh
-aQn
-aCd
-aCd
-aUh
-aCd
-aCd
-aCd
+aHc
+aIw
+aJH
+aKI
+aLJ
+aMO
+aNA
+aOG
+aAC
+aAC
+aSx
+aAC
+aAC
+aAC
aad
-aXU
-aYL
-aWT
+aWk
+aXb
+aVj
aaa
aaa
aaa
aaa
-aCd
-aDH
-aIy
-bfV
-bfN
-bfN
-bfN
-bfN
-bfN
-bfN
-bfN
-bpE
-bqR
-bfN
-bfN
-bfN
-bfN
-bfN
-bfN
-byK
-btw
+aAC
+aCg
+aGX
+bel
+bed
+bed
+bed
+bed
+bed
+bed
+bed
+bnU
+bph
+bed
+bed
+bed
+bed
+bed
+bed
+bxa
+brM
aaa
aaa
aaa
@@ -101937,49 +102345,49 @@ aaa
aaa
aaa
aaa
-aIB
-aJY
-aLk
-aMn
-aNq
-aOw
-aPi
-aQo
-aCd
-aSk
-aDH
-aDH
-aUY
-aCd
+aHa
+aIx
+aJI
+aKJ
+aLK
+aMP
+aNB
+aOH
+aAC
+aQC
+aCg
+aCg
+aTo
+aAC
aad
-aWT
-aYM
-aWT
+aVj
+aXc
+aVj
aaa
aaa
aaa
-aCd
-aCd
-aDH
-aCd
-bfV
-aDH
-bik
-bjf
-bkm
-aJR
-bij
-boq
-bpF
-bqS
-bij
-btu
-buq
-buq
-buq
-bxv
-btv
-btw
+aAC
+aAC
+aCg
+aAC
+bel
+aCg
+bgA
+bhv
+biC
+aIq
+bgz
+bmG
+bnV
+bpi
+bgz
+brK
+bsG
+bsG
+bsG
+bvL
+brL
+brM
aaa
aaa
aaa
@@ -102194,49 +102602,49 @@ aaa
aaa
aaa
aaa
-aIB
-aIB
-aID
-aIB
-aID
-aIB
-aIB
-aIB
-aCd
-aSl
-aDH
-aUi
-aUZ
-aCd
+aHa
+aHa
+aHc
+aHa
+aHc
+aHa
+aHa
+aHa
+aAC
+aQD
+aCg
+aSy
+aTp
+aAC
aaa
aaa
-aYN
+aXd
aaa
aaa
aaa
aaa
-aCd
-aDH
-bYl
-aDH
-bfW
-bhl
-bhl
-bhl
-bhl
-blG
-bna
-bor
-bpG
-bqT
-bsh
-btv
-btw
-btw
-bwt
-bwt
-btw
-btw
+aAC
+aCg
+bWB
+aCg
+bem
+bfB
+bfB
+bfB
+bfB
+bjW
+blq
+bmH
+bnW
+bpj
+bqx
+brL
+brM
+brM
+buJ
+buJ
+brM
+brM
aaa
aaa
aaa
@@ -102459,36 +102867,36 @@ aaa
aad
aad
aad
-aEw
-bXw
-aDH
-aUi
-aVa
-aCd
+aCV
+bVM
+aCg
+aSy
+aTq
+aAC
aaa
aaa
-aYN
+aXd
aaa
aaa
aaa
-aCd
-aCd
-bYl
-aCd
-aCd
-aCd
-aUh
-aCd
-aCd
-aCd
-aHA
-bij
-bos
-bpH
-bos
-bij
-btw
-btw
+aAC
+aAC
+bWB
+aAC
+aAC
+aAC
+aSx
+aAC
+aAC
+aAC
+aFZ
+bgz
+bmI
+bnX
+bmI
+bgz
+brM
+brM
aaa
aaa
aaa
@@ -102716,35 +103124,35 @@ aaa
aaa
aaa
aad
-aCd
-aCd
-aEw
-aEw
-aEw
-aCd
+aAC
+aAC
+aCV
+aCV
+aCV
+aAC
aaa
aaa
-aYN
+aXd
aaa
aaa
aaa
-aEw
-bYO
-bYR
-bZc
-aCd
-bfX
-aDH
-bil
-bjg
-aCd
-aHA
-bij
-bot
-bot
-bot
-bsi
-agv
+aCV
+bXe
+bXh
+bXs
+aAC
+ben
+aCg
+bgB
+bhw
+aAC
+aFZ
+bgz
+bmJ
+bmJ
+bmJ
+bqy
+aeV
aad
aaa
aaa
@@ -102981,27 +103389,27 @@ aaa
aaa
aaa
aaa
-aYN
+aXd
aaa
aaa
aaa
-aEw
-bYP
-bYS
-bZd
-aCd
-bfY
-bhm
-bim
-bjh
-aCd
-blH
-bij
-bou
-bpI
-bot
-bsi
-agv
+aCV
+bXf
+bXi
+bXt
+aAC
+beo
+bfC
+bgC
+bhx
+aAC
+bjX
+bgz
+bmK
+bnY
+bmJ
+bqy
+aeV
aad
aaa
aaa
@@ -103238,28 +103646,28 @@ aaa
aaa
aaa
aaa
-aYN
+aXd
aaa
aaa
aaa
-aCd
-aCd
-aCd
-aEw
-aCd
-bfZ
-bcn
-bin
-bji
-aCd
-aHA
-bij
-bij
-bij
-bij
-bij
-bdx
-bdx
+aAC
+aAC
+aAC
+aCV
+aAC
+bep
+baD
+bgD
+bhy
+aAC
+aFZ
+bgz
+bgz
+bgz
+bgz
+bgz
+bbN
+bbN
aaa
aaa
aaa
@@ -103495,7 +103903,7 @@ aaa
aaa
aaa
aaa
-aYN
+aXd
aaa
aaa
aaa
@@ -103503,18 +103911,18 @@ aaa
aaa
aaa
aaa
-aCd
-aEw
-aEw
-aEw
-aEw
-aCd
-aHB
-aIw
-aIw
-aIw
-bqU
-aCd
+aAC
+aCV
+aCV
+aCV
+aCV
+aAC
+aGa
+aGV
+aGV
+aGV
+bpk
+aAC
aad
aad
aaa
@@ -103752,7 +104160,7 @@ aaa
aaa
aaa
aaa
-aYN
+aXd
aaa
aaa
aaa
@@ -103765,13 +104173,13 @@ aaa
aaa
aaa
aad
-aCd
-aEw
-bnb
-bov
-aEw
-bqV
-aCd
+aAC
+aCV
+blr
+bmL
+aCV
+bpl
+aAC
aad
aaa
aaa
@@ -103807,7 +104215,7 @@ aaa
aaa
aaa
aaa
-bSj
+bQz
aaa
aaa
aaa
@@ -104009,7 +104417,7 @@ aaa
aaa
aaa
aaa
-aYN
+aXd
aaa
aaa
aaa
@@ -104023,11 +104431,11 @@ aaa
aaa
aad
aad
-aEw
-aEw
-aEw
-aEw
-bqW
+aCV
+aCV
+aCV
+aCV
+bpm
aad
aad
aaa
@@ -104266,7 +104674,7 @@ aaa
aaa
aaa
aaa
-aYN
+aXd
aaa
aaa
aaa
@@ -104513,7 +104921,7 @@ aaa
aaa
aaa
aac
-adf
+acl
aac
aac
aac
@@ -104523,7 +104931,7 @@ aaa
aaa
aaa
aaa
-aYO
+aXe
aaa
aaa
aaa
@@ -104780,7 +105188,7 @@ aaa
aaa
aaa
aaa
-aYP
+aXf
aaa
aaa
aaa
@@ -105028,25 +105436,25 @@ aaa
aaa
aac
aaa
-aQp
-aQp
-aQp
-aQp
-aQp
-aQp
-aQp
-aQp
+aOI
+aOI
+aOI
+aOI
+aOI
+aOI
+aOI
+aOI
aaa
-aYP
+aXf
aaa
-aQp
-aQp
-aQp
-aQp
-aQp
-aQp
-aQp
-aQp
+aOI
+aOI
+aOI
+aOI
+aOI
+aOI
+aOI
+aOI
aaa
aac
aaa
@@ -105285,25 +105693,25 @@ aaa
aaa
aac
aad
-aoT
-apI
-apI
-apI
-apI
-apI
-apI
-apI
-aws
-aYP
-ayV
-azV
-azV
-azV
-azV
-azV
-azV
-azV
-aFN
+ant
+aoi
+aoi
+aoi
+aoi
+aoi
+aoi
+aoi
+auS
+aXf
+axu
+ayu
+ayu
+ayu
+ayu
+ayu
+ayu
+ayu
+aEm
aad
aac
aaa
@@ -105542,25 +105950,25 @@ aaa
aaa
aac
aaa
-aQq
-aQq
-aQq
-aQq
-aQq
-aQq
-aQq
-aWU
+aOJ
+aOJ
+aOJ
+aOJ
+aOJ
+aOJ
+aOJ
+aVk
aaa
-aYP
+aXf
aaa
-aQq
-aQq
-aQq
-aQq
-aQq
-aQq
-aQq
-aWU
+aOJ
+aOJ
+aOJ
+aOJ
+aOJ
+aOJ
+aOJ
+aVk
aaa
aac
aaa
@@ -105797,7 +106205,7 @@ aaa
aaa
aaa
aaa
-adf
+acl
aaa
aaa
aaa
@@ -105808,7 +106216,7 @@ aaa
aaa
aaa
aaa
-aYP
+aXf
aaa
aaa
aaa
@@ -105819,7 +106227,7 @@ aaa
aaa
aaa
aaa
-adf
+acl
aaa
aaa
aaa
@@ -106056,25 +106464,25 @@ aaa
aaa
aac
aaa
-aQp
-aQp
-aQp
-aQp
-aQp
-aQp
-aQp
-aQp
+aOI
+aOI
+aOI
+aOI
+aOI
+aOI
+aOI
+aOI
aaa
-aYP
+aXf
aaa
-aQp
-aQp
-aQp
-aQp
-aQp
-aQp
-aQp
-aQp
+aOI
+aOI
+aOI
+aOI
+aOI
+aOI
+aOI
+aOI
aaa
aac
aaa
@@ -106279,7 +106687,7 @@ aaa
aaa
aaa
aaa
-all
+ajL
aaa
aaa
aaa
@@ -106313,25 +106721,25 @@ aaa
aaa
aac
aad
-aoT
-apI
-apI
-apI
-apI
-apI
-apI
-apI
-aws
-aYP
-ayV
-azV
-azV
-azV
-azV
-azV
-azV
-azV
-aFN
+ant
+aoi
+aoi
+aoi
+aoi
+aoi
+aoi
+aoi
+auS
+aXf
+axu
+ayu
+ayu
+ayu
+ayu
+ayu
+ayu
+ayu
+aEm
aad
aac
aaa
@@ -106570,25 +106978,25 @@ aaa
aaa
aac
aaa
-aQq
-aQq
-aQq
-aQq
-aQq
-aQq
-aQq
-aWU
+aOJ
+aOJ
+aOJ
+aOJ
+aOJ
+aOJ
+aOJ
+aVk
aaa
-aYP
+aXf
aaa
-aQq
-aQq
-aQq
-aQq
-aQq
-aQq
-aQq
-aWU
+aOJ
+aOJ
+aOJ
+aOJ
+aOJ
+aOJ
+aOJ
+aVk
aaa
aac
aaa
@@ -106836,7 +107244,7 @@ aaa
aaa
aaa
aaa
-aYP
+aXf
aaa
aaa
aaa
@@ -107084,25 +107492,25 @@ aaa
aaa
aac
aaa
-aQp
-aQp
-aQp
-aQp
-aQp
-aQp
-aQp
-aQp
+aOI
+aOI
+aOI
+aOI
+aOI
+aOI
+aOI
+aOI
aaa
-aYP
+aXf
aaa
-aQp
-aQp
-aQp
-aQp
-aQp
-aQp
-aQp
-aQp
+aOI
+aOI
+aOI
+aOI
+aOI
+aOI
+aOI
+aOI
aaa
aac
aaa
@@ -107341,25 +107749,25 @@ aaa
aaa
aac
aad
-aoT
-apI
-apI
-apI
-apI
-apI
-apI
-apI
-aws
-aYP
-ayV
-azV
-azV
-azV
-azV
-azV
-azV
-azV
-aFN
+ant
+aoi
+aoi
+aoi
+aoi
+aoi
+aoi
+aoi
+auS
+aXf
+axu
+ayu
+ayu
+ayu
+ayu
+ayu
+ayu
+ayu
+aEm
aad
aac
aaa
@@ -107598,27 +108006,27 @@ aaa
aaa
aac
aaa
-aQq
-aQq
-aQq
-aQq
-aQq
-aQq
-aQq
-aWU
+aOJ
+aOJ
+aOJ
+aOJ
+aOJ
+aOJ
+aOJ
+aVk
aaa
-aYP
+aXf
aaa
-aQq
-aQq
-aQq
-aQq
-aQq
-aQq
-aQq
-aWU
+aOJ
+aOJ
+aOJ
+aOJ
+aOJ
+aOJ
+aOJ
+aVk
aaa
-adf
+acl
aaa
aaa
aaa
@@ -107853,7 +108261,7 @@ aaa
aaa
aaa
aaa
-adf
+acl
aaa
aaa
aaa
@@ -107864,7 +108272,7 @@ aaa
aaa
aaa
aaa
-aYP
+aXf
aaa
aaa
aaa
@@ -108112,25 +108520,25 @@ aaa
aaa
aac
aaa
-aQp
-aQp
-aQp
-aQp
-aQp
-aQp
-aQp
-aQp
+aOI
+aOI
+aOI
+aOI
+aOI
+aOI
+aOI
+aOI
aaa
-aYP
+aXf
aaa
-aQp
-aQp
-aQp
-aQp
-aQp
-aQp
-aQp
-aQp
+aOI
+aOI
+aOI
+aOI
+aOI
+aOI
+aOI
+aOI
aaa
aac
aaa
@@ -108369,25 +108777,25 @@ aaa
aaa
aac
aad
-aoT
-apI
-apI
-apI
-apI
-apI
-apI
-apI
-aws
-axI
-ayV
-azV
-azV
-azV
-azV
-azV
-azV
-azV
-aFN
+ant
+aoi
+aoi
+aoi
+aoi
+aoi
+aoi
+aoi
+auS
+awi
+axu
+ayu
+ayu
+ayu
+ayu
+ayu
+ayu
+ayu
+aEm
aad
aac
aaa
@@ -108626,25 +109034,25 @@ aaa
aaa
aac
aaa
-aQq
-aQq
-aQq
-aQq
-aQq
-aQq
-aQq
-aWU
+aOJ
+aOJ
+aOJ
+aOJ
+aOJ
+aOJ
+aOJ
+aVk
aaa
-aYQ
+aXg
aaa
-aQq
-aQq
-aQq
-aQq
-aQq
-aQq
-aQq
-aWU
+aOJ
+aOJ
+aOJ
+aOJ
+aOJ
+aOJ
+aOJ
+aVk
aaa
aac
aaa
@@ -108892,7 +109300,7 @@ aaa
aaa
aaa
aaa
-aYN
+aXd
aaa
aaa
aaa
@@ -109138,7 +109546,7 @@ aaa
aaa
aaa
aaa
-adf
+acl
aac
aac
aac
@@ -109149,7 +109557,7 @@ aac
aac
aac
aaa
-aYN
+aXd
aaa
aac
aac
@@ -109406,7 +109814,7 @@ aaa
aaa
aad
aad
-aYR
+aXh
aad
aad
aaa
diff --git a/_maps/map_files/TgStation/tgstation.2.1.3.dmm b/_maps/map_files/TgStation/tgstation.2.1.3.dmm
index ccd433998c6..0b7576fd614 100644
--- a/_maps/map_files/TgStation/tgstation.2.1.3.dmm
+++ b/_maps/map_files/TgStation/tgstation.2.1.3.dmm
@@ -1,1218 +1,772 @@
-//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
"aaa" = (
/turf/open/space,
/area/space)
"aab" = (
/obj/docking_port/stationary{
dheight = 9;
- dir = 2;
- dwidth = 5;
- height = 24;
- id = "syndicate_n";
- name = "north of station";
- turf_type = /turf/open/space;
- width = 18
+ dir = 2;
+ dwidth = 5;
+ height = 24;
+ id = "syndicate_n";
+ name = "north of station";
+ turf_type = /turf/open/space;
+ width = 18
},
/turf/open/space,
/area/space)
"aac" = (
-/turf/open/space,
-/obj/machinery/porta_turret/syndicate{
- dir = 9
- },
-/turf/closed/wall/mineral/plastitanium{
- dir = 8;
- icon_state = "diagonalWall3"
- },
+/turf/closed/wall/mineral/plastitanium,
/area/shuttle/syndicate)
"aad" = (
-/turf/closed/wall/mineral/plastitanium,
+/turf/closed/wall/shuttle{
+ icon_state = "wall3"
+ },
/area/shuttle/syndicate)
"aae" = (
-/obj/structure/grille,
-/obj/machinery/door/poddoor/shutters{
- id = "syndieshutters";
- name = "blast shutters"
+/obj/effect/landmark{
+ name = "carpspawn"
},
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/shuttle/syndicate)
+/turf/open/space,
+/area/space)
"aaf" = (
+/obj/structure/lattice,
/turf/open/space,
-/obj/machinery/porta_turret/syndicate{
- dir = 5
- },
-/turf/closed/wall/mineral/plastitanium{
- dir = 1;
- icon_state = "diagonalWall3"
- },
-/area/shuttle/syndicate)
+/area/space)
"aag" = (
-/obj/structure/table,
-/obj/machinery/microwave,
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/space)
"aah" = (
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"aai" = (
-/obj/structure/table,
-/obj/item/device/flashlight/lamp{
- pixel_x = 4;
- pixel_y = 1
+/obj/structure/sign/securearea{
+ pixel_y = -32
},
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
+/turf/open/space,
+/area/space)
+"aai" = (
+/turf/closed/wall/r_wall,
+/area/security/prison)
"aaj" = (
-/obj/machinery/computer/shuttle/syndicate,
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/closed/wall/r_wall,
+/area/security/prison)
"aak" = (
-/obj/structure/table,
-/obj/machinery/button/door{
- id = "syndieshutters";
- name = "remote shutter control";
- req_access_txt = "150"
+/obj/structure/grille,
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
},
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/security/prison)
"aal" = (
-/obj/structure/frame/computer,
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
+/obj/structure/grille,
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/security/prison)
"aam" = (
-/obj/structure/table,
-/obj/item/weapon/storage/box/donkpockets{
- pixel_x = 3;
- pixel_y = 3
+/obj/structure/grille,
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
},
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/security/prison)
"aan" = (
-/obj/structure/chair/comfy/beige{
- dir = 1;
- icon_state = "comfychair"
+/obj/machinery/hydroponics/soil,
+/obj/item/seeds/ambrosia,
+/turf/open/floor/plasteel/green/side{
+ dir = 9
},
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
+/area/security/prison)
"aao" = (
-/obj/structure/table,
-/obj/item/stack/sheet/glass{
- amount = 10
+/obj/machinery/airalarm{
+ pixel_y = 23
},
-/obj/item/device/multitool,
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
+/turf/open/floor/plating,
+/area/security/prison)
"aap" = (
-/obj/item/device/radio/intercom{
- desc = "Talk through this. Evilly";
- freerange = 1;
- frequency = 1213;
- name = "Syndicate Intercom";
- pixel_y = -32;
- subspace_transmission = 1;
- syndie = 1
+/obj/machinery/hydroponics/soil,
+/obj/item/seeds/carrot,
+/turf/open/floor/plasteel/green/side{
+ dir = 1
},
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
+/area/security/prison)
"aaq" = (
-/obj/structure/closet/syndicate/personal,
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'HIGH VOLTAGE'";
+ icon_state = "shock";
+ name = "HIGH VOLTAGE";
+ pixel_y = 32
+ },
+/obj/machinery/hydroponics/soil,
+/obj/item/device/plant_analyzer,
+/obj/machinery/camera{
+ c_tag = "Prison Common Room";
+ network = list("SS13","Prison")
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 5
+ },
+/area/security/prison)
"aar" = (
-/turf/open/space,
-/turf/closed/wall/mineral/plastitanium{
- icon_state = "diagonalWall3"
+/obj/machinery/hydroponics/soil,
+/obj/item/seeds/glowshroom,
+/turf/open/floor/plasteel/green/side{
+ dir = 1
},
-/area/shuttle/syndicate)
+/area/security/prison)
"aas" = (
-/obj/machinery/door/window{
- name = "Cockpit";
- req_access_txt = "150"
+/obj/structure/sink{
+ pixel_y = 20
},
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
+/turf/open/floor/plating,
+/area/security/prison)
"aat" = (
-/turf/open/space,
-/turf/closed/wall/mineral/plastitanium{
- dir = 4;
- icon_state = "diagonalWall3"
- },
-/area/shuttle/syndicate)
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
"aau" = (
-/turf/open/space,
-/area/shuttle/syndicate)
+/obj/machinery/biogenerator,
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
"aav" = (
-/obj/structure/table,
-/obj/item/stack/cable_coil,
-/obj/item/weapon/crowbar/red,
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"aaw" = (
-/obj/structure/table,
-/obj/item/weapon/storage/box/zipties{
- pixel_x = 1;
- pixel_y = 2
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"aax" = (
-/obj/structure/chair{
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
+"aaw" = (
+/obj/machinery/light{
+ icon_state = "tube1";
dir = 8
},
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
+/turf/open/floor/plating,
+/area/security/prison)
+"aax" = (
+/mob/living/simple_animal/mouse/brown/Tom,
+/turf/open/floor/plating,
+/area/security/prison)
"aay" = (
-/obj/machinery/porta_turret/syndicate{
- dir = 4
- },
-/turf/closed/wall/mineral/plastitanium,
-/area/shuttle/syndicate)
+/turf/open/floor/plating,
+/area/security/prison)
"aaz" = (
-/obj/machinery/suit_storage_unit/syndicate,
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
+/obj/item/weapon/reagent_containers/glass/bucket,
+/turf/open/floor/plating,
+/area/security/prison)
"aaA" = (
-/obj/structure/closet/syndicate/nuclear,
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
+/obj/machinery/seed_extractor,
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
"aaB" = (
-/obj/docking_port/stationary{
- dheight = 9;
- dir = 2;
- dwidth = 5;
- height = 24;
- id = "syndicate_ne";
- name = "northeast of station";
- turf_type = /turf/open/space;
- width = 18
+/obj/structure/window/reinforced,
+/obj/machinery/hydroponics/soil,
+/obj/item/seeds/potato,
+/turf/open/floor/plasteel/green/side{
+ dir = 10
},
-/turf/open/space,
-/area/space)
+/area/security/prison)
"aaC" = (
-/obj/structure/chair/stool{
- pixel_y = 8
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
+/obj/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/security/prison)
"aaD" = (
-/obj/structure/table,
-/obj/item/device/aicard,
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"aaE" = (
-/obj/machinery/door/poddoor{
- id = "smindicate";
- name = "outer blast door"
- },
-/obj/machinery/button/door{
- id = "smindicate";
- name = "external door control";
- pixel_x = -26;
- pixel_y = 0;
- req_access_txt = "150"
- },
-/obj/docking_port/mobile{
- dheight = 9;
- dir = 2;
- dwidth = 5;
- height = 24;
- id = "syndicate";
- name = "syndicate infiltrator";
- port_angle = 0;
- roundstart_move = "syndicate_away";
- width = 18
+/obj/structure/window/reinforced,
+/obj/machinery/hydroponics/soil,
+/obj/item/seeds/grass,
+/turf/open/floor/plasteel/green/side{
+ dir = 2
},
-/obj/docking_port/stationary{
- dheight = 9;
- dir = 2;
- dwidth = 5;
- height = 24;
- id = "syndicate_nw";
- name = "northwest of station";
- turf_type = /turf/open/space;
- width = 18
+/area/security/prison)
+"aaE" = (
+/obj/structure/window/reinforced,
+/obj/machinery/hydroponics/soil,
+/obj/item/weapon/cultivator,
+/turf/open/floor/plasteel/green/side{
+ dir = 6
},
-/turf/open/floor/plating,
-/area/shuttle/syndicate)
+/area/security/prison)
"aaF" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0
+/obj/structure/window/reinforced,
+/obj/machinery/hydroponics/soil,
+/obj/item/weapon/cultivator,
+/turf/open/floor/plasteel/green/side{
+ dir = 2
},
-/turf/closed/wall/mineral/plastitanium,
-/area/shuttle/syndicate)
+/area/security/prison)
"aaG" = (
-/obj/structure/table,
-/obj/item/weapon/c4{
- pixel_x = 2;
- pixel_y = -5
- },
-/obj/item/weapon/c4{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/weapon/c4{
- pixel_x = 2;
- pixel_y = -3
- },
-/obj/item/weapon/c4{
- pixel_x = -2;
- pixel_y = -1
- },
-/obj/item/weapon/c4{
- pixel_x = 3;
- pixel_y = 3
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
},
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
"aaH" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/shuttle/syndicate)
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
"aaI" = (
-/obj/machinery/door/window{
- name = "Ready Room";
- req_access_txt = "150"
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
+/obj/structure/bookcase,
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
"aaJ" = (
-/obj/effect/landmark{
- name = "carpspawn"
- },
-/turf/open/space,
-/area/space)
+/obj/structure/chair/stool,
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
"aaK" = (
-/obj/machinery/door/window{
- dir = 4;
- name = "EVA Storage";
- req_access_txt = "150"
+/obj/machinery/washing_machine,
+/obj/structure/window/reinforced{
+ dir = 1
},
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
+/turf/open/floor/plasteel/barber,
+/area/security/prison)
"aaL" = (
-/obj/machinery/door/airlock/external{
- req_access_txt = "150"
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/open/floor/plasteel/barber,
+/area/security/prison)
"aaM" = (
-/obj/machinery/door/window{
- base_state = "right";
- dir = 4;
- icon_state = "right";
- name = "EVA Storage";
- req_access_txt = "150"
+/obj/machinery/computer/libraryconsole/bookmanagement{
+ pixel_y = 0
},
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"aaN" = (
-/turf/open/space,
-/turf/closed/wall/mineral/plastitanium{
- dir = 1;
- icon_state = "diagonalWall3"
+/obj/structure/table,
+/obj/machinery/newscaster{
+ pixel_x = -32;
+ pixel_y = 0
},
-/area/shuttle/syndicate)
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
+"aaN" = (
+/obj/structure/table,
+/obj/item/weapon/pen,
+/turf/open/floor/plasteel,
+/area/security/prison)
"aaO" = (
-/obj/item/device/radio/intercom{
- desc = "Talk through this. Evilly";
- freerange = 1;
- frequency = 1213;
- name = "Syndicate Intercom";
- pixel_x = -32;
- subspace_transmission = 1;
- syndie = 1
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
+/obj/structure/table,
+/obj/item/weapon/storage/pill_bottle/dice,
+/turf/open/floor/plasteel,
+/area/security/prison)
"aaP" = (
-/obj/machinery/sleeper/syndie{
- dir = 4
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/syndicate)
+/obj/structure/table,
+/obj/structure/bedsheetbin,
+/turf/open/floor/plasteel/barber,
+/area/security/prison)
"aaQ" = (
-/turf/open/floor/mineral/titanium,
-/area/shuttle/syndicate)
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/barber,
+/area/security/prison)
"aaR" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/syndicate)
+/obj/structure/lattice,
+/obj/structure/sign/securearea{
+ pixel_y = -32
+ },
+/turf/open/space,
+/area/space)
"aaS" = (
-/obj/structure/tank_dispenser/oxygen,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/syndicate)
+/obj/structure/grille,
+/obj/structure/lattice,
+/turf/open/space,
+/area/space)
"aaT" = (
-/obj/structure/table,
-/obj/item/stack/medical/ointment,
-/obj/item/stack/medical/bruise_pack,
-/obj/structure/extinguisher_cabinet{
- pixel_x = -5;
- pixel_y = 30
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/syndicate)
+/obj/structure/lattice,
+/obj/structure/grille,
+/turf/open/space,
+/area/space)
"aaU" = (
-/obj/structure/table,
-/obj/item/weapon/stock_parts/cell/high{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/weapon/stock_parts/cell/high,
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
+/obj/machinery/computer/arcade,
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
"aaV" = (
/obj/structure/table,
-/obj/item/weapon/screwdriver{
- pixel_y = 9
- },
-/obj/item/device/assembly/voice{
- pixel_y = 3
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
},
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
+/obj/item/weapon/pen,
+/turf/open/floor/plasteel,
+/area/security/prison)
"aaW" = (
/obj/structure/table,
-/obj/item/weapon/wrench,
-/obj/item/device/assembly/infra,
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
+/obj/item/toy/cards/deck,
+/turf/open/floor/plasteel,
+/area/security/prison)
"aaX" = (
-/obj/structure/table,
-/obj/item/device/assembly/signaler,
-/obj/item/device/assembly/signaler,
-/obj/item/device/assembly/prox_sensor{
- pixel_x = -8;
- pixel_y = 4
- },
-/obj/item/device/assembly/prox_sensor{
- pixel_x = -8;
- pixel_y = 4
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
+/obj/machinery/washing_machine,
+/obj/structure/window/reinforced,
+/turf/open/floor/plasteel/barber,
+/area/security/prison)
"aaY" = (
-/obj/structure/table,
-/obj/item/weapon/weldingtool/largetank{
- pixel_y = 3
+/obj/structure/window/reinforced,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/item/device/multitool,
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
+/turf/open/floor/plasteel/barber,
+/area/security/prison)
"aaZ" = (
-/obj/structure/bed/roller,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/syndicate)
+/turf/closed/wall/r_wall,
+/area/ai_monitored/security/armory)
"aba" = (
-/obj/structure/sign/bluecross_2,
-/turf/closed/wall/mineral/plastitanium,
-/area/shuttle/syndicate)
+/obj/structure/lattice,
+/obj/structure/grille/broken,
+/turf/open/space,
+/area/space)
"abb" = (
-/obj/structure/table,
-/obj/item/weapon/storage/toolbox/syndicate,
-/obj/item/weapon/crowbar/red,
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"abc" = (
-/obj/machinery/door/window{
- dir = 4;
- name = "Infirmary";
- req_access_txt = "150"
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
},
-/turf/open/floor/mineral/titanium,
-/area/shuttle/syndicate)
+/turf/closed/wall,
+/area/security/transfer)
+"abc" = (
+/turf/closed/wall,
+/area/security/transfer)
"abd" = (
-/obj/machinery/door/window/westright{
- name = "Tool Storage";
- req_access_txt = "150"
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
},
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"abe" = (
-/obj/machinery/door/window{
- base_state = "right";
- dir = 4;
- icon_state = "right";
- name = "Infirmary";
- req_access_txt = "150"
+/turf/closed/wall,
+/area/security/transfer)
+"abe" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
-/turf/open/floor/mineral/titanium,
-/area/shuttle/syndicate)
+/turf/closed/wall,
+/area/security/transfer)
"abf" = (
-/obj/machinery/door/window{
- dir = 8;
- name = "Tool Storage";
- req_access_txt = "150"
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
+/obj/machinery/vending/sustenance,
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
"abg" = (
-/obj/machinery/recharge_station,
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/closed/wall/r_wall,
+/area/security/transfer)
"abh" = (
-/obj/structure/lattice,
-/turf/open/space,
-/area/space)
+/obj/machinery/holopad,
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
"abi" = (
-/obj/machinery/porta_turret/syndicate{
- dir = 5
+/obj/machinery/shower{
+ dir = 8
},
-/turf/closed/wall/mineral/plastitanium,
-/area/shuttle/syndicate)
+/obj/item/weapon/soap/nanotrasen,
+/turf/open/floor/plasteel/freezer,
+/area/security/prison)
"abj" = (
-/obj/structure/window/reinforced{
+/obj/machinery/light/small{
dir = 1
},
-/obj/structure/table,
-/obj/item/bodypart/r_arm/robot,
-/obj/item/bodypart/l_arm/robot,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/syndicate)
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/plasteel/freezer,
+/area/security/prison)
"abk" = (
-/obj/machinery/door/window{
- dir = 1;
- name = "Surgery";
- req_access_txt = "150"
+/obj/machinery/keycard_auth{
+ pixel_x = 24;
+ pixel_y = 10
},
-/turf/open/floor/mineral/titanium,
-/area/shuttle/syndicate)
-"abl" = (
-/obj/structure/window/reinforced{
- dir = 1
+/obj/structure/table/wood,
+/obj/item/device/radio/off,
+/obj/item/device/taperecorder{
+ pixel_y = 0
},
-/turf/open/floor/mineral/titanium,
-/area/shuttle/syndicate)
+/turf/open/floor/carpet,
+/area/security/hos)
+"abl" = (
+/obj/machinery/vending/security,
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/main)
"abm" = (
/obj/structure/table,
-/obj/structure/window/reinforced{
+/obj/item/weapon/storage/box/firingpins,
+/obj/item/weapon/storage/box/firingpins,
+/obj/item/key/security,
+/turf/open/floor/plasteel/vault{
dir = 8
},
-/obj/item/weapon/storage/firstaid/regular{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/weapon/storage/firstaid/brute,
-/obj/item/weapon/storage/firstaid/regular{
- pixel_x = -3;
- pixel_y = -3
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/syndicate)
+/area/ai_monitored/security/armory)
"abn" = (
-/obj/structure/table,
-/obj/item/weapon/storage/firstaid/regular{
- pixel_x = 3;
- pixel_y = 3
+/obj/structure/rack,
+/obj/machinery/firealarm{
+ pixel_y = 24
},
-/obj/item/weapon/storage/firstaid/fire,
-/obj/item/weapon/storage/firstaid/regular{
- pixel_x = -3;
- pixel_y = -3
+/obj/item/weapon/gun/energy/e_gun/dragnet,
+/obj/item/weapon/gun/energy/e_gun/dragnet,
+/turf/open/floor/plasteel/vault{
+ dir = 8
},
-/turf/open/floor/mineral/titanium,
-/area/shuttle/syndicate)
+/area/ai_monitored/security/armory)
"abo" = (
-/obj/structure/table,
-/obj/item/device/sbeacondrop/bomb{
- pixel_y = 5
- },
-/obj/item/device/sbeacondrop/bomb,
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/security/main)
"abp" = (
-/obj/structure/table,
-/obj/item/weapon/grenade/syndieminibomb{
- pixel_x = 4;
- pixel_y = 2
- },
-/obj/item/weapon/grenade/syndieminibomb{
- pixel_x = -1
- },
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
+/turf/closed/wall,
+/area/security/main)
"abq" = (
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/space)
+/turf/closed/wall,
+/area/security/hos)
"abr" = (
-/obj/structure/table,
-/obj/item/weapon/surgicaldrill,
-/obj/item/weapon/circular_saw,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/syndicate)
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/security/hos)
"abs" = (
-/obj/structure/sink{
- dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
- },
-/obj/structure/mirror{
- pixel_x = 30
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
},
-/turf/open/floor/mineral/titanium,
-/area/shuttle/syndicate)
+/obj/machinery/power/tracker,
+/turf/open/floor/plasteel/airless/solarpanel,
+/area/solar/auxport)
"abt" = (
-/obj/machinery/nuclearbomb/syndicate,
-/obj/machinery/door/window{
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- name = "Secure Storage";
- req_access_txt = "150"
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel/black,
+/area/security/transfer)
"abu" = (
-/obj/machinery/telecomms/allinone{
- intercept = 1
+/obj/machinery/door/poddoor{
+ id = "executionspaceblast";
+ name = "blast door"
},
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
+/turf/open/floor/plating,
+/area/security/transfer)
"abv" = (
-/obj/structure/sign/securearea{
- pixel_y = -32
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
-/turf/open/space,
-/area/space)
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plasteel/black,
+/area/security/transfer)
"abw" = (
-/obj/structure/table,
-/obj/item/weapon/cautery,
-/obj/item/weapon/scalpel,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/syndicate)
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/flasher{
+ id = "executionflash";
+ pixel_x = 0;
+ pixel_y = 25
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/security/transfer)
"abx" = (
-/obj/structure/table/optable,
-/obj/item/weapon/surgical_drapes,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/syndicate)
+/obj/machinery/vending/cola/random,
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
"aby" = (
-/obj/structure/table,
-/obj/item/weapon/retractor,
-/obj/item/weapon/hemostat,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/syndicate)
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall/r_wall,
+/area/security/transfer)
"abz" = (
-/obj/structure/shuttle/engine/heater,
-/obj/structure/window/reinforced{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
-/turf/open/floor/plating,
-/area/shuttle/syndicate)
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
"abA" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
-"abB" = (
-/obj/structure/table,
-/obj/item/stack/sheet/metal{
- amount = 50
- },
-/obj/item/stack/sheet/glass{
- amount = 50
+/obj/machinery/light,
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
-/obj/item/stack/rods{
- amount = 50
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
+"abB" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
},
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
"abC" = (
-/obj/structure/rack,
-/obj/item/clothing/suit/space/syndicate/black/red,
-/obj/item/clothing/head/helmet/space/syndicate/black/red,
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/syndicate)
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
"abD" = (
-/turf/closed/wall/r_wall,
+/obj/machinery/light,
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/turf/open/floor/plasteel/floorgrime,
/area/security/prison)
"abE" = (
-/obj/structure/grille,
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/floorgrime,
/area/security/prison)
"abF" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/closed/wall/r_wall,
+/turf/open/floor/plasteel/freezer,
/area/security/prison)
"abG" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+/obj/machinery/door/window/westleft{
+ base_state = "right";
+ dir = 8;
+ icon_state = "right";
+ name = "Unisex Showers";
+ req_access_txt = "0"
},
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
+/turf/open/floor/plasteel/freezer,
/area/security/prison)
"abH" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+/obj/structure/table,
+/obj/item/weapon/storage/box/chemimp{
+ pixel_x = 6
},
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+/obj/item/weapon/storage/box/trackimp{
+ pixel_x = -3
},
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/security/prison)
-"abI" = (
-/obj/structure/shuttle/engine/propulsion{
- icon_state = "propulsion_l"
+/obj/item/weapon/storage/lockbox/loyalty,
+/turf/open/floor/plasteel/vault{
+ dir = 8
},
-/turf/open/floor/plating,
-/area/shuttle/syndicate)
-"abJ" = (
-/obj/structure/shuttle/engine/propulsion,
-/turf/open/floor/plating,
-/area/shuttle/syndicate)
-"abK" = (
-/obj/structure/shuttle/engine/propulsion{
- icon_state = "propulsion_r"
+/area/ai_monitored/security/armory)
+"abI" = (
+/obj/structure/rack,
+/obj/item/clothing/suit/armor/riot{
+ pixel_x = -3;
+ pixel_y = 3
},
-/turf/open/floor/plating,
-/area/shuttle/syndicate)
-"abL" = (
-/obj/machinery/hydroponics/soil,
-/obj/item/seeds/ambrosia,
-/turf/open/floor/plasteel/green/side{
- dir = 9
+/obj/item/clothing/suit/armor/riot,
+/obj/item/clothing/suit/armor/riot{
+ pixel_x = 3;
+ pixel_y = -3
},
-/area/security/prison)
-"abM" = (
-/obj/machinery/hydroponics/soil,
-/obj/item/seeds/carrot,
-/turf/open/floor/plasteel/green/side{
+/obj/machinery/light{
dir = 1
},
-/area/security/prison)
-"abN" = (
-/obj/machinery/airalarm{
- pixel_y = 23
+/obj/item/clothing/head/helmet/riot{
+ pixel_x = -3;
+ pixel_y = 3
},
-/turf/open/floor/plating,
-/area/security/prison)
-"abO" = (
-/obj/machinery/hydroponics/soil,
-/obj/item/seeds/glowshroom,
-/turf/open/floor/plasteel/green/side{
- dir = 1
+/obj/item/clothing/head/helmet/riot,
+/obj/item/clothing/head/helmet/riot{
+ pixel_x = 3;
+ pixel_y = -3
},
-/area/security/prison)
-"abP" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
- pixel_y = 32
+/obj/item/weapon/shield/riot{
+ pixel_x = -3;
+ pixel_y = 3
},
-/obj/machinery/hydroponics/soil,
-/obj/item/device/plant_analyzer,
-/obj/machinery/camera{
- c_tag = "Prison Common Room";
- network = list("SS13","Prison")
+/obj/item/weapon/shield/riot,
+/obj/item/weapon/shield/riot{
+ pixel_x = 3;
+ pixel_y = -3
},
-/turf/open/floor/plasteel/green/side{
- dir = 5
+/turf/open/floor/plasteel/vault{
+ dir = 8
},
-/area/security/prison)
-"abQ" = (
-/turf/open/floor/plasteel/floorgrime,
-/area/security/prison)
-"abR" = (
-/obj/structure/sink{
- pixel_y = 20
+/area/ai_monitored/security/armory)
+"abJ" = (
+/obj/structure/rack,
+/obj/item/clothing/suit/armor/bulletproof{
+ pixel_x = -3;
+ pixel_y = 3
},
-/turf/open/floor/plating,
-/area/security/prison)
-"abS" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/item/clothing/suit/armor/bulletproof{
+ pixel_y = 0
},
-/turf/open/floor/plasteel/floorgrime,
-/area/security/prison)
-"abT" = (
-/obj/machinery/biogenerator,
-/turf/open/floor/plasteel/floorgrime,
-/area/security/prison)
-"abU" = (
-/turf/open/space,
-/obj/machinery/porta_turret/syndicate{
- dir = 6
+/obj/item/clothing/suit/armor/bulletproof{
+ pixel_x = 3;
+ pixel_y = -3
},
-/turf/closed/wall/mineral/plastitanium{
- dir = 4;
- icon_state = "diagonalWall3"
+/obj/item/clothing/head/helmet/alt{
+ layer = 3.00001;
+ pixel_x = -3;
+ pixel_y = 3
},
-/area/shuttle/syndicate)
-"abV" = (
-/turf/open/space,
-/obj/machinery/porta_turret/syndicate{
- dir = 10
+/obj/item/clothing/head/helmet/alt{
+ layer = 3.00001
},
-/turf/closed/wall/mineral/plastitanium{
- icon_state = "diagonalWall3"
+/obj/item/clothing/head/helmet/alt{
+ layer = 3.00001;
+ pixel_x = 3;
+ pixel_y = -3
},
-/area/shuttle/syndicate)
-"abW" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
+/obj/machinery/camera/motion{
+ c_tag = "Armory Motion Sensor";
+ dir = 2;
+ name = "motion-sensitive security camera"
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/ai_monitored/security/armory)
+"abK" = (
+/obj/structure/chair/stool,
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/button/door{
+ id = "permabolt3";
+ name = "Cell Bolt Control";
+ normaldoorcontrol = 1;
+ pixel_x = 0;
+ pixel_y = 25;
+ req_access_txt = "0";
+ specialfunctions = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
-/turf/open/floor/plating,
-/area/security/prison)
-"abX" = (
-/turf/open/floor/plating,
-/area/security/prison)
-"abY" = (
-/mob/living/simple_animal/mouse/brown/Tom,
-/turf/open/floor/plating,
-/area/security/prison)
-"abZ" = (
-/obj/item/weapon/reagent_containers/glass/bucket,
-/turf/open/floor/plating,
-/area/security/prison)
-"aca" = (
-/obj/machinery/seed_extractor,
/turf/open/floor/plasteel/floorgrime,
/area/security/prison)
-"acb" = (
-/obj/structure/window/reinforced,
-/obj/machinery/hydroponics/soil,
-/obj/item/seeds/potato,
-/turf/open/floor/plasteel/green/side{
- dir = 10
+"abL" = (
+/obj/structure/chair/stool,
+/obj/machinery/light/small{
+ dir = 1
},
-/area/security/prison)
-"acc" = (
-/obj/structure/window/reinforced,
-/obj/machinery/hydroponics/soil,
-/obj/item/seeds/grass,
-/turf/open/floor/plasteel/green/side{
- dir = 2
+/obj/machinery/button/door{
+ id = "permabolt2";
+ name = "Cell Bolt Control";
+ normaldoorcontrol = 1;
+ pixel_x = 0;
+ pixel_y = 25;
+ req_access_txt = "0";
+ specialfunctions = 4
},
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/floorgrime,
/area/security/prison)
-"acd" = (
-/obj/structure/window/reinforced,
-/turf/open/floor/plating,
-/area/security/prison)
-"ace" = (
-/obj/structure/window/reinforced,
-/obj/machinery/hydroponics/soil,
-/obj/item/weapon/cultivator,
-/turf/open/floor/plasteel/green/side{
- dir = 2
+"abM" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
},
+/turf/open/floor/plasteel/floorgrime,
/area/security/prison)
-"acf" = (
-/obj/structure/window/reinforced,
-/obj/machinery/hydroponics/soil,
-/obj/item/weapon/cultivator,
-/turf/open/floor/plasteel/green/side{
- dir = 6
- },
-/area/security/prison)
-"acg" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/security/prison)
-"ach" = (
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"aci" = (
-/obj/structure/bookcase,
-/turf/open/floor/plasteel/floorgrime,
-/area/security/prison)
-"acj" = (
-/obj/structure/chair/stool,
-/turf/open/floor/plasteel/floorgrime,
-/area/security/prison)
-"ack" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/open/floor/plasteel/barber,
-/area/security/prison)
-"acl" = (
-/obj/machinery/washing_machine,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/turf/open/floor/plasteel/barber,
-/area/security/prison)
-"acm" = (
-/obj/machinery/computer/libraryconsole/bookmanagement{
- pixel_y = 0
- },
-/obj/structure/table,
-/obj/machinery/newscaster{
- pixel_x = -32;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/security/prison)
-"acn" = (
-/obj/structure/table,
-/obj/item/weapon/storage/pill_bottle/dice,
-/turf/open/floor/plasteel,
-/area/security/prison)
-"aco" = (
-/obj/structure/table,
-/obj/item/weapon/pen,
-/turf/open/floor/plasteel,
-/area/security/prison)
-"acp" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/barber,
-/area/security/prison)
-"acq" = (
-/obj/structure/table,
-/obj/structure/bedsheetbin,
-/turf/open/floor/plasteel/barber,
-/area/security/prison)
-"acr" = (
-/obj/structure/lattice,
-/obj/structure/sign/securearea{
- pixel_y = -32
- },
-/turf/open/space,
-/area/space)
-"acs" = (
-/obj/structure/grille,
-/obj/structure/lattice,
-/turf/open/space,
-/area/space)
-"act" = (
-/obj/machinery/computer/arcade,
-/turf/open/floor/plasteel/floorgrime,
-/area/security/prison)
-"acu" = (
-/obj/structure/chair/stool,
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel/floorgrime,
-/area/security/prison)
-"acv" = (
-/obj/structure/table,
-/obj/item/toy/cards/deck,
-/turf/open/floor/plasteel,
-/area/security/prison)
-"acw" = (
-/obj/structure/table,
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
-/obj/item/weapon/pen,
-/turf/open/floor/plasteel,
-/area/security/prison)
-"acx" = (
-/obj/structure/window/reinforced,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/barber,
-/area/security/prison)
-"acy" = (
-/obj/machinery/washing_machine,
-/obj/structure/window/reinforced,
-/turf/open/floor/plasteel/barber,
-/area/security/prison)
-"acz" = (
-/turf/closed/wall/r_wall,
-/area/ai_monitored/security/armory)
-"acA" = (
-/obj/structure/lattice,
-/obj/structure/grille/broken,
-/turf/open/space,
-/area/space)
-"acB" = (
-/turf/closed/wall,
-/area/security/transfer)
-"acC" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/closed/wall,
-/area/security/transfer)
-"acD" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/security/transfer)
-"acE" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/closed/wall,
-/area/security/transfer)
-"acF" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/closed/wall/r_wall,
-/area/security/transfer)
-"acG" = (
-/obj/machinery/vending/sustenance,
-/turf/open/floor/plasteel/floorgrime,
-/area/security/prison)
-"acH" = (
-/obj/machinery/holopad,
-/turf/open/floor/plasteel/floorgrime,
-/area/security/prison)
-"acI" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/plasteel/freezer,
-/area/security/prison)
-"acJ" = (
-/obj/machinery/shower{
- dir = 8
- },
-/obj/item/weapon/soap/nanotrasen,
-/turf/open/floor/plasteel/freezer,
-/area/security/prison)
-"acK" = (
-/obj/structure/lattice,
-/obj/structure/grille,
-/turf/open/space,
-/area/space)
-"acL" = (
-/obj/structure/grille,
-/turf/open/space,
-/area/space)
-"acM" = (
-/turf/closed/wall/r_wall,
-/area/security/main)
-"acN" = (
-/turf/closed/wall,
-/area/security/main)
-"acO" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/security/main)
-"acP" = (
-/turf/closed/wall,
-/area/security/hos)
-"acQ" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/security/hos)
-"acR" = (
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/machinery/power/tracker,
-/turf/open/floor/plasteel/airless/solarpanel,
-/area/solar/auxport)
-"acS" = (
-/obj/machinery/door/poddoor{
- id = "executionspaceblast";
- name = "blast door"
- },
-/turf/open/floor/plating,
-/area/security/transfer)
-"acT" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plasteel/black,
-/area/security/transfer)
-"acU" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/machinery/flasher{
- id = "executionflash";
- pixel_x = 0;
- pixel_y = 25
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel/black,
-/area/security/transfer)
-"acV" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 5
- },
+"abN" = (
+/obj/structure/closet/secure_closet/lethalshots,
/turf/open/floor/plasteel/black,
-/area/security/transfer)
-"acW" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall/r_wall,
-/area/security/transfer)
-"acX" = (
-/obj/machinery/vending/cola,
-/turf/open/floor/plasteel/floorgrime,
-/area/security/prison)
-"acY" = (
-/obj/machinery/light,
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/security/prison)
-"acZ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/security/prison)
-"ada" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/security/prison)
-"adb" = (
-/obj/machinery/light,
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/security/prison)
-"adc" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/security/prison)
-"add" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/security/prison)
-"ade" = (
-/obj/machinery/door/window/westleft{
- base_state = "right";
- dir = 8;
- icon_state = "right";
- name = "Unisex Showers";
- req_access_txt = "0"
- },
-/turf/open/floor/plasteel/freezer,
-/area/security/prison)
-"adf" = (
-/turf/open/floor/plasteel/freezer,
-/area/security/prison)
-"adg" = (
-/obj/structure/closet/secure_closet/security/sec,
+/area/ai_monitored/security/armory)
+"abO" = (
/turf/open/floor/plasteel/showroomfloor,
/area/security/main)
-"adh" = (
+"abP" = (
+/obj/structure/closet/secure_closet/security/sec,
/turf/open/floor/plasteel/showroomfloor,
/area/security/main)
-"adi" = (
+"abQ" = (
+/obj/structure/rack,
+/obj/machinery/airalarm{
+ pixel_y = 23
+ },
+/obj/item/weapon/gun/energy/ionrifle,
+/obj/item/weapon/gun/energy/temperature/security,
+/obj/item/clothing/suit/armor/laserproof,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/ai_monitored/security/armory)
+"abR" = (
/obj/structure/closet/secure_closet/security/sec,
/obj/machinery/light{
dir = 4;
- icon_state = "tube1"
+ icon_state = "tube1"
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/main)
-"adj" = (
+"abS" = (
+/obj/machinery/computer/secure_data,
+/turf/open/floor/carpet,
+/area/security/hos)
+"abT" = (
/obj/machinery/requests_console{
announcementConsole = 1;
- department = "Head of Security's Desk";
- departmentType = 5;
- name = "Head of Security RC";
- pixel_x = 0;
- pixel_y = 30
+ department = "Head of Security's Desk";
+ departmentType = 5;
+ name = "Head of Security RC";
+ pixel_x = 0;
+ pixel_y = 30
},
/obj/item/device/radio/intercom{
dir = 4;
- name = "Station Intercom (General)";
- pixel_x = -31
+ name = "Station Intercom (General)";
+ pixel_x = -31
},
/obj/structure/table/wood,
/obj/item/weapon/storage/box/seccarts{
pixel_x = 3;
- pixel_y = 2
+ pixel_y = 2
},
/obj/item/weapon/storage/box/deputy,
/turf/open/floor/carpet,
/area/security/hos)
-"adk" = (
-/obj/machinery/computer/secure_data,
+"abU" = (
+/obj/machinery/computer/card/minor/hos,
/turf/open/floor/carpet,
/area/security/hos)
-"adl" = (
+"abV" = (
/obj/machinery/computer/security,
/turf/open/floor/carpet,
/area/security/hos)
-"adm" = (
-/obj/machinery/computer/card/minor/hos,
-/turf/open/floor/carpet,
-/area/security/hos)
-"adn" = (
+"abW" = (
/obj/machinery/airalarm{
pixel_y = 23
},
/obj/structure/reagent_dispensers/peppertank{
pixel_x = 30;
- pixel_y = 0
+ pixel_y = 0
},
/obj/structure/table/wood,
/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka,
@@ -1220,123 +774,180 @@
/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,
/turf/open/floor/carpet,
/area/security/hos)
-"ado" = (
+"abX" = (
/obj/structure/cable{
icon_state = "0-2";
- d2 = 2
+ d2 = 2
},
/obj/machinery/power/tracker,
/turf/open/floor/plasteel/airless/solarpanel,
/area/solar/auxstarboard)
-"adp" = (
+"abY" = (
+/obj/structure/grille,
+/turf/open/space,
+/area/space)
+"abZ" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
/obj/structure/lattice/catwalk,
/turf/open/space,
/area/solar/auxport)
-"adq" = (
+"aca" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel/black,
/area/security/transfer)
-"adr" = (
-/obj/structure/bed,
-/obj/effect/landmark{
- name = "revenantspawn"
- },
-/turf/open/floor/plasteel/black,
-/area/security/transfer)
-"ads" = (
+"acb" = (
/obj/machinery/sparker{
dir = 2;
- id = "executionburn";
- pixel_x = 25
+ id = "executionburn";
+ pixel_x = 25
},
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel/black,
/area/security/transfer)
-"adt" = (
+"acc" = (
+/obj/structure/bed,
+/obj/effect/landmark{
+ name = "revenantspawn"
+ },
+/turf/open/floor/plasteel/black,
+/area/security/transfer)
+"acd" = (
/turf/closed/wall,
/area/security/prison)
-"adu" = (
+"ace" = (
/obj/machinery/door/poddoor/preopen{
id = "permacell3";
- name = "cell blast door"
+ name = "cell blast door"
},
/obj/machinery/door/airlock/glass{
id_tag = "permabolt3";
- name = "Cell 3"
+ name = "Cell 3"
},
/turf/open/floor/plasteel/floorgrime,
/area/security/prison)
-"adv" = (
+"acf" = (
/obj/machinery/door/poddoor/preopen{
id = "permacell2";
- name = "cell blast door"
+ name = "cell blast door"
},
/obj/machinery/door/airlock/glass{
id_tag = "permabolt2";
- name = "Cell 2"
+ name = "Cell 2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/floorgrime,
/area/security/prison)
-"adw" = (
+"acg" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/door/poddoor/preopen{
id = "permacell1";
- name = "cell blast door"
+ name = "cell blast door"
},
/obj/machinery/door/airlock/glass{
id_tag = "permabolt1";
- name = "Cell 1"
+ name = "Cell 1"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/floorgrime,
/area/security/prison)
-"adx" = (
+"ach" = (
/obj/machinery/door/airlock{
name = "Unisex Restroom";
- req_access_txt = "0"
+ req_access_txt = "0"
},
/turf/open/floor/plasteel/freezer,
/area/security/prison)
-"ady" = (
+"aci" = (
+/obj/vehicle/secway,
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/security/armory)
+"acj" = (
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/obj/machinery/suit_storage_unit/hos,
+/turf/open/floor/carpet,
+/area/security/hos)
+"ack" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/security/armory)
+"acl" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/security/armory)
+"acm" = (
+/obj/machinery/power/apc{
+ cell_type = 5000;
+ dir = 4;
+ name = "Armory APC";
+ pixel_x = 24;
+ pixel_y = 0
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ pixel_y = 1;
+ d2 = 2
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/security/armory)
+"acn" = (
+/obj/item/weapon/storage/secure/safe/HoS{
+ pixel_x = 35
+ },
+/obj/structure/closet/secure_closet/hos,
+/turf/open/floor/carpet,
+/area/security/hos)
+"aco" = (
/obj/structure/closet/bombcloset,
/turf/open/floor/plasteel/showroomfloor,
/area/security/main)
-"adz" = (
-/obj/effect/landmark{
- name = "secequipment"
+"acp" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ on = 1
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/main)
-"adA" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- on = 1
+"acq" = (
+/obj/effect/landmark{
+ name = "secequipment"
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/main)
-"adB" = (
+"acr" = (
+/obj/structure/chair/comfy/black,
+/turf/open/floor/carpet,
+/area/security/hos)
+"acs" = (
/obj/machinery/newscaster/security_unit{
pixel_x = -30;
- pixel_y = 0
+ pixel_y = 0
},
/obj/machinery/camera{
c_tag = "Head of Security's Office";
- dir = 4;
- network = list("SS13")
+ dir = 4;
+ network = list("SS13")
},
/obj/machinery/recharger{
pixel_y = 4
@@ -1344,52 +955,44 @@
/obj/structure/table/wood,
/turf/open/floor/carpet,
/area/security/hos)
-"adC" = (
-/obj/structure/chair/comfy/black,
-/turf/open/floor/carpet,
-/area/security/hos)
-"adD" = (
-/turf/open/floor/carpet,
-/area/security/hos)
-"adE" = (
+"act" = (
/obj/machinery/holopad,
/turf/open/floor/carpet,
/area/security/hos)
-"adF" = (
-/obj/machinery/keycard_auth{
- pixel_x = 24;
- pixel_y = 10
- },
-/obj/structure/table/wood,
-/obj/item/device/radio/off,
-/obj/item/device/taperecorder{
- pixel_y = 0
- },
+"acu" = (
/turf/open/floor/carpet,
/area/security/hos)
-"adG" = (
+"acv" = (
+/obj/structure/closet/secure_closet{
+ anchored = 1;
+ name = "Contraband Locker";
+ req_access_txt = "3"
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/security/armory)
+"acw" = (
/obj/structure/sign/securearea{
pixel_y = -32
},
/obj/structure/lattice/catwalk,
/turf/open/space,
/area/space)
-"adH" = (
+"acx" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
/obj/structure/lattice/catwalk,
/turf/open/space,
/area/solar/auxstarboard)
-"adI" = (
+"acy" = (
/obj/structure/lattice,
/obj/item/stack/cable_coil/random,
/turf/open/space,
/area/space)
-"adJ" = (
+"acz" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
on = 1
},
@@ -1398,13 +1001,7 @@
},
/turf/open/floor/plasteel/black,
/area/security/transfer)
-"adK" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 2
- },
-/turf/open/floor/plasteel/black,
-/area/security/transfer)
-"adL" = (
+"acA" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 2
},
@@ -1413,637 +1010,543 @@
},
/turf/open/floor/plasteel/black,
/area/security/transfer)
-"adM" = (
+"acB" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel/black,
+/area/security/transfer)
+"acC" = (
/obj/structure/bed,
/obj/machinery/camera{
c_tag = "Prison Cell 3";
- network = list("SS13","Prison")
+ network = list("SS13","Prison")
},
/obj/item/device/radio/intercom{
desc = "Talk through this. It looks like it has been modified to not broadcast.";
- dir = 2;
- name = "Prison Intercom (General)";
- pixel_x = 0;
- pixel_y = 24;
- prison_radio = 1
+ dir = 2;
+ name = "Prison Intercom (General)";
+ pixel_x = 0;
+ pixel_y = 24;
+ prison_radio = 1
},
/turf/open/floor/plasteel/floorgrime,
/area/security/prison)
-"adN" = (
+"acD" = (
/obj/structure/chair/stool,
/obj/machinery/light/small{
dir = 1
},
/obj/machinery/button/door{
- id = "permabolt3";
- name = "Cell Bolt Control";
- normaldoorcontrol = 1;
- pixel_x = 0;
- pixel_y = 25;
- req_access_txt = "0";
- specialfunctions = 4
+ id = "permabolt1";
+ name = "Cell Bolt Control";
+ normaldoorcontrol = 1;
+ pixel_x = 0;
+ pixel_y = 25;
+ req_access_txt = "0";
+ specialfunctions = 4
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
/turf/open/floor/plasteel/floorgrime,
/area/security/prison)
-"adO" = (
+"acE" = (
/obj/structure/bed,
/obj/machinery/camera{
c_tag = "Prison Cell 2";
- network = list("SS13","Prison")
+ network = list("SS13","Prison")
},
/obj/item/device/radio/intercom{
desc = "Talk through this. It looks like it has been modified to not broadcast.";
- dir = 2;
- name = "Prison Intercom (General)";
- pixel_x = 0;
- pixel_y = 24;
- prison_radio = 1
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/security/prison)
-"adP" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
+ dir = 2;
+ name = "Prison Intercom (General)";
+ pixel_x = 0;
+ pixel_y = 24;
+ prison_radio = 1
},
/turf/open/floor/plasteel/floorgrime,
/area/security/prison)
-"adQ" = (
-/obj/structure/chair/stool,
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/machinery/button/door{
- id = "permabolt2";
- name = "Cell Bolt Control";
- normaldoorcontrol = 1;
- pixel_x = 0;
- pixel_y = 25;
- req_access_txt = "0";
- specialfunctions = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_Toxins = 0
- },
+"acF" = (
+/turf/open/floor/plasteel,
+/area/ai_monitored/security/armory)
+"acG" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/floorgrime,
/area/security/prison)
-"adR" = (
+"acH" = (
/obj/structure/bed,
/obj/machinery/camera{
c_tag = "Prison Cell 1";
- network = list("SS13","Prison")
+ network = list("SS13","Prison")
},
/obj/item/device/radio/intercom{
desc = "Talk through this. It looks like it has been modified to not broadcast.";
- dir = 2;
- name = "Prison Intercom (General)";
- pixel_x = 0;
- pixel_y = 24;
- prison_radio = 1
+ dir = 2;
+ name = "Prison Intercom (General)";
+ pixel_x = 0;
+ pixel_y = 24;
+ prison_radio = 1
},
/turf/open/floor/plasteel/floorgrime,
/area/security/prison)
-"adS" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+"acI" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "executionfireblast";
+ layer = 2.9;
+ name = "blast door"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/floorgrime,
-/area/security/prison)
-"adT" = (
-/obj/structure/chair/stool,
-/obj/machinery/light/small{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/general/hidden,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/window/westright{
+ dir = 1;
+ name = "Transfer Room";
+ req_access_txt = "2"
},
-/obj/machinery/button/door{
- id = "permabolt1";
- name = "Cell Bolt Control";
- normaldoorcontrol = 1;
- pixel_x = 0;
- pixel_y = 25;
- req_access_txt = "0";
- specialfunctions = 4
+/turf/open/floor/plasteel/vault{
+ dir = 8
},
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+/area/security/transfer)
+"acJ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/floorgrime,
/area/security/prison)
-"adU" = (
+"acK" = (
/obj/structure/sink{
icon_state = "sink";
- dir = 8;
- pixel_x = -12;
- pixel_y = 2
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
},
/obj/machinery/light/small{
dir = 4
},
/turf/open/floor/plasteel/freezer,
/area/security/prison)
-"adV" = (
-/obj/structure/table,
-/obj/item/weapon/storage/box/firingpins,
-/obj/item/weapon/storage/box/firingpins,
-/obj/item/key/security,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/ai_monitored/security/armory)
-"adW" = (
-/obj/structure/table,
-/obj/item/weapon/storage/box/chemimp{
- pixel_x = 6
- },
-/obj/item/weapon/storage/box/trackimp{
- pixel_x = -3
- },
-/obj/item/weapon/storage/lockbox/loyalty,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/ai_monitored/security/armory)
-"adX" = (
-/obj/structure/rack,
-/obj/machinery/firealarm{
- pixel_y = 24
- },
-/obj/item/weapon/gun/energy/e_gun/dragnet,
-/obj/item/weapon/gun/energy/e_gun/dragnet,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/ai_monitored/security/armory)
-"adY" = (
-/obj/structure/rack,
-/obj/item/clothing/suit/armor/bulletproof{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/clothing/suit/armor/bulletproof{
- pixel_y = 0
- },
-/obj/item/clothing/suit/armor/bulletproof{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/item/clothing/head/helmet/alt{
- layer = 3.00001;
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/clothing/head/helmet/alt{
- layer = 3.00001
- },
-/obj/item/clothing/head/helmet/alt{
- layer = 3.00001;
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/machinery/camera/motion{
- c_tag = "Armory Motion Sensor";
- dir = 2;
- name = "motion-sensitive security camera"
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
+"acL" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
},
+/turf/open/floor/plasteel,
/area/ai_monitored/security/armory)
-"adZ" = (
+"acM" = (
/obj/structure/rack,
-/obj/item/clothing/suit/armor/riot{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/clothing/suit/armor/riot,
-/obj/item/clothing/suit/armor/riot{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/item/clothing/head/helmet/riot{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/clothing/head/helmet/riot,
-/obj/item/clothing/head/helmet/riot{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/item/weapon/shield/riot{
+/obj/item/weapon/gun/energy/e_gun{
pixel_x = -3;
- pixel_y = 3
+ pixel_y = 3
},
-/obj/item/weapon/shield/riot,
-/obj/item/weapon/shield/riot{
+/obj/item/weapon/gun/energy/e_gun,
+/obj/item/weapon/gun/energy/e_gun{
pixel_x = 3;
- pixel_y = -3
+ pixel_y = -3
},
-/turf/open/floor/plasteel/vault{
- dir = 8
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ on = 1
},
-/area/ai_monitored/security/armory)
-"aea" = (
-/obj/structure/rack,
-/obj/machinery/airalarm{
- pixel_y = 23
+/obj/effect/turf_decal/bot{
+ dir = 2
},
-/obj/item/weapon/gun/energy/ionrifle,
-/obj/item/weapon/gun/energy/temperature/security,
-/obj/item/clothing/suit/armor/laserproof,
-/turf/open/floor/plasteel/vault{
- dir = 8
+/turf/open/floor/plasteel{
+ dir = 2
},
/area/ai_monitored/security/armory)
-"aeb" = (
-/obj/structure/closet/secure_closet/lethalshots,
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/security/armory)
-"aec" = (
-/obj/vehicle/secway,
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/security/armory)
-"aed" = (
+"acN" = (
+/obj/structure/chair/stool/bar,
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"acO" = (
/obj/structure/closet/l3closet/security,
/obj/machinery/camera{
c_tag = "Brig Equipment Room";
- dir = 4
+ dir = 4
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/main)
-"aee" = (
+"acP" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/showroomfloor,
/area/security/main)
-"aef" = (
+"acQ" = (
+/obj/structure/table/wood,
+/obj/item/weapon/folder/red,
+/obj/item/weapon/stamp/hos,
+/turf/open/floor/carpet,
+/area/security/hos)
+"acR" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp/green{
on = 0;
- pixel_x = -3;
- pixel_y = 8
+ pixel_x = -3;
+ pixel_y = 8
},
/obj/item/weapon/paper_bin{
pixel_x = -3;
- pixel_y = 7
+ pixel_y = 7
},
/turf/open/floor/carpet,
/area/security/hos)
-"aeg" = (
-/obj/structure/table/wood,
-/obj/item/weapon/folder/red,
-/obj/item/weapon/stamp/hos,
-/turf/open/floor/carpet,
-/area/security/hos)
-"aeh" = (
+"acS" = (
/obj/item/weapon/book/manual/wiki/security_space_law,
/obj/structure/table/wood,
/turf/open/floor/carpet,
/area/security/hos)
-"aei" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+"acT" = (
+/obj/machinery/door/window/eastleft{
+ name = "armoury desk";
+ req_access_txt = "1"
},
-/obj/machinery/suit_storage_unit/hos,
-/turf/open/floor/carpet,
-/area/security/hos)
-"aej" = (
+/obj/machinery/door/window/westleft{
+ name = "armoury desk";
+ req_access_txt = "3"
+ },
+/obj/structure/table/reinforced,
+/turf/open/floor/plasteel,
+/area/ai_monitored/security/armory)
+"acU" = (
/obj/machinery/door/airlock/external{
name = "Security External Airlock";
- req_access_txt = "63"
+ req_access_txt = "63"
},
/turf/open/floor/plating,
/area/security/main)
-"aek" = (
+"acV" = (
/obj/structure/cable{
icon_state = "0-2";
- d2 = 2
+ d2 = 2
},
/obj/machinery/power/solar{
id = "auxsolareast";
- name = "Port Auxiliary Solar Array"
+ name = "Port Auxiliary Solar Array"
},
/turf/open/floor/plasteel/airless/solarpanel,
/area/solar/auxport)
-"ael" = (
+"acW" = (
/obj/structure/cable,
/obj/structure/lattice/catwalk,
/turf/open/space,
/area/solar/auxport)
-"aem" = (
+"acX" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/poddoor/preopen{
id = "executionfireblast";
- layer = 2.9;
- name = "blast door"
+ layer = 2.9;
+ name = "blast door"
},
/obj/machinery/door/firedoor,
/turf/open/floor/plating,
/area/security/transfer)
-"aen" = (
+"acY" = (
+/obj/structure/table,
+/obj/item/weapon/paper,
+/obj/item/weapon/pen,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
+"acZ" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/poddoor/preopen{
id = "executionfireblast";
- layer = 2.9;
- name = "blast door"
+ layer = 2.9;
+ name = "blast door"
},
/obj/machinery/door/firedoor,
/turf/open/floor/plating,
/area/security/transfer)
-"aeo" = (
-/obj/machinery/door/poddoor/preopen{
- id = "executionfireblast";
- layer = 2.9;
- name = "blast door"
- },
-/obj/machinery/atmospherics/pipe/simple/general/hidden,
-/obj/machinery/door/firedoor,
-/obj/machinery/door/window/westright{
- dir = 1;
- name = "Transfer Room";
- req_access_txt = "2"
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/security/transfer)
-"aep" = (
+"ada" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
on = 1
},
/obj/machinery/flasher{
id = "PCell 3";
- pixel_x = -28
+ pixel_x = -28
},
/turf/open/floor/plasteel/floorgrime,
/area/security/prison)
-"aeq" = (
+"adb" = (
/obj/structure/table,
/obj/item/weapon/paper,
/obj/item/weapon/pen,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/floorgrime,
/area/security/prison)
-"aer" = (
+"adc" = (
+/obj/machinery/flasher{
+ id = "PCell 1";
+ pixel_x = -28
+ },
/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
on = 1
},
-/obj/machinery/flasher{
- id = "PCell 2";
- pixel_x = -28
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/security/prison)
-"aes" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/floorgrime,
-/area/security/prison)
-"aet" = (
-/obj/structure/table,
-/obj/item/weapon/paper,
-/obj/item/weapon/pen,
/turf/open/floor/plasteel/floorgrime,
/area/security/prison)
-"aeu" = (
-/obj/machinery/flasher{
- id = "PCell 1";
- pixel_x = -28
- },
+"add" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
+ on = 1
+ },
+/obj/machinery/flasher{
+ id = "PCell 2";
+ pixel_x = -28
},
/turf/open/floor/plasteel/floorgrime,
/area/security/prison)
-"aev" = (
+"ade" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/floorgrime,
/area/security/prison)
-"aew" = (
+"adf" = (
/obj/structure/toilet{
dir = 1
},
/turf/open/floor/plasteel/freezer,
/area/security/prison)
-"aex" = (
-/obj/item/weapon/grenade/barrier{
- pixel_x = 4
- },
-/obj/item/weapon/grenade/barrier,
-/obj/item/weapon/grenade/barrier{
- pixel_x = -4
+"adg" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/table,
+/turf/open/floor/plasteel,
+/area/ai_monitored/security/armory)
+"adh" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk,
+/turf/open/floor/carpet,
+/area/security/hos)
+"adi" = (
+/obj/machinery/flasher/portable,
/turf/open/floor/plasteel/vault{
dir = 8
},
/area/ai_monitored/security/armory)
-"aey" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 9
+"adj" = (
+/obj/structure/rack,
+/obj/item/weapon/gun/energy/e_gun/advtaser{
+ pixel_x = -3;
+ pixel_y = 3
},
-/turf/open/floor/plasteel,
-/area/ai_monitored/security/armory)
-"aez" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
+/obj/item/weapon/gun/energy/e_gun/advtaser,
+/obj/item/weapon/gun/energy/e_gun/advtaser{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/effect/turf_decal/bot{
+ dir = 2
+ },
+/turf/open/floor/plasteel{
+ dir = 2
},
-/turf/open/floor/plasteel,
/area/ai_monitored/security/armory)
-"aeA" = (
-/obj/machinery/power/apc{
- cell_type = 5000;
- dir = 4;
- name = "Armory APC";
- pixel_x = 24;
- pixel_y = 0
+"adk" = (
+/obj/structure/rack,
+/obj/item/weapon/gun/ballistic/shotgun/riot{
+ pixel_x = -3;
+ pixel_y = 3
},
-/obj/structure/cable{
- icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+/obj/item/weapon/gun/ballistic/shotgun/riot,
+/obj/item/weapon/gun/ballistic/shotgun/riot{
+ pixel_x = 3;
+ pixel_y = -3
},
-/obj/effect/turf_decal/stripes/line{
- dir = 1
+/obj/effect/turf_decal/bot{
+ dir = 2
+ },
+/turf/open/floor/plasteel{
+ dir = 2
},
-/turf/open/floor/plasteel,
/area/ai_monitored/security/armory)
-"aeB" = (
-/obj/machinery/vending/security,
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/main)
-"aeC" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- on = 1
+"adl" = (
+/obj/machinery/door/poddoor/shutters{
+ id = "armory";
+ name = "Armoury Shutter"
},
-/turf/open/floor/carpet,
+/obj/machinery/button/door{
+ id = "armory";
+ name = "Armory Shutters";
+ pixel_x = 0;
+ pixel_y = -26;
+ req_access_txt = "3"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/ai_monitored/security/armory)
+"adm" = (
+/obj/structure/grille,
+/obj/structure/disposalpipe/segment,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
/area/security/hos)
-"aeD" = (
+"adn" = (
/obj/structure/chair{
dir = 1
},
/turf/open/floor/carpet,
/area/security/hos)
-"aeE" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+"ado" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ on = 1
},
/turf/open/floor/carpet,
/area/security/hos)
-"aeF" = (
-/obj/item/weapon/storage/secure/safe/HoS{
- pixel_x = 35
+"adp" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
-/obj/structure/closet/secure_closet/hos,
/turf/open/floor/carpet,
/area/security/hos)
-"aeG" = (
+"adq" = (
+/obj/structure/table/wood,
+/obj/item/device/instrument/guitar{
+ pixel_x = -7
+ },
+/obj/item/device/instrument/eguitar{
+ pixel_x = 5
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"adr" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = -32;
- pixel_y = 0
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = -32;
+ pixel_y = 0
},
/turf/open/floor/plating,
/area/security/main)
-"aeH" = (
+"ads" = (
/obj/structure/cable{
icon_state = "0-2";
- d2 = 2
+ d2 = 2
},
/obj/machinery/power/solar{
id = "auxsolareast";
- name = "Port Auxiliary Solar Array"
+ name = "Port Auxiliary Solar Array"
},
/turf/open/floor/plasteel/airless/solarpanel,
/area/solar/auxstarboard)
-"aeI" = (
+"adt" = (
/obj/structure/cable,
/obj/structure/lattice/catwalk,
/turf/open/space,
/area/solar/auxstarboard)
-"aeJ" = (
+"adu" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 4;
+ icon_state = "1-4"
},
/obj/structure/cable{
d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d2 = 4;
+ icon_state = "2-4"
},
/obj/structure/lattice/catwalk,
/turf/open/space,
/area/solar/auxport)
-"aeK" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
+"adv" = (
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 4;
+ icon_state = "1-4"
},
/obj/structure/cable{
d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d2 = 4;
+ icon_state = "2-4"
},
/obj/structure/lattice/catwalk,
/turf/open/space,
/area/solar/auxport)
-"aeL" = (
+"adw" = (
/obj/structure/cable{
d2 = 8;
- icon_state = "0-8"
+ icon_state = "0-8"
},
/obj/structure/lattice/catwalk,
/turf/open/space,
/area/solar/auxport)
-"aeM" = (
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/auxport)
-"aeN" = (
+"adx" = (
/obj/structure/cable{
icon_state = "0-4";
- d2 = 4
+ d2 = 4
},
/obj/structure/lattice/catwalk,
/turf/open/space,
/area/solar/auxport)
-"aeO" = (
+"ady" = (
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/solar/auxport)
+"adz" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
/obj/structure/cable{
d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d2 = 8;
+ icon_state = "2-8"
},
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 8;
+ icon_state = "1-8"
},
/obj/structure/lattice/catwalk,
/turf/open/space,
/area/solar/auxport)
-"aeP" = (
+"adA" = (
/obj/structure/cable{
d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d2 = 8;
+ icon_state = "2-8"
},
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 8;
+ icon_state = "1-8"
},
/obj/structure/lattice/catwalk,
/turf/open/space,
/area/solar/auxport)
-"aeQ" = (
+"adB" = (
/obj/structure/sign/securearea{
pixel_x = 32;
- pixel_y = 0
+ pixel_y = 0
},
/turf/open/space,
/area/space)
-"aeR" = (
+"adC" = (
/obj/structure/table,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/item/weapon/scalpel{
@@ -2056,328 +1559,230 @@
/obj/item/weapon/razor,
/turf/open/floor/plasteel/black,
/area/security/transfer)
-"aeS" = (
+"adD" = (
+/obj/machinery/button/flasher{
+ id = "executionflash";
+ pixel_x = 24;
+ pixel_y = 5
+ },
+/obj/machinery/button/door{
+ id = "executionspaceblast";
+ name = "Vent to Space";
+ pixel_x = 25;
+ pixel_y = -5;
+ req_access_txt = "7"
+ },
+/obj/machinery/atmospherics/pipe/simple/general/hidden,
+/turf/open/floor/plasteel/black,
+/area/security/transfer)
+"adE" = (
/obj/structure/table,
/obj/item/weapon/folder/red{
pixel_x = 3
},
/obj/item/device/taperecorder{
pixel_x = -3;
- pixel_y = 0
+ pixel_y = 0
},
/obj/item/device/assembly/flash/handheld,
/obj/item/weapon/reagent_containers/spray/pepper,
/turf/open/floor/plasteel/black,
/area/security/transfer)
-"aeT" = (
-/obj/machinery/button/flasher{
- id = "executionflash";
- pixel_x = 24;
- pixel_y = 5
- },
-/obj/machinery/button/door{
- id = "executionspaceblast";
- name = "Vent to Space";
- pixel_x = 25;
- pixel_y = -5;
- req_access_txt = "7"
- },
-/obj/machinery/atmospherics/pipe/simple/general/hidden,
-/turf/open/floor/plasteel/black,
-/area/security/transfer)
-"aeU" = (
+"adF" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall,
/area/security/prison)
-"aeV" = (
+"adG" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/security/prison)
+"adH" = (
/obj/machinery/door/airlock/glass_security{
name = "Long-Term Cell 3";
- req_access_txt = "2"
+ req_access_txt = "2"
},
/turf/open/floor/plasteel/floorgrime,
/area/security/prison)
-"aeW" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/security/prison)
-"aeX" = (
+"adI" = (
/obj/machinery/door/airlock/glass_security{
name = "Long-Term Cell 2";
- req_access_txt = "2"
+ req_access_txt = "2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/floorgrime,
/area/security/prison)
-"aeY" = (
+"adJ" = (
/obj/machinery/door/airlock/glass_security{
name = "Long-Term Cell 1";
- req_access_txt = "2"
+ req_access_txt = "2"
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/floorgrime,
/area/security/prison)
-"aeZ" = (
-/obj/structure/closet/secure_closet{
- anchored = 1;
- name = "Contraband Locker";
- req_access_txt = "3"
+"adK" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ on = 1
},
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/security/armory)
-"afa" = (
-/obj/item/weapon/storage/toolbox/drone,
/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/security/armory)
-"afb" = (
-/obj/structure/rack,
-/obj/item/weapon/gun/ballistic/shotgun/riot{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/weapon/gun/ballistic/shotgun/riot,
-/obj/item/weapon/gun/ballistic/shotgun/riot{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/effect/turf_decal/bot{
- dir = 2
- },
-/turf/open/floor/plasteel{
- dir = 2
- },
-/area/ai_monitored/security/armory)
-"afc" = (
-/obj/structure/rack,
-/obj/item/weapon/gun/energy/e_gun{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/weapon/gun/energy/e_gun,
-/obj/item/weapon/gun/energy/e_gun{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- on = 1
- },
-/obj/effect/turf_decal/bot{
- dir = 2
- },
-/turf/open/floor/plasteel{
- dir = 2
- },
-/area/ai_monitored/security/armory)
-"afd" = (
-/obj/structure/rack,
-/obj/item/weapon/gun/energy/laser{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/weapon/gun/energy/laser,
-/obj/item/weapon/gun/energy/laser{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/effect/turf_decal/bot{
- dir = 2
- },
-/turf/open/floor/plasteel{
- dir = 2
- },
-/area/ai_monitored/security/armory)
-"afe" = (
-/obj/structure/rack,
-/obj/item/weapon/gun/energy/e_gun/advtaser{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/weapon/gun/energy/e_gun/advtaser,
-/obj/item/weapon/gun/energy/e_gun/advtaser{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/effect/turf_decal/bot{
- dir = 2
- },
-/turf/open/floor/plasteel{
dir = 2
},
-/area/ai_monitored/security/armory)
-"aff" = (
-/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel,
/area/ai_monitored/security/armory)
-"afg" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/chair/office/dark{
- dir = 4
+"adL" = (
+/obj/structure/closet{
+ name = "Evidence Closet"
},
-/turf/open/floor/plasteel,
-/area/ai_monitored/security/armory)
-"afh" = (
-/obj/machinery/door/window/eastleft{
- name = "armoury desk";
- req_access_txt = "1"
+/turf/open/floor/plasteel/red/side{
+ dir = 5
},
-/obj/machinery/door/window/westleft{
- name = "armoury desk";
- req_access_txt = "3"
+/area/security/brig)
+"adM" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/structure/table/reinforced,
-/turf/open/floor/plasteel,
-/area/ai_monitored/security/armory)
-"afi" = (
+/turf/open/floor/carpet,
+/area/security/hos)
+"adN" = (
/obj/machinery/power/apc{
dir = 8;
- name = "Head of Security's Office APC";
- pixel_x = -24;
- pixel_y = 0
+ name = "Head of Security's Office APC";
+ pixel_x = -24;
+ pixel_y = 0
},
/obj/structure/cable{
icon_state = "0-4";
- d2 = 4
+ d2 = 4
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/carpet,
/area/security/hos)
-"afj" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/carpet,
-/area/security/hos)
-"afk" = (
+"adO" = (
+/obj/structure/chair/stool,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/floorgrime,
+/area/security/prison)
+"adP" = (
/obj/structure/cable{
d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d2 = 8;
+ icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/carpet,
/area/security/hos)
-"afl" = (
-/obj/machinery/light_switch{
- pixel_y = -23
+"adQ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
},
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/carpet,
-/area/security/hos)
-"afm" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk,
-/turf/open/floor/carpet,
-/area/security/hos)
-"afn" = (
+/turf/open/floor/plasteel,
+/area/ai_monitored/security/armory)
+"adR" = (
+/turf/closed/wall/r_wall,
+/area/security/main)
+"adS" = (
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 4;
+ icon_state = "1-4"
},
/obj/structure/cable{
d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d2 = 4;
+ icon_state = "2-4"
},
/obj/structure/lattice/catwalk,
/turf/open/space,
/area/solar/auxstarboard)
-"afo" = (
+"adT" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 4;
+ icon_state = "1-4"
},
/obj/structure/cable{
d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/auxstarboard)
-"afp" = (
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+ d2 = 4;
+ icon_state = "2-4"
},
/obj/structure/lattice/catwalk,
/turf/open/space,
/area/solar/auxstarboard)
-"afq" = (
+"adU" = (
/obj/structure/lattice/catwalk,
/turf/open/space,
/area/solar/auxstarboard)
-"afr" = (
+"adV" = (
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 8;
+ icon_state = "0-8"
},
/obj/structure/lattice/catwalk,
/turf/open/space,
/area/solar/auxstarboard)
-"afs" = (
+"adW" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 8;
+ icon_state = "1-8"
},
/obj/structure/cable{
d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d2 = 8;
+ icon_state = "2-8"
},
/obj/structure/lattice/catwalk,
/turf/open/space,
/area/solar/auxstarboard)
-"aft" = (
+"adX" = (
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/solar/auxstarboard)
+"adY" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 8;
+ icon_state = "1-8"
},
/obj/structure/cable{
d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d2 = 8;
+ icon_state = "2-8"
},
/obj/structure/lattice/catwalk,
/turf/open/space,
/area/solar/auxstarboard)
-"afu" = (
+"adZ" = (
/obj/structure/cable,
/obj/machinery/power/solar{
id = "auxsolareast";
- name = "Port Auxiliary Solar Array"
+ name = "Port Auxiliary Solar Array"
},
/turf/open/floor/plasteel/airless/solarpanel,
/area/solar/auxport)
-"afv" = (
+"aea" = (
/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
/obj/machinery/atmospherics/components/unary/portables_connector/visible,
/obj/effect/turf_decal/stripes/line{
@@ -2385,7 +1790,13 @@
},
/turf/open/floor/plating,
/area/security/transfer)
-"afw" = (
+"aeb" = (
+/obj/structure/table,
+/obj/item/device/flashlight/lamp,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/black,
+/area/security/transfer)
+"aec" = (
/obj/structure/window/reinforced{
dir = 4
},
@@ -2396,45 +1807,35 @@
},
/turf/open/floor/plating,
/area/security/transfer)
-"afx" = (
-/obj/structure/table,
-/obj/item/device/flashlight/lamp,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/black,
-/area/security/transfer)
-"afy" = (
-/obj/structure/chair{
- dir = 1
- },
-/turf/open/floor/plasteel/black,
-/area/security/transfer)
-"afz" = (
+"aed" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
/obj/machinery/button/ignition{
id = "executionburn";
- pixel_x = 24;
- pixel_y = 5
+ pixel_x = 24;
+ pixel_y = 5
},
/obj/machinery/button/door{
id = "executionfireblast";
- name = "Transfer Area Lockdown";
- pixel_x = 25;
- pixel_y = -5;
- req_access_txt = "2"
+ name = "Transfer Area Lockdown";
+ pixel_x = 25;
+ pixel_y = -5;
+ req_access_txt = "2"
},
/obj/machinery/atmospherics/pipe/simple/general/hidden,
/turf/open/floor/plasteel/black,
/area/security/transfer)
-"afA" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/closed/wall/r_wall,
+"aee" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
/area/security/transfer)
-"afB" = (
+"aef" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -2443,40 +1844,53 @@
dir = 8
},
/area/security/prison)
-"afC" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/security/prison)
-"afD" = (
+"aeg" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/turf/closed/wall/r_wall,
+/area/security/transfer)
+"aeh" = (
/obj/machinery/button/door{
id = "permacell3";
- name = "Cell 3 Lockdown";
- pixel_x = -4;
- pixel_y = 25;
- req_access_txt = "2"
+ name = "Cell 3 Lockdown";
+ pixel_x = -4;
+ pixel_y = 25;
+ req_access_txt = "2"
},
/obj/machinery/button/flasher{
id = "PCell 3";
- pixel_x = 6;
- pixel_y = 24
+ pixel_x = 6;
+ pixel_y = 24
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/red/corner{
dir = 4
},
/area/security/prison)
-"afE" = (
+"aei" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/security/prison)
+"aej" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/red/corner{
+ dir = 1
+ },
+/area/security/prison)
+"aek" = (
/obj/machinery/light{
dir = 1
},
/obj/machinery/computer/security/telescreen{
desc = "Used for watching Prison Wing holding areas.";
- name = "Prison Monitor";
- network = list("Prison");
- pixel_x = 0;
- pixel_y = 30
+ name = "Prison Monitor";
+ network = list("Prison");
+ pixel_x = 0;
+ pixel_y = 30
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -2488,31 +1902,18 @@
dir = 1
},
/area/security/prison)
-"afF" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/red/corner{
- dir = 1
- },
-/area/security/prison)
-"afG" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/security/prison)
-"afH" = (
+"ael" = (
/obj/machinery/button/door{
id = "permacell2";
- name = "Cell 2 Lockdown";
- pixel_x = -4;
- pixel_y = 25;
- req_access_txt = "2"
+ name = "Cell 2 Lockdown";
+ pixel_x = -4;
+ pixel_y = 25;
+ req_access_txt = "2"
},
/obj/machinery/button/flasher{
id = "PCell 2";
- pixel_x = 6;
- pixel_y = 24
+ pixel_x = 6;
+ pixel_y = 24
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -2521,26 +1922,30 @@
dir = 4
},
/area/security/prison)
-"afI" = (
+"aem" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/security/prison)
+"aen" = (
/obj/machinery/computer/security/telescreen{
desc = "Used for watching Prison Wing holding areas.";
- name = "Prison Monitor";
- network = list("Prison");
- pixel_x = 0;
- pixel_y = 30
+ name = "Prison Monitor";
+ network = list("Prison");
+ pixel_x = 0;
+ pixel_y = 30
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/obj/machinery/camera{
c_tag = "Prison Hallway";
- network = list("SS13","Prison")
+ network = list("SS13","Prison")
},
/turf/open/floor/plasteel/red/side{
dir = 1
},
/area/security/prison)
-"afJ" = (
+"aeo" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -2548,11 +1953,11 @@
dir = 1
},
/area/security/prison)
-"afK" = (
+"aep" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -2560,182 +1965,116 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/security/prison)
-"afL" = (
+"aeq" = (
/obj/machinery/button/door{
id = "permacell1";
- name = "Cell 1 Lockdown";
- pixel_x = -4;
- pixel_y = 25;
- req_access_txt = "2"
+ name = "Cell 1 Lockdown";
+ pixel_x = -4;
+ pixel_y = 25;
+ req_access_txt = "2"
},
/obj/machinery/button/flasher{
id = "PCell 1";
- pixel_x = 6;
- pixel_y = 24
+ pixel_x = 6;
+ pixel_y = 24
},
/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
/turf/open/floor/plasteel/red/corner{
dir = 4
},
/area/security/prison)
-"afM" = (
-/obj/machinery/airalarm{
- pixel_y = 23
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/red/side{
- dir = 1
- },
-/area/security/prison)
-"afN" = (
+"aer" = (
/obj/machinery/firealarm{
dir = 2;
- pixel_y = 24
+ pixel_y = 24
},
/obj/machinery/power/apc{
dir = 4;
- name = "Prison Wing APC";
- pixel_x = 24;
- pixel_y = 0
+ name = "Prison Wing APC";
+ pixel_x = 24;
+ pixel_y = 0
},
/obj/structure/cable{
d2 = 8;
- icon_state = "0-8"
+ icon_state = "0-8"
},
/turf/open/floor/plasteel/red/side{
dir = 5
},
/area/security/prison)
-"afO" = (
-/obj/machinery/flasher/portable,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/ai_monitored/security/armory)
-"afP" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/security/armory)
-"afQ" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- on = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/security/armory)
-"afR" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 2
+"aes" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/open/floor/plasteel,
+/obj/machinery/suit_storage_unit/security,
+/turf/open/floor/plasteel/red/side,
/area/ai_monitored/security/armory)
-"afS" = (
+"aet" = (
/obj/effect/turf_decal/stripes/corner{
dir = 1
},
/turf/open/floor/plasteel,
/area/ai_monitored/security/armory)
-"afT" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/security/armory)
-"afU" = (
-/turf/open/floor/plasteel,
-/area/ai_monitored/security/armory)
-"afV" = (
+"aeu" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/security/armory)
-"afW" = (
-/obj/machinery/door/poddoor/shutters{
- id = "armory";
- name = "Armoury Shutter"
- },
-/obj/machinery/button/door{
- id = "armory";
- name = "Armory Shutters";
- pixel_x = 0;
- pixel_y = -26;
- req_access_txt = "3"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel{
- name = "floor"
+ d2 = 8;
+ icon_state = "1-8"
},
+/obj/machinery/suit_storage_unit/security,
+/turf/open/floor/plasteel/red/side,
/area/ai_monitored/security/armory)
-"afX" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/main)
-"afY" = (
+"aev" = (
/obj/machinery/light{
dir = 4;
- icon_state = "tube1"
+ icon_state = "tube1"
},
/obj/structure/reagent_dispensers/peppertank{
pixel_x = 30;
- pixel_y = 0
+ pixel_y = 0
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/showroomfloor,
/area/security/main)
-"afZ" = (
+"aew" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/main)
+"aex" = (
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/security/hos)
-"aga" = (
+"aey" = (
/obj/machinery/door/airlock/glass_command{
name = "Head of Security";
- req_access_txt = "58"
+ req_access_txt = "58"
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/carpet,
/area/security/hos)
-"agb" = (
-/obj/structure/grille,
-/obj/structure/disposalpipe/segment,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/security/hos)
-"agc" = (
-/obj/structure/table,
-/obj/item/stack/packageWrap,
-/obj/item/weapon/pen,
-/turf/open/floor/plasteel,
-/area/security/main)
-"agd" = (
+"aez" = (
+/obj/structure/closet{
+ name = "Evidence Closet"
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/security/brig)
+"aeA" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk,
/obj/effect/turf_decal/stripes/line{
@@ -2743,32 +2082,41 @@
},
/turf/open/floor/plasteel,
/area/security/main)
-"age" = (
+"aeB" = (
+/obj/structure/table,
+/obj/item/stack/packageWrap,
+/obj/item/weapon/pen,
+/turf/open/floor/plasteel,
+/area/security/main)
+"aeC" = (
/obj/machinery/camera{
c_tag = "Security Escape Pod";
- dir = 4;
- network = list("SS13")
+ dir = 4;
+ network = list("SS13")
},
/turf/open/floor/plating,
/area/security/main)
-"agf" = (
+"aeD" = (
/obj/structure/shuttle/engine/propulsion/burst{
- dir = 4
+ dir = 8
},
/turf/closed/wall/mineral/titanium,
/area/shuttle/pod_3)
-"agg" = (
+"aeE" = (
/turf/closed/wall/mineral/titanium,
/area/shuttle/pod_3)
-"agh" = (
+"aeF" = (
+/turf/closed/wall/mineral/titanium/overspace,
+/area/shuttle/pod_3)
+"aeG" = (
/obj/structure/cable,
/obj/machinery/power/solar{
id = "auxsolareast";
- name = "Port Auxiliary Solar Array"
+ name = "Port Auxiliary Solar Array"
},
/turf/open/floor/plasteel/airless/solarpanel,
/area/solar/auxstarboard)
-"agi" = (
+"aeH" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 8
},
@@ -2781,27 +2129,18 @@
},
/turf/open/floor/plating,
/area/security/transfer)
-"agj" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/security/transfer)
-"agk" = (
+"aeI" = (
/obj/structure/rack,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
/obj/item/device/flashlight{
pixel_x = 1;
- pixel_y = 5
+ pixel_y = 5
},
/obj/item/weapon/tank/internals/anesthetic{
pixel_x = -3;
- pixel_y = 1
+ pixel_y = 1
},
/obj/item/weapon/tank/internals/oxygen/red{
pixel_x = 3
@@ -2810,257 +2149,278 @@
dir = 8
},
/area/security/transfer)
-"agl" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
+"aeJ" = (
+/obj/structure/window/reinforced{
+ dir = 4
},
-/turf/open/floor/plasteel/black,
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 9
+ },
+/turf/open/floor/plating,
/area/security/transfer)
-"agm" = (
+"aeK" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/general/hidden,
/obj/structure/cable{
d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d2 = 4;
+ icon_state = "2-4"
},
/turf/open/floor/plasteel/black,
/area/security/transfer)
-"agn" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/security{
- aiControlDisabled = 0;
- icon_state = "door_closed";
- id_tag = null;
- locked = 0;
- name = "Prisoner Transfer Centre";
- req_access = null;
- req_access_txt = "2"
+"aeL" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
},
/turf/open/floor/plasteel/black,
/area/security/transfer)
-"ago" = (
+"aeM" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/open/floor/plasteel/red/side{
dir = 8
},
/area/security/prison)
-"agp" = (
+"aeN" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/open/floor/plasteel,
-/area/security/prison)
-"agq" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security{
+ aiControlDisabled = 0;
+ icon_state = "door_closed";
+ id_tag = null;
+ locked = 0;
+ name = "Prisoner Transfer Centre";
+ req_access = null;
+ req_access_txt = "2"
},
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plasteel,
-/area/security/prison)
-"agr" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/turf/open/floor/plasteel/black,
+/area/security/transfer)
+"aeO" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
-/turf/open/floor/plasteel,
-/area/security/prison)
-"ags" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/open/floor/plasteel,
/area/security/prison)
-"agt" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+"aeP" = (
+/obj/machinery/airalarm{
+ pixel_y = 23
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 1
},
+/area/security/prison)
+"aeQ" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/open/floor/plasteel,
/area/security/prison)
-"agu" = (
+"aeR" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/hallway/secondary/exit)
+"aeS" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
/turf/open/floor/plasteel,
/area/security/prison)
-"agv" = (
+"aeT" = (
/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+/turf/open/floor/plasteel,
+/area/security/prison)
+"aeU" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel,
/area/security/prison)
-"agw" = (
-/obj/item/device/radio/intercom{
- dir = 4;
- name = "Station Intercom (General)";
- pixel_x = 27
+"aeV" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/red/side{
dir = 4
},
-/area/security/prison)
-"agx" = (
-/obj/structure/rack,
-/obj/item/weapon/storage/box/rubbershot{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/item/weapon/storage/box/rubbershot{
- pixel_x = -3;
- pixel_y = 3
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
-/obj/item/weapon/storage/box/rubbershot,
-/obj/item/weapon/storage/box/rubbershot,
-/obj/item/weapon/storage/box/rubbershot{
- pixel_x = 3;
- pixel_y = -3
+/turf/open/floor/plasteel,
+/area/security/prison)
+"aeW" = (
+/obj/machinery/requests_console{
+ department = "Security";
+ departmentType = 5;
+ pixel_x = -30;
+ pixel_y = 0
},
-/obj/item/weapon/storage/box/rubbershot{
- pixel_x = 3;
- pixel_y = -3
+/obj/machinery/camera{
+ c_tag = "Brig Control Room";
+ dir = 4
},
-/turf/open/floor/plasteel/vault{
+/obj/machinery/light{
+ icon_state = "tube1";
dir = 8
},
-/area/ai_monitored/security/armory)
-"agy" = (
/obj/structure/rack,
-/obj/item/weapon/storage/box/teargas{
+/obj/item/clothing/mask/gas/sechailer{
pixel_x = -3;
- pixel_y = 3
+ pixel_y = 3
},
-/obj/item/weapon/storage/box/handcuffs,
-/obj/item/weapon/storage/box/flashbangs{
+/obj/item/clothing/mask/gas/sechailer,
+/obj/item/clothing/mask/gas/sechailer{
pixel_x = 3;
- pixel_y = -3
+ pixel_y = -3
},
-/turf/open/floor/plasteel/vault{
- dir = 8
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden)
+"aeX" = (
+/obj/structure/grille,
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
},
-/area/ai_monitored/security/armory)
-"agz" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
},
-/turf/open/floor/plasteel,
+/turf/open/floor/plating,
/area/ai_monitored/security/armory)
-"agA" = (
+"aeY" = (
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/machinery/door/window/southleft{
+ name = "Armory";
+ req_access_txt = "3"
+ },
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/ai_monitored/security/armory)
-"agB" = (
+"aeZ" = (
+/obj/structure/grille,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "0-8"
},
-/obj/machinery/suit_storage_unit/security,
-/turf/open/floor/plasteel/red/side,
-/area/ai_monitored/security/armory)
-"agC" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ icon_state = "0-4";
+ d2 = 4
},
-/obj/machinery/suit_storage_unit/security,
-/turf/open/floor/plasteel/red/side,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plating,
/area/ai_monitored/security/armory)
-"agD" = (
-/obj/structure/table,
-/obj/machinery/recharger,
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/main)
-"agE" = (
+"afa" = (
+/obj/machinery/door/airlock/titanium{
+ name = "Emergency Shuttle Airlock"
+ },
+/obj/docking_port/mobile/emergency{
+ name = "Box emergency shuttle";
+ timid = 0
+ },
+/obj/docking_port/stationary{
+ dir = 4;
+ dwidth = 12;
+ height = 18;
+ id = "emergency_home";
+ name = "BoxStation emergency evac bay";
+ turf_type = /turf/open/space;
+ width = 32
+ },
+/turf/open/floor/plating,
+/area/shuttle/escape)
+"afb" = (
/obj/machinery/recharger,
/obj/structure/table,
/turf/open/floor/plasteel/showroomfloor,
/area/security/main)
-"agF" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+"afc" = (
+/obj/structure/table,
+/obj/machinery/recharger,
/turf/open/floor/plasteel/showroomfloor,
/area/security/main)
-"agG" = (
+"afd" = (
/obj/item/device/radio/intercom{
freerange = 0;
- frequency = 1459;
- name = "Station Intercom (General)";
- pixel_x = 29
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 29
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/closet/wardrobe/red,
/turf/open/floor/plasteel/showroomfloor,
/area/security/main)
-"agH" = (
+"afe" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/main)
+"aff" = (
/obj/effect/landmark/start{
name = "Security Officer"
},
@@ -3068,38 +2428,27 @@
dir = 9
},
/area/security/main)
-"agI" = (
+"afg" = (
/obj/effect/landmark/start{
name = "Security Officer"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/red/side{
dir = 1
},
/area/security/main)
-"agJ" = (
+"afh" = (
/obj/effect/landmark/start{
name = "Security Officer"
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/red/side{
dir = 1
},
/area/security/main)
-"agK" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/red/side{
- dir = 1
- },
-/area/security/main)
-"agL" = (
+"afi" = (
/obj/structure/disposalpipe/segment{
dir = 4;
- icon_state = "pipe-c"
+ icon_state = "pipe-c"
},
/obj/effect/landmark/start{
name = "Security Officer"
@@ -3108,117 +2457,107 @@
dir = 1
},
/area/security/main)
-"agM" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/effect/landmark/start{
- name = "Security Officer"
+"afj" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/red/side{
dir = 1
},
/area/security/main)
-"agN" = (
+"afk" = (
/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/effect/landmark/start{
+ name = "Security Officer"
},
/turf/open/floor/plasteel/red/side{
- dir = 5
+ dir = 1
},
/area/security/main)
-"agO" = (
+"afl" = (
/obj/structure/disposalpipe/segment{
dir = 8;
- icon_state = "pipe-c"
+ icon_state = "pipe-c"
},
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel,
/area/security/main)
-"agP" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 4;
- name = "Escape Pod Three";
- req_access_txt = "0"
+"afm" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 5
},
-/turf/open/floor/plating,
/area/security/main)
-"agQ" = (
+"afn" = (
/turf/open/floor/plating,
/area/security/main)
-"agR" = (
+"afo" = (
/obj/machinery/door/airlock/external{
name = "Escape Pod Three";
- req_access_txt = "0"
+ req_access_txt = "0"
},
/turf/open/floor/plating,
/area/security/main)
-"agS" = (
+"afp" = (
/obj/machinery/door/airlock/titanium{
name = "Escape Pod Airlock"
},
/obj/docking_port/mobile/pod{
dir = 4;
- id = "pod3";
- name = "escape pod 3";
- port_angle = 180;
- preferred_direction = 4
+ id = "pod3";
+ name = "escape pod 3";
+ port_angle = 180;
+ preferred_direction = 4
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/pod_3)
-"agT" = (
-/obj/item/device/radio/intercom{
- pixel_y = 25
- },
-/obj/item/weapon/storage/pod{
- pixel_x = 6;
- pixel_y = -32
+"afq" = (
+/obj/machinery/computer/shuttle/pod{
+ pixel_y = -32;
+ possible_destinations = "pod_asteroid3";
+ shuttleId = "pod3"
},
/obj/structure/chair{
dir = 4
},
+/obj/machinery/status_display{
+ density = 0;
+ layer = 3;
+ pixel_x = 0;
+ pixel_y = 32
+ },
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/pod_3)
-"agU" = (
-/obj/machinery/computer/shuttle/pod{
- pixel_y = -32;
- possible_destinations = "pod_asteroid3";
- shuttleId = "pod3"
+"afr" = (
+/obj/item/device/radio/intercom{
+ pixel_y = 25
+ },
+/obj/item/weapon/storage/pod{
+ pixel_x = 6;
+ pixel_y = -32
},
/obj/structure/chair{
dir = 4
},
-/obj/machinery/status_display{
- density = 0;
- layer = 3;
- pixel_x = 0;
- pixel_y = 32
- },
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/pod_3)
-"agV" = (
+"afs" = (
/obj/structure/grille,
/obj/structure/window/shuttle,
/turf/open/floor/plating,
/area/shuttle/pod_3)
-"agW" = (
-/obj/docking_port/stationary/random{
- dir = 4;
- id = "pod_asteroid3";
- name = "asteroid"
- },
-/turf/open/space,
-/area/space)
-"agX" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/security/transfer)
-"agY" = (
+"aft" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 5
},
@@ -3227,88 +2566,124 @@
},
/turf/open/floor/plating,
/area/security/transfer)
-"agZ" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 4;
- layer = 2.4
- },
-/obj/machinery/door/window/southleft{
- base_state = "right";
- dir = 4;
- icon_state = "right";
- name = "Armory";
- req_access_txt = "2"
- },
-/obj/effect/turf_decal/stripes/line,
+"afu" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/security/transfer)
-"aha" = (
+"afv" = (
/obj/machinery/atmospherics/pipe/simple/general/hidden{
icon_state = "intact";
- dir = 4
+ dir = 4
},
/turf/open/floor/plasteel/black,
/area/security/transfer)
-"ahb" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
+"afw" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 4;
+ layer = 2.4
},
-/obj/machinery/atmospherics/pipe/simple/general/hidden{
- icon_state = "intact";
- dir = 4
+/obj/machinery/door/window/southleft{
+ base_state = "right";
+ dir = 4;
+ icon_state = "right";
+ name = "Armory";
+ req_access_txt = "2"
},
-/turf/open/floor/plasteel/black,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating,
/area/security/transfer)
-"ahc" = (
+"afx" = (
/obj/machinery/light_switch{
pixel_x = 25;
- pixel_y = 0
+ pixel_y = 0
},
/obj/machinery/atmospherics/pipe/simple/general/hidden{
dir = 9
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/open/floor/plasteel/black,
/area/security/transfer)
-"ahd" = (
-/turf/closed/wall/r_wall,
+"afy" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ external_pressure_bound = 101.325;
+ on = 1;
+ pressure_checks = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/general/hidden{
+ icon_state = "intact";
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
/area/security/transfer)
-"ahe" = (
+"afz" = (
/obj/structure/table,
/obj/item/weapon/restraints/handcuffs,
/turf/open/floor/plasteel/red/side{
dir = 10
},
/area/security/prison)
-"ahf" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 1;
- pixel_y = -27
+"afA" = (
+/turf/closed/wall/r_wall,
+/area/security/transfer)
+"afB" = (
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 27
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 4
},
-/turf/open/floor/plasteel/red/side,
/area/security/prison)
-"ahg" = (
-/turf/open/floor/plasteel/red/side,
+"afC" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
/area/security/prison)
-"ahh" = (
+"afD" = (
/obj/structure/table,
/obj/item/device/electropack,
/turf/open/floor/plasteel/red/side,
/area/security/prison)
-"ahi" = (
+"afE" = (
+/obj/machinery/light/small,
+/turf/open/floor/plating,
+/area/hallway/secondary/exit)
+"afF" = (
+/obj/structure/table,
+/obj/item/device/assembly/signaler,
+/obj/item/clothing/suit/straight_jacket,
+/turf/open/floor/plasteel/red/side,
+/area/security/prison)
+"afG" = (
/obj/structure/table,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
/obj/item/weapon/storage/box/hug,
/obj/item/weapon/razor{
@@ -3316,198 +2691,128 @@
},
/turf/open/floor/plasteel/red/side,
/area/security/prison)
-"ahj" = (
-/obj/structure/table,
-/obj/item/device/assembly/signaler,
-/obj/item/clothing/suit/straight_jacket,
-/turf/open/floor/plasteel/red/side,
-/area/security/prison)
-"ahk" = (
+"afH" = (
/obj/structure/closet/secure_closet/brig{
anchored = 1
},
/turf/open/floor/plasteel/red/side,
/area/security/prison)
-"ahl" = (
-/obj/machinery/door/firedoor,
+"afI" = (
+/turf/open/floor/plasteel/red/side,
+/area/security/prison)
+"afJ" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 1;
+ pixel_y = -27
+ },
+/turf/open/floor/plasteel/red/side,
+/area/security/prison)
+"afK" = (
/obj/machinery/door/airlock/glass_security{
- name = "Prison Wing";
- req_access_txt = "2"
+ id_tag = null;
+ name = "Evidence Storage";
+ req_access_txt = "63"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/turf/open/floor/plasteel/red/side,
+/area/security/brig)
+"afL" = (
+/obj/structure/closet{
+ name = "Evidence Closet"
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/red/side{
dir = 9
},
-/area/security/prison)
-"ahm" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_security{
- name = "Prison Wing";
- req_access_txt = "2"
+/area/security/brig)
+"afM" = (
+/turf/open/floor/plasteel,
+/area/security/brig)
+"afN" = (
+/obj/machinery/light,
+/turf/open/floor/plasteel/red/side,
+/area/security/brig)
+"afO" = (
+/obj/machinery/door/airlock/command{
+ name = "Command Tool Storage";
+ req_access = null;
+ req_access_txt = "19"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/red/side{
- dir = 5
+/turf/open/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"afP" = (
+/obj/machinery/door/airlock/command{
+ cyclelinkeddir = 2;
+ name = "Command Tool Storage";
+ req_access = null;
+ req_access_txt = "19"
},
-/area/security/prison)
-"ahn" = (
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/storage/eva)
+"afQ" = (
/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
+/obj/structure/sign/securearea{
+ pixel_x = -32
},
/turf/open/floor/plating,
-/area/ai_monitored/security/armory)
-"aho" = (
+/area/security/main)
+"afR" = (
/obj/structure/grille,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
/turf/open/floor/plating,
-/area/ai_monitored/security/armory)
-"ahp" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+/area/security/main)
+"afS" = (
+/obj/machinery/door/airlock/glass_security{
+ name = "Equipment Room";
+ req_access_txt = "1"
},
-/obj/machinery/door/window/southleft{
- name = "Armory";
- req_access_txt = "3"
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/main)
+"afT" = (
+/obj/effect/landmark/start{
+ name = "Security Officer"
},
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/stripes/line{
- dir = 10
+/turf/open/floor/plasteel/red/side{
+ dir = 8
},
+/area/security/main)
+"afU" = (
/turf/open/floor/plasteel,
-/area/ai_monitored/security/armory)
-"ahq" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/window/southleft{
- base_state = "right";
- icon_state = "right";
- name = "Armory";
- req_access_txt = "3"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
+/area/security/main)
+"afV" = (
+/obj/structure/table,
+/obj/item/weapon/restraints/handcuffs,
+/obj/item/device/assembly/timer,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/security/main)
+"afW" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/security/main)
+"afX" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/obj/effect/landmark/start{
+ name = "Head of Security"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/effect/turf_decal/stripes/line{
- dir = 2
- },
/turf/open/floor/plasteel,
-/area/ai_monitored/security/armory)
-"ahr" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/open/floor/plating,
-/area/ai_monitored/security/armory)
-"ahs" = (
-/obj/structure/reagent_dispensers/peppertank,
-/turf/closed/wall/r_wall,
-/area/ai_monitored/security/armory)
-"aht" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/sign/securearea{
- pixel_x = -32
- },
-/turf/open/floor/plating,
-/area/security/main)
-"ahu" = (
-/obj/machinery/door/airlock/glass_security{
- name = "Equipment Room";
- req_access_txt = "1"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/main)
-"ahv" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
/area/security/main)
-"ahw" = (
+"afY" = (
/obj/effect/landmark/start{
name = "Security Officer"
},
-/turf/open/floor/plasteel/red/side{
+/obj/structure/chair{
dir = 8
},
-/area/security/main)
-"ahx" = (
-/obj/structure/table,
-/obj/item/weapon/restraints/handcuffs,
-/obj/item/device/assembly/timer,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/security/main)
-"ahy" = (
-/turf/open/floor/plasteel,
-/area/security/main)
-"ahz" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/landmark/start{
- name = "Head of Security"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/security/main)
-"ahA" = (
-/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel,
/area/security/main)
-"ahB" = (
+"afZ" = (
/obj/structure/table,
/obj/item/device/radio/off,
/obj/item/weapon/screwdriver{
@@ -3515,39 +2820,40 @@
},
/turf/open/floor/plasteel,
/area/security/main)
-"ahC" = (
-/obj/effect/landmark/start{
- name = "Security Officer"
+"aga" = (
+/obj/structure/sign/pods{
+ pixel_x = 32;
+ pixel_y = 0
},
-/obj/structure/chair{
- dir = 8
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
},
/turf/open/floor/plasteel,
/area/security/main)
-"ahD" = (
+"agb" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/red/side{
dir = 4
},
/area/security/main)
-"ahE" = (
-/obj/structure/sign/pods{
- pixel_x = 32;
- pixel_y = 0
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/security/main)
-"ahF" = (
+"agc" = (
/obj/structure/closet/emcloset,
/obj/machinery/light/small{
dir = 8
},
/turf/open/floor/plating,
/area/security/main)
-"ahG" = (
+"agd" = (
+/obj/machinery/atmospherics/pipe/manifold4w/general/visible,
+/turf/open/floor/plasteel,
+/area/atmos)
+"age" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"agf" = (
/obj/structure/table,
/obj/item/stack/sheet/metal{
amount = 1
@@ -3556,11 +2862,22 @@
/obj/item/weapon/pen,
/obj/machinery/firealarm{
dir = 1;
- pixel_y = -24
+ pixel_y = -24
},
/turf/open/floor/plasteel/black,
/area/security/transfer)
-"ahH" = (
+"agg" = (
+/obj/structure/closet/secure_closet/injection,
+/obj/structure/cable,
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "Prisoner Transfer Centre";
+ pixel_x = 0;
+ pixel_y = -27
+ },
+/turf/open/floor/plasteel/black,
+/area/security/transfer)
+"agh" = (
/obj/structure/table,
/obj/item/device/electropack,
/obj/item/weapon/screwdriver,
@@ -3570,152 +2887,135 @@
/obj/machinery/light/small,
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
+ icon_state = "alarm0";
+ pixel_y = -22
},
/turf/open/floor/plasteel/black,
/area/security/transfer)
-"ahI" = (
-/obj/structure/closet/secure_closet/injection,
-/obj/structure/cable,
-/obj/machinery/power/apc{
- dir = 2;
- name = "Prisoner Transfer Centre";
- pixel_x = 0;
- pixel_y = -27
+"agi" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_security{
+ name = "Prison Wing";
+ req_access_txt = "2"
},
-/turf/open/floor/plasteel/black,
-/area/security/transfer)
-"ahJ" = (
-/obj/machinery/door/airlock/security{
- name = "Interrogation";
- req_access = null;
- req_access_txt = "63"
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/red/side{
+ dir = 5
},
-/turf/open/floor/plasteel/black,
/area/security/prison)
-"ahK" = (
+"agj" = (
/turf/closed/wall,
/area/security/brig)
-"ahL" = (
+"agk" = (
/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_security{
+ name = "Prison Wing";
+ req_access_txt = "2"
+ },
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/sign/securearea{
- pixel_x = -32;
- pixel_y = 0
- },
-/obj/machinery/door/poddoor/preopen{
- id = "Prison Gate";
- name = "prison blast door"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel{
- name = "floor"
- },
-/area/security/brig)
-"ahM" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/poddoor/preopen{
- id = "Prison Gate";
- name = "prison blast door"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel{
- name = "floor"
- },
-/area/security/brig)
-"ahN" = (
-/turf/closed/wall/r_wall,
-/area/security/warden)
-"ahO" = (
-/obj/machinery/requests_console{
- department = "Security";
- departmentType = 5;
- pixel_x = -30;
- pixel_y = 0
+/turf/open/floor/plasteel/red/side{
+ dir = 9
},
-/obj/machinery/camera{
- c_tag = "Brig Control Room";
- dir = 4
+/area/security/prison)
+"agl" = (
+/obj/machinery/door/airlock/security{
+ name = "Interrogation";
+ req_access = null;
+ req_access_txt = "63"
},
+/turf/open/floor/plasteel/black,
+/area/security/prison)
+"agm" = (
/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/obj/structure/rack,
-/obj/item/clothing/mask/gas/sechailer{
- pixel_x = -3;
- pixel_y = 3
+ dir = 8
},
-/obj/item/clothing/mask/gas/sechailer,
-/obj/item/clothing/mask/gas/sechailer{
- pixel_x = 3;
- pixel_y = -3
+/obj/structure/table,
+/obj/item/stack/sheet/plasteel{
+ amount = 10
},
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden)
-"ahP" = (
-/obj/machinery/computer/prisoner,
-/turf/open/floor/plasteel/showroomfloor,
+/turf/open/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"agn" = (
+/turf/closed/wall/r_wall,
/area/security/warden)
-"ahQ" = (
+"ago" = (
/obj/machinery/computer/security,
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"ahR" = (
-/obj/machinery/computer/secure_data,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden)
-"ahS" = (
+"agp" = (
+/obj/machinery/computer/prisoner,
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"ahT" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+"agq" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/window/southleft{
+ base_state = "right";
+ icon_state = "right";
+ name = "Armory";
+ req_access_txt = "3"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden)
-"ahU" = (
-/obj/structure/table,
-/obj/item/clothing/glasses/sunglasses{
- pixel_x = 3;
- pixel_y = 3
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
},
-/obj/item/clothing/glasses/sunglasses{
- pixel_x = 3;
- pixel_y = 3
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/item/clothing/ears/earmuffs{
- pixel_x = -3;
- pixel_y = -2
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
},
-/obj/item/clothing/ears/earmuffs{
- pixel_x = -3;
- pixel_y = -2
+/turf/open/floor/plasteel,
+/area/ai_monitored/security/armory)
+"agr" = (
+/obj/machinery/computer/secure_data,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden)
+"ags" = (
+/obj/structure/chair{
+ dir = 4
},
+/turf/open/floor/plasteel/black,
+/area/security/prison)
+"agt" = (
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"ahV" = (
+"agu" = (
/obj/structure/table,
/obj/machinery/recharger,
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
+ icon_state = "alarm0";
+ pixel_x = 24
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"ahW" = (
+"agv" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"agw" = (
/obj/structure/table,
/obj/machinery/syndicatebomb/training,
/obj/item/weapon/gun/energy/laser/practice,
@@ -3723,98 +3023,124 @@
dir = 9
},
/area/security/main)
-"ahX" = (
+"agx" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 1
+ },
+/area/security/main)
+"agy" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/red/side{
dir = 1
},
/area/security/main)
-"ahY" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
+"agz" = (
+/obj/effect/landmark/start{
+ name = "Security Officer"
},
-/turf/open/floor/plasteel/red/side{
+/turf/open/floor/plasteel/red/corner{
dir = 1
},
/area/security/main)
-"ahZ" = (
+"agA" = (
/obj/machinery/requests_console{
department = "Security";
- departmentType = 5;
- pixel_y = 30
+ departmentType = 5;
+ pixel_y = 30
},
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
- on = 1
+ on = 1
},
/turf/open/floor/plasteel/red/side{
dir = 1
},
/area/security/main)
-"aia" = (
-/obj/effect/landmark/start{
- name = "Security Officer"
- },
-/turf/open/floor/plasteel/red/corner{
- dir = 1
- },
-/area/security/main)
-"aib" = (
+"agB" = (
/obj/structure/table,
/obj/item/device/assembly/flash/handheld,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/security/main)
-"aic" = (
+"agC" = (
/obj/machinery/holopad,
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/security/main)
-"aid" = (
+"agD" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor/preopen{
+ id = "Prison Gate";
+ name = "prison blast door"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/security/brig)
+"agE" = (
/obj/structure/table,
/obj/item/weapon/folder/red,
/obj/item/weapon/pen,
/turf/open/floor/plasteel,
/area/security/main)
-"aie" = (
+"agF" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/sign/securearea{
+ pixel_x = -32;
+ pixel_y = 0
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "Prison Gate";
+ name = "prison blast door"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/security/brig)
+"agG" = (
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
+ icon_state = "alarm0";
+ pixel_x = 24
},
/obj/machinery/light{
dir = 4;
- icon_state = "tube1"
+ icon_state = "tube1"
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
/turf/open/floor/plasteel/red/side{
dir = 4
},
/area/security/main)
-"aif" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/open/floor/plasteel/black,
-/area/security/prison)
-"aig" = (
+"agH" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/black,
/area/security/prison)
-"aih" = (
+"agI" = (
/obj/machinery/airalarm{
pixel_y = 23
},
@@ -3823,17 +3149,24 @@
},
/turf/open/floor/plasteel/black,
/area/security/prison)
-"aii" = (
+"agJ" = (
/obj/item/weapon/cigbutt,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
/turf/open/floor/plasteel/black,
/area/security/prison)
-"aij" = (
+"agK" = (
/turf/open/floor/plasteel/black,
/area/security/prison)
-"aik" = (
+"agL" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/security/prison)
+"agM" = (
/obj/item/clothing/gloves/color/latex,
/obj/item/clothing/mask/surgical,
/obj/item/weapon/reagent_containers/spray/cleaner,
@@ -3842,10 +3175,10 @@
dir = 9
},
/area/security/brig)
-"ail" = (
+"agN" = (
/obj/item/weapon/storage/firstaid/regular{
pixel_x = 3;
- pixel_y = 3
+ pixel_y = 3
},
/obj/item/weapon/storage/firstaid/regular,
/obj/structure/table/glass,
@@ -3853,152 +3186,134 @@
dir = 1
},
/area/security/brig)
-"aim" = (
-/obj/item/device/radio/intercom{
- freerange = 0;
- frequency = 1459;
- name = "Station Intercom (General)";
- pixel_x = 0;
- pixel_y = 24
- },
-/obj/structure/table/glass,
-/obj/machinery/computer/med_data/laptop,
-/turf/open/floor/plasteel/whitered/side{
- dir = 1
- },
-/area/security/brig)
-"ain" = (
-/obj/structure/window/reinforced{
- dir = 4
- },
-/obj/machinery/iv_drip{
- density = 0
- },
-/obj/item/weapon/reagent_containers/blood/empty,
-/turf/open/floor/plasteel/whitered/side{
+"agO" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/red/side{
dir = 5
},
/area/security/brig)
-"aio" = (
+"agP" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/red/side{
dir = 9
},
/area/security/brig)
-"aip" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/red/side{
- dir = 5
+"agQ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/security/brig)
-"aiq" = (
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden)
+"agR" = (
/obj/structure/grille,
/obj/structure/cable{
icon_state = "0-4";
- d2 = 4
+ d2 = 4
},
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/security/warden)
-"air" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+"agS" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"ais" = (
+"agT" = (
/obj/structure/cable{
d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden)
-"ait" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
+ d2 = 8;
+ icon_state = "2-8"
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"aiu" = (
+"agU" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"aiv" = (
+"agV" = (
/obj/machinery/holopad,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"aiw" = (
-/obj/structure/table,
-/obj/machinery/recharger,
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden)
-"aix" = (
+"agW" = (
/obj/structure/grille,
/obj/structure/cable{
icon_state = "0-2";
- d2 = 2
+ d2 = 2
},
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/security/warden)
-"aiy" = (
+"agX" = (
+/obj/structure/table,
+/obj/machinery/recharger,
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden)
+"agY" = (
/obj/structure/table,
/obj/item/weapon/storage/fancy/donut_box,
/turf/open/floor/plasteel/red/side{
dir = 8
},
/area/security/main)
-"aiz" = (
-/obj/effect/landmark/start{
- name = "Security Officer"
- },
+"agZ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/security/main)
-"aiA" = (
+"aha" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/security/main)
-"aiB" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+"ahb" = (
+/obj/effect/landmark/start{
+ name = "Security Officer"
+ },
/turf/open/floor/plasteel,
/area/security/main)
-"aiC" = (
+"ahc" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel,
+/area/security/main)
+"ahd" = (
/obj/structure/table,
/obj/item/weapon/book/manual/wiki/security_space_law,
/obj/item/weapon/book/manual/wiki/security_space_law,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/security/main)
-"aiD" = (
-/obj/structure/disposalpipe/segment{
+"ahe" = (
+/obj/structure/disposalpipe/sortjunction{
dir = 4;
- icon_state = "pipe-c"
+ icon_state = "pipe-j2s";
+ sortType = 8
},
/turf/open/floor/plasteel,
/area/security/main)
-"aiE" = (
+"ahf" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -4006,42 +3321,34 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/security/main)
-"aiF" = (
-/obj/structure/disposalpipe/sortjunction{
- dir = 4;
- icon_state = "pipe-j2s";
- sortType = 8
- },
-/turf/open/floor/plasteel,
-/area/security/main)
-"aiG" = (
+"ahg" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/table,
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 7
+/obj/effect/landmark/start{
+ name = "Security Officer"
+ },
+/obj/structure/chair{
+ dir = 8
},
/turf/open/floor/plasteel,
/area/security/main)
-"aiH" = (
+"ahh" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/effect/landmark/start{
- name = "Security Officer"
- },
-/obj/structure/chair{
- dir = 8
+/obj/structure/table,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
},
/turf/open/floor/plasteel,
/area/security/main)
-"aiI" = (
+"ahi" = (
/obj/structure/disposalpipe/sortjunction{
dir = 4;
- icon_state = "pipe-j2s";
- sortType = 7
+ icon_state = "pipe-j2s";
+ sortType = 7
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
@@ -4050,13 +3357,13 @@
dir = 4
},
/area/security/main)
-"aiJ" = (
+"ahj" = (
/obj/machinery/door/window/eastright{
base_state = "left";
- dir = 8;
- icon_state = "left";
- name = "Security Delivery";
- req_access_txt = "1"
+ dir = 8;
+ icon_state = "left";
+ name = "Security Delivery";
+ req_access_txt = "1"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -4067,12 +3374,19 @@
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
/area/security/main)
-"aiK" = (
+"ahk" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fsmaint)
+"ahl" = (
/obj/machinery/navbeacon{
codes_txt = "delivery;dir=8";
- dir = 8;
- freq = 1400;
- location = "Security"
+ dir = 8;
+ freq = 1400;
+ location = "Security"
},
/obj/structure/plasticflaps{
opacity = 1
@@ -4086,39 +3400,72 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
/area/security/main)
-"aiL" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint)
-"aiM" = (
+"ahm" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/machinery/iv_drip{
+ density = 0
+ },
+/obj/item/weapon/reagent_containers/blood/empty,
+/turf/open/floor/plasteel/whitered/side{
+ dir = 5
+ },
+/area/security/brig)
+"ahn" = (
/turf/closed/wall,
/area/maintenance/fsmaint)
-"aiN" = (
-/obj/structure/chair{
+"aho" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/black,
/area/security/prison)
-"aiO" = (
-/obj/structure/table,
-/obj/item/device/flashlight/lamp,
-/turf/open/floor/plasteel/black,
-/area/security/prison)
-"aiP" = (
+"ahp" = (
/obj/structure/chair{
dir = 8
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/black,
/area/security/prison)
-"aiQ" = (
+"ahq" = (
+/obj/structure/table,
+/obj/item/device/flashlight/lamp,
+/turf/open/floor/plasteel/black,
+/area/security/prison)
+"ahr" = (
+/obj/structure/closet{
+ name = "Evidence Closet"
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 4
+ },
+/area/security/brig)
+"ahs" = (
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = 24
+ },
+/obj/structure/table/glass,
+/obj/machinery/computer/med_data/laptop,
+/turf/open/floor/plasteel/whitered/side{
+ dir = 1
+ },
+/area/security/brig)
+"aht" = (
+/turf/open/floor/plasteel/whitered/corner{
+ tag = "icon-whiteredcorner (WEST)";
+ dir = 8
+ },
+/area/security/brig)
+"ahu" = (
/obj/item/weapon/storage/box/bodybags,
/obj/structure/extinguisher_cabinet{
pixel_x = -27;
- pixel_y = 0
+ pixel_y = 0
},
/obj/item/weapon/reagent_containers/syringe{
name = "steel point"
@@ -4127,274 +3474,249 @@
/obj/item/weapon/reagent_containers/glass/bottle/epinephrine,
/obj/machinery/light{
icon_state = "tube1";
- dir = 8
+ dir = 8
},
/obj/structure/table/glass,
/turf/open/floor/plasteel/whitered/side{
dir = 10
},
/area/security/brig)
-"aiR" = (
-/turf/open/floor/plasteel/whitered/corner{
- tag = "icon-whiteredcorner (WEST)";
- dir = 8
- },
-/area/security/brig)
-"aiS" = (
-/turf/open/floor/plasteel/white,
-/area/security/brig)
-"aiT" = (
-/obj/machinery/door/window/westleft{
- base_state = "left";
- dir = 4;
- icon_state = "left";
- name = "Brig Infirmary";
- req_access_txt = "0"
- },
-/turf/open/floor/plasteel/whitered/side{
- dir = 4
- },
-/area/security/brig)
-"aiU" = (
+"ahv" = (
/obj/machinery/power/apc{
dir = 8;
- name = "Brig Control APC";
- pixel_x = -24;
- pixel_y = 0
+ name = "Brig Control APC";
+ pixel_x = -24;
+ pixel_y = 0
},
/obj/structure/cable{
icon_state = "0-4";
- d2 = 4
+ d2 = 4
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"aiV" = (
+"ahw" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
},
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden)
+"ahx" = (
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
},
/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden)
-"aiW" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"aiX" = (
+"ahy" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"aiY" = (
+"ahz" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"aiZ" = (
+"ahA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden)
-"aja" = (
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/security/main)
+"ahB" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"ajb" = (
+"ahC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/security/main)
+"ahD" = (
+/obj/machinery/door/window/westleft{
+ base_state = "left";
+ dir = 4;
+ icon_state = "left";
+ name = "Brig Infirmary";
+ req_access_txt = "0"
+ },
+/turf/open/floor/plasteel/whitered/side{
dir = 4
},
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden)
-"ajc" = (
+/area/security/brig)
+"ahE" = (
/obj/machinery/door/airlock/glass_security{
name = "Brig Control";
- req_access_txt = "3"
+ req_access_txt = "3"
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 4;
+ icon_state = "1-4"
},
/obj/structure/cable{
d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d2 = 4;
+ icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"ajd" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
+"ahF" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/plasteel/red/side{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
+/turf/open/floor/plasteel,
/area/security/main)
-"aje" = (
+"ahG" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
},
/obj/structure/cable{
d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d2 = 4;
+ icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/security/main)
-"ajf" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+"ahH" = (
+/obj/structure/disposalpipe/junction{
+ icon_state = "pipe-y";
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/security/main)
-"ajg" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/security/main)
-"ajh" = (
+"ahI" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
},
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/security/main)
-"aji" = (
-/obj/structure/disposalpipe/junction{
- icon_state = "pipe-y";
- dir = 1
+"ahJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/security/main)
-"ajj" = (
+"ahK" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 4;
+ icon_state = "1-4"
},
/obj/structure/chair,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
@@ -4403,61 +3725,47 @@
},
/turf/open/floor/plasteel,
/area/security/main)
-"ajk" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
+"ahL" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/security/main)
-"ajl" = (
+"ahM" = (
/obj/structure/cable{
d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d2 = 8;
+ icon_state = "2-8"
},
/obj/structure/disposalpipe/segment{
dir = 2;
- icon_state = "pipe-c"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+ icon_state = "pipe-c"
},
-/turf/open/floor/plasteel,
-/area/security/main)
-"ajm" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/security/main)
-"ajn" = (
+"ahN" = (
/obj/machinery/power/apc{
dir = 4;
- name = "Security Office APC";
- pixel_x = 24;
- pixel_y = 0
+ name = "Security Office APC";
+ pixel_x = 24;
+ pixel_y = 0
},
/obj/structure/cable{
d2 = 8;
- icon_state = "0-8"
+ icon_state = "0-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
@@ -4466,15 +3774,71 @@
dir = 4
},
/area/security/main)
-"ajo" = (
+"ahO" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall,
/area/security/main)
-"ajp" = (
+"ahP" = (
+/turf/open/floor/plasteel/white,
+/area/security/brig)
+"ahQ" = (
+/obj/structure/closet/secure_closet/warden,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden)
+"ahR" = (
+/obj/structure/chair/office/dark,
+/obj/effect/landmark/start{
+ name = "Warden"
+ },
+/obj/machinery/button/door{
+ id = "Prison Gate";
+ name = "Prison Wing Lockdown";
+ pixel_x = -27;
+ pixel_y = 8;
+ req_access_txt = "2"
+ },
+/obj/machinery/button/door{
+ id = "Secure Gate";
+ name = "Cell Shutters";
+ pixel_x = -27;
+ pixel_y = -2;
+ req_access_txt = "0"
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden)
+"ahS" = (
+/obj/structure/table,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden)
+"ahT" = (
/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"ajq" = (
+"ahU" = (
+/obj/structure/closet{
+ name = "Evidence Closet"
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 10
+ },
+/area/security/brig)
+"ahV" = (
/obj/structure/table,
/obj/item/weapon/folder/red,
/obj/item/device/taperecorder{
@@ -4482,95 +3846,96 @@
},
/turf/open/floor/plasteel/black,
/area/security/prison)
-"ajr" = (
-/obj/machinery/camera{
- c_tag = "Brig Interrogation";
- dir = 8
- },
-/turf/open/floor/plasteel/black,
-/area/security/prison)
-"ajs" = (
+"ahW" = (
/obj/structure/bodycontainer/morgue,
/obj/machinery/camera{
c_tag = "Brig Infirmary";
- dir = 4
+ dir = 4
},
/turf/open/floor/plasteel/black,
/area/security/brig)
-"ajt" = (
-/turf/open/floor/plasteel/whitered/side{
- dir = 8
+"ahX" = (
+/obj/structure/table,
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 0
},
-/area/security/brig)
-"aju" = (
-/obj/machinery/door/window/westleft{
- base_state = "right";
- dir = 4;
- icon_state = "right";
- name = "Brig Infirmary";
- req_access_txt = "0"
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
},
-/turf/open/floor/plasteel/whitered/side{
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden)
+"ahY" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
+/turf/open/floor/plasteel/red/side{
+ dir = 5
+ },
/area/security/brig)
-"ajv" = (
-/obj/structure/closet/secure_closet/warden,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+"ahZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
},
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden)
-"ajw" = (
-/obj/structure/table,
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden)
-"ajx" = (
-/obj/structure/chair/office/dark,
-/obj/effect/landmark/start{
- name = "Warden"
+/turf/open/floor/plasteel/red/side{
+ dir = 10
},
-/obj/machinery/button/door{
- id = "Prison Gate";
- name = "Prison Wing Lockdown";
- pixel_x = -27;
- pixel_y = 8;
- req_access_txt = "2"
+/area/security/main)
+"aia" = (
+/obj/structure/noticeboard{
+ dir = 1;
+ pixel_y = -27
},
-/obj/machinery/button/door{
- id = "Secure Gate";
- name = "Cell Shutters";
- pixel_x = -27;
- pixel_y = -2;
- req_access_txt = "0"
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden)
-"ajy" = (
-/obj/structure/table,
-/obj/item/device/radio/intercom{
- dir = 4;
- name = "Station Intercom (General)";
- pixel_x = 0
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/red/side,
+/area/security/main)
+"aib" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
+/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
+ dir = 10
},
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden)
-"ajz" = (
+/turf/open/floor/plating,
+/area/maintenance/fsmaint)
+"aic" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fsmaint)
+"aid" = (
+/turf/open/floor/plasteel/whitered/side{
+ dir = 10
+ },
+/area/security/brig)
+"aie" = (
/obj/structure/table,
/obj/item/weapon/folder/red,
/obj/item/weapon/pen,
@@ -4581,39 +3946,32 @@
/obj/item/weapon/book/manual/wiki/security_space_law,
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"ajA" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden)
-"ajB" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
+"aif" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/structure/filingcabinet/chestdrawer,
-/turf/open/floor/plasteel/showroomfloor,
-/area/security/warden)
-"ajC" = (
-/obj/machinery/light_switch{
- pixel_y = -23
- },
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 4
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/fsmaint)
+"aig" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"ajD" = (
+"aih" = (
+/obj/structure/closet{
+ name = "Evidence Closet"
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 6
+ },
+/area/security/brig)
+"aii" = (
/obj/structure/grille,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -4625,73 +3983,71 @@
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/security/warden)
-"ajE" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+"aij" = (
+/obj/machinery/light_switch{
+ pixel_y = -23
},
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/turf/open/floor/plasteel/red/side{
- dir = 10
- },
-/area/security/main)
-"ajF" = (
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden)
+"aik" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
/turf/open/floor/plasteel/red/side,
/area/security/main)
-"ajG" = (
-/obj/structure/noticeboard{
- dir = 1;
- pixel_y = -27
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+"ail" = (
+/obj/machinery/camera{
+ c_tag = "Brig Interrogation";
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/red/side,
-/area/security/main)
-"ajH" = (
+/turf/open/floor/plasteel/black,
+/area/security/prison)
+"aim" = (
/obj/machinery/light_switch{
pixel_y = -23
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel/red/side,
/area/security/main)
-"ajI" = (
-/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+"ain" = (
+/turf/open/floor/plasteel/whitered/side{
+ dir = 8
},
-/turf/open/floor/plasteel/red/side,
-/area/security/main)
-"ajJ" = (
+/area/security/brig)
+"aio" = (
+/obj/structure/table,
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/obj/item/stack/sheet/rglass{
+ amount = 50
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"aip" = (
+/obj/machinery/light,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/red/side,
/area/security/main)
-"ajK" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plasteel/red/side,
-/area/security/main)
-"ajL" = (
+"aiq" = (
/obj/machinery/camera{
c_tag = "Security Office";
- dir = 1;
- network = list("SS13")
+ dir = 1;
+ network = list("SS13")
},
/obj/machinery/computer/secure_data,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -4699,44 +4055,33 @@
},
/turf/open/floor/plasteel/red/side,
/area/security/main)
-"ajM" = (
-/obj/item/device/radio/intercom{
- name = "Station Intercom (General)";
- pixel_y = -29
- },
-/obj/machinery/computer/security,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/red/side,
-/area/security/main)
-"ajN" = (
+"air" = (
+/obj/structure/chair,
+/turf/open/floor/plating,
+/area/security/vacantoffice2)
+"ais" = (
/obj/structure/filingcabinet,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/structure/extinguisher_cabinet{
pixel_x = 5;
- pixel_y = -32
+ pixel_y = -32
},
/turf/open/floor/plasteel/red/side,
/area/security/main)
-"ajO" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
+"ait" = (
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -29
},
+/obj/machinery/computer/security,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/red/side,
/area/security/main)
-"ajP" = (
+"aiu" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -4745,39 +4090,45 @@
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
},
/turf/open/floor/plasteel/red/side,
/area/security/main)
-"ajQ" = (
+"aiv" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
/obj/structure/disposalpipe/segment{
- dir = 4
+ dir = 1;
+ icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/turf/open/floor/plasteel/red/side{
- dir = 6
- },
+/turf/open/floor/plasteel/red/side,
/area/security/main)
-"ajR" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Security Maintenance";
- req_access_txt = "1"
+"aiw" = (
+/obj/machinery/door/window/westleft{
+ base_state = "right";
+ dir = 4;
+ icon_state = "right";
+ name = "Brig Infirmary";
+ req_access_txt = "0"
+ },
+/turf/open/floor/plasteel/whitered/side{
+ dir = 4
},
+/area/security/brig)
+"aix" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -4785,330 +4136,307 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/turf/open/floor/plating,
-/area/security/main)
-"ajS" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
+/turf/open/floor/plasteel/red/side{
+ dir = 6
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+/area/security/main)
+"aiy" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/red/corner{
dir = 4
},
-/turf/open/floor/plating,
-/area/maintenance/fsmaint)
-"ajT" = (
+/area/security/brig)
+"aiz" = (
/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/red/corner{
+ dir = 1
},
-/turf/open/floor/plating,
-/area/maintenance/fsmaint)
-"ajU" = (
+/area/security/brig)
+"aiA" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"ajV" = (
+"aiB" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/black,
-/area/security/prison)
-"ajW" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
/turf/open/floor/plasteel/black,
/area/security/prison)
-"ajX" = (
+"aiC" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/black,
/area/security/prison)
-"ajY" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/black,
-/area/security/prison)
-"ajZ" = (
+"aiD" = (
/obj/structure/bodycontainer/morgue,
/turf/open/floor/plasteel/black,
/area/security/brig)
-"aka" = (
-/turf/open/floor/plasteel/whitered/side{
+"aiE" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
-/area/security/brig)
-"akb" = (
+/turf/open/floor/plasteel/black,
+/area/security/prison)
+"aiF" = (
/obj/structure/bed,
/obj/item/clothing/suit/straight_jacket,
/turf/open/floor/plasteel/whitered/side,
/area/security/brig)
-"akc" = (
-/obj/structure/window/reinforced{
- dir = 4
+"aiG" = (
+/turf/open/floor/plasteel/red/side{
+ dir = 5
},
-/obj/structure/bed,
-/obj/item/clothing/suit/straight_jacket,
-/turf/open/floor/plasteel/whitered/side{
- dir = 6
+/area/security/brig)
+"aiH" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 1
},
/area/security/brig)
-"akd" = (
+"aiI" = (
/obj/structure/grille,
/obj/structure/cable{
icon_state = "0-4";
- d2 = 4
+ d2 = 4
},
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
- pixel_x = -32
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/security/warden)
-"ake" = (
-/obj/structure/grille,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ icon_state = "shock";
+ name = "HIGH VOLTAGE";
+ pixel_x = -32
},
-/obj/structure/cable,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/security/warden)
-"akf" = (
+"aiJ" = (
/obj/structure/table/reinforced,
/obj/structure/cable{
d2 = 8;
- icon_state = "0-8"
+ icon_state = "0-8"
},
/obj/structure/cable{
icon_state = "0-4";
- d2 = 4
+ d2 = 4
},
/obj/machinery/door/window/brigdoor{
dir = 1;
- name = "Armory Desk";
- req_access_txt = "3"
+ name = "Armory Desk";
+ req_access_txt = "3"
},
/obj/machinery/door/window/southleft{
name = "Reception Desk";
- req_access_txt = "63"
+ req_access_txt = "63"
},
/obj/item/weapon/paper_bin{
pixel_x = -3;
- pixel_y = 7
+ pixel_y = 7
},
/obj/item/weapon/pen{
pixel_x = 4;
- pixel_y = 4
+ pixel_y = 4
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"akg" = (
+"aiK" = (
/obj/structure/grille,
/obj/structure/cable{
d2 = 8;
- icon_state = "0-8"
+ icon_state = "0-8"
},
/obj/structure/cable{
icon_state = "0-4";
- d2 = 4
+ d2 = 4
},
+/obj/structure/cable,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/security/warden)
-"akh" = (
+"aiL" = (
/obj/structure/grille,
/obj/structure/cable{
d2 = 8;
- icon_state = "0-8"
+ icon_state = "0-8"
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
},
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/security/warden)
-"aki" = (
+"aiM" = (
/obj/machinery/door/airlock/glass_security{
name = "Brig Control";
- req_access_txt = "3"
+ req_access_txt = "3"
},
/turf/open/floor/plasteel/showroomfloor,
/area/security/warden)
-"akj" = (
+"aiN" = (
/obj/structure/grille,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable,
/turf/open/floor/plating,
/area/security/warden)
-"akk" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/security{
- name = "Security Office";
- req_access = null;
- req_access_txt = "1"
+"aiO" = (
+/obj/structure/window/reinforced{
+ dir = 4
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/structure/bed,
+/obj/item/clothing/suit/straight_jacket,
+/turf/open/floor/plasteel/whitered/side{
+ dir = 6
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/security/main)
-"akl" = (
+/area/security/brig)
+"aiP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall/r_wall,
/area/security/main)
-"akm" = (
-/obj/structure/disposalpipe/segment,
+"aiQ" = (
+/obj/machinery/camera{
+ c_tag = "Brig East"
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 1
+ },
+/area/security/brig)
+"aiR" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint)
-"akn" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+/turf/open/floor/plasteel/red/side{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint)
-"ako" = (
+/area/security/brig)
+"aiS" = (
/obj/item/stack/rods,
/turf/open/space,
/area/space)
-"akp" = (
+"aiT" = (
/turf/closed/wall,
/area/security/processing)
-"akq" = (
+"aiU" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/security/processing)
-"akr" = (
+"aiV" = (
+/turf/closed/wall/r_wall,
+/area/security/processing)
+"aiW" = (
/obj/machinery/door/airlock/security{
name = "Interrogation";
- req_access = null;
- req_access_txt = "63"
+ req_access = null;
+ req_access_txt = "63"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/black,
/area/security/prison)
-"aks" = (
+"aiX" = (
+/turf/closed/wall/r_wall,
+/area/security/brig)
+"aiY" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 2;
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/courtroom)
+"aiZ" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/red/corner{
dir = 1
},
/area/security/brig)
-"akt" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/red/corner{
+"aja" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
+/turf/open/floor/plasteel,
/area/security/brig)
-"aku" = (
+"ajb" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/security/brig)
+"ajc" = (
/turf/open/floor/plasteel/red/side{
dir = 1
},
/area/security/brig)
-"akv" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+"ajd" = (
+/obj/structure/sign/goldenplaque{
+ pixel_y = 32
},
/turf/open/floor/plasteel/red/side{
dir = 1
},
/area/security/brig)
-"akw" = (
+"aje" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
on = 1
},
/obj/machinery/firealarm{
dir = 2;
- pixel_y = 24
- },
-/turf/open/floor/plasteel/red/side{
- dir = 1
- },
-/area/security/brig)
-"akx" = (
-/obj/structure/sign/goldenplaque{
- pixel_y = 32
- },
-/turf/open/floor/plasteel/red/side{
- dir = 1
- },
-/area/security/brig)
-"aky" = (
-/obj/machinery/camera{
- c_tag = "Brig East"
+ pixel_y = 24
},
/turf/open/floor/plasteel/red/side{
dir = 1
},
/area/security/brig)
-"akz" = (
+"ajf" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/red/side{
dir = 1
},
/area/security/brig)
-"akA" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/red/side{
- dir = 1
- },
-/area/security/brig)
-"akB" = (
-/turf/open/floor/plasteel/red/side{
- dir = 5
+"ajg" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/turf/open/floor/plasteel,
/area/security/brig)
-"akC" = (
-/turf/closed/wall/r_wall,
-/area/security/brig)
-"akD" = (
+"ajh" = (
/obj/machinery/light_switch{
pixel_y = 28
},
@@ -5120,32 +4448,40 @@
/obj/item/weapon/gavelhammer,
/turf/open/floor/plasteel,
/area/crew_quarters/courtroom)
-"akE" = (
+"aji" = (
+/obj/structure/chair{
+ name = "Judge"
+ },
+/turf/open/floor/plasteel/blue/side{
+ dir = 9
+ },
+/area/crew_quarters/courtroom)
+"ajj" = (
/obj/item/device/radio/intercom{
broadcasting = 0;
- listening = 1;
- name = "Station Intercom (General)";
- pixel_y = 20
+ listening = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 20
},
/obj/machinery/camera{
c_tag = "Courtroom North"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
/turf/open/floor/plasteel,
/area/crew_quarters/courtroom)
-"akF" = (
+"ajk" = (
/obj/structure/chair{
name = "Judge"
},
/turf/open/floor/plasteel/blue/side{
- dir = 9
+ dir = 5
},
/area/crew_quarters/courtroom)
-"akG" = (
+"ajl" = (
/obj/structure/chair{
name = "Judge"
},
@@ -5156,63 +4492,41 @@
dir = 1
},
/area/crew_quarters/courtroom)
-"akH" = (
-/obj/structure/chair{
- name = "Judge"
- },
-/turf/open/floor/plasteel/blue/side{
- dir = 5
- },
-/area/crew_quarters/courtroom)
-"akI" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 2;
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/courtroom)
-"akJ" = (
+"ajm" = (
/obj/structure/window/reinforced{
dir = 8
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/courtroom)
-"akK" = (
-/turf/open/floor/plasteel/black,
+"ajn" = (
+/turf/open/floor/plasteel,
/area/crew_quarters/courtroom)
-"akL" = (
+"ajo" = (
/turf/closed/wall,
/area/crew_quarters/courtroom)
-"akM" = (
+"ajp" = (
+/turf/open/floor/plasteel/black,
+/area/crew_quarters/courtroom)
+"ajq" = (
/obj/structure/cable{
icon_state = "0-2";
- d2 = 2
+ d2 = 2
},
/obj/structure/lattice/catwalk,
/turf/open/space,
/area/solar/auxport)
-"akN" = (
-/obj/machinery/gulag_teleporter,
-/turf/open/floor/plasteel,
-/area/security/processing)
-"akO" = (
+"ajr" = (
/obj/machinery/computer/gulag_teleporter_computer,
/turf/open/floor/plasteel,
/area/security/processing)
-"akP" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/obj/machinery/computer/security{
- name = "Labor Camp Monitoring";
- network = list("Labor")
- },
+"ajs" = (
+/obj/machinery/gulag_teleporter,
/turf/open/floor/plasteel,
/area/security/processing)
-"akQ" = (
+"ajt" = (
/obj/structure/sign/securearea{
pixel_x = 32;
- pixel_y = 0
+ pixel_y = 0
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -5224,16 +4538,20 @@
},
/turf/open/floor/plasteel,
/area/security/processing)
-"akR" = (
+"aju" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+ dir = 6
},
-/turf/closed/wall/r_wall,
-/area/security/brig)
-"akS" = (
+/obj/machinery/computer/security{
+ name = "Labor Camp Monitoring";
+ network = list("Labor")
+ },
+/turf/open/floor/plasteel,
+/area/security/processing)
+"ajv" = (
/obj/machinery/light{
icon_state = "tube1";
- dir = 8
+ dir = 8
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -5242,27 +4560,16 @@
dir = 9
},
/area/security/brig)
-"akT" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "Labor Shuttle Dock APC";
- pixel_y = 24
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
+"ajw" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/turf/open/floor/plasteel/red/side{
- dir = 1
- },
+/turf/closed/wall/r_wall,
/area/security/brig)
-"akU" = (
+"ajx" = (
/obj/machinery/firealarm{
dir = 2;
- pixel_y = 24
+ pixel_y = 24
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -5272,17 +4579,28 @@
dir = 1
},
/area/security/brig)
-"akV" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+"ajy" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "Labor Shuttle Dock APC";
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
/turf/open/floor/plasteel/red/side{
dir = 1
},
/area/security/brig)
-"akW" = (
+"ajz" = (
/obj/structure/cable{
d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d2 = 4;
+ icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
@@ -5291,96 +4609,84 @@
dir = 1
},
/area/security/brig)
-"akX" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/effect/landmark/event_spawn,
+"ajA" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/red/side{
dir = 1
},
/area/security/brig)
-"akY" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/red/corner{
- dir = 1
- },
+"ajB" = (
+/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
+/turf/open/floor/plasteel,
/area/security/brig)
-"akZ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+"ajC" = (
+/obj/item/weapon/storage/toolbox/drone,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
},
/turf/open/floor/plasteel,
-/area/security/brig)
-"ala" = (
+/area/ai_monitored/security/armory)
+"ajD" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
/turf/open/floor/plasteel,
/area/security/brig)
-"alb" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+"ajE" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/neutral/side{
+ dir = 5
+ },
+/area/crew_quarters/courtroom)
+"ajF" = (
+/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
+/turf/open/floor/plasteel/red/corner{
+ dir = 2
},
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plasteel,
/area/security/brig)
-"alc" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+"ajG" = (
+/obj/machinery/light,
+/obj/machinery/door_timer{
+ id = "Cell 1";
+ name = "Cell 1";
+ pixel_y = -32
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
+/turf/open/floor/plasteel/red/side,
/area/security/brig)
-"ald" = (
+"ajH" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 4
+ },
+/area/crew_quarters/courtroom)
+"ajI" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/security/brig)
-"ale" = (
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/security/brig)
-"alf" = (
+"ajJ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/security/brig)
-"alg" = (
+"ajK" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -5388,7 +4694,7 @@
},
/turf/open/floor/plasteel,
/area/security/brig)
-"alh" = (
+"ajL" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -5396,66 +4702,60 @@
dir = 4
},
/area/security/brig)
-"ali" = (
+"ajM" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/courtroom)
+"ajN" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security{
name = "Brig";
- req_access = null;
- req_access_txt = "63; 42"
+ req_access = null;
+ req_access_txt = "63; 42"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/security/brig)
-"alj" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/courtroom)
-"alk" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/neutral/side{
- dir = 9
- },
-/area/crew_quarters/courtroom)
-"all" = (
+"ajO" = (
/obj/structure/table/wood,
/obj/item/device/radio/intercom{
broadcasting = 0;
- dir = 8;
- listening = 1;
- name = "Station Intercom (Court)";
- pixel_x = 0
+ dir = 8;
+ listening = 1;
+ name = "Station Intercom (Court)";
+ pixel_x = 0
},
/turf/open/floor/plasteel/neutral/side{
dir = 1
},
/area/crew_quarters/courtroom)
-"alm" = (
-/obj/structure/table/wood,
-/obj/item/weapon/gavelblock,
+"ajP" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
+ },
/turf/open/floor/plasteel/neutral/side{
- dir = 1
+ dir = 9
},
/area/crew_quarters/courtroom)
-"aln" = (
+"ajQ" = (
/obj/structure/table/wood,
/obj/item/weapon/book/manual/wiki/security_space_law,
/turf/open/floor/plasteel/neutral/side{
dir = 1
},
/area/crew_quarters/courtroom)
-"alo" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+"ajR" = (
+/obj/structure/table/wood,
+/obj/item/weapon/gavelblock,
/turf/open/floor/plasteel/neutral/side{
- dir = 5
+ dir = 1
},
/area/crew_quarters/courtroom)
-"alp" = (
+"ajS" = (
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
dir = 8
@@ -5467,100 +4767,108 @@
dir = 8
},
/area/crew_quarters/courtroom)
-"alq" = (
+"ajT" = (
+/obj/structure/chair{
+ dir = 8;
+ name = "Defense"
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 5
+ },
+/area/crew_quarters/courtroom)
+"ajU" = (
/obj/machinery/door/window/southleft{
name = "Court Cell";
- req_access_txt = "2"
+ req_access_txt = "2"
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/courtroom)
-"alr" = (
+"ajV" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/maintenance/auxsolarport)
-"als" = (
+"ajW" = (
/obj/machinery/door/airlock/external{
name = "Solar Maintenance";
- req_access = null;
- req_access_txt = "10; 13"
+ req_access = null;
+ req_access_txt = "10; 13"
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/open/floor/plating,
/area/maintenance/auxsolarport)
-"alt" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/labor)
-"alu" = (
+"ajX" = (
/obj/structure/grille,
/obj/structure/window/shuttle,
/turf/open/floor/plating,
/area/shuttle/labor)
-"alv" = (
-/turf/closed/wall/r_wall,
-/area/security/processing)
-"alw" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 1
+"ajY" = (
+/obj/machinery/atmospherics/pipe/simple/yellow/visible,
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "Unfiltered to Port";
+ on = 0
},
/turf/open/floor/plasteel,
-/area/security/processing)
-"alx" = (
+/area/atmos)
+"ajZ" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/turf/open/floor/plating,
+/area/mining_construction)
+"aka" = (
/obj/structure/chair{
dir = 1
},
/turf/open/floor/plasteel,
/area/security/processing)
-"aly" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+"akb" = (
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/security/processing)
-"alz" = (
+"akc" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
/turf/open/floor/plasteel,
/area/security/processing)
-"alA" = (
+"akd" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/security{
- name = "Labor Shuttle";
- req_access = null;
- req_access_txt = "2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
-/area/security/brig)
-"alB" = (
+/area/security/processing)
+"ake" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -5569,58 +4877,64 @@
dir = 8
},
/area/security/brig)
-"alC" = (
+"akf" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security{
+ name = "Labor Shuttle";
+ req_access = null;
+ req_access_txt = "2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/security/brig)
-"alD" = (
+"akg" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/camera{
c_tag = "Brig West";
- dir = 1
+ dir = 1
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel/red/corner{
dir = 2
},
/area/security/brig)
-"alE" = (
+"akh" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/turf/open/floor/plasteel/red/side,
+/turf/open/floor/plasteel,
/area/security/brig)
-"alF" = (
+"aki" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 8;
+ icon_state = "1-8"
},
/obj/structure/cable{
d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d2 = 8;
+ icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -5630,13 +4944,18 @@
dir = 8
},
/area/security/brig)
-"alG" = (
+"akj" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/turf/open/floor/plasteel,
+/turf/open/floor/plasteel/red/side,
/area/security/brig)
-"alH" = (
+"akk" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
@@ -5644,19 +4963,13 @@
dir = 2
},
/area/security/brig)
-"alI" = (
-/obj/machinery/light,
-/obj/machinery/door_timer{
- id = "Cell 1";
- name = "Cell 1";
- pixel_y = -32
- },
+"akl" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/turf/open/floor/plasteel/red/side,
+/turf/open/floor/plasteel,
/area/security/brig)
-"alJ" = (
+"akm" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -5665,89 +4978,76 @@
dir = 8
},
/area/security/brig)
-"alK" = (
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
-/turf/open/floor/plasteel/red/corner{
- dir = 2
+"akn" = (
+/obj/structure/table/wood,
+/obj/item/weapon/folder/blue,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/neutral/side{
+ dir = 4
},
-/area/security/brig)
-"alL" = (
+/area/crew_quarters/courtroom)
+"ako" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/machinery/door_timer{
id = "Cell 2";
- name = "Cell 2";
- pixel_y = -32
+ name = "Cell 2";
+ pixel_y = -32
},
/turf/open/floor/plasteel/red/side,
/area/security/brig)
-"alM" = (
+"akp" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/red/side,
+/area/security/brig)
+"akq" = (
/obj/machinery/camera{
c_tag = "Brig Central";
- dir = 1
+ dir = 1
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/machinery/door_timer{
id = "Cell 3";
- name = "Cell 3";
- pixel_y = -32
- },
-/turf/open/floor/plasteel/red/side,
-/area/security/brig)
-"alN" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+ name = "Cell 3";
+ pixel_y = -32
},
/turf/open/floor/plasteel/red/side,
/area/security/brig)
-"alO" = (
+"akr" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel/red/side{
dir = 9
},
/area/security/brig)
-"alP" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/red/side{
- dir = 5
- },
-/area/security/brig)
-"alQ" = (
-/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/door_timer{
- id = "Cell 4";
- name = "Cell 4";
- pixel_y = -32
- },
-/turf/open/floor/plasteel/red/side,
-/area/security/brig)
-"alR" = (
+"aks" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel/red/corner{
dir = 8
},
/area/security/brig)
-"alS" = (
+"akt" = (
+/obj/machinery/light,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
+/obj/machinery/door_timer{
+ id = "Cell 4";
+ name = "Cell 4";
+ pixel_y = -32
+ },
+/turf/open/floor/plasteel/red/side,
/area/security/brig)
-"alT" = (
+"aku" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
@@ -5755,19 +5055,26 @@
dir = 4
},
/area/security/brig)
-"alU" = (
+"akv" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/turf/closed/wall/r_wall,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
/area/security/brig)
-"alV" = (
+"akw" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/crew_quarters/courtroom)
-"alW" = (
+"akx" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/security/brig)
+"aky" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -5776,84 +5083,77 @@
dir = 8
},
/area/crew_quarters/courtroom)
-"alX" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
+"akz" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/floorgrime,
+/area/security/brig)
+"akA" = (
+/obj/structure/chair{
+ dir = 8;
+ name = "Defense"
},
-/turf/open/floor/plasteel/neutral/side{
- dir = 4
+/turf/open/floor/plasteel/green/side{
+ dir = 6
},
/area/crew_quarters/courtroom)
-"alY" = (
-/turf/open/floor/plasteel,
-/area/crew_quarters/courtroom)
-"alZ" = (
+"akB" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/open/floor/plating,
/area/maintenance/auxsolarport)
-"ama" = (
+"akC" = (
/obj/machinery/computer/shuttle/labor,
/obj/structure/reagent_dispensers/peppertank{
pixel_x = -31;
- pixel_y = 0
+ pixel_y = 0
},
/turf/open/floor/mineral/plastitanium,
/area/shuttle/labor)
-"amb" = (
-/obj/structure/chair/office/dark{
- dir = 1
- },
-/turf/open/floor/mineral/plastitanium,
+"akD" = (
+/turf/closed/wall/mineral/titanium,
/area/shuttle/labor)
-"amc" = (
+"akE" = (
/obj/structure/table,
/obj/item/weapon/folder/red,
/obj/item/weapon/restraints/handcuffs,
/turf/open/floor/mineral/plastitanium,
/area/shuttle/labor)
-"amd" = (
+"akF" = (
+/obj/structure/chair/office/dark{
+ dir = 1
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/labor)
+"akG" = (
/obj/structure/grille,
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
- pixel_y = 32
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 0;
+ pixel_y = 32
},
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/security/processing)
-"ame" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/security/processing)
-"amf" = (
+"akH" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
- on = 1
+ on = 1
},
/turf/open/floor/plasteel,
/area/security/processing)
-"amg" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+"akI" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/security/processing)
-"amh" = (
+"akJ" = (
/obj/machinery/light_switch{
pixel_x = 27
},
@@ -5862,874 +5162,876 @@
},
/turf/open/floor/plasteel,
/area/security/processing)
-"ami" = (
-/obj/machinery/door/airlock/glass_security{
- id_tag = null;
- name = "Evidence Storage";
- req_access_txt = "63"
+"akK" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/open/floor/plasteel/red/side,
-/area/security/brig)
-"amj" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/security/processing)
+"akL" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/meter,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint)
+"akM" = (
/obj/structure/grille,
/obj/structure/cable{
icon_state = "0-2";
- d2 = 2
+ d2 = 2
},
/obj/structure/cable{
icon_state = "0-4";
- d2 = 4
+ d2 = 4
},
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/security/brig)
-"amk" = (
-/obj/machinery/door/window/brigdoor{
- id = "Cell 1";
- name = "Cell 1";
- req_access_txt = "1"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/red/side,
-/area/security/brig)
-"aml" = (
+"akN" = (
/obj/structure/grille,
/obj/structure/cable{
icon_state = "0-4";
- d2 = 4
+ d2 = 4
},
/obj/structure/cable{
d2 = 8;
- icon_state = "0-8"
+ icon_state = "0-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/security/brig)
-"amm" = (
+"akO" = (
+/obj/machinery/door/window/brigdoor{
+ id = "Cell 1";
+ name = "Cell 1";
+ req_access_txt = "1"
+ },
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/closed/wall,
+/turf/open/floor/plasteel/red/side,
/area/security/brig)
-"amn" = (
+"akP" = (
/obj/structure/grille,
/obj/structure/cable{
d2 = 8;
- icon_state = "0-8"
+ icon_state = "0-8"
},
/obj/structure/cable{
icon_state = "0-4";
- d2 = 4
+ d2 = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/security/brig)
-"amo" = (
-/obj/machinery/door/window/brigdoor{
- id = "Cell 2";
- name = "Cell 2";
- req_access_txt = "1"
- },
+"akQ" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/open/floor/plasteel/red/side,
+/turf/closed/wall,
/area/security/brig)
-"amp" = (
+"akR" = (
/obj/machinery/door/window/brigdoor{
- id = "Cell 3";
- name = "Cell 3";
- req_access_txt = "1"
+ id = "Cell 2";
+ name = "Cell 2";
+ req_access_txt = "1"
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/open/floor/plasteel/red/side,
/area/security/brig)
-"amq" = (
+"akS" = (
/obj/structure/grille,
/obj/structure/cable{
d2 = 8;
- icon_state = "0-8"
+ icon_state = "0-8"
},
/obj/structure/cable{
icon_state = "0-4";
- d2 = 4
+ d2 = 4
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/security/brig)
-"amr" = (
+"akT" = (
+/obj/machinery/door/window/brigdoor{
+ id = "Cell 3";
+ name = "Cell 3";
+ req_access_txt = "1"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel/red/side,
+/area/security/brig)
+"akU" = (
/obj/machinery/door/airlock/glass_security{
name = "Brig Desk";
- req_access_txt = "1"
+ req_access_txt = "1"
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d2 = 8;
+ icon_state = "2-8"
},
/turf/open/floor/plasteel/black,
/area/security/brig)
-"ams" = (
+"akV" = (
/obj/structure/grille,
/obj/structure/cable{
d2 = 8;
- icon_state = "0-8"
+ icon_state = "0-8"
},
/obj/structure/cable{
icon_state = "0-4";
- d2 = 4
+ d2 = 4
},
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/security/brig)
-"amt" = (
+"akW" = (
/obj/machinery/door/airlock/glass_security{
cyclelinkeddir = 2;
- id_tag = "innerbrig";
- name = "Brig";
- req_access_txt = "63"
+ id_tag = "innerbrig";
+ name = "Brig";
+ req_access_txt = "63"
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/open/floor/plasteel/red/side{
- dir = 9
+ dir = 5
},
/area/security/brig)
-"amu" = (
+"akX" = (
/obj/machinery/door/airlock/glass_security{
cyclelinkeddir = 2;
- id_tag = "innerbrig";
- name = "Brig";
- req_access_txt = "63"
+ id_tag = "innerbrig";
+ name = "Brig";
+ req_access_txt = "63"
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/open/floor/plasteel/red/side{
- dir = 5
+ dir = 9
},
/area/security/brig)
-"amv" = (
+"akY" = (
/obj/structure/grille,
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 8;
+ icon_state = "1-8"
},
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/security/brig)
-"amw" = (
+"akZ" = (
+/obj/structure/grille,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/security/brig)
+"ala" = (
/obj/machinery/door/window/brigdoor{
id = "Cell 4";
- name = "Cell 4";
- req_access_txt = "1"
+ name = "Cell 4";
+ req_access_txt = "1"
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/red/side,
/area/security/brig)
-"amx" = (
-/obj/structure/grille,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/security/brig)
-"amy" = (
+"alb" = (
/obj/structure/chair{
dir = 4;
- name = "Prosecution"
+ name = "Prosecution"
},
/turf/open/floor/plasteel/red/side{
dir = 9
},
/area/crew_quarters/courtroom)
-"amz" = (
+"alc" = (
/obj/structure/table/wood,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/side{
dir = 8
},
/area/crew_quarters/courtroom)
-"amA" = (
+"ald" = (
/obj/machinery/holopad,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
/area/crew_quarters/courtroom)
-"amB" = (
+"ale" = (
/obj/structure/table/wood,
-/obj/item/weapon/folder/blue,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral/side{
- dir = 4
+ dir = 6
},
/area/crew_quarters/courtroom)
-"amC" = (
-/obj/structure/chair{
- dir = 8;
- name = "Defense"
- },
-/turf/open/floor/plasteel/green/side{
- dir = 5
+"alf" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
-/area/crew_quarters/courtroom)
-"amD" = (
+/turf/open/floor/plasteel/floorgrime,
+/area/security/brig)
+"alg" = (
/obj/structure/cable{
icon_state = "0-2";
- d2 = 2
+ d2 = 2
},
/obj/structure/lattice/catwalk,
/turf/open/space,
/area/solar/auxstarboard)
-"amE" = (
+"alh" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/door/airlock/external{
name = "Solar Maintenance";
- req_access = null;
- req_access_txt = "10; 13"
+ req_access = null;
+ req_access_txt = "10; 13"
},
/turf/open/floor/plating,
/area/maintenance/auxsolarport)
-"amF" = (
+"ali" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"amG" = (
+"alj" = (
/turf/open/floor/mineral/plastitanium,
/area/shuttle/labor)
-"amH" = (
-/obj/machinery/button/flasher{
- id = "gulagshuttleflasher";
- name = "Flash Control";
- pixel_x = 0;
- pixel_y = -26;
- req_access_txt = "1"
+"alk" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
+ dir = 1
},
-/turf/open/floor/mineral/plastitanium,
-/area/shuttle/labor)
-"amI" = (
+/turf/open/floor/plasteel,
+/area/atmos)
+"all" = (
/obj/machinery/mineral/labor_claim_console{
machinedir = 2;
- pixel_x = 30;
- pixel_y = 30
+ pixel_x = 30;
+ pixel_y = 30
},
/turf/open/floor/mineral/plastitanium,
/area/shuttle/labor)
-"amJ" = (
-/obj/machinery/door/airlock/titanium{
- name = "Labor Shuttle Airlock";
- req_access_txt = "2"
+"alm" = (
+/obj/machinery/button/flasher{
+ id = "gulagshuttleflasher";
+ name = "Flash Control";
+ pixel_x = 0;
+ pixel_y = -26;
+ req_access_txt = "1"
},
/turf/open/floor/mineral/plastitanium,
/area/shuttle/labor)
-"amK" = (
+"aln" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 4;
- name = "Labor Camp Shuttle Airlock";
- req_access_txt = "2";
- shuttledocked = 1
+ name = "Labor Camp Shuttle Airlock";
+ req_access_txt = "2";
+ shuttledocked = 1
},
/turf/open/floor/plating,
/area/security/processing)
-"amL" = (
-/turf/open/floor/plating,
-/area/security/processing)
-"amM" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 8;
- name = "Labor Camp Shuttle Airlock";
- req_access_txt = "2"
+"alo" = (
+/obj/machinery/door/airlock/titanium{
+ name = "Labor Shuttle Airlock";
+ req_access_txt = "2"
},
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/labor)
+"alp" = (
/turf/open/floor/plating,
/area/security/processing)
-"amN" = (
-/turf/open/floor/plasteel,
-/area/security/processing)
-"amO" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+"alq" = (
/turf/open/floor/plasteel,
/area/security/processing)
-"amP" = (
+"alr" = (
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
+ icon_state = "alarm0";
+ pixel_x = 24
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/security/processing)
-"amQ" = (
-/obj/structure/closet{
- name = "Evidence Closet"
- },
-/turf/open/floor/plasteel/red/side{
- dir = 9
+"als" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/security/brig)
-"amR" = (
-/obj/structure/closet{
- name = "Evidence Closet"
- },
-/turf/open/floor/plasteel/red/side{
- dir = 5
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/security/processing)
+"alt" = (
+/obj/structure/reagent_dispensers/peppertank,
+/turf/closed/wall/r_wall,
+/area/ai_monitored/security/armory)
+"alu" = (
+/obj/machinery/nuclearbomb/selfdestruct,
+/turf/open/floor/plasteel/vault{
+ dir = 8
},
-/area/security/brig)
-"amS" = (
+/area/ai_monitored/nuke_storage)
+"alv" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
/obj/item/device/radio/intercom{
desc = "Talk through this. It looks like it has been modified to not broadcast.";
- dir = 2;
- name = "Prison Intercom (General)";
- pixel_x = -25;
- pixel_y = -2;
- prison_radio = 1
+ dir = 2;
+ name = "Prison Intercom (General)";
+ pixel_x = -25;
+ pixel_y = -2;
+ prison_radio = 1
},
/turf/open/floor/plasteel/floorgrime,
/area/security/brig)
-"amT" = (
-/turf/open/floor/plasteel/floorgrime,
-/area/security/brig)
-"amU" = (
+"alw" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
+ external_pressure_bound = 101.325;
+ on = 1;
+ pressure_checks = 1
},
/obj/machinery/light/small{
dir = 4
},
/turf/open/floor/plasteel/floorgrime,
/area/security/brig)
-"amV" = (
+"alx" = (
+/turf/open/floor/plasteel/floorgrime,
+/area/security/brig)
+"aly" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
/obj/item/device/radio/intercom{
desc = "Talk through this. It looks like it has been modified to not broadcast.";
- dir = 2;
- name = "Prison Intercom (General)";
- pixel_x = -25;
- pixel_y = -2;
- prison_radio = 1
+ dir = 2;
+ name = "Prison Intercom (General)";
+ pixel_x = -25;
+ pixel_y = -2;
+ prison_radio = 1
},
/turf/open/floor/plasteel/floorgrime,
/area/security/brig)
-"amW" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel/floorgrime,
-/area/security/brig)
-"amX" = (
+"alz" = (
/obj/machinery/button/door{
id = "briggate";
- name = "Desk Shutters";
- pixel_x = -26;
- pixel_y = 6;
- req_access_txt = "0"
+ name = "Desk Shutters";
+ pixel_x = -26;
+ pixel_y = 6;
+ req_access_txt = "0"
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/button/flasher{
id = "brigentry";
- pixel_x = -28;
- pixel_y = -8
+ pixel_x = -28;
+ pixel_y = -8
},
/turf/open/floor/plasteel/black,
/area/security/brig)
-"amY" = (
-/obj/machinery/computer/secure_data,
-/turf/open/floor/plasteel/black,
-/area/security/brig)
-"amZ" = (
+"alA" = (
/obj/structure/table/reinforced,
/obj/machinery/door/poddoor/shutters/preopen{
id = "briggate";
- name = "security shutters"
+ name = "security shutters"
},
/obj/machinery/door/window/eastleft{
name = "Brig Desk";
- req_access_txt = "1"
+ req_access_txt = "1"
},
/obj/item/weapon/paper_bin{
pixel_x = -3;
- pixel_y = 7
+ pixel_y = 7
},
/obj/item/weapon/pen,
/turf/open/floor/plasteel/black,
/area/security/brig)
-"ana" = (
+"alB" = (
+/obj/machinery/computer/secure_data,
+/turf/open/floor/plasteel/black,
+/area/security/brig)
+"alC" = (
/turf/open/floor/plasteel/red/side{
dir = 9
},
/area/security/brig)
-"anb" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/floorgrime,
-/area/security/brig)
-"anc" = (
+"alD" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/crew_quarters/courtroom)
+"alE" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
+ external_pressure_bound = 101.325;
+ on = 1;
+ pressure_checks = 1
},
/obj/machinery/flasher{
id = "Cell 4";
- pixel_x = 28
+ pixel_x = 28
},
/obj/machinery/light/small{
dir = 4
},
/turf/open/floor/plasteel/floorgrime,
/area/security/brig)
-"and" = (
+"alF" = (
+/obj/machinery/atmospherics/components/unary/tank/air{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2)
+"alG" = (
/obj/structure/chair{
dir = 4;
- name = "Prosecution"
+ name = "Prosecution"
},
/turf/open/floor/plasteel/red/side{
dir = 10
},
/area/crew_quarters/courtroom)
-"ane" = (
+"alH" = (
+/turf/open/floor/plasteel/neutral/side,
+/area/crew_quarters/courtroom)
+"alI" = (
/obj/structure/table/wood,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/side{
dir = 10
},
/area/crew_quarters/courtroom)
-"anf" = (
-/turf/open/floor/plasteel/neutral/side,
-/area/crew_quarters/courtroom)
-"ang" = (
+"alJ" = (
/obj/item/device/radio/beacon,
/turf/open/floor/plasteel/neutral/side,
/area/crew_quarters/courtroom)
-"anh" = (
-/obj/structure/table/wood,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/neutral/side{
- dir = 6
+"alK" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/crew_quarters/courtroom)
-"ani" = (
-/obj/structure/chair{
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/fsmaint)
+"alL" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/power/apc{
dir = 8;
- name = "Defense"
+ name = "Courtroom APC";
+ pixel_x = -24;
+ pixel_y = 0
},
-/turf/open/floor/plasteel/green/side{
- dir = 6
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
/area/crew_quarters/courtroom)
-"anj" = (
+"alM" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/fsmaint)
+"alN" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/lattice/catwalk,
/turf/open/space,
/area/solar/auxstarboard)
-"ank" = (
-/turf/closed/wall,
-/area/maintenance/fsmaint2)
-"anl" = (
+"alO" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"anm" = (
-/turf/closed/wall/r_wall,
-/area/maintenance/auxsolarport)
-"ann" = (
+"alP" = (
+/turf/closed/wall,
+/area/maintenance/fsmaint2)
+"alQ" = (
/obj/machinery/power/solar_control{
id = "auxsolareast";
- name = "Fore Port Solar Control";
- track = 0
+ name = "Fore Port Solar Control";
+ track = 0
},
/obj/structure/cable{
icon_state = "0-4";
- d2 = 4
+ d2 = 4
},
/turf/open/floor/plating,
/area/maintenance/auxsolarport)
-"ano" = (
+"alR" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/auxsolarport)
+"alS" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/turf/open/floor/plating,
+/area/maintenance/auxsolarport)
+"alT" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/auxsolarport)
-"anp" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 32;
- pixel_y = 0
+ d2 = 8;
+ icon_state = "1-8"
},
/turf/open/floor/plating,
/area/maintenance/auxsolarport)
-"anq" = (
+"alU" = (
/turf/closed/wall,
/area/maintenance/fpmaint2)
-"anr" = (
+"alV" = (
/obj/effect/decal/cleanable/vomit,
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"ans" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"ant" = (
+"alW" = (
/obj/item/weapon/cigbutt/cigarbutt,
/obj/effect/decal/cleanable/blood/old,
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"anu" = (
+"alX" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/turf/open/floor/plasteel,
+/area/atmos)
+"alY" = (
/obj/machinery/door/airlock/titanium{
name = "Labor Shuttle Airlock";
- req_access_txt = "2"
+ req_access_txt = "2"
},
/turf/open/floor/plasteel/black,
/area/shuttle/labor)
-"anv" = (
+"alZ" = (
/obj/machinery/mineral/stacking_machine/laborstacker{
input_dir = 2;
- output_dir = 1
+ output_dir = 1
},
/turf/open/floor/plasteel/black,
/area/shuttle/labor)
-"anw" = (
+"ama" = (
+/mob/living/simple_animal/sloth/paperwork,
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"amb" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel,
+/area/security/processing)
+"amc" = (
/obj/machinery/computer/shuttle/labor,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
/area/security/processing)
-"anx" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
+"amd" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/security/processing)
-"any" = (
+"ame" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/security/processing)
-"anz" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/security/processing)
-"anA" = (
-/obj/structure/closet{
- name = "Evidence Closet"
- },
-/turf/open/floor/plasteel/red/side{
- dir = 8
- },
-/area/security/brig)
-"anB" = (
-/turf/open/floor/plasteel,
-/area/security/brig)
-"anC" = (
-/obj/structure/closet{
- name = "Evidence Closet"
- },
-/turf/open/floor/plasteel/red/side{
- dir = 4
- },
-/area/security/brig)
-"anD" = (
+"amf" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet,
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/flasher{
id = "Cell 1";
- pixel_x = -28
+ pixel_x = -28
},
/turf/open/floor/plasteel/floorgrime,
/area/security/brig)
-"anE" = (
+"amg" = (
/obj/structure/closet/secure_closet/brig{
id = "Cell 1";
- name = "Cell 1 Locker"
+ name = "Cell 1 Locker"
},
/turf/open/floor/plasteel/floorgrime,
/area/security/brig)
-"anF" = (
+"amh" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet,
/obj/machinery/flasher{
id = "Cell 2";
- pixel_x = -28
+ pixel_x = -28
},
/turf/open/floor/plasteel/floorgrime,
/area/security/brig)
-"anG" = (
+"ami" = (
/obj/structure/closet/secure_closet/brig{
id = "Cell 2";
- name = "Cell 2 Locker"
+ name = "Cell 2 Locker"
},
/turf/open/floor/plasteel/floorgrime,
/area/security/brig)
-"anH" = (
+"amj" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet,
/obj/machinery/flasher{
id = "Cell 3";
- pixel_x = -28
+ pixel_x = -28
},
/turf/open/floor/plasteel/floorgrime,
/area/security/brig)
-"anI" = (
+"amk" = (
/obj/structure/closet/secure_closet/brig{
id = "Cell 3";
- name = "Cell 3 Locker"
+ name = "Cell 3 Locker"
},
/turf/open/floor/plasteel/floorgrime,
/area/security/brig)
-"anJ" = (
+"aml" = (
/obj/machinery/light/small{
dir = 8
},
/obj/machinery/button/door{
desc = "A remote control switch for the medbay foyer.";
- id = "outerbrig";
- name = "Brig Exterior Doors Control";
- normaldoorcontrol = 1;
- pixel_x = -26;
- pixel_y = -5;
- req_access_txt = "63"
+ id = "outerbrig";
+ name = "Brig Exterior Doors Control";
+ normaldoorcontrol = 1;
+ pixel_x = -26;
+ pixel_y = -5;
+ req_access_txt = "63"
},
/obj/machinery/button/door{
desc = "A remote control switch for the medbay foyer.";
- id = "innerbrig";
- name = "Brig Interior Doors Control";
- normaldoorcontrol = 1;
- pixel_x = -26;
- pixel_y = 5;
- req_access_txt = "63"
+ id = "innerbrig";
+ name = "Brig Interior Doors Control";
+ normaldoorcontrol = 1;
+ pixel_x = -26;
+ pixel_y = 5;
+ req_access_txt = "63"
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/black,
-/area/security/brig)
-"anK" = (
-/obj/structure/chair/office/dark{
- dir = 4
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/open/floor/plasteel/black,
/area/security/brig)
-"anL" = (
+"amm" = (
/obj/structure/table/reinforced,
/obj/machinery/door/poddoor/shutters/preopen{
id = "briggate";
- name = "security shutters"
+ name = "security shutters"
},
/obj/machinery/door/window/eastright{
name = "Brig Desk";
- req_access_txt = "2"
+ req_access_txt = "2"
},
/obj/item/weapon/restraints/handcuffs,
/obj/item/device/radio/off,
/turf/open/floor/plasteel/black,
/area/security/brig)
-"anM" = (
+"amn" = (
+/obj/structure/chair/office/dark{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/security/brig)
+"amo" = (
/obj/machinery/flasher{
id = "brigentry";
- pixel_x = 28
+ pixel_x = 28
},
/turf/open/floor/plasteel/red/side{
dir = 5
},
/area/security/brig)
-"anN" = (
+"amp" = (
/obj/structure/closet/secure_closet/brig{
id = "Cell 4";
- name = "Cell 4 Locker"
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/security/brig)
-"anO" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ name = "Cell 4 Locker"
},
/turf/open/floor/plasteel/floorgrime,
/area/security/brig)
-"anP" = (
+"amq" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet,
/obj/item/device/radio/intercom{
desc = "Talk through this. It looks like it has been modified to not broadcast.";
- dir = 2;
- name = "Prison Intercom (General)";
- pixel_x = 25;
- pixel_y = -2;
- prison_radio = 1
+ dir = 2;
+ name = "Prison Intercom (General)";
+ pixel_x = 25;
+ pixel_y = -2;
+ prison_radio = 1
},
/turf/open/floor/plasteel/floorgrime,
/area/security/brig)
-"anQ" = (
+"amr" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/crew_quarters/courtroom)
-"anR" = (
+"ams" = (
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/crew_quarters/courtroom)
-"anS" = (
+"amt" = (
/obj/machinery/door/airlock/glass{
name = "Courtroom";
- req_access_txt = "42"
+ req_access_txt = "42"
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/courtroom)
-"anT" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
+"amu" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ external_pressure_bound = 101.325;
+ on = 1;
+ pressure_checks = 1
+ },
+/turf/open/floor/plasteel/black,
/area/crew_quarters/courtroom)
-"anU" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/maintenance/auxsolarstarboard)
-"anV" = (
+"amv" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/door/airlock/external{
cyclelinkeddir = 2;
- name = "Solar Maintenance";
- req_access = null;
- req_access_txt = "10; 13"
+ name = "Solar Maintenance";
+ req_access = null;
+ req_access_txt = "10; 13"
},
/turf/open/floor/plating,
/area/maintenance/auxsolarstarboard)
-"anW" = (
+"amw" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/maintenance/auxsolarstarboard)
+"amx" = (
/obj/structure/chair{
dir = 1
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"anX" = (
+"amy" = (
/obj/structure/chair/stool{
pixel_y = 8
},
/turf/open/floor/plating,
/area/maintenance/auxsolarport)
-"anY" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/auxsolarport)
-"anZ" = (
+"amz" = (
/obj/structure/cable{
d2 = 8;
- icon_state = "0-8"
+ icon_state = "0-8"
},
/obj/machinery/power/terminal,
/obj/machinery/light/small{
@@ -6737,37 +6039,45 @@
},
/turf/open/floor/plating,
/area/maintenance/auxsolarport)
-"aoa" = (
-/obj/machinery/atmospherics/components/unary/tank/air{
- dir = 2
+"amA" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/auxsolarport)
+"amB" = (
+/obj/structure/chair{
+ dir = 4
},
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"amC" = (
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"aob" = (
+"amD" = (
/obj/structure/sink{
icon_state = "sink";
- dir = 8;
- pixel_x = -12;
- pixel_y = 2
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
},
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"aoc" = (
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"aod" = (
+"amE" = (
/obj/structure/bed,
/obj/effect/landmark{
name = "xeno_spawn";
- pixel_x = -1
+ pixel_x = -1
},
/obj/item/weapon/bedsheet,
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"aoe" = (
+"amF" = (
/obj/machinery/computer/slot_machine{
balance = 15;
- money = 500
+ money = 500
},
/obj/item/weapon/coin/iron,
/obj/item/weapon/coin/diamond,
@@ -6775,251 +6085,255 @@
/obj/item/weapon/coin/diamond,
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"aof" = (
+"amG" = (
/obj/structure/chair{
dir = 1
},
/obj/item/toy/sword,
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"aog" = (
+"amH" = (
/obj/structure/chair{
dir = 1
},
/obj/structure/noticeboard{
dir = 8;
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27;
+ pixel_y = 0
},
/obj/item/trash/plate,
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"aoh" = (
+"amI" = (
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/labor)
-"aoi" = (
+"amJ" = (
/obj/machinery/mineral/labor_claim_console{
machinedir = 1;
- pixel_x = 30;
- pixel_y = 0
+ pixel_x = 30;
+ pixel_y = 0
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/labor)
-"aoj" = (
+"amK" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";
- name = "KEEP CLEAR: DOCKING AREA";
- pixel_y = 0
+ name = "KEEP CLEAR: DOCKING AREA";
+ pixel_y = 0
},
/turf/closed/wall,
/area/security/processing)
-"aok" = (
+"amL" = (
+/obj/structure/grille,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/security/processing)
+"amM" = (
/obj/machinery/door/airlock/glass_security{
name = "Prisoner Processing";
- req_access_txt = "2"
+ req_access_txt = "2"
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/security/processing)
-"aol" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/security/processing)
-"aom" = (
-/obj/structure/closet{
- name = "Evidence Closet"
+"amN" = (
+/obj/structure/table,
+/obj/item/clothing/glasses/sunglasses{
+ pixel_x = 3;
+ pixel_y = 3
},
-/turf/open/floor/plasteel/red/side{
- dir = 10
+/obj/item/clothing/glasses/sunglasses{
+ pixel_x = 3;
+ pixel_y = 3
},
-/area/security/brig)
-"aon" = (
-/obj/machinery/light,
-/turf/open/floor/plasteel/red/side,
-/area/security/brig)
-"aoo" = (
-/obj/structure/closet{
- name = "Evidence Closet"
+/obj/item/clothing/ears/earmuffs{
+ pixel_x = -3;
+ pixel_y = -2
},
-/turf/open/floor/plasteel/red/side{
- dir = 6
+/obj/item/clothing/ears/earmuffs{
+ pixel_x = -3;
+ pixel_y = -2
},
-/area/security/brig)
-"aop" = (
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden)
+"amO" = (
+/turf/open/space,
+/obj/machinery/porta_turret/syndicate{
+ dir = 9
+ },
+/turf/closed/wall/mineral/plastitanium{
+ dir = 8;
+ icon_state = "diagonalWall3"
+ },
+/area/shuttle/syndicate)
+"amP" = (
+/obj/structure/grille,
+/obj/machinery/door/poddoor/shutters{
+ id = "syndieshutters";
+ name = "blast shutters"
+ },
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/shuttle/syndicate)
+"amQ" = (
/obj/structure/cable{
icon_state = "0-4";
- d2 = 4
+ d2 = 4
},
/obj/structure/grille,
/obj/structure/cable,
/obj/machinery/door/poddoor/preopen{
id = "Secure Gate";
- name = "brig shutters"
+ name = "brig shutters"
},
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/security/brig)
-"aoq" = (
+"amR" = (
/obj/structure/cable{
icon_state = "0-4";
- d2 = 4
+ d2 = 4
},
/obj/structure/cable{
d2 = 8;
- icon_state = "0-8"
+ icon_state = "0-8"
},
/obj/structure/grille,
/obj/machinery/door/poddoor/preopen{
id = "Secure Gate";
- name = "brig shutters"
+ name = "brig shutters"
},
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/security/brig)
-"aor" = (
+"amS" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/closed/wall/r_wall,
/area/security/brig)
-"aos" = (
+"amT" = (
/obj/structure/table/reinforced,
/obj/machinery/door/poddoor/shutters/preopen{
id = "briggate";
- name = "security shutters"
+ name = "security shutters"
},
/obj/machinery/door/window/southleft{
name = "Brig Desk";
- req_access_txt = "1"
+ req_access_txt = "1"
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 8;
+ icon_state = "1-8"
},
/turf/open/floor/plasteel/black,
/area/security/brig)
-"aot" = (
+"amU" = (
+/obj/structure/grille,
+/obj/machinery/door/poddoor/preopen{
+ id = "briggate";
+ name = "security blast door"
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/security/brig)
+"amV" = (
/obj/structure/table/reinforced,
/obj/machinery/door/poddoor/shutters/preopen{
id = "briggate";
- name = "security shutters"
+ name = "security shutters"
},
/obj/machinery/door/window/southleft{
base_state = "right";
- icon_state = "right";
- name = "Brig Desk";
- req_access_txt = "1"
+ icon_state = "right";
+ name = "Brig Desk";
+ req_access_txt = "1"
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/black,
-/area/security/brig)
-"aou" = (
-/obj/structure/grille,
-/obj/machinery/door/poddoor/preopen{
- id = "briggate";
- name = "security blast door"
- },
-/obj/structure/cable{
d2 = 8;
- icon_state = "0-8"
+ icon_state = "4-8"
},
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
+/turf/open/floor/plasteel/black,
/area/security/brig)
-"aov" = (
+"amW" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_security{
cyclelinkeddir = 1;
- id_tag = "outerbrig";
- name = "Brig";
- req_access_txt = "63"
+ id_tag = "outerbrig";
+ name = "Brig";
+ req_access_txt = "63"
},
/turf/open/floor/plasteel/red/side{
- dir = 9
+ dir = 5
},
/area/security/brig)
-"aow" = (
+"amX" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_security{
cyclelinkeddir = 1;
- id_tag = "outerbrig";
- name = "Brig";
- req_access_txt = "63"
+ id_tag = "outerbrig";
+ name = "Brig";
+ req_access_txt = "63"
},
/turf/open/floor/plasteel/red/side{
- dir = 5
+ dir = 9
},
/area/security/brig)
-"aox" = (
+"amY" = (
/obj/structure/chair{
dir = 1
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/courtroom)
-"aoy" = (
+"amZ" = (
/obj/structure/chair{
dir = 1
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/black,
/area/crew_quarters/courtroom)
-"aoz" = (
+"ana" = (
/obj/structure/chair{
dir = 1
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/black,
/area/crew_quarters/courtroom)
-"aoA" = (
+"anb" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/power/apc{
- dir = 8;
- name = "Courtroom APC";
- pixel_x = -24;
- pixel_y = 0
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
+/obj/machinery/meter,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/crew_quarters/courtroom)
-"aoB" = (
-/obj/structure/disposalpipe/segment,
+/area/maintenance/fsmaint)
+"anc" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"aoC" = (
+"and" = (
/obj/machinery/light/small{
dir = 4
},
@@ -7027,116 +6341,128 @@
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"aoD" = (
+"ane" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/open/floor/plating,
/area/maintenance/auxsolarstarboard)
-"aoE" = (
+"anf" = (
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aoF" = (
-/turf/closed/wall,
-/area/mining_construction)
-"aoG" = (
+"ang" = (
/obj/structure/cable{
icon_state = "0-4";
- d2 = 4
+ d2 = 4
},
/obj/machinery/power/apc{
dir = 8;
- name = "Fore Port Solar APC";
- pixel_x = -25;
- pixel_y = 3
+ name = "Fore Port Solar APC";
+ pixel_x = -25;
+ pixel_y = 3
},
/obj/machinery/camera{
c_tag = "Fore Port Solar Control";
- dir = 1
+ dir = 1
},
/turf/open/floor/plating,
/area/maintenance/auxsolarport)
-"aoH" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
+"anh" = (
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d2 = 8;
+ icon_state = "0-8"
},
+/obj/machinery/power/smes,
/turf/open/floor/plating,
/area/maintenance/auxsolarport)
-"aoI" = (
+"ani" = (
/obj/structure/cable{
+ d1 = 4;
d2 = 8;
- icon_state = "0-8"
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/machinery/power/smes,
/turf/open/floor/plating,
/area/maintenance/auxsolarport)
-"aoJ" = (
+"anj" = (
/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{
icon_state = "manifold";
- dir = 8
+ dir = 8
},
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"aoK" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- icon_state = "intact";
- dir = 9
+"ank" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
},
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"aoL" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
+"anl" = (
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ icon_state = "intact";
+ dir = 9
},
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"aoM" = (
+"anm" = (
/obj/item/trash/sosjerky,
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"aoN" = (
+"ann" = (
/obj/item/weapon/electronics/airalarm,
/obj/item/weapon/circuitboard/machine/seed_extractor,
/obj/structure/table,
/obj/effect/spawner/lootdrop/maintenance{
lootcount = 4;
- name = "4maintenance loot spawner"
+ name = "4maintenance loot spawner"
},
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"aoO" = (
+"ano" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"aoP" = (
+"anp" = (
/obj/item/weapon/cigbutt,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"aoQ" = (
+"anq" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape)
+"anr" = (
/obj/structure/chair{
dir = 8
},
/obj/machinery/flasher{
id = "gulagshuttleflasher";
- pixel_x = 25
+ pixel_x = 25
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/labor)
-"aoR" = (
+"ans" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 5
+ },
+/area/security/processing)
+"ant" = (
/obj/machinery/gulag_item_reclaimer{
pixel_y = 24
},
@@ -7145,20 +6471,28 @@
},
/turf/open/floor/plasteel,
/area/security/processing)
-"aoS" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
+"anu" = (
+/obj/machinery/button/door{
+ desc = "A remote control switch for the exit.";
+ id = "laborexit";
+ name = "exit button";
+ normaldoorcontrol = 1;
+ pixel_x = 26;
+ pixel_y = -6;
+ req_access_txt = "0"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
},
/turf/open/floor/plasteel/red/side{
dir = 5
},
/area/security/processing)
-"aoT" = (
+"anv" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -7168,45 +6502,28 @@
dir = 5
},
/area/security/processing)
-"aoU" = (
-/obj/machinery/button/door{
- desc = "A remote control switch for the exit.";
- id = "laborexit";
- name = "exit button";
- normaldoorcontrol = 1;
- pixel_x = 26;
- pixel_y = -6;
- req_access_txt = "0"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel/red/side{
- dir = 5
- },
-/area/security/processing)
-"aoV" = (
+"anw" = (
/turf/open/floor/plasteel/red/corner{
dir = 1
},
/area/hallway/primary/fore)
-"aoW" = (
+"anx" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
- pixel_y = 32
+ icon_state = "shock";
+ name = "HIGH VOLTAGE";
+ pixel_y = 32
},
/turf/open/floor/plasteel/red/corner{
dir = 1
},
/area/hallway/primary/fore)
-"aoX" = (
+"any" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
- pixel_y = 32
+ icon_state = "shock";
+ name = "HIGH VOLTAGE";
+ pixel_y = 32
},
/obj/machinery/light{
dir = 1
@@ -7215,10 +6532,15 @@
dir = 1
},
/area/hallway/primary/fore)
-"aoY" = (
+"anz" = (
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"aoZ" = (
+"anA" = (
+/turf/open/floor/plasteel/red/corner{
+ dir = 4
+ },
+/area/hallway/primary/fore)
+"anB" = (
/obj/machinery/light{
dir = 1
},
@@ -7229,347 +6551,288 @@
dir = 4
},
/area/hallway/primary/fore)
-"apa" = (
-/turf/open/floor/plasteel/red/corner{
- dir = 4
- },
-/area/hallway/primary/fore)
-"apb" = (
+"anC" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
/turf/open/floor/plating,
/area/crew_quarters/courtroom)
-"apc" = (
-/obj/structure/disposalpipe/segment,
+"anD" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint)
-"apd" = (
/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"ape" = (
+"anE" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 4;
- req_access_txt = "13"
+ req_access_txt = "13"
},
/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"apf" = (
+"anF" = (
+/turf/open/floor/plating,
+/area/maintenance/fsmaint)
+"anG" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
- pixel_y = 32
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 0;
+ pixel_y = 32
},
/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"apg" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 1;
- name = "Solar Maintenance";
- req_access = null;
- req_access_txt = "10; 13"
- },
-/turf/open/floor/plating,
-/area/maintenance/auxsolarstarboard)
-"aph" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/shuttle/auxillary_base)
-"api" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/shuttle/auxillary_base)
-"apj" = (
-/obj/structure/closet/secure_closet/miner{
- locked = 0
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 5
+"anH" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'HIGH VOLTAGE'";
+ icon_state = "shock";
+ name = "HIGH VOLTAGE";
+ pixel_y = 0
},
-/turf/open/floor/plating,
-/area/shuttle/auxillary_base)
-"apk" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/auxsolarport)
+"anI" = (
/obj/machinery/door/airlock/engineering{
icon_state = "door_closed";
- locked = 0;
- name = "Fore Port Solar Access";
- req_access_txt = "10"
+ locked = 0;
+ name = "Fore Port Solar Access";
+ req_access_txt = "10"
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/open/floor/plating,
/area/maintenance/auxsolarport)
-"apl" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
- pixel_y = 0
- },
-/turf/closed/wall/r_wall,
-/area/maintenance/auxsolarport)
-"apm" = (
+"anJ" = (
/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
icon_state = "intact";
- dir = 1
+ dir = 1
},
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"apn" = (
+"anK" = (
/obj/effect/decal/cleanable/egg_smudge,
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"apo" = (
+"anL" = (
/obj/structure/table,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"app" = (
+"anM" = (
/obj/structure/closet/crate,
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/labor)
-"apq" = (
+"anN" = (
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 4;
+ name = "Labor Camp Shuttle Airlock";
+ shuttledocked = 1
+ },
+/turf/open/floor/plating,
+/area/security/processing)
+"anO" = (
/obj/machinery/door/airlock/titanium{
id_tag = "prisonshuttle";
- name = "Labor Shuttle Airlock"
+ name = "Labor Shuttle Airlock"
},
/obj/docking_port/mobile{
dir = 8;
- dwidth = 2;
- height = 5;
- id = "laborcamp";
- name = "labor camp shuttle";
- port_angle = 90;
- width = 9
+ dwidth = 2;
+ height = 5;
+ id = "laborcamp";
+ name = "labor camp shuttle";
+ port_angle = 90;
+ width = 9
},
/obj/docking_port/stationary{
dir = 8;
- dwidth = 2;
- height = 5;
- id = "laborcamp_home";
- name = "fore bay 1";
- width = 9
+ dwidth = 2;
+ height = 5;
+ id = "laborcamp_home";
+ name = "fore bay 1";
+ width = 9
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/labor)
-"apr" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 4;
- name = "Labor Camp Shuttle Airlock";
- shuttledocked = 1
- },
-/turf/open/floor/plating,
-/area/security/processing)
-"aps" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 8;
- name = "Labor Camp Shuttle Airlock"
- },
-/turf/open/floor/plating,
-/area/security/processing)
-"apt" = (
+"anP" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/security{
id_tag = "laborexit";
- name = "Labor Shuttle";
- req_access = null;
- req_access_txt = "63"
+ name = "Labor Shuttle";
+ req_access = null;
+ req_access_txt = "63"
},
/turf/open/floor/plasteel,
/area/security/processing)
-"apu" = (
+"anQ" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
- pixel_y = 32
+ icon_state = "shock";
+ name = "HIGH VOLTAGE";
+ pixel_y = 32
},
/obj/machinery/light{
dir = 1
},
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"apv" = (
+"anR" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"apw" = (
+"anS" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"apx" = (
+"anT" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
- on = 1
+ on = 1
},
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"apy" = (
+"anU" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
name = "Courtroom"
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/courtroom)
-"apz" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/courtroom)
-"apA" = (
+"anV" = (
/obj/machinery/light/small,
/turf/open/floor/plasteel/black,
/area/crew_quarters/courtroom)
-"apB" = (
-/obj/machinery/airalarm{
+"anW" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/courtroom)
-"apC" = (
+"anX" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 5;
- pixel_y = -32
+ pixel_y = -32
},
/obj/machinery/camera{
c_tag = "Courtroom South";
- dir = 1
+ dir = 1
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/courtroom)
-"apD" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
+"anY" = (
+/obj/machinery/airalarm{
dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
+ icon_state = "alarm0";
+ pixel_y = -22
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/courtroom)
-"apE" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
+"anZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
},
-/turf/open/floor/plating,
-/area/maintenance/fsmaint)
-"apF" = (
-/obj/structure/disposalpipe/segment,
/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"apG" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
+"aoa" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
},
/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"apH" = (
+"aob" = (
+/obj/machinery/light_switch{
+ pixel_x = -20;
+ pixel_y = 0
+ },
+/obj/item/device/radio/intercom{
+ pixel_y = 25
+ },
+/turf/open/floor/wood,
+/area/lawoffice)
+"aoc" = (
+/obj/machinery/airalarm{
+ pixel_y = 23
+ },
+/turf/open/floor/wood,
+/area/lawoffice)
+"aod" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/closed/wall,
/area/maintenance/fsmaint)
-"apI" = (
+"aoe" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
/turf/closed/wall,
/area/maintenance/fsmaint)
-"apJ" = (
+"aof" = (
/turf/closed/wall/r_wall,
/area/maintenance/auxsolarstarboard)
-"apK" = (
-/obj/machinery/power/solar_control{
- id = "auxsolareast";
- name = "Fore Starboard Solar Control";
- track = 0
+"aog" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
/turf/open/floor/plating,
/area/maintenance/auxsolarstarboard)
-"apL" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+"aoh" = (
+/obj/machinery/power/solar_control{
+ id = "auxsolareast";
+ name = "Fore Starboard Solar Control";
+ track = 0
},
/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ icon_state = "0-4";
+ d2 = 4
},
/turf/open/floor/plating,
/area/maintenance/auxsolarstarboard)
-"apM" = (
+"aoi" = (
/obj/structure/rack,
/obj/item/clothing/mask/gas,
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
- pixel_y = 32
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 0;
+ pixel_y = 32
},
/obj/item/device/multitool,
/turf/open/floor/plating,
/area/maintenance/auxsolarstarboard)
-"apN" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/shuttle/auxillary_base)
-"apO" = (
-/turf/open/floor/plating,
-/area/shuttle/auxillary_base)
-"apP" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/shuttle/auxillary_base)
-"apQ" = (
+"aoj" = (
/obj/machinery/camera{
c_tag = "Fore Port Solar Access"
},
@@ -7578,84 +6841,98 @@
},
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"apR" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+"aok" = (
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ icon_state = "intact";
+ dir = 6
},
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"apS" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- icon_state = "intact";
- dir = 6
+"aol" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"apT" = (
+"aom" = (
/obj/machinery/atmospherics/components/binary/valve{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"apU" = (
+"aon" = (
/obj/structure/chair,
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"apV" = (
+"aoo" = (
/obj/structure/rack,
/obj/item/weapon/circuitboard/machine/monkey_recycler,
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"apW" = (
+"aop" = (
/obj/structure/shuttle/engine/heater,
/obj/structure/window/reinforced{
dir = 1;
- layer = 2.9
+ layer = 2.9
},
/turf/open/floor/plating/airless,
/area/shuttle/labor)
-"apX" = (
+"aoq" = (
/obj/structure/grille,
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
- pixel_y = -32
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 0;
+ pixel_y = -32
},
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/security/processing)
-"apY" = (
+"aor" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 6
+ },
+/area/security/processing)
+"aos" = (
/obj/structure/closet/emcloset,
/obj/effect/turf_decal/stripes/line{
dir = 10
},
/turf/open/floor/plasteel,
/area/security/processing)
-"apZ" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
+"aot" = (
+/obj/machinery/light{
dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ icon_state = "tube1"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
/turf/open/floor/plasteel/red/side{
dir = 6
},
/area/security/processing)
-"aqa" = (
+"aou" = (
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 4;
+ icon_state = "1-4"
},
/obj/machinery/camera{
c_tag = "Labor Shuttle Dock South";
- dir = 1
+ dir = 1
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
@@ -7664,128 +6941,135 @@
dir = 6
},
/area/security/processing)
-"aqb" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel/red/side{
- dir = 6
- },
-/area/security/processing)
-"aqc" = (
+"aov" = (
/turf/open/floor/plasteel/red/corner{
dir = 8
},
/area/hallway/primary/fore)
-"aqd" = (
-/obj/machinery/camera{
- c_tag = "Fore Primary Hallway West";
- dir = 1
- },
+"aow" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/red/corner{
dir = 8
},
/area/hallway/primary/fore)
-"aqe" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+"aox" = (
+/obj/machinery/camera{
+ c_tag = "Fore Primary Hallway West";
+ dir = 1
+ },
/turf/open/floor/plasteel/red/corner{
dir = 8
},
/area/hallway/primary/fore)
-"aqf" = (
+"aoy" = (
/obj/machinery/navbeacon{
codes_txt = "patrol;next_patrol=EVA";
- location = "Security"
+ location = "Security"
},
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"aqg" = (
+"aoz" = (
/turf/open/floor/plasteel/red/corner{
dir = 2
},
/area/hallway/primary/fore)
-"aqh" = (
+"aoA" = (
/obj/item/device/radio/intercom{
name = "Station Intercom (General)";
- pixel_y = -29
+ pixel_y = -29
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/red/corner{
dir = 2
},
/area/hallway/primary/fore)
-"aqi" = (
+"aoB" = (
/obj/machinery/firealarm{
dir = 1;
- pixel_y = -24
+ pixel_y = -24
},
/turf/open/floor/plasteel/red/corner{
dir = 2
},
/area/hallway/primary/fore)
-"aqj" = (
+"aoC" = (
+/obj/machinery/vending/coffee,
+/turf/open/floor/plasteel/red/corner{
+ dir = 2
+ },
+/area/hallway/primary/fore)
+"aoD" = (
/obj/machinery/camera{
c_tag = "Fore Primary Hallway East";
- dir = 1
+ dir = 1
},
/obj/structure/extinguisher_cabinet{
pixel_x = 5;
- pixel_y = -32
- },
-/turf/open/floor/plasteel/red/corner{
- dir = 2
+ pixel_y = -32
},
-/area/hallway/primary/fore)
-"aqk" = (
-/obj/machinery/vending/coffee,
/turf/open/floor/plasteel/red/corner{
dir = 2
},
/area/hallway/primary/fore)
-"aql" = (
-/obj/machinery/vending/snack,
+"aoE" = (
+/obj/machinery/vending/cigarette,
/turf/open/floor/plasteel/red/corner{
dir = 2
},
/area/hallway/primary/fore)
-"aqm" = (
-/obj/machinery/vending/cigarette,
+"aoF" = (
+/obj/machinery/vending/snack/random,
/turf/open/floor/plasteel/red/corner{
dir = 2
},
/area/hallway/primary/fore)
-"aqn" = (
+"aoG" = (
/obj/structure/table,
/obj/machinery/firealarm{
dir = 1;
- pixel_y = -24
+ pixel_y = -24
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/courtroom)
-"aqo" = (
+"aoH" = (
/obj/structure/table,
/obj/item/weapon/book/manual/wiki/security_space_law{
pixel_x = -3;
- pixel_y = 5
+ pixel_y = 5
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/courtroom)
-"aqp" = (
+"aoI" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "Fitness Room APC";
+ pixel_x = 0;
+ pixel_y = -24
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/crew_quarters/fitness)
+"aoJ" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"aqq" = (
+"aoK" = (
/obj/machinery/light/small{
dir = 8
},
@@ -7797,35 +7081,35 @@
},
/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"aqr" = (
+"aoL" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 1;
- name = "Air Out";
- on = 1
+ name = "Air Out";
+ on = 1
},
/obj/effect/turf_decal/stripes/line{
dir = 5
},
/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"aqs" = (
-/obj/structure/chair/stool{
- pixel_y = 8
+"aoM" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
/turf/open/floor/plating,
/area/maintenance/auxsolarstarboard)
-"aqt" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+"aoN" = (
+/obj/structure/chair/stool{
+ pixel_y = 8
},
/turf/open/floor/plating,
/area/maintenance/auxsolarstarboard)
-"aqu" = (
+"aoO" = (
/obj/structure/cable{
d2 = 8;
- icon_state = "0-8"
+ icon_state = "0-8"
},
/obj/machinery/power/terminal,
/obj/machinery/light/small{
@@ -7833,159 +7117,157 @@
},
/turf/open/floor/plating,
/area/maintenance/auxsolarstarboard)
-"aqv" = (
+"aoP" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aqw" = (
+"aoQ" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aqx" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/mining_construction)
-"aqy" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+"aoR" = (
+/obj/machinery/atmospherics/components/trinary/filter{
dir = 4
},
-/obj/machinery/portable_atmospherics/canister/air,
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"aqz" = (
-/obj/machinery/atmospherics/components/trinary/filter{
+"aoS" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 4
},
+/obj/machinery/portable_atmospherics/canister/air,
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"aqA" = (
+"aoT" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 8
},
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"aqB" = (
+"aoU" = (
/obj/structure/bed,
/obj/effect/landmark{
name = "xeno_spawn";
- pixel_x = -1
+ pixel_x = -1
},
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"aqC" = (
-/turf/open/space,
-/area/space/nearstation)
-"aqD" = (
-/obj/structure/lattice,
+"aoV" = (
/turf/open/space,
/area/space/nearstation)
-"aqE" = (
-/turf/open/floor/plasteel/airless,
-/area/space/nearstation)
-"aqF" = (
+"aoW" = (
/obj/structure/table,
/obj/item/weapon/stamp,
/obj/item/weapon/poster/legit,
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"aqG" = (
+"aoX" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"aqH" = (
+"aoY" = (
/obj/structure/shuttle/engine/propulsion,
/turf/open/floor/plating/airless,
/area/shuttle/labor)
-"aqI" = (
+"aoZ" = (
+/obj/machinery/atmospherics/components/binary/valve/digital{
+ name = "Waste Release"
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"apa" = (
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/turf/open/floor/plasteel,
+/area/atmos)
+"apb" = (
/obj/structure/plasticflaps,
/turf/open/floor/plating,
/area/security/processing)
-"aqJ" = (
+"apc" = (
/obj/machinery/door/airlock/maintenance{
name = "Security Maintenance";
- req_access_txt = "2"
+ req_access_txt = "2"
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
/turf/open/floor/plating,
/area/security/processing)
-"aqK" = (
+"apd" = (
/turf/closed/wall,
-/area/security/vacantoffice2)
-"aqL" = (
+/area/security/detectives_office)
+"ape" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering{
name = "Vacant Office B";
- req_access_txt = "32"
+ req_access_txt = "32"
},
/turf/open/floor/plating,
/area/security/vacantoffice2)
-"aqM" = (
+"apf" = (
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall,
+/area/security/detectives_office)
+"apg" = (
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/fpmaint)
-"aqN" = (
+"aph" = (
/turf/closed/wall,
/area/lawoffice)
-"aqO" = (
+"api" = (
/obj/machinery/door/airlock{
name = "Law Office";
- req_access_txt = "38"
+ req_access_txt = "38"
},
/turf/open/floor/plasteel,
/area/lawoffice)
-"aqP" = (
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/red/corner{
- dir = 1
- },
-/area/hallway/primary/fore)
-"aqQ" = (
+"apj" = (
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"aqR" = (
+"apk" = (
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/red/corner{
- dir = 4
+ dir = 1
},
/area/hallway/primary/fore)
-"aqS" = (
+"apl" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
/turf/closed/wall,
/area/maintenance/fsmaint)
-"aqT" = (
+"apm" = (
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/red/corner{
+ dir = 4
+ },
+/area/hallway/primary/fore)
+"apn" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/closed/wall,
/area/maintenance/fsmaint)
-"aqU" = (
+"apo" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
/turf/closed/wall,
/area/maintenance/fsmaint)
-"aqV" = (
-/obj/machinery/space_heater,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint)
-"aqW" = (
+"app" = (
/obj/structure/disposalpipe/segment{
dir = 4;
- icon_state = "pipe-c"
+ icon_state = "pipe-c"
},
/obj/structure/reagent_dispensers/fueltank,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -7993,25 +7275,22 @@
},
/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"aqX" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/reagent_dispensers/watertank,
+"apq" = (
+/obj/machinery/space_heater,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"aqY" = (
+"apr" = (
/obj/structure/cable{
icon_state = "0-2";
- d2 = 2
+ d2 = 2
},
/obj/machinery/power/apc{
dir = 1;
- name = "Dormitory Maintenance APC";
- pixel_y = 24
+ name = "Dormitory Maintenance APC";
+ pixel_y = 24
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -8021,54 +7300,57 @@
},
/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"aqZ" = (
+"aps" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/structure/reagent_dispensers/watertank,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"ara" = (
+"apt" = (
/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+ dir = 4
},
-/obj/machinery/meter,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"arb" = (
+"apu" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
},
/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"arc" = (
-/obj/machinery/door/airlock/atmos{
- name = "Atmospherics Maintenance";
- req_access_txt = "12;24"
+"apv" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"ard" = (
+"apw" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 4;
- name = "Air In";
- on = 1
+ name = "Air In";
+ on = 1
},
/obj/effect/landmark{
name = "blobstart"
@@ -8078,7 +7360,17 @@
},
/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"are" = (
+"apx" = (
+/obj/machinery/door/airlock/atmos{
+ name = "Atmospherics Maintenance";
+ req_access_txt = "12;24"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fsmaint)
+"apy" = (
/obj/item/weapon/wrench,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
@@ -8088,228 +7380,211 @@
},
/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"arf" = (
+"apz" = (
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/machinery/power/apc{
- dir = 8;
- name = "Fore Starboard Solar APC";
- pixel_x = -25;
- pixel_y = 3
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/open/floor/plating,
/area/maintenance/auxsolarstarboard)
-"arg" = (
+"apA" = (
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ icon_state = "0-4";
+ d2 = 4
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Fore Starboard Solar APC";
+ pixel_x = -25;
+ pixel_y = 3
},
/turf/open/floor/plating,
/area/maintenance/auxsolarstarboard)
-"arh" = (
+"apB" = (
/obj/machinery/camera{
c_tag = "Fore Starboard Solars";
- dir = 1
+ dir = 1
},
/obj/structure/cable{
d2 = 8;
- icon_state = "0-8"
+ icon_state = "0-8"
},
/obj/machinery/power/smes,
/turf/open/floor/plating,
/area/maintenance/auxsolarstarboard)
-"ari" = (
+"apC" = (
/turf/closed/wall/r_wall,
/area/maintenance/fsmaint2)
-"arj" = (
+"apD" = (
/obj/structure/closet/wardrobe/mixed,
/obj/item/clothing/shoes/jackboots,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"ark" = (
+"apE" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"arl" = (
-/obj/machinery/light,
-/turf/open/floor/plating,
-/area/shuttle/auxillary_base)
-"arm" = (
+"apF" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
- pixel_y = 32
- },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/turf/open/floor/plating,
-/area/mining_construction)
-"arn" = (
-/obj/structure/closet/toolcloset,
-/turf/open/floor/plasteel/yellow/side{
- dir = 9
- },
-/area/mining_construction)
-"aro" = (
-/obj/structure/closet/toolcloset,
-/turf/open/floor/plasteel/yellow/side{
- dir = 1
- },
-/area/mining_construction)
-"arp" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/plasteel/yellow/side{
- dir = 5
+/area/atmos)
+"apG" = (
+/obj/machinery/portable_atmospherics/canister/water_vapor,
+/turf/open/floor/plasteel,
+/area/janitor)
+"apH" = (
+/obj/structure/grille,
+/obj/structure/window/shuttle,
+/turf/open/floor/plating,
+/area/shuttle/pod_1)
+"apI" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/on{
+ dir = 1;
+ frequency = 1441;
+ id = "waste_out"
},
+/turf/open/floor/plating/airless,
+/area/atmos)
+"apJ" = (
+/turf/closed/wall,
/area/mining_construction)
-"arq" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 2;
- name = "External Access";
- req_access = null;
- req_access_txt = "13"
- },
+"apK" = (
+/obj/structure/grille,
+/obj/structure/window/shuttle,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"arr" = (
+/area/shuttle/pod_2)
+"apL" = (
/obj/structure/table,
/obj/effect/spawner/lootdrop/maintenance{
lootcount = 2;
- name = "2maintenance loot spawner"
+ name = "2maintenance loot spawner"
},
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/fpmaint2)
-"ars" = (
+"apM" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible,
/obj/machinery/light/small{
dir = 1
},
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/fpmaint2)
-"art" = (
+"apN" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/shuttle/auxillary_base)
+"apO" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 1
},
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"aru" = (
+"apP" = (
/obj/structure/grille,
/obj/structure/window/fulltile{
obj_integrity = 35
},
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"arv" = (
-/obj/effect/landmark{
- name = "carpspawn"
- },
+"apQ" = (
/obj/structure/lattice,
/turf/open/space,
/area/space/nearstation)
-"arw" = (
+"apR" = (
/obj/item/weapon/paper{
info = "01001001 00100000 01101000 01101111 01110000 01100101 00100000 01111001 01101111 01110101 00100000 01110011 01110100 01100001 01111001 00100000 01110011 01100001 01100110 01100101 00101110 00100000 01001100 01101111 01110110 01100101 00101100 00100000 01101101 01101111 01101101 00101110";
- name = "Note from Beepsky's Mom"
+ name = "Note from Beepsky's Mom"
},
/turf/open/floor/plating,
/area/security/processing)
-"arx" = (
+"apS" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
/turf/open/floor/plating,
/area/security/processing)
-"ary" = (
-/obj/structure/chair,
-/turf/open/floor/plating,
-/area/security/vacantoffice2)
-"arz" = (
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
- pixel_y = 23
+"apT" = (
+/obj/structure/chair/comfy/beige{
+ dir = 1;
+ icon_state = "comfychair"
},
-/obj/structure/chair,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"apU" = (
/turf/open/floor/plating,
/area/security/vacantoffice2)
-"arA" = (
-/turf/open/floor/plasteel,
-/area/security/vacantoffice2)
-"arB" = (
+"apV" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
/turf/open/floor/plating,
-/area/security/vacantoffice2)
-"arC" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/area/construction)
+"apW" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
+ },
/turf/open/floor/plating,
/area/maintenance/fpmaint)
-"arD" = (
-/obj/machinery/light_switch{
- pixel_x = -20;
- pixel_y = 0
- },
-/obj/item/device/radio/intercom{
- pixel_y = 25
+"apX" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall,
+/area/crew_quarters/fitness)
+"apY" = (
+/obj/structure/closet/secure_closet/personal,
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep)
+"apZ" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_Toxins = 0
},
/turf/open/floor/wood,
/area/lawoffice)
-"arE" = (
-/obj/machinery/airalarm{
- pixel_y = 23
+"aqa" = (
+/obj/structure/table,
+/obj/machinery/light/small{
+ dir = 8
},
-/turf/open/floor/wood,
-/area/lawoffice)
-"arF" = (
-/turf/open/floor/wood,
-/area/lawoffice)
-"arG" = (
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep)
+"aqb" = (
/obj/structure/rack{
dir = 8;
- layer = 2.9
+ layer = 2.9
},
/obj/item/weapon/storage/briefcase,
/obj/effect/decal/cleanable/cobweb/cobweb2,
/turf/open/floor/wood,
/area/lawoffice)
-"arH" = (
+"aqc" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall,
+/area/maintenance/fsmaint)
+"aqd" = (
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
+ icon_state = "alarm0";
+ pixel_x = 24
},
/turf/open/floor/plasteel/red/corner{
dir = 4
},
/area/hallway/primary/fore)
-"arI" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall,
-/area/maintenance/fsmaint)
-"arJ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint)
-"arK" = (
+"aqe" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -8318,17 +7593,17 @@
},
/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"arL" = (
+"aqf" = (
/obj/structure/disposalpipe/segment{
- dir = 4
+ dir = 4;
+ icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+ dir = 6
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"arM" = (
+"aqg" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -8337,124 +7612,121 @@
},
/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"arN" = (
+"aqh" = (
/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"arO" = (
-/obj/machinery/power/apc{
- dir = 2;
- name = "Dormitory APC";
- pixel_y = -24
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+"aqi" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plating,
-/area/crew_quarters/sleep)
-"arP" = (
+/area/maintenance/fsmaint)
+"aqj" = (
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 4;
+ icon_state = "1-4"
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"arQ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+"aqk" = (
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "Dormitory APC";
+ pixel_y = -24
},
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ icon_state = "0-4";
+ d2 = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fsmaint)
-"arR" = (
+/area/crew_quarters/sleep)
+"aql" = (
/obj/structure/disposalpipe/segment{
dir = 4;
- icon_state = "pipe-c"
+ icon_state = "pipe-c"
},
/obj/structure/cable{
d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d2 = 8;
+ icon_state = "2-8"
},
/obj/structure/cable{
d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d2 = 4;
+ icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"arS" = (
+"aqm" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
+ dir = 4
},
/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"arT" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+"aqn" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet,
+/obj/machinery/airalarm{
+ pixel_y = 23
},
-/obj/machinery/light/small{
- dir = 4
+/obj/machinery/button/door{
+ id = "Dorm4";
+ name = "Dorm Bolt Control";
+ normaldoorcontrol = 1;
+ pixel_x = 25;
+ pixel_y = 0;
+ req_access_txt = "0";
+ specialfunctions = 4
},
-/obj/machinery/power/apc{
- dir = 2;
- name = "Fitness Room APC";
- pixel_x = 0;
- pixel_y = -24
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
},
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep)
+"aqo" = (
+/obj/structure/chair/stool{
+ pixel_y = 8
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/crew_quarters/fitness)
-"arU" = (
+/turf/open/floor/wood,
+/area/crew_quarters/sleep)
+"aqp" = (
/obj/structure/rack{
dir = 1
},
@@ -8469,7 +7741,7 @@
},
/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"arV" = (
+"aqq" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 1
},
@@ -8479,7 +7751,7 @@
},
/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"arW" = (
+"aqr" = (
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
@@ -8487,7 +7759,7 @@
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/crew_quarters/fitness)
-"arX" = (
+"aqs" = (
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -8495,7 +7767,7 @@
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/crew_quarters/fitness)
-"arY" = (
+"aqt" = (
/obj/structure/grille,
/obj/effect/landmark{
name = "Syndicate Breach Area"
@@ -8506,7 +7778,7 @@
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/crew_quarters/fitness)
-"arZ" = (
+"aqu" = (
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
@@ -8514,43 +7786,42 @@
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/crew_quarters/fitness)
-"asa" = (
+"aqv" = (
/obj/machinery/door/airlock/external{
- cyclelinkeddir = 2;
- name = "External Access";
- req_access = null;
- req_access_txt = "13"
+ name = "External Access";
+ req_access = null;
+ req_access_txt = "13"
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"asb" = (
+"aqw" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/door/airlock/engineering{
icon_state = "door_closed";
- locked = 0;
- name = "Fore Starboard Solar Access";
- req_access_txt = "10"
+ locked = 0;
+ name = "Fore Starboard Solar Access";
+ req_access_txt = "10"
},
/turf/open/floor/plating,
/area/maintenance/auxsolarstarboard)
-"asc" = (
+"aqx" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
- pixel_y = 0
+ icon_state = "shock";
+ name = "HIGH VOLTAGE";
+ pixel_y = 0
},
/turf/closed/wall/r_wall,
/area/maintenance/auxsolarstarboard)
-"asd" = (
+"aqy" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"ase" = (
+"aqz" = (
/obj/structure/table,
/obj/machinery/light/small{
dir = 1
@@ -8558,163 +7829,121 @@
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"asf" = (
+"aqA" = (
/obj/structure/closet/firecloset,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"asg" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"ash" = (
+"aqB" = (
/obj/effect/decal/cleanable/cobweb/cobweb2,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"asi" = (
-/obj/effect/decal/cleanable/cobweb,
-/obj/item/weapon/coin/gold,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"asj" = (
+"aqC" = (
/obj/machinery/computer/slot_machine{
balance = 15;
- money = 500
+ money = 500
},
/obj/item/weapon/coin/iron,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"ask" = (
+"aqD" = (
+/obj/effect/decal/cleanable/cobweb,
+/obj/item/weapon/coin/gold,
+/turf/open/floor/plating,
+/area/maintenance/fsmaint2)
+"aqE" = (
/obj/effect/landmark{
name = "xeno_spawn";
- pixel_x = -1
+ pixel_x = -1
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"asl" = (
-/obj/machinery/camera{
- c_tag = "Auxillary Mining Base";
- dir = 8;
- network = list("SS13","AuxBase")
- },
-/turf/open/floor/plating,
-/area/shuttle/auxillary_base)
-"asm" = (
-/obj/docking_port/mobile/auxillary_base{
- dheight = 4;
- dir = 4;
- dwidth = 4;
- height = 9;
- width = 9
+"aqF" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/pod_1)
+"aqG" = (
+/obj/docking_port/stationary/random{
+ dir = 4;
+ id = "pod_asteroid3";
+ name = "asteroid"
},
-/obj/machinery/bluespace_beacon,
-/obj/machinery/computer/shuttle/auxillary_base{
- pixel_y = 0
+/turf/open/space,
+/area/space)
+"aqH" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/pod_2)
+"aqI" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
},
-/turf/closed/wall,
+/turf/open/floor/plating,
/area/shuttle/auxillary_base)
-"asn" = (
+"aqJ" = (
/obj/machinery/door/airlock/external{
- cyclelinkeddir = 1;
- name = "Construction Zone";
- req_access = null;
- req_access_txt = "0";
- req_one_access_txt = "0"
+ cyclelinkeddir = 2;
+ name = "External Access";
+ req_access = null;
+ req_access_txt = "13"
},
/turf/open/floor/plating,
-/area/mining_construction)
-"aso" = (
-/turf/open/floor/plasteel/yellow/side{
- dir = 8
- },
-/area/mining_construction)
-"asp" = (
-/turf/open/floor/plasteel,
-/area/mining_construction)
-"asq" = (
-/obj/machinery/airalarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 4
- },
-/obj/machinery/camera{
- c_tag = "Auxillary Base Construction";
- dir = 8
- },
-/obj/structure/mining_shuttle_beacon{
- dir = 2
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 4
- },
-/area/mining_construction)
-"asr" = (
-/obj/structure/chair/stool,
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/fpmaint2)
-"ass" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- icon_state = "intact";
- dir = 5
+/area/maintenance/fpmaint2)
+"aqK" = (
+/obj/structure/chair/stool,
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/fpmaint2)
+"aqL" = (
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ icon_state = "intact";
+ dir = 5
},
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"ast" = (
+"aqM" = (
/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
icon_state = "intact";
- dir = 10
+ dir = 10
},
/obj/machinery/meter,
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"asu" = (
+"aqN" = (
+/obj/structure/closet/secure_closet/miner{
+ locked = 0
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/shuttle/auxillary_base)
+"aqO" = (
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance{
lootcount = 2;
- name = "2maintenance loot spawner"
+ name = "2maintenance loot spawner"
},
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"asv" = (
+"aqP" = (
/obj/machinery/power/apc{
dir = 1;
- name = "Arrivals North Maintenance APC";
- pixel_x = -1;
- pixel_y = 26
+ name = "Arrivals North Maintenance APC";
+ pixel_x = -1;
+ pixel_y = 26
},
/obj/structure/cable{
icon_state = "0-2";
- d2 = 2
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"asw" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- icon_state = "intact";
- dir = 1
+ d2 = 2
},
-/obj/effect/landmark/event_spawn,
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"asx" = (
+"aqQ" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/maintenance/fpmaint)
-"asy" = (
+"aqR" = (
/turf/open/floor/plating,
/area/maintenance/fpmaint)
-"asz" = (
-/obj/item/weapon/bedsheet/red,
-/mob/living/simple_animal/bot/secbot/beepsky{
- name = "Officer Beepsky"
- },
-/turf/open/floor/plating,
-/area/security/processing)
-"asA" = (
+"aqS" = (
/obj/machinery/light/small{
dir = 4
},
@@ -8725,171 +7954,219 @@
},
/turf/open/floor/plating,
/area/security/processing)
-"asB" = (
+"aqT" = (
/obj/machinery/power/apc{
dir = 8;
- name = "Labor Shuttle Dock APC";
- pixel_x = -24
+ name = "Labor Shuttle Dock APC";
+ pixel_x = -24
},
/obj/structure/cable,
/obj/structure/cable{
icon_state = "0-2";
- d2 = 2
+ d2 = 2
},
/turf/open/floor/plating,
/area/security/processing)
-"asC" = (
+"aqU" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Cargo Technician"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"aqV" = (
/obj/structure/table/wood,
-/obj/item/weapon/pen,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
/turf/open/floor/plating,
/area/security/vacantoffice2)
-"asD" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 2;
- on = 1
+"aqW" = (
+/turf/open/floor/carpet,
+/area/security/detectives_office)
+"aqX" = (
+/obj/machinery/airalarm{
+ frequency = 1439;
+ locked = 0;
+ pixel_y = 23
},
-/obj/structure/table/wood,
-/obj/item/device/flashlight/lamp,
+/obj/structure/chair,
/turf/open/floor/plating,
/area/security/vacantoffice2)
-"asE" = (
+"aqY" = (
/obj/structure/table/wood,
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
+/obj/item/weapon/pen,
/turf/open/floor/plating,
/area/security/vacantoffice2)
-"asF" = (
+"aqZ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint)
+"ara" = (
/obj/machinery/light{
icon_state = "tube1";
- dir = 8
+ dir = 8
},
/obj/machinery/requests_console{
department = "Law office";
- pixel_x = -32;
- pixel_y = 0
+ pixel_x = -32;
+ pixel_y = 0
},
/obj/structure/closet/lawcloset,
/turf/open/floor/wood,
/area/lawoffice)
-"asG" = (
+"arb" = (
/obj/structure/table/wood,
/obj/item/weapon/book/manual/wiki/security_space_law,
/obj/item/weapon/book/manual/wiki/security_space_law,
/obj/item/weapon/pen/red,
/turf/open/floor/wood,
/area/lawoffice)
-"asH" = (
-/obj/structure/table/wood,
-/obj/item/device/flashlight/lamp/green{
- pixel_x = 1;
- pixel_y = 5
+"arc" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ on = 1
},
-/turf/open/floor/wood,
-/area/lawoffice)
-"asI" = (
+/turf/open/floor/plasteel,
+/area/ai_monitored/security/armory)
+"ard" = (
/obj/structure/grille,
/obj/machinery/door/poddoor/preopen{
id = "lawyer_blast";
- name = "privacy door"
+ name = "privacy door"
},
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/lawoffice)
-"asJ" = (
+"are" = (
+/obj/structure/table/wood,
+/obj/item/device/flashlight/lamp/green{
+ pixel_x = 1;
+ pixel_y = 5
+ },
+/turf/open/floor/wood,
+/area/lawoffice)
+"arf" = (
/turf/closed/wall,
/area/crew_quarters/sleep)
-"asK" = (
+"arg" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/maintenance/fsmaint)
+"arh" = (
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"asL" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/maintenance/fsmaint)
-"asM" = (
+"ari" = (
+/obj/machinery/airalarm{
+ pixel_y = 23
+ },
+/obj/structure/closet/secure_closet/personal/cabinet,
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/turf/open/floor/wood,
+/area/crew_quarters/sleep)
+"arj" = (
/turf/closed/wall,
/area/crew_quarters/fitness)
-"asN" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
+"ark" = (
+/obj/machinery/airalarm{
+ pixel_y = 23
+ },
+/obj/structure/closet/secure_closet/personal/cabinet,
+/turf/open/floor/wood,
+/area/crew_quarters/sleep)
+"arl" = (
+/obj/structure/disposalpipe/junction{
+ icon_state = "pipe-j2";
+ dir = 2
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 9
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint)
-"asO" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall,
/area/crew_quarters/fitness)
-"asP" = (
+"arm" = (
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/crew_quarters/fitness)
-"asQ" = (
+"arn" = (
+/obj/structure/closet/athletic_mixed,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 1
+ },
+/area/crew_quarters/fitness)
+"aro" = (
/turf/open/floor/engine{
name = "Holodeck Projector Floor"
},
/area/holodeck/rec_center)
-"asR" = (
+"arp" = (
/obj/structure/grille,
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
- pixel_y = 32
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 0;
+ pixel_y = 32
},
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"asS" = (
+"arq" = (
/obj/structure/table,
/obj/effect/decal/cleanable/cobweb,
/obj/effect/spawner/lootdrop/maintenance{
lootcount = 8;
- name = "8maintenance loot spawner"
+ name = "8maintenance loot spawner"
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"asT" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "Bar Maintenance APC";
- pixel_y = 24
+"arr" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"asU" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+"ars" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "Bar Maintenance APC";
+ pixel_y = 24
},
/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ icon_state = "0-4";
+ d2 = 4
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"asV" = (
+"art" = (
/obj/machinery/light/small{
dir = 1
},
@@ -8898,52 +8175,58 @@
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"asW" = (
+"aru" = (
/obj/structure/chair/stool,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"asX" = (
+"arv" = (
/obj/structure/table,
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
+/obj/item/weapon/pen,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"asY" = (
+"arw" = (
/obj/structure/table,
-/obj/item/weapon/pen,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"asZ" = (
+"arx" = (
/obj/structure/chair/stool{
pixel_y = 8
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"ata" = (
-/obj/item/weapon/coin/gold,
+"ary" = (
+/obj/structure/closet,
/obj/item/weapon/coin/iron,
+/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"atb" = (
-/obj/structure/closet,
+"arz" = (
+/obj/item/weapon/coin/gold,
/obj/item/weapon/coin/iron,
-/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"atc" = (
+"arA" = (
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"atd" = (
-/obj/machinery/light{
- dir = 1
+"arB" = (
+/turf/closed/wall/r_wall,
+/area/hallway/secondary/entry)
+"arC" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
},
/turf/open/floor/plating,
/area/shuttle/auxillary_base)
-"ate" = (
+"arD" = (
+/turf/open/floor/plating,
+/area/shuttle/auxillary_base)
+"arE" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
on = 1
},
@@ -8951,186 +8234,152 @@
dir = 8
},
/area/mining_construction)
-"atf" = (
-/obj/structure/rack{
- dir = 4
- },
-/obj/item/weapon/electronics/airlock,
-/obj/item/weapon/electronics/airlock,
-/obj/item/weapon/electronics/airlock,
-/obj/item/weapon/electronics/airlock,
-/obj/item/stack/cable_coil,
-/obj/item/stack/cable_coil,
-/obj/item/wallframe/camera,
-/obj/item/wallframe/camera,
-/obj/item/wallframe/camera,
-/obj/item/wallframe/camera,
-/obj/item/device/assault_pod/mining,
-/obj/machinery/computer/security/telescreen{
- desc = "Used for the Auxillary Mining Base.";
- dir = 8;
- name = "Auxillary Base Monitor";
- network = list("AuxBase");
- pixel_x = 28
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 4
- },
-/area/mining_construction)
-"atg" = (
+"arF" = (
/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
icon_state = "intact";
- dir = 5
+ dir = 5
},
/turf/closed/wall,
/area/maintenance/fpmaint2)
-"ath" = (
+"arG" = (
/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
icon_state = "intact";
- dir = 4
+ dir = 4
},
/turf/closed/wall,
/area/maintenance/fpmaint2)
-"ati" = (
+"arH" = (
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
icon_state = "intact";
- dir = 4
+ dir = 4
},
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"atj" = (
+"arI" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
icon_state = "intact";
- dir = 4
+ dir = 4
},
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"atk" = (
+"arJ" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 8;
+ icon_state = "1-8"
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
icon_state = "intact";
- dir = 4
+ dir = 4
},
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"atl" = (
+"arK" = (
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ icon_state = "intact";
+ dir = 9
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/fpmaint2)
+"arL" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 8;
+ icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
icon_state = "intact";
- dir = 4
+ dir = 4
},
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"atm" = (
-/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
- icon_state = "intact";
- dir = 9
- },
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
+"arM" = (
+/obj/structure/closet/crate{
+ icon_state = "crateopen";
+ opened = 1
},
-/area/maintenance/fpmaint2)
-"atn" = (
/obj/effect/spawner/lootdrop/maintenance{
lootcount = 2;
- name = "2maintenance loot spawner"
+ name = "2maintenance loot spawner"
},
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"ato" = (
-/obj/structure/closet/crate{
- icon_state = "crateopen";
- opened = 1
- },
+"arN" = (
/obj/effect/spawner/lootdrop/maintenance{
lootcount = 2;
- name = "2maintenance loot spawner"
+ name = "2maintenance loot spawner"
},
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"atp" = (
+"arO" = (
/obj/machinery/monkey_recycler,
/obj/item/weapon/reagent_containers/food/snacks/monkeycube,
/obj/item/weapon/reagent_containers/food/snacks/monkeycube,
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"atq" = (
+"arP" = (
/turf/closed/wall,
/area/maintenance/fpmaint)
-"atr" = (
+"arQ" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
/turf/open/floor/plating,
/area/maintenance/fpmaint)
-"ats" = (
-/obj/structure/rack,
-/turf/open/floor/plasteel,
-/area/security/vacantoffice2)
-"att" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/chair{
- dir = 1
+"arR" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 2;
+ on = 1
},
+/obj/structure/table/wood,
+/obj/item/device/flashlight/lamp,
/turf/open/floor/plating,
/area/security/vacantoffice2)
-"atu" = (
+"arS" = (
/obj/structure/table/wood,
/turf/open/floor/plating,
/area/security/vacantoffice2)
-"atv" = (
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
- },
-/turf/open/floor/plating,
+"arT" = (
+/turf/open/floor/plasteel,
/area/security/vacantoffice2)
-"atw" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/closed/wall,
-/area/lawoffice)
-"atx" = (
+"arU" = (
+/obj/structure/rack,
+/turf/open/floor/plasteel,
+/area/security/vacantoffice2)
+"arV" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/structure/filingcabinet/employment,
/turf/open/floor/wood,
/area/lawoffice)
-"aty" = (
+"arW" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+ dir = 6
},
-/turf/open/floor/wood,
+/turf/closed/wall,
/area/lawoffice)
-"atz" = (
+"arX" = (
/obj/structure/table/wood,
/obj/item/weapon/folder/blue,
/obj/item/weapon/folder/blue,
@@ -9142,7 +8391,13 @@
},
/turf/open/floor/wood,
/area/lawoffice)
-"atA" = (
+"arY" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/lawoffice)
+"arZ" = (
/obj/structure/chair/office/dark{
dir = 8
},
@@ -9151,68 +8406,59 @@
},
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
- on = 1
+ on = 1
},
/turf/open/floor/wood,
/area/lawoffice)
-"atB" = (
+"asa" = (
/obj/machinery/status_display{
density = 0;
- layer = 3;
- pixel_x = 32;
- pixel_y = 0
+ layer = 3;
+ pixel_x = 32;
+ pixel_y = 0
},
/turf/open/floor/plasteel/red/corner{
dir = 4
},
/area/hallway/primary/fore)
-"atC" = (
-/obj/structure/table,
-/obj/machinery/light/small{
+"asb" = (
+/obj/structure/disposalpipe/trunk{
dir = 8
},
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
-"atD" = (
-/obj/structure/closet/secure_closet/personal,
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
-"atE" = (
-/obj/structure/bed,
-/obj/item/weapon/bedsheet,
-/obj/machinery/airalarm{
- pixel_y = 23
+/obj/machinery/disposal/bin,
+/turf/open/floor/plasteel/neutral/side{
+ dir = 1
},
-/obj/machinery/button/door{
- id = "Dorm4";
- name = "Dorm Bolt Control";
- normaldoorcontrol = 1;
- pixel_x = 25;
- pixel_y = 0;
- req_access_txt = "0";
- specialfunctions = 4
+/area/crew_quarters/fitness)
+"asc" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
-"atF" = (
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2)
+"asd" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/closed/wall,
/area/crew_quarters/sleep)
-"atG" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
+"ase" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/turf/open/floor/plasteel/neutral/side{
- dir = 9
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
},
-/area/crew_quarters/sleep)
-"atH" = (
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2)
+"asf" = (
/obj/machinery/airalarm{
pixel_y = 23
},
@@ -9221,13 +8467,63 @@
dir = 5
},
/area/crew_quarters/sleep)
-"atI" = (
-/obj/structure/chair/stool{
- pixel_y = 8
+"asg" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 9
+ },
+/area/crew_quarters/sleep)
+"ash" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2)
+"asi" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2)
+"asj" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/chair{
+ dir = 1
},
+/turf/open/floor/plating,
+/area/security/vacantoffice2)
+"ask" = (
+/obj/structure/dresser,
/turf/open/floor/wood,
/area/crew_quarters/sleep)
-"atJ" = (
+"asl" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/open/floor/plating,
+/area/security/vacantoffice2)
+"asm" = (
/obj/machinery/light/small{
dir = 1
},
@@ -9236,60 +8532,42 @@
},
/turf/open/floor/wood,
/area/crew_quarters/sleep)
-"atK" = (
-/obj/machinery/airalarm{
- pixel_y = 23
+"asn" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
-/obj/structure/closet/secure_closet/personal/cabinet,
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/turf/open/floor/wood,
-/area/crew_quarters/sleep)
-"atL" = (
-/obj/structure/dresser,
-/turf/open/floor/wood,
-/area/crew_quarters/sleep)
-"atM" = (
-/obj/machinery/airalarm{
- pixel_y = 23
+/turf/open/floor/plating,
+/area/security/vacantoffice2)
+"aso" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Law Office Maintenance";
+ req_access_txt = "38"
},
-/obj/structure/closet/secure_closet/personal/cabinet,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/lawoffice)
+"asp" = (
+/obj/structure/table/wood,
/turf/open/floor/wood,
/area/crew_quarters/sleep)
-"atN" = (
-/obj/structure/disposalpipe/junction{
- icon_state = "pipe-j2";
- dir = 2
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/plasteel/neutral/side{
- dir = 9
- },
-/area/crew_quarters/fitness)
-"atO" = (
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/machinery/disposal/bin,
-/turf/open/floor/plasteel/neutral/side{
- dir = 1
+"asq" = (
+/obj/machinery/camera{
+ c_tag = "Fitness Room"
},
-/area/crew_quarters/fitness)
-"atP" = (
-/obj/structure/closet/athletic_mixed,
+/obj/structure/closet/masks,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
+ dir = 4
},
/turf/open/floor/plasteel/neutral/side{
dir = 1
},
/area/crew_quarters/fitness)
-"atQ" = (
+"asr" = (
/obj/structure/closet/boxinggloves,
/obj/machinery/light{
dir = 1
@@ -9302,19 +8580,16 @@
dir = 1
},
/area/crew_quarters/fitness)
-"atR" = (
-/obj/machinery/camera{
- c_tag = "Fitness Room"
- },
-/obj/structure/closet/masks,
+"ass" = (
+/obj/structure/closet/lasertag/red,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+ dir = 10
},
/turf/open/floor/plasteel/neutral/side{
- dir = 1
+ dir = 5
},
/area/crew_quarters/fitness)
-"atS" = (
+"ast" = (
/obj/structure/closet/lasertag/blue,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -9323,285 +8598,296 @@
dir = 1
},
/area/crew_quarters/fitness)
-"atT" = (
-/obj/structure/closet/lasertag/red,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/neutral/side{
- dir = 5
+"asu" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet/red,
+/obj/machinery/button/door{
+ id = "Dorm5";
+ name = "Cabin Bolt Control";
+ normaldoorcontrol = 1;
+ pixel_x = 0;
+ pixel_y = -25;
+ req_access_txt = "0";
+ specialfunctions = 4
},
-/area/crew_quarters/fitness)
-"atU" = (
-/obj/machinery/door/airlock/external{
- name = "External Access";
- req_access = null;
- req_access_txt = "13"
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"atV" = (
+/turf/open/floor/wood,
+/area/crew_quarters/sleep)
+"asv" = (
/obj/structure/table,
/obj/effect/spawner/lootdrop/maintenance{
lootcount = 3;
- name = "3maintenance loot spawner"
+ name = "3maintenance loot spawner"
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"atW" = (
+"asw" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"atX" = (
+"asx" = (
/obj/structure/door_assembly/door_assembly_mai,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"atY" = (
+"asy" = (
/obj/machinery/door/airlock/maintenance{
name = "Firefighting equipment";
- req_access_txt = "12"
+ req_access_txt = "12"
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"atZ" = (
+"asz" = (
/obj/structure/table,
-/obj/effect/spawner/lootdrop/maintenance,
+/obj/item/weapon/reagent_containers/food/snacks/donut,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aua" = (
+"asA" = (
/obj/structure/table,
-/obj/item/weapon/reagent_containers/food/snacks/donut,
+/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aub" = (
+"asB" = (
/turf/closed/wall,
/area/maintenance/electrical)
-"auc" = (
-/turf/closed/wall,
+"asC" = (
+/turf/open/floor/plasteel/airless,
/area/space/nearstation)
-"aud" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/yellow/side{
- dir = 8
+"asD" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
},
+/turf/open/floor/plating,
+/area/shuttle/auxillary_base)
+"asE" = (
+/turf/closed/wall,
+/area/hallway/secondary/entry)
+"asF" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
/area/mining_construction)
-"aue" = (
-/obj/structure/table,
-/obj/item/stack/sheet/metal{
- amount = 50
- },
-/obj/item/stack/sheet/metal{
- amount = 50
- },
-/obj/item/stack/sheet/glass{
- amount = 50
- },
+"asG" = (
+/obj/machinery/light,
+/turf/open/floor/plating,
+/area/shuttle/auxillary_base)
+"asH" = (
+/obj/structure/closet/toolcloset,
/turf/open/floor/plasteel/yellow/side{
- dir = 4
+ dir = 9
},
/area/mining_construction)
-"auf" = (
-/obj/machinery/space_heater,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"aug" = (
-/obj/structure/reagent_dispensers/watertank,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"auh" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+"asI" = (
+/obj/structure/closet/toolcloset,
+/turf/open/floor/plasteel/yellow/side{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
+/area/mining_construction)
+"asJ" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plasteel/yellow/side{
+ dir = 5
},
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"aui" = (
+/area/mining_construction)
+"asK" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"auj" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+"asL" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet/red,
+/obj/machinery/button/door{
+ id = "Dorm6";
+ name = "Cabin Bolt Control";
+ normaldoorcontrol = 1;
+ pixel_x = 0;
+ pixel_y = -25;
+ req_access_txt = "0";
+ specialfunctions = 4
},
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+/turf/open/floor/wood,
+/area/crew_quarters/sleep)
+"asM" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
},
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"auk" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/turf/open/floor/plasteel/neutral/side{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+/area/crew_quarters/fitness)
+"asN" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"aul" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/closed/wall,
-/area/maintenance/fpmaint2)
-"aum" = (
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"asO" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"aun" = (
-/obj/effect/landmark/event_spawn,
+"asP" = (
+/obj/structure/chair/stool,
+/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/fpmaint)
-"auo" = (
+"asQ" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plating,
/area/maintenance/fpmaint)
-"aup" = (
-/obj/structure/chair/stool,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint)
-"auq" = (
+"asR" = (
/obj/effect/decal/cleanable/cobweb,
/obj/structure/closet/secure_closet/chemical,
/turf/open/floor/plating,
/area/maintenance/fpmaint)
-"aur" = (
-/obj/structure/closet/secure_closet/chemical,
+"asS" = (
+/obj/structure/closet/secure_closet/medical1,
/turf/open/floor/plating,
/area/maintenance/fpmaint)
-"aus" = (
-/obj/structure/closet/secure_closet/medical1,
+"asT" = (
+/obj/structure/closet/secure_closet/chemical,
/turf/open/floor/plating,
/area/maintenance/fpmaint)
-"aut" = (
+"asU" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/security/vacantoffice2)
-"auu" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plating,
-/area/security/vacantoffice2)
-"auv" = (
+"asV" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
+ dir = 1
},
-/turf/open/floor/plating,
-/area/maintenance/fpmaint)
-"auw" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Law Office Maintenance";
- req_access_txt = "38"
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"asW" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/rack,
+/obj/item/weapon/storage/briefcase,
+/turf/open/floor/plasteel/grimy,
+/area/security/detectives_office)
+"asX" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"asY" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
/turf/open/floor/plating,
-/area/lawoffice)
-"aux" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_Toxins = 0
+/area/crew_quarters/fitness)
+"asZ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 4
},
+/area/crew_quarters/fitness)
+"ata" = (
/turf/open/floor/wood,
/area/lawoffice)
-"auy" = (
+"atb" = (
+/obj/structure/table,
+/obj/item/stack/sheet/plasteel{
+ amount = 10
+ },
+/obj/item/stack/rods{
+ amount = 50
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 4
+ },
+/area/mining_construction)
+"atc" = (
/obj/structure/chair/office/dark,
/obj/effect/landmark/start{
name = "Lawyer"
},
/turf/open/floor/wood,
/area/lawoffice)
-"auz" = (
+"atd" = (
/obj/machinery/light{
dir = 4;
- icon_state = "tube1"
+ icon_state = "tube1"
},
/turf/open/floor/plasteel/red/corner{
dir = 4
},
/area/hallway/primary/fore)
-"auA" = (
-/obj/structure/chair/stool{
- pixel_y = 8
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
-"auB" = (
+"ate" = (
/obj/effect/landmark{
name = "xeno_spawn";
- pixel_x = -1
+ pixel_x = -1
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/carpet,
/area/crew_quarters/sleep)
-"auC" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+"atf" = (
+/obj/structure/chair/stool{
+ pixel_y = 8
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
/turf/open/floor/carpet,
/area/crew_quarters/sleep)
-"auD" = (
+"atg" = (
/obj/machinery/door/airlock{
id_tag = "Dorm4";
- name = "Dorm 4"
+ name = "Dorm 4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/crew_quarters/sleep)
-"auE" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+"ath" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/turf/open/floor/plasteel/neutral/side{
- dir = 8
- },
+/turf/open/floor/carpet,
/area/crew_quarters/sleep)
-"auF" = (
+"ati" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
@@ -9609,115 +8895,99 @@
dir = 4
},
/area/crew_quarters/sleep)
-"auG" = (
-/obj/structure/table/wood,
-/turf/open/floor/wood,
-/area/crew_quarters/sleep)
-"auH" = (
+"atj" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/wood,
-/area/crew_quarters/sleep)
-"auI" = (
-/obj/structure/bed,
-/obj/item/weapon/bedsheet/red,
-/obj/machinery/button/door{
- id = "Dorm5";
- name = "Cabin Bolt Control";
- normaldoorcontrol = 1;
- pixel_x = 0;
- pixel_y = -25;
- req_access_txt = "0";
- specialfunctions = 4
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+/turf/open/floor/plasteel/neutral/side{
+ dir = 8
},
-/turf/open/floor/wood,
-/area/crew_quarters/sleep)
-"auJ" = (
-/turf/open/floor/wood,
/area/crew_quarters/sleep)
-"auK" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/wood,
-/area/crew_quarters/sleep)
-"auL" = (
-/obj/structure/bed,
-/obj/item/weapon/bedsheet/red,
-/obj/machinery/button/door{
- id = "Dorm6";
- name = "Cabin Bolt Control";
- normaldoorcontrol = 1;
- pixel_x = 0;
- pixel_y = -25;
- req_access_txt = "0";
- specialfunctions = 4
+"atk" = (
+/obj/machinery/camera{
+ c_tag = "Auxillary Mining Base";
+ dir = 8;
+ network = list("SS13","AuxBase")
},
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+/turf/open/floor/plating,
+/area/shuttle/auxillary_base)
+"atl" = (
+/obj/docking_port/mobile/auxillary_base{
+ dheight = 4;
+ dir = 4;
+ dwidth = 4;
+ height = 9;
+ width = 9
+ },
+/obj/machinery/bluespace_beacon,
+/obj/machinery/computer/auxillary_base{
+ pixel_y = 0
},
+/turf/closed/wall,
+/area/shuttle/auxillary_base)
+"atm" = (
/turf/open/floor/wood,
/area/crew_quarters/sleep)
-"auM" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
+"atn" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/turf/closed/wall,
+/area/maintenance/fpmaint2)
+"ato" = (
+/obj/machinery/light_switch{
+ pixel_y = -23
},
-/turf/open/floor/plasteel/neutral/side{
- dir = 8
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/carpet,
+/area/security/hos)
+"atp" = (
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 1;
+ name = "Construction Zone";
+ req_access = null;
+ req_access_txt = "0";
+ req_one_access_txt = "0"
},
-/area/crew_quarters/fitness)
-"auN" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
+/turf/open/floor/plating,
+/area/mining_construction)
+"atq" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
+/turf/closed/wall,
+/area/maintenance/fpmaint2)
+"atr" = (
/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"auO" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+ dir = 10
},
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"auP" = (
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2)
+"ats" = (
+/obj/structure/table/wood,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/light,
+/turf/open/floor/plating,
+/area/security/vacantoffice2)
+"att" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
/turf/open/floor/plasteel,
/area/crew_quarters/fitness)
-"auQ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/red/side{
- dir = 4
- },
-/area/crew_quarters/fitness)
-"auR" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
+"atu" = (
+/obj/machinery/camera{
+ c_tag = "Vacant Office B";
+ dir = 1
},
-/turf/open/floor/plating,
-/area/crew_quarters/fitness)
-"auS" = (
+/obj/structure/table/wood,
+/turf/open/floor/plasteel,
+/area/security/vacantoffice2)
+"atv" = (
/obj/structure/table,
/obj/item/weapon/shard,
/obj/item/weapon/shard{
@@ -9729,342 +8999,387 @@
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"auT" = (
+"atw" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance{
lootcount = 2;
- name = "2maintenance loot spawner"
+ name = "2maintenance loot spawner"
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"auU" = (
+"atx" = (
+/obj/machinery/button/door{
+ id = "maint3";
+ name = "Blast Door Control C";
+ pixel_x = 0;
+ pixel_y = 24;
+ req_access_txt = "0"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fsmaint2)
+"aty" = (
/turf/open/floor/plating{
icon_state = "panelscorched"
},
/area/maintenance/fsmaint2)
-"auV" = (
-/obj/machinery/button/door{
- id = "maint3";
- name = "Blast Door Control C";
- pixel_x = 0;
- pixel_y = 24;
- req_access_txt = "0"
- },
+"atz" = (
+/mob/living/simple_animal/mouse,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"auW" = (
+"atA" = (
/obj/structure/table,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"auX" = (
+"atB" = (
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"auY" = (
-/obj/machinery/recharge_station,
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/electrical)
-"auZ" = (
+"atC" = (
/obj/item/stack/rods{
amount = 50
},
/obj/structure/rack,
/obj/item/stack/cable_coil{
pixel_x = -3;
- pixel_y = 3
+ pixel_y = 3
},
/obj/item/stack/cable_coil{
amount = 5
},
/obj/item/stack/sheet/mineral/plasma{
amount = 10;
- layer = 2.9
+ layer = 2.9
},
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/electrical)
-"ava" = (
+"atD" = (
+/obj/machinery/recharge_station,
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/electrical)
+"atE" = (
/obj/machinery/power/port_gen/pacman,
/turf/open/floor/plating,
/area/maintenance/electrical)
-"avb" = (
+"atF" = (
+/turf/open/floor/mech_bay_recharge_floor,
+/area/maintenance/electrical)
+"atG" = (
/obj/machinery/mech_bay_recharge_port,
/obj/structure/cable{
icon_state = "0-2";
- d2 = 2
+ d2 = 2
},
/turf/open/floor/plating,
/area/maintenance/electrical)
-"avc" = (
-/turf/open/floor/mech_bay_recharge_floor,
-/area/maintenance/electrical)
-"avd" = (
+"atH" = (
/obj/machinery/computer/mech_bay_power_console,
/obj/structure/cable{
icon_state = "0-2";
- d2 = 2
+ d2 = 2
},
/turf/open/floor/bluegrid,
/area/maintenance/electrical)
-"ave" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/mining_construction)
-"avf" = (
-/obj/structure/table,
-/obj/item/stack/sheet/plasteel{
- amount = 10
- },
-/obj/item/stack/rods{
- amount = 50
- },
+"atI" = (
/turf/open/floor/plasteel/yellow/side{
- dir = 4
+ dir = 8
},
/area/mining_construction)
-"avg" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+"atJ" = (
+/obj/machinery/space_heater,
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"avh" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+"atK" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/security/vacantoffice2)
+"atL" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2)
+"atM" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
/turf/closed/wall,
/area/maintenance/fpmaint2)
-"avi" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+"atN" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2)
+"atO" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/closed/wall,
/area/maintenance/fpmaint2)
-"avj" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+"atP" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"avk" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall,
/area/maintenance/fpmaint2)
-"avl" = (
-/turf/open/floor/plasteel/airless{
- icon_state = "damaged3"
+"atQ" = (
+/obj/machinery/door/airlock{
+ id_tag = "Dorm5";
+ name = "Cabin 1"
},
-/area/space/nearstation)
-"avm" = (
-/obj/item/weapon/paper/crumpled,
-/turf/open/floor/plasteel/airless{
- icon_state = "damaged2"
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/wood,
+/area/crew_quarters/sleep)
+"atR" = (
+/obj/effect/landmark{
+ name = "carpspawn"
},
+/obj/structure/lattice,
+/turf/open/space,
/area/space/nearstation)
-"avn" = (
+"atS" = (
+/turf/closed/wall,
+/area/space/nearstation)
+"atT" = (
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"avo" = (
-/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"avp" = (
+"atU" = (
/obj/structure/rack{
dir = 1
},
/obj/effect/spawner/lootdrop/maintenance{
lootcount = 2;
- name = "2maintenance loot spawner"
+ name = "2maintenance loot spawner"
},
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"avq" = (
+"atV" = (
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 8
+ },
+/area/crew_quarters/fitness)
+"atW" = (
/obj/structure/chair/stool,
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"avr" = (
+"atX" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/open/floor/plating,
/area/maintenance/fpmaint)
-"avs" = (
-/obj/structure/table/wood,
+"atY" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/light,
-/turf/open/floor/plating,
+/turf/closed/wall,
/area/security/vacantoffice2)
-"avt" = (
-/obj/machinery/camera{
- c_tag = "Vacant Office B";
- dir = 1
+"atZ" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Holodeck Door"
},
-/obj/structure/table/wood,
/turf/open/floor/plasteel,
-/area/security/vacantoffice2)
-"avu" = (
+/area/crew_quarters/fitness)
+"aua" = (
+/turf/open/floor/plasteel/red/side{
+ dir = 4
+ },
+/area/crew_quarters/fitness)
+"aub" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/security/vacantoffice2)
-"avv" = (
+/turf/open/floor/plasteel/yellow/side,
+/area/mining_construction)
+"auc" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall,
-/area/lawoffice)
-"avw" = (
-/obj/structure/table/wood,
-/obj/item/device/taperecorder{
+/turf/open/floor/plasteel/yellow/side{
+ dir = 10
+ },
+/area/mining_construction)
+"aud" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
pixel_y = 0
},
-/obj/item/weapon/cartridge/lawyer,
-/turf/open/floor/wood,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2)
+"aue" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/maintenance/fpmaint2)
+"auf" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall,
/area/lawoffice)
-"avx" = (
+"aug" = (
/obj/structure/table/wood,
/obj/machinery/camera{
c_tag = "Law Office";
- dir = 1;
- network = list("SS13")
+ dir = 1;
+ network = list("SS13")
},
/obj/item/weapon/paper_bin{
pixel_x = -3;
- pixel_y = 7
+ pixel_y = 7
},
/obj/item/weapon/pen,
/obj/machinery/computer/security/telescreen{
desc = "Used for watching Prison Wing holding areas.";
- dir = 1;
- name = "Prison Monitor";
- network = list("Prison");
- pixel_x = 0;
- pixel_y = -27
+ dir = 1;
+ name = "Prison Monitor";
+ network = list("Prison");
+ pixel_x = 0;
+ pixel_y = -27
},
/turf/open/floor/wood,
/area/lawoffice)
-"avy" = (
+"auh" = (
+/obj/structure/table/wood,
+/obj/item/device/taperecorder{
+ pixel_y = 0
+ },
+/obj/item/weapon/cartridge/lawyer,
+/turf/open/floor/wood,
+/area/lawoffice)
+"aui" = (
/obj/machinery/photocopier,
/obj/machinery/button/door{
id = "lawyer_blast";
- name = "Privacy Shutters";
- pixel_x = 25;
- pixel_y = 8
+ name = "Privacy Shutters";
+ pixel_x = 25;
+ pixel_y = 8
},
/turf/open/floor/wood,
/area/lawoffice)
-"avz" = (
-/obj/machinery/power/apc{
- dir = 8;
- name = "Fore Primary Hallway APC";
- pixel_x = -24
- },
+"auj" = (
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
},
-/obj/machinery/camera{
- c_tag = "Fore Primary Hallway";
- dir = 4;
- network = list("SS13")
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel/red/corner{
+/turf/open/floor/plasteel/red/side{
dir = 1
},
-/area/hallway/primary/fore)
-"avA" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/area/security/brig)
+"auk" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/side{
- dir = 8
+ dir = 4
},
/area/crew_quarters/sleep)
-"avB" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+"aul" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral/side{
- dir = 4
+ dir = 8
},
/area/crew_quarters/sleep)
-"avC" = (
-/obj/machinery/door/airlock{
- id_tag = "Dorm5";
- name = "Cabin 1"
+"aum" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/wood,
-/area/crew_quarters/sleep)
-"avD" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2)
+"aun" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall,
/area/crew_quarters/sleep)
-"avE" = (
+"auo" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint)
+"aup" = (
/obj/machinery/door/airlock{
id_tag = "Dorm6";
- name = "Cabin 2"
+ name = "Cabin 2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/wood,
/area/crew_quarters/sleep)
-"avF" = (
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -23;
- pixel_y = 0
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+"auq" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/security/vacantoffice2)
+"aur" = (
+/obj/machinery/door/window/eastright{
+ base_state = "left";
+ dir = 8;
+ icon_state = "left";
+ name = "Fitness Ring"
},
-/turf/open/floor/plasteel/neutral/side{
- dir = 8
+/obj/structure/window/reinforced{
+ dir = 1
},
+/turf/open/floor/plasteel/black,
/area/crew_quarters/fitness)
-"avG" = (
+"aus" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/crew_quarters/fitness)
-"avH" = (
-/obj/machinery/door/window/eastright{
- base_state = "left";
- dir = 8;
- icon_state = "left";
- name = "Fitness Ring"
- },
+"aut" = (
/obj/structure/window/reinforced{
dir = 1
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/fitness)
-"avI" = (
-/obj/structure/window/reinforced{
- dir = 1
+"auu" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
},
-/turf/open/floor/plasteel/black,
+/turf/open/floor/plasteel,
/area/crew_quarters/fitness)
-"avJ" = (
+"auv" = (
/obj/structure/window/reinforced{
dir = 4
},
@@ -10073,29 +9388,41 @@
},
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
- on = 1
+ on = 1
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/fitness)
-"avK" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
+"auw" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet,
+/obj/machinery/airalarm{
+ pixel_y = 23
},
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"avL" = (
-/turf/open/floor/plasteel/red/side{
+/obj/machinery/button/door{
+ id = "Dorm3";
+ name = "Dorm Bolt Control";
+ normaldoorcontrol = 1;
+ pixel_x = 25;
+ pixel_y = 0;
+ req_access_txt = "0";
+ specialfunctions = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep)
+"aux" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/area/crew_quarters/fitness)
-"avM" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Holodeck Door"
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 4
},
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"avN" = (
+/area/crew_quarters/sleep)
+"auy" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
name = "Holodeck Door"
@@ -10105,16 +9432,7 @@
},
/turf/open/floor/plasteel,
/area/crew_quarters/fitness)
-"avO" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"avP" = (
+"auz" = (
/obj/machinery/camera{
c_tag = "Holodeck"
},
@@ -10123,215 +9441,193 @@
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1;
+ scrub_Toxins = 0
},
/turf/open/floor/plasteel,
/area/crew_quarters/fitness)
-"avQ" = (
+"auA" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"auB" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/crew_quarters/fitness)
-"avR" = (
+"auC" = (
/obj/machinery/light/small,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"avS" = (
+"auD" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"avT" = (
+"auE" = (
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 4;
+ icon_state = "1-4"
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"avU" = (
+"auF" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"avV" = (
+"auG" = (
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"avW" = (
+"auH" = (
/obj/structure/cable{
d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d2 = 8;
+ icon_state = "2-8"
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"avX" = (
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/electrical)
-"avY" = (
+"auI" = (
/turf/open/floor/plating,
/area/maintenance/electrical)
-"avZ" = (
+"auJ" = (
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/electrical)
+"auK" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/electrical)
+"auL" = (
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/electrical)
-"awa" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/electrical)
-"awb" = (
+"auM" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 27;
- pixel_y = 0
+ pixel_y = 0
},
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 8;
+ icon_state = "1-8"
},
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/electrical)
-"awc" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/shuttle/auxillary_base)
-"awd" = (
+"auN" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating,
/area/shuttle/auxillary_base)
-"awe" = (
-/obj/machinery/portable_atmospherics/canister/air,
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
+"auO" = (
+/obj/structure/closet/emcloset,
/turf/open/floor/plating,
-/area/shuttle/auxillary_base)
-"awf" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/yellow/side{
- dir = 10
- },
-/area/mining_construction)
-"awg" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/yellow/side,
+/area/hallway/secondary/entry)
+"auP" = (
+/turf/open/floor/plating,
+/area/hallway/secondary/entry)
+"auQ" = (
+/turf/open/floor/plasteel,
/area/mining_construction)
-"awh" = (
-/obj/structure/table,
-/obj/item/weapon/storage/box/lights/mixed,
-/obj/item/weapon/pipe_dispenser,
-/obj/machinery/button/door{
- id = "aux_base_shutters";
- name = "Public Shutters Control";
- pixel_x = 24;
- pixel_y = 0;
- req_access_txt = "0";
- req_one_access_txt = "32;47;48"
+"auR" = (
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
},
-/turf/open/floor/plasteel/yellow/side{
- dir = 6
+/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
+/turf/open/floor/plasteel/neutral/side{
+ dir = 8
},
-/area/mining_construction)
-"awi" = (
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+/area/crew_quarters/sleep)
+"auS" = (
+/obj/machinery/requests_console{
+ department = "Crew Quarters";
+ pixel_y = 30
},
-/obj/machinery/power/apc{
- dir = 8;
- name = "Auxillary Base Construction APC";
- pixel_x = -24;
- pixel_y = 0
+/obj/machinery/camera{
+ c_tag = "Dormitory North"
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
+/turf/open/floor/plasteel/neutral/side{
+ dir = 1
},
-/turf/open/floor/plating,
-/area/mining_construction)
-"awj" = (
+/area/crew_quarters/sleep)
+"auT" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"awk" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+"auU" = (
+/obj/machinery/firealarm{
+ dir = 2;
+ pixel_y = 24
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"awl" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
+/turf/open/floor/plasteel/neutral/side{
+ dir = 1
},
+/area/crew_quarters/sleep)
+"auV" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall,
/area/maintenance/fpmaint2)
-"awm" = (
-/obj/structure/mirror{
- icon_state = "mirror_broke";
- pixel_y = 28;
- broken = 1
- },
-/obj/machinery/iv_drip,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"awn" = (
-/obj/structure/frame/computer,
+"auW" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 1
+ },
+/area/crew_quarters/sleep)
+"auX" = (
+/obj/structure/mirror{
+ icon_state = "mirror_broke";
+ pixel_y = 28;
+ broken = 1
+ },
+/obj/machinery/iv_drip,
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"awo" = (
+"auY" = (
/obj/structure/mirror{
icon_state = "mirror_broke";
- pixel_y = 28;
- broken = 1
+ pixel_y = 28;
+ broken = 1
},
/obj/item/weapon/shard{
icon_state = "medium"
@@ -10339,170 +9635,115 @@
/obj/item/weapon/circuitboard/computer/operating,
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"awp" = (
+"auZ" = (
+/obj/structure/frame/computer,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2)
+"ava" = (
/obj/effect/decal/cleanable/cobweb/cobweb2,
/obj/structure/chair,
/obj/item/weapon/reagent_containers/blood/random,
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"awq" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+"avb" = (
+/turf/open/floor/plasteel/airless{
+ icon_state = "damaged3"
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"awr" = (
-/obj/item/weapon/airlock_painter,
-/obj/structure/lattice,
-/obj/structure/closet,
-/turf/open/space,
/area/space/nearstation)
-"aws" = (
+"avc" = (
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance{
lootcount = 4;
- name = "4maintenance loot spawner"
+ name = "4maintenance loot spawner"
},
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"awt" = (
+"avd" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 4;
- req_access_txt = "13"
+ req_access_txt = "13"
},
/turf/open/floor/plating,
/area/maintenance/fpmaint)
-"awu" = (
+"ave" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
- pixel_y = 32
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 0;
+ pixel_y = 32
},
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/fpmaint)
-"awv" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 8;
- req_access_txt = "13"
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint)
-"aww" = (
+"avf" = (
/obj/machinery/door/airlock/maintenance{
name = "Chemical Storage";
- req_access_txt = "12"
+ req_access_txt = "12"
},
/turf/open/floor/plating,
/area/maintenance/fpmaint)
-"awx" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall,
-/area/security/vacantoffice2)
-"awy" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/security/vacantoffice2)
-"awz" = (
+"avg" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/turf/open/floor/plasteel/neutral/side{
+ dir = 1
+ },
+/area/crew_quarters/sleep)
+"avh" = (
/obj/structure/cable{
icon_state = "0-2";
- d2 = 2
+ d2 = 2
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/power/apc{
dir = 8;
- name = "Vacant Office B APC";
- pixel_x = -24;
- pixel_y = 0
+ name = "Vacant Office B APC";
+ pixel_x = -24;
+ pixel_y = 0
},
/turf/open/floor/plating,
/area/security/vacantoffice2)
-"awA" = (
+"avi" = (
/obj/machinery/power/apc{
dir = 1;
- name = "Law Office APC";
- pixel_y = 24
+ name = "Law Office APC";
+ pixel_y = 24
},
/obj/structure/cable{
icon_state = "0-2";
- d2 = 2
+ d2 = 2
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/lawoffice)
-"awB" = (
+"avj" = (
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -24
+ pixel_x = -24
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/open/floor/plasteel/red/corner{
dir = 1
},
/area/hallway/primary/fore)
-"awC" = (
+"avk" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 27;
- pixel_y = 0
+ pixel_y = 0
},
/turf/open/floor/plasteel/red/corner{
dir = 4
},
/area/hallway/primary/fore)
-"awD" = (
-/obj/structure/bed,
-/obj/item/weapon/bedsheet,
-/obj/machinery/airalarm{
- pixel_y = 23
- },
-/obj/machinery/button/door{
- id = "Dorm3";
- name = "Dorm Bolt Control";
- normaldoorcontrol = 1;
- pixel_x = 25;
- pixel_y = 0;
- req_access_txt = "0";
- specialfunctions = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/sleep)
-"awE" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
-/turf/open/floor/plasteel/neutral/side{
- dir = 8
- },
-/area/crew_quarters/sleep)
-"awF" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/neutral/corner{
- dir = 4
- },
-/area/crew_quarters/sleep)
-"awG" = (
-/obj/machinery/firealarm{
- dir = 2;
- pixel_y = 24
+"avl" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -5;
+ pixel_y = 30
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -10511,14 +9752,7 @@
dir = 1
},
/area/crew_quarters/sleep)
-"awH" = (
-/obj/machinery/requests_console{
- department = "Crew Quarters";
- pixel_y = 30
- },
-/obj/machinery/camera{
- c_tag = "Dormitory North"
- },
+"avm" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -10526,247 +9760,309 @@
dir = 1
},
/area/crew_quarters/sleep)
-"awI" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plasteel/neutral/side{
- dir = 1
- },
-/area/crew_quarters/sleep)
-"awJ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+"avn" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/neutral/side{
dir = 1
},
/area/crew_quarters/sleep)
-"awK" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+"avo" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'HIGH VOLTAGE'";
+ icon_state = "shock";
+ name = "HIGH VOLTAGE";
+ pixel_y = 0
},
-/turf/open/floor/plasteel/neutral/side{
- dir = 1
+/turf/closed/wall,
+/area/maintenance/electrical)
+"avp" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/poddoor/shutters{
+ id = "aux_base_shutters";
+ name = "Auxillary Base Shutters"
},
-/area/crew_quarters/sleep)
-"awL" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = -5;
- pixel_y = 30
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/mining_construction)
+"avq" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2)
+"avr" = (
+/obj/machinery/firealarm{
+ pixel_y = 24
},
-/turf/open/floor/plasteel/neutral/side{
- dir = 1
+/obj/machinery/camera{
+ c_tag = "Detective's Office";
+ dir = 2
},
-/area/crew_quarters/sleep)
-"awM" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+/turf/open/floor/plasteel/grimy,
+/area/security/detectives_office)
+"avs" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/plasteel/neutral/side{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint)
+"avt" = (
+/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
+/turf/open/floor/plasteel,
/area/crew_quarters/sleep)
-"awN" = (
+"avu" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/side{
dir = 5
},
/area/crew_quarters/sleep)
-"awO" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/turf/open/floor/plating,
-/area/crew_quarters/fitness)
-"awP" = (
+"avv" = (
+/obj/structure/chair/stool{
+ pixel_y = 8
+ },
+/obj/effect/landmark/start{
+ name = "Assistant"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"avw" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/neutral/side{
dir = 8
},
/area/crew_quarters/fitness)
-"awQ" = (
+"avx" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/turf/open/floor/plating,
+/area/crew_quarters/fitness)
+"avy" = (
/obj/structure/window/reinforced{
dir = 8
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/fitness)
-"awR" = (
+"avz" = (
/turf/open/floor/plasteel/vault{
dir = 5
},
/area/crew_quarters/fitness)
-"awS" = (
+"avA" = (
/obj/structure/window/reinforced{
dir = 4
},
/turf/open/floor/plasteel/black,
/area/crew_quarters/fitness)
-"awT" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"awU" = (
-/obj/machinery/computer/holodeck,
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"awV" = (
+"avB" = (
+/obj/structure/grille,
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/ai_monitored/security/armory)
+"avC" = (
/obj/structure/chair{
dir = 8
},
/turf/open/floor/plasteel,
/area/crew_quarters/fitness)
-"awW" = (
+"avD" = (
+/obj/machinery/computer/holodeck,
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"avE" = (
/obj/machinery/door/poddoor/preopen{
id = "maint3"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"awX" = (
+"avF" = (
/obj/machinery/door/poddoor/preopen{
id = "maint3"
},
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"awY" = (
+"avG" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"avH" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
- pixel_y = 0
+ icon_state = "shock";
+ name = "HIGH VOLTAGE";
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
/turf/closed/wall,
/area/maintenance/electrical)
-"awZ" = (
+"avI" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fsmaint2)
+"avJ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/electrical)
+"avK" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/maintenance/electrical)
+"avL" = (
/obj/machinery/power/apc{
dir = 1;
- name = "Electrical Maintenance APC";
- pixel_y = 24
+ name = "Electrical Maintenance APC";
+ pixel_y = 24
},
/obj/structure/cable{
icon_state = "0-2";
- d2 = 2
+ d2 = 2
},
/turf/open/floor/plating,
/area/maintenance/electrical)
-"axa" = (
+"avM" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plating,
+/area/maintenance/electrical)
+"avN" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/open/floor/plating,
/area/maintenance/electrical)
-"axb" = (
+"avO" = (
/obj/structure/table,
/obj/item/clothing/gloves/color/fyellow,
/obj/item/weapon/storage/toolbox/electrical{
pixel_x = 1;
- pixel_y = -1
+ pixel_y = -1
},
/obj/item/device/multitool,
/obj/item/device/radio/intercom{
freerange = 0;
- frequency = 1459;
- name = "Station Intercom (General)";
- pixel_x = 29
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 29
},
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/electrical)
-"axc" = (
-/turf/closed/wall/r_wall,
+"avP" = (
+/obj/structure/sign/pods,
+/turf/closed/wall,
/area/hallway/secondary/entry)
-"axd" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/door/poddoor/shutters{
- id = "aux_base_shutters";
- name = "Auxillary Base Shutters"
+"avQ" = (
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
},
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/mining_construction)
-"axe" = (
-/obj/machinery/door/airlock/engineering{
- cyclelinkeddir = 1;
- name = "Auxillary Base Construction";
- req_access_txt = "0";
- req_one_access_txt = "32;47;48"
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/mining_construction)
-"axf" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
+/obj/machinery/camera{
+ c_tag = "Auxillary Base Construction";
+ dir = 8
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+/obj/machinery/computer/camera_advanced/base_construction,
+/turf/open/floor/plasteel/yellow/side{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"axg" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/maintenance/fpmaint2)
-"axh" = (
+/area/mining_construction)
+"avR" = (
+/obj/structure/table/wood,
+/obj/item/weapon/storage/firstaid/regular,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"avS" = (
/obj/item/weapon/wrench,
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"axi" = (
-/obj/structure/table/optable{
- name = "Robotics Operating Table"
+"avT" = (
+/obj/docking_port/stationary{
+ dheight = 9;
+ dir = 2;
+ dwidth = 5;
+ height = 24;
+ id = "syndicate_ne";
+ name = "northeast of station";
+ turf_type = /turf/open/space;
+ width = 18
},
-/obj/item/weapon/surgical_drapes,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"axj" = (
+/turf/open/space,
+/area/space)
+"avU" = (
+/obj/item/weapon/paper/crumpled,
/turf/open/floor/plasteel/airless{
- icon_state = "damaged5"
+ icon_state = "damaged2"
},
/area/space/nearstation)
-"axk" = (
+"avV" = (
/obj/structure/table,
/obj/machinery/cell_charger,
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"axl" = (
+"avW" = (
/obj/structure/table,
/obj/effect/spawner/lootdrop/maintenance{
lootcount = 2;
- name = "2maintenance loot spawner"
+ name = "2maintenance loot spawner"
},
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"axm" = (
+"avX" = (
/obj/machinery/light/small{
dir = 4
},
/obj/structure/chair/stool,
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"axn" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/closed/wall,
-/area/maintenance/fpmaint2)
-"axo" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/maintenance/fpmaint2)
-"axp" = (
+"avY" = (
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -10774,25 +10070,25 @@
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/maintenance/fpmaint)
-"axq" = (
+"avZ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/closed/wall,
/area/maintenance/fpmaint)
-"axr" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint)
-"axs" = (
+"awa" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
/turf/closed/wall,
/area/maintenance/fpmaint)
-"axt" = (
+"awb" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint)
+"awc" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -10800,81 +10096,55 @@
},
/turf/open/floor/plating,
/area/maintenance/fpmaint)
-"axu" = (
+"awd" = (
/obj/machinery/power/apc{
dir = 1;
- name = "EVA Maintenance APC";
- pixel_y = 24
+ name = "EVA Maintenance APC";
+ pixel_y = 24
},
/obj/structure/cable{
icon_state = "0-2";
- d2 = 2
+ d2 = 2
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/fpmaint)
-"axv" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint)
-"axw" = (
+"awe" = (
/obj/structure/cable{
d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d2 = 4;
+ icon_state = "2-4"
},
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/fpmaint)
-"axx" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
+"awf" = (
/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint)
-"axy" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ dir = 4;
+ icon_state = "pipe-c"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/fpmaint)
-"axz" = (
+"awg" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -10882,25 +10152,24 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/fpmaint)
-"axA" = (
+"awh" = (
/obj/effect/landmark{
name = "blobstart"
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 8;
+ icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -10908,31 +10177,31 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/fpmaint)
-"axB" = (
+"awi" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 8;
+ icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/fpmaint)
-"axC" = (
+"awj" = (
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -10942,30 +10211,30 @@
},
/turf/open/floor/plating,
/area/maintenance/fpmaint)
-"axD" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
+"awk" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"axE" = (
+"awl" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
},
/turf/open/floor/plasteel,
/area/hallway/primary/fore)
-"axF" = (
+"awm" = (
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
},
@@ -10977,119 +10246,109 @@
},
/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"axG" = (
+"awn" = (
/obj/structure/disposalpipe/segment{
dir = 8;
- icon_state = "pipe-c"
+ icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"axH" = (
+"awo" = (
/obj/machinery/door/airlock{
id_tag = "Dorm3";
- name = "Dorm 3"
+ name = "Dorm 3"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/crew_quarters/sleep)
-"axI" = (
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"axJ" = (
+"awp" = (
+/obj/structure/table/wood,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
+/obj/item/weapon/storage/pill_bottle/dice,
/turf/open/floor/plasteel,
/area/crew_quarters/sleep)
-"axK" = (
+"awq" = (
/obj/structure/chair/stool{
pixel_y = 8
},
-/obj/effect/landmark/start{
- name = "Assistant"
- },
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/crew_quarters/sleep)
-"axL" = (
+"awr" = (
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"aws" = (
/obj/structure/table/wood,
+/obj/item/weapon/coin/silver,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/item/weapon/storage/pill_bottle/dice,
/turf/open/floor/plasteel,
/area/crew_quarters/sleep)
-"axM" = (
-/obj/structure/table/wood,
-/obj/item/weapon/storage/firstaid/regular,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"axN" = (
-/obj/structure/table/wood,
-/obj/item/weapon/coin/silver,
+"awt" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+ dir = 9
},
/turf/open/floor/plasteel,
/area/crew_quarters/sleep)
-"axO" = (
+"awu" = (
/obj/structure/chair/stool{
pixel_y = 8
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
/turf/open/floor/plasteel,
/area/crew_quarters/sleep)
-"axP" = (
+"awv" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/crew_quarters/sleep)
-"axQ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
+"aww" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/floorgrime,
+/area/security/brig)
+"awx" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
+/turf/open/floor/plating,
+/area/maintenance/fsmaint2)
+"awy" = (
+/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"axR" = (
+/area/crew_quarters/fitness)
+"awz" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
name = "Fitness"
},
/turf/open/floor/plasteel,
/area/crew_quarters/fitness)
-"axS" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"axT" = (
+"awA" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
/obj/machinery/holopad,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/crew_quarters/fitness)
-"axU" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel/vault{
- dir = 5
- },
-/area/crew_quarters/fitness)
-"axV" = (
+"awB" = (
/obj/effect/landmark/start{
name = "Assistant"
},
@@ -11097,235 +10356,212 @@
dir = 4
},
/area/crew_quarters/fitness)
-"axW" = (
+"awC" = (
/obj/structure/table,
/obj/item/weapon/paper{
desc = "";
- info = "Brusies sustained in the holodeck can be healed simply by sleeping.";
- name = "Holodeck Disclaimer"
+ info = "Brusies sustained in the holodeck can be healed simply by sleeping.";
+ name = "Holodeck Disclaimer"
},
/turf/open/floor/plasteel,
/area/crew_quarters/fitness)
-"axX" = (
+"awD" = (
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"axY" = (
+"awE" = (
/obj/effect/decal/cleanable/cobweb/cobweb2,
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"axZ" = (
+"awF" = (
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance{
lootcount = 2;
- name = "2maintenance loot spawner"
+ name = "2maintenance loot spawner"
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aya" = (
+"awG" = (
/obj/structure/girder,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"ayb" = (
+"awH" = (
/obj/machinery/portable_atmospherics/canister/air,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"ayc" = (
+"awI" = (
/obj/machinery/button/door{
id = "maint2";
- name = "Blast Door Control B";
- pixel_x = -28;
- pixel_y = 4;
- req_access_txt = "0"
+ name = "Blast Door Control B";
+ pixel_x = -28;
+ pixel_y = 4;
+ req_access_txt = "0"
},
/obj/machinery/button/door{
id = "maint1";
- name = "Blast Door Control A";
- pixel_x = -28;
- pixel_y = -6;
- req_access_txt = "0"
+ name = "Blast Door Control A";
+ pixel_x = -28;
+ pixel_y = -6;
+ req_access_txt = "0"
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"ayd" = (
+"awJ" = (
/obj/structure/janitorialcart,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aye" = (
+"awK" = (
/obj/structure/table/glass,
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
+/obj/item/weapon/pen,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"ayf" = (
+"awL" = (
/obj/structure/table/glass,
-/obj/item/weapon/pen,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"ayg" = (
+"awM" = (
/obj/structure/cable{
d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d2 = 4;
+ icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"ayh" = (
+"awN" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"ayi" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/engineering{
- name = "Electrical Maintenance";
- req_access_txt = "11"
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden)
+"awO" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/open/floor/plating,
/area/maintenance/electrical)
-"ayj" = (
+"awP" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/electrical)
-"ayk" = (
+"awQ" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/engineering{
+ name = "Electrical Maintenance";
+ req_access_txt = "11"
},
-/obj/machinery/holopad,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/electrical)
-"ayl" = (
+"awR" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 8;
+ icon_state = "1-8"
},
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 4;
+ icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/electrical)
-"aym" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
+"awS" = (
+/obj/structure/chair/stool{
+ pixel_y = 8
},
/turf/open/floor/plating,
/area/maintenance/electrical)
-"ayn" = (
-/obj/structure/chair/stool{
- pixel_y = 8
+"awT" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/holopad,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
/turf/open/floor/plating,
/area/maintenance/electrical)
-"ayo" = (
+"awU" = (
/obj/structure/table,
/obj/machinery/light{
icon_state = "tube1";
- dir = 4
+ dir = 4
},
/obj/item/wallframe/camera,
/obj/item/wallframe/camera,
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
+ icon_state = "alarm0";
+ pixel_x = 24
},
/obj/item/device/assembly/prox_sensor{
pixel_x = -8;
- pixel_y = 4
+ pixel_y = 4
},
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/electrical)
-"ayp" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/pod_2)
-"ayq" = (
-/obj/structure/shuttle/engine/propulsion/burst{
- tag = "icon-propulsion (WEST)";
- icon_state = "propulsion";
- dir = 8
+"awV" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
},
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/pod_2)
-"ayr" = (
-/turf/closed/wall,
+/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"ays" = (
-/obj/structure/closet/emcloset,
+"awW" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/hallway/secondary/entry)
-"ayt" = (
-/obj/structure/sign/pods,
-/turf/closed/wall,
-/area/hallway/secondary/entry)
-"ayu" = (
+"awX" = (
/obj/machinery/light{
dir = 1
},
-/turf/open/floor/plasteel/arrival{
- dir = 1
- },
-/area/hallway/secondary/entry)
-"ayv" = (
-/turf/open/floor/plasteel/arrival{
- dir = 1
- },
-/area/hallway/secondary/entry)
-"ayw" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
+/turf/open/floor/plating,
+/area/shuttle/auxillary_base)
+"awY" = (
/obj/machinery/light{
dir = 1
},
@@ -11333,43 +10569,29 @@
dir = 1
},
/area/hallway/secondary/entry)
-"ayx" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/yellow/corner{
- dir = 4
- },
-/area/hallway/secondary/entry)
-"ayy" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plasteel/yellow/side{
- dir = 1
- },
-/area/hallway/secondary/entry)
-"ayz" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/yellow/corner{
+"awZ" = (
+/turf/open/floor/plasteel/arrival{
dir = 1
},
/area/hallway/secondary/entry)
-"ayA" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+"axa" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/turf/open/floor/plasteel/arrival{
- dir = 1
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
},
-/area/hallway/secondary/entry)
-"ayB" = (
+/turf/open/floor/plating,
+/area/maintenance/electrical)
+"axb" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
@@ -11378,238 +10600,272 @@
dir = 5
},
/area/hallway/secondary/entry)
-"ayC" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+"axc" = (
+/obj/structure/rack{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/item/weapon/electronics/airlock,
+/obj/item/weapon/electronics/airlock,
+/obj/item/weapon/electronics/airlock,
+/obj/item/weapon/electronics/airlock,
+/obj/item/stack/cable_coil,
+/obj/item/stack/cable_coil,
+/obj/item/wallframe/camera,
+/obj/item/wallframe/camera,
+/obj/item/wallframe/camera,
+/obj/item/wallframe/camera,
+/obj/item/device/assault_pod/mining,
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for the Auxillary Mining Base.";
+ dir = 8;
+ name = "Auxillary Base Monitor";
+ network = list("AuxBase");
+ pixel_x = 28
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 4
+ },
+/area/mining_construction)
+"axd" = (
+/mob/living/simple_animal/mouse,
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"ayD" = (
+"axe" = (
/obj/machinery/sleeper{
dir = 4;
- icon_state = "sleeper-open"
+ icon_state = "sleeper-open"
},
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"ayE" = (
+"axf" = (
/obj/effect/landmark{
name = "blobstart"
},
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"ayF" = (
+"axg" = (
/obj/structure/table/glass,
/obj/item/weapon/storage/bag/trash,
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"ayG" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
+"axh" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
-/turf/closed/wall,
-/area/maintenance/fpmaint2)
-"ayH" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/arrival{
+ dir = 1
+ },
+/area/hallway/secondary/entry)
+"axi" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"ayI" = (
+"axj" = (
/obj/machinery/door/airlock/maintenance{
name = "Firefighting equipment";
- req_access_txt = "12"
+ req_access_txt = "12"
},
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"ayJ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"ayK" = (
+"axk" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"ayL" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
+"axl" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"ayM" = (
+"axm" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
- pixel_y = -32
+ icon_state = "shock";
+ name = "HIGH VOLTAGE";
+ pixel_y = -32
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/fpmaint)
-"ayN" = (
+"axn" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2)
+"axo" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/fpmaint)
-"ayO" = (
+"axp" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
/turf/open/floor/plating,
/area/maintenance/fpmaint)
-"ayP" = (
+"axq" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/fpmaint)
-"ayQ" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint)
-"ayR" = (
+"axr" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
- pixel_y = -32
+ icon_state = "shock";
+ name = "HIGH VOLTAGE";
+ pixel_y = -32
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/fpmaint)
-"ayS" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
+"axs" = (
/obj/structure/cable{
d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d2 = 4;
+ icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/fpmaint)
-"ayT" = (
+"axt" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/fpmaint)
-"ayU" = (
+"axu" = (
/obj/structure/disposalpipe/segment{
- dir = 4
+ dir = 4;
+ icon_state = "pipe-c"
},
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/fpmaint)
-"ayV" = (
+"axv" = (
/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+ dir = 4
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/fpmaint)
-"ayW" = (
+"axw" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 8;
+ icon_state = "1-8"
},
/obj/structure/cable{
d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d2 = 8;
+ icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
/turf/open/floor/plating,
/area/maintenance/fpmaint)
-"ayX" = (
+"axx" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint)
+"axy" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall/r_wall,
/area/ai_monitored/storage/eva)
-"ayY" = (
+"axz" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/closed/wall/r_wall,
/area/ai_monitored/storage/eva)
-"ayZ" = (
+"axA" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall,
/area/ai_monitored/storage/eva)
-"aza" = (
+"axB" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/fore)
+"axC" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -11618,66 +10874,79 @@
dir = 8
},
/area/hallway/primary/fore)
-"azb" = (
+"axD" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/turf/open/floor/plasteel,
-/area/hallway/primary/fore)
-"azc" = (
+/turf/closed/wall,
+/area/maintenance/fsmaint)
+"axE" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
/turf/open/floor/plasteel/blue/corner,
/area/hallway/primary/fore)
-"azd" = (
+"axF" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+ dir = 9
},
-/turf/closed/wall,
+/turf/open/floor/plating,
/area/maintenance/fsmaint)
-"aze" = (
+"axG" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
+ dir = 4
+ },
+/turf/open/floor/plasteel/arrival{
+ dir = 1
+ },
+/area/hallway/secondary/entry)
+"axH" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/turf/open/floor/plasteel/yellow/side{
+ dir = 1
+ },
+/area/hallway/secondary/entry)
+"axI" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/yellow/corner{
+ dir = 4
+ },
+/area/hallway/secondary/entry)
+"axJ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/fsmaint)
-"azf" = (
+/area/maintenance/fpmaint2)
+"axK" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/closed/wall,
+/area/maintenance/fpmaint2)
+"axL" = (
/obj/machinery/holopad,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/crew_quarters/sleep)
-"azg" = (
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"azh" = (
-/obj/structure/chair/stool{
- pixel_y = 8
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"azi" = (
-/obj/structure/table/wood,
-/obj/item/weapon/storage/crayons,
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"azj" = (
+"axM" = (
/obj/structure/table/wood,
/obj/item/device/paicard,
/turf/open/floor/plasteel,
/area/crew_quarters/sleep)
-"azk" = (
+"axN" = (
/obj/structure/table/wood,
-/obj/item/toy/cards/deck{
- pixel_x = 2
- },
-/obj/item/clothing/mask/balaclava{
- pixel_x = -8;
- pixel_y = 8
- },
+/obj/item/weapon/storage/crayons,
/turf/open/floor/plasteel,
/area/crew_quarters/sleep)
-"azl" = (
+"axO" = (
/obj/structure/chair/stool{
pixel_y = 8
},
@@ -11686,28 +10955,31 @@
},
/turf/open/floor/plasteel,
/area/crew_quarters/sleep)
-"azm" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
+"axP" = (
+/obj/structure/table/wood,
+/obj/item/toy/cards/deck{
+ pixel_x = 2
+ },
+/obj/item/clothing/mask/balaclava{
+ pixel_x = -8;
+ pixel_y = 8
},
/turf/open/floor/plasteel,
/area/crew_quarters/sleep)
-"azn" = (
+"axQ" = (
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
+/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"azo" = (
+/area/crew_quarters/fitness)
+"axR" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
@@ -11715,63 +10987,71 @@
},
/turf/open/floor/plasteel,
/area/crew_quarters/fitness)
-"azp" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+"axS" = (
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 8
},
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel,
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/black,
/area/crew_quarters/fitness)
-"azq" = (
+"axT" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
/obj/structure/cable{
d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d2 = 8;
+ icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
/turf/open/floor/plasteel,
/area/crew_quarters/fitness)
-"azr" = (
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/black,
-/area/crew_quarters/fitness)
-"azs" = (
+"axU" = (
/obj/structure/window/reinforced,
/turf/open/floor/plasteel/black,
/area/crew_quarters/fitness)
-"azt" = (
+"axV" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"axW" = (
/obj/machinery/door/window/eastright{
base_state = "left";
- icon_state = "left";
- name = "Fitness Ring"
+ icon_state = "left";
+ name = "Fitness Ring"
},
/obj/structure/window/reinforced,
/turf/open/floor/plasteel/black,
/area/crew_quarters/fitness)
-"azu" = (
+"axX" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ external_pressure_bound = 101.325;
+ on = 1;
+ pressure_checks = 1
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"axY" = (
/turf/open/floor/plasteel/green/side{
dir = 4
},
/area/crew_quarters/fitness)
-"azv" = (
+"axZ" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
name = "Holodeck Door"
@@ -11781,230 +11061,136 @@
},
/turf/open/floor/plasteel,
/area/crew_quarters/fitness)
-"azw" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"azx" = (
+"aya" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
- on = 1
+ on = 1
},
/turf/open/floor/plasteel,
/area/crew_quarters/fitness)
-"azy" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+"ayb" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"azz" = (
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"ayc" = (
/obj/structure/cable{
d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d2 = 8;
+ icon_state = "2-8"
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"azA" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+"ayd" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"azB" = (
+"aye" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"azC" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+"ayf" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"azD" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+"ayg" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/closed/wall,
-/area/maintenance/electrical)
-"azE" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/fsmaint2)
+"ayh" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/closed/wall,
-/area/maintenance/electrical)
-"azF" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/electrical)
-"azG" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_Toxins = 0
+/area/maintenance/fpmaint2)
+"ayi" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
},
/turf/open/floor/plating,
-/area/maintenance/electrical)
-"azH" = (
+/area/maintenance/fpmaint2)
+"ayj" = (
/obj/structure/table,
/obj/machinery/cell_charger,
/obj/item/weapon/stock_parts/cell/high/plus,
/obj/item/weapon/stock_parts/cell/high/plus,
/turf/open/floor/plating,
/area/maintenance/electrical)
-"azI" = (
-/obj/docking_port/stationary/random{
- dir = 8;
- id = "pod_asteroid2";
- name = "asteroid"
- },
-/turf/open/space,
-/area/space)
-"azJ" = (
-/obj/structure/grille,
-/obj/structure/window/shuttle,
-/turf/open/floor/plating,
-/area/shuttle/pod_2)
-"azK" = (
-/obj/machinery/computer/shuttle/pod{
- pixel_x = 0;
- pixel_y = -32;
- possible_destinations = "pod_asteroid2";
- shuttleId = "pod2"
- },
-/obj/structure/chair{
- dir = 8
- },
-/obj/machinery/status_display{
- density = 0;
- layer = 3;
- pixel_x = 0;
- pixel_y = 32
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/pod_2)
-"azL" = (
-/obj/item/weapon/storage/pod{
- pixel_x = 6;
- pixel_y = -28
- },
-/obj/item/device/radio/intercom{
- pixel_x = 0;
- pixel_y = 25
- },
-/obj/structure/chair{
- dir = 8
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/pod_2)
-"azM" = (
-/obj/machinery/door/airlock/titanium{
- name = "Escape Pod Airlock"
- },
-/obj/docking_port/mobile/pod{
- dir = 8;
- id = "pod2";
- name = "escape pod 2";
- port_angle = 180
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/pod_2)
-"azN" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 1;
- name = "Escape Pod One"
- },
-/turf/open/floor/plating,
-/area/hallway/secondary/entry)
-"azO" = (
-/turf/open/floor/plating,
-/area/hallway/secondary/entry)
-"azP" = (
+"ayk" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"azQ" = (
+"ayl" = (
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"azR" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
+"aym" = (
/obj/effect/turf_decal/stripes/corner{
dir = 1
},
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"azS" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"azT" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
+"ayn" = (
/obj/effect/turf_decal/stripes/corner{
dir = 2
},
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"azU" = (
+"ayo" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/effect/turf_decal/stripes/line,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"azV" = (
+"ayp" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"azW" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 1
+"ayq" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/yellow/side{
+ dir = 8
},
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"azX" = (
+/area/mining_construction)
+"ayr" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 27;
- pixel_y = 0
+ pixel_y = 0
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -12013,200 +11199,170 @@
dir = 4
},
/area/hallway/secondary/entry)
-"azY" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"azZ" = (
+"ays" = (
/obj/structure/closet/wardrobe/white,
/obj/item/clothing/shoes/jackboots,
/obj/item/weapon/reagent_containers/blood/random,
/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka,
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"aAa" = (
+"ayt" = (
/obj/structure/table/glass,
/obj/item/weapon/hemostat,
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"aAb" = (
+"ayu" = (
/obj/structure/table/glass,
/obj/item/weapon/restraints/handcuffs/cable/zipties,
/obj/item/weapon/reagent_containers/blood/random,
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"aAc" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"aAd" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"aAe" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+"ayv" = (
+/obj/machinery/airalarm{
+ pixel_y = 23
},
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"aAf" = (
+/obj/item/device/radio/off,
+/obj/item/device/assembly/timer,
+/turf/open/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"ayw" = (
/obj/structure/cable{
d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d2 = 8;
+ icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"aAg" = (
+"ayx" = (
/obj/structure/closet/firecloset,
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"aAh" = (
+"ayy" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"aAi" = (
+"ayz" = (
/turf/closed/wall/r_wall,
/area/maintenance/fpmaint2)
-"aAj" = (
+"ayA" = (
/obj/structure/grille,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
/obj/structure/cable{
icon_state = "0-4";
- d2 = 4
+ d2 = 4
},
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/maintenance/fpmaint)
-"aAk" = (
+"ayB" = (
/obj/structure/grille,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
/obj/structure/cable{
icon_state = "0-4";
- d2 = 4
+ d2 = 4
},
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/maintenance/fpmaint)
-"aAl" = (
+"ayC" = (
/obj/structure/grille,
/obj/structure/cable{
d2 = 8;
- icon_state = "0-8"
+ icon_state = "0-8"
},
/obj/structure/cable{
icon_state = "0-4";
- d2 = 4
+ d2 = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/maintenance/fpmaint)
-"aAm" = (
+"ayD" = (
/obj/structure/grille,
/obj/structure/cable{
d2 = 8;
- icon_state = "0-8"
+ icon_state = "0-8"
},
/obj/structure/cable{
icon_state = "0-4";
- d2 = 4
+ d2 = 4
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/maintenance/fpmaint)
-"aAn" = (
+"ayE" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/fpmaint)
+"ayF" = (
/obj/structure/grille,
/obj/structure/cable,
/obj/structure/cable{
d2 = 8;
- icon_state = "0-8"
+ icon_state = "0-8"
},
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/maintenance/fpmaint)
-"aAo" = (
+"ayG" = (
/turf/closed/wall/r_wall,
-/area/maintenance/fpmaint)
-"aAp" = (
+/area/gateway)
+"ayH" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/fpmaint)
-"aAq" = (
-/turf/closed/wall/r_wall,
-/area/gateway)
-"aAr" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint)
-"aAs" = (
+"ayI" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/sign/securearea{
pixel_x = 32;
- pixel_y = 0
+ pixel_y = 0
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/fpmaint)
-"aAt" = (
-/turf/closed/wall/r_wall,
-/area/ai_monitored/storage/eva)
-"aAu" = (
+"ayJ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint)
+"ayK" = (
/obj/structure/closet/crate/rcd,
/obj/machinery/camera/motion{
c_tag = "EVA Motion Sensor";
- name = "motion-sensitive security camera"
+ name = "motion-sensitive security camera"
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/storage/eva)
-"aAv" = (
+"ayL" = (
+/turf/closed/wall/r_wall,
+/area/ai_monitored/storage/eva)
+"ayM" = (
+/obj/machinery/firealarm{
+ dir = 2;
+ pixel_y = 24
+ },
+/obj/item/clothing/head/welding,
+/turf/open/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"ayN" = (
/obj/structure/rack{
dir = 8;
- layer = 2.9
+ layer = 2.9
},
/obj/machinery/light{
dir = 1
@@ -12218,61 +11374,54 @@
/obj/item/device/flashlight,
/turf/open/floor/plasteel/black,
/area/ai_monitored/storage/eva)
-"aAw" = (
-/obj/machinery/firealarm{
- dir = 2;
- pixel_y = 24
+"ayO" = (
+/obj/structure/table,
+/obj/item/weapon/storage/toolbox/electrical{
+ pixel_x = 1;
+ pixel_y = -1
},
-/obj/item/clothing/head/welding,
-/turf/open/floor/plasteel,
+/obj/item/weapon/screwdriver{
+ pixel_y = 16
+ },
+/turf/open/floor/plasteel/black,
/area/ai_monitored/storage/eva)
-"aAx" = (
+"ayP" = (
/obj/machinery/power/apc{
dir = 1;
- name = "EVA Storage APC";
- pixel_x = 0;
- pixel_y = 24
+ name = "EVA Storage APC";
+ pixel_x = 0;
+ pixel_y = 24
},
/obj/structure/cable{
icon_state = "0-2";
- d2 = 2
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"aAy" = (
-/obj/machinery/airalarm{
- pixel_y = 23
+ d2 = 2
},
-/obj/item/device/radio/off,
-/obj/item/device/assembly/timer,
/turf/open/floor/plasteel,
/area/ai_monitored/storage/eva)
-"aAz" = (
+"ayQ" = (
/obj/structure/table,
/obj/item/stack/cable_coil{
pixel_x = 3;
- pixel_y = -7
+ pixel_y = -7
},
/obj/machinery/cell_charger,
/obj/item/weapon/stock_parts/cell/high/plus,
/turf/open/floor/plasteel/black,
/area/ai_monitored/storage/eva)
-"aAA" = (
+"ayR" = (
/obj/structure/table,
-/obj/item/weapon/storage/toolbox/electrical{
- pixel_x = 1;
- pixel_y = -1
- },
-/obj/item/weapon/screwdriver{
- pixel_y = 16
+/obj/item/weapon/storage/toolbox/mechanical{
+ pixel_x = -2;
+ pixel_y = -1
},
-/turf/open/floor/plasteel/black,
+/obj/item/device/multitool,
+/turf/open/floor/plasteel,
/area/ai_monitored/storage/eva)
-"aAB" = (
+"ayS" = (
/obj/structure/grille,
/obj/structure/cable{
icon_state = "0-2";
- d2 = 2
+ d2 = 2
},
/obj/structure/sign/securearea{
pixel_y = 32
@@ -12280,16 +11429,7 @@
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/ai_monitored/storage/eva)
-"aAC" = (
-/obj/structure/table,
-/obj/item/weapon/storage/toolbox/mechanical{
- pixel_x = -2;
- pixel_y = -1
- },
-/obj/item/device/multitool,
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"aAD" = (
+"ayT" = (
/obj/machinery/light{
dir = 1
},
@@ -12299,10 +11439,40 @@
/obj/item/weapon/stock_parts/cell/high/plus,
/turf/open/floor/plasteel,
/area/ai_monitored/storage/eva)
-"aAE" = (
+"ayU" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
/turf/open/floor/plasteel,
/area/ai_monitored/storage/eva)
-"aAF" = (
+"ayV" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet,
+/obj/machinery/airalarm{
+ pixel_y = 23
+ },
+/obj/machinery/button/door{
+ id = "Dorm2";
+ name = "Dorm Bolt Control";
+ normaldoorcontrol = 1;
+ pixel_x = 25;
+ pixel_y = 0;
+ req_access_txt = "0";
+ specialfunctions = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/sleep)
+"ayW" = (
+/turf/closed/wall,
+/area/ai_monitored/storage/eva)
+"ayX" = (
/obj/structure/table,
/obj/item/weapon/storage/belt/utility,
/obj/item/weapon/storage/belt/utility,
@@ -12310,51 +11480,39 @@
/obj/item/clothing/head/welding,
/turf/open/floor/plasteel,
/area/ai_monitored/storage/eva)
-"aAG" = (
-/turf/closed/wall,
-/area/ai_monitored/storage/eva)
-"aAH" = (
+"ayY" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
+ external_pressure_bound = 101.325;
+ on = 1;
+ pressure_checks = 1
},
/turf/open/floor/plasteel/blue/corner{
dir = 8
},
/area/hallway/primary/fore)
-"aAI" = (
+"ayZ" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
/turf/open/floor/plasteel/blue/corner,
/area/hallway/primary/fore)
-"aAJ" = (
-/obj/structure/bed,
-/obj/item/weapon/bedsheet,
-/obj/machinery/airalarm{
- pixel_y = 23
- },
-/obj/machinery/button/door{
- id = "Dorm2";
- name = "Dorm Bolt Control";
- normaldoorcontrol = 1;
- pixel_x = 25;
- pixel_y = 0;
- req_access_txt = "0";
- specialfunctions = 4
+"aza" = (
+/obj/machinery/light,
+/turf/open/floor/plasteel/neutral/side,
+/area/crew_quarters/sleep)
+"azb" = (
+/obj/structure/chair/stool{
+ pixel_y = 8
},
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
},
-/turf/open/floor/carpet,
/area/crew_quarters/sleep)
-"aAK" = (
+"azc" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
@@ -12362,278 +11520,251 @@
dir = 8
},
/area/crew_quarters/sleep)
-"aAL" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/crew_quarters/sleep)
-"aAM" = (
-/obj/structure/chair/stool{
- pixel_y = 8
- },
-/turf/open/floor/plasteel/neutral/corner{
- dir = 2
- },
-/area/crew_quarters/sleep)
-"aAN" = (
-/obj/machinery/light,
-/turf/open/floor/plasteel/neutral/side,
-/area/crew_quarters/sleep)
-"aAO" = (
-/turf/open/floor/plasteel/neutral/side,
-/area/crew_quarters/sleep)
-"aAP" = (
+"azd" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
/turf/open/floor/plasteel/neutral/side{
dir = 6
},
/area/crew_quarters/sleep)
-"aAQ" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/item/device/radio/intercom{
- name = "Station Intercom (General)";
- pixel_y = -29
- },
-/turf/open/floor/plasteel/neutral/side{
+"aze" = (
+/turf/open/floor/plasteel/neutral/side,
+/area/crew_quarters/sleep)
+"azf" = (
+/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"azg" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
+/turf/open/floor/plating,
/area/crew_quarters/fitness)
-"aAR" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
+"azh" = (
+/obj/machinery/camera{
+ c_tag = "Fitness Room South";
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/neutral/corner{
- dir = 8
+/turf/open/floor/plasteel/green/side{
+ dir = 4
},
/area/crew_quarters/fitness)
-"aAS" = (
+"azi" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2)
+"azj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -29
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 10
+ },
+/area/crew_quarters/fitness)
+"azk" = (
/obj/structure/disposalpipe/segment{
dir = 2;
- icon_state = "pipe-c"
+ icon_state = "pipe-c"
},
/turf/open/floor/plasteel,
/area/crew_quarters/fitness)
-"aAT" = (
-/obj/structure/table,
-/obj/item/weapon/storage/firstaid/regular,
-/turf/open/floor/plasteel,
+"azl" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
/area/crew_quarters/fitness)
-"aAU" = (
+"azm" = (
/obj/structure/chair/stool{
pixel_y = 8
},
/turf/open/floor/plasteel,
/area/crew_quarters/fitness)
-"aAV" = (
+"azn" = (
+/obj/structure/table,
+/obj/item/weapon/storage/firstaid/regular,
+/turf/open/floor/plasteel,
+/area/crew_quarters/fitness)
+"azo" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
- on = 1
+ on = 1
},
/turf/open/floor/plasteel,
/area/crew_quarters/fitness)
-"aAW" = (
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/fitness)
-"aAX" = (
-/obj/machinery/camera{
- c_tag = "Fitness Room South";
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/green/side{
- dir = 4
- },
-/area/crew_quarters/fitness)
-"aAY" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/crew_quarters/fitness)
-"aAZ" = (
+"azp" = (
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/crew_quarters/fitness)
-"aBa" = (
-/obj/structure/grille/broken,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aBb" = (
+"azq" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/hallway/secondary/construction{
+ name = "\improper Garden"
+ })
+"azr" = (
+/obj/structure/grille/broken,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aBc" = (
-/obj/machinery/power/terminal,
+"azs" = (
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/turf/open/floor/plating,
-/area/maintenance/electrical)
-"aBd" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"azt" = (
+/obj/machinery/power/terminal,
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
},
/turf/open/floor/plating,
/area/maintenance/electrical)
-"aBe" = (
+"azu" = (
/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+ icon_state = "0-2";
+ d2 = 2
},
/turf/open/floor/plating,
/area/maintenance/electrical)
-"aBf" = (
+"azv" = (
/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ d2 = 8;
+ icon_state = "0-8"
},
/turf/open/floor/plating,
/area/maintenance/electrical)
-"aBg" = (
+"azw" = (
/obj/machinery/light_switch{
pixel_y = -25
},
/obj/structure/cable{
icon_state = "0-4";
- d2 = 4
+ d2 = 4
},
/turf/open/floor/plating,
/area/maintenance/electrical)
-"aBh" = (
+"azx" = (
/obj/machinery/power/terminal,
/obj/structure/cable{
d2 = 8;
- icon_state = "0-8"
+ icon_state = "0-8"
},
/turf/open/floor/plating,
/area/maintenance/electrical)
-"aBi" = (
-/obj/machinery/camera{
- c_tag = "Arrivals Escape Pod 2";
- dir = 8
- },
-/obj/machinery/light/small,
-/turf/open/floor/plating,
-/area/hallway/secondary/entry)
-"aBj" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/hallway/secondary/entry)
-"aBk" = (
+"azy" = (
/obj/machinery/door/airlock/external{
name = "Port Docking Bay 1"
},
/turf/open/floor/plating,
/area/hallway/secondary/entry)
-"aBl" = (
+"azz" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"aBm" = (
+"azA" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"aBn" = (
+"azB" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
},
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"aBo" = (
+"azC" = (
/obj/item/device/radio/intercom{
name = "Station Intercom (General)";
- pixel_y = -29
+ pixel_y = -29
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"aBp" = (
-/obj/effect/turf_decal/stripes/corner{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aBq" = (
+"azD" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/open/floor/plasteel/arrival{
dir = 4
},
/area/hallway/secondary/entry)
-"aBr" = (
-/turf/closed/wall,
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
-"aBs" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+"azE" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"azF" = (
/turf/closed/wall,
/area/hallway/secondary/construction{
name = "\improper Garden"
})
-"aBt" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"aBu" = (
+"azG" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
/turf/closed/wall,
/area/maintenance/fpmaint2)
-"aBv" = (
+"azH" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/space,
/area/space)
-"aBw" = (
+"azI" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/space,
/area/space)
-"aBx" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/turf/open/floor/plasteel/black,
-/area/gateway)
-"aBy" = (
+"azJ" = (
/obj/machinery/gateway{
dir = 9
},
@@ -12641,15 +11772,14 @@
dir = 1
},
/area/gateway)
-"aBz" = (
-/obj/machinery/gateway{
- dir = 1
- },
-/turf/open/floor/plasteel/vault{
+"azK" = (
+/obj/machinery/light{
+ icon_state = "tube1";
dir = 8
},
+/turf/open/floor/plasteel/black,
/area/gateway)
-"aBA" = (
+"azL" = (
/obj/machinery/gateway{
dir = 5
},
@@ -12657,138 +11787,139 @@
dir = 4
},
/area/gateway)
-"aBB" = (
+"azM" = (
+/obj/machinery/gateway{
+ dir = 1
+ },
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/gateway)
+"azN" = (
/obj/machinery/light{
dir = 4
},
/turf/open/floor/plasteel/black,
/area/gateway)
-"aBC" = (
+"azO" = (
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 4;
+ icon_state = "1-4"
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
/turf/open/floor/plating,
/area/maintenance/fpmaint)
-"aBD" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/maintenance{
- name = "EVA Maintenance";
- req_access_txt = "18"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"aBE" = (
+"azP" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/ai_monitored/storage/eva)
-"aBF" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"aBG" = (
+"azQ" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/maintenance{
+ name = "EVA Maintenance";
+ req_access_txt = "18"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/ai_monitored/storage/eva)
-"aBH" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
+"azR" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/ai_monitored/storage/eva)
-"aBI" = (
+"azS" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_command{
name = "EVA Storage";
- req_access_txt = "18"
+ req_access_txt = "18"
},
/obj/structure/cable{
d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d2 = 8;
+ icon_state = "2-8"
},
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 8;
+ icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/ai_monitored/storage/eva)
-"aBJ" = (
+"azT" = (
+/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/crew_quarters/sleep)
+"azU" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/ai_monitored/storage/eva)
-"aBK" = (
+"azV" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1;
+ scrub_Toxins = 0
},
+/turf/open/floor/plasteel/neutral/side,
+/area/crew_quarters/sleep)
+"azW" = (
/turf/open/floor/plasteel,
/area/ai_monitored/storage/eva)
-"aBL" = (
+"azX" = (
+/obj/machinery/door/airlock{
+ name = "Unisex Showers";
+ req_access_txt = "0"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/toilet)
+"azY" = (
/obj/structure/table,
/obj/item/device/radio/off,
/obj/item/device/radio/off,
@@ -12796,138 +11927,121 @@
/obj/item/device/assembly/prox_sensor,
/turf/open/floor/plasteel,
/area/ai_monitored/storage/eva)
-"aBM" = (
+"azZ" = (
/turf/open/floor/plasteel/blue/corner{
dir = 8
},
/area/hallway/primary/fore)
-"aBN" = (
+"aAa" = (
/turf/open/floor/plasteel/blue/corner,
/area/hallway/primary/fore)
-"aBO" = (
+"aAb" = (
/obj/machinery/door/airlock{
id_tag = "Dorm2";
- name = "Dorm 2"
+ name = "Dorm 2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/crew_quarters/sleep)
-"aBP" = (
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
-/turf/open/floor/plasteel/neutral/corner{
- dir = 2
- },
-/area/crew_quarters/sleep)
-"aBQ" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_Toxins = 0
+"aAc" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/maintenance/fsmaint2)
+"aAd" = (
+/obj/machinery/light_switch{
+ pixel_y = -25
},
/turf/open/floor/plasteel/neutral/side,
/area/crew_quarters/sleep)
-"aBR" = (
-/obj/machinery/light_switch{
- pixel_y = -25
+"aAe" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
-/obj/machinery/vending/clothing,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2)
+"aAf" = (
+/obj/structure/closet/wardrobe/pjs,
/turf/open/floor/plasteel/neutral/side,
/area/crew_quarters/sleep)
-"aBS" = (
+"aAg" = (
/obj/item/device/radio/intercom{
name = "Station Intercom (General)";
- pixel_y = -29
- },
-/obj/machinery/vending/autodrobe{
- req_access_txt = "0"
+ pixel_y = -29
},
/turf/open/floor/plasteel/neutral/side,
/area/crew_quarters/sleep)
-"aBT" = (
-/obj/structure/closet/wardrobe/pjs,
-/turf/open/floor/plasteel/neutral/side,
-/area/crew_quarters/sleep)
-"aBU" = (
+"aAh" = (
+/turf/closed/wall,
+/area/crew_quarters/toilet)
+"aAi" = (
/obj/structure/closet/wardrobe/pjs,
/turf/open/floor/plasteel/neutral/side{
dir = 6
},
/area/crew_quarters/sleep)
-"aBV" = (
-/turf/closed/wall,
-/area/crew_quarters/toilet)
-"aBW" = (
-/obj/machinery/door/airlock{
- name = "Unisex Showers";
- req_access_txt = "0"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet)
-"aBX" = (
+"aAj" = (
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
+ d2 = 4;
+ icon_state = "1-4"
},
-/turf/open/floor/plasteel/neutral/side{
- dir = 10
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "Security Checkpoint APC";
+ pixel_x = 1;
+ pixel_y = -24
},
-/area/crew_quarters/fitness)
-"aBY" = (
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/security/checkpoint2)
+"aAk" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
/obj/structure/disposalpipe/segment{
dir = 1;
- icon_state = "pipe-c"
+ icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/neutral/side,
/area/crew_quarters/fitness)
-"aBZ" = (
+"aAl" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/light_switch{
- pixel_y = -25
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+ dir = 5
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 10
},
-/turf/open/floor/plasteel/neutral/side,
/area/crew_quarters/fitness)
-"aCa" = (
+"aAm" = (
/obj/machinery/firealarm{
dir = 1;
- pixel_y = -24
+ pixel_y = -24
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -12938,72 +12052,84 @@
},
/turf/open/floor/plasteel/neutral/side,
/area/crew_quarters/fitness)
-"aCb" = (
+"aAn" = (
/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
+ dir = 4
+ },
+/obj/machinery/light_switch{
+ pixel_y = -25
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
+ dir = 4
},
/turf/open/floor/plasteel/neutral/side,
/area/crew_quarters/fitness)
-"aCc" = (
+"aAo" = (
/obj/structure/reagent_dispensers/water_cooler,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral/side{
dir = 6
},
/area/crew_quarters/fitness)
-"aCd" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
+"aAp" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aCe" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/neutral/side,
+/area/crew_quarters/fitness)
+"aAq" = (
/obj/machinery/atmospherics/components/unary/tank/air{
dir = 8
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aCf" = (
+"aAr" = (
/obj/structure/closet,
/obj/effect/decal/cleanable/cobweb,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aCg" = (
+"aAs" = (
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance{
lootcount = 2;
- name = "2maintenance loot spawner"
+ name = "2maintenance loot spawner"
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aCh" = (
+"aAt" = (
/obj/machinery/door/poddoor/preopen{
id = "maint2"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aCi" = (
+"aAu" = (
/obj/machinery/door/poddoor/preopen{
id = "maint2"
},
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aCj" = (
+"aAv" = (
/obj/structure/closet,
/obj/effect/landmark{
name = "blobstart"
@@ -13012,220 +12138,237 @@
/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka/badminka,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aCk" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+"aAw" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "Garden APC";
+ pixel_x = 27;
+ pixel_y = 2
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aCl" = (
+/area/hallway/secondary/construction{
+ name = "\improper Garden"
+ })
+"aAx" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/construction{
+ name = "\improper Garden"
+ })
+"aAy" = (
/obj/machinery/power/smes{
charge = 0
},
/obj/structure/cable{
icon_state = "0-4";
- d2 = 4
+ d2 = 4
},
/turf/open/floor/plating,
/area/maintenance/electrical)
-"aCm" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/closed/wall,
-/area/maintenance/electrical)
-"aCn" = (
+"aAz" = (
/obj/machinery/computer/monitor{
name = "backup power monitoring console"
},
/obj/structure/cable{
icon_state = "0-4";
- d2 = 4
+ d2 = 4
},
/obj/structure/cable{
d2 = 8;
- icon_state = "0-8"
+ icon_state = "0-8"
},
/obj/structure/cable,
/turf/open/floor/plating,
/area/maintenance/electrical)
-"aCo" = (
+"aAA" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/turf/closed/wall,
+/area/maintenance/electrical)
+"aAB" = (
/obj/machinery/power/smes{
charge = 0
},
/obj/structure/cable{
d2 = 8;
- icon_state = "0-8"
+ icon_state = "0-8"
},
/turf/open/floor/plating,
/area/maintenance/electrical)
-"aCp" = (
+"aAC" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";
- name = "KEEP CLEAR: DOCKING AREA";
- pixel_y = 0
+ name = "KEEP CLEAR: DOCKING AREA";
+ pixel_y = 0
},
/turf/closed/wall/r_wall,
/area/hallway/secondary/entry)
-"aCq" = (
+"aAD" = (
/obj/structure/grille,
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
- pixel_y = 32
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 0;
+ pixel_y = 32
},
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/hallway/secondary/entry)
-"aCr" = (
+"aAE" = (
+/obj/structure/closet/emcloset,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"aAF" = (
/obj/structure/closet/emcloset,
/obj/effect/turf_decal/stripes/line{
dir = 10
},
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"aCs" = (
-/obj/structure/closet/emcloset,
-/obj/effect/turf_decal/stripes/line,
+"aAG" = (
+/obj/machinery/vending/coffee,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"aCt" = (
+"aAH" = (
/obj/machinery/camera{
c_tag = "Arrivals Bay 1 North";
- dir = 1
+ dir = 1
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"aCu" = (
-/obj/machinery/vending/coffee,
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aCv" = (
+"aAI" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"aCw" = (
+"aAJ" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/arrival{
dir = 4
},
/area/hallway/secondary/entry)
-"aCx" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+"aAK" = (
+/obj/machinery/light{
+ dir = 1
},
+/obj/structure/sink{
+ pixel_y = 30
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/construction{
+ name = "\improper Garden"
+ })
+"aAL" = (
/obj/machinery/power/apc{
dir = 2;
- name = "Security Checkpoint APC";
- pixel_x = 1;
- pixel_y = -24
+ name = "Primary Tool Storage APC";
+ pixel_x = 1;
+ pixel_y = -24
},
-/obj/structure/cable,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/security/checkpoint2)
-"aCy" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"aCz" = (
+/area/storage/primary)
+"aAM" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"aCA" = (
+"aAN" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"aCB" = (
-/obj/machinery/power/apc{
- dir = 4;
- name = "Garden APC";
- pixel_x = 27;
- pixel_y = 2
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+"aAO" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
},
/turf/open/floor/plating,
+/area/maintenance/fpmaint2)
+"aAP" = (
+/obj/machinery/hydroponics/soil,
+/turf/open/floor/grass,
/area/hallway/secondary/construction{
name = "\improper Garden"
})
-"aCC" = (
-/obj/machinery/hydroponics/soil,
-/turf/open/floor/grass,
+"aAQ" = (
+/turf/open/floor/plasteel,
/area/hallway/secondary/construction{
name = "\improper Garden"
})
-"aCD" = (
-/obj/machinery/light{
- dir = 1
+"aAR" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
-/obj/structure/sink{
- pixel_y = 30
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
-"aCE" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/area/ai_monitored/storage/eva)
+"aAS" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -5;
+ pixel_y = 30
+ },
/turf/open/floor/plasteel,
/area/hallway/secondary/construction{
name = "\improper Garden"
})
-"aCF" = (
+"aAT" = (
/obj/machinery/seed_extractor,
/turf/open/floor/plasteel,
/area/hallway/secondary/construction{
name = "\improper Garden"
})
-"aCG" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = -5;
- pixel_y = 30
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
-"aCH" = (
+"aAU" = (
/obj/structure/sink{
pixel_y = 30
},
@@ -13233,11 +12376,11 @@
/area/hallway/secondary/construction{
name = "\improper Garden"
})
-"aCI" = (
+"aAV" = (
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 4;
+ icon_state = "1-4"
},
/obj/effect/spawner/lootdrop/maintenance,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -13245,66 +12388,57 @@
},
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"aCJ" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+"aAW" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+/obj/item/weapon/tank/jetpack/carbondioxide,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"aCK" = (
-/obj/machinery/power/apc{
- dir = 2;
- name = "Primary Tool Storage APC";
- pixel_x = 1;
- pixel_y = -24
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
},
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+/turf/open/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"aAX" = (
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/neutral/side{
+ dir = 8
},
-/turf/open/floor/plating,
-/area/storage/primary)
-"aCL" = (
+/area/crew_quarters/sleep)
+"aAY" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/fpmaint2)
-"aCM" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
+"aAZ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"aCN" = (
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/toilet)
+"aBa" = (
/turf/closed/wall/r_wall,
/area/ai_monitored/nuke_storage)
-"aCO" = (
+"aBb" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall/r_wall,
/area/ai_monitored/nuke_storage)
-"aCP" = (
+"aBc" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall/r_wall,
/area/ai_monitored/nuke_storage)
-"aCQ" = (
-/turf/open/floor/plasteel/black,
-/area/gateway)
-"aCR" = (
+"aBd" = (
/obj/machinery/gateway{
dir = 8
},
@@ -13312,11 +12446,10 @@
dir = 8
},
/area/gateway)
-"aCS" = (
-/obj/machinery/gateway/centerstation,
+"aBe" = (
/turf/open/floor/plasteel/black,
/area/gateway)
-"aCT" = (
+"aBf" = (
/obj/machinery/gateway{
dir = 4
},
@@ -13324,35 +12457,23 @@
dir = 8
},
/area/gateway)
-"aCU" = (
-/obj/machinery/power/apc{
- dir = 8;
- name = "Gateway APC";
- pixel_x = -24;
- pixel_y = -1
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plating,
+"aBg" = (
+/obj/machinery/gateway/centerstation,
+/turf/open/floor/plasteel/black,
/area/gateway)
-"aCV" = (
+"aBh" = (
/obj/machinery/camera{
c_tag = "EVA Maintenance";
- dir = 8;
- network = list("SS13")
+ dir = 8;
+ network = list("SS13")
},
/obj/machinery/light/small{
dir = 4
},
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 8;
+ icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -13360,20 +12481,30 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/fpmaint)
-"aCW" = (
+"aBi" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Gateway APC";
+ pixel_x = -24;
+ pixel_y = -1
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+ dir = 5
},
-/turf/closed/wall/r_wall,
-/area/ai_monitored/storage/eva)
-"aCX" = (
+/turf/open/floor/plating,
+/area/gateway)
+"aBj" = (
/obj/structure/rack{
dir = 8;
- layer = 2.9
+ layer = 2.9
},
/obj/machinery/light{
icon_state = "tube1";
- dir = 8
+ dir = 8
},
/obj/item/weapon/tank/jetpack/carbondioxide,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -13384,80 +12515,84 @@
},
/turf/open/floor/plasteel,
/area/ai_monitored/storage/eva)
-"aCY" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/weapon/tank/jetpack/carbondioxide,
+"aBk" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
+/turf/closed/wall/r_wall,
/area/ai_monitored/storage/eva)
-"aCZ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+"aBl" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Security Maintenance";
+ req_access_txt = "1"
+ },
+/turf/open/floor/plating,
+/area/security/checkpoint2)
+"aBm" = (
+/obj/effect/landmark/start{
+ name = "Assistant"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/construction{
+ name = "\improper Garden"
+ })
+"aBn" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/ai_monitored/storage/eva)
-"aDa" = (
+"aBo" = (
/obj/machinery/holopad,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/ai_monitored/storage/eva)
-"aDb" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"aDc" = (
+"aBp" = (
/obj/structure/rack{
dir = 8;
- layer = 2.9
+ layer = 2.9
},
/obj/item/clothing/shoes/magboots,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/effect/turf_decal/stripes/line{
- dir = 1
+ dir = 5
},
/turf/open/floor/plasteel,
/area/ai_monitored/storage/eva)
-"aDd" = (
+"aBq" = (
/obj/structure/rack{
dir = 8;
- layer = 2.9
+ layer = 2.9
},
/obj/item/clothing/shoes/magboots,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/effect/turf_decal/stripes/line{
- dir = 5
+ dir = 1
},
/turf/open/floor/plasteel,
/area/ai_monitored/storage/eva)
-"aDe" = (
+"aBr" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"aBs" = (
/obj/structure/grille,
/obj/structure/cable,
/obj/structure/cable{
icon_state = "0-2";
- d2 = 2
+ d2 = 2
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -13465,81 +12600,88 @@
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/ai_monitored/storage/eva)
-"aDf" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"aDg" = (
+"aBt" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/ai_monitored/storage/eva)
-"aDh" = (
+"aBu" = (
/obj/machinery/light{
dir = 4;
- icon_state = "tube1"
+ icon_state = "tube1"
},
/turf/open/floor/plasteel/blue/corner,
/area/hallway/primary/fore)
-"aDi" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/neutral/side{
- dir = 8
- },
-/area/crew_quarters/sleep)
-"aDj" = (
-/obj/machinery/shower{
+"aBv" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/construction{
+ name = "\improper Garden"
+ })
+"aBw" = (
+/obj/item/seeds/apple,
+/obj/item/seeds/banana,
+/obj/item/seeds/cocoapod,
+/obj/item/seeds/grape,
+/obj/item/seeds/orange,
+/obj/item/seeds/sugarcane,
+/obj/item/seeds/wheat,
+/obj/item/seeds/watermelon,
+/obj/structure/table/glass,
+/obj/item/seeds/tower,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
+/turf/open/floor/plasteel,
+/area/hallway/secondary/construction{
+ name = "\improper Garden"
+ })
+"aBx" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/turf/closed/wall,
+/area/crew_quarters/toilet)
+"aBy" = (
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/toilet)
-"aDk" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+"aBz" = (
+/obj/machinery/shower{
+ dir = 4
},
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/toilet)
-"aDl" = (
+"aBA" = (
/obj/machinery/shower{
dir = 8
},
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/toilet)
-"aDm" = (
+"aBB" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall,
+/area/maintenance/fsmaint2)
+"aBC" = (
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aDn" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall,
-/area/maintenance/fsmaint2)
-"aDo" = (
+"aBD" = (
/obj/machinery/meter,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aDp" = (
+"aBE" = (
/obj/item/clothing/under/rank/mailman,
/obj/item/clothing/head/mailman,
/obj/structure/closet,
@@ -13548,158 +12690,144 @@
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aDq" = (
+"aBF" = (
/obj/machinery/space_heater,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aDr" = (
+"aBG" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/construction{
+ name = "\improper Garden"
+ })
+"aBH" = (
/obj/machinery/light{
icon_state = "tube1";
- dir = 8
+ dir = 8
},
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"aDs" = (
+"aBI" = (
/turf/closed/wall,
/area/security/checkpoint2)
-"aDt" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+"aBJ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall,
/area/security/checkpoint2)
-"aDu" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+"aBK" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall,
/area/security/checkpoint2)
-"aDv" = (
+"aBL" = (
/obj/machinery/door/airlock/maintenance{
- name = "Security Maintenance";
- req_access_txt = "1"
+ name = "Garden Maintenance";
+ req_access_txt = "12"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/security/checkpoint2)
-"aDw" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
-"aDx" = (
+/area/maintenance/fpmaint2)
+"aBM" = (
/obj/effect/landmark/start{
name = "Assistant"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
-"aDy" = (
-/obj/item/seeds/apple,
-/obj/item/seeds/banana,
-/obj/item/seeds/cocoapod,
-/obj/item/seeds/grape,
-/obj/item/seeds/orange,
-/obj/item/seeds/sugarcane,
-/obj/item/seeds/wheat,
-/obj/item/seeds/watermelon,
-/obj/structure/table/glass,
-/obj/item/seeds/tower,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
/turf/open/floor/plasteel,
/area/hallway/secondary/construction{
name = "\improper Garden"
})
-"aDz" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+"aBN" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/storage/primary)
+"aBO" = (
+/obj/machinery/requests_console{
+ department = "EVA";
+ pixel_x = -32;
+ pixel_y = 0
},
-/turf/open/floor/plasteel,
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
-"aDA" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
-"aDB" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Garden Maintenance";
- req_access_txt = "12"
+/area/ai_monitored/storage/eva)
+"aBP" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint2)
-"aDC" = (
-/turf/closed/wall,
-/area/storage/primary)
-"aDD" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"aBQ" = (
/turf/closed/wall,
/area/storage/primary)
-"aDE" = (
+"aBR" = (
/turf/closed/wall/r_wall,
/area/storage/primary)
-"aDF" = (
-/obj/machinery/computer/bank_machine,
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/ai_monitored/nuke_storage)
-"aDG" = (
+"aBS" = (
/obj/machinery/light_switch{
pixel_y = 28
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/bluegrid,
/area/ai_monitored/nuke_storage)
-"aDH" = (
-/obj/machinery/airalarm{
- pixel_y = 23
- },
-/obj/machinery/light{
- dir = 1
+"aBT" = (
+/obj/machinery/computer/bank_machine,
+/turf/open/floor/plasteel/vault{
+ dir = 8
},
-/turf/open/floor/bluegrid,
/area/ai_monitored/nuke_storage)
-"aDI" = (
+"aBU" = (
/obj/machinery/power/apc{
dir = 1;
- name = "Vault APC";
- pixel_x = 0;
- pixel_y = 25
+ name = "Vault APC";
+ pixel_x = 0;
+ pixel_y = 25
},
/obj/structure/cable{
icon_state = "0-2";
- d2 = 2
+ d2 = 2
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/bluegrid,
/area/ai_monitored/nuke_storage)
-"aDJ" = (
-/obj/structure/filingcabinet,
-/obj/item/weapon/folder/documents,
+"aBV" = (
+/obj/machinery/airalarm{
+ pixel_y = 23
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/bluegrid,
+/area/ai_monitored/nuke_storage)
+"aBW" = (
+/obj/structure/filingcabinet,
+/obj/item/weapon/folder/documents,
/turf/open/floor/plasteel/vault{
dir = 8
},
/area/ai_monitored/nuke_storage)
-"aDK" = (
+"aBX" = (
/obj/machinery/gateway{
dir = 10
},
@@ -13707,17 +12835,7 @@
dir = 4
},
/area/gateway)
-"aDL" = (
-/obj/machinery/gateway,
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/gateway)
-"aDM" = (
+"aBY" = (
/obj/machinery/gateway{
dir = 6
},
@@ -13725,92 +12843,47 @@
dir = 1
},
/area/gateway)
-"aDN" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/meter,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint)
-"aDO" = (
-/obj/machinery/requests_console{
- department = "EVA";
- pixel_x = -32;
- pixel_y = 0
+"aBZ" = (
+/obj/machinery/gateway,
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
},
-/obj/effect/turf_decal/stripes/line{
+/turf/open/floor/plasteel/vault{
dir = 8
},
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"aDP" = (
+/area/gateway)
+"aCa" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"aDQ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"aDR" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
/turf/open/floor/plasteel,
/area/ai_monitored/storage/eva)
-"aDS" = (
+"aCb" = (
/obj/structure/cable{
d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d2 = 8;
+ icon_state = "2-8"
},
/obj/item/weapon/pen{
desc = "Writes upside down!";
- name = "astronaut pen"
+ name = "astronaut pen"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
/turf/open/floor/plasteel,
/area/ai_monitored/storage/eva)
-"aDT" = (
+"aCc" = (
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel,
/area/ai_monitored/storage/eva)
-"aDU" = (
-/obj/structure/grille,
-/obj/structure/cable,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/ai_monitored/storage/eva)
-"aDV" = (
-/obj/machinery/camera{
- c_tag = "EVA East";
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"aDW" = (
+"aCd" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet,
/obj/machinery/airalarm{
@@ -13818,25 +12891,90 @@
},
/obj/machinery/button/door{
id = "Dorm1";
- name = "Dorm Bolt Control";
- normaldoorcontrol = 1;
- pixel_x = 25;
- pixel_y = 0;
- req_access_txt = "0";
- specialfunctions = 4
+ name = "Dorm Bolt Control";
+ normaldoorcontrol = 1;
+ pixel_x = 25;
+ pixel_y = 0;
+ req_access_txt = "0";
+ specialfunctions = 4
},
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
- on = 1
+ on = 1
},
/turf/open/floor/carpet,
/area/crew_quarters/sleep)
-"aDX" = (
+"aCe" = (
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/obj/item/weapon/bikehorn/rubberducky,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/toilet)
+"aCf" = (
+/obj/machinery/camera{
+ c_tag = "Theatre Storage"
+ },
+/turf/open/floor/plasteel/white/side{
+ dir = 4
+ },
+/area/crew_quarters/theatre)
+"aCg" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"aCh" = (
+/obj/machinery/vending/autodrobe,
+/turf/open/floor/plasteel/white/side{
+ dir = 4
+ },
+/area/crew_quarters/theatre)
+"aCi" = (
+/obj/structure/grille,
+/obj/structure/cable,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/ai_monitored/storage/eva)
+"aCj" = (
+/obj/machinery/camera{
+ c_tag = "EVA East";
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"aCk" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/fsmaint2)
+"aCl" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/fsmaint2)
+"aCm" = (
/obj/structure/sink{
icon_state = "sink";
- dir = 8;
- pixel_x = -12;
- pixel_y = 2
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
},
/obj/structure/mirror{
pixel_x = -28
@@ -13846,42 +12984,45 @@
},
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/toilet)
-"aDY" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet)
-"aDZ" = (
+"aCn" = (
/obj/structure/urinal{
pixel_y = 32
},
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/toilet)
-"aEa" = (
-/obj/effect/landmark{
- name = "xeno_spawn";
- pixel_x = -1
+"aCo" = (
+/obj/structure/chair/stool{
+ pixel_y = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fsmaint2)
+"aCp" = (
+/obj/machinery/camera{
+ c_tag = "Arrivals North";
+ dir = 8;
+ network = list("SS13")
},
-/obj/item/weapon/bikehorn/rubberducky,
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet)
-"aEb" = (
+/turf/open/floor/plasteel/arrival{
+ dir = 4
+ },
+/area/hallway/secondary/entry)
+"aCq" = (
/obj/structure/table/wood,
/obj/machinery/requests_console{
department = "Theatre";
- departmentType = 0;
- name = "theatre RC";
- pixel_x = -32;
- pixel_y = 0
+ departmentType = 0;
+ name = "theatre RC";
+ pixel_x = -32;
+ pixel_y = 0
},
/obj/item/weapon/reagent_containers/food/snacks/baguette,
/obj/item/toy/dummy,
@@ -13889,34 +13030,27 @@
dir = 4
},
/area/crew_quarters/theatre)
-"aEc" = (
-/obj/machinery/camera{
- c_tag = "Theatre Storage"
- },
-/turf/open/floor/plasteel/white/side{
- dir = 4
- },
-/area/crew_quarters/theatre)
-"aEd" = (
-/obj/machinery/vending/autodrobe,
-/turf/open/floor/plasteel/white/side{
- dir = 4
- },
-/area/crew_quarters/theatre)
-"aEe" = (
+"aCr" = (
/turf/closed/wall,
/area/crew_quarters/theatre)
-"aEf" = (
+"aCs" = (
+/obj/structure/closet/wardrobe/red,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/red/side{
+ dir = 1
+ },
+/area/security/checkpoint2)
+"aCt" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aEg" = (
+"aCu" = (
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
@@ -13924,7 +13058,7 @@
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/crew_quarters/fitness)
-"aEh" = (
+"aCv" = (
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -13932,7 +13066,7 @@
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/crew_quarters/fitness)
-"aEi" = (
+"aCw" = (
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
@@ -13940,313 +13074,313 @@
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/crew_quarters/fitness)
-"aEj" = (
+"aCx" = (
/obj/machinery/atmospherics/components/binary/valve,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aEk" = (
+"aCy" = (
/obj/effect/decal/cleanable/oil,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aEl" = (
+"aCz" = (
/obj/structure/window/reinforced{
dir = 8
},
/obj/structure/cable{
d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d2 = 4;
+ icon_state = "2-4"
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aEm" = (
+"aCA" = (
/obj/structure/grille/broken,
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 8;
+ icon_state = "1-8"
},
/obj/structure/window{
icon_state = "window";
- dir = 4
+ dir = 4
},
/obj/structure/window,
/turf/open/floor/plating{
icon_state = "panelscorched"
},
/area/maintenance/fsmaint2)
-"aEn" = (
+"aCB" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
/turf/closed/wall,
/area/maintenance/fsmaint2)
-"aEo" = (
+"aCC" = (
/obj/machinery/door/poddoor/preopen{
id = "maint1"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aEp" = (
+"aCD" = (
/obj/machinery/door/poddoor/preopen{
id = "maint1"
},
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aEq" = (
+"aCE" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/closed/wall,
/area/maintenance/fsmaint2)
-"aEr" = (
+"aCF" = (
/obj/structure/girder,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aEs" = (
-/obj/machinery/space_heater,
+"aCG" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aEt" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aEu" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+"aCH" = (
+/obj/machinery/space_heater,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aEv" = (
+"aCI" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aEw" = (
-/obj/structure/chair/stool{
- pixel_y = 8
+"aCJ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aEx" = (
+"aCK" = (
/obj/structure/reagent_dispensers/watertank,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aEy" = (
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance,
+"aCL" = (
+/obj/structure/closet/secure_closet/security,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/red/side{
+ dir = 9
+ },
+/area/security/checkpoint2)
+"aCM" = (
+/obj/structure/reagent_dispensers/fueltank,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aEz" = (
-/obj/structure/reagent_dispensers/fueltank,
+"aCN" = (
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/maintenance,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aEA" = (
+"aCO" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/black,
/area/chapel/main)
-"aEB" = (
+"aCP" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/light/small{
- dir = 1
+ dir = 10
},
/turf/open/floor/plasteel/black,
/area/chapel/main)
-"aEC" = (
+"aCQ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
+ dir = 4
+ },
+/obj/machinery/light/small{
+ dir = 1
},
/turf/open/floor/plasteel/black,
/area/chapel/main)
-"aED" = (
+"aCR" = (
/turf/closed/wall,
/area/chapel/main)
-"aEE" = (
+"aCS" = (
/turf/closed/wall/mineral/titanium,
/area/shuttle/arrival)
-"aEF" = (
+"aCT" = (
+/obj/structure/table,
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/obj/item/stack/sheet/glass{
+ amount = 50
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 4
+ },
+/area/mining_construction)
+"aCU" = (
/obj/machinery/door/airlock/titanium{
name = "Arrivals Shuttle Airlock"
},
/turf/open/floor/plating,
/area/shuttle/arrival)
-"aEG" = (
+"aCV" = (
/obj/structure/grille,
/obj/structure/window/shuttle,
/turf/open/floor/plating,
/area/shuttle/arrival)
-"aEH" = (
-/obj/machinery/camera{
- c_tag = "Arrivals North";
- dir = 8;
- network = list("SS13")
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+"aCW" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2)
+"aCX" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
-/turf/open/floor/plasteel/arrival{
- dir = 4
+/turf/open/floor/plasteel,
+/area/mining_construction)
+"aCY" = (
+/obj/machinery/computer/security,
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_x = 0;
+ pixel_y = 30
},
-/area/hallway/secondary/entry)
-"aEI" = (
-/obj/structure/closet/secure_closet/security,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/red/side{
- dir = 9
+ dir = 1
},
/area/security/checkpoint2)
-"aEJ" = (
-/obj/structure/closet/wardrobe/red,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+"aCZ" = (
/turf/open/floor/plasteel/red/side{
- dir = 1
+ dir = 5
},
/area/security/checkpoint2)
-"aEK" = (
-/obj/machinery/computer/security,
-/obj/structure/reagent_dispensers/peppertank{
- pixel_x = 0;
- pixel_y = 30
+"aDa" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
-/turf/open/floor/plasteel/red/side{
- dir = 1
+/turf/open/floor/plasteel,
+/area/hallway/secondary/construction{
+ name = "\improper Garden"
+ })
+"aDb" = (
+/obj/structure/table,
+/obj/item/weapon/wirecutters,
+/obj/item/device/flashlight{
+ pixel_x = 1;
+ pixel_y = 5
},
-/area/security/checkpoint2)
-"aEL" = (
+/obj/machinery/firealarm{
+ dir = 2;
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"aDc" = (
/obj/machinery/computer/card,
/obj/machinery/light{
dir = 1
},
/obj/item/device/radio/intercom{
broadcasting = 0;
- name = "Station Intercom (General)";
- pixel_y = 20
+ name = "Station Intercom (General)";
+ pixel_y = 20
},
/turf/open/floor/plasteel/red/side{
dir = 1
},
/area/security/checkpoint2)
-"aEM" = (
+"aDd" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"aDe" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"aDf" = (
/obj/machinery/computer/secure_data,
/obj/machinery/requests_console{
department = "Security";
- departmentType = 5;
- pixel_y = 30
+ departmentType = 5;
+ pixel_y = 30
},
/turf/open/floor/plasteel/red/side{
dir = 1
},
/area/security/checkpoint2)
-"aEN" = (
-/turf/open/floor/plasteel/red/side{
- dir = 5
- },
-/area/security/checkpoint2)
-"aEO" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
-"aEP" = (
-/turf/open/floor/plasteel,
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
-"aEQ" = (
+"aDg" = (
/obj/machinery/biogenerator,
/turf/open/floor/plasteel,
/area/hallway/secondary/construction{
name = "\improper Garden"
})
-"aER" = (
+"aDh" = (
/obj/machinery/vending/assist,
/turf/open/floor/plasteel,
/area/storage/primary)
-"aES" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"aET" = (
-/obj/structure/table,
-/obj/item/weapon/wirecutters,
-/obj/item/device/flashlight{
- pixel_x = 1;
- pixel_y = 5
- },
-/obj/machinery/firealarm{
- dir = 2;
- pixel_y = 24
- },
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"aEU" = (
-/obj/structure/table,
-/obj/item/device/t_scanner,
-/obj/machinery/airalarm{
- pixel_y = 23
+"aDi" = (
+/obj/structure/window/reinforced,
+/turf/open/floor/plasteel/black,
+/area/gateway)
+"aDj" = (
+/obj/structure/window/reinforced,
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ on = 1
},
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"aEV" = (
+/turf/open/floor/plasteel/black,
+/area/gateway)
+"aDk" = (
/obj/structure/table,
/obj/item/device/assembly/igniter{
pixel_x = -8;
- pixel_y = -4
+ pixel_y = -4
},
/obj/item/device/assembly/igniter,
/obj/item/weapon/screwdriver{
@@ -14257,19 +13391,36 @@
},
/obj/machinery/requests_console{
department = "Tool Storage";
- departmentType = 0;
- pixel_y = 30
+ departmentType = 0;
+ pixel_y = 30
},
/turf/open/floor/plasteel,
/area/storage/primary)
-"aEW" = (
+"aDl" = (
+/obj/structure/table,
+/obj/item/device/t_scanner,
+/obj/machinery/airalarm{
+ pixel_y = 23
+ },
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"aDm" = (
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/obj/machinery/light_switch{
+ pixel_y = 28
+ },
+/obj/item/weapon/stock_parts/cell/high/plus,
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"aDn" = (
/obj/structure/table,
/obj/item/device/assembly/signaler,
/obj/item/device/assembly/signaler,
/obj/item/device/radio/intercom{
broadcasting = 0;
- name = "Station Intercom (General)";
- pixel_y = 20
+ name = "Station Intercom (General)";
+ pixel_y = 20
},
/obj/item/device/multitool,
/obj/item/device/multitool{
@@ -14277,437 +13428,389 @@
},
/turf/open/floor/plasteel,
/area/storage/primary)
-"aEX" = (
-/obj/structure/table,
-/obj/machinery/cell_charger,
-/obj/machinery/light_switch{
- pixel_y = 28
- },
-/obj/item/weapon/stock_parts/cell/high/plus,
+"aDo" = (
/turf/open/floor/plasteel,
/area/storage/primary)
-"aEY" = (
+"aDp" = (
/obj/structure/table,
/obj/item/weapon/storage/toolbox/mechanical{
pixel_x = -2;
- pixel_y = -1
+ pixel_y = -1
},
/turf/open/floor/plasteel,
/area/storage/primary)
-"aEZ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"aFa" = (
+"aDq" = (
/obj/machinery/vending/tool,
/turf/open/floor/plasteel,
/area/storage/primary)
-"aFb" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/vault{
- dir = 1
- },
-/area/ai_monitored/nuke_storage)
-"aFc" = (
+"aDr" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
/turf/open/floor/bluegrid,
/area/ai_monitored/nuke_storage)
-"aFd" = (
-/obj/machinery/nuclearbomb/selfdestruct,
+"aDs" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
/turf/open/floor/plasteel/vault{
- dir = 8
+ dir = 1
},
/area/ai_monitored/nuke_storage)
-"aFe" = (
+"aDt" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
/turf/open/floor/bluegrid,
/area/ai_monitored/nuke_storage)
-"aFf" = (
+"aDu" = (
+/obj/structure/table,
+/obj/machinery/microwave,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"aDv" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
- on = 1
+ on = 1
},
/turf/open/floor/plasteel/vault{
dir = 4
},
/area/ai_monitored/nuke_storage)
-"aFg" = (
+"aDw" = (
/obj/structure/window/reinforced,
-/obj/machinery/atmospherics/components/unary/vent_pump{
- on = 1
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
/turf/open/floor/plasteel/black,
/area/gateway)
-"aFh" = (
-/obj/structure/window/reinforced,
-/turf/open/floor/plasteel/black,
-/area/gateway)
-"aFi" = (
+"aDx" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/door/window{
name = "Gateway Chamber";
- req_access_txt = "62"
+ req_access_txt = "62"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
/turf/open/floor/plasteel/black,
/area/gateway)
-"aFj" = (
-/obj/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/gateway)
-"aFk" = (
+"aDy" = (
/obj/structure/window/reinforced,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
/turf/open/floor/plasteel/black,
/area/gateway)
-"aFl" = (
+"aDz" = (
/obj/structure/rack{
dir = 1
},
/obj/effect/spawner/lootdrop/maintenance{
lootcount = 2;
- name = "2maintenance loot spawner"
+ name = "2maintenance loot spawner"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/fpmaint)
-"aFm" = (
-/obj/machinery/suit_storage_unit/standard_unit,
-/obj/effect/turf_decal/stripes/line{
- dir = 10
+"aDA" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/ai_monitored/storage/eva)
-"aFn" = (
+"aDB" = (
/obj/machinery/suit_storage_unit/standard_unit,
/obj/effect/turf_decal/stripes/line{
dir = 2
},
/turf/open/floor/plasteel,
/area/ai_monitored/storage/eva)
-"aFo" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+"aDC" = (
+/obj/machinery/suit_storage_unit/standard_unit,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/ai_monitored/storage/eva)
-"aFp" = (
+"aDD" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/ai_monitored/storage/eva)
-"aFq" = (
+"aDE" = (
/obj/machinery/suit_storage_unit/standard_unit,
/obj/machinery/light,
/obj/machinery/camera{
c_tag = "EVA Storage";
- dir = 1
+ dir = 1
},
/obj/effect/turf_decal/stripes/line{
dir = 2
},
/turf/open/floor/plasteel,
/area/ai_monitored/storage/eva)
-"aFr" = (
+"aDF" = (
/obj/machinery/suit_storage_unit/standard_unit,
/obj/effect/turf_decal/stripes/line{
dir = 6
},
/turf/open/floor/plasteel,
/area/ai_monitored/storage/eva)
-"aFs" = (
+"aDG" = (
+/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
+/turf/open/floor/plasteel/neutral/side{
+ dir = 4
+ },
+/area/crew_quarters/sleep)
+"aDH" = (
+/obj/structure/table,
+/obj/item/weapon/paper_bin{
+ pixel_x = 1;
+ pixel_y = 9
+ },
+/obj/item/weapon/pen,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/item/weapon/folder/white,
+/obj/item/weapon/stamp/rd{
+ pixel_x = 3;
+ pixel_y = -2
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/hor)
+"aDI" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE"
+ icon_state = "shock";
+ name = "HIGH VOLTAGE"
},
/turf/closed/wall/r_wall,
/area/ai_monitored/storage/eva)
-"aFt" = (
-/obj/machinery/door/airlock/command{
- name = "Command Tool Storage";
- req_access = null;
- req_access_txt = "19"
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"aFu" = (
-/obj/machinery/door/airlock/command{
- cyclelinkeddir = 2;
- name = "Command Tool Storage";
- req_access = null;
- req_access_txt = "19"
+"aDJ" = (
+/obj/structure/table,
+/obj/item/device/flashlight/lamp{
+ pixel_x = 4;
+ pixel_y = 1
},
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/storage/eva)
-"aFv" = (
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"aDK" = (
/obj/machinery/door/airlock{
id_tag = "Dorm1";
- name = "Dorm 1"
+ name = "Dorm 1"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/crew_quarters/sleep)
-"aFw" = (
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
-/turf/open/floor/plasteel/neutral/side{
- dir = 4
- },
-/area/crew_quarters/sleep)
-"aFx" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/crew_quarters/toilet)
-"aFy" = (
+"aDL" = (
/obj/structure/sink{
icon_state = "sink";
- dir = 8;
- pixel_x = -12;
- pixel_y = 2
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
},
/obj/structure/sink{
icon_state = "sink";
- dir = 8;
- pixel_x = -12;
- pixel_y = 2
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/toilet)
-"aFz" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet)
-"aFA" = (
+"aDM" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/toilet)
-"aFB" = (
-/obj/machinery/door/airlock{
- name = "Unisex Showers";
- req_access_txt = "0"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
+"aDN" = (
+/obj/machinery/light/small,
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/toilet)
-"aFC" = (
+"aDO" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_Toxins = 0
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/toilet)
-"aFD" = (
-/obj/machinery/light/small,
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+"aDP" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ on = 1
},
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/toilet)
-"aFE" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- on = 1
+"aDQ" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/toilet)
-"aFF" = (
+"aDR" = (
/obj/structure/table/wood,
/obj/structure/mirror{
pixel_x = -28
},
/obj/item/weapon/lipstick/random{
pixel_x = 2;
- pixel_y = 2
+ pixel_y = 2
},
/obj/item/weapon/lipstick/random{
pixel_x = -2;
- pixel_y = -2
- },
-/turf/open/floor/plasteel/white/side{
- dir = 4
- },
-/area/crew_quarters/theatre)
-"aFG" = (
-/obj/structure/chair/stool,
-/obj/effect/landmark/start{
- name = "Mime"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ pixel_y = -2
},
/turf/open/floor/plasteel/white/side{
dir = 4
},
/area/crew_quarters/theatre)
-"aFH" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
+"aDS" = (
+/obj/machinery/door/airlock{
+ name = "Unisex Showers";
+ req_access_txt = "0"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/turf/open/floor/plasteel/white/side{
- dir = 4
- },
-/area/crew_quarters/theatre)
-"aFI" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Theatre Maintenance";
- req_access_txt = "46"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/open/floor/plating,
-/area/crew_quarters/theatre)
-"aFJ" = (
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/toilet)
+"aDT" = (
+/obj/machinery/light/small,
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/structure/disposalpipe/sortjunction{
- dir = 2;
- icon_state = "pipe-j1s";
- sortType = 18
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/toilet)
+"aDU" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_Toxins = 0
},
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aFK" = (
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/toilet)
+"aDV" = (
/obj/machinery/meter,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aFL" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aFM" = (
+"aDW" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aFN" = (
+"aDX" = (
/obj/effect/decal/cleanable/cobweb/cobweb2,
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aFO" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+"aDY" = (
+/obj/structure/chair/stool,
+/obj/effect/landmark/start{
+ name = "Mime"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/white/side{
+ dir = 4
+ },
+/area/crew_quarters/theatre)
+"aDZ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aFP" = (
+"aEa" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/cable{
d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d2 = 4;
+ icon_state = "2-4"
},
/obj/structure/disposalpipe/segment{
dir = 4;
- icon_state = "pipe-c"
+ icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aFQ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+"aEb" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Theatre Maintenance";
+ req_access_txt = "46"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -14716,264 +13819,258 @@
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aFR" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
+/area/crew_quarters/theatre)
+"aEc" = (
/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
+/turf/open/floor/plasteel/white/side{
+ dir = 4
},
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aFS" = (
+/area/crew_quarters/theatre)
+"aEd" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aFT" = (
+"aEe" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 8;
+ icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aFU" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aFV" = (
+"aEf" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aFW" = (
+"aEg" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/obj/machinery/power/apc{
dir = 2;
- name = "Chapel APC";
- pixel_x = 0;
- pixel_y = -24
+ name = "Chapel APC";
+ pixel_x = 0;
+ pixel_y = -24
},
/obj/structure/cable{
d2 = 8;
- icon_state = "0-8"
+ icon_state = "0-8"
},
/turf/open/floor/plating,
/area/chapel/main)
-"aFX" = (
+"aEh" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main)
+"aEi" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/obj/machinery/door/airlock/maintenance{
name = "Chapel Maintenance";
- req_access_txt = "12"
+ req_access_txt = "12"
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aFY" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
+"aEj" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/black,
/area/chapel/main)
-"aFZ" = (
+"aEk" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
/turf/open/floor/plasteel/black,
/area/chapel/main)
-"aGa" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/black,
-/area/chapel/main)
-"aGb" = (
+"aEl" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plating,
+/area/maintenance/fsmaint2)
+"aEm" = (
/obj/machinery/door/window{
dir = 8;
- name = "Mass Driver";
- req_access_txt = "22"
+ name = "Mass Driver";
+ req_access_txt = "22"
},
/obj/machinery/mass_driver{
dir = 4;
- id = "chapelgun";
- name = "Holy Driver"
+ id = "chapelgun";
+ name = "Holy Driver"
},
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plating,
/area/chapel/main)
-"aGc" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
- pixel_y = 32
- },
-/obj/effect/landmark/event_spawn,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/chapel/main)
-"aGd" = (
+"aEn" = (
/obj/machinery/door/poddoor{
id = "chapelgun";
- name = "Chapel Launcher Door"
+ name = "Chapel Launcher Door"
},
/turf/open/floor/plating,
/area/chapel/main)
-"aGe" = (
+"aEo" = (
/obj/structure/table,
/obj/item/weapon/storage/firstaid/regular,
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/arrival)
-"aGf" = (
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/arrival)
-"aGg" = (
+"aEp" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/shuttle/auxillary_base)
+"aEq" = (
/obj/machinery/computer/arcade,
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/arrival)
-"aGh" = (
-/obj/structure/closet/wardrobe/green,
+"aEr" = (
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/arrival)
-"aGi" = (
+"aEs" = (
/obj/structure/closet/wardrobe/black,
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/arrival)
-"aGj" = (
-/obj/structure/closet/wardrobe/mixed,
+"aEt" = (
+/obj/structure/closet/wardrobe/green,
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/arrival)
-"aGk" = (
+"aEu" = (
/obj/structure/closet/wardrobe/grey,
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/arrival)
-"aGl" = (
+"aEv" = (
+/obj/structure/closet/wardrobe/mixed,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/arrival)
+"aEw" = (
/obj/machinery/requests_console{
department = "Arrival shuttle";
- pixel_y = 30
+ pixel_y = 30
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/arrival)
-"aGm" = (
+"aEx" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 4;
+ icon_state = "burst_r"
+ },
+/turf/open/floor/plasteel/black,
+/area/shuttle/arrival)
+"aEy" = (
/obj/structure/shuttle/engine/heater{
icon_state = "heater";
- dir = 4
+ dir = 4
},
/obj/structure/window/reinforced{
dir = 8
},
/turf/open/floor/plasteel/black,
/area/shuttle/arrival)
-"aGn" = (
-/obj/structure/shuttle/engine/propulsion{
- icon_state = "burst_r";
- dir = 8
- },
-/turf/open/floor/plasteel/black,
-/area/shuttle/arrival)
-"aGo" = (
+"aEz" = (
/obj/machinery/power/apc{
dir = 4;
- name = "Entry Hall APC";
- pixel_x = 24;
- pixel_y = 0
+ name = "Entry Hall APC";
+ pixel_x = 24;
+ pixel_y = 0
},
/obj/structure/cable,
/turf/open/floor/plasteel/arrival{
dir = 4
},
/area/hallway/secondary/entry)
-"aGp" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/red/side{
- dir = 8
+"aEA" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/security/checkpoint2)
-"aGq" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
+/obj/structure/disposalpipe/sortjunction{
+ dir = 2;
+ icon_state = "pipe-j1s";
+ sortType = 18
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fsmaint2)
+"aEB" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fsmaint2)
+"aEC" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
},
-/turf/open/floor/plasteel,
-/area/security/checkpoint2)
-"aGr" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/machinery/atmospherics/components/unary/vent_pump{
- on = 1
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/fsmaint2)
+"aED" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/open/floor/plasteel,
-/area/security/checkpoint2)
-"aGs" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
-/turf/open/floor/plasteel,
-/area/security/checkpoint2)
-"aGt" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+/turf/open/floor/plating,
+/area/maintenance/fsmaint2)
+"aEE" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
},
/turf/open/floor/plasteel,
/area/security/checkpoint2)
-"aGu" = (
-/turf/open/floor/plasteel/red/side{
- dir = 4
- },
-/area/security/checkpoint2)
-"aGv" = (
+"aEF" = (
/obj/structure/table/glass,
/obj/item/weapon/reagent_containers/food/snacks/grown/wheat,
/obj/item/weapon/reagent_containers/food/snacks/grown/watermelon,
@@ -14988,73 +14085,101 @@
/area/hallway/secondary/construction{
name = "\improper Garden"
})
-"aGw" = (
-/obj/machinery/door/airlock{
- name = "Garden";
- req_access_txt = "0"
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
-"aGx" = (
+"aEG" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/security/checkpoint2)
+"aEH" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
/turf/open/floor/plasteel,
-/area/storage/primary)
-"aGy" = (
-/obj/effect/landmark/event_spawn,
+/area/security/checkpoint2)
+"aEI" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ on = 1
+ },
/turf/open/floor/plasteel,
-/area/storage/primary)
-"aGz" = (
+/area/security/checkpoint2)
+"aEJ" = (
+/turf/open/floor/plasteel/red/side{
+ dir = 4
+ },
+/area/security/checkpoint2)
+"aEK" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel,
+/area/security/checkpoint2)
+"aEL" = (
+/obj/machinery/door/airlock{
+ name = "Garden";
+ req_access_txt = "0"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/construction{
+ name = "\improper Garden"
+ })
+"aEM" = (
+/turf/open/floor/bluegrid,
+/area/ai_monitored/nuke_storage)
+"aEN" = (
/obj/structure/closet/crate{
name = "Gold Crate"
},
/obj/item/stack/sheet/mineral/gold{
pixel_x = -1;
- pixel_y = 5
+ pixel_y = 5
},
/obj/item/stack/sheet/mineral/gold{
pixel_y = 2
},
/obj/item/stack/sheet/mineral/gold{
pixel_x = 1;
- pixel_y = -2
+ pixel_y = -2
},
/obj/item/weapon/storage/belt/champion,
/turf/open/floor/plasteel/vault{
dir = 1
},
/area/ai_monitored/nuke_storage)
-"aGA" = (
-/turf/open/floor/bluegrid,
-/area/ai_monitored/nuke_storage)
-"aGB" = (
+"aEO" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/open/floor/bluegrid,
/area/ai_monitored/nuke_storage)
-"aGC" = (
+"aEP" = (
/obj/item/weapon/coin/silver{
pixel_x = 7;
- pixel_y = 12
+ pixel_y = 12
},
/obj/item/weapon/coin/silver{
pixel_x = 12;
- pixel_y = 7
+ pixel_y = 7
},
/obj/item/weapon/coin/silver{
pixel_x = 4;
- pixel_y = 8
+ pixel_y = 8
},
/obj/item/weapon/coin/silver{
pixel_x = -6;
- pixel_y = 5
+ pixel_y = 5
},
/obj/item/weapon/coin/silver{
pixel_x = 5;
- pixel_y = -8
+ pixel_y = -8
},
/obj/structure/closet/crate{
name = "Silver Crate"
@@ -15063,11 +14188,16 @@
dir = 4
},
/area/ai_monitored/nuke_storage)
-"aGD" = (
+"aEQ" = (
+/obj/structure/table,
+/obj/item/weapon/paper/pamphlet,
+/turf/open/floor/plasteel,
+/area/gateway)
+"aER" = (
/obj/machinery/camera{
c_tag = "Gateway";
- dir = 4;
- network = list("SS13")
+ dir = 4;
+ network = list("SS13")
},
/obj/structure/table,
/obj/structure/sign/biohazard{
@@ -15077,37 +14207,32 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/gateway)
-"aGE" = (
-/obj/structure/table,
-/obj/item/weapon/paper/pamphlet,
-/turf/open/floor/plasteel,
-/area/gateway)
-"aGF" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/gateway)
-"aGG" = (
+"aES" = (
/obj/structure/table,
/obj/item/device/radio/off{
pixel_y = 6
},
/obj/item/device/radio/off{
pixel_x = 6;
- pixel_y = 4
+ pixel_y = 4
},
/obj/item/device/radio/off{
pixel_x = -6;
- pixel_y = 4
+ pixel_y = 4
},
/obj/item/device/radio/off,
/turf/open/floor/plasteel,
/area/gateway)
-"aGH" = (
+"aET" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/gateway)
+"aEU" = (
/obj/structure/table,
/obj/machinery/recharger,
/obj/structure/sign/biohazard{
@@ -15115,48 +14240,64 @@
},
/turf/open/floor/plasteel,
/area/gateway)
-"aGI" = (
+"aEV" = (
/obj/structure/reagent_dispensers/watertank,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/fpmaint)
-"aGJ" = (
+"aEW" = (
/obj/structure/grille,
/obj/structure/cable,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/ai_monitored/storage/eva)
-"aGK" = (
+"aEX" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_command{
name = "EVA Storage";
- req_access_txt = "18"
+ req_access_txt = "18"
},
/turf/open/floor/plasteel,
/area/ai_monitored/storage/eva)
-"aGL" = (
+"aEY" = (
/obj/structure/grille,
/obj/structure/cable,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/ai_monitored/storage/eva)
-"aGM" = (
-/obj/structure/sign/securearea,
-/turf/closed/wall/r_wall,
+"aEZ" = (
+/turf/open/floor/plasteel/black,
/area/ai_monitored/storage/eva)
-"aGN" = (
+"aFa" = (
+/obj/machinery/suit_storage_unit/cmo,
+/turf/open/floor/plasteel/barber,
+/area/medical/cmo)
+"aFb" = (
/obj/machinery/light/small{
dir = 8
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/storage/eva)
-"aGO" = (
+"aFc" = (
+/obj/structure/sign/securearea,
+/turf/closed/wall/r_wall,
+/area/ai_monitored/storage/eva)
+"aFd" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/neutral/side{
+ dir = 4
+ },
+/area/crew_quarters/sleep)
+"aFe" = (
/obj/machinery/camera{
c_tag = "Dormitory South";
- c_tag_order = 999;
- dir = 4
+ c_tag_order = 999;
+ dir = 4
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
@@ -15165,37 +14306,34 @@
dir = 8
},
/area/crew_quarters/sleep)
-"aGP" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+"aFf" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/neutral/side{
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/toilet)
+"aFg" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/area/crew_quarters/sleep)
-"aGQ" = (
+/turf/closed/wall,
+/area/crew_quarters/toilet)
+"aFh" = (
/obj/machinery/door/airlock{
name = "Unisex Restrooms";
- req_access_txt = "0"
+ req_access_txt = "0"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/toilet)
-"aGR" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet)
-"aGS" = (
+"aFi" = (
/obj/machinery/power/apc{
dir = 4;
- name = "Dormitory Bathrooms APC";
- pixel_x = 26;
- pixel_y = 0
+ name = "Dormitory Bathrooms APC";
+ pixel_x = 26;
+ pixel_y = 0
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -15203,102 +14341,79 @@
/obj/structure/cable,
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/toilet)
-"aGT" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/crew_quarters/toilet)
-"aGU" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/turf/closed/wall,
-/area/crew_quarters/toilet)
-"aGV" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/structure/dresser,
-/turf/open/floor/plasteel/redblue/redside,
-/area/crew_quarters/theatre)
-"aGW" = (
+"aFj" = (
/turf/open/floor/plasteel/redblue/redside,
/area/crew_quarters/theatre)
-"aGX" = (
+"aFk" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 1
},
/turf/open/floor/plasteel/redblue/redside,
/area/crew_quarters/theatre)
-"aGY" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aGZ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+"aFl" = (
+/obj/machinery/light/small{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+/obj/structure/dresser,
+/turf/open/floor/plasteel/redblue/redside,
+/area/crew_quarters/theatre)
+"aFm" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aHa" = (
-/obj/effect/spawner/lootdrop/maintenance,
+"aFn" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/fsmaint2)
+"aFo" = (
+/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
+/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aHb" = (
-/obj/structure/grille,
+"aFp" = (
+/obj/effect/spawner/lootdrop/maintenance,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aHc" = (
+"aFq" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/space,
-/area/space)
-"aHd" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aHe" = (
+/area/space/nearstation)
+"aFr" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/structure/cable{
d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d2 = 4;
+ icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aHf" = (
+"aFs" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -15306,14 +14421,15 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aHg" = (
+"aFt" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -15321,71 +14437,77 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aHh" = (
+"aFu" = (
+/turf/closed/wall,
+/area/library)
+"aFv" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 8;
+ icon_state = "1-8"
},
/obj/structure/disposalpipe/segment{
dir = 8;
- icon_state = "pipe-c"
+ icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aHi" = (
-/turf/closed/wall,
-/area/library)
-"aHj" = (
+"aFw" = (
/turf/closed/wall,
/area/chapel/office)
-"aHk" = (
+"aFx" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/fsmaint2)
+"aFy" = (
/obj/machinery/power/apc{
dir = 2;
- name = "Chapel Office APC";
- pixel_x = 0;
- pixel_y = -24
+ name = "Chapel Office APC";
+ pixel_x = 0;
+ pixel_y = -24
},
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/chapel/office)
-"aHl" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aHm" = (
-/turf/open/floor/plasteel/black,
-/area/chapel/main)
-"aHn" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+"aFz" = (
/turf/open/floor/plasteel/black,
/area/chapel/main)
-"aHo" = (
+"aFA" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/computer/pod/old{
density = 0;
- icon = 'icons/obj/airlock_machines.dmi';
- icon_state = "airlock_control_standby";
- id = "chapelgun";
- name = "Mass Driver Controller";
- pixel_x = 24;
- pixel_y = 0
+ icon = 'icons/obj/airlock_machines.dmi';
+ icon_state = "airlock_control_standby";
+ id = "chapelgun";
+ name = "Mass Driver Controller";
+ pixel_x = 24;
+ pixel_y = 0
},
/turf/open/floor/plasteel/black,
/area/chapel/main)
-"aHp" = (
+"aFB" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/black,
+/area/chapel/main)
+"aFC" = (
/obj/structure/chair,
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/arrival)
-"aHq" = (
+"aFD" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/shuttle/auxillary_base)
+"aFE" = (
/obj/structure/chair{
dir = 8
},
@@ -15394,31 +14516,37 @@
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/arrival)
-"aHr" = (
+"aFF" = (
/obj/structure/shuttle/engine/propulsion{
- icon_state = "propulsion";
- dir = 8
+ dir = 4;
+ icon_state = "propulsion"
},
/turf/open/floor/plasteel/black,
/area/shuttle/arrival)
-"aHs" = (
+"aFG" = (
/turf/open/floor/plasteel/arrival{
dir = 4
},
/area/hallway/secondary/entry)
-"aHt" = (
+"aFH" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/red/side,
+/area/security/checkpoint2)
+"aFI" = (
/obj/machinery/camera{
c_tag = "Security Checkpoint";
- dir = 1
+ dir = 1
},
/obj/machinery/airalarm{
dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
+ icon_state = "alarm0";
+ pixel_x = -22
},
/obj/machinery/light_switch{
pixel_x = 6;
- pixel_y = -25
+ pixel_y = -25
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
@@ -15427,16 +14555,18 @@
dir = 10
},
/area/security/checkpoint2)
-"aHu" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+"aFJ" = (
+/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{
+ icon_state = "intact";
dir = 1
},
-/turf/open/floor/plasteel/red/side,
-/area/security/checkpoint2)
-"aHv" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2)
+"aFK" = (
/obj/item/weapon/paper_bin{
pixel_x = 1;
- pixel_y = 9
+ pixel_y = 9
},
/obj/item/weapon/pen,
/obj/structure/table,
@@ -15445,20 +14575,7 @@
},
/turf/open/floor/plasteel/red/side,
/area/security/checkpoint2)
-"aHw" = (
-/obj/structure/chair/office/dark,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel/red/side,
-/area/security/checkpoint2)
-"aHx" = (
-/obj/machinery/recharger{
- pixel_y = 4
- },
-/obj/structure/table,
-/turf/open/floor/plasteel/red/side,
-/area/security/checkpoint2)
-"aHy" = (
+"aFL" = (
/obj/item/device/radio/off,
/obj/item/weapon/crowbar,
/obj/item/device/assembly/flash/handheld,
@@ -15467,7 +14584,14 @@
dir = 6
},
/area/security/checkpoint2)
-"aHz" = (
+"aFM" = (
+/obj/machinery/recharger{
+ pixel_y = 4
+ },
+/obj/structure/table,
+/turf/open/floor/plasteel/red/side,
+/area/security/checkpoint2)
+"aFN" = (
/obj/structure/table/glass,
/obj/item/weapon/cultivator,
/obj/item/weapon/hatchet,
@@ -15480,129 +14604,162 @@
/area/hallway/secondary/construction{
name = "\improper Garden"
})
-"aHA" = (
+"aFO" = (
/obj/machinery/camera{
c_tag = "Garden";
- dir = 8;
- network = list("SS13")
+ dir = 8;
+ network = list("SS13")
},
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
+ icon_state = "alarm0";
+ pixel_x = 24
},
/turf/open/floor/plasteel,
/area/hallway/secondary/construction{
name = "\improper Garden"
})
-"aHB" = (
+"aFP" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/construction{
+ name = "\improper Garden"
+ })
+"aFQ" = (
/obj/structure/table,
/obj/item/stack/cable_coil{
pixel_x = 2;
- pixel_y = -2
+ pixel_y = -2
},
/obj/item/stack/cable_coil{
pixel_x = 3;
- pixel_y = -7
+ pixel_y = -7
},
/obj/item/weapon/screwdriver{
pixel_y = 16
},
/obj/machinery/light{
icon_state = "tube1";
- dir = 8
+ dir = 8
},
/turf/open/floor/plasteel,
/area/storage/primary)
-"aHC" = (
+"aFR" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
/turf/open/floor/plasteel,
/area/storage/primary)
-"aHD" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
+"aFS" = (
+/obj/effect/landmark/start{
+ name = "Assistant"
},
/turf/open/floor/plasteel,
/area/storage/primary)
-"aHE" = (
-/obj/effect/landmark/start{
- name = "Assistant"
+"aFT" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
},
/turf/open/floor/plasteel,
/area/storage/primary)
-"aHF" = (
+"aFU" = (
/obj/effect/landmark/start{
name = "Assistant"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
/turf/open/floor/plasteel,
/area/storage/primary)
-"aHG" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
+"aFV" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint)
+"aFW" = (
+/obj/structure/chair/stool,
+/turf/open/floor/plasteel,
+/area/gateway)
+"aFX" = (
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = -30
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/gateway)
+"aFY" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
},
/turf/open/floor/plasteel,
/area/storage/primary)
-"aHH" = (
+"aFZ" = (
/obj/structure/table,
/obj/item/weapon/storage/toolbox/mechanical{
pixel_x = -2;
- pixel_y = -1
+ pixel_y = -1
},
/obj/machinery/light{
dir = 4
},
/turf/open/floor/plasteel,
/area/storage/primary)
-"aHI" = (
-/turf/open/floor/plasteel/vault{
- dir = 1
- },
-/area/ai_monitored/nuke_storage)
-"aHJ" = (
+"aGa" = (
/obj/machinery/light,
/turf/open/floor/plasteel/vault{
dir = 6
},
/area/ai_monitored/nuke_storage)
-"aHK" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+"aGb" = (
+/turf/open/floor/plasteel/vault{
+ dir = 1
},
-/turf/open/floor/plasteel/vault,
/area/ai_monitored/nuke_storage)
-"aHL" = (
+"aGc" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 8;
+ icon_state = "1-8"
},
/obj/machinery/camera/motion{
c_tag = "Vault";
- dir = 1;
- network = list("MiniSat")
+ dir = 1;
+ network = list("MiniSat")
},
/obj/machinery/light,
/turf/open/floor/plasteel/vault{
dir = 10
},
/area/ai_monitored/nuke_storage)
-"aHM" = (
+"aGd" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plasteel/vault,
+/area/ai_monitored/nuke_storage)
+"aGe" = (
/obj/structure/safe,
/obj/item/clothing/head/bearpelt,
/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,
@@ -15614,137 +14771,47 @@
dir = 4
},
/area/ai_monitored/nuke_storage)
-"aHN" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/meter,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint)
-"aHO" = (
-/obj/item/device/radio/intercom{
- freerange = 0;
- frequency = 1459;
- name = "Station Intercom (General)";
- pixel_x = -30
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/gateway)
-"aHP" = (
-/obj/structure/chair/stool,
-/turf/open/floor/plasteel,
-/area/gateway)
-"aHQ" = (
-/turf/open/floor/plasteel,
-/area/gateway)
-"aHR" = (
+"aGf" = (
/obj/machinery/firealarm{
dir = 4;
- pixel_x = 24
+ pixel_x = 24
},
/turf/open/floor/plasteel,
/area/gateway)
-"aHS" = (
+"aGg" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/fpmaint)
-"aHT" = (
-/obj/structure/table,
-/obj/item/stack/sheet/rglass{
- amount = 50
- },
-/obj/item/stack/sheet/rglass{
- amount = 50
- },
-/obj/item/stack/rods{
- amount = 50
- },
-/obj/item/stack/rods{
- amount = 50
- },
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"aHU" = (
+"aGh" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint)
+"aGi" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/black,
/area/ai_monitored/storage/eva)
-"aHV" = (
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/storage/eva)
-"aHW" = (
+"aGj" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/black,
/area/ai_monitored/storage/eva)
-"aHX" = (
-/obj/item/stack/sheet/plasteel{
- amount = 10
- },
-/obj/structure/table,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"aHY" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/structure/table,
-/obj/item/stack/sheet/plasteel{
- amount = 10
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"aHZ" = (
-/obj/structure/table,
-/obj/item/stack/sheet/metal{
- amount = 50
- },
-/obj/item/stack/sheet/rglass{
- amount = 50
- },
-/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"aIa" = (
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/blue/corner{
- dir = 8
- },
-/area/hallway/primary/fore)
-"aIb" = (
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/blue/corner,
-/area/hallway/primary/fore)
-"aIc" = (
-/obj/structure/sink{
- icon_state = "sink";
- dir = 8;
- pixel_x = -12;
- pixel_y = 2
+"aGk" = (
+/obj/structure/sink{
+ icon_state = "sink";
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/toilet)
-"aId" = (
+"aGl" = (
/obj/machinery/light_switch{
pixel_x = 27
},
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/toilet)
-"aIe" = (
+"aGm" = (
/obj/structure/toilet{
pixel_y = 8
},
@@ -15753,7 +14820,7 @@
},
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/toilet)
-"aIf" = (
+"aGn" = (
/obj/structure/toilet{
pixel_y = 8
},
@@ -15765,61 +14832,117 @@
},
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/toilet)
-"aIg" = (
+"aGo" = (
+/obj/structure/table,
+/obj/item/stack/sheet/rglass{
+ amount = 50
+ },
+/obj/item/stack/sheet/rglass{
+ amount = 50
+ },
+/obj/item/stack/rods{
+ amount = 50
+ },
+/obj/item/stack/rods{
+ amount = 50
+ },
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"aGp" = (
/obj/machinery/light/small{
dir = 8
},
/obj/machinery/recharge_station,
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/toilet)
-"aIh" = (
-/obj/structure/table/wood,
-/obj/structure/mirror{
- pixel_x = -28
+"aGq" = (
+/obj/item/stack/sheet/plasteel{
+ amount = 10
},
-/obj/item/device/flashlight/lamp/bananalamp{
- pixel_y = 3
+/obj/structure/table,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
},
-/turf/open/floor/plasteel/redblue,
-/area/crew_quarters/theatre)
-"aIi" = (
+/turf/open/floor/plasteel,
+/area/ai_monitored/storage/eva)
+"aGr" = (
/obj/structure/chair/stool,
/obj/effect/landmark/start{
name = "Clown"
},
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
- on = 1
+ on = 1
},
/turf/open/floor/plasteel/redblue,
/area/crew_quarters/theatre)
-"aIj" = (
+"aGs" = (
+/obj/machinery/suit_storage_unit/rd,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/hor)
+"aGt" = (
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/blue/corner{
+ dir = 8
+ },
+/area/hallway/primary/fore)
+"aGu" = (
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/blue/corner,
+/area/hallway/primary/fore)
+"aGv" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/crew_quarters/theatre)
+"aGw" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/structure/closet/secure_closet/freezer/cream_pie,
/turf/open/floor/plasteel/redblue,
/area/crew_quarters/theatre)
-"aIk" = (
+"aGx" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/closed/wall,
-/area/crew_quarters/theatre)
-"aIl" = (
+/area/crew_quarters/toilet)
+"aGy" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/fsmaint2)
+"aGz" = (
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 4;
+ icon_state = "1-4"
},
/obj/structure/disposalpipe/segment{
dir = 1;
- icon_state = "pipe-c"
+ icon_state = "pipe-c"
},
/obj/structure/cable{
d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d2 = 4;
+ icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -15827,109 +14950,172 @@
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aIm" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+"aGA" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/structure/disposalpipe/sortjunction{
+ dir = 4;
+ icon_state = "pipe-j1s";
+ sortType = 19
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aIn" = (
-/obj/structure/disposalpipe/junction{
- icon_state = "pipe-j1";
- dir = 4
- },
+"aGB" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+/obj/structure/disposalpipe/sortjunction{
+ dir = 4;
+ icon_state = "pipe-j1s";
+ sortType = 20
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/fsmaint2)
+"aGC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aIo" = (
+"aGD" = (
+/obj/structure/table/wood,
+/obj/structure/mirror{
+ pixel_x = -28
+ },
+/obj/item/device/flashlight/lamp/bananalamp{
+ pixel_y = 3
+ },
+/turf/open/floor/plasteel/redblue,
+/area/crew_quarters/theatre)
+"aGE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fsmaint2)
+"aGF" = (
+/obj/structure/disposalpipe/sortjunction{
+ dir = 4;
+ icon_state = "pipe-j2s";
+ sortType = 17
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/fsmaint2)
+"aGG" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Library Maintenance";
+ req_access_txt = "12"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/library)
+"aGH" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d2 = 4;
+ icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aIp" = (
-/obj/structure/disposalpipe/segment{
+"aGI" = (
+/obj/structure/disposalpipe/junction{
+ icon_state = "pipe-j1";
dir = 4
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aIq" = (
+"aGJ" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aIr" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+"aGK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/structure/disposalpipe/sortjunction{
- dir = 4;
- icon_state = "pipe-j1s";
- sortType = 19
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aIs" = (
+"aGL" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -15939,144 +15125,137 @@
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aIt" = (
+"aGM" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Crematorium Maintenance";
+ req_access_txt = "27"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/chapel/office)
+"aGN" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/structure/cable{
d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d2 = 4;
+ icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aIu" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/sortjunction{
- dir = 4;
- icon_state = "pipe-j1s";
- sortType = 20
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aIv" = (
+"aGO" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/chapel/office)
+"aGP" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aIw" = (
+"aGQ" = (
/obj/structure/disposalpipe/segment{
- dir = 4
+ dir = 2;
+ icon_state = "pipe-c"
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aIx" = (
+"aGR" = (
/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
+ dir = 4
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aIy" = (
+"aGS" = (
/obj/structure/cable{
d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d2 = 8;
+ icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aIz" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aIA" = (
+"aGT" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 8;
+ icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aIB" = (
+"aGU" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/requests_console{
+ department = "Chapel";
+ departmentType = 2;
+ pixel_y = 30
+ },
+/turf/open/floor/plasteel/grimy,
+/area/chapel/office)
+"aGV" = (
+/obj/structure/grille,
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
+/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aIC" = (
-/obj/structure/grille,
+"aGW" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aID" = (
+"aGX" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -16085,154 +15264,143 @@
dir = 4
},
/turf/open/space,
-/area/space)
-"aIE" = (
-/obj/structure/disposalpipe/sortjunction{
- dir = 4;
- icon_state = "pipe-j2s";
- sortType = 17
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aIF" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/area/space/nearstation)
+"aGY" = (
+/obj/machinery/airalarm{
+ pixel_y = 25
},
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
+/turf/open/floor/plasteel/grimy,
+/area/chapel/office)
+"aGZ" = (
+/obj/machinery/door/airlock/security{
+ name = "Security Checkpoint";
+ req_access = null;
+ req_access_txt = "1"
},
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aIG" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall,
-/area/library)
-"aIH" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Library Maintenance";
- req_access_txt = "12"
+/turf/open/floor/plasteel,
+/area/security/checkpoint2)
+"aHa" = (
+/obj/machinery/door/firedoor,
+/obj/structure/table/reinforced,
+/obj/item/weapon/paper,
+/obj/machinery/door/window/westright{
+ dir = 1;
+ name = "Security Checkpoint";
+ req_access_txt = "1"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/library)
-"aII" = (
-/obj/structure/table/wood,
-/obj/item/weapon/storage/pill_bottle/dice,
-/turf/open/floor/wood,
-/area/library)
-"aIJ" = (
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"aHb" = (
/obj/structure/table/wood,
/obj/item/weapon/paper_bin{
pixel_x = 1;
- pixel_y = 9
+ pixel_y = 9
},
/obj/item/stack/packageWrap,
/turf/open/floor/wood,
/area/library)
-"aIK" = (
+"aHc" = (
+/obj/structure/table/wood,
+/obj/item/weapon/storage/pill_bottle/dice,
+/turf/open/floor/wood,
+/area/library)
+"aHd" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk,
/turf/open/floor/wood,
/area/library)
-"aIL" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/chapel/office)
-"aIM" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Crematorium Maintenance";
- req_access_txt = "27"
+"aHe" = (
+/obj/structure/table,
+/obj/item/weapon/storage/toolbox/electrical{
+ pixel_x = 1;
+ pixel_y = -1
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/chapel/office)
-"aIN" = (
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"aHf" = (
/obj/structure/closet/wardrobe/chaplain_black,
/obj/item/device/radio/intercom{
pixel_y = 25
},
/turf/open/floor/plasteel/grimy,
/area/chapel/office)
-"aIO" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/machinery/requests_console{
- department = "Chapel";
- departmentType = 2;
- pixel_y = 30
- },
-/turf/open/floor/plasteel/grimy,
-/area/chapel/office)
-"aIP" = (
+"aHg" = (
/obj/machinery/light_switch{
pixel_y = 28
},
/obj/machinery/camera{
c_tag = "Chapel Office";
- dir = 2;
- network = list("SS13")
+ dir = 2;
+ network = list("SS13")
},
/turf/open/floor/plasteel/grimy,
/area/chapel/office)
-"aIQ" = (
-/obj/machinery/airalarm{
- pixel_y = 25
+"aHh" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/open/floor/plasteel/grimy,
-/area/chapel/office)
-"aIR" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/gateway)
+"aHi" = (
/obj/structure/closet/coffin,
/obj/structure/window/reinforced{
dir = 8
},
/turf/open/floor/plasteel/black,
/area/chapel/office)
-"aIS" = (
-/obj/structure/closet/coffin,
-/obj/machinery/door/window/eastleft{
- name = "Coffin Storage";
- req_access_txt = "22"
+"aHj" = (
+/obj/machinery/light_switch{
+ pixel_x = -20;
+ pixel_y = 0
},
-/turf/open/floor/plasteel/black,
-/area/chapel/office)
-"aIT" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/gateway)
+"aHk" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
- on = 1
+ on = 1
},
/turf/open/floor/plasteel/black,
/area/chapel/main)
-"aIU" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+"aHl" = (
+/obj/structure/closet/coffin,
+/obj/machinery/door/window/eastleft{
+ name = "Coffin Storage";
+ req_access_txt = "22"
},
/turf/open/floor/plasteel/black,
-/area/chapel/main)
-"aIV" = (
+/area/chapel/office)
+"aHm" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/black,
/area/chapel/main)
-"aIW" = (
-/turf/open/floor/plasteel/chapel{
- dir = 1
+"aHn" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
+/turf/open/floor/plasteel/black,
/area/chapel/main)
-"aIX" = (
+"aHo" = (
/obj/structure/table/glass,
/obj/item/weapon/reagent_containers/food/snacks/grown/poppy,
/obj/item/weapon/reagent_containers/food/snacks/grown/harebell,
@@ -16240,76 +15408,81 @@
dir = 4
},
/area/chapel/main)
-"aIY" = (
+"aHp" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/structure/filingcabinet/chestdrawer,
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden)
+"aHq" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/chapel/main)
-"aIZ" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
-"aJa" = (
-/obj/structure/grille,
-/obj/structure/window/shuttle,
-/turf/open/floor/plating,
-/area/shuttle/escape)
-"aJb" = (
+"aHr" = (
/obj/effect/landmark{
name = "Marauder Entry"
},
/turf/open/space,
/area/space)
-"aJc" = (
+"aHs" = (
/obj/machinery/door/airlock/titanium{
name = "Arrivals Shuttle Airlock"
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/arrival)
-"aJd" = (
+"aHt" = (
/obj/effect/landmark{
name = "Observer-Start"
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/arrival)
-"aJe" = (
+"aHu" = (
/obj/machinery/status_display{
density = 0;
- layer = 3;
- pixel_x = 32;
- pixel_y = 0
+ layer = 3;
+ pixel_x = 32;
+ pixel_y = 0
},
/turf/open/floor/plasteel/white/corner{
dir = 4
},
/area/hallway/secondary/entry)
-"aJf" = (
-/obj/machinery/door/airlock/security{
- name = "Security Checkpoint";
- req_access = null;
- req_access_txt = "1"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/security/checkpoint2)
-"aJg" = (
+"aHv" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel,
+/area/gateway)
+"aHw" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/wood,
+/area/crew_quarters/sleep)
+"aHx" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile{
+ obj_integrity = 25
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint)
+"aHy" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/security/checkpoint2)
-"aJh" = (
-/obj/machinery/door/firedoor,
-/obj/structure/table/reinforced,
-/obj/item/weapon/paper,
-/obj/machinery/door/window/westright{
- dir = 1;
- name = "Security Checkpoint";
- req_access_txt = "1"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aJi" = (
+"aHz" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plasteel/green/side{
dir = 5
@@ -16317,24 +15490,16 @@
/area/hallway/secondary/construction{
name = "\improper Garden"
})
-"aJj" = (
-/obj/effect/landmark/start{
- name = "Assistant"
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
-"aJk" = (
+"aHA" = (
/obj/item/weapon/reagent_containers/spray/plantbgone,
/obj/item/weapon/reagent_containers/spray/pestspray{
pixel_x = 3;
- pixel_y = 4
+ pixel_y = 4
},
/obj/item/weapon/reagent_containers/glass/bottle/nutrient/ez,
/obj/item/weapon/reagent_containers/glass/bottle/nutrient/rh{
pixel_x = 2;
- pixel_y = 1
+ pixel_y = 1
},
/obj/structure/table/glass,
/obj/machinery/light{
@@ -16346,15 +15511,23 @@
/area/hallway/secondary/construction{
name = "\improper Garden"
})
-"aJl" = (
-/obj/structure/table,
-/obj/item/weapon/storage/toolbox/electrical{
- pixel_x = 1;
- pixel_y = -1
+"aHB" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
-/turf/open/floor/plasteel,
-/area/storage/primary)
-"aJm" = (
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/storage/eva)
+"aHC" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/storage/eva)
+"aHD" = (
/obj/structure/chair/stool{
pixel_y = 8
},
@@ -16363,7 +15536,7 @@
},
/turf/open/floor/plasteel,
/area/storage/primary)
-"aJn" = (
+"aHE" = (
/obj/structure/table,
/obj/item/weapon/weldingtool,
/obj/item/weapon/crowbar,
@@ -16373,78 +15546,51 @@
/obj/item/stack/packageWrap,
/turf/open/floor/plasteel,
/area/storage/primary)
-"aJo" = (
+"aHF" = (
/obj/structure/sign/securearea,
/turf/closed/wall/r_wall,
/area/ai_monitored/nuke_storage)
-"aJp" = (
+"aHG" = (
/obj/machinery/door/airlock/vault{
icon_state = "door_locked";
- locked = 1;
- req_access_txt = "53"
+ locked = 1;
+ req_access_txt = "53"
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/open/floor/plasteel/vault{
dir = 5
},
/area/ai_monitored/nuke_storage)
-"aJq" = (
-/obj/machinery/light_switch{
- pixel_x = -20;
- pixel_y = 0
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/gateway)
-"aJr" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/gateway)
-"aJs" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
+"aHH" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Dormitory"
},
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/gateway)
-"aJt" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/neutral/side{
+ dir = 4
},
+/area/crew_quarters/sleep)
+"aHI" = (
+/turf/open/floor/plasteel/redblue,
+/area/crew_quarters/theatre)
+"aHJ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/gateway)
-"aJu" = (
+"aHK" = (
+/obj/structure/closet/secure_closet/freezer/cream_pie,
+/turf/open/floor/plasteel/redblue,
+/area/crew_quarters/theatre)
+"aHL" = (
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
+ icon_state = "alarm0";
+ pixel_x = 24
},
/obj/structure/closet/l3closet/scientist,
/obj/effect/turf_decal/stripes/line{
@@ -16452,15 +15598,13 @@
},
/turf/open/floor/plasteel,
/area/gateway)
-"aJv" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile{
- obj_integrity = 25
+"aHM" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fpmaint)
-"aJw" = (
+/turf/closed/wall,
+/area/crew_quarters/bar)
+"aHN" = (
/obj/structure/table,
/obj/item/stack/sheet/metal{
amount = 50
@@ -16474,55 +15618,30 @@
},
/turf/open/floor/plasteel,
/area/ai_monitored/storage/eva)
-"aJx" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/storage/eva)
-"aJy" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/storage/eva)
-"aJz" = (
+"aHO" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel,
/area/ai_monitored/storage/eva)
-"aJA" = (
-/obj/machinery/door/airlock/command{
- cyclelinkeddir = 1;
- name = "Command Tool Storage";
- req_access = null;
- req_access_txt = "19"
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/storage/eva)
-"aJB" = (
+"aHP" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
name = "Central Access"
},
-/turf/open/floor/plasteel/blue/corner{
- dir = 8
- },
+/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aJC" = (
+"aHQ" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
name = "Central Access"
},
-/turf/open/floor/plasteel,
+/turf/open/floor/plasteel/blue/corner{
+ dir = 8
+ },
/area/hallway/primary/central)
-"aJD" = (
+"aHR" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
name = "Central Access"
@@ -16531,36 +15650,38 @@
dir = 4
},
/area/hallway/primary/central)
-"aJE" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Dormitory"
+"aHS" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/maintenance{
+ name = "Bar Storage Maintenance";
+ req_access_txt = "25"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/neutral/side{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
-/area/crew_quarters/sleep)
-"aJF" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/crew_quarters/bar)
+"aHT" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
name = "Dormitory"
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral/side{
- dir = 4
+ dir = 8
},
/area/crew_quarters/sleep)
-"aJG" = (
+"aHU" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
- on = 1
+ on = 1
},
/obj/structure/sink{
icon_state = "sink";
- dir = 8;
- pixel_x = -12;
- pixel_y = 2
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
},
/obj/structure/mirror{
pixel_x = -28
@@ -16570,56 +15691,59 @@
},
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/toilet)
-"aJH" = (
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet)
-"aJI" = (
+"aHV" = (
/obj/machinery/door/airlock{
name = "Unit 1"
},
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/toilet)
-"aJJ" = (
+"aHW" = (
/obj/machinery/door/airlock{
name = "Unit 2"
},
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/toilet)
-"aJK" = (
+"aHX" = (
/obj/machinery/door/airlock{
name = "Unit B"
},
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/toilet)
-"aJL" = (
+"aHY" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/fsmaint2)
+"aHZ" = (
/obj/structure/table/wood,
/obj/machinery/airalarm{
dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
+ icon_state = "alarm0";
+ pixel_x = -22
},
/obj/item/weapon/storage/crayons{
pixel_x = 3;
- pixel_y = 3
+ pixel_y = 3
},
/obj/item/weapon/reagent_containers/food/snacks/pie/cream{
pixel_x = -3;
- pixel_y = -3
+ pixel_y = -3
},
/turf/open/floor/plasteel/redblue,
/area/crew_quarters/theatre)
-"aJM" = (
-/turf/open/floor/plasteel/redblue,
-/area/crew_quarters/theatre)
-"aJN" = (
-/obj/structure/closet/secure_closet/freezer/cream_pie,
-/turf/open/floor/plasteel/redblue,
-/area/crew_quarters/theatre)
-"aJO" = (
+"aIa" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fsmaint2)
+"aIb" = (
/obj/machinery/power/apc{
dir = 8;
- name = "Theatre APC";
- pixel_x = -25
+ name = "Theatre APC";
+ pixel_x = -25
},
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -16627,61 +15751,44 @@
},
/turf/open/floor/plating,
/area/crew_quarters/theatre)
-"aJP" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+"aIc" = (
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "Bar APC";
+ pixel_y = -24
+ },
+/obj/structure/cable,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aJQ" = (
+/area/crew_quarters/bar)
+"aId" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aJR" = (
-/obj/machinery/power/apc{
- dir = 2;
- name = "Bar APC";
- pixel_y = -24
- },
-/obj/structure/cable,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/crew_quarters/bar)
-"aJS" = (
+"aIe" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall,
/area/crew_quarters/bar)
-"aJT" = (
+"aIf" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/door/airlock/maintenance{
- name = "Bar Storage Maintenance";
- req_access_txt = "25"
- },
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/crew_quarters/bar)
-"aJU" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/closed/wall,
-/area/crew_quarters/bar)
-"aJV" = (
+/area/maintenance/fsmaint2)
+"aIg" = (
/obj/machinery/navbeacon{
codes_txt = "delivery;dir=2";
- freq = 1400;
- location = "Bar"
+ freq = 1400;
+ location = "Bar"
},
/obj/structure/plasticflaps{
opacity = 1
@@ -16696,17 +15803,11 @@
dir = 2
},
/area/crew_quarters/bar)
-"aJW" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/crew_quarters/kitchen)
-"aJX" = (
+"aIh" = (
/obj/machinery/power/apc{
dir = 2;
- name = "Kitchen APC";
- pixel_y = -24
+ name = "Kitchen APC";
+ pixel_y = -24
},
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -16714,309 +15815,301 @@
},
/turf/open/floor/plating,
/area/crew_quarters/kitchen)
-"aJY" = (
-/obj/structure/disposalpipe/segment,
+"aIi" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aJZ" = (
+/turf/closed/wall,
+/area/crew_quarters/kitchen)
+"aIj" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/sortjunction{
+ dir = 4;
+ icon_state = "pipe-j1s";
+ sortType = 21
+ },
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aKa" = (
+"aIk" = (
/obj/structure/disposalpipe/segment{
dir = 1;
- icon_state = "pipe-c"
+ icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aKb" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+"aIl" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aKc" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/sortjunction{
- dir = 4;
- icon_state = "pipe-j1s";
- sortType = 21
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aKd" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+"aIm" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+ d2 = 4;
+ icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aKe" = (
+"aIn" = (
/obj/machinery/power/apc{
dir = 2;
- name = "Hydroponics APC";
- pixel_y = -24
+ name = "Hydroponics APC";
+ pixel_y = -24
},
/obj/structure/cable{
d2 = 8;
- icon_state = "0-8"
+ icon_state = "0-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
/turf/open/floor/plating,
/area/hydroponics)
-"aKf" = (
-/turf/closed/wall,
-/area/hydroponics)
-"aKg" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall,
-/area/hydroponics)
-"aKh" = (
+"aIo" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aKi" = (
+"aIp" = (
+/turf/closed/wall,
+/area/hydroponics)
+"aIq" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall,
+/area/hydroponics)
+"aIr" = (
/obj/structure/filingcabinet,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/wood,
/area/library)
-"aKj" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/open/floor/wood,
-/area/library)
-"aKk" = (
+"aIs" = (
/obj/structure/chair/office/dark,
/obj/machinery/camera{
c_tag = "Library North";
- dir = 2;
- network = list("SS13")
+ dir = 2;
+ network = list("SS13")
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/wood,
/area/library)
-"aKl" = (
-/obj/structure/chair/office/dark,
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
+"aIt" = (
+/turf/open/floor/wood,
+/area/library)
+"aIu" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
},
-/obj/effect/landmark/start{
- name = "Assistant"
+/turf/open/floor/wood,
+/area/library)
+"aIv" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/wood,
/area/library)
-"aKm" = (
+"aIw" = (
+/obj/structure/chair/office/dark,
/obj/structure/disposalpipe/segment{
- dir = 4
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/effect/landmark/start{
+ name = "Assistant"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/wood,
/area/library)
-"aKn" = (
+"aIx" = (
/obj/structure/disposalpipe/segment{
dir = 8;
- icon_state = "pipe-c"
+ icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
/turf/open/floor/wood,
/area/library)
-"aKo" = (
-/obj/structure/bodycontainer/crematorium,
-/obj/effect/landmark{
- name = "revenantspawn"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/black,
-/area/chapel/office)
-"aKp" = (
+"aIy" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/black,
/area/chapel/office)
-"aKq" = (
+"aIz" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk,
/turf/open/floor/plasteel/grimy,
/area/chapel/office)
-"aKr" = (
-/obj/effect/landmark/start{
- name = "Chaplain"
- },
-/obj/structure/chair,
-/turf/open/floor/plasteel/grimy,
-/area/chapel/office)
-"aKs" = (
+"aIA" = (
/obj/structure/table/wood,
/obj/item/weapon/paper_bin{
pixel_x = -2;
- pixel_y = 5
+ pixel_y = 5
},
/obj/item/weapon/storage/crayons,
/turf/open/floor/plasteel/grimy,
/area/chapel/office)
-"aKt" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+"aIB" = (
+/obj/structure/bodycontainer/crematorium,
+/obj/effect/landmark{
+ name = "revenantspawn"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/black,
+/area/chapel/office)
+"aIC" = (
+/obj/effect/landmark/start{
+ name = "Chaplain"
},
+/obj/structure/chair,
/turf/open/floor/plasteel/grimy,
/area/chapel/office)
-"aKu" = (
+"aID" = (
/obj/structure/closet/coffin,
/obj/structure/window/reinforced{
dir = 4
},
/turf/open/floor/plasteel/black,
/area/chapel/office)
-"aKv" = (
-/turf/open/floor/plasteel/chapel{
- dir = 8
- },
-/area/chapel/main)
-"aKw" = (
+"aIE" = (
/obj/structure/table/glass,
/turf/open/floor/plasteel/chapel,
/area/chapel/main)
-"aKx" = (
-/turf/open/floor/mineral/titanium,
-/turf/closed/wall/mineral/titanium/interior,
-/area/shuttle/escape)
-"aKy" = (
-/obj/structure/table,
-/obj/item/weapon/storage/firstaid/fire,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"aKz" = (
+"aIF" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/security/warden)
+"aIG" = (
/obj/structure/chair{
dir = 1
},
/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"aKA" = (
-/obj/machinery/computer/emergency_shuttle,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"aKB" = (
+/area/shuttle/arrival)
+"aIH" = (
/obj/structure/table,
-/obj/item/weapon/storage/firstaid/regular{
- pixel_x = 2;
- pixel_y = 3
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/item/weapon/pipe_dispenser,
+/obj/machinery/button/door{
+ id = "aux_base_shutters";
+ name = "Public Shutters Control";
+ pixel_x = 24;
+ pixel_y = 0;
+ req_access_txt = "0";
+ req_one_access_txt = "32;47;48"
},
-/obj/item/weapon/crowbar,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"aKC" = (
-/obj/structure/chair{
- dir = 1
+/turf/open/floor/plasteel/yellow/side{
+ dir = 6
},
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/arrival)
-"aKD" = (
-/obj/machinery/door/firedoor,
+/area/mining_construction)
+"aII" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/grimy,
+/area/chapel/office)
+"aIJ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"aKE" = (
-/obj/effect/turf_decal/bot,
+"aIK" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"aKF" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+"aIL" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"aKG" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+"aIM" = (
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"aKH" = (
-/obj/machinery/camera{
- c_tag = "Arrivals Lounge";
- dir = 2
+"aIN" = (
+/obj/structure/table,
+/obj/item/weapon/wrench,
+/obj/item/device/analyzer,
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"aIO" = (
+/obj/machinery/camera{
+ c_tag = "Arrivals Lounge";
+ dir = 2
},
/obj/machinery/light{
dir = 1
},
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"aKI" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = -5;
- pixel_y = 30
+"aIP" = (
+/obj/structure/sign/map/left{
+ pixel_y = 32
},
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"aKJ" = (
-/obj/structure/sign/map/left{
- pixel_y = 32
+"aIQ" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -5;
+ pixel_y = 30
},
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"aKK" = (
+"aIR" = (
/obj/structure/sign/map/right{
pixel_y = 32
},
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"aKL" = (
+"aIS" = (
/obj/structure/table/glass,
/obj/item/weapon/hatchet,
/obj/item/weapon/cultivator,
@@ -17025,7 +16118,7 @@
/obj/item/device/plant_analyzer,
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -24
+ pixel_x = -24
},
/turf/open/floor/plasteel/green/side{
dir = 4
@@ -17033,19 +16126,19 @@
/area/hallway/secondary/construction{
name = "\improper Garden"
})
-"aKM" = (
+"aIT" = (
/obj/item/weapon/storage/bag/plants/portaseeder,
/obj/structure/table/glass,
/obj/item/device/plant_analyzer,
/obj/item/device/radio/intercom{
freerange = 0;
- frequency = 1459;
- name = "Station Intercom (General)";
- pixel_x = 29
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 29
},
/obj/machinery/light_switch{
pixel_x = -6;
- pixel_y = -25
+ pixel_y = -25
},
/turf/open/floor/plasteel/green/side{
dir = 8
@@ -17053,98 +16146,112 @@
/area/hallway/secondary/construction{
name = "\improper Garden"
})
-"aKN" = (
-/obj/structure/table,
-/obj/item/weapon/wrench,
-/obj/item/device/analyzer,
+"aIU" = (
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=8";
+ freq = 1400;
+ location = "Tool Storage"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
/area/storage/primary)
-"aKO" = (
-/obj/structure/reagent_dispensers/watertank,
+"aIV" = (
+/obj/machinery/button/door{
+ id = "stationawaygate";
+ name = "Gateway Access Shutter Control";
+ pixel_x = -1;
+ pixel_y = -24;
+ req_access_txt = "31"
+ },
/turf/open/floor/plasteel,
-/area/storage/primary)
-"aKP" = (
+/area/gateway)
+"aIW" = (
/obj/structure/table,
/obj/item/weapon/crowbar,
/obj/item/device/assembly/prox_sensor{
pixel_x = -8;
- pixel_y = 4
+ pixel_y = 4
},
/obj/item/clothing/gloves/color/fyellow,
/turf/open/floor/plasteel,
/area/storage/primary)
-"aKQ" = (
-/obj/structure/table,
-/obj/item/weapon/storage/belt/utility,
-/obj/item/weapon/storage/firstaid/regular,
+"aIX" = (
+/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plasteel,
/area/storage/primary)
-"aKR" = (
+"aIY" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plasteel,
/area/storage/primary)
-"aKS" = (
-/obj/effect/turf_decal/delivery,
+"aIZ" = (
+/obj/structure/table,
+/obj/item/weapon/storage/belt/utility,
+/obj/item/weapon/storage/firstaid/regular,
/turf/open/floor/plasteel,
/area/storage/primary)
-"aKT" = (
-/obj/machinery/navbeacon{
- codes_txt = "delivery;dir=8";
- freq = 1400;
- location = "Tool Storage"
+"aJa" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/effect/turf_decal/bot,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/gateway)
+"aJb" = (
+/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
/area/storage/primary)
-"aKU" = (
+"aJc" = (
/obj/structure/disposalpipe/trunk,
/obj/machinery/disposal/bin,
/turf/open/floor/plasteel,
/area/storage/primary)
-"aKV" = (
+"aJd" = (
/obj/structure/grille,
/obj/structure/cable{
icon_state = "0-2";
- d2 = 2
+ d2 = 2
},
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/hallway/primary/port)
-"aKW" = (
+"aJe" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/open/floor/plasteel/vault{
dir = 5
},
/area/hallway/primary/port)
-"aKX" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+"aJf" = (
+/obj/machinery/camera{
+ c_tag = "EVA South";
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
-/area/gateway)
-"aKY" = (
-/obj/machinery/button/door{
- id = "stationawaygate";
- name = "Gateway Access Shutter Control";
- pixel_x = -1;
- pixel_y = -24;
- req_access_txt = "31"
+/area/ai_monitored/storage/eva)
+"aJg" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 27;
+ pixel_y = 0
+ },
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
},
-/turf/open/floor/plasteel,
-/area/gateway)
-"aKZ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/neutral/side{
+ dir = 4
+ },
+/area/hallway/primary/central)
+"aJh" = (
/turf/open/floor/plasteel,
/area/gateway)
-"aLa" = (
+"aJi" = (
/obj/machinery/light{
dir = 4
},
@@ -17154,7 +16261,7 @@
},
/turf/open/floor/plasteel,
/area/gateway)
-"aLb" = (
+"aJj" = (
/obj/structure/table,
/obj/item/stack/sheet/glass{
amount = 50
@@ -17164,166 +16271,171 @@
},
/obj/item/weapon/storage/toolbox/mechanical{
pixel_x = -2;
- pixel_y = -1
+ pixel_y = -1
},
/obj/item/weapon/storage/toolbox/mechanical{
pixel_x = -2;
- pixel_y = -1
+ pixel_y = -1
},
/obj/item/weapon/storage/toolbox/mechanical{
pixel_x = -2;
- pixel_y = -1
+ pixel_y = -1
},
/obj/item/weapon/extinguisher,
/obj/item/weapon/extinguisher,
/obj/machinery/light{
icon_state = "tube1";
- dir = 8
+ dir = 8
},
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
/area/ai_monitored/storage/eva)
-"aLc" = (
-/obj/machinery/camera{
- c_tag = "EVA South";
- dir = 1
+"aJk" = (
+/obj/machinery/door/airlock{
+ name = "Theatre Backstage";
+ req_access_txt = "46"
},
/turf/open/floor/plasteel,
-/area/ai_monitored/storage/eva)
-"aLd" = (
+/area/crew_quarters/theatre)
+"aJl" = (
/obj/structure/tank_dispenser/oxygen,
/obj/machinery/light{
icon_state = "tube1";
- dir = 4
+ dir = 4
},
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel,
/area/ai_monitored/storage/eva)
-"aLe" = (
+"aJm" = (
+/obj/structure/sink/kitchen{
+ pixel_y = 28
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"aJn" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/hallway/primary/central)
-"aLf" = (
-/turf/open/floor/plasteel/blue/side{
- dir = 9
- },
-/area/hallway/primary/central)
-"aLg" = (
+"aJo" = (
/obj/machinery/light{
dir = 1
},
/obj/machinery/camera{
c_tag = "Central Hallway North";
- dir = 2
+ dir = 2
},
/turf/open/floor/plasteel/blue/side{
dir = 1
},
/area/hallway/primary/central)
-"aLh" = (
+"aJp" = (
+/turf/open/floor/plasteel/blue/side{
+ dir = 9
+ },
+/area/hallway/primary/central)
+"aJq" = (
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aJr" = (
/turf/open/floor/plasteel/blue/corner{
dir = 1
},
/area/hallway/primary/central)
-"aLi" = (
-/turf/open/floor/plasteel,
+"aJs" = (
+/turf/open/floor/plasteel/blue/side{
+ dir = 1
+ },
/area/hallway/primary/central)
-"aLj" = (
+"aJt" = (
/obj/structure/sign/directions/security{
dir = 1;
- icon_state = "direction_sec";
- pixel_x = 32;
- pixel_y = 40
+ icon_state = "direction_sec";
+ pixel_x = 32;
+ pixel_y = 40
},
/obj/structure/sign/directions/medical{
dir = 4;
- icon_state = "direction_med";
- pixel_x = 32;
- pixel_y = 32
+ icon_state = "direction_med";
+ pixel_x = 32;
+ pixel_y = 32
},
/obj/structure/sign/directions/evac{
dir = 4;
- icon_state = "direction_evac";
- pixel_x = 32;
- pixel_y = 24
+ icon_state = "direction_evac";
+ pixel_x = 32;
+ pixel_y = 24
},
/turf/open/floor/plasteel/blue/corner{
dir = 4
},
/area/hallway/primary/central)
-"aLk" = (
-/turf/open/floor/plasteel/blue/side{
- dir = 1
- },
-/area/hallway/primary/central)
-"aLl" = (
+"aJu" = (
/turf/open/floor/plasteel/blue/side{
dir = 5
},
/area/hallway/primary/central)
-"aLm" = (
-/turf/closed/wall,
-/area/hallway/primary/central)
-"aLn" = (
-/obj/machinery/vending/cola,
+"aJv" = (
+/obj/machinery/vending/cola/random,
/turf/open/floor/plasteel/black,
/area/hallway/primary/central)
-"aLo" = (
+"aJw" = (
+/turf/closed/wall,
+/area/hallway/primary/central)
+"aJx" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"aJy" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral/side{
dir = 8
},
/area/hallway/primary/central)
-"aLp" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
- },
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/neutral/side{
- dir = 4
- },
-/area/hallway/primary/central)
-"aLq" = (
+"aJz" = (
/obj/machinery/camera{
c_tag = "Dormitory Toilets";
- dir = 1
+ dir = 1
},
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/toilet)
-"aLr" = (
-/obj/machinery/light/small,
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/toilet)
-"aLs" = (
-/obj/machinery/door/airlock{
- name = "Theatre Backstage";
- req_access_txt = "46"
+"aJA" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Kitchen Maintenance";
+ req_access_txt = "28"
},
-/turf/open/floor/plasteel,
-/area/crew_quarters/theatre)
-"aLt" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/crew_quarters/kitchen)
+"aJB" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/maintenance{
+ name = "Hydroponics Maintenance";
+ req_access_txt = "35"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/hydroponics)
+"aJC" = (
+/turf/closed/wall,
+/area/crew_quarters/bar)
+"aJD" = (
/obj/machinery/door/airlock/maintenance{
name = "Bar Maintenance";
- req_access_txt = "12"
+ req_access_txt = "12"
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/fsmaint2)
-"aLu" = (
-/turf/closed/wall,
-/area/crew_quarters/bar)
-"aLv" = (
+"aJE" = (
/obj/item/weapon/reagent_containers/food/drinks/shaker,
/obj/item/weapon/gun/ballistic/revolver/doublebarrel,
/obj/structure/table/wood,
@@ -17331,50 +16443,57 @@
/obj/item/stack/spacecash/c100,
/turf/open/floor/wood,
/area/crew_quarters/bar)
-"aLw" = (
+"aJF" = (
+/obj/machinery/newscaster{
+ pixel_x = 30
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/wood,
+/area/library)
+"aJG" = (
/obj/structure/disposalpipe/segment,
+/obj/machinery/button/crematorium{
+ pixel_x = 25
+ },
+/obj/machinery/light/small{
+ dir = 4
+ },
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/wood,
-/area/crew_quarters/bar)
-"aLx" = (
-/obj/structure/sink/kitchen{
- pixel_y = 28
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/wood,
-/area/crew_quarters/bar)
-"aLy" = (
+/turf/open/floor/plasteel/black,
+/area/chapel/office)
+"aJH" = (
/obj/machinery/door/window/southleft{
base_state = "left";
- dir = 2;
- icon_state = "left";
- name = "Bar Delivery";
- req_access_txt = "25"
+ dir = 2;
+ icon_state = "left";
+ name = "Bar Delivery";
+ req_access_txt = "25"
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
/area/crew_quarters/bar)
-"aLz" = (
+"aJI" = (
/turf/closed/wall,
/area/crew_quarters/kitchen)
-"aLA" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Kitchen Maintenance";
- req_access_txt = "28"
+"aJJ" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/crew_quarters/kitchen)
-"aLB" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/crew_quarters/kitchen)
-"aLC" = (
+/turf/open/floor/plasteel/black,
+/area/chapel/office)
+"aJK" = (
/obj/machinery/navbeacon{
codes_txt = "delivery;dir=2";
- freq = 1400;
- location = "Kitchen"
+ freq = 1400;
+ location = "Kitchen"
},
/obj/structure/plasticflaps{
opacity = 1
@@ -17386,11 +16505,11 @@
dir = 2
},
/area/crew_quarters/kitchen)
-"aLD" = (
+"aJL" = (
/obj/machinery/navbeacon{
codes_txt = "delivery;dir=2";
- freq = 1400;
- location = "Hydroponics"
+ freq = 1400;
+ location = "Hydroponics"
},
/obj/structure/plasticflaps{
opacity = 1
@@ -17402,108 +16521,60 @@
dir = 2
},
/area/hydroponics)
-"aLE" = (
+"aJM" = (
+/obj/structure/table/wood,
+/obj/item/device/flashlight/lamp{
+ pixel_y = 10
+ },
/obj/structure/disposalpipe/segment,
-/obj/machinery/door/airlock/maintenance{
- name = "Hydroponics Maintenance";
- req_access_txt = "35"
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/hydroponics)
-"aLF" = (
+/turf/open/floor/plasteel/grimy,
+/area/chapel/office)
+"aJN" = (
/obj/structure/table,
-/obj/machinery/reagentgrinder,
+/obj/item/weapon/book/manual/hydroponics_pod_people,
+/obj/item/weapon/paper/hydroponics,
/turf/open/floor/plasteel/hydrofloor,
/area/hydroponics)
-"aLG" = (
+"aJO" = (
/obj/structure/table,
-/obj/item/weapon/book/manual/hydroponics_pod_people,
-/obj/item/weapon/paper/hydroponics,
+/obj/machinery/reagentgrinder,
/turf/open/floor/plasteel/hydrofloor,
/area/hydroponics)
-"aLH" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
- },
-/turf/open/floor/wood,
-/area/library)
-"aLI" = (
-/obj/structure/chair/office/dark{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/library)
-"aLJ" = (
+"aJP" = (
/obj/structure/table/wood,
/obj/item/weapon/folder/yellow,
/obj/item/weapon/pen,
/turf/open/floor/wood,
/area/library)
-"aLK" = (
-/obj/structure/table/wood,
-/obj/structure/disposalpipe/segment,
+"aJQ" = (
+/obj/structure/chair/office/dark{
+ dir = 4
+ },
/turf/open/floor/wood,
/area/library)
-"aLL" = (
+"aJR" = (
/obj/structure/chair/office/dark{
dir = 8
},
/turf/open/floor/wood,
/area/library)
-"aLM" = (
-/obj/machinery/newscaster{
- pixel_x = 30
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
+"aJS" = (
+/obj/structure/table/wood,
+/obj/structure/disposalpipe/segment,
/turf/open/floor/wood,
/area/library)
-"aLN" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/office)
-"aLO" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/button/crematorium{
- pixel_x = 25
- },
-/obj/machinery/light/small{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/office)
-"aLP" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/chapel/office)
-"aLQ" = (
+"aJT" = (
/obj/structure/table/wood,
-/obj/item/device/flashlight/lamp{
- pixel_y = 10
- },
-/obj/structure/disposalpipe/segment,
+/obj/item/weapon/nullrod,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/grimy,
/area/chapel/office)
-"aLR" = (
+"aJU" = (
/obj/structure/table/wood,
/obj/item/weapon/pen,
/obj/item/weapon/reagent_containers/food/drinks/bottle/holywater,
@@ -17512,129 +16583,34 @@
},
/turf/open/floor/plasteel/grimy,
/area/chapel/office)
-"aLS" = (
-/obj/structure/table/wood,
-/obj/item/weapon/nullrod,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/grimy,
-/area/chapel/office)
-"aLT" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel/grimy,
-/area/chapel/office)
-"aLU" = (
+"aJV" = (
/obj/structure/closet/coffin,
/obj/machinery/door/window/eastleft{
dir = 8;
- name = "Coffin Storage";
- req_access_txt = "22"
+ name = "Coffin Storage";
+ req_access_txt = "22"
},
/turf/open/floor/plasteel/black,
/area/chapel/office)
-"aLV" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/effect/landmark/xmastree,
-/turf/open/floor/plasteel/black,
-/area/chapel/main)
-"aLW" = (
-/obj/structure/table/glass,
-/turf/open/floor/plasteel/chapel{
- dir = 4
- },
-/area/chapel/main)
-"aLX" = (
-/obj/machinery/computer/atmos_alert,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"aLY" = (
-/obj/structure/chair{
- dir = 8
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"aLZ" = (
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"aMa" = (
-/obj/structure/chair{
- dir = 4
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"aMb" = (
-/obj/machinery/computer/security,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"aMc" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/arrival)
-"aMd" = (
-/obj/item/device/radio/intercom{
- name = "Station Intercom (General)";
- pixel_y = -29
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/arrival)
-"aMe" = (
-/obj/structure/shuttle/engine/propulsion{
- icon_state = "burst_l";
- dir = 8
- },
-/turf/open/floor/plasteel/black,
-/area/shuttle/arrival)
-"aMf" = (
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/neutral/corner{
- dir = 2
+"aJW" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
},
-/area/hallway/secondary/entry)
-"aMg" = (
-/turf/open/floor/plasteel/neutral/side,
-/area/hallway/secondary/entry)
-"aMh" = (
+/turf/open/floor/plasteel/grimy,
+/area/chapel/office)
+"aJX" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/neutral/side,
/area/hallway/secondary/entry)
-"aMi" = (
+"aJY" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/neutral/side,
/area/hallway/secondary/entry)
-"aMj" = (
-/turf/open/floor/plasteel/neutral/corner{
- dir = 8
- },
-/area/hallway/secondary/entry)
-"aMk" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/turf/open/floor/plating,
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
-"aMl" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Garden"
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/construction{
- name = "\improper Garden"
- })
-"aMm" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/turf/open/floor/plating,
-/area/storage/primary)
-"aMn" = (
+"aJZ" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
@@ -17643,7 +16619,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/storage/primary)
-"aMo" = (
+"aKa" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
name = "Primary Tool Storage"
@@ -17651,98 +16627,227 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/storage/primary)
-"aMp" = (
+"aKb" = (
/obj/structure/grille,
-/obj/structure/disposalpipe/segment,
-/obj/structure/window/fulltile,
-/turf/open/floor/plating,
-/area/storage/primary)
-"aMq" = (
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
/obj/structure/cable{
icon_state = "0-4";
- d2 = 4
+ d2 = 4
},
-/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
+/obj/structure/cable,
/turf/open/floor/plating,
/area/hallway/primary/port)
-"aMr" = (
+"aKc" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/command{
+ icon_state = "door_closed";
+ lockdownbyai = 0;
+ locked = 0;
+ name = "Gateway Access";
+ req_access_txt = "62"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/gateway)
+"aKd" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor/shutters{
+ id = "stationawaygate";
+ name = "Gateway Access Shutters"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/gateway)
+"aKe" = (
+/obj/structure/table/glass,
+/turf/open/floor/plasteel/chapel{
+ dir = 4
+ },
+/area/chapel/main)
+"aKf" = (
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Auxillary Base Construction APC";
+ pixel_x = -24;
+ pixel_y = 0
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/mining_construction)
+"aKg" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/arrival)
+"aKh" = (
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -29
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/arrival)
+"aKi" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 4;
+ icon_state = "burst_l"
+ },
+/turf/open/floor/plasteel/black,
+/area/shuttle/arrival)
+"aKj" = (
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 2
+ },
+/area/hallway/secondary/entry)
+"aKk" = (
+/turf/open/floor/plasteel/neutral/side,
+/area/hallway/secondary/entry)
+"aKl" = (
+/turf/open/floor/plasteel/neutral/corner{
+ dir = 8
+ },
+/area/hallway/secondary/entry)
+"aKm" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Garden"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/construction{
+ name = "\improper Garden"
+ })
+"aKn" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/turf/open/floor/plating,
+/area/hallway/secondary/construction{
+ name = "\improper Garden"
+ })
+"aKo" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/neutral/side{
+ dir = 4
+ },
+/area/hallway/primary/central)
+"aKp" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/turf/open/floor/plating,
+/area/storage/primary)
+"aKq" = (
+/obj/item/device/radio/intercom{
+ pixel_y = 25
+ },
+/obj/machinery/camera{
+ c_tag = "Theatre Stage";
+ dir = 2
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aKr" = (
+/obj/machinery/airalarm{
+ dir = 2;
+ pixel_y = 24
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aKs" = (
+/obj/structure/grille,
+/obj/structure/disposalpipe/segment,
+/obj/structure/window/fulltile,
+/turf/open/floor/plating,
+/area/storage/primary)
+"aKt" = (
/obj/structure/cable{
icon_state = "0-4";
- d2 = 4
+ d2 = 4
},
/obj/structure/cable{
d2 = 8;
- icon_state = "0-8"
+ icon_state = "0-8"
},
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/hallway/primary/port)
-"aMs" = (
+"aKu" = (
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/hallway/primary/port)
+"aKv" = (
/obj/structure/grille,
/obj/structure/cable,
/obj/structure/cable{
d2 = 8;
- icon_state = "0-8"
+ icon_state = "0-8"
},
/obj/structure/cable{
icon_state = "0-4";
- d2 = 4
+ d2 = 4
},
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/hallway/primary/port)
-"aMt" = (
+"aKw" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/cable{
d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d2 = 8;
+ icon_state = "2-8"
},
/obj/structure/cable{
d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d2 = 4;
+ icon_state = "2-4"
},
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/vault{
dir = 5
},
/area/hallway/primary/port)
-"aMu" = (
-/obj/structure/grille,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/hallway/primary/port)
-"aMv" = (
+"aKx" = (
/obj/structure/cable{
d2 = 8;
- icon_state = "0-8"
+ icon_state = "0-8"
},
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/hallway/primary/port)
-"aMw" = (
+"aKy" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
@@ -17750,65 +16855,70 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/fpmaint)
-"aMx" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/command{
- icon_state = "door_closed";
- lockdownbyai = 0;
- locked = 0;
- name = "Gateway Access";
- req_access_txt = "62"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/gateway)
-"aMy" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/poddoor/shutters{
- id = "stationawaygate";
- name = "Gateway Access Shutters"
+"aKz" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/gateway)
-"aMz" = (
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"aKA" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/poddoor/shutters{
id = "stationawaygate";
- name = "Gateway Access Shutters"
+ name = "Gateway Access Shutters"
},
/turf/open/floor/plasteel,
/area/gateway)
-"aMA" = (
+"aKB" = (
/obj/structure/sign/securearea,
/turf/closed/wall/r_wall,
/area/gateway)
-"aMB" = (
+"aKC" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/showroomfloor,
+/area/crew_quarters/kitchen)
+"aKD" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aKE" = (
/turf/open/floor/plasteel/blue/side{
dir = 8
},
/area/hallway/primary/central)
-"aMC" = (
+"aKF" = (
/turf/open/floor/plasteel/blue/side{
dir = 4
},
/area/hallway/primary/central)
-"aMD" = (
-/obj/machinery/vending/snack,
+"aKG" = (
+/obj/machinery/vending/snack/random,
/turf/open/floor/plasteel/black,
/area/hallway/primary/central)
-"aME" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/neutral/side{
- dir = 4
+"aKH" = (
+/obj/structure/sink{
+ pixel_y = 30
},
-/area/hallway/primary/central)
-"aMF" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aKI" = (
+/obj/structure/closet/secure_closet/hydroponics,
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aKJ" = (
/obj/machinery/light_switch{
pixel_y = 28
},
@@ -17817,397 +16927,375 @@
},
/turf/open/floor/wood,
/area/crew_quarters/theatre)
-"aMG" = (
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aMH" = (
+"aKK" = (
+/obj/structure/closet/wardrobe/botanist,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aKL" = (
/obj/machinery/airalarm{
- dir = 2;
- pixel_y = 24
- },
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aMI" = (
-/obj/item/device/radio/intercom{
- pixel_y = 25
+ pixel_y = 24
},
/obj/machinery/camera{
- c_tag = "Theatre Stage";
- dir = 2
+ c_tag = "Hydroponics Storage"
},
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aMJ" = (
-/obj/structure/window/reinforced{
- dir = 4
+/obj/machinery/light/small{
+ dir = 1
},
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aMK" = (
+/obj/machinery/plantgenes,
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aKM" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/bar,
/area/crew_quarters/bar)
-"aML" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
+"aKN" = (
+/obj/structure/window/reinforced{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aMM" = (
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aKO" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 8
},
/obj/machinery/firealarm{
dir = 2;
- pixel_y = 24
+ pixel_y = 24
},
/turf/open/floor/plasteel/bar,
/area/crew_quarters/bar)
-"aMN" = (
+"aKP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"aKQ" = (
/obj/machinery/reagentgrinder,
/obj/structure/table/wood,
/turf/open/floor/wood,
/area/crew_quarters/bar)
-"aMO" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
+"aKR" = (
/turf/open/floor/wood,
/area/crew_quarters/bar)
-"aMP" = (
+"aKS" = (
/obj/machinery/camera{
c_tag = "Bar Storage"
},
/turf/open/floor/wood,
/area/crew_quarters/bar)
-"aMQ" = (
-/turf/open/floor/wood,
-/area/crew_quarters/bar)
-"aMR" = (
+"aKT" = (
/obj/structure/closet/secure_closet/freezer/meat,
/turf/open/floor/plasteel/showroomfloor,
/area/crew_quarters/kitchen)
-"aMS" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/showroomfloor,
-/area/crew_quarters/kitchen)
-"aMT" = (
+"aKU" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ on = 1
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aKV" = (
/obj/machinery/door/window/southleft{
base_state = "left";
- dir = 2;
- icon_state = "left";
- name = "Kitchen Delivery";
- req_access_txt = "28"
+ dir = 2;
+ icon_state = "left";
+ name = "Kitchen Delivery";
+ req_access_txt = "28"
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
/area/crew_quarters/kitchen)
-"aMU" = (
+"aKW" = (
+/obj/machinery/light_switch{
+ pixel_y = 28
+ },
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aKX" = (
/obj/machinery/door/window/eastright{
name = "Hydroponics Delivery";
- req_access_txt = "35"
+ req_access_txt = "35"
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
/area/hydroponics)
-"aMV" = (
-/obj/machinery/light_switch{
- pixel_y = 28
+"aKY" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2)
+"aKZ" = (
+/obj/machinery/airalarm{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22
},
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aMW" = (
-/obj/structure/sink{
- pixel_y = 30
+/obj/machinery/camera{
+ c_tag = "Chapel Crematorium";
+ dir = 4
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aMX" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+/turf/open/floor/plasteel/black,
+/area/chapel/office)
+"aLa" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aMY" = (
-/obj/structure/closet/wardrobe/botanist,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aMZ" = (
-/obj/structure/closet/secure_closet/hydroponics,
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aNa" = (
-/obj/machinery/airalarm{
- pixel_y = 24
+/turf/open/floor/plasteel/grimy,
+/area/chapel/office)
+"aLb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/machinery/camera{
- c_tag = "Hydroponics Storage"
+/obj/machinery/door/airlock{
+ name = "Crematorium";
+ req_access_txt = "27"
},
-/obj/machinery/light/small{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
-/obj/machinery/plantgenes,
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aNb" = (
+/turf/open/floor/plasteel/black,
+/area/chapel/office)
+"aLc" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
on = 1
},
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aNc" = (
+/turf/open/floor/plasteel/grimy,
+/area/chapel/office)
+"aLd" = (
/obj/structure/table,
/obj/item/weapon/reagent_containers/spray/plantbgone{
pixel_x = 0;
- pixel_y = 3
+ pixel_y = 3
},
/obj/item/weapon/reagent_containers/spray/plantbgone{
pixel_x = 8;
- pixel_y = 8
+ pixel_y = 8
},
/obj/item/weapon/reagent_containers/spray/plantbgone{
pixel_x = 13;
- pixel_y = 5
+ pixel_y = 5
},
/obj/item/weapon/watertank,
/turf/open/floor/plasteel/hydrofloor,
/area/hydroponics)
-"aNd" = (
-/obj/machinery/airalarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
+"aLe" = (
+/obj/structure/chair{
+ dir = 1
},
-/turf/open/floor/wood,
-/area/library)
-"aNe" = (
-/obj/structure/chair/office/dark{
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/wood,
-/area/library)
-"aNf" = (
-/obj/structure/table/wood,
+/turf/open/floor/plasteel/grimy,
+/area/chapel/office)
+"aLf" = (
+/obj/machinery/airalarm{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22
+ },
/turf/open/floor/wood,
/area/library)
-"aNg" = (
+"aLg" = (
/obj/structure/table/wood,
-/obj/structure/disposalpipe/segment,
-/obj/item/toy/cards/deck/cas,
-/obj/item/toy/cards/deck/cas/black{
- pixel_x = -2;
- pixel_y = 6
- },
/turf/open/floor/wood,
/area/library)
-"aNh" = (
+"aLh" = (
/obj/machinery/light{
dir = 4;
- icon_state = "tube1"
+ icon_state = "tube1"
},
/turf/open/floor/wood,
/area/library)
-"aNi" = (
-/obj/machinery/airalarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
- },
-/obj/machinery/camera{
- c_tag = "Chapel Crematorium";
- dir = 4
+"aLi" = (
+/obj/structure/chair/comfy/beige,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/grimy,
+/area/hallway/secondary/entry)
+"aLj" = (
+/obj/structure/chair/comfy/beige,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/grimy,
+/area/hallway/secondary/entry)
+"aLk" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
+/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ external_pressure_bound = 101.325;
+ on = 1;
+ pressure_checks = 1
},
-/turf/open/floor/plasteel/black,
-/area/chapel/office)
-"aNj" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"aLl" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'HIGH VOLTAGE'";
+ icon_state = "shock";
+ name = "HIGH VOLTAGE";
+ pixel_y = 32
},
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
-/turf/open/floor/plasteel/black,
-/area/chapel/office)
-"aNk" = (
-/obj/structure/disposalpipe/segment{
+/obj/effect/turf_decal/stripes/corner{
dir = 4
},
-/obj/machinery/door/airlock{
- name = "Crematorium";
- req_access_txt = "27"
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"aLm" = (
+/obj/machinery/light{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
},
-/turf/open/floor/plasteel/black,
-/area/chapel/office)
-"aNl" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"aLn" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"aLo" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/turf/open/floor/plasteel/grimy,
+/turf/closed/wall,
/area/chapel/office)
-"aNm" = (
-/obj/structure/chair{
- dir = 1
+"aLp" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
},
-/turf/open/floor/plasteel/grimy,
-/area/chapel/office)
-"aNn" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"aLq" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
},
-/turf/open/floor/plasteel/grimy,
-/area/chapel/office)
-"aNo" = (
-/turf/open/floor/plasteel/grimy,
-/area/chapel/office)
-"aNp" = (
-/obj/machinery/light{
- dir = 8
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"aLr" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
},
/turf/open/floor/plasteel/black,
/area/chapel/main)
-"aNq" = (
-/obj/machinery/computer/crew,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"aNr" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
- pixel_y = -30
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"aNs" = (
-/obj/item/device/radio/intercom{
- name = "Station Intercom (General)";
- pixel_x = 0;
- pixel_y = -29
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"aNt" = (
-/obj/machinery/button/flasher{
- id = "cockpit_flasher";
- pixel_x = 6;
- pixel_y = -24
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"aNu" = (
-/obj/machinery/computer/communications,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"aNv" = (
+"aLs" = (
/obj/machinery/door/airlock/titanium{
name = "Arrivals Shuttle Airlock"
},
/obj/docking_port/mobile{
dwidth = 5;
- height = 7;
- id = "arrival";
- name = "arrival shuttle";
- port_angle = -90;
- preferred_direction = 8;
- width = 15
+ height = 7;
+ id = "arrival";
+ name = "arrival shuttle";
+ port_angle = -90;
+ preferred_direction = 8;
+ width = 15
},
/obj/docking_port/stationary{
dwidth = 5;
- height = 7;
- id = "arrival_home";
- name = "port bay 1";
- width = 15
+ height = 7;
+ id = "arrival_home";
+ name = "port bay 1";
+ width = 15
},
/turf/open/floor/plating,
/area/shuttle/arrival)
-"aNw" = (
+"aLt" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/maintenance/fpmaint2)
+"aLu" = (
+/obj/machinery/door/airlock/engineering{
+ cyclelinkeddir = 1;
+ name = "Auxillary Base Construction";
+ req_access_txt = "0";
+ req_one_access_txt = "32;47;48"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/mining_construction)
+"aLv" = (
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -24
+ pixel_x = -24
},
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"aNx" = (
+"aLw" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
/turf/open/floor/plating,
/area/hallway/secondary/entry)
-"aNy" = (
+"aLx" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aLy" = (
/obj/structure/chair/comfy/beige,
/obj/effect/landmark/start{
name = "Assistant"
},
/turf/open/floor/plasteel/grimy,
/area/hallway/secondary/entry)
-"aNz" = (
-/obj/structure/chair/comfy/beige,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/grimy,
-/area/hallway/secondary/entry)
-"aNA" = (
-/turf/open/floor/plasteel/grimy,
-/area/hallway/secondary/entry)
-"aNB" = (
-/obj/structure/chair/comfy/beige,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+"aLz" = (
/turf/open/floor/plasteel/grimy,
/area/hallway/secondary/entry)
-"aNC" = (
+"aLA" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp/green{
pixel_x = 1;
- pixel_y = 5
+ pixel_y = 5
},
/turf/open/floor/plasteel/grimy,
/area/hallway/secondary/entry)
-"aND" = (
-/obj/machinery/vending/cigarette,
-/turf/open/floor/plasteel/black,
-/area/hallway/secondary/entry)
-"aNE" = (
+"aLB" = (
/turf/open/floor/plasteel/neutral/side{
dir = 8
},
/area/hallway/secondary/entry)
-"aNF" = (
+"aLC" = (
+/obj/machinery/vending/cigarette,
+/turf/open/floor/plasteel/black,
+/area/hallway/secondary/entry)
+"aLD" = (
/obj/machinery/door/firedoor,
/obj/machinery/newscaster{
pixel_y = 32
@@ -18217,248 +17305,218 @@
},
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"aNG" = (
-/obj/machinery/door/firedoor,
+"aLE" = (
/turf/open/floor/plasteel,
/area/hallway/primary/port)
-"aNH" = (
+"aLF" = (
+/obj/machinery/door/firedoor,
/turf/open/floor/plasteel,
/area/hallway/primary/port)
-"aNI" = (
+"aLG" = (
/obj/structure/cable{
icon_state = "0-2";
- d2 = 2
+ d2 = 2
},
/obj/machinery/power/apc{
name = "Port Hall APC";
- dir = 1;
- pixel_y = 26
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aNJ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
+ pixel_y = 26
},
/turf/open/floor/plasteel,
/area/hallway/primary/port)
-"aNK" = (
+"aLH" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
/turf/open/floor/plasteel,
/area/hallway/primary/port)
-"aNL" = (
-/obj/structure/disposalpipe/segment,
+"aLI" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 5;
+ pixel_y = 30
+ },
/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aNM" = (
+/area/hallway/primary/central)
+"aLJ" = (
/obj/machinery/light{
dir = 1
},
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
- pixel_y = 32
+ icon_state = "shock";
+ name = "HIGH VOLTAGE";
+ pixel_y = 32
},
/obj/effect/turf_decal/stripes/corner{
dir = 8
},
/turf/open/floor/plasteel,
/area/hallway/primary/port)
-"aNN" = (
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
+"aLK" = (
+/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel,
/area/hallway/primary/port)
-"aNO" = (
+"aLL" = (
/obj/machinery/camera{
c_tag = "Port Hallway 2";
- dir = 2
+ dir = 2
},
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel,
/area/hallway/primary/port)
-"aNP" = (
+"aLM" = (
+/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel,
/area/hallway/primary/port)
-"aNQ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
+"aLN" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel,
/area/hallway/primary/port)
-"aNR" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
- pixel_y = 32
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+"aLO" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
},
-/obj/effect/turf_decal/stripes/corner{
+/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aNS" = (
-/obj/structure/disposalpipe/segment,
+/area/hallway/primary/central)
+"aLP" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aNT" = (
-/obj/machinery/light{
+/obj/effect/turf_decal/stripes/line{
dir = 1
},
-/obj/effect/turf_decal/stripes/corner{
- dir = 8
- },
/turf/open/floor/plasteel,
/area/hallway/primary/port)
-"aNU" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+"aLQ" = (
+/obj/machinery/camera{
+ c_tag = "Central Hallway North-East";
+ dir = 2
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_Toxins = 0
},
/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aNV" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/effect/turf_decal/stripes/line{
+/area/hallway/primary/central)
+"aLR" = (
+/obj/machinery/newscaster{
+ pixel_y = 32
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aNW" = (
+/area/hallway/primary/central)
+"aLS" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aLT" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/stripes/corner{
dir = 4
},
/turf/open/floor/plasteel,
/area/hallway/primary/port)
-"aNX" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 5;
- pixel_y = 30
+"aLU" = (
+/obj/machinery/airalarm{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/structure/reagent_dispensers/beerkeg,
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"aLV" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/firealarm{
+ dir = 2;
+ pixel_y = 24
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aNY" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aNZ" = (
+"aLW" = (
/obj/machinery/camera{
c_tag = "Central Hallway North-West";
- dir = 2
+ dir = 2
},
/obj/machinery/airalarm{
pixel_y = 23
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aOa" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/firealarm{
- dir = 2;
- pixel_y = 24
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aOb" = (
+"aLX" = (
/turf/open/floor/plasteel/blue/corner{
dir = 4
},
/area/hallway/primary/central)
-"aOc" = (
+"aLY" = (
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aOd" = (
-/turf/open/floor/plasteel{
- icon_state = "L1"
- },
-/area/hallway/primary/central)
-"aOe" = (
+"aLZ" = (
/turf/open/floor/plasteel{
icon_state = "L3"
},
/area/hallway/primary/central)
-"aOf" = (
+"aMa" = (
/turf/open/floor/plasteel{
- icon_state = "L5"
+ icon_state = "L1"
},
/area/hallway/primary/central)
-"aOg" = (
+"aMb" = (
/turf/open/floor/plasteel{
icon_state = "L7"
},
/area/hallway/primary/central)
-"aOh" = (
+"aMc" = (
/turf/open/floor/plasteel{
- icon_state = "L9"
+ icon_state = "L5"
},
/area/hallway/primary/central)
-"aOi" = (
+"aMd" = (
/turf/open/floor/plasteel{
icon_state = "L11"
},
/area/hallway/primary/central)
-"aOj" = (
+"aMe" = (
/turf/open/floor/plasteel{
- desc = "";
- icon_state = "L13";
- name = "floor"
+ icon_state = "L9"
},
/area/hallway/primary/central)
-"aOk" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
+"aMf" = (
+/turf/open/floor/plasteel{
+ desc = "";
+ icon_state = "L13";
+ name = "floor"
},
-/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aOl" = (
+"aMg" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -18466,182 +17524,131 @@
dir = 4
},
/area/hallway/primary/central)
-"aOm" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel/neutral/corner{
- dir = 1
- },
-/area/hallway/primary/central)
-"aOn" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel/neutral/corner{
- dir = 4
+"aMh" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
},
+/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aOo" = (
-/obj/machinery/newscaster{
- pixel_y = 32
+"aMi" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"aMj" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
},
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
/area/hallway/primary/central)
-"aOp" = (
+"aMk" = (
+/obj/machinery/chem_master/condimaster{
+ name = "CondiMaster Neo"
+ },
/obj/machinery/camera{
- c_tag = "Central Hallway North-East";
- dir = 2
+ c_tag = "Kitchen Cold Room"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
},
+/turf/open/floor/plasteel/showroomfloor,
+/area/crew_quarters/kitchen)
+"aMl" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/crew_quarters/kitchen)
+"aMm" = (
+/obj/machinery/firealarm{
+ dir = 2;
+ pixel_y = 24
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aOq" = (
+"aMn" = (
/obj/machinery/light{
dir = 1
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aOr" = (
-/obj/machinery/firealarm{
- dir = 2;
- pixel_y = 24
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aOs" = (
+"aMo" = (
/obj/machinery/airalarm{
pixel_y = 23
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aOt" = (
-/obj/structure/piano{
- tag = "icon-piano";
- icon_state = "piano"
- },
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aOu" = (
+"aMp" = (
/obj/structure/chair/stool{
pixel_y = 8
},
/turf/open/floor/wood,
/area/crew_quarters/theatre)
-"aOv" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
+"aMq" = (
+/obj/structure/piano{
+ tag = "icon-piano";
+ icon_state = "piano"
},
/turf/open/floor/wood,
/area/crew_quarters/theatre)
-"aOw" = (
-/obj/structure/window/reinforced{
+"aMr" = (
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aMs" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aMt" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -5;
+ pixel_y = -31
+ },
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aOx" = (
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aMu" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/bar,
/area/crew_quarters/bar)
-"aOy" = (
-/obj/structure/chair/stool,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aOz" = (
-/obj/machinery/computer/slot_machine,
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aOA" = (
-/obj/machinery/airalarm{
- dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
- },
-/obj/machinery/light/small{
- dir = 8
+"aMv" = (
+/obj/structure/window/reinforced{
+ dir = 4
},
-/obj/structure/reagent_dispensers/beerkeg,
-/turf/open/floor/wood,
-/area/crew_quarters/bar)
-"aOB" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/landmark{
- name = "xeno_spawn";
- pixel_x = -1
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/wood,
-/area/crew_quarters/bar)
-"aOC" = (
-/obj/machinery/vending/cola,
-/turf/open/floor/wood,
-/area/crew_quarters/bar)
-"aOD" = (
-/obj/machinery/vending/coffee,
/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aMw" = (
+/obj/machinery/computer/slot_machine,
+/turf/open/floor/plasteel/bar,
/area/crew_quarters/bar)
-"aOE" = (
-/obj/machinery/icecream_vat,
-/turf/open/floor/plasteel/showroomfloor,
-/area/crew_quarters/kitchen)
-"aOF" = (
-/obj/machinery/chem_master/condimaster{
- name = "CondiMaster Neo"
- },
-/obj/machinery/camera{
- c_tag = "Kitchen Cold Room"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/crew_quarters/kitchen)
-"aOG" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/crew_quarters/kitchen)
-"aOH" = (
-/obj/structure/closet/crate/hydroponics,
-/obj/item/weapon/shovel/spade,
-/obj/item/weapon/wrench,
-/obj/item/weapon/reagent_containers/glass/bucket,
-/obj/item/weapon/wirecutters,
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aOI" = (
-/obj/machinery/light/small,
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aOJ" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
+"aMx" = (
+/obj/structure/chair/stool,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aOK" = (
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"aMy" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -18650,582 +17657,577 @@
},
/turf/open/floor/plasteel/hydrofloor,
/area/hydroponics)
-"aOL" = (
+"aMz" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/extinguisher_cabinet{
- pixel_x = -5;
- pixel_y = -31
- },
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/hydrofloor,
/area/hydroponics)
-"aOM" = (
+"aMA" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/firealarm{
dir = 1;
- pixel_y = -24
+ pixel_y = -24
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/hydrofloor,
/area/hydroponics)
-"aON" = (
+"aMB" = (
+/obj/machinery/vending/coffee,
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"aMC" = (
+/obj/machinery/vending/cola/random,
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"aMD" = (
+/obj/machinery/icecream_vat,
+/turf/open/floor/plasteel/showroomfloor,
+/area/crew_quarters/kitchen)
+"aME" = (
/obj/structure/disposalpipe/segment{
- dir = 4
+ dir = 2;
+ icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/hydrofloor,
/area/hydroponics)
-"aOO" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aOP" = (
-/obj/machinery/chem_master/condimaster,
+"aMF" = (
+/turf/open/floor/plasteel/showroomfloor,
+/area/crew_quarters/kitchen)
+"aMG" = (
+/obj/structure/closet/crate/hydroponics,
+/obj/item/weapon/shovel/spade,
+/obj/item/weapon/wrench,
+/obj/item/weapon/reagent_containers/glass/bucket,
+/obj/item/weapon/wirecutters,
/turf/open/floor/plasteel/hydrofloor,
/area/hydroponics)
-"aOQ" = (
-/turf/open/floor/wood,
-/area/library)
-"aOR" = (
+"aMH" = (
/obj/structure/chair/office/dark{
dir = 1
},
/turf/open/floor/wood,
/area/library)
-"aOS" = (
+"aMI" = (
+/obj/machinery/light/small,
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aMJ" = (
/obj/structure/chair/office/dark{
dir = 1
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/wood,
/area/library)
-"aOT" = (
-/obj/structure/bodycontainer/morgue,
-/obj/effect/landmark{
- name = "revenantspawn"
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/office)
-"aOU" = (
+"aMK" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
+ external_pressure_bound = 101.325;
+ on = 1;
+ pressure_checks = 1
},
/turf/open/floor/plasteel/black,
/area/chapel/office)
-"aOV" = (
-/obj/structure/table/wood,
-/obj/item/clothing/under/burial,
-/obj/item/clothing/under/burial,
-/obj/item/clothing/under/burial,
-/obj/item/clothing/under/burial,
-/obj/item/clothing/under/burial,
-/obj/item/clothing/under/burial,
-/turf/open/floor/plasteel/grimy,
-/area/chapel/office)
-"aOW" = (
-/obj/machinery/camera{
- c_tag = "Chapel North";
- dir = 2;
- network = list("SS13")
- },
-/turf/open/floor/plasteel/black,
-/area/chapel/main)
-"aOX" = (
+"aML" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
/turf/open/floor/plasteel/black,
/area/chapel/main)
-"aOY" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
+"aMM" = (
+/obj/machinery/camera{
+ c_tag = "Chapel North";
+ dir = 2;
+ network = list("SS13")
},
/turf/open/floor/plasteel/black,
/area/chapel/main)
-"aOZ" = (
-/turf/closed/wall,
-/area/hallway/secondary/exit)
-"aPa" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/hallway/secondary/exit)
-"aPb" = (
-/obj/machinery/door/airlock/glass{
- name = "Emergency Shuttle Cockpit";
- req_access_txt = "19"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"aPc" = (
-/obj/machinery/status_display,
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/escape)
-"aPd" = (
-/obj/machinery/holopad,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aPe" = (
-/obj/structure/table/wood,
-/turf/open/floor/plasteel/grimy,
-/area/hallway/secondary/entry)
-"aPf" = (
+"aMN" = (
+/obj/machinery/chem_master/condimaster,
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aMO" = (
/obj/structure/table/wood,
/obj/item/weapon/reagent_containers/food/snacks/chips,
/obj/item/weapon/reagent_containers/food/drinks/soda_cans/cola,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/carpet,
/area/hallway/secondary/entry)
-"aPg" = (
-/turf/open/floor/carpet,
-/area/hallway/secondary/entry)
-"aPh" = (
+"aMP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/carpet,
/area/hallway/secondary/entry)
-"aPi" = (
-/obj/structure/chair/comfy/beige{
- dir = 8
- },
-/turf/open/floor/plasteel/grimy,
-/area/hallway/secondary/entry)
-"aPj" = (
-/obj/machinery/vending/coffee,
-/turf/open/floor/plasteel/black,
-/area/hallway/secondary/entry)
-"aPk" = (
-/turf/open/floor/goonplaque,
-/area/hallway/secondary/entry)
-"aPl" = (
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=CHW";
- location = "Lockers"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aPm" = (
+"aMQ" = (
/obj/structure/cable{
d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
},
/turf/open/floor/plasteel,
/area/hallway/primary/port)
-"aPn" = (
+"aMR" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ on = 1
},
/turf/open/floor/plasteel,
/area/hallway/primary/port)
-"aPo" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+"aMS" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
/turf/open/floor/plasteel,
/area/hallway/primary/port)
-"aPp" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
+"aMT" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/hallway/primary/port)
-"aPq" = (
+"aMU" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/hallway/primary/port)
-"aPr" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aPs" = (
+"aMV" = (
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/components/unary/vent_pump{
- on = 1
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/hallway/primary/port)
-"aPt" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
+"aMW" = (
+/obj/structure/bodycontainer/morgue,
+/obj/effect/landmark{
+ name = "revenantspawn"
},
+/turf/open/floor/plasteel/black,
+/area/chapel/office)
+"aMX" = (
+/turf/open/floor/plasteel/grimy,
+/area/chapel/office)
+"aMY" = (
+/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/hallway/primary/port)
-"aPu" = (
+"aMZ" = (
+/turf/closed/wall,
+/area/hallway/secondary/exit)
+"aNa" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/hallway/secondary/exit)
+"aNb" = (
+/obj/machinery/holopad,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"aNc" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Central Access"
+ },
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aPv" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/area/hallway/primary/central)
+"aNd" = (
+/obj/structure/table/wood,
+/turf/open/floor/plasteel/grimy,
+/area/hallway/secondary/entry)
+"aNe" = (
+/turf/open/floor/carpet,
+/area/hallway/secondary/entry)
+"aNf" = (
+/obj/structure/chair/comfy/beige{
+ dir = 8
+ },
+/turf/open/floor/plasteel/grimy,
+/area/hallway/secondary/entry)
+"aNg" = (
+/obj/machinery/vending/coffee,
+/turf/open/floor/plasteel/black,
+/area/hallway/secondary/entry)
+"aNh" = (
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"aNi" = (
+/turf/open/floor/goonplaque,
+/area/hallway/secondary/entry)
+"aNj" = (
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=CHW";
+ location = "Lockers"
+ },
/turf/open/floor/plasteel,
/area/hallway/primary/port)
-"aPw" = (
-/obj/structure/disposalpipe/segment,
+"aNk" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/hallway/primary/port)
-"aPx" = (
+"aNl" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"aNm" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/hallway/primary/port)
-"aPy" = (
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
+"aNn" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/turf/open/floor/plasteel,
/area/hallway/primary/port)
-"aPz" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+"aNo" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
/turf/open/floor/plasteel,
/area/hallway/primary/port)
-"aPA" = (
+"aNp" = (
/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Central Access"
- },
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"aNq" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aPB" = (
+"aNr" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aPC" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aPD" = (
+"aNs" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aPE" = (
+"aNt" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aNu" = (
+/obj/structure/closet/secure_closet/bar{
+ req_access_txt = "25"
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/bar)
+"aNv" = (
+/turf/open/floor/plasteel{
+ icon_state = "L4"
+ },
+/area/hallway/primary/central)
+"aNw" = (
/turf/open/floor/plasteel{
icon_state = "L2"
},
/area/hallway/primary/central)
-"aPF" = (
+"aNx" = (
/turf/open/floor/plasteel{
- icon_state = "L4"
+ icon_state = "L8"
},
/area/hallway/primary/central)
-"aPG" = (
+"aNy" = (
/obj/machinery/navbeacon{
codes_txt = "patrol;next_patrol=Lockers";
- location = "EVA"
+ location = "EVA"
},
/turf/open/floor/plasteel{
icon_state = "L6"
},
/area/hallway/primary/central)
-"aPH" = (
+"aNz" = (
/turf/open/floor/plasteel{
- icon_state = "L8"
+ icon_state = "L12"
},
/area/hallway/primary/central)
-"aPI" = (
+"aNA" = (
/obj/machinery/navbeacon{
codes_txt = "patrol;next_patrol=Security";
- location = "EVA2"
+ location = "EVA2"
},
/turf/open/floor/plasteel{
icon_state = "L10"
},
/area/hallway/primary/central)
-"aPJ" = (
-/turf/open/floor/plasteel{
- icon_state = "L12"
- },
-/area/hallway/primary/central)
-"aPK" = (
+"aNB" = (
/turf/open/floor/plasteel{
desc = "";
- icon_state = "L14"
+ icon_state = "L14"
},
/area/hallway/primary/central)
-"aPL" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aPM" = (
+"aNC" = (
/obj/machinery/navbeacon{
codes_txt = "patrol;next_patrol=EVA2";
- location = "Dorm"
+ location = "Dorm"
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aPN" = (
-/obj/structure/table/wood,
-/obj/item/device/instrument/guitar{
- pixel_x = -7
+"aND" = (
+/obj/structure/closet/gmcloset,
+/obj/item/stack/sheet/metal{
+ amount = 50
},
-/obj/item/device/instrument/eguitar{
- pixel_x = 5
+/obj/item/stack/sheet/glass{
+ amount = 50
},
+/obj/item/stack/cable_coil,
+/obj/item/device/flashlight/lamp,
+/obj/item/device/flashlight/lamp/green,
/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aPO" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+/area/crew_quarters/bar)
+"aNE" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ external_pressure_bound = 101.325;
+ on = 1;
+ pressure_checks = 1
},
/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aPP" = (
+/area/crew_quarters/bar)
+"aNF" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/effect/landmark/event_spawn,
/turf/open/floor/wood,
/area/crew_quarters/theatre)
-"aPQ" = (
+"aNG" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aPR" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"aNH" = (
/obj/machinery/door/window{
dir = 4;
- name = "Theatre Stage";
- req_access_txt = "0"
+ name = "Theatre Stage";
+ req_access_txt = "0"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/wood,
/area/crew_quarters/theatre)
-"aPS" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aPT" = (
-/obj/structure/chair/stool,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aPU" = (
+"aNI" = (
/obj/machinery/computer/slot_machine,
/obj/machinery/light/small{
dir = 4
},
/obj/machinery/status_display{
density = 0;
- layer = 3;
- pixel_x = 32;
- pixel_y = 0
+ layer = 3;
+ pixel_x = 32;
+ pixel_y = 0
},
/turf/open/floor/plasteel/bar,
/area/crew_quarters/bar)
-"aPV" = (
-/obj/structure/closet/secure_closet/bar{
- req_access_txt = "25"
- },
-/turf/open/floor/wood,
-/area/crew_quarters/bar)
-"aPW" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
- },
-/turf/open/floor/wood,
-/area/crew_quarters/bar)
-"aPX" = (
-/obj/structure/closet/gmcloset,
-/obj/item/stack/sheet/metal{
- amount = 50
- },
-/obj/item/stack/sheet/glass{
- amount = 50
+"aNJ" = (
+/obj/structure/chair/stool,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
},
-/obj/item/stack/cable_coil,
-/obj/item/device/flashlight/lamp,
-/obj/item/device/flashlight/lamp/green,
-/turf/open/floor/wood,
+/turf/open/floor/plasteel/bar,
/area/crew_quarters/bar)
-"aPY" = (
-/obj/structure/kitchenspike,
-/obj/machinery/light/small{
- dir = 8
- },
-/turf/open/floor/plasteel/showroomfloor,
-/area/crew_quarters/kitchen)
-"aPZ" = (
+"aNK" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/mob/living/simple_animal/hostile/retaliate/goat{
name = "Pete"
},
/turf/open/floor/plasteel/showroomfloor,
/area/crew_quarters/kitchen)
-"aQa" = (
+"aNL" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/hydroponics)
+"aNM" = (
+/obj/structure/kitchenspike,
+/obj/machinery/light/small{
+ dir = 8
+ },
/turf/open/floor/plasteel/showroomfloor,
/area/crew_quarters/kitchen)
-"aQb" = (
+"aNN" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Hydroponics";
+ req_access_txt = "35"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/hydrofloor,
+/area/hydroponics)
+"aNO" = (
/obj/machinery/light/small{
dir = 4
},
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
+ icon_state = "alarm0";
+ pixel_x = 24
},
/obj/structure/closet/chefcloset,
/turf/open/floor/plasteel/showroomfloor,
/area/crew_quarters/kitchen)
-"aQc" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/hydroponics)
-"aQd" = (
+"aNP" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/wood,
+/area/library)
+"aNQ" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
/turf/open/floor/plating,
/area/hydroponics)
-"aQe" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Hydroponics";
- req_access_txt = "35"
- },
-/obj/structure/disposalpipe/segment,
+"aNR" = (
+/obj/structure/table/wood,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/hydrofloor,
-/area/hydroponics)
-"aQf" = (
+/turf/open/floor/carpet,
+/area/hallway/secondary/entry)
+"aNS" = (
/obj/machinery/bookbinder{
pixel_y = 0
},
/turf/open/floor/wood,
/area/library)
-"aQg" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/wood,
-/area/library)
-"aQh" = (
-/obj/machinery/photocopier,
-/turf/open/floor/wood,
-/area/library)
-"aQi" = (
-/obj/machinery/door/airlock/glass{
- name = "Chapel Office";
- req_access_txt = "22"
+"aNT" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/turf/open/floor/plasteel/black,
-/area/chapel/office)
-"aQj" = (
-/obj/machinery/door/morgue{
- name = "Confession Booth (Chaplain)";
- req_access_txt = "22"
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/open/floor/plasteel/black,
-/area/chapel/main)
-"aQk" = (
-/obj/item/device/radio/intercom{
- broadcasting = 1;
- frequency = 1480;
- name = "Confessional Intercom";
- pixel_x = 25
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/structure/chair,
-/turf/open/floor/plasteel/black,
-/area/chapel/main)
-"aQl" = (
-/obj/structure/chair,
-/turf/open/floor/plasteel/red/side{
- dir = 9
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
-/area/hallway/secondary/exit)
-"aQm" = (
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"aNU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Port Hallway";
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"aNV" = (
+/obj/machinery/photocopier,
+/turf/open/floor/wood,
+/area/library)
+"aNW" = (
+/obj/machinery/door/airlock/glass{
+ name = "Chapel Office";
+ req_access_txt = "22"
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/office)
+"aNX" = (
+/obj/item/device/radio/intercom{
+ broadcasting = 1;
+ frequency = 1480;
+ name = "Confessional Intercom";
+ pixel_x = 25
+ },
+/obj/structure/chair,
+/turf/open/floor/plasteel/black,
+/area/chapel/main)
+"aNY" = (
+/obj/machinery/door/morgue{
+ name = "Confession Booth (Chaplain)";
+ req_access_txt = "22"
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main)
+"aNZ" = (
/obj/structure/chair,
/turf/open/floor/plasteel/red/side{
- dir = 1
+ dir = 9
},
/area/hallway/secondary/exit)
-"aQn" = (
+"aOa" = (
/obj/machinery/light{
dir = 1
},
@@ -19234,57 +18236,27 @@
dir = 1
},
/area/hallway/secondary/exit)
-"aQo" = (
+"aOb" = (
/obj/structure/chair,
-/obj/effect/turf_decal/stripes/line{
+/turf/open/floor/plasteel/red/side{
dir = 1
},
-/turf/open/floor/plasteel,
/area/hallway/secondary/exit)
-"aQp" = (
+"aOc" = (
/obj/structure/chair,
/obj/effect/turf_decal/stripes/line{
dir = 5
},
/turf/open/floor/plasteel,
/area/hallway/secondary/exit)
-"aQq" = (
+"aOd" = (
/obj/structure/chair,
-/turf/open/floor/mineral/plastitanium/brig,
-/area/shuttle/escape)
-"aQr" = (
-/obj/machinery/flasher{
- id = "cockpit_flasher";
- pixel_x = 6;
- pixel_y = 24
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"aQs" = (
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"aQt" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"aQu" = (
-/obj/structure/table,
-/obj/item/weapon/storage/firstaid/fire,
-/obj/item/weapon/storage/firstaid/regular{
- pixel_x = 2;
- pixel_y = 3
- },
-/obj/item/weapon/crowbar,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"aQv" = (
-/obj/machinery/vending/snack,
/obj/effect/turf_decal/stripes/line{
- dir = 9
+ dir = 1
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aQw" = (
+/area/hallway/secondary/exit)
+"aOe" = (
/obj/item/device/radio/beacon,
/obj/machinery/camera{
c_tag = "Arrivals Bay 1 South"
@@ -19294,145 +18266,129 @@
},
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"aQx" = (
-/obj/structure/closet/emcloset,
+"aOf" = (
+/obj/machinery/vending/snack/random,
/obj/effect/turf_decal/stripes/line{
- dir = 1
+ dir = 9
},
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"aQy" = (
+"aOg" = (
/obj/structure/closet/emcloset,
/obj/effect/turf_decal/stripes/line{
dir = 5
},
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"aQz" = (
+"aOh" = (
+/obj/structure/closet/emcloset,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"aOi" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"aOj" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/fancy/cigarettes{
pixel_y = 2
},
/obj/item/weapon/lighter/greyscale{
pixel_x = 4;
- pixel_y = 2
+ pixel_y = 2
},
/turf/open/floor/plasteel/grimy,
/area/hallway/secondary/entry)
-"aQA" = (
-/obj/structure/table/wood,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/carpet,
-/area/hallway/secondary/entry)
-"aQB" = (
-/obj/machinery/vending/cola,
+"aOk" = (
+/obj/machinery/vending/cola/random,
/turf/open/floor/plasteel/black,
/area/hallway/secondary/entry)
-"aQC" = (
+"aOl" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"aOm" = (
/obj/structure/disposalpipe/segment{
dir = 4;
- icon_state = "pipe-c"
+ icon_state = "pipe-c"
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/open/floor/plasteel,
/area/hallway/primary/port)
-"aQD" = (
+"aOn" = (
+/obj/machinery/light,
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel,
/area/hallway/primary/port)
-"aQE" = (
+"aOo" = (
/obj/machinery/firealarm{
dir = 1;
- pixel_y = -24
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
+ pixel_y = -24
},
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aQF" = (
-/obj/machinery/light,
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel,
/area/hallway/primary/port)
-"aQG" = (
+"aOp" = (
/obj/machinery/camera{
c_tag = "Port Hallway 3";
- dir = 1
+ dir = 1
},
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel,
/area/hallway/primary/port)
-"aQH" = (
+"aOq" = (
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j1";
- dir = 4
+ dir = 4
},
/turf/open/floor/plasteel,
/area/hallway/primary/port)
-"aQI" = (
+"aOr" = (
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j2";
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aQJ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aQK" = (
-/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/camera{
- c_tag = "Port Hallway";
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
/turf/open/floor/plasteel,
/area/hallway/primary/port)
-"aQL" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
+"aOs" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
+/obj/machinery/door/firedoor,
/turf/open/floor/plasteel,
/area/hallway/primary/port)
-"aQM" = (
+"aOt" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
},
/obj/machinery/light,
/obj/structure/disposalpipe/segment{
@@ -19443,12 +18399,12 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/port)
-"aQN" = (
+"aOu" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -19458,115 +18414,93 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/port)
-"aQO" = (
+"aOv" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/hallway/primary/port)
-"aQP" = (
+"aOw" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
/obj/structure/disposalpipe/segment{
dir = 8;
- icon_state = "pipe-c"
+ icon_state = "pipe-c"
},
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 8;
+ icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel,
/area/hallway/primary/port)
-"aQQ" = (
+"aOx" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
},
/turf/open/floor/plasteel,
/area/hallway/primary/port)
-"aQR" = (
+"aOy" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 8;
+ icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel,
/area/hallway/primary/port)
-"aQS" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aQT" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aQU" = (
+"aOz" = (
/obj/structure/sign/directions/security{
dir = 4;
- icon_state = "direction_sec";
- pixel_x = 32;
- pixel_y = -24
+ icon_state = "direction_sec";
+ pixel_x = 32;
+ pixel_y = -24
},
/obj/structure/sign/directions/evac{
dir = 4;
- icon_state = "direction_evac";
- pixel_x = 32;
- pixel_y = -32
+ icon_state = "direction_evac";
+ pixel_x = 32;
+ pixel_y = -32
},
/obj/structure/sign/directions/engineering{
pixel_x = 32;
- pixel_y = -40
+ pixel_y = -40
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/hallway/primary/port)
-"aQV" = (
-/obj/machinery/door/firedoor,
+"aOA" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/hallway/primary/port)
-"aQW" = (
+"aOB" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
name = "Central Access"
@@ -19576,52 +18510,47 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aQX" = (
+"aOC" = (
+/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aQY" = (
+/area/hallway/primary/port)
+"aOD" = (
/obj/machinery/navbeacon{
codes_txt = "patrol;next_patrol=QM";
- location = "CHW"
+ location = "CHW"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aQZ" = (
-/turf/open/floor/plasteel/blue/corner{
- dir = 8
- },
-/area/hallway/primary/central)
-"aRa" = (
-/obj/effect/landmark/event_spawn,
+"aOE" = (
/turf/open/floor/plasteel/blue/corner{
dir = 8
},
/area/hallway/primary/central)
-"aRb" = (
+"aOF" = (
/obj/machinery/light,
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
- pixel_y = -32
+ icon_state = "shock";
+ name = "HIGH VOLTAGE";
+ pixel_y = -32
},
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/blue/corner{
dir = 8
},
/area/hallway/primary/central)
-"aRc" = (
+"aOG" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
- pixel_y = -32
+ icon_state = "shock";
+ name = "HIGH VOLTAGE";
+ pixel_y = -32
},
/obj/machinery/door/firedoor,
/obj/machinery/light,
@@ -19629,141 +18558,188 @@
dir = 8
},
/area/hallway/primary/central)
-"aRd" = (
-/obj/structure/window/reinforced,
-/obj/structure/table/wood,
-/obj/item/device/instrument/violin,
-/turf/open/floor/wood,
-/area/crew_quarters/theatre)
-"aRe" = (
+"aOH" = (
/obj/structure/window/reinforced,
/turf/open/floor/wood,
/area/crew_quarters/theatre)
-"aRf" = (
+"aOI" = (
+/obj/structure/kitchenspike,
+/turf/open/floor/plasteel/showroomfloor,
+/area/crew_quarters/kitchen)
+"aOJ" = (
/obj/structure/window/reinforced,
/obj/structure/window/reinforced{
dir = 4
},
/turf/open/floor/wood,
/area/crew_quarters/theatre)
-"aRg" = (
+"aOK" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/turf/open/floor/plating,
+/area/crew_quarters/bar)
+"aOL" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/chair/stool,
/turf/open/floor/plasteel/bar,
/area/crew_quarters/bar)
-"aRh" = (
+"aOM" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/crew_quarters/kitchen)
+"aON" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/showroomfloor,
+/area/crew_quarters/kitchen)
+"aOO" = (
/obj/machinery/door/airlock{
name = "Bar Storage";
- req_access_txt = "25"
+ req_access_txt = "25"
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel{
icon_state = "wood"
},
/area/crew_quarters/bar)
-"aRi" = (
+"aOP" = (
/obj/effect/landmark{
name = "blobstart"
},
/obj/item/toy/beach_ball/holoball,
/turf/open/floor/plating,
/area/crew_quarters/bar)
-"aRj" = (
-/obj/structure/kitchenspike,
-/turf/open/floor/plasteel/showroomfloor,
-/area/crew_quarters/kitchen)
-"aRk" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
+"aOQ" = (
+/obj/machinery/requests_console{
+ department = "Hydroponics";
+ departmentType = 2;
+ pixel_x = 0;
+ pixel_y = 30
},
-/turf/open/floor/plasteel/showroomfloor,
-/area/crew_quarters/kitchen)
-"aRl" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
+/turf/open/floor/plasteel/black,
+/area/hydroponics)
+"aOR" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
},
-/turf/open/floor/plasteel/showroomfloor,
-/area/crew_quarters/kitchen)
-"aRm" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/black,
+/area/hydroponics)
+"aOS" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/carpet,
+/area/library)
+"aOT" = (
/obj/machinery/gibber,
/turf/open/floor/plasteel/showroomfloor,
/area/crew_quarters/kitchen)
-"aRn" = (
+"aOU" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"aOV" = (
/obj/structure/sink{
icon_state = "sink";
- dir = 8;
- pixel_x = -12;
- pixel_y = 2
- },
-/turf/open/floor/plasteel/black,
-/area/hydroponics)
-"aRo" = (
-/obj/machinery/requests_console{
- department = "Hydroponics";
- departmentType = 2;
- pixel_x = 0;
- pixel_y = 30
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/black,
-/area/hydroponics)
-"aRp" = (
-/obj/machinery/hydroponics/constructable,
/turf/open/floor/plasteel/black,
/area/hydroponics)
-"aRq" = (
+"aOW" = (
/obj/machinery/hydroponics/constructable,
/obj/machinery/camera{
c_tag = "Hydroponics North";
- dir = 2
+ dir = 2
},
/turf/open/floor/plasteel/black,
/area/hydroponics)
-"aRr" = (
-/obj/structure/disposalpipe/segment{
+"aOX" = (
+/obj/machinery/hydroponics/constructable,
+/turf/open/floor/plasteel/black,
+/area/hydroponics)
+"aOY" = (
+/obj/structure/chair/comfy/beige{
dir = 1;
- icon_state = "pipe-c"
+ icon_state = "comfychair"
+ },
+/obj/effect/landmark/start{
+ name = "Assistant"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/black,
-/area/hydroponics)
-"aRs" = (
+/turf/open/floor/plasteel/grimy,
+/area/hallway/secondary/entry)
+"aOZ" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 8
},
/turf/open/floor/plasteel/black,
/area/hydroponics)
-"aRt" = (
+"aPa" = (
+/obj/structure/chair/comfy/beige{
+ dir = 1;
+ icon_state = "comfychair"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/grimy,
+/area/hallway/secondary/entry)
+"aPb" = (
/obj/structure/bookcase/random/religion,
/turf/open/floor/wood,
/area/library)
-"aRu" = (
-/turf/open/floor/carpet,
-/area/library)
-"aRv" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/carpet,
-/area/library)
-"aRw" = (
+"aPc" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"aPd" = (
/obj/structure/bookcase/random/reference,
/turf/open/floor/wood,
/area/library)
-"aRx" = (
+"aPe" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"aPf" = (
/obj/machinery/computer/libraryconsole,
/obj/structure/table/wood,
/turf/open/floor/wood,
/area/library)
-"aRy" = (
+"aPg" = (
/obj/structure/bookcase{
name = "Forbidden Knowledge"
},
/turf/open/floor/engine/cult,
/area/library)
-"aRz" = (
+"aPh" = (
+/obj/structure/table/wood,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/weapon/pen/invisible,
+/turf/open/floor/engine/cult,
+/area/library)
+"aPi" = (
/obj/structure/table/wood,
/obj/item/device/taperecorder{
pixel_y = 0
@@ -19774,228 +18750,176 @@
},
/turf/open/floor/engine/cult,
/area/library)
-"aRA" = (
-/obj/structure/table/wood,
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
-/obj/item/weapon/pen/invisible,
-/turf/open/floor/engine/cult,
-/area/library)
-"aRB" = (
+"aPj" = (
/obj/machinery/light_switch{
pixel_y = 28
},
/turf/open/floor/plasteel/black,
/area/chapel/main)
-"aRC" = (
+"aPk" = (
/turf/open/floor/plasteel/chapel{
dir = 4
},
/area/chapel/main)
-"aRD" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+"aPl" = (
/turf/open/floor/plasteel/chapel{
dir = 1
},
/area/chapel/main)
-"aRE" = (
+"aPm" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/chapel{
dir = 4
},
/area/chapel/main)
-"aRF" = (
+"aPn" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/chapel{
+ dir = 1
+ },
+/area/chapel/main)
+"aPo" = (
/obj/structure/grille,
/obj/structure/window/reinforced/tinted/fulltile,
/turf/open/floor/plasteel/black,
/area/chapel/main)
-"aRG" = (
+"aPp" = (
/obj/machinery/camera{
c_tag = "Escape Arm Holding Area";
- dir = 4
+ dir = 4
},
/obj/item/device/radio/intercom{
dir = 8;
- name = "Station Intercom (General)";
- pixel_x = -28
+ name = "Station Intercom (General)";
+ pixel_x = -28
},
/turf/open/floor/plasteel/red/side{
dir = 8
},
/area/hallway/secondary/exit)
-"aRH" = (
+"aPq" = (
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"aPr" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
on = 1
},
/turf/open/floor/plasteel,
/area/hallway/secondary/exit)
-"aRI" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
+"aPs" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
},
/turf/open/floor/plasteel,
/area/hallway/secondary/exit)
-"aRJ" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_Toxins = 0
+"aPt" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"aRK" = (
-/obj/effect/turf_decal/stripes/line{
+/area/hallway/secondary/entry)
+"aPu" = (
+/obj/effect/turf_decal/stripes/corner{
dir = 4
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"aRL" = (
-/obj/machinery/flasher{
- id = "shuttle_flasher";
- pixel_x = -24;
- pixel_y = 6
+/area/hallway/secondary/entry)
+"aPv" = (
+/obj/item/device/radio/intercom{
+ broadcasting = 0;
+ name = "Station Intercom (General)";
+ pixel_y = 20
},
-/obj/machinery/button/flasher{
- id = "shuttle_flasher";
- pixel_x = -24;
- pixel_y = -6
- },
-/turf/open/floor/mineral/plastitanium/brig,
-/area/shuttle/escape)
-"aRM" = (
-/turf/open/floor/mineral/plastitanium/brig,
-/area/shuttle/escape)
-"aRN" = (
-/obj/machinery/door/airlock/glass{
- name = "Emergency Shuttle Brig";
- req_access_txt = "2"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"aRO" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/pod_1)
-"aRP" = (
-/obj/structure/shuttle/engine/propulsion/burst{
- tag = "icon-propulsion (WEST)";
- icon_state = "propulsion";
- dir = 8
- },
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/pod_1)
-"aRQ" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 9
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
},
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"aRR" = (
-/obj/item/device/radio/intercom{
- broadcasting = 0;
- name = "Station Intercom (General)";
- pixel_y = 20
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
+"aPw" = (
+/obj/machinery/disposal/bin,
+/obj/structure/sign/securearea{
+ desc = "Under the painting a plaque reads: 'While the meat grinder may not have spared you, fear not. Not one part of you has gone to waste... You were delicious.'";
+ icon_state = "monkey_painting";
+ name = "Mr. Deempisi portrait";
+ pixel_x = -28;
+ pixel_y = -4
},
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aRS" = (
-/obj/effect/turf_decal/stripes/corner{
+/obj/structure/disposalpipe/trunk{
dir = 4
},
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aRT" = (
-/obj/structure/chair/comfy/beige{
- dir = 1;
- icon_state = "comfychair"
- },
-/turf/open/floor/plasteel/grimy,
-/area/hallway/secondary/entry)
-"aRU" = (
-/obj/structure/chair/comfy/beige{
- dir = 1;
- icon_state = "comfychair"
- },
-/obj/effect/landmark/start{
- name = "Assistant"
+/obj/machinery/button/door{
+ id = "barShutters";
+ name = "bar shutters";
+ pixel_x = 4;
+ pixel_y = 28
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/grimy,
-/area/hallway/secondary/entry)
-"aRV" = (
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"aPx" = (
/obj/structure/chair/comfy/beige{
dir = 1;
- icon_state = "comfychair"
+ icon_state = "comfychair"
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/grimy,
/area/hallway/secondary/entry)
-"aRW" = (
-/obj/machinery/vending/snack,
+"aPy" = (
+/obj/machinery/vending/snack/random,
/turf/open/floor/plasteel/black,
/area/hallway/secondary/entry)
-"aRX" = (
+"aPz" = (
/turf/closed/wall,
/area/maintenance/port)
-"aRY" = (
+"aPA" = (
+/turf/closed/wall,
+/area/crew_quarters/locker)
+"aPB" = (
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
},
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
/turf/open/floor/plating,
/area/maintenance/port)
-"aRZ" = (
-/turf/closed/wall,
-/area/crew_quarters/locker)
-"aSa" = (
+"aPC" = (
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel,
/area/crew_quarters/locker)
-"aSb" = (
+"aPD" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel,
/area/crew_quarters/locker)
-"aSc" = (
+"aPE" = (
/obj/machinery/status_display{
density = 0;
- layer = 4
+ layer = 4
},
/turf/closed/wall,
/area/crew_quarters/locker)
-"aSd" = (
-/turf/closed/wall,
-/area/storage/art)
-"aSe" = (
+"aPF" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
/turf/open/floor/plating,
/area/storage/art)
-"aSf" = (
+"aPG" = (
+/turf/closed/wall,
+/area/storage/art)
+"aPH" = (
/obj/machinery/door/airlock/glass{
name = "Art Storage"
},
/turf/open/floor/plasteel,
/area/storage/art)
-"aSg" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall,
-/area/storage/art)
-"aSh" = (
+"aPI" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
@@ -20003,165 +18927,169 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/port)
-"aSi" = (
+"aPJ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall,
+/area/storage/art)
+"aPK" = (
/turf/closed/wall,
/area/storage/emergency2)
-"aSj" = (
-/obj/structure/table,
-/turf/open/floor/plasteel,
-/area/hallway/primary/port)
-"aSk" = (
+"aPL" = (
/obj/structure/table,
-/obj/machinery/airalarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
/turf/open/floor/plasteel,
/area/hallway/primary/port)
-"aSl" = (
+"aPM" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plasteel,
/area/hallway/primary/port)
-"aSm" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+"aPN" = (
+/obj/structure/table,
+/obj/machinery/airalarm{
+ dir = 1;
+ icon_state = "alarm0";
+ pixel_y = -22
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/hallway/primary/port)
-"aSn" = (
+"aPO" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/hallway/primary/port)
-"aSo" = (
+"aPP" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/obj/structure/table,
+/obj/machinery/chem_dispenser/drinks/beer,
+/obj/item/device/radio/intercom{
+ pixel_y = 25
+ },
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"aPQ" = (
/turf/closed/wall,
/area/storage/tools)
-"aSp" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aSq" = (
+"aPR" = (
/turf/closed/wall/r_wall,
/area/bridge)
-"aSr" = (
+"aPS" = (
/obj/structure/grille,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
/obj/structure/cable{
icon_state = "0-4";
- d2 = 4
+ d2 = 4
},
+/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/poddoor/preopen{
id = "bridge blast";
- layer = 2.9;
- name = "bridge blast door"
+ layer = 2.9;
+ name = "bridge blast door"
},
-/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/bridge)
-"aSs" = (
+"aPT" = (
/obj/structure/grille,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
/obj/structure/cable{
icon_state = "0-4";
- d2 = 4
+ d2 = 4
},
-/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/poddoor/preopen{
id = "bridge blast";
- layer = 2.9;
- name = "bridge blast door"
+ layer = 2.9;
+ name = "bridge blast door"
},
+/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/bridge)
-"aSt" = (
+"aPU" = (
/obj/structure/grille,
/obj/structure/cable{
icon_state = "0-4";
- d2 = 4
+ d2 = 4
},
/obj/structure/cable{
d2 = 8;
- icon_state = "0-8"
+ icon_state = "0-8"
},
/obj/machinery/status_display{
density = 0;
- layer = 4
+ layer = 4
},
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/poddoor/preopen{
id = "bridge blast";
- layer = 2.9;
- name = "bridge blast door"
+ layer = 2.9;
+ name = "bridge blast door"
},
/turf/open/floor/plating,
/area/bridge)
-"aSu" = (
+"aPV" = (
/obj/structure/grille,
/obj/structure/cable{
d2 = 8;
- icon_state = "0-8"
+ icon_state = "0-8"
},
/obj/structure/cable{
icon_state = "0-4";
- d2 = 4
+ d2 = 4
},
/obj/structure/cable{
icon_state = "0-2";
- d2 = 2
+ d2 = 2
},
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/poddoor/preopen{
id = "bridge blast";
- layer = 2.9;
- name = "bridge blast door"
+ layer = 2.9;
+ name = "bridge blast door"
},
/turf/open/floor/plating,
/area/bridge)
-"aSv" = (
+"aPW" = (
/obj/structure/grille,
/obj/structure/cable{
d2 = 8;
- icon_state = "0-8"
+ icon_state = "0-8"
},
/obj/structure/cable{
icon_state = "0-4";
- d2 = 4
+ d2 = 4
},
/obj/machinery/status_display{
density = 0;
- layer = 4
+ layer = 4
},
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/poddoor/preopen{
id = "bridge blast";
- layer = 2.9;
- name = "bridge blast door"
+ layer = 2.9;
+ name = "bridge blast door"
},
/turf/open/floor/plating,
/area/bridge)
-"aSw" = (
+"aPX" = (
/obj/structure/grille,
/obj/structure/cable{
d2 = 8;
- icon_state = "0-8"
+ icon_state = "0-8"
},
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/poddoor/preopen{
id = "bridge blast";
- layer = 2.9;
- name = "bridge blast door"
+ layer = 2.9;
+ name = "bridge blast door"
},
/turf/open/floor/plating,
/area/bridge)
-"aSx" = (
+"aPY" = (
+/obj/structure/chair/stool,
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"aPZ" = (
/obj/structure/table,
/obj/machinery/computer/security/telescreen/entertainment{
pixel_x = -31
@@ -20169,104 +19097,126 @@
/obj/item/clothing/head/hardhat/cakehat,
/turf/open/floor/plasteel/bar,
/area/crew_quarters/bar)
-"aSy" = (
-/obj/structure/chair/stool,
+"aQa" = (
+/obj/structure/table,
+/obj/item/weapon/kitchen/fork,
/turf/open/floor/plasteel/bar,
/area/crew_quarters/bar)
-"aSz" = (
+"aQb" = (
+/obj/structure/window/reinforced,
+/obj/structure/table/wood,
+/obj/item/device/instrument/violin,
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"aQc" = (
/turf/open/floor/plasteel/bar,
/area/crew_quarters/bar)
-"aSA" = (
+"aQd" = (
+/obj/structure/chair,
+/obj/effect/landmark/start{
+ name = "Assistant"
+ },
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"aQe" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/chair/stool,
/turf/open/floor/plasteel/bar,
/area/crew_quarters/bar)
-"aSB" = (
+"aQf" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/green/side{
+ dir = 9
+ },
+/area/hydroponics)
+"aQg" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
-/turf/open/floor/plating,
-/area/crew_quarters/bar)
-"aSC" = (
-/obj/machinery/disposal/bin,
-/obj/structure/sign/securearea{
- desc = "Under the painting a plaque reads: 'While the meat grinder may not have spared you, fear not. Not one part of you has gone to waste... You were delicious.'";
- icon_state = "monkey_painting";
- name = "Mr. Deempisi portrait";
- pixel_x = -28;
- pixel_y = -4
- },
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/obj/machinery/button/door{
+/obj/machinery/door/poddoor/preopen{
id = "barShutters";
- name = "bar shutters";
- pixel_x = 4;
- pixel_y = 28
+ name = "privacy shutters"
},
-/turf/open/floor/plasteel/bar,
+/turf/open/floor/plating,
/area/crew_quarters/bar)
-"aSD" = (
+"aQh" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/green/side{
+ dir = 5
+ },
+/area/hydroponics)
+"aQi" = (
/obj/structure/disposalpipe/segment{
dir = 8;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aSE" = (
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
- },
-/obj/structure/table,
-/obj/machinery/chem_dispenser/drinks/beer,
-/obj/item/device/radio/intercom{
- pixel_y = 25
+ icon_state = "pipe-c"
},
/turf/open/floor/plasteel/bar,
/area/crew_quarters/bar)
-"aSF" = (
+"aQj" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/crew_quarters/kitchen)
+"aQk" = (
/obj/machinery/door/airlock{
name = "Kitchen cold room";
- req_access_txt = "28"
+ req_access_txt = "28"
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/showroomfloor,
/area/crew_quarters/kitchen)
-"aSG" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/green/side{
- dir = 9
+"aQl" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
},
-/area/hydroponics)
-"aSH" = (
+/turf/open/floor/plasteel/neutral/side{
+ dir = 1
+ },
+/area/hallway/secondary/entry)
+"aQm" = (
/turf/open/floor/plasteel/green/side{
dir = 1
},
/area/hydroponics)
-"aSI" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/green/side{
+"aQn" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
-/area/hydroponics)
-"aSJ" = (
+/turf/open/floor/plasteel/neutral/side{
+ dir = 1
+ },
+/area/hallway/secondary/entry)
+"aQo" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 1
+ },
+/area/hallway/secondary/entry)
+"aQp" = (
/obj/machinery/light/small{
dir = 8
},
/turf/open/floor/wood,
/area/library)
-"aSK" = (
+"aQq" = (
/obj/machinery/light/small{
dir = 4
},
/turf/open/floor/wood,
/area/library)
-"aSL" = (
+"aQr" = (
/obj/machinery/light/small,
/turf/open/floor/engine/cult,
/area/library)
-"aSM" = (
+"aQs" = (
+/obj/structure/destructible/cult/tome,
+/obj/item/clothing/under/suit_jacket/red,
+/obj/item/weapon/book/codex_gigas,
+/turf/open/floor/engine/cult,
+/area/library)
+"aQt" = (
/obj/effect/landmark{
name = "blobstart"
},
@@ -20275,341 +19225,191 @@
},
/turf/open/floor/engine/cult,
/area/library)
-"aSN" = (
-/obj/structure/destructible/cult/tome,
-/obj/item/clothing/under/suit_jacket/red,
-/obj/item/weapon/book/codex_gigas,
-/turf/open/floor/engine/cult,
-/area/library)
-"aSO" = (
+"aQu" = (
/turf/open/floor/plasteel/chapel,
/area/chapel/main)
-"aSP" = (
-/obj/structure/table/wood,
-/turf/open/floor/plasteel/black,
-/area/chapel/main)
-"aSQ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+"aQv" = (
/turf/open/floor/plasteel/chapel{
dir = 8
},
/area/chapel/main)
-"aSR" = (
+"aQw" = (
+/obj/structure/table/wood,
+/turf/open/floor/plasteel/black,
+/area/chapel/main)
+"aQx" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/chapel,
/area/chapel/main)
-"aSS" = (
-/obj/machinery/door/morgue{
- name = "Confession Booth"
+"aQy" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/chapel{
+ dir = 8
},
-/turf/open/floor/plasteel/black,
/area/chapel/main)
-"aST" = (
+"aQz" = (
/obj/item/device/radio/intercom{
broadcasting = 1;
- frequency = 1480;
- name = "Confessional Intercom";
- pixel_x = 25
+ frequency = 1480;
+ name = "Confessional Intercom";
+ pixel_x = 25
},
/obj/structure/chair{
dir = 1
},
/turf/open/floor/plasteel/black,
/area/chapel/main)
-"aSU" = (
+"aQA" = (
+/obj/machinery/door/morgue{
+ name = "Confession Booth"
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main)
+"aQB" = (
/turf/open/floor/plasteel/red/side{
dir = 8
},
/area/hallway/secondary/exit)
-"aSV" = (
+"aQC" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/hallway/secondary/exit)
-"aSW" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"aSX" = (
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"aSY" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 4;
- name = "Security Escape Airlock";
- req_access_txt = "2"
+"aQD" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
-/turf/open/floor/plating,
-/area/hallway/secondary/exit)
-"aSZ" = (
-/turf/open/floor/plating,
-/area/hallway/secondary/exit)
-"aTa" = (
-/obj/machinery/light/small{
+/turf/open/floor/plasteel/neutral/side{
dir = 1
},
+/area/hallway/secondary/entry)
+"aQE" = (
/turf/open/floor/plating,
/area/hallway/secondary/exit)
-"aTb" = (
+"aQF" = (
/obj/machinery/door/airlock/external{
- cyclelinkeddir = 8;
- name = "Security Escape Airlock";
- req_access_txt = "2"
+ cyclelinkeddir = 4;
+ name = "Security Escape Airlock";
+ req_access_txt = "2"
},
/turf/open/floor/plating,
/area/hallway/secondary/exit)
-"aTc" = (
-/obj/machinery/door/airlock/titanium{
- name = "Emergency Shuttle Airlock";
- req_access_txt = "2"
- },
-/turf/open/floor/mineral/plastitanium/brig,
-/area/shuttle/escape)
-"aTd" = (
-/obj/structure/chair{
- dir = 1
- },
-/turf/open/floor/mineral/plastitanium/brig,
-/area/shuttle/escape)
-"aTe" = (
-/obj/structure/chair,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"aTf" = (
-/obj/structure/chair{
- dir = 4
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"aTg" = (
-/obj/structure/table,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"aTh" = (
-/obj/docking_port/stationary/random{
- dir = 8;
- id = "pod_asteroid1";
- name = "asteroid"
- },
-/turf/open/space,
-/area/space)
-"aTi" = (
-/obj/structure/grille,
-/obj/structure/window/shuttle,
-/turf/open/floor/plating,
-/area/shuttle/pod_1)
-"aTj" = (
-/obj/machinery/computer/shuttle/pod{
- pixel_x = 0;
- pixel_y = -32;
- possible_destinations = "pod_asteroid1";
- shuttleId = "pod1"
- },
-/obj/structure/chair{
- dir = 8
- },
-/obj/machinery/status_display{
- density = 0;
- layer = 3;
- pixel_x = 0;
- pixel_y = 32
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/pod_1)
-"aTk" = (
-/obj/item/weapon/storage/pod{
- pixel_x = 6;
- pixel_y = -28
- },
-/obj/item/device/radio/intercom{
- pixel_x = 0;
- pixel_y = 25
- },
-/obj/structure/chair{
- dir = 8
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/pod_1)
-"aTl" = (
-/obj/machinery/door/airlock/titanium{
- name = "Escape Pod Airlock"
- },
-/obj/docking_port/mobile/pod{
- dir = 8;
- id = "pod1";
- name = "escape pod 1";
- port_angle = 180
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/pod_1)
-"aTm" = (
+"aQG" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
- pixel_y = 32
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 0;
+ pixel_y = 32
},
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aTn" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"aTo" = (
+"aQH" = (
/obj/effect/turf_decal/stripes/corner{
dir = 8
},
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"aTp" = (
+"aQI" = (
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/neutral/corner{
dir = 4
},
/area/hallway/secondary/entry)
-"aTq" = (
-/turf/open/floor/plasteel/neutral/side{
- dir = 1
- },
-/area/hallway/secondary/entry)
-"aTr" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/neutral/side{
- dir = 1
- },
-/area/hallway/secondary/entry)
-"aTs" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/turf/open/floor/plasteel/neutral/side{
- dir = 1
- },
-/area/hallway/secondary/entry)
-"aTt" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel/neutral/side{
- dir = 1
- },
-/area/hallway/secondary/entry)
-"aTu" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/neutral/side{
- dir = 1
- },
-/area/hallway/secondary/entry)
-"aTv" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
+"aQJ" = (
/turf/open/floor/plasteel/neutral/side{
dir = 1
},
/area/hallway/secondary/entry)
-"aTw" = (
+"aQK" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
/turf/open/floor/plasteel/neutral/corner{
dir = 1
},
/area/hallway/secondary/entry)
-"aTx" = (
+"aQL" = (
/obj/structure/closet,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/port)
-"aTy" = (
+"aQM" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
/area/maintenance/port)
-"aTz" = (
-/obj/structure/closet/wardrobe/white,
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aTA" = (
+"aQN" = (
/turf/open/floor/plasteel,
/area/crew_quarters/locker)
-"aTB" = (
-/obj/structure/reagent_dispensers/watertank,
+"aQO" = (
+/obj/structure/closet/wardrobe/white,
/turf/open/floor/plasteel,
/area/crew_quarters/locker)
-"aTC" = (
+"aQP" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/machinery/light_switch{
pixel_y = 28
},
/turf/open/floor/plasteel,
/area/crew_quarters/locker)
-"aTD" = (
-/obj/machinery/vending/cola,
+"aQQ" = (
+/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plasteel,
/area/crew_quarters/locker)
-"aTE" = (
-/obj/structure/disposalpipe/segment,
+"aQR" = (
+/obj/machinery/vending/cola/random,
/turf/open/floor/plasteel,
/area/crew_quarters/locker)
-"aTF" = (
+"aQS" = (
/obj/machinery/vending/coffee,
/turf/open/floor/plasteel,
/area/crew_quarters/locker)
-"aTG" = (
+"aQT" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"aQU" = (
+/obj/machinery/vending/cigarette,
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"aQV" = (
/obj/machinery/vending/clothing,
/turf/open/floor/plasteel,
/area/crew_quarters/locker)
-"aTH" = (
-/obj/machinery/vending/autodrobe{
- req_access_txt = "0"
- },
+"aQW" = (
+/obj/structure/closet/secure_closet/personal,
/turf/open/floor/plasteel,
/area/crew_quarters/locker)
-"aTI" = (
+"aQX" = (
/obj/machinery/firealarm{
dir = 2;
- pixel_y = 24
+ pixel_y = 24
},
/turf/open/floor/plasteel,
/area/crew_quarters/locker)
-"aTJ" = (
-/obj/structure/closet/secure_closet/personal,
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aTK" = (
+"aQY" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
- on = 1
+ on = 1
},
/obj/structure/table,
/obj/item/stack/cable_coil/random,
/obj/item/stack/cable_coil/random,
/turf/open/floor/plasteel,
/area/storage/art)
-"aTL" = (
-/turf/open/floor/plasteel,
-/area/storage/art)
-"aTM" = (
+"aQZ" = (
/obj/machinery/light/small{
dir = 4
},
@@ -20618,123 +19418,138 @@
},
/turf/open/floor/plasteel,
/area/storage/art)
-"aTN" = (
+"aRa" = (
+/turf/open/floor/plasteel,
+/area/storage/art)
+"aRb" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/port)
-"aTO" = (
+"aRc" = (
/obj/machinery/door/airlock{
name = "Port Emergency Storage";
- req_access_txt = "0"
+ req_access_txt = "0"
},
/turf/open/floor/plating,
/area/storage/emergency2)
-"aTP" = (
+"aRd" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/neutral/side{
+ dir = 1
+ },
+/area/hallway/secondary/entry)
+"aRe" = (
/obj/structure/grille,
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/storage/tools)
-"aTQ" = (
+"aRf" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
name = "Auxiliary Tool Storage";
- req_access_txt = "12"
+ req_access_txt = "12"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/storage/tools)
-"aTR" = (
+"aRg" = (
+/obj/machinery/vending/boozeomat,
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"aRh" = (
/obj/machinery/light{
dir = 8
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aTS" = (
+"aRi" = (
+/obj/machinery/computer/atmos_alert,
+/turf/open/floor/plasteel/yellow/side{
+ dir = 10
+ },
+/area/bridge)
+"aRj" = (
/obj/structure/table/reinforced,
/obj/item/weapon/storage/secure/briefcase,
/obj/item/weapon/storage/box/PDAs{
pixel_x = 4;
- pixel_y = 4
+ pixel_y = 4
},
/obj/item/weapon/storage/box/ids,
/turf/open/floor/plasteel,
/area/bridge)
-"aTT" = (
-/obj/machinery/computer/atmos_alert,
-/turf/open/floor/plasteel/yellow/side{
- dir = 10
- },
-/area/bridge)
-"aTU" = (
-/obj/machinery/computer/station_alert,
-/turf/open/floor/plasteel/yellow/side,
-/area/bridge)
-"aTV" = (
+"aRk" = (
/obj/machinery/computer/monitor{
name = "bridge power monitoring console"
},
/obj/structure/cable{
icon_state = "0-2";
- d2 = 2
+ d2 = 2
},
/turf/open/floor/plasteel/yellow/side{
dir = 6
},
/area/bridge)
-"aTW" = (
+"aRl" = (
+/obj/machinery/computer/station_alert,
+/turf/open/floor/plasteel/yellow/side,
+/area/bridge)
+"aRm" = (
+/obj/machinery/computer/communications,
+/turf/open/floor/plasteel/blue/side{
+ dir = 0
+ },
+/area/bridge)
+"aRn" = (
/obj/machinery/computer/shuttle/labor,
/turf/open/floor/plasteel/blue/side{
dir = 10
},
/area/bridge)
-"aTX" = (
-/obj/machinery/computer/communications,
-/turf/open/floor/plasteel/blue/side{
- dir = 0
+"aRo" = (
+/obj/machinery/modular_computer/console/preset/command,
+/turf/open/floor/plasteel/green/side{
+ dir = 10
},
/area/bridge)
-"aTY" = (
+"aRp" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
/obj/machinery/computer/shuttle/mining,
/turf/open/floor/plasteel/blue/side{
dir = 6
},
/area/bridge)
-"aTZ" = (
-/obj/machinery/modular_computer/console/preset/command,
+"aRq" = (
+/obj/machinery/computer/med_data,
/turf/open/floor/plasteel/green/side{
- dir = 10
+ dir = 6
},
/area/bridge)
-"aUa" = (
+"aRr" = (
/obj/machinery/computer/crew,
/turf/open/floor/plasteel/green/side{
dir = 2
},
/area/bridge)
-"aUb" = (
-/obj/machinery/computer/med_data,
-/turf/open/floor/plasteel/green/side{
- dir = 6
- },
-/area/bridge)
-"aUc" = (
+"aRs" = (
/obj/structure/table/reinforced,
/obj/item/weapon/storage/toolbox/emergency,
/obj/item/weapon/wrench,
@@ -20743,92 +19558,103 @@
/obj/item/device/assembly/signaler,
/turf/open/floor/plasteel,
/area/bridge)
-"aUd" = (
+"aRt" = (
/obj/machinery/light{
dir = 4;
- icon_state = "tube1"
+ icon_state = "tube1"
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aUe" = (
-/obj/effect/landmark/event_spawn,
-/turf/closed/wall,
-/area/crew_quarters/bar)
-"aUf" = (
+"aRu" = (
/obj/machinery/light{
icon_state = "tube1";
- dir = 8
+ dir = 8
},
/obj/structure/chair/stool,
/turf/open/floor/plasteel/bar,
/area/crew_quarters/bar)
-"aUg" = (
-/obj/structure/chair,
-/obj/effect/landmark/start{
- name = "Assistant"
+"aRv" = (
+/obj/structure/chair{
+ dir = 1
},
/turf/open/floor/plasteel/bar,
/area/crew_quarters/bar)
-"aUh" = (
-/obj/structure/chair/stool/bar,
+"aRw" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/obj/effect/landmark/start{
+ name = "Assistant"
+ },
/turf/open/floor/plasteel/bar,
/area/crew_quarters/bar)
-"aUi" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/lighter,
+"aRx" = (
+/obj/structure/chair{
+ dir = 4
+ },
/turf/open/floor/plasteel/bar,
/area/crew_quarters/bar)
-"aUj" = (
+"aRy" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -5;
+ pixel_y = 30
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"aRz" = (
/obj/machinery/light{
dir = 4;
- icon_state = "tube1"
+ icon_state = "tube1"
},
/turf/open/floor/plasteel/bar,
/area/crew_quarters/bar)
-"aUk" = (
-/obj/machinery/vending/boozeomat,
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aUl" = (
+"aRA" = (
/obj/machinery/vending/dinnerware,
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/kitchen)
-"aUm" = (
-/obj/structure/sink/kitchen{
- pixel_y = 28
+"aRB" = (
+/obj/item/device/radio/intercom{
+ pixel_y = 25
},
-/obj/machinery/food_cart,
+/obj/machinery/camera{
+ c_tag = "Kitchen";
+ dir = 2
+ },
+/obj/structure/closet/secure_closet/freezer/fridge,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/kitchen)
-"aUn" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = -5;
- pixel_y = 30
+"aRC" = (
+/obj/structure/sink/kitchen{
+ pixel_y = 28
},
+/obj/machinery/food_cart,
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/kitchen)
-"aUo" = (
+"aRD" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/kitchen)
-"aUp" = (
-/obj/item/device/radio/intercom{
- pixel_y = 25
+"aRE" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/green/side{
+ dir = 8
},
-/obj/machinery/camera{
- c_tag = "Kitchen";
- dir = 2
+/area/hydroponics)
+"aRF" = (
+/obj/structure/table,
+/obj/machinery/microwave{
+ pixel_x = -3;
+ pixel_y = 6
},
-/obj/structure/closet/secure_closet/freezer/fridge,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/kitchen)
-"aUq" = (
+"aRG" = (
/obj/structure/table,
/obj/machinery/microwave{
pixel_x = -3;
- pixel_y = 6
+ pixel_y = 6
},
/obj/machinery/airalarm{
pixel_y = 24
@@ -20838,191 +19664,223 @@
},
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/kitchen)
-"aUr" = (
-/obj/structure/table,
-/obj/machinery/microwave{
- pixel_x = -3;
- pixel_y = 6
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aUs" = (
+"aRH" = (
/obj/structure/closet/secure_closet/freezer/kitchen,
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/kitchen)
-"aUt" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/green/side{
- dir = 8
- },
-/area/hydroponics)
-"aUu" = (
-/turf/open/floor/plasteel,
-/area/hydroponics)
-"aUv" = (
+"aRI" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/green/side{
dir = 4
},
/area/hydroponics)
-"aUw" = (
+"aRJ" = (
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"aRK" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/power/apc{
dir = 4;
- name = "Library APC";
- pixel_x = 24
+ name = "Library APC";
+ pixel_x = 24
},
/obj/structure/cable,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/library)
-"aUx" = (
+"aRL" = (
+/obj/machinery/door/airlock/glass_security{
+ name = "Holding Area";
+ req_access_txt = "2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"aRM" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"aRN" = (
/obj/structure/bookcase/random/fiction,
/turf/open/floor/wood,
/area/library)
-"aUy" = (
+"aRO" = (
/obj/structure/bookcase/random/nonfiction,
/turf/open/floor/wood,
/area/library)
-"aUz" = (
+"aRP" = (
/obj/machinery/camera{
c_tag = "Library South";
- dir = 8;
- network = list("SS13")
+ dir = 8;
+ network = list("SS13")
},
/turf/open/floor/wood,
/area/library)
-"aUA" = (
+"aRQ" = (
/obj/machinery/door/morgue{
name = "Private Study";
- req_access_txt = "37"
+ req_access_txt = "37"
},
/turf/open/floor/engine/cult,
/area/library)
-"aUB" = (
+"aRR" = (
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -24
+ pixel_x = -24
},
/turf/open/floor/plasteel/black,
/area/chapel/main)
-"aUC" = (
-/turf/open/floor/carpet,
-/area/chapel/main)
-"aUD" = (
-/obj/effect/landmark/event_spawn,
+"aRS" = (
/turf/open/floor/carpet,
/area/chapel/main)
-"aUE" = (
+"aRT" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/rack,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/item/weapon/electronics/apc,
+/obj/item/weapon/electronics/airlock,
+/turf/open/floor/plasteel,
+/area/storage/tools)
+"aRU" = (
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/hallway/secondary/exit)
-"aUF" = (
-/obj/machinery/door/airlock/glass_security{
- name = "Holding Area";
- req_access_txt = "2"
+"aRV" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "Auxiliary Tool Storage APC";
+ pixel_y = 24
+ },
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/structure/table,
+/obj/item/stack/sheet/glass{
+ amount = 50
+ },
+/obj/item/stack/rods{
+ amount = 50
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"aUG" = (
+/area/storage/tools)
+"aRW" = (
/obj/structure/grille,
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";
- name = "KEEP CLEAR: DOCKING AREA";
- pixel_y = 0
+ name = "KEEP CLEAR: DOCKING AREA";
+ pixel_y = 0
},
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/hallway/secondary/exit)
-"aUH" = (
-/turf/closed/wall/mineral/titanium/nodiagonal,
-/area/shuttle/escape)
-"aUI" = (
-/obj/machinery/camera{
- c_tag = "Arrivals Escape Pod 1";
- dir = 8
- },
-/obj/machinery/light/small,
-/turf/open/floor/plating,
-/area/hallway/secondary/entry)
-"aUJ" = (
+"aRX" = (
/obj/machinery/light,
/turf/open/floor/plasteel/arrival{
dir = 2
},
/area/hallway/secondary/entry)
-"aUK" = (
+"aRY" = (
/turf/open/floor/plasteel/arrival{
dir = 2
},
/area/hallway/secondary/entry)
-"aUL" = (
+"aRZ" = (
/turf/open/floor/plasteel/white/corner{
dir = 8
},
/area/hallway/secondary/entry)
-"aUM" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+"aSa" = (
+/obj/machinery/light_switch{
+ pixel_y = 28
+ },
+/obj/machinery/camera{
+ c_tag = "Auxiliary Tool Storage";
+ dir = 2
+ },
+/obj/structure/table,
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/obj/item/weapon/storage/box/lights/mixed,
/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aUN" = (
+/area/storage/tools)
+"aSb" = (
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
+ icon_state = "alarm0";
+ pixel_y = -22
},
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"aUO" = (
+"aSc" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/storage/tools)
+"aSd" = (
/obj/machinery/firealarm{
dir = 2;
- pixel_y = -24
+ pixel_y = -24
},
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"aUP" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"aUQ" = (
+"aSe" = (
/obj/machinery/light,
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"aUR" = (
+"aSf" = (
/obj/machinery/camera{
c_tag = "Arrivals Hallway";
- dir = 8;
- network = list("SS13")
+ dir = 8;
+ network = list("SS13")
},
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"aUS" = (
+"aSg" = (
/turf/open/floor/plating,
/area/maintenance/port)
-"aUT" = (
+"aSh" = (
/obj/structure/closet/wardrobe/mixed,
/obj/item/device/radio/intercom{
dir = 0;
- name = "Station Intercom (General)";
- pixel_x = -27
+ name = "Station Intercom (General)";
+ pixel_x = -27
},
/turf/open/floor/plasteel,
/area/crew_quarters/locker)
-"aUU" = (
+"aSi" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"aSj" = (
/obj/effect/landmark{
name = "lightsout"
},
/turf/open/floor/plasteel,
/area/crew_quarters/locker)
-"aUV" = (
+"aSk" = (
/obj/structure/table,
/obj/item/stack/cable_coil/random,
/obj/item/stack/cable_coil/random,
@@ -21031,217 +19889,149 @@
/obj/item/stack/cable_coil,
/turf/open/floor/plasteel,
/area/storage/art)
-"aUW" = (
+"aSl" = (
/obj/machinery/light_switch{
pixel_y = 28
},
/obj/item/weapon/storage/box/lights/mixed,
/turf/open/floor/plating,
/area/storage/emergency2)
-"aUX" = (
+"aSm" = (
/turf/open/floor/plating,
/area/storage/emergency2)
-"aUY" = (
+"aSn" = (
/obj/item/weapon/extinguisher,
/turf/open/floor/plating,
/area/storage/emergency2)
-"aUZ" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "Auxiliary Tool Storage APC";
- pixel_y = 24
- },
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/table,
-/obj/item/stack/sheet/glass{
- amount = 50
- },
-/obj/item/stack/rods{
- amount = 50
- },
-/turf/open/floor/plasteel,
-/area/storage/tools)
-"aVa" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/rack,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/item/weapon/electronics/apc,
-/obj/item/weapon/electronics/airlock,
-/turf/open/floor/plasteel,
-/area/storage/tools)
-"aVb" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/storage/tools)
-"aVc" = (
-/obj/machinery/light_switch{
- pixel_y = 28
- },
-/obj/machinery/camera{
- c_tag = "Auxiliary Tool Storage";
- dir = 2
+"aSo" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
},
-/obj/structure/table,
-/obj/item/stack/sheet/metal{
- amount = 50
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"aSp" = (
+/obj/structure/chair/stool,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
},
-/obj/item/stack/sheet/metal{
- amount = 50
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"aSq" = (
+/obj/structure/chair{
+ dir = 8
},
-/obj/item/weapon/storage/box/lights/mixed,
-/turf/open/floor/plasteel,
-/area/storage/tools)
-"aVd" = (
-/obj/structure/table,
-/obj/item/weapon/storage/toolbox/emergency,
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"aSr" = (
/turf/open/floor/plasteel,
/area/storage/tools)
-"aVe" = (
+"aSs" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/storage/tools)
-"aVf" = (
-/obj/structure/table/reinforced,
-/obj/item/device/assembly/flash/handheld,
-/obj/item/device/assembly/flash/handheld,
+"aSt" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
/turf/open/floor/plasteel,
-/area/bridge)
-"aVg" = (
+/area/storage/tools)
+"aSu" = (
/turf/open/floor/plasteel/yellow/corner{
dir = 1
},
/area/bridge)
-"aVh" = (
-/obj/structure/chair{
- dir = 1;
- name = "Engineering Station"
- },
+"aSv" = (
+/obj/structure/table/reinforced,
+/obj/item/device/assembly/flash/handheld,
+/obj/item/device/assembly/flash/handheld,
/turf/open/floor/plasteel,
/area/bridge)
-"aVi" = (
+"aSw" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
/turf/open/floor/plasteel/yellow/corner{
dir = 4
},
/area/bridge)
-"aVj" = (
-/obj/structure/table/reinforced,
-/obj/item/device/aicard,
-/obj/item/device/multitool,
-/turf/open/floor/plasteel/blue/side{
- dir = 8
+"aSx" = (
+/obj/structure/chair{
+ dir = 1;
+ name = "Engineering Station"
},
+/turf/open/floor/plasteel,
/area/bridge)
-"aVk" = (
+"aSy" = (
/obj/structure/chair{
dir = 1;
- name = "Command Station"
+ name = "Command Station"
},
/obj/machinery/button/door{
id = "bridge blast";
- name = "Bridge Blast Door Control";
- pixel_x = 28;
- pixel_y = -2;
- req_access_txt = "19"
+ name = "Bridge Blast Door Control";
+ pixel_x = 28;
+ pixel_y = -2;
+ req_access_txt = "19"
},
/obj/machinery/keycard_auth{
pixel_x = 29;
- pixel_y = 8
+ pixel_y = 8
},
/turf/open/floor/plasteel,
/area/bridge)
-"aVl" = (
+"aSz" = (
+/obj/structure/table/reinforced,
+/obj/item/device/aicard,
+/obj/item/device/multitool,
+/turf/open/floor/plasteel/blue/side{
+ dir = 8
+ },
+/area/bridge)
+"aSA" = (
+/turf/open/floor/plasteel/green/corner{
+ dir = 1
+ },
+/area/bridge)
+"aSB" = (
/obj/structure/table/reinforced,
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
/turf/open/floor/plasteel/blue/side{
dir = 4
},
/area/bridge)
-"aVm" = (
+"aSC" = (
/turf/open/floor/plasteel/green/corner{
- dir = 1
+ dir = 4
},
/area/bridge)
-"aVn" = (
+"aSD" = (
/obj/structure/chair{
dir = 1;
- name = "Crew Station"
+ name = "Crew Station"
},
/turf/open/floor/plasteel,
/area/bridge)
-"aVo" = (
-/turf/open/floor/plasteel/green/corner{
- dir = 4
- },
-/area/bridge)
-"aVp" = (
+"aSE" = (
/obj/structure/table/reinforced,
/obj/item/weapon/storage/fancy/donut_box,
/turf/open/floor/plasteel,
/area/bridge)
-"aVq" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/obj/machinery/door/poddoor/preopen{
- id = "barShutters";
- name = "privacy shutters"
- },
-/turf/open/floor/plating,
-/area/crew_quarters/bar)
-"aVr" = (
-/obj/structure/chair{
- dir = 4
- },
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aVs" = (
-/obj/structure/table,
-/obj/item/weapon/kitchen/fork,
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aVt" = (
-/obj/structure/chair{
- dir = 8
- },
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aVu" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aVv" = (
-/obj/structure/chair/stool,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
+"aSF" = (
+/mob/living/carbon/monkey/punpun,
/turf/open/floor/plasteel/bar,
/area/crew_quarters/bar)
-"aVw" = (
+"aSG" = (
/obj/structure/table/wood/poker,
/obj/item/toy/cards/deck,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -21249,39 +20039,21 @@
},
/turf/open/floor/plasteel/bar,
/area/crew_quarters/bar)
-"aVx" = (
+"aSH" = (
/obj/structure/chair/stool,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
+ dir = 4
},
/turf/open/floor/plasteel/bar,
/area/crew_quarters/bar)
-"aVy" = (
-/obj/structure/table/reinforced,
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aVz" = (
-/mob/living/carbon/monkey/punpun,
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aVA" = (
+"aSI" = (
/obj/machinery/door/airlock/glass{
name = "Kitchen";
- req_access_txt = "28"
+ req_access_txt = "28"
},
/turf/open/floor/plasteel/bar,
/area/crew_quarters/kitchen)
-"aVB" = (
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aVC" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aVD" = (
+"aSJ" = (
/obj/effect/landmark/start{
name = "Cook"
},
@@ -21290,17 +20062,14 @@
},
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/kitchen)
-"aVE" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
+"aSK" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
},
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/kitchen)
-"aVF" = (
+"aSL" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -21309,81 +20078,146 @@
},
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/kitchen)
-"aVG" = (
+"aSM" = (
/obj/structure/disposalpipe/segment{
- dir = 4
+ dir = 1;
+ icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
},
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/kitchen)
-"aVH" = (
+"aSN" = (
/obj/structure/disposalpipe/segment{
dir = 2;
- icon_state = "pipe-c"
+ icon_state = "pipe-c"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1;
+ scrub_Toxins = 0
},
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/kitchen)
-"aVI" = (
+"aSO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"aSP" = (
/obj/machinery/smartfridge,
/turf/closed/wall,
/area/crew_quarters/kitchen)
-"aVJ" = (
-/turf/open/floor/plasteel/black,
-/area/hydroponics)
-"aVK" = (
+"aSQ" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
/turf/open/floor/plasteel/green/side{
dir = 8
},
/area/hydroponics)
-"aVL" = (
+"aSR" = (
+/turf/open/floor/plasteel/black,
+/area/hydroponics)
+"aSS" = (
/obj/machinery/seed_extractor,
/turf/open/floor/plasteel,
/area/hydroponics)
-"aVM" = (
+"aST" = (
/obj/machinery/biogenerator,
/turf/open/floor/plasteel,
/area/hydroponics)
-"aVN" = (
+"aSU" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
+ external_pressure_bound = 101.325;
+ on = 1;
+ pressure_checks = 1
},
/turf/open/floor/plasteel/green/side{
dir = 4
},
/area/hydroponics)
-"aVO" = (
-/obj/machinery/door/window/northright{
- base_state = "right";
- dir = 8;
- icon_state = "right";
- name = "Library Desk Door";
- req_access_txt = "37"
+"aSV" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ on = 1
},
-/turf/open/floor/wood,
-/area/library)
-"aVP" = (
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"aSW" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel,
+/area/storage/tools)
+"aSX" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0;
+ tag = ""
+ },
+/turf/open/floor/plating,
+/area/maintenance/port)
+"aSY" = (
+/obj/structure/table/reinforced,
+/obj/item/clothing/head/that{
+ throwforce = 1
+ },
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"aSZ" = (
+/obj/effect/landmark/start{
+ name = "Bartender"
+ },
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"aTa" = (
+/obj/machinery/requests_console{
+ department = "Bar";
+ departmentType = 2;
+ pixel_x = 30;
+ pixel_y = 0
+ },
+/obj/machinery/camera{
+ c_tag = "Bar";
+ dir = 8;
+ network = list("SS13")
+ },
+/obj/structure/table,
+/obj/machinery/chem_dispenser/drinks,
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"aTb" = (
/obj/machinery/newscaster{
pixel_y = 32
},
/turf/open/floor/wood,
/area/library)
-"aVQ" = (
+"aTc" = (
+/obj/machinery/door/window/northright{
+ base_state = "right";
+ dir = 8;
+ icon_state = "right";
+ name = "Library Desk Door";
+ req_access_txt = "37"
+ },
+/turf/open/floor/wood,
+/area/library)
+"aTd" = (
/obj/structure/table/wood,
/obj/machinery/computer/libraryconsole/bookmanagement{
pixel_y = 0
@@ -21393,17 +20227,28 @@
},
/turf/open/floor/wood,
/area/library)
-"aVR" = (
+"aTe" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/main)
+"aTf" = (
+/obj/structure/chair/stool,
+/turf/open/floor/plasteel/chapel,
+/area/chapel/main)
+"aTg" = (
/obj/structure/chair/stool,
/turf/open/floor/plasteel/chapel{
dir = 8
},
/area/chapel/main)
-"aVS" = (
+"aTh" = (
/obj/structure/chair/stool,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/chapel,
/area/chapel/main)
-"aVT" = (
+"aTi" = (
/obj/structure/chair/stool,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/landmark/start{
@@ -21413,150 +20258,110 @@
dir = 8
},
/area/chapel/main)
-"aVU" = (
-/obj/structure/chair/stool,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/chapel,
-/area/chapel/main)
-"aVV" = (
+"aTj" = (
/obj/machinery/light{
dir = 4;
- icon_state = "tube1"
+ icon_state = "tube1"
},
/turf/open/floor/plasteel/black,
/area/chapel/main)
-"aVW" = (
-/obj/machinery/vending/cola,
+"aTk" = (
+/turf/open/floor/plasteel/red/corner{
+ dir = 1
+ },
+/area/hallway/secondary/exit)
+"aTl" = (
+/obj/machinery/vending/cola/random,
/obj/machinery/status_display{
layer = 4;
- pixel_x = 0;
- pixel_y = 32
+ pixel_x = 0;
+ pixel_y = 32
},
/turf/open/floor/plasteel/escape{
dir = 9
},
/area/hallway/secondary/exit)
-"aVX" = (
-/turf/open/floor/plasteel/red/corner{
- dir = 1
- },
+"aTm" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
/area/hallway/secondary/exit)
-"aVY" = (
+"aTn" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 4;
- name = "Escape Airlock"
+ name = "Escape Airlock"
},
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
- pixel_y = 32
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 0;
+ pixel_y = 32
},
/turf/open/floor/plating,
/area/hallway/secondary/exit)
-"aVZ" = (
+"aTo" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 8;
- name = "Escape Airlock"
+ name = "Escape Airlock"
},
/turf/open/floor/plating,
/area/hallway/secondary/exit)
-"aWa" = (
-/obj/machinery/door/airlock/titanium{
- name = "Emergency Shuttle Airlock"
- },
-/obj/docking_port/mobile/emergency{
- name = "Box emergency shuttle";
- timid = 0
- },
-/obj/docking_port/stationary{
- dir = 4;
- dwidth = 12;
- height = 18;
- id = "emergency_home";
- name = "BoxStation emergency evac bay";
- turf_type = /turf/open/space;
- width = 32
- },
-/turf/open/floor/plating,
-/area/shuttle/escape)
-"aWb" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = -5;
- pixel_y = 30
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"aWc" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"aWd" = (
+"aTp" = (
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"aTq" = (
+/turf/closed/wall,
+/area/security/vacantoffice{
+ name = "Vacant Office A"
+ })
+"aTr" = (
/obj/machinery/door/firedoor,
/obj/machinery/status_display{
density = 0;
- layer = 3;
- pixel_x = 32;
- pixel_y = 0
+ layer = 3;
+ pixel_x = 32;
+ pixel_y = 0
},
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"aWe" = (
-/turf/closed/wall,
-/area/security/vacantoffice)
-"aWf" = (
+"aTs" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall,
/area/security/vacantoffice)
-"aWg" = (
+"aTt" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall,
/area/security/vacantoffice)
-"aWh" = (
-/turf/closed/wall,
-/area/security/vacantoffice{
- name = "Vacant Office A"
- })
-"aWi" = (
+"aTu" = (
/obj/structure/disposalpipe/segment{
dir = 4;
- icon_state = "pipe-c"
+ icon_state = "pipe-c"
},
/turf/open/floor/plating,
/area/maintenance/port)
-"aWj" = (
+"aTv" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
/obj/structure/disposalpipe/segment{
dir = 8;
- icon_state = "pipe-c"
+ icon_state = "pipe-c"
},
/turf/open/floor/plating,
/area/maintenance/port)
-"aWk" = (
+"aTw" = (
/obj/structure/closet/wardrobe/green,
/obj/machinery/light{
icon_state = "tube1";
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aWl" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- on = 1
+ dir = 8
},
/turf/open/floor/plasteel,
/area/crew_quarters/locker)
-"aWm" = (
+"aTx" = (
/obj/structure/chair/stool{
pixel_y = 8
},
@@ -21565,97 +20370,93 @@
},
/turf/open/floor/plasteel,
/area/crew_quarters/locker)
-"aWn" = (
-/obj/structure/table,
-/obj/item/weapon/storage/toolbox/mechanical{
- pixel_x = -2;
- pixel_y = -1
- },
+"aTy" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/crew_quarters/locker)
-"aWo" = (
+"aTz" = (
/obj/structure/table,
/turf/open/floor/plasteel,
/area/crew_quarters/locker)
-"aWp" = (
+"aTA" = (
/obj/structure/table,
/obj/item/weapon/storage/toolbox/mechanical{
pixel_x = -2;
- pixel_y = -1
+ pixel_y = -1
},
-/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel,
/area/crew_quarters/locker)
-"aWq" = (
+"aTB" = (
/obj/structure/chair/stool{
pixel_y = 8
},
/turf/open/floor/plasteel,
/area/crew_quarters/locker)
-"aWr" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+"aTC" = (
+/obj/structure/table,
+/obj/item/weapon/storage/toolbox/mechanical{
+ pixel_x = -2;
+ pixel_y = -1
},
+/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel,
/area/crew_quarters/locker)
-"aWs" = (
+"aTD" = (
/obj/structure/closet/secure_closet/personal,
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
+ icon_state = "alarm0";
+ pixel_x = 24
},
/obj/machinery/camera{
c_tag = "Locker Room East";
- dir = 8;
- network = list("SS13")
+ dir = 8;
+ network = list("SS13")
},
/obj/machinery/light{
dir = 4
},
/turf/open/floor/plasteel,
/area/crew_quarters/locker)
-"aWt" = (
+"aTE" = (
/obj/structure/table,
/obj/item/weapon/hand_labeler,
/turf/open/floor/plasteel,
/area/storage/art)
-"aWu" = (
-/obj/structure/table,
-/obj/item/weapon/storage/crayons,
-/obj/item/weapon/storage/crayons,
-/turf/open/floor/plasteel,
-/area/storage/art)
-"aWv" = (
+"aTF" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
/obj/structure/table,
/obj/item/device/camera_film,
/obj/item/device/camera,
/turf/open/floor/plasteel,
/area/storage/art)
-"aWw" = (
+"aTG" = (
+/obj/structure/table,
+/obj/item/weapon/storage/crayons,
+/obj/item/weapon/storage/crayons,
+/turf/open/floor/plasteel,
+/area/storage/art)
+"aTH" = (
/obj/machinery/portable_atmospherics/canister/air,
/turf/open/floor/plating,
/area/storage/emergency2)
-"aWx" = (
-/obj/machinery/light/small,
-/obj/structure/reagent_dispensers/watertank,
+"aTI" = (
+/obj/machinery/space_heater,
/turf/open/floor/plating,
/area/storage/emergency2)
-"aWy" = (
-/obj/machinery/space_heater,
+"aTJ" = (
+/obj/machinery/light/small,
+/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating,
/area/storage/emergency2)
-"aWz" = (
+"aTK" = (
/obj/structure/rack{
dir = 8;
- layer = 2.9
+ layer = 2.9
},
/obj/item/weapon/tank/internals/emergency_oxygen,
/obj/item/weapon/tank/internals/emergency_oxygen,
@@ -21663,24 +20464,27 @@
/obj/item/clothing/mask/breath,
/turf/open/floor/plating,
/area/storage/emergency2)
-"aWA" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = -27;
- pixel_y = 0
- },
-/turf/open/floor/plasteel,
-/area/storage/tools)
-"aWB" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/storage/tools)
-"aWC" = (
+"aTL" = (
+/obj/structure/table,
+/obj/item/weapon/storage/toolbox/emergency,
/turf/open/floor/plasteel,
/area/storage/tools)
-"aWD" = (
+"aTM" = (
+/obj/structure/table,
+/obj/item/weapon/reagent_containers/food/snacks/mint,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"aTN" = (
+/obj/structure/table,
+/obj/item/weapon/kitchen/rollingpin,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"aTO" = (
+/obj/structure/table,
+/obj/item/weapon/book/manual/chef_recipes,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"aTP" = (
/obj/structure/rack,
/obj/item/clothing/gloves/color/fyellow,
/obj/item/clothing/suit/hazardvest,
@@ -21688,94 +20492,84 @@
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plasteel,
/area/storage/tools)
-"aWE" = (
+"aTQ" = (
/turf/closed/wall,
/area/bridge)
-"aWF" = (
+"aTR" = (
/obj/machinery/computer/prisoner,
/turf/open/floor/plasteel/red/side{
dir = 10
},
/area/bridge)
-"aWG" = (
-/obj/machinery/computer/security,
-/turf/open/floor/plasteel/red/side,
-/area/bridge)
-"aWH" = (
+"aTS" = (
/obj/machinery/computer/secure_data,
/turf/open/floor/plasteel/red/side{
dir = 6
},
/area/bridge)
-"aWI" = (
-/obj/structure/table/reinforced,
-/obj/machinery/recharger,
-/turf/open/floor/plasteel,
+"aTT" = (
+/obj/machinery/computer/security,
+/turf/open/floor/plasteel/red/side,
/area/bridge)
-"aWJ" = (
+"aTU" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
/turf/open/floor/plasteel,
/area/bridge)
-"aWK" = (
+"aTV" = (
+/obj/structure/table/reinforced,
+/obj/machinery/recharger,
/turf/open/floor/plasteel,
/area/bridge)
-"aWL" = (
+"aTW" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
/turf/open/floor/plasteel,
/area/bridge)
-"aWM" = (
+"aTX" = (
+/turf/open/floor/plasteel,
+/area/bridge)
+"aTY" = (
/turf/open/floor/plasteel/blue/corner{
dir = 1
},
/area/bridge)
-"aWN" = (
+"aTZ" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
/turf/open/floor/plasteel/blue/corner{
dir = 4
},
/area/bridge)
-"aWO" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/bridge)
-"aWP" = (
+"aUa" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
on = 1
},
/turf/open/floor/plasteel,
/area/bridge)
-"aWQ" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/storage/firstaid/regular,
-/turf/open/floor/plasteel,
-/area/bridge)
-"aWR" = (
+"aUb" = (
/obj/machinery/computer/teleporter,
/turf/open/floor/plasteel/brown{
dir = 10
},
/area/bridge)
-"aWS" = (
-/obj/machinery/computer/cargo/request,
-/turf/open/floor/plasteel/brown{
- dir = 2
- },
+"aUc" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/storage/firstaid/regular,
+/turf/open/floor/plasteel,
/area/bridge)
-"aWT" = (
+"aUd" = (
/obj/machinery/computer/security/mining{
network = list("MINE","AuxBase")
},
@@ -21783,174 +20577,217 @@
dir = 6
},
/area/bridge)
-"aWU" = (
+"aUe" = (
+/obj/machinery/computer/cargo/request,
+/turf/open/floor/plasteel/brown{
+ dir = 2
+ },
+/area/bridge)
+"aUf" = (
/obj/machinery/airalarm{
dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
+ icon_state = "alarm0";
+ pixel_x = -22
},
/obj/machinery/camera{
c_tag = "Bar West";
- dir = 4;
- network = list("SS13")
- },
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aWV" = (
-/obj/structure/chair{
- dir = 1
+ dir = 4;
+ network = list("SS13")
},
/turf/open/floor/plasteel/bar,
/area/crew_quarters/bar)
-"aWW" = (
-/obj/effect/landmark/event_spawn,
-/obj/effect/landmark/xmastree,
+"aUg" = (
+/obj/structure/chair,
/turf/open/floor/plasteel/bar,
/area/crew_quarters/bar)
-"aWX" = (
+"aUh" = (
/obj/structure/table/reinforced,
-/obj/item/clothing/head/that{
- throwforce = 1;
- throwing = 1
+/obj/machinery/door/window/eastleft{
+ name = "Hydroponics Desk";
+ req_access_txt = "35"
},
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aWY" = (
-/obj/effect/landmark/start{
- name = "Bartender"
+/obj/machinery/door/firedoor,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
},
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aWZ" = (
-/obj/machinery/requests_console{
- department = "Bar";
- departmentType = 2;
- pixel_x = 30;
- pixel_y = 0
+/area/crew_quarters/kitchen)
+"aUi" = (
+/turf/open/floor/plasteel/vault{
+ dir = 8
},
-/obj/machinery/camera{
- c_tag = "Bar";
- dir = 8;
- network = list("SS13")
+/area/hydroponics)
+"aUj" = (
+/obj/machinery/vending/hydronutrients,
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"aUk" = (
+/obj/machinery/vending/hydroseeds{
+ slogan_delay = 700
},
+/turf/open/floor/plasteel,
+/area/hydroponics)
+"aUl" = (
+/obj/structure/chair/office/dark{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/security/vacantoffice)
+"aUm" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/wood,
+/area/security/vacantoffice)
+"aUn" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"aUo" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"aUp" = (
/obj/structure/table,
-/obj/machinery/chem_dispenser/drinks,
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aXa" = (
-/obj/structure/table,
-/obj/item/weapon/reagent_containers/food/snacks/mint,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aXb" = (
-/obj/structure/table,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aXc" = (
-/obj/structure/table,
-/obj/item/weapon/kitchen/rollingpin,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aXd" = (
+/obj/item/clothing/head/soft/grey{
+ pixel_x = -2;
+ pixel_y = 3
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"aUq" = (
/obj/structure/table,
-/obj/item/weapon/book/manual/chef_recipes,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aXe" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"aXf" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/window/eastleft{
- name = "Hydroponics Desk";
- req_access_txt = "35"
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
-/obj/machinery/door/firedoor,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel{
- name = "floor"
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"aUr" = (
+/obj/structure/chair/stool{
+ pixel_y = 8
},
-/area/crew_quarters/kitchen)
-"aXg" = (
-/turf/open/floor/plasteel/vault{
- dir = 8
+/obj/effect/landmark/start{
+ name = "Assistant"
},
-/area/hydroponics)
-"aXh" = (
-/turf/open/floor/plasteel/green/side{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
-/area/hydroponics)
-"aXi" = (
-/obj/machinery/vending/hydronutrients,
/turf/open/floor/plasteel,
-/area/hydroponics)
-"aXj" = (
-/obj/machinery/vending/hydroseeds{
- slogan_delay = 700
+/area/crew_quarters/locker)
+"aUs" = (
+/obj/structure/table,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
/turf/open/floor/plasteel,
-/area/hydroponics)
-"aXk" = (
-/turf/open/floor/plasteel/green/side{
+/area/crew_quarters/locker)
+"aUt" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/area/hydroponics)
-"aXl" = (
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"aUu" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"aUv" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"aUw" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/machinery/light/small,
+/turf/open/floor/plasteel,
+/area/storage/tools)
+"aUx" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/maintenance/fsmaint2)
+"aUy" = (
+/obj/machinery/camera{
+ c_tag = "Vacant Office";
+ dir = 4;
+ network = list("SS13")
+ },
+/turf/open/floor/wood,
+/area/security/vacantoffice)
+"aUz" = (
/obj/machinery/hydroponics/constructable,
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
+ icon_state = "alarm0";
+ pixel_x = 24
},
/turf/open/floor/plasteel/black,
/area/hydroponics)
-"aXm" = (
+"aUA" = (
+/obj/structure/table/wood,
+/obj/item/device/flashlight/lamp,
+/turf/open/floor/wood,
+/area/security/vacantoffice)
+"aUB" = (
/obj/structure/bookcase/random/adult,
/turf/open/floor/wood,
/area/library)
-"aXn" = (
+"aUC" = (
/obj/structure/chair/comfy/black,
/obj/effect/landmark/start{
name = "Assistant"
},
/turf/open/floor/wood,
/area/library)
-"aXo" = (
+"aUD" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp/green{
pixel_x = 1;
- pixel_y = 5
+ pixel_y = 5
},
/turf/open/floor/wood,
/area/library)
-"aXp" = (
+"aUE" = (
+/obj/machinery/libraryscanner,
+/turf/open/floor/wood,
+/area/library)
+"aUF" = (
/obj/effect/landmark/start{
name = "Librarian"
},
/obj/structure/chair/office/dark,
/turf/open/floor/wood,
/area/library)
-"aXq" = (
-/obj/machinery/libraryscanner,
-/turf/open/floor/wood,
-/area/library)
-"aXr" = (
+"aUG" = (
/obj/machinery/airalarm{
dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
+ icon_state = "alarm0";
+ pixel_x = -22
},
/turf/open/floor/plasteel/black,
/area/chapel/main)
-"aXs" = (
-/obj/structure/chair/stool,
-/turf/open/floor/plasteel/chapel{
- dir = 1
- },
-/area/chapel/main)
-"aXt" = (
+"aUH" = (
/obj/structure/chair/stool,
/obj/effect/landmark/start{
name = "Assistant"
@@ -21959,149 +20796,93 @@
dir = 4
},
/area/chapel/main)
-"aXu" = (
+"aUI" = (
/obj/structure/chair/stool,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/chapel{
dir = 1
},
/area/chapel/main)
-"aXv" = (
+"aUJ" = (
/obj/structure/chair/stool,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/chapel{
dir = 4
},
/area/chapel/main)
-"aXw" = (
+"aUK" = (
+/obj/structure/chair/stool,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/chapel{
+ dir = 1
+ },
+/area/chapel/main)
+"aUL" = (
/obj/machinery/computer/arcade,
/turf/open/floor/plasteel/escape{
dir = 8
},
/area/hallway/secondary/exit)
-"aXx" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"aXy" = (
-/obj/structure/chair{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"aXz" = (
-/obj/structure/chair{
- dir = 8
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"aXA" = (
-/obj/structure/shuttle/engine/propulsion{
- icon_state = "propulsion";
- dir = 4
- },
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/transport)
-"aXB" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/transport)
-"aXC" = (
-/obj/structure/window/shuttle,
-/obj/structure/grille,
-/turf/open/floor/plating,
-/area/shuttle/transport)
-"aXD" = (
-/obj/structure/grille,
-/obj/structure/window/shuttle,
-/turf/open/floor/plating,
-/area/shuttle/transport)
-"aXE" = (
+"aUM" = (
/obj/machinery/camera{
c_tag = "Arrivals Bay 2";
- dir = 8;
- network = list("SS13")
+ dir = 8;
+ network = list("SS13")
},
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"aXF" = (
-/turf/open/floor/wood,
-/area/security/vacantoffice)
-"aXG" = (
+"aUN" = (
/obj/structure/chair/office/dark{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/wood,
/area/security/vacantoffice)
-"aXH" = (
-/obj/structure/table/wood,
+"aUO" = (
/turf/open/floor/wood,
/area/security/vacantoffice)
-"aXI" = (
+"aUP" = (
/obj/machinery/airalarm{
frequency = 1439;
- pixel_y = 23
+ pixel_y = 23
},
/turf/open/floor/wood,
/area/security/vacantoffice)
-"aXJ" = (
-/obj/structure/chair/office/dark{
- dir = 8
- },
+"aUQ" = (
+/obj/structure/table/wood,
/turf/open/floor/wood,
/area/security/vacantoffice)
-"aXK" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+"aUR" = (
+/obj/structure/table/wood,
+/obj/item/weapon/pen/red,
/turf/open/floor/wood,
/area/security/vacantoffice)
-"aXL" = (
+"aUS" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d2 = 4;
+ icon_state = "2-4"
},
/turf/open/floor/plating,
/area/maintenance/port)
-"aXM" = (
+"aUT" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 8;
+ icon_state = "1-8"
},
/turf/open/floor/plating,
/area/maintenance/port)
-"aXN" = (
+"aUU" = (
/obj/structure/closet/wardrobe/grey,
/obj/machinery/requests_console{
department = "Locker Room";
- pixel_x = -32;
- pixel_y = 0
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aXO" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aXP" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+ pixel_x = -32;
+ pixel_y = 0
},
/turf/open/floor/plasteel,
/area/crew_quarters/locker)
-"aXQ" = (
+"aUV" = (
/obj/structure/chair/stool{
pixel_y = 8
},
@@ -22110,127 +20891,80 @@
},
/turf/open/floor/plasteel,
/area/crew_quarters/locker)
-"aXR" = (
-/obj/structure/table,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aXS" = (
-/obj/structure/table,
-/obj/item/clothing/head/soft/grey{
- pixel_x = -2;
- pixel_y = 3
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+"aUW" = (
+/obj/structure/table/wood,
+/obj/item/device/flashlight/lamp/green,
+/turf/open/floor/wood,
+/area/security/vacantoffice)
+"aUX" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
},
/turf/open/floor/plasteel,
/area/crew_quarters/locker)
-"aXT" = (
-/obj/structure/table,
+"aUY" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aXU" = (
-/obj/structure/chair/stool{
- pixel_y = 8
- },
-/obj/effect/landmark/start{
- name = "Assistant"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aXV" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aXW" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/crew_quarters/locker)
-"aXX" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+"aUZ" = (
+/obj/structure/closet/secure_closet/personal,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
/turf/open/floor/plasteel,
/area/crew_quarters/locker)
-"aXY" = (
+"aVa" = (
/obj/machinery/airalarm{
dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
+ icon_state = "alarm0";
+ pixel_x = -22
},
/obj/structure/closet/toolcloset,
/turf/open/floor/plasteel,
/area/storage/tools)
-"aXZ" = (
-/obj/structure/closet/toolcloset,
-/turf/open/floor/plasteel,
-/area/storage/tools)
-"aYa" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/obj/machinery/light/small,
-/turf/open/floor/plasteel,
-/area/storage/tools)
-"aYb" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/plasteel,
-/area/storage/tools)
-"aYc" = (
+"aVb" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
- pixel_y = 32
+ icon_state = "shock";
+ name = "HIGH VOLTAGE";
+ pixel_y = 32
},
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/blue/side{
dir = 5
},
/area/hallway/primary/central)
-"aYd" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/bridge)
-"aYe" = (
+"aVc" = (
/obj/structure/sign/securearea{
pixel_x = 32;
- pixel_y = 0
+ pixel_y = 0
},
/obj/machinery/door/firedoor,
/obj/machinery/door/poddoor/preopen{
id = "bridge blast";
- name = "bridge blast door"
+ name = "bridge blast door"
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel{
name = "floor"
},
/area/bridge)
-"aYf" = (
+"aVd" = (
+/obj/structure/grille,
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/bridge)
+"aVe" = (
/obj/machinery/camera{
c_tag = "Bridge West";
- dir = 4
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
@@ -22239,17 +20973,7 @@
dir = 1
},
/area/bridge)
-"aYg" = (
-/obj/structure/chair{
- dir = 1;
- name = "Security Station"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/bridge)
-"aYh" = (
+"aVf" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -22257,108 +20981,121 @@
dir = 4
},
/area/bridge)
-"aYi" = (
+"aVg" = (
+/obj/structure/chair{
+ dir = 1;
+ name = "Security Station"
+ },
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/bridge)
-"aYj" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/bridge)
-"aYk" = (
+"aVh" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Fore Primary Hallway APC";
+ pixel_x = -24
+ },
/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/machinery/camera{
+ c_tag = "Fore Primary Hallway";
+ dir = 4;
+ network = list("SS13")
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/red/corner{
+ dir = 1
},
+/area/hallway/primary/fore)
+"aVi" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/bridge)
-"aYl" = (
+"aVj" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
/turf/open/floor/plasteel,
/area/bridge)
-"aYm" = (
+"aVk" = (
/obj/machinery/holopad,
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
},
/obj/structure/cable{
d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d2 = 4;
+ icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/bridge)
-"aYn" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
+"aVl" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
},
/turf/open/floor/plasteel,
/area/bridge)
-"aYo" = (
+"aVm" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/bridge)
-"aYp" = (
-/obj/item/device/radio/beacon,
+"aVn" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/bridge)
-"aYq" = (
+"aVo" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d2 = 4;
+ icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -22366,38 +21103,35 @@
},
/turf/open/floor/plasteel,
/area/bridge)
-"aYr" = (
+"aVp" = (
+/obj/item/device/radio/beacon,
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/turf/open/floor/plasteel/brown/corner{
- dir = 1
- },
+/turf/open/floor/plasteel,
/area/bridge)
-"aYs" = (
-/obj/structure/chair{
- dir = 1;
- name = "Logistics Station"
- },
+"aVq" = (
/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/turf/open/floor/plasteel,
+/turf/open/floor/plasteel/brown/corner{
+ dir = 1
+ },
/area/bridge)
-"aYt" = (
+"aVr" = (
/obj/machinery/camera{
c_tag = "Bridge East";
- dir = 8
+ dir = 8
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
@@ -22406,57 +21140,81 @@
dir = 4
},
/area/bridge)
-"aYu" = (
+"aVs" = (
+/obj/structure/chair{
+ dir = 1;
+ name = "Logistics Station"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/bridge)
+"aVt" = (
/obj/structure/sign/securearea{
pixel_x = -32;
- pixel_y = 0
+ pixel_y = 0
},
/obj/machinery/door/firedoor,
/obj/machinery/door/poddoor/preopen{
id = "bridge blast";
- name = "bridge blast door"
+ name = "bridge blast door"
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel{
name = "floor"
},
/area/bridge)
-"aYv" = (
+"aVu" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
- pixel_y = 32
+ icon_state = "shock";
+ name = "HIGH VOLTAGE";
+ pixel_y = 32
},
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/blue/side{
dir = 9
},
/area/hallway/primary/central)
-"aYw" = (
+"aVv" = (
/obj/machinery/camera{
c_tag = "Bridge East Entrance";
- dir = 2
+ dir = 2
},
/turf/open/floor/plasteel/blue/side{
dir = 1
},
/area/hallway/primary/central)
-"aYx" = (
+"aVw" = (
+/obj/structure/table/wood/poker,
+/obj/item/clothing/mask/cigarette/cigar,
+/obj/item/toy/cards/deck,
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"aVx" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel/bar,
/area/crew_quarters/bar)
-"aYy" = (
-/obj/structure/chair,
+"aVy" = (
+/obj/structure/table/reinforced,
/turf/open/floor/plasteel/bar,
/area/crew_quarters/bar)
-"aYz" = (
+"aVz" = (
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"aVA" = (
/obj/structure/table/reinforced,
/obj/machinery/door/firedoor,
/obj/item/weapon/reagent_containers/food/snacks/pie/cream,
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/kitchen)
-"aYA" = (
+"aVB" = (
/obj/structure/table,
/obj/item/weapon/reagent_containers/food/condiment/enzyme{
layer = 5
@@ -22464,119 +21222,170 @@
/obj/item/stack/packageWrap,
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/kitchen)
-"aYB" = (
+"aVC" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0;
+ tag = ""
+ },
+/turf/open/floor/plating,
+/area/maintenance/port)
+"aVD" = (
+/obj/structure/table,
+/obj/item/weapon/reagent_containers/food/condiment/saltshaker{
+ pixel_x = -3;
+ pixel_y = 0
+ },
+/obj/item/weapon/reagent_containers/food/condiment/peppermill{
+ pixel_x = 3
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"aVE" = (
/obj/structure/table,
/obj/item/weapon/storage/box/donkpockets{
pixel_x = 3;
- pixel_y = 3
+ pixel_y = 3
},
/obj/item/weapon/reagent_containers/glass/beaker{
pixel_x = 5
},
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/kitchen)
-"aYC" = (
+"aVF" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"aVG" = (
/obj/structure/table,
-/obj/item/weapon/reagent_containers/food/condiment/saltshaker{
- pixel_x = -3;
- pixel_y = 0
- },
-/obj/item/weapon/reagent_containers/food/condiment/peppermill{
- pixel_x = 3
- },
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/kitchen)
-"aYD" = (
+"aVH" = (
/obj/machinery/processor,
/obj/machinery/firealarm{
dir = 4;
- pixel_x = 24
+ pixel_x = 24
},
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/kitchen)
-"aYE" = (
+"aVI" = (
+/turf/open/floor/plasteel/green/side{
+ dir = 8
+ },
+/area/hydroponics)
+"aVJ" = (
/obj/machinery/light{
dir = 8
},
/obj/machinery/hydroponics/constructable,
/turf/open/floor/plasteel/black,
/area/hydroponics)
-"aYF" = (
+"aVK" = (
/obj/effect/landmark/start{
name = "Botanist"
},
/turf/open/floor/plasteel,
/area/hydroponics)
-"aYG" = (
+"aVL" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/sortjunction{
+ dir = 2;
+ icon_state = "pipe-j2s";
+ sortType = 16
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"aVM" = (
/obj/machinery/hydroponics/constructable,
/obj/machinery/light{
dir = 4
},
/turf/open/floor/plasteel/black,
/area/hydroponics)
-"aYH" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
+"aVN" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/fsmaint2)
-"aYI" = (
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"aVO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/airalarm{
+ pixel_y = 25
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"aVP" = (
/obj/structure/table/wood,
/obj/item/weapon/paper,
/turf/open/floor/wood,
/area/library)
-"aYJ" = (
+"aVQ" = (
/obj/structure/chair/comfy/black{
dir = 8
},
/turf/open/floor/wood,
/area/library)
-"aYK" = (
-/obj/structure/table/wood,
-/obj/item/device/camera_film,
-/obj/item/device/camera_film,
-/turf/open/floor/wood,
-/area/library)
-"aYL" = (
+"aVR" = (
/obj/structure/table/wood,
/obj/item/weapon/pen/red,
/obj/item/weapon/pen/blue{
pixel_x = 5;
- pixel_y = 5
+ pixel_y = 5
},
/turf/open/floor/wood,
/area/library)
-"aYM" = (
+"aVS" = (
+/obj/structure/table/wood,
+/obj/item/device/camera_film,
+/obj/item/device/camera_film,
+/turf/open/floor/wood,
+/area/library)
+"aVT" = (
/obj/structure/table/wood,
/obj/item/weapon/paper_bin{
pixel_x = 1;
- pixel_y = 9
+ pixel_y = 9
},
/turf/open/floor/wood,
/area/library)
-"aYN" = (
+"aVU" = (
/obj/structure/chair/stool,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/chapel{
dir = 8
},
/area/chapel/main)
-"aYO" = (
+"aVV" = (
/obj/machinery/camera{
c_tag = "Chapel South";
- dir = 8;
- network = list("SS13")
+ dir = 8;
+ network = list("SS13")
},
/turf/open/floor/plasteel/black,
/area/chapel/main)
-"aYP" = (
+"aVW" = (
/obj/item/device/radio/intercom{
pixel_x = -25
},
@@ -22584,353 +21393,429 @@
dir = 8
},
/area/hallway/secondary/exit)
-"aYQ" = (
-/turf/open/floor/mineral/titanium/blue,
-/turf/closed/wall/mineral/titanium/interior,
-/area/shuttle/transport)
-"aYR" = (
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/transport)
-"aYS" = (
-/obj/machinery/computer/shuttle/ferry/request,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/transport)
-"aYT" = (
-/obj/structure/chair,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/transport)
-"aYU" = (
+"aVX" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"aVY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/library)
+"aVZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Library"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/library)
+"aWa" = (
/obj/structure/grille,
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 0
},
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/hallway/secondary/entry)
-"aYV" = (
-/obj/machinery/camera{
- c_tag = "Vacant Office";
- dir = 4;
- network = list("SS13")
+"aWb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/library)
+"aWc" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"aWd" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/carpet,
+/area/library)
+"aWe" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Chapel"
+ },
+/turf/open/floor/carpet,
+/area/chapel/main)
+"aWf" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
/turf/open/floor/wood,
/area/security/vacantoffice)
-"aYW" = (
-/obj/structure/table/wood,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/wood,
-/area/security/vacantoffice)
-"aYX" = (
-/obj/structure/table/wood,
-/obj/item/device/flashlight/lamp,
-/turf/open/floor/wood,
-/area/security/vacantoffice)
-"aYY" = (
-/obj/structure/table/wood,
-/obj/item/device/flashlight/lamp/green,
-/turf/open/floor/wood,
-/area/security/vacantoffice)
-"aYZ" = (
-/obj/structure/table/wood,
-/obj/item/weapon/pen/red,
+"aWg" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/open/floor/carpet,
+/area/chapel/main)
+"aWh" = (
+/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"aWi" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
/turf/open/floor/wood,
/area/security/vacantoffice)
-"aZa" = (
+"aWj" = (
/obj/structure/grille,
/obj/structure/window{
icon_state = "window";
- dir = 8
+ dir = 8
},
/obj/structure/window,
/turf/open/floor/plating,
/area/maintenance/port)
-"aZb" = (
+"aWk" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/turf/open/floor/plating,
+/area/maintenance/port)
+"aWl" = (
/obj/structure/grille,
/obj/structure/window{
icon_state = "window";
- dir = 1
+ dir = 1
},
/turf/open/floor/plating,
/area/maintenance/port)
-"aZc" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+"aWm" = (
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
},
-/turf/open/floor/plating,
-/area/maintenance/port)
-"aZd" = (
+/obj/machinery/light_switch{
+ pixel_x = -28;
+ pixel_y = 0
+ },
+/turf/open/floor/wood,
+/area/security/vacantoffice)
+"aWn" = (
/obj/structure/closet/wardrobe/black,
/obj/item/clothing/shoes/jackboots,
/turf/open/floor/plasteel,
/area/crew_quarters/locker)
-"aZe" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aZf" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aZg" = (
+"aWo" = (
/obj/machinery/camera{
c_tag = "Locker Room West";
- dir = 1
+ dir = 1
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/crew_quarters/locker)
-"aZh" = (
+"aWp" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/crew_quarters/locker)
-"aZi" = (
-/obj/structure/disposalpipe/segment,
+"aWq" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/crew_quarters/locker)
-"aZj" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+"aWr" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aZk" = (
-/obj/structure/closet/secure_closet/personal,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
+/turf/open/floor/carpet,
+/area/security/vacantoffice)
+"aWs" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"aZl" = (
+/turf/open/floor/carpet,
+/area/security/vacantoffice)
+"aWt" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/security/vacantoffice)
+"aWu" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
/obj/structure/cable{
d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d2 = 4;
+ icon_state = "2-4"
},
/turf/open/floor/plating,
/area/maintenance/port)
-"aZm" = (
+"aWv" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/port)
+"aWw" = (
/obj/machinery/power/apc{
dir = 1;
- name = "Art Storage";
- pixel_x = 0;
- pixel_y = 24
+ name = "Art Storage";
+ pixel_x = 0;
+ pixel_y = 24
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/structure/cable{
d2 = 8;
- icon_state = "0-8"
+ icon_state = "0-8"
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0;
- tag = ""
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0;
+ tag = ""
},
/turf/open/floor/plating,
/area/storage/art)
-"aZn" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0;
- tag = ""
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"aZo" = (
-/obj/machinery/meter,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0;
- tag = ""
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"aZp" = (
+"aWx" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0;
- tag = ""
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0;
+ tag = ""
},
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"aZq" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "1-8"
},
/turf/open/floor/plating,
/area/maintenance/port)
-"aZr" = (
+"aWy" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/crew_quarters/locker/locker_toilet)
+"aWz" = (
/obj/machinery/power/apc{
dir = 1;
- name = "Port Emergency Storage APC";
- pixel_y = 24
+ name = "Port Emergency Storage APC";
+ pixel_y = 24
},
/obj/structure/cable{
d2 = 8;
- icon_state = "0-8"
+ icon_state = "0-8"
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0;
- tag = ""
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0;
+ tag = ""
},
/turf/open/floor/plating,
/area/storage/emergency2)
-"aZs" = (
+"aWA" = (
/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/open/floor/plating,
/area/maintenance/port)
-"aZt" = (
+"aWB" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plating,
/area/maintenance/port)
-"aZu" = (
+"aWC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
/turf/closed/wall,
+/area/maintenance/port)
+"aWD" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plasteel,
+/area/storage/tools)
+"aWE" = (
+/obj/machinery/computer/med_data,
+/obj/machinery/newscaster{
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/grimy,
/area/security/detectives_office)
-"aZv" = (
+"aWF" = (
+/obj/structure/closet/toolcloset,
+/turf/open/floor/plasteel,
+/area/storage/tools)
+"aWG" = (
+/obj/machinery/computer/secure_data,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/grimy,
+/area/security/detectives_office)
+"aWH" = (
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/blue/side{
dir = 4
},
/area/hallway/primary/central)
-"aZw" = (
+"aWI" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/poddoor/preopen{
+ id = "bridge blast";
+ name = "bridge blast door"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/bridge)
+"aWJ" = (
/obj/structure/cable,
/obj/structure/cable{
icon_state = "0-2";
- d2 = 2
+ d2 = 2
},
/obj/structure/cable{
icon_state = "0-4";
- d2 = 4
+ d2 = 4
},
/obj/machinery/door/airlock/glass_command{
cyclelinkeddir = 4;
- name = "Bridge";
- req_access_txt = "19"
+ name = "Bridge";
+ req_access_txt = "19"
},
/turf/open/floor/plasteel,
/area/bridge)
-"aZx" = (
+"aWK" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/poddoor/preopen{
- id = "bridge blast";
- name = "bridge blast door"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel{
- name = "floor"
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
/area/bridge)
-"aZy" = (
+"aWL" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/door/airlock/glass_command{
cyclelinkeddir = 8;
- name = "Bridge";
- req_access_txt = "19"
+ name = "Bridge";
+ req_access_txt = "19"
},
/turf/open/floor/plasteel,
/area/bridge)
-"aZz" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+"aWM" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/bridge)
-"aZA" = (
+"aWN" = (
/obj/structure/cable{
d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d2 = 8;
+ icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
/turf/open/floor/plasteel,
/area/bridge)
-"aZB" = (
+"aWO" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 5;
+ pixel_y = -32
+ },
+/obj/machinery/light,
+/obj/machinery/light_switch{
+ pixel_x = -6;
+ pixel_y = -22
+ },
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/turf/open/floor/plasteel,
+/turf/open/floor/plasteel/blue/side{
+ dir = 0
+ },
/area/bridge)
-"aZC" = (
+"aWP" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/blue/corner,
/area/bridge)
-"aZD" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 5;
- pixel_y = -32
- },
-/obj/machinery/light,
-/obj/machinery/light_switch{
- pixel_x = -6;
- pixel_y = -22
+"aWQ" = (
+/obj/machinery/airalarm{
+ dir = 1;
+ icon_state = "alarm0";
+ pixel_y = -22
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -22939,7 +21824,7 @@
dir = 0
},
/area/bridge)
-"aZE" = (
+"aWR" = (
/obj/structure/fireaxecabinet{
pixel_y = -32
},
@@ -22950,11 +21835,11 @@
dir = 0
},
/area/bridge)
-"aZF" = (
-/obj/machinery/airalarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
+"aWS" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -22963,13 +21848,13 @@
dir = 0
},
/area/bridge)
-"aZG" = (
+"aWT" = (
/obj/machinery/requests_console{
announcementConsole = 1;
- department = "Bridge";
- departmentType = 5;
- name = "Bridge RC";
- pixel_y = -30
+ department = "Bridge";
+ departmentType = 5;
+ name = "Bridge RC";
+ pixel_y = -30
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -22979,12 +21864,7 @@
dir = 0
},
/area/bridge)
-"aZH" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
+"aWU" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -22992,15 +21872,15 @@
dir = 0
},
/area/bridge)
-"aZI" = (
+"aWV" = (
/obj/machinery/turretid{
control_area = "AI Upload Chamber";
- name = "AI Upload turret control";
- pixel_y = -25
+ name = "AI Upload turret control";
+ pixel_y = -25
},
/obj/machinery/camera{
c_tag = "Bridge Center";
- dir = 1
+ dir = 1
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
@@ -23009,15 +21889,21 @@
dir = 0
},
/area/bridge)
-"aZJ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+"aWW" = (
+/obj/machinery/power/apc{
+ cell_type = 5000;
+ dir = 2;
+ name = "Bridge APC";
+ pixel_y = -24
},
+/obj/structure/cable,
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel/blue/side{
dir = 0
},
/area/bridge)
-"aZK" = (
+"aWX" = (
/obj/machinery/newscaster{
pixel_y = -32
},
@@ -23028,21 +21914,7 @@
dir = 0
},
/area/bridge)
-"aZL" = (
-/obj/machinery/power/apc{
- cell_type = 5000;
- dir = 2;
- name = "Bridge APC";
- pixel_y = -24
- },
-/obj/structure/cable,
-/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plasteel/blue/side{
- dir = 0
- },
-/area/bridge)
-"aZM" = (
+"aWY" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -23050,173 +21922,152 @@
dir = 8
},
/area/bridge)
-"aZN" = (
+"aWZ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/bridge)
+"aXa" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
/obj/structure/cable{
d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d2 = 4;
+ icon_state = "2-4"
},
/obj/structure/disposalpipe/segment{
dir = 4;
- icon_state = "pipe-c"
+ icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
/turf/open/floor/plasteel,
/area/bridge)
-"aZO" = (
+"aXb" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
+/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
+/obj/machinery/door/poddoor/preopen{
+ id = "bridge blast";
+ name = "bridge blast door"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
/area/bridge)
-"aZP" = (
+"aXc" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/door/airlock/glass_command{
cyclelinkeddir = 4;
- name = "Bridge";
- req_access_txt = "19"
+ name = "Bridge";
+ req_access_txt = "19"
},
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel,
/area/bridge)
-"aZQ" = (
+"aXd" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/door/poddoor/preopen{
- id = "bridge blast";
- name = "bridge blast door"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel{
- name = "floor"
+/turf/open/floor/plasteel/blue/side{
+ dir = 8
},
-/area/bridge)
-"aZR" = (
+/area/hallway/primary/central)
+"aXe" = (
/obj/structure/cable{
icon_state = "0-2";
- d2 = 2
+ d2 = 2
},
/obj/structure/cable,
/obj/structure/cable{
icon_state = "0-4";
- d2 = 4
+ d2 = 4
},
/obj/structure/cable{
d2 = 8;
- icon_state = "0-8"
+ icon_state = "0-8"
},
/obj/machinery/door/airlock/glass_command{
cyclelinkeddir = 8;
- name = "Bridge";
- req_access_txt = "19"
+ name = "Bridge";
+ req_access_txt = "19"
},
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel,
/area/bridge)
-"aZS" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor,
+"aXf" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/plasteel/blue/side{
- dir = 8
- },
+/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aZT" = (
+"aXg" = (
/obj/structure/cable{
d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
+ d2 = 8;
+ icon_state = "2-8"
},
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"aZU" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aZV" = (
+"aXh" = (
/obj/structure/disposalpipe/segment{
dir = 2;
- icon_state = "pipe-c"
+ icon_state = "pipe-c"
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"aZW" = (
+"aXi" = (
/obj/machinery/light{
icon_state = "tube1";
- dir = 8
+ dir = 8
},
/obj/machinery/computer/security/telescreen/entertainment{
pixel_x = -31
},
/turf/open/floor/plasteel/bar,
/area/crew_quarters/bar)
-"aZX" = (
-/obj/structure/table/wood/poker,
-/obj/item/clothing/mask/cigarette/cigar,
-/obj/item/toy/cards/deck,
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aZY" = (
-/obj/structure/table,
-/obj/item/weapon/reagent_containers/food/condiment/peppermill{
- pixel_x = 5;
- pixel_y = -2
- },
-/obj/item/weapon/reagent_containers/food/condiment/saltshaker{
- pixel_x = -2;
- pixel_y = 2
- },
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"aZZ" = (
-/obj/machinery/door/window/southright{
- name = "Bar Door";
- req_access_txt = "0";
- req_one_access_txt = "25;28"
- },
+"aXj" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/lighter,
/turf/open/floor/plasteel/bar,
/area/crew_quarters/bar)
-"baa" = (
+"aXk" = (
/obj/structure/table/reinforced,
/obj/machinery/computer/security/telescreen/entertainment{
pixel_x = 32
@@ -23225,147 +22076,130 @@
/obj/item/weapon/reagent_containers/glass/rag,
/turf/open/floor/plasteel/bar,
/area/crew_quarters/bar)
-"bab" = (
+"aXl" = (
+/obj/machinery/door/window/southright{
+ name = "Bar Door";
+ req_access_txt = "0";
+ req_one_access_txt = "25;28"
+ },
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"aXm" = (
/obj/effect/landmark/start{
name = "Cook"
},
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/kitchen)
-"bac" = (
-/obj/machinery/deepfryer,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"bad" = (
+"aXn" = (
/obj/structure/table,
/obj/machinery/reagentgrinder,
/obj/machinery/requests_console{
department = "Kitchen";
- departmentType = 2;
- pixel_x = 30;
- pixel_y = 0
+ departmentType = 2;
+ pixel_x = 30;
+ pixel_y = 0
},
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/kitchen)
-"bae" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/sortjunction{
- dir = 2;
- icon_state = "pipe-j2s";
- sortType = 16
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"baf" = (
-/obj/structure/disposalpipe/segment{
+"aXo" = (
+/turf/open/floor/plasteel/green/side{
dir = 4
},
-/obj/machinery/airalarm{
- pixel_y = 25
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+/area/hydroponics)
+"aXp" = (
+/obj/machinery/door/airlock{
+ name = "Unisex Restrooms";
+ req_access_txt = "0"
},
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bag" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/locker/locker_toilet)
+"aXq" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
/turf/open/floor/plasteel,
/area/hallway/primary/starboard)
-"bah" = (
+"aXr" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Library"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"aXs" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
dir = 4
},
-/turf/open/floor/carpet,
-/area/library)
-"bai" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"aXt" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 2
},
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"aXu" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/carpet,
/area/library)
-"baj" = (
+"aXv" = (
/obj/structure/disposalpipe/segment{
dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/carpet,
-/area/library)
-"bak" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+ icon_state = "pipe-c"
},
-/turf/open/floor/carpet,
-/area/library)
-"bal" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_Toxins = 0
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"aXw" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
},
-/turf/open/floor/carpet,
-/area/library)
-"bam" = (
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"aXx" = (
+/obj/structure/closet/secure_closet/personal,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"aXy" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
name = "Chapel"
},
-/turf/open/floor/carpet,
-/area/chapel/main)
-"ban" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
+ dir = 4
},
/turf/open/floor/carpet,
/area/chapel/main)
-"bao" = (
+"aXz" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/carpet,
/area/chapel/main)
-"bap" = (
+"aXA" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"aXB" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
/turf/open/floor/carpet,
/area/chapel/main)
-"baq" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Chapel"
- },
+"aXC" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/turf/open/floor/carpet,
-/area/chapel/main)
-"bar" = (
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"aXD" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -23373,266 +22207,255 @@
dir = 8
},
/area/hallway/secondary/exit)
-"bas" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"bat" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+"aXE" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/turf/closed/wall,
+/area/maintenance/port)
+"aXF" = (
/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"bau" = (
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"bav" = (
+/turf/open/floor/plasteel/vault{
+ dir = 5
+ },
+/area/crew_quarters/fitness)
+"aXG" = (
/obj/machinery/light{
dir = 4;
- icon_state = "tube1"
+ icon_state = "tube1"
},
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel,
/area/hallway/secondary/exit)
-"baw" = (
-/obj/machinery/door/airlock/titanium,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/transport)
-"bax" = (
-/obj/machinery/door/airlock/titanium,
-/obj/docking_port/mobile{
- dir = 8;
- dwidth = 2;
- height = 12;
- id = "ferry";
- name = "ferry shuttle";
- port_angle = 0;
- preferred_direction = 4;
- roundstart_move = "ferry_away";
- width = 5
- },
-/obj/docking_port/stationary{
- dir = 8;
- dwidth = 2;
- height = 12;
- id = "ferry_home";
- name = "port bay 2";
- turf_type = /turf/open/space;
- width = 5
+"aXH" = (
+/obj/structure/table,
+/obj/machinery/button/door{
+ id = "syndieshutters";
+ name = "remote shutter control";
+ req_access_txt = "150"
},
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/transport)
-"bay" = (
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"aXI" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 4;
- id_tag = null;
- name = "Port Docking Bay 2";
- req_access_txt = "0"
- },
-/turf/open/floor/plating,
-/area/hallway/secondary/entry)
-"baz" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 8;
- id_tag = null;
- name = "Port Docking Bay 2";
- req_access_txt = "0"
+ id_tag = null;
+ name = "Port Docking Bay 2";
+ req_access_txt = "0"
},
/turf/open/floor/plating,
/area/hallway/secondary/entry)
-"baA" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/obj/machinery/light_switch{
- pixel_x = -28;
- pixel_y = 0
+"aXJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/open/floor/wood,
-/area/security/vacantoffice)
-"baB" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
-/turf/open/floor/wood,
-/area/security/vacantoffice)
-"baC" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall,
+/area/maintenance/port)
+"aXK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
+/turf/closed/wall,
+/area/security/detectives_office)
+"aXL" = (
/turf/open/floor/carpet,
/area/security/vacantoffice)
-"baD" = (
-/turf/open/floor/carpet,
-/area/security/vacantoffice)
-"baE" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+"aXM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/open/floor/carpet,
-/area/security/vacantoffice)
-"baF" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
+ dir = 1
},
-/turf/open/floor/wood,
-/area/security/vacantoffice)
-"baG" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Cargo Bay Warehouse Maintenance";
+ req_access_txt = "31"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port)
+"aXN" = (
/obj/machinery/light{
dir = 4
},
/obj/structure/filingcabinet/chestdrawer,
/turf/open/floor/wood,
/area/security/vacantoffice)
-"baH" = (
+"aXO" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"aXP" = (
/obj/machinery/portable_atmospherics/canister/air,
/turf/open/floor/plating,
/area/maintenance/port)
-"baI" = (
-/turf/closed/wall,
-/area/crew_quarters/locker/locker_toilet)
-"baJ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+"aXQ" = (
/turf/closed/wall,
/area/crew_quarters/locker/locker_toilet)
-"baK" = (
-/obj/machinery/door/airlock{
- name = "Unisex Restrooms";
- req_access_txt = "0"
+"aXR" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/light{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet)
-"baL" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"baM" = (
-/obj/structure/disposalpipe/segment{
+/area/hallway/primary/starboard)
+"aXS" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/closed/wall,
+/area/hydroponics)
+"aXT" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Library"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"baN" = (
-/obj/structure/disposalpipe/segment{
+/turf/open/floor/carpet,
+/area/library)
+"aXU" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
- icon_state = "pipe-c"
+ on = 1
},
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"baO" = (
-/obj/effect/turf_decal/stripes/corner{
- dir = 2
+/turf/open/floor/carpet,
+/area/library)
+"aXV" = (
+/obj/machinery/holopad,
+/turf/open/floor/carpet,
+/area/library)
+"aXW" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
},
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"baP" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 2
+/turf/open/floor/carpet,
+/area/chapel/main)
+"aXX" = (
+/obj/machinery/door/airlock/engineering{
+ name = "Vacant Office A";
+ req_access_txt = "32"
},
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"baQ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/effect/turf_decal/stripes/corner{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"baR" = (
-/obj/structure/closet/secure_closet/personal,
+/turf/open/floor/wood,
+/area/security/vacantoffice)
+"aXY" = (
+/obj/structure/chair/office/dark,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"baS" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/security/vacantoffice)
+"aXZ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/security/vacantoffice)
+"aYa" = (
/obj/machinery/power/apc{
dir = 8;
- name = "Locker Room Maintenance APC";
- pixel_x = -27;
- pixel_y = 2
+ name = "Locker Room Maintenance APC";
+ pixel_x = -27;
+ pixel_y = 2
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment{
dir = 4;
- icon_state = "pipe-c"
+ icon_state = "pipe-c"
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
/obj/structure/cable{
icon_state = "0-2";
- pixel_y = 1;
- d2 = 2
+ pixel_y = 1;
+ d2 = 2
},
/turf/open/floor/plating,
/area/maintenance/port)
-"baT" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
+"aYb" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
},
-/turf/closed/wall,
-/area/maintenance/port)
-"baU" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/turf/closed/wall,
+/turf/open/floor/plating,
/area/maintenance/port)
-"baV" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
+"aYc" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall,
/area/maintenance/port)
-"baW" = (
-/obj/structure/disposalpipe/segment{
+"aYd" = (
+/obj/structure/chair/office/dark,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/closed/wall,
-/area/maintenance/port)
-"baX" = (
+/turf/open/floor/wood,
+/area/security/vacantoffice)
+"aYe" = (
+/obj/machinery/light_switch{
+ pixel_y = 28
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/locker/locker_toilet)
+"aYf" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
+/turf/open/floor/plating,
+/area/maintenance/port)
+"aYg" = (
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
},
-/obj/machinery/door/airlock/maintenance{
- name = "Cargo Bay Warehouse Maintenance";
- req_access_txt = "31"
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/port)
-"baY" = (
+/area/construction)
+"aYh" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -23644,22 +22467,13 @@
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
/turf/open/floor/plating,
/area/maintenance/port)
-"baZ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/security/detectives_office)
-"bba" = (
+"aYi" = (
/obj/structure/closet/secure_closet/detective,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -23669,219 +22483,178 @@
},
/turf/open/floor/plasteel/grimy,
/area/security/detectives_office)
-"bbb" = (
-/obj/machinery/computer/med_data,
-/obj/machinery/newscaster{
- pixel_x = 0;
- pixel_y = 32
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office)
-"bbc" = (
-/obj/machinery/computer/secure_data,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office)
-"bbd" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall,
-/area/security/detectives_office)
-"bbe" = (
-/obj/structure/table/wood,
-/obj/item/weapon/storage/box/evidence,
-/obj/item/weapon/hand_labeler{
- pixel_x = 5
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office)
-"bbf" = (
+"aYj" = (
/obj/structure/table/wood,
/obj/item/device/taperecorder,
/obj/structure/disposalpipe/segment{
dir = 2;
- icon_state = "pipe-c"
+ icon_state = "pipe-c"
},
/obj/machinery/button/door{
id = "kanyewest";
- name = "Privacy Shutters";
- pixel_x = 0;
- pixel_y = 24
+ name = "Privacy Shutters";
+ pixel_x = 0;
+ pixel_y = 24
},
/turf/open/floor/plasteel/grimy,
/area/security/detectives_office)
-"bbg" = (
-/turf/open/floor/plasteel/blue/corner,
-/area/hallway/primary/central)
-"bbh" = (
+"aYk" = (
/obj/machinery/light,
/turf/open/floor/plasteel/blue/side{
dir = 0
},
/area/hallway/primary/central)
-"bbi" = (
+"aYl" = (
+/turf/open/floor/plasteel/blue/corner,
+/area/hallway/primary/central)
+"aYm" = (
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/blue/side{
+ dir = 6
+ },
+/area/hallway/primary/central)
+"aYn" = (
/obj/machinery/camera{
c_tag = "Bridge West Entrance";
- dir = 1
+ dir = 1
},
/turf/open/floor/plasteel/blue/side{
dir = 0
},
/area/hallway/primary/central)
-"bbj" = (
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/blue/side{
- dir = 6
- },
-/area/hallway/primary/central)
-"bbk" = (
-/obj/structure/grille,
-/obj/structure/cable,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/bridge)
-"bbl" = (
+"aYo" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/poddoor/preopen{
id = "bridge blast";
- name = "bridge blast door"
+ name = "bridge blast door"
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel{
name = "floor"
},
/area/bridge)
-"bbm" = (
+"aYp" = (
+/obj/structure/grille,
+/obj/structure/cable,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/bridge)
+"aYq" = (
/obj/structure/closet/emcloset,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/blue/side{
dir = 0
},
/area/bridge)
-"bbn" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+"aYr" = (
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -29
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/blue/side{
dir = 0
},
/area/bridge)
-"bbo" = (
-/obj/item/device/radio/intercom{
- name = "Station Intercom (General)";
- pixel_y = -29
+"aYs" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/blue/side{
dir = 0
},
/area/bridge)
-"bbp" = (
+"aYt" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/closed/wall/r_wall,
+/area/ai_monitored/turret_protected/ai_upload)
+"aYu" = (
/obj/machinery/firealarm{
dir = 1;
- pixel_y = -24
+ pixel_y = -24
},
/obj/structure/table,
/obj/item/weapon/paper_bin{
pixel_x = -3;
- pixel_y = 7
+ pixel_y = 7
},
/obj/item/weapon/pen,
/turf/open/floor/plasteel/blue/side{
dir = 6
},
/area/bridge)
-"bbq" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/closed/wall/r_wall,
-/area/ai_monitored/turret_protected/ai_upload)
-"bbr" = (
+"aYv" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/ai_upload)
-"bbs" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/closed/wall/r_wall,
-/area/ai_monitored/turret_protected/ai_upload)
-"bbt" = (
+"aYw" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/highsecurity{
icon_state = "door_closed";
- locked = 0;
- name = "AI Upload Access";
- req_access_txt = "16"
+ locked = 0;
+ name = "AI Upload Access";
+ req_access_txt = "16"
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/ai_upload)
-"bbu" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
+"aYx" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
},
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/ai_upload)
-"bbv" = (
+"aYy" = (
/obj/machinery/ai_status_display,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/ai_upload)
-"bbw" = (
+"aYz" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+ dir = 5
},
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/ai_upload)
-"bbx" = (
+"aYA" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/ai_upload)
-"bby" = (
+"aYB" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/ai_monitored/turret_protected/ai_upload)
+"aYC" = (
/obj/machinery/firealarm{
dir = 1;
- pixel_y = -24
+ pixel_y = -24
},
/obj/structure/filingcabinet/filingcabinet,
/turf/open/floor/plasteel/blue/side{
dir = 10
},
/area/bridge)
-"bbz" = (
+"aYD" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -23889,221 +22662,234 @@
dir = 0
},
/area/bridge)
-"bbA" = (
+"aYE" = (
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/blue/side{
dir = 10
},
/area/hallway/primary/central)
-"bbB" = (
+"aYF" = (
/obj/machinery/power/apc{
dir = 2;
- name = "Central Hall APC";
- pixel_y = -24
+ name = "Central Hall APC";
+ pixel_y = -24
},
/obj/structure/cable,
/turf/open/floor/plasteel/blue/side{
dir = 0
},
/area/hallway/primary/central)
-"bbC" = (
+"aYG" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/blue/corner{
dir = 8
},
/area/hallway/primary/central)
-"bbD" = (
-/obj/structure/chair{
+"aYH" = (
+/obj/structure/table,
+/obj/item/weapon/razor,
+/obj/structure/window{
+ icon_state = "window";
dir = 1
},
-/obj/effect/landmark/start{
- name = "Assistant"
- },
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"bbE" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"bbF" = (
+/turf/open/floor/plasteel/barber,
+/area/crew_quarters/locker)
+"aYI" = (
/obj/structure/chair/stool/bar,
/obj/effect/landmark/start{
name = "Assistant"
},
/turf/open/floor/plasteel/bar,
/area/crew_quarters/bar)
-"bbG" = (
-/obj/structure/chair/stool/bar,
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"bbH" = (
+"aYJ" = (
+/obj/machinery/light_switch{
+ pixel_y = -25
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"aYK" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock{
name = "Kitchen";
- req_access_txt = "28"
+ req_access_txt = "28"
},
/turf/open/floor/plasteel/bar,
/area/crew_quarters/kitchen)
-"bbI" = (
-/obj/machinery/light_switch{
- pixel_y = -25
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"bbJ" = (
+"aYL" = (
/obj/machinery/light,
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/kitchen)
-"bbK" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/kitchen)
-"bbL" = (
+"aYM" = (
/obj/structure/disposalpipe/segment{
dir = 1;
- icon_state = "pipe-c"
+ icon_state = "pipe-c"
},
/obj/machinery/button/door{
id = "kitchen";
- name = "Kitchen Shutters Control";
- pixel_x = -1;
- pixel_y = -24;
- req_access_txt = "28"
+ name = "Kitchen Shutters Control";
+ pixel_x = -1;
+ pixel_y = -24;
+ req_access_txt = "28"
},
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/kitchen)
-"bbM" = (
+"aYN" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 8
},
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/kitchen)
-"bbN" = (
-/obj/structure/reagent_dispensers/watertank/high,
+"aYO" = (
+/obj/item/weapon/reagent_containers/glass/bucket,
/turf/open/floor/plasteel,
/area/hydroponics)
-"bbO" = (
-/obj/item/weapon/reagent_containers/glass/bucket,
+"aYP" = (
+/obj/structure/reagent_dispensers/watertank/high,
/turf/open/floor/plasteel,
/area/hydroponics)
-"bbP" = (
+"aYQ" = (
/obj/machinery/hydroponics/constructable,
/turf/open/floor/plasteel/green/side{
dir = 1
},
/area/hydroponics)
-"bbQ" = (
+"aYR" = (
/obj/structure/chair/stool,
/obj/effect/landmark/start{
name = "Botanist"
},
/turf/open/floor/plasteel,
/area/hydroponics)
-"bbR" = (
+"aYS" = (
+/obj/structure/closet,
+/obj/item/clothing/under/suit_jacket/female{
+ pixel_x = 3;
+ pixel_y = 1
+ },
+/obj/item/clothing/under/suit_jacket/really_black{
+ pixel_x = -2;
+ pixel_y = 0
+ },
+/obj/structure/window{
+ icon_state = "window";
+ dir = 1
+ },
+/turf/open/floor/plasteel/barber,
+/area/crew_quarters/locker)
+"aYT" = (
/obj/machinery/camera{
c_tag = "Hydroponics South";
- dir = 8;
- network = list("SS13")
+ dir = 8;
+ network = list("SS13")
},
/obj/structure/reagent_dispensers/watertank/high,
/turf/open/floor/plasteel,
/area/hydroponics)
-"bbS" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+"aYU" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"aYV" = (
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"aYW" = (
+/turf/open/floor/carpet,
+/area/library)
+"aYX" = (
+/obj/structure/window/reinforced{
dir = 8
},
-/turf/closed/wall,
-/area/hydroponics)
-"bbT" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/light{
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/turf_decal/stripes/line{
dir = 8
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"aYY" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bbU" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+/turf/open/floor/carpet,
+/area/library)
+"aYZ" = (
+/obj/structure/table/wood,
+/obj/item/weapon/storage/box/evidence,
+/obj/item/weapon/hand_labeler{
+ pixel_x = 5
+ },
+/obj/structure/disposalpipe/segment{
dir = 4
},
+/turf/open/floor/plasteel/grimy,
+/area/security/detectives_office)
+"aZa" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/grimy,
+/area/security/detectives_office)
+"aZb" = (
+/obj/machinery/camera{
+ c_tag = "Bar South";
+ dir = 1
+ },
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"aZc" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/hallway/primary/starboard)
-"bbV" = (
+"aZd" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/open/floor/wood,
+/area/library)
+"aZe" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
- name = "Library"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+ name = "Chapel"
},
-/turf/open/floor/carpet,
-/area/library)
-"bbW" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/carpet,
-/area/library)
-"bbX" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/turf/open/floor/carpet,
-/area/library)
-"bbY" = (
-/obj/machinery/holopad,
-/turf/open/floor/carpet,
-/area/library)
-"bbZ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/open/floor/carpet,
/area/chapel/main)
-"bca" = (
+"aZf" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/carpet,
/area/chapel/main)
-"bcb" = (
+"aZg" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/carpet,
/area/chapel/main)
-"bcc" = (
+"aZh" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/carpet,
/area/chapel/main)
-"bcd" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Chapel"
- },
+"aZi" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/turf/open/floor/carpet,
-/area/chapel/main)
-"bce" = (
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"aZj" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -24111,91 +22897,71 @@
dir = 8
},
/area/hallway/secondary/exit)
-"bcf" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
+"aZk" = (
+/obj/machinery/holopad,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/hallway/secondary/exit)
-"bcg" = (
+"aZl" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/hallway/secondary/exit)
-"bch" = (
-/obj/machinery/holopad,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"bci" = (
+"aZm" = (
/obj/machinery/camera{
c_tag = "Escape Arm Airlocks";
- dir = 8;
- network = list("SS13")
+ dir = 8;
+ network = list("SS13")
},
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel,
/area/hallway/secondary/exit)
-"bcj" = (
-/obj/structure/closet/crate,
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/transport)
-"bck" = (
-/obj/structure/chair{
- dir = 1
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/transport)
-"bcl" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
+"aZn" = (
+/obj/structure/table/wood,
+/obj/item/weapon/folder/blue,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/wood,
+/area/security/vacantoffice)
+"aZo" = (
+/obj/structure/sink{
dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ icon_state = "sink";
+ pixel_x = 11;
+ pixel_y = 0
},
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"bcm" = (
-/obj/machinery/door/airlock/engineering{
- name = "Vacant Office A";
- req_access_txt = "32"
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ external_pressure_bound = 101.325;
+ on = 1;
+ pressure_checks = 1
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/locker/locker_toilet)
+"aZp" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
},
-/turf/open/floor/wood,
-/area/security/vacantoffice)
-"bcn" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+/obj/item/weapon/electronics/apc,
+/obj/item/weapon/stock_parts/cell{
+ maxcharge = 2000
},
-/turf/open/floor/wood,
-/area/security/vacantoffice)
-"bco" = (
-/obj/structure/chair/office/dark,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/security/vacantoffice)
-"bcp" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/carpet,
-/area/security/vacantoffice)
-"bcq" = (
-/obj/structure/chair/office/dark,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
+/turf/open/floor/plasteel/floorgrime,
+/area/quartermaster/storage)
+"aZq" = (
+/obj/machinery/button/door{
+ id = "heads_meeting";
+ name = "Security Shutters";
+ pixel_x = 0;
+ pixel_y = 24
},
/turf/open/floor/wood,
-/area/security/vacantoffice)
-"bcr" = (
+/area/bridge/meeting_room)
+"aZr" = (
/obj/machinery/light/small{
dir = 8
},
@@ -24204,14 +22970,14 @@
},
/turf/open/floor/plating,
/area/maintenance/port)
-"bcs" = (
+"aZs" = (
/obj/machinery/meter,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
/turf/open/floor/plating,
/area/maintenance/port)
-"bct" = (
+"aZt" = (
/obj/structure/toilet{
pixel_y = 8
},
@@ -24220,984 +22986,960 @@
},
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/locker/locker_toilet)
-"bcu" = (
+"aZu" = (
+/obj/machinery/photocopier,
+/turf/open/floor/wood,
+/area/bridge/meeting_room)
+"aZv" = (
/obj/machinery/door/airlock{
name = "Unit 1"
},
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/locker/locker_toilet)
-"bcv" = (
-/obj/machinery/light_switch{
- pixel_y = 28
- },
+"aZw" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/locker/locker_toilet)
-"bcw" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet)
-"bcx" = (
-/obj/structure/table,
-/obj/item/weapon/razor,
-/obj/structure/window{
- icon_state = "window";
- dir = 1
- },
-/turf/open/floor/plasteel/barber,
-/area/crew_quarters/locker)
-"bcy" = (
+"aZx" = (
/turf/open/floor/plasteel/barber,
/area/crew_quarters/locker)
-"bcz" = (
-/obj/structure/closet,
-/obj/item/clothing/under/suit_jacket/female{
- pixel_x = 3;
- pixel_y = 1
- },
-/obj/item/clothing/under/suit_jacket/really_black{
- pixel_x = -2;
- pixel_y = 0
+"aZy" = (
+/obj/machinery/camera{
+ c_tag = "Conference Room";
+ dir = 2
},
-/obj/structure/window{
- icon_state = "window";
- dir = 1
+/turf/open/floor/wood,
+/area/bridge/meeting_room)
+"aZz" = (
+/obj/machinery/newscaster{
+ pixel_y = 32
},
-/turf/open/floor/plasteel/barber,
-/area/crew_quarters/locker)
-"bcA" = (
-/obj/machinery/portable_atmospherics/pump,
+/turf/open/floor/wood,
+/area/bridge/meeting_room)
+"aZA" = (
+/obj/machinery/portable_atmospherics/scrubber,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
/area/crew_quarters/locker)
-"bcB" = (
-/obj/machinery/portable_atmospherics/scrubber,
+"aZB" = (
+/obj/machinery/portable_atmospherics/pump,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
/area/crew_quarters/locker)
-"bcC" = (
-/obj/structure/window/reinforced{
- dir = 8
+"aZC" = (
+/obj/machinery/light_switch{
+ pixel_y = 28
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
+/obj/machinery/light{
+ dir = 1
},
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"bcD" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"bcE" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/wood,
+/area/bridge/meeting_room)
+"aZD" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
/turf/open/floor/plating,
/area/maintenance/port)
-"bcF" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+"aZE" = (
/turf/closed/wall,
-/area/maintenance/port)
-"bcG" = (
-/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/storage)
-"bcH" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/floorgrime,
/area/quartermaster/storage)
-"bcI" = (
+"aZF" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/storage)
-"bcJ" = (
/turf/closed/wall,
-/area/quartermaster/storage)
-"bcK" = (
+/area/maintenance/port)
+"aZG" = (
+/obj/machinery/light_switch{
+ pixel_y = 28
+ },
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bcL" = (
-/obj/machinery/light/small{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
-/obj/structure/rack,
-/obj/item/weapon/storage/briefcase,
-/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office)
-"bcM" = (
-/turf/open/floor/carpet,
-/area/security/detectives_office)
-"bcN" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+/turf/open/floor/wood,
+/area/crew_quarters/captain)
+"aZH" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "packageSort2"
},
-/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office)
-"bcO" = (
-/obj/machinery/firealarm{
- pixel_y = 24
+/turf/open/floor/plating,
+/area/quartermaster/office)
+"aZI" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
},
-/obj/machinery/camera{
- c_tag = "Detective's Office";
- dir = 2
+/obj/item/stack/sheet/cardboard,
+/obj/item/stack/rods{
+ amount = 50
},
-/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office)
-"bcP" = (
-/turf/open/floor/plasteel/grimy,
+/turf/open/floor/plasteel/floorgrime,
+/area/quartermaster/storage)
+"aZJ" = (
+/obj/structure/table/wood,
+/obj/item/device/camera/detective,
+/turf/open/floor/carpet,
/area/security/detectives_office)
-"bcQ" = (
+"aZK" = (
+/turf/closed/wall,
+/area/quartermaster/office)
+"aZL" = (
/obj/machinery/light_switch{
pixel_x = 27
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/grimy,
/area/security/detectives_office)
-"bcR" = (
+"aZM" = (
+/turf/closed/wall/r_wall,
+/area/bridge/meeting_room)
+"aZN" = (
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/blue/corner,
/area/hallway/primary/central)
-"bcS" = (
-/turf/closed/wall/r_wall,
-/area/bridge/meeting_room)
-"bcT" = (
+"aZO" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall,
/area/bridge/meeting_room)
-"bcU" = (
+"aZP" = (
+/turf/closed/wall,
+/area/bridge/meeting_room)
+"aZQ" = (
/obj/machinery/door/airlock/command{
name = "Conference Room";
- req_access = null;
- req_access_txt = "19"
+ req_access = null;
+ req_access_txt = "19"
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/wood,
/area/bridge/meeting_room)
-"bcV" = (
-/turf/closed/wall,
-/area/bridge/meeting_room)
-"bcW" = (
+"aZR" = (
+/turf/open/floor/bluegrid,
+/area/ai_monitored/turret_protected/ai_upload)
+"aZS" = (
/obj/machinery/porta_turret/ai{
dir = 4
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/ai_upload)
-"bcX" = (
-/turf/open/floor/bluegrid,
-/area/ai_monitored/turret_protected/ai_upload)
-"bcY" = (
+"aZT" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/ai_upload)
-"bcZ" = (
+"aZU" = (
/obj/machinery/porta_turret/ai{
dir = 8
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/ai_upload)
-"bda" = (
+"aZV" = (
/turf/closed/wall/r_wall,
/area/crew_quarters/captain)
-"bdb" = (
+"aZW" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall/r_wall,
+/area/crew_quarters/captain)
+"aZX" = (
/obj/machinery/door/airlock/command{
name = "Captain's Office";
- req_access = null;
- req_access_txt = "20"
+ req_access = null;
+ req_access_txt = "20"
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/wood,
/area/crew_quarters/captain)
-"bdc" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall/r_wall,
-/area/crew_quarters/captain)
-"bdd" = (
+"aZY" = (
/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/blue/corner{
dir = 8
},
/area/hallway/primary/central)
-"bde" = (
-/obj/machinery/computer/arcade,
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"bdf" = (
+"aZZ" = (
/obj/machinery/vending/cigarette{
pixel_x = 0;
- pixel_y = 0
+ pixel_y = 0
},
/turf/open/floor/plasteel/bar,
/area/crew_quarters/bar)
-"bdg" = (
-/obj/machinery/newscaster{
- pixel_y = -28
- },
+"baa" = (
+/obj/machinery/computer/arcade,
/turf/open/floor/plasteel/bar,
/area/crew_quarters/bar)
-"bdh" = (
+"bab" = (
/obj/machinery/light,
/obj/machinery/firealarm{
dir = 1;
- pixel_y = -24
+ pixel_y = -24
},
/turf/open/floor/plasteel/bar,
/area/crew_quarters/bar)
-"bdi" = (
-/obj/machinery/light,
+"bac" = (
+/obj/machinery/newscaster{
+ pixel_y = -28
+ },
/turf/open/floor/plasteel/bar,
/area/crew_quarters/bar)
-"bdj" = (
-/obj/machinery/camera{
- c_tag = "Bar South";
- dir = 1
- },
+"bad" = (
+/obj/machinery/light,
/turf/open/floor/plasteel/bar,
/area/crew_quarters/bar)
-"bdk" = (
+"bae" = (
/obj/structure/noticeboard{
pixel_y = -27
},
/turf/open/floor/plasteel/bar,
/area/crew_quarters/bar)
-"bdl" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
- pixel_y = -30
+"baf" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
},
-/turf/open/floor/plasteel/bar,
-/area/crew_quarters/bar)
-"bdm" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/captain)
+"bag" = (
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
+ icon_state = "alarm0";
+ pixel_y = -22
},
/turf/open/floor/plasteel/bar,
/area/crew_quarters/bar)
-"bdn" = (
+"bah" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 0;
+ pixel_y = -30
+ },
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"bai" = (
/obj/machinery/light/small,
/turf/open/floor/plasteel/bar,
/area/crew_quarters/bar)
-"bdo" = (
+"baj" = (
/obj/structure/table/reinforced,
/obj/item/weapon/storage/fancy/donut_box,
/obj/machinery/door/firedoor,
/obj/machinery/door/poddoor/shutters/preopen{
id = "kitchen";
- name = "kitchen shutters"
+ name = "kitchen shutters"
},
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/kitchen)
-"bdp" = (
+"bak" = (
/obj/structure/table/reinforced,
/obj/machinery/door/firedoor,
/obj/machinery/door/poddoor/shutters/preopen{
id = "kitchen";
- name = "kitchen shutters"
+ name = "kitchen shutters"
},
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/kitchen)
-"bdq" = (
+"bal" = (
/obj/structure/sink{
icon_state = "sink";
- dir = 8;
- pixel_x = -12;
- pixel_y = 2
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
},
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -24
+ pixel_x = -24
},
/turf/open/floor/plasteel,
/area/hydroponics)
-"bdr" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plating,
-/area/hydroponics)
-"bds" = (
+"bam" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/hydroponics)
-"bdt" = (
+"ban" = (
/obj/structure/table/reinforced,
/obj/machinery/door/firedoor,
/obj/machinery/door/window/northleft{
name = "Hydroponics Desk";
- req_access_txt = "35"
+ req_access_txt = "35"
},
/turf/open/floor/plasteel,
/area/hydroponics)
-"bdu" = (
+"bao" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/machinery/computer/security/telescreen/entertainment{
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/captain)
+"bap" = (
/obj/structure/table/reinforced,
/obj/machinery/door/firedoor,
/obj/machinery/door/window/westright{
dir = 1;
- name = "Hydroponics Desk";
- req_access_txt = "35"
+ name = "Hydroponics Desk";
+ req_access_txt = "35"
},
/turf/open/floor/plasteel,
/area/hydroponics)
-"bdv" = (
-/obj/structure/disposalpipe/segment,
+"baq" = (
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bdw" = (
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bdx" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/captain)
+"bar" = (
/obj/structure/chair{
dir = 8
},
/turf/open/floor/plasteel,
/area/hallway/primary/starboard)
-"bdy" = (
+"bas" = (
/obj/machinery/vending/coffee,
/turf/open/floor/wood,
/area/library)
-"bdz" = (
+"bat" = (
+/obj/structure/table/wood,
+/obj/item/weapon/pen,
+/turf/open/floor/wood,
+/area/library)
+"bau" = (
/obj/structure/chair/comfy/black{
dir = 4
},
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
+ icon_state = "alarm0";
+ pixel_y = -22
},
/turf/open/floor/wood,
/area/library)
-"bdA" = (
-/obj/structure/table/wood,
-/obj/item/weapon/pen,
+"bav" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ external_pressure_bound = 101.325;
+ on = 1;
+ pressure_checks = 1
+ },
/turf/open/floor/wood,
/area/library)
-"bdB" = (
+"baw" = (
+/obj/structure/sink{
+ dir = 4;
+ icon_state = "sink";
+ pixel_x = 11;
+ pixel_y = 0
+ },
+/obj/structure/mirror{
+ pixel_x = 28
+ },
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/locker/locker_toilet)
+"bax" = (
/obj/structure/chair/comfy/black{
dir = 4
},
/turf/open/floor/wood,
/area/library)
-"bdC" = (
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
+"bay" = (
+/obj/structure/chair/comfy/black,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
-/turf/open/floor/wood,
-/area/library)
-"bdD" = (
+/turf/open/floor/carpet,
+/area/bridge/meeting_room)
+"baz" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
+ external_pressure_bound = 101.325;
+ on = 1;
+ pressure_checks = 1
},
/turf/open/floor/plasteel/black,
/area/chapel/main)
-"bdE" = (
+"baA" = (
/turf/open/floor/carpet{
icon_state = "carpetsymbol"
},
/area/chapel/main)
-"bdF" = (
+"baB" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
/turf/open/floor/plasteel/black,
/area/chapel/main)
-"bdG" = (
+"baC" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"baD" = (
/obj/machinery/power/apc{
dir = 8;
- name = "Escape Hallway APC";
- pixel_x = -25
+ name = "Escape Hallway APC";
+ pixel_x = -25
},
/obj/structure/cable{
icon_state = "0-4";
- d2 = 4
+ d2 = 4
},
/turf/open/floor/plasteel/escape{
dir = 8
},
/area/hallway/secondary/exit)
-"bdH" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"bdI" = (
+"baE" = (
/obj/structure/cable{
d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d2 = 8;
+ icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/hallway/secondary/exit)
-"bdJ" = (
+"baF" = (
/obj/structure/closet/emcloset,
/obj/effect/turf_decal/stripes/line{
dir = 9
},
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"bdK" = (
+"baG" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 27;
- pixel_y = 0
+ pixel_y = 0
},
/obj/machinery/light{
icon_state = "tube1";
- dir = 4
+ dir = 4
},
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"bdL" = (
+"baH" = (
+/obj/structure/table/wood,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/wood,
+/area/security/vacantoffice)
+"baI" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/turf/open/floor/carpet,
+/area/bridge/meeting_room)
+"baJ" = (
/obj/item/device/radio/intercom{
name = "Station Intercom (General)";
- pixel_y = -29
+ pixel_y = -29
},
/turf/open/floor/wood,
/area/security/vacantoffice)
-"bdM" = (
-/obj/structure/table/wood,
-/obj/item/weapon/folder/blue,
+"baK" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/wood,
-/area/security/vacantoffice)
-"bdN" = (
-/obj/machinery/atmospherics/components/unary/tank/air{
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bdO" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+/turf/open/floor/carpet,
+/area/bridge/meeting_room)
+"baL" = (
+/obj/machinery/atmospherics/components/unary/tank/air{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/port)
-"bdP" = (
+"baM" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
/obj/machinery/power/apc{
dir = 4;
- name = "Locker Restrooms APC";
- pixel_x = 27;
- pixel_y = 2
+ name = "Locker Restrooms APC";
+ pixel_x = 27;
+ pixel_y = 2
},
/obj/structure/cable{
icon_state = "0-2";
- d2 = 2
+ d2 = 2
},
/turf/open/floor/plating,
/area/crew_quarters/locker/locker_toilet)
-"bdQ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet)
-"bdR" = (
-/obj/structure/sink{
- dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
+"baN" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
},
+/turf/open/floor/plating,
+/area/maintenance/port)
+"baO" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/locker/locker_toilet)
-"bdS" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel/barber,
-/area/crew_quarters/locker)
-"bdT" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
+"baP" = (
+/obj/structure/table/wood,
+/obj/item/weapon/storage/fancy/donut_box,
+/turf/open/floor/carpet,
+/area/crew_quarters/captain)
+"baQ" = (
+/obj/structure/chair/comfy/brown{
+ dir = 4
},
-/obj/item/stack/sheet/cardboard,
-/obj/item/stack/rods{
- amount = 50
+/turf/open/floor/carpet,
+/area/crew_quarters/captain)
+"baR" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
},
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"baS" = (
/turf/open/floor/plasteel/floorgrime,
/area/quartermaster/storage)
-"bdU" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/weapon/electronics/apc,
-/obj/item/weapon/stock_parts/cell{
- maxcharge = 2000
+"baT" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/storage)
-"bdV" = (
-/obj/effect/landmark/event_spawn,
+/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/storage)
-"bdW" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"baU" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/grimy,
+/area/security/detectives_office)
+"baV" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security{
+ name = "Detective's Office";
+ req_access_txt = "4"
+ },
+/turf/open/floor/plasteel/grimy,
+/area/security/detectives_office)
+"baW" = (
/obj/item/weapon/storage/secure/safe{
pixel_x = -23
},
/turf/open/floor/plasteel/grimy,
/area/security/detectives_office)
-"bdX" = (
+"baX" = (
/obj/structure/chair/comfy/brown,
/obj/effect/landmark/start{
name = "Detective"
},
/turf/open/floor/carpet,
/area/security/detectives_office)
-"bdY" = (
-/obj/structure/table/wood,
-/obj/item/device/camera/detective,
-/turf/open/floor/carpet,
-/area/security/detectives_office)
-"bdZ" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office)
-"bea" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/security{
- name = "Detective's Office";
- req_access_txt = "4"
- },
-/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office)
-"beb" = (
-/obj/machinery/photocopier,
-/turf/open/floor/wood,
-/area/bridge/meeting_room)
-"bec" = (
-/obj/machinery/button/door{
- id = "heads_meeting";
- name = "Security Shutters";
- pixel_x = 0;
- pixel_y = 24
- },
-/turf/open/floor/wood,
-/area/bridge/meeting_room)
-"bed" = (
-/obj/machinery/newscaster{
+"baY" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/closet/crate,
+/turf/open/floor/plasteel/floorgrime,
+/area/quartermaster/storage)
+"baZ" = (
+/obj/machinery/status_display{
+ layer = 4;
+ pixel_x = 0;
pixel_y = 32
},
-/turf/open/floor/wood,
-/area/bridge/meeting_room)
-"bee" = (
-/obj/machinery/camera{
- c_tag = "Conference Room";
- dir = 2
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"bba" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
},
-/turf/open/floor/wood,
-/area/bridge/meeting_room)
-"bef" = (
-/turf/open/floor/wood,
-/area/bridge/meeting_room)
-"beg" = (
-/obj/machinery/light_switch{
- pixel_y = 28
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"bbb" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
},
-/obj/machinery/light{
+/turf/open/floor/plasteel/blue/corner{
dir = 1
},
+/area/hallway/secondary/entry)
+"bbc" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/port)
+"bbd" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/port)
+"bbe" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/port)
+"bbf" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/maintenance/port)
+"bbg" = (
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/maintenance/port)
+"bbh" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
/turf/open/floor/wood,
/area/bridge/meeting_room)
-"beh" = (
+"bbi" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment{
dir = 4;
- icon_state = "pipe-c"
+ icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/wood,
/area/bridge/meeting_room)
-"bei" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/bridge/meeting_room)
-"bej" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall/r_wall,
-/area/ai_monitored/turret_protected/ai_upload)
-"bek" = (
+"bbj" = (
/obj/structure/table,
/obj/item/weapon/aiModule/reset,
/obj/machinery/light{
icon_state = "tube1";
- dir = 8
+ dir = 8
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/ai_upload)
-"bel" = (
-/turf/open/floor/plasteel/black,
+"bbk" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/ai_upload)
-"bem" = (
-/obj/structure/table,
-/obj/item/weapon/folder/blue,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
+"bbl" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/crew_quarters/sleep)
+"bbm" = (
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/ai_upload)
-"ben" = (
+"bbn" = (
/obj/structure/table,
/obj/machinery/light{
dir = 4
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/ai_upload)
-"beo" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall/r_wall,
-/area/ai_monitored/turret_protected/ai_upload)
-"bep" = (
+"bbo" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 4
},
/turf/open/floor/wood,
/area/crew_quarters/captain)
-"beq" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+"bbp" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall/r_wall,
+/area/ai_monitored/turret_protected/ai_upload)
+"bbq" = (
+/obj/machinery/light{
+ icon_state = "tube1";
dir = 8
},
-/turf/open/floor/wood,
-/area/crew_quarters/captain)
-"ber" = (
-/obj/machinery/light_switch{
- pixel_y = 28
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/locker/locker_toilet)
+"bbr" = (
+/obj/machinery/camera{
+ c_tag = "Locker Room South";
+ dir = 8;
+ network = list("SS13")
},
-/turf/open/floor/wood,
-/area/crew_quarters/captain)
-"bes" = (
-/obj/machinery/ai_status_display{
- pixel_y = 32
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"bbs" = (
+/obj/structure/window/reinforced{
+ dir = 8
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+/turf/open/floor/plasteel,
+/area/crew_quarters/locker)
+"bbt" = (
+/obj/structure/closet/crate,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/floorgrime,
+/area/quartermaster/storage)
+"bbu" = (
+/obj/machinery/power/apc{
+ cell_type = 2500;
+ dir = 1;
+ name = "Captain's Office APC";
+ pixel_y = 24
},
-/turf/open/floor/carpet,
-/area/crew_quarters/captain)
-"bet" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/computer/security/telescreen/entertainment{
- pixel_x = 0;
- pixel_y = 32
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
+ d2 = 8;
+ icon_state = "0-8"
},
-/turf/open/floor/carpet,
+/turf/open/floor/wood,
/area/crew_quarters/captain)
-"beu" = (
+"bbv" = (
/obj/machinery/status_display{
pixel_x = 0;
- pixel_y = 32
+ pixel_y = 32
},
/obj/structure/cable{
d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d2 = 8;
+ icon_state = "2-8"
},
/obj/structure/cable{
d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d2 = 4;
+ icon_state = "2-4"
},
/turf/open/floor/carpet,
/area/crew_quarters/captain)
-"bev" = (
-/obj/machinery/power/apc{
- cell_type = 2500;
- dir = 1;
- name = "Captain's Office APC";
- pixel_y = 24
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/open/floor/wood,
-/area/crew_quarters/captain)
-"bew" = (
+"bbw" = (
/turf/open/floor/wood,
/area/crew_quarters/captain)
-"bex" = (
+"bbx" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
name = "Diner"
},
/turf/open/floor/plasteel,
/area/crew_quarters/bar)
-"bey" = (
+"bby" = (
/obj/structure/sign/barsign,
/turf/closed/wall,
/area/crew_quarters/bar)
-"bez" = (
+"bbz" = (
/turf/open/floor/plasteel/white/corner{
dir = 1
},
/area/hallway/primary/starboard)
-"beA" = (
+"bbA" = (
/obj/machinery/camera{
c_tag = "Starboard Primary Hallway 2";
- dir = 2;
- network = list("SS13")
+ dir = 2;
+ network = list("SS13")
},
/turf/open/floor/plasteel/white/corner{
dir = 1
},
/area/hallway/primary/starboard)
-"beB" = (
+"bbB" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
name = "Hydroponics";
- req_access_txt = "35"
+ req_access_txt = "35"
},
/turf/open/floor/plasteel,
/area/hydroponics)
-"beC" = (
+"bbC" = (
+/obj/structure/chair/comfy/black{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/carpet,
+/area/bridge/meeting_room)
+"bbD" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
/turf/open/floor/plating,
/area/library)
-"beD" = (
+"bbE" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall,
+/area/library)
+"bbF" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
/turf/open/floor/plating,
/area/chapel/main)
-"beE" = (
+"bbG" = (
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -24
+ pixel_x = -24
},
/turf/open/floor/plasteel/escape{
dir = 8
},
/area/hallway/secondary/exit)
-"beF" = (
+"bbH" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/hallway/secondary/exit)
-"beG" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 4;
- name = "Escape Airlock"
- },
-/turf/open/floor/plating,
-/area/hallway/secondary/exit)
-"beH" = (
-/obj/machinery/door/airlock/titanium{
- name = "Emergency Shuttle Airlock"
- },
-/turf/open/floor/plating,
-/area/shuttle/escape)
-"beI" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
- pixel_y = -30
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"beJ" = (
+"bbI" = (
/obj/machinery/power/apc{
dir = 8;
- name = "Vacant Office A APC";
- pixel_x = -24;
- pixel_y = 0
+ name = "Vacant Office A APC";
+ pixel_x = -24;
+ pixel_y = 0
},
/obj/structure/cable{
icon_state = "0-4";
- d2 = 4
+ d2 = 4
},
/turf/open/floor/plating,
/area/security/vacantoffice{
name = "Vacant Office A"
})
-"beK" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/port)
-"beL" = (
+"bbJ" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
/obj/structure/cable{
d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d2 = 8;
+ icon_state = "2-8"
},
/turf/open/floor/plating,
/area/maintenance/port)
-"beM" = (
+"bbK" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/port)
+"bbL" = (
/obj/machinery/door/airlock{
name = "Unit 2"
},
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/locker/locker_toilet)
-"beN" = (
-/obj/structure/sink{
- dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
- },
-/obj/structure/mirror{
- pixel_x = 28
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet)
-"beO" = (
+"bbM" = (
+/obj/item/weapon/book/manual/wiki/security_space_law,
+/obj/structure/table/wood,
+/turf/open/floor/carpet,
+/area/bridge/meeting_room)
+"bbN" = (
/obj/machinery/washing_machine,
+/obj/machinery/light,
/turf/open/floor/plasteel/barber,
/area/crew_quarters/locker)
-"beP" = (
+"bbO" = (
/obj/machinery/washing_machine,
-/obj/machinery/light,
/turf/open/floor/plasteel/barber,
/area/crew_quarters/locker)
-"beQ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/closet/crate,
-/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/storage)
-"beR" = (
+"bbP" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/storage)
-"beS" = (
-/obj/structure/closet/crate,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
/turf/open/floor/plasteel/floorgrime,
/area/quartermaster/storage)
-"beT" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Detective Maintenance";
- req_access_txt = "4"
- },
-/turf/open/floor/plating,
-/area/security/detectives_office)
-"beU" = (
+"bbQ" = (
/obj/structure/table/wood,
/obj/item/weapon/reagent_containers/food/drinks/bottle/whiskey{
pixel_x = 3
@@ -25205,87 +23947,88 @@
/obj/item/weapon/lighter,
/turf/open/floor/carpet,
/area/security/detectives_office)
-"beV" = (
-/obj/structure/table/wood,
-/obj/machinery/computer/security/wooden_tv,
-/turf/open/floor/carpet,
-/area/security/detectives_office)
-"beW" = (
-/obj/structure/table/wood,
-/obj/item/weapon/storage/fancy/cigarettes,
-/obj/item/clothing/glasses/sunglasses,
-/turf/open/floor/carpet,
-/area/security/detectives_office)
-"beX" = (
+"bbR" = (
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bbS" = (
+/obj/structure/closet/crate,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/quartermaster/storage)
+"bbT" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp/green,
/turf/open/floor/carpet,
/area/security/detectives_office)
-"beY" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "kanyewest";
- layer = 2.9;
- name = "privacy shutters"
+"bbU" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Detective Maintenance";
+ req_access_txt = "4"
},
/turf/open/floor/plating,
/area/security/detectives_office)
-"beZ" = (
+"bbV" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bbW" = (
/obj/structure/grille,
/obj/machinery/door/poddoor/preopen{
id = "heads_meeting";
- layer = 2.9;
- name = "privacy shutters"
+ layer = 2.9;
+ name = "privacy shutters"
},
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/bridge/meeting_room)
-"bfa" = (
+"bbX" = (
+/turf/open/floor/wood,
+/area/bridge/meeting_room)
+"bbY" = (
/obj/machinery/recharger{
pixel_y = 4
},
/obj/structure/table,
/turf/open/floor/wood,
/area/bridge/meeting_room)
-"bfb" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
+"bbZ" = (
+/obj/structure/table/wood,
/turf/open/floor/carpet,
-/area/bridge/meeting_room)
-"bfc" = (
-/obj/structure/chair/comfy/black,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
+/area/crew_quarters/captain)
+"bca" = (
/turf/open/floor/carpet,
/area/bridge/meeting_room)
-"bfd" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+"bcb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/turf/open/floor/carpet,
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"bcc" = (
+/obj/machinery/vending/snack/random,
+/turf/open/floor/wood,
/area/bridge/meeting_room)
-"bfe" = (
+"bcd" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/bridge/meeting_room)
-"bff" = (
-/obj/machinery/vending/snack,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/wood,
/area/bridge/meeting_room)
-"bfg" = (
+"bce" = (
/obj/structure/table,
/obj/item/weapon/aiModule/supplied/quarantine,
/obj/machinery/camera/motion{
@@ -25293,16 +24036,16 @@
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/ai_upload)
-"bfh" = (
+"bcf" = (
/obj/machinery/holopad,
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/ai_upload)
-"bfi" = (
+"bcg" = (
/obj/structure/table,
/obj/item/weapon/aiModule/supplied/freeform,
/obj/structure/sign/kiddieplaque{
@@ -25313,344 +24056,284 @@
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/ai_upload)
-"bfj" = (
+"bch" = (
/obj/machinery/vending/cigarette,
/turf/open/floor/wood,
/area/crew_quarters/captain)
-"bfk" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/wood,
-/area/crew_quarters/captain)
-"bfl" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/wood,
-/area/crew_quarters/captain)
-"bfm" = (
-/obj/structure/chair/comfy/brown{
+"bci" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"bcj" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/junction{
+ dir = 8;
+ icon_state = "pipe-j1"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"bck" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/carpet,
-/area/crew_quarters/captain)
-"bfn" = (
-/obj/structure/table/wood,
-/obj/item/weapon/storage/fancy/donut_box,
-/turf/open/floor/carpet,
-/area/crew_quarters/captain)
-"bfo" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"bcl" = (
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall,
+/area/maintenance/disposal)
+"bcm" = (
/obj/structure/chair/comfy/brown{
dir = 8
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/open/floor/carpet,
/area/crew_quarters/captain)
-"bfp" = (
+"bcn" = (
/obj/structure/displaycase/captain,
/turf/open/floor/wood,
/area/crew_quarters/captain)
-"bfq" = (
+"bco" = (
/obj/machinery/navbeacon{
codes_txt = "patrol;next_patrol=Dorm";
- location = "HOP2"
+ location = "HOP2"
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bfr" = (
+"bcp" = (
/obj/structure/sign/directions/evac{
dir = 4;
- icon_state = "direction_evac";
- pixel_x = 32;
- pixel_y = 28
+ icon_state = "direction_evac";
+ pixel_x = 32;
+ pixel_y = 28
},
/obj/structure/sign/directions/security{
dir = 1;
- icon_state = "direction_sec";
- pixel_x = 32;
- pixel_y = 36
+ icon_state = "direction_sec";
+ pixel_x = 32;
+ pixel_y = 36
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bfs" = (
+"bcq" = (
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel,
/area/hallway/primary/starboard)
-"bft" = (
+"bcr" = (
/obj/machinery/camera{
c_tag = "Starboard Primary Hallway";
- dir = 2;
- network = list("SS13")
+ dir = 2;
+ network = list("SS13")
},
/turf/open/floor/plasteel,
/area/hallway/primary/starboard)
-"bfu" = (
+"bcs" = (
/obj/machinery/firealarm{
dir = 2;
- pixel_y = 24
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bfv" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bfw" = (
-/obj/machinery/status_display{
- layer = 4;
- pixel_x = 0;
- pixel_y = 32
+ pixel_y = 24
},
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel,
/area/hallway/primary/starboard)
-"bfx" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+"bct" = (
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
},
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bfy" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/locker/locker_toilet)
+"bcu" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
},
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bfz" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/port)
+"bcv" = (
/obj/structure/extinguisher_cabinet{
pixel_x = -5;
- pixel_y = 30
+ pixel_y = 30
},
/turf/open/floor/plasteel,
/area/hallway/primary/starboard)
-"bfA" = (
+"bcw" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/crew_quarters/locker)
+"bcx" = (
/obj/machinery/camera{
c_tag = "Starboard Primary Hallway 5";
- dir = 2;
- network = list("SS13")
+ dir = 2;
+ network = list("SS13")
},
/turf/open/floor/plasteel,
/area/hallway/primary/starboard)
-"bfB" = (
+"bcy" = (
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/white/corner{
dir = 4
},
/area/hallway/secondary/exit)
-"bfC" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"bfD" = (
+"bcz" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/hallway/secondary/exit)
-"bfE" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
+"bcA" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
},
/turf/open/floor/plasteel,
/area/hallway/secondary/exit)
-"bfF" = (
+"bcB" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 32;
- pixel_y = 0
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 32;
+ pixel_y = 0
},
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel,
/area/hallway/secondary/exit)
-"bfG" = (
-/obj/machinery/door/airlock/titanium{
- name = "Emergency Shuttle Cargo"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"bfH" = (
-/obj/machinery/door/airlock/glass{
- name = "Emergency Shuttle Infirmary"
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/escape)
-"bfI" = (
+"bcC" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/open/floor/plasteel/blue/corner{
- dir = 1
+ dir = 8;
+ on = 1
},
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"bcD" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"bfJ" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bfK" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bfL" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bfM" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bfN" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bfO" = (
-/obj/effect/landmark{
- name = "blobstart"
+"bcE" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
},
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
+/turf/open/floor/plasteel/floorgrime,
+/area/quartermaster/storage)
+"bcF" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bfP" = (
+/turf/open/floor/plasteel/floorgrime,
+/area/quartermaster/storage)
+"bcG" = (
+/obj/structure/table/wood,
+/obj/machinery/computer/security/wooden_tv,
+/turf/open/floor/carpet,
+/area/security/detectives_office)
+"bcH" = (
+/obj/structure/table/wood,
+/obj/item/weapon/storage/fancy/cigarettes,
+/obj/item/clothing/glasses/sunglasses,
+/turf/open/floor/carpet,
+/area/security/detectives_office)
+"bcI" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plating,
/area/maintenance/port)
-"bfQ" = (
+"bcJ" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/obj/structure/closet/crate/freezer,
+/turf/open/floor/plasteel/floorgrime,
+/area/quartermaster/storage)
+"bcK" = (
/obj/structure/rack{
dir = 4
},
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/port)
-"bfR" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bfS" = (
+"bcL" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j2";
- dir = 1
+ dir = 1
},
/turf/open/floor/plating,
/area/maintenance/port)
-"bfT" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+"bcM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
},
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet)
-"bfU" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/port)
+"bcN" = (
+/obj/item/weapon/folder/blue,
+/obj/structure/table/wood,
+/turf/open/floor/carpet,
+/area/bridge/meeting_room)
+"bcO" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ icon_state = "sink";
+ pixel_x = 11;
+ pixel_y = 0
},
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/locker/locker_toilet)
-"bfV" = (
-/obj/structure/window/reinforced{
- dir = 8
- },
-/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"bfW" = (
-/obj/machinery/camera{
- c_tag = "Locker Room South";
- dir = 8;
- network = list("SS13")
+"bcP" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/crew_quarters/locker)
-"bfX" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
+/turf/open/floor/carpet,
+/area/crew_quarters/captain)
+"bcQ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
-/obj/structure/closet/crate/freezer,
-/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/storage)
-"bfY" = (
+/turf/open/floor/carpet,
+/area/crew_quarters/captain)
+"bcR" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/floorgrime,
/area/quartermaster/storage)
-"bfZ" = (
+"bcS" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -25660,377 +24343,389 @@
},
/turf/open/floor/plasteel/floorgrime,
/area/quartermaster/storage)
-"bga" = (
+"bcT" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/closed/wall,
/area/quartermaster/storage)
-"bgb" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/power/apc{
- dir = 4;
- name = "Detective's Office APC";
- pixel_x = 24;
- pixel_y = 0
- },
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bgc" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/security/detectives_office)
-"bgd" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+"bcU" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office)
-"bge" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
+/turf/open/floor/wood{
+ icon_state = "wood-broken6"
},
-/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office)
-"bgf" = (
-/obj/machinery/light/small,
-/turf/open/floor/plasteel/grimy,
-/area/security/detectives_office)
-"bgg" = (
+/area/maintenance/bar)
+"bcV" = (
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
+ icon_state = "alarm0";
+ pixel_x = 24
},
/obj/structure/filingcabinet,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/grimy,
/area/security/detectives_office)
-"bgh" = (
+"bcW" = (
/obj/machinery/light{
icon_state = "tube1";
- dir = 8
+ dir = 8
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bgi" = (
+"bcX" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/poddoor/preopen{
id = "heads_meeting";
- layer = 2.9;
- name = "privacy shutters"
+ layer = 2.9;
+ name = "privacy shutters"
},
/turf/open/floor/plating,
/area/bridge/meeting_room)
-"bgj" = (
+"bcY" = (
/obj/item/weapon/hand_labeler,
/obj/item/device/assembly/timer,
/obj/structure/table,
/turf/open/floor/wood,
/area/bridge/meeting_room)
-"bgk" = (
-/obj/structure/chair/comfy/black{
- dir = 4
- },
-/turf/open/floor/carpet,
-/area/bridge/meeting_room)
-"bgl" = (
+"bcZ" = (
/obj/structure/table/wood,
/obj/item/device/radio/intercom{
dir = 8;
- freerange = 1;
- name = "Station Intercom (Command)";
- pixel_x = 0
+ freerange = 1;
+ name = "Station Intercom (Command)";
+ pixel_x = 0
},
/turf/open/floor/carpet,
/area/bridge/meeting_room)
-"bgm" = (
-/obj/item/weapon/book/manual/wiki/security_space_law,
-/obj/structure/table/wood,
-/turf/open/floor/carpet,
-/area/bridge/meeting_room)
-"bgn" = (
+"bda" = (
/obj/structure/chair/comfy/black{
- dir = 8
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/carpet,
/area/bridge/meeting_room)
-"bgo" = (
+"bdb" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/white/side{
+ dir = 2
+ },
+/area/hallway/primary/starboard)
+"bdc" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 0;
+ pixel_y = -30
+ },
+/obj/machinery/light,
+/turf/open/floor/plasteel/white/corner{
+ dir = 2
+ },
+/area/hallway/primary/starboard)
+"bdd" = (
+/obj/machinery/vending/cola/random,
+/turf/open/floor/wood,
+/area/bridge/meeting_room)
+"bde" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/wood,
-/area/bridge/meeting_room)
-"bgp" = (
-/obj/machinery/vending/cola,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
/turf/open/floor/wood,
/area/bridge/meeting_room)
-"bgq" = (
+"bdf" = (
/obj/machinery/airalarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23;
+ pixel_y = 0
},
/obj/machinery/porta_turret/ai{
dir = 4
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/ai_upload)
-"bgr" = (
-/turf/open/floor/plasteel/vault{
- dir = 8
- },
-/area/ai_monitored/turret_protected/ai_upload)
-"bgs" = (
+"bdg" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/open/floor/bluegrid,
/area/ai_monitored/turret_protected/ai_upload)
-"bgt" = (
+"bdh" = (
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/ai_monitored/turret_protected/ai_upload)
+"bdi" = (
/obj/machinery/computer/arcade,
/turf/open/floor/wood,
/area/crew_quarters/captain)
-"bgu" = (
-/obj/structure/table/wood,
-/turf/open/floor/carpet,
+"bdj" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
+ },
+/turf/open/floor/wood,
/area/crew_quarters/captain)
-"bgv" = (
+"bdk" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/wood,
+/area/crew_quarters/captain)
+"bdl" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"bdm" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"bdn" = (
/obj/machinery/camera{
c_tag = "Central Hallway East";
- dir = 4;
- network = list("SS13")
+ dir = 4;
+ network = list("SS13")
},
/obj/structure/disposalpipe/segment,
/obj/machinery/status_display{
density = 0;
- layer = 3;
- pixel_x = -32;
- pixel_y = 0
+ layer = 3;
+ pixel_x = -32;
+ pixel_y = 0
},
/turf/open/floor/plasteel/blue/corner{
dir = 8
},
/area/hallway/primary/central)
-"bgw" = (
+"bdo" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
/turf/open/floor/plasteel,
/area/hallway/primary/starboard)
-"bgx" = (
+"bdp" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"bdq" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
- on = 1
+ on = 1
},
/turf/open/floor/plasteel,
/area/hallway/primary/starboard)
-"bgy" = (
+"bdr" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
/turf/open/floor/plasteel,
/area/hallway/primary/starboard)
-"bgz" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bgA" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+"bds" = (
+/obj/machinery/camera{
+ c_tag = "Starboard Primary Hallway 4";
+ dir = 1
},
/turf/open/floor/plasteel,
/area/hallway/primary/starboard)
-"bgB" = (
+"bdt" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bgC" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/junction{
- dir = 8;
- icon_state = "pipe-j1"
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bgD" = (
-/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bgE" = (
+/turf/open/floor/plating,
+/area/maintenance/port)
+"bdu" = (
/obj/structure/disposalpipe/segment{
- dir = 4
+ dir = 1;
+ icon_state = "pipe-c"
},
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bgF" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/maintenance/port)
+"bdv" = (
/obj/machinery/navbeacon{
codes_txt = "patrol;next_patrol=HOP2";
- location = "Stbd"
+ location = "Stbd"
},
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel,
/area/hallway/primary/starboard)
-"bgG" = (
+"bdw" = (
/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bgH" = (
+/area/hallway/secondary/exit)
+"bdx" = (
/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"bgI" = (
+/area/hallway/primary/starboard)
+"bdy" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel,
/area/hallway/secondary/exit)
-"bgJ" = (
+"bdz" = (
/obj/structure/disposalpipe/segment{
dir = 2;
- icon_state = "pipe-c"
+ icon_state = "pipe-c"
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/hallway/secondary/exit)
-"bgK" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"bgL" = (
+"bdA" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 4;
- name = "Cargo Escape Airlock"
+ name = "Cargo Escape Airlock"
},
/turf/open/floor/plating,
/area/hallway/secondary/exit)
-"bgM" = (
-/obj/machinery/light/small,
-/turf/open/floor/plating,
-/area/hallway/secondary/exit)
-"bgN" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 8;
- name = "Cargo Escape Airlock"
+"bdB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/open/floor/plating,
-/area/hallway/secondary/exit)
-"bgO" = (
-/turf/open/floor/mineral/titanium/yellow,
-/area/shuttle/escape)
-"bgP" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
},
-/turf/open/floor/mineral/titanium/yellow,
-/area/shuttle/escape)
-"bgQ" = (
-/obj/machinery/sleeper{
- icon_state = "sleeper-open";
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"bgR" = (
-/obj/effect/turf_decal/stripes/corner{
- dir = 2
+/turf/open/floor/plating,
+/area/maintenance/port)
+"bdC" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/structure/disposalpipe/sortjunction{
+ dir = 1;
+ icon_state = "pipe-j2s";
+ sortType = 1
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/maintenance/port)
+"bdD" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
},
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"bgS" = (
-/turf/closed/wall,
-/area/maintenance/disposal)
-"bgT" = (
/obj/structure/disposalpipe/segment,
-/turf/closed/wall,
-/area/maintenance/disposal)
-"bgU" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall,
-/area/maintenance/disposal)
-"bgV" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/port)
+"bdE" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
+ },
+/turf/open/floor/plasteel/grimy,
+/area/security/detectives_office)
+"bdF" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/carpet,
+/area/bridge/meeting_room)
+"bdG" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/port)
-"bgW" = (
+"bdH" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/port)
-"bgX" = (
+"bdI" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/bridge/meeting_room)
+"bdJ" = (
/obj/machinery/door/airlock{
name = "Unit 3"
},
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/locker/locker_toilet)
-"bgY" = (
-/obj/effect/landmark{
- name = "xeno_spawn";
- pixel_x = -1
+"bdK" = (
+/obj/machinery/holopad,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet)
-"bgZ" = (
-/obj/item/latexballon,
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bha" = (
+/turf/open/floor/carpet,
+/area/bridge/meeting_room)
+"bdL" = (
/obj/effect/landmark{
name = "blobstart"
},
@@ -26038,79 +24733,128 @@
/obj/structure/closet,
/turf/open/floor/plating,
/area/maintenance/port)
-"bhb" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/crew_quarters/locker)
-"bhc" = (
+"bdM" = (
+/obj/item/latexballon,
+/turf/open/floor/plating,
+/area/maintenance/port)
+"bdN" = (
+/obj/machinery/door/airlock/medical{
+ name = "Morgue";
+ req_access_txt = "6"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"bdO" = (
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
},
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
+/area/maintenance/asmaint)
+"bdP" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/assembly/chargebay)
+"bdQ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/closed/wall,
+/area/maintenance/disposal)
+"bdR" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
/area/maintenance/port)
-"bhd" = (
+"bdS" = (
/obj/structure/closet/crate/internals,
/turf/open/floor/plasteel/floorgrime,
/area/quartermaster/storage)
-"bhe" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/storage)
-"bhf" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
+"bdT" = (
+/obj/machinery/power/apc{
dir = 8;
- on = 1
+ name = "Disposal APC";
+ pixel_x = -24;
+ pixel_y = 0
},
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"bdU" = (
+/obj/structure/closet/crate/medical,
/turf/open/floor/plasteel/floorgrime,
/area/quartermaster/storage)
-"bhg" = (
-/obj/structure/closet/crate,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/storage)
-"bhh" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall,
-/area/security/detectives_office)
-"bhi" = (
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bhj" = (
+"bdV" = (
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"bdW" = (
+/obj/item/clothing/gloves/color/rainbow,
+/obj/item/clothing/head/soft/rainbow,
+/obj/item/clothing/shoes/sneakers/rainbow,
+/obj/item/clothing/under/color/rainbow,
+/turf/open/floor/plating,
+/area/maintenance/port)
+"bdX" = (
/obj/item/weapon/storage/fancy/donut_box,
/obj/structure/table,
/turf/open/floor/wood,
/area/bridge/meeting_room)
-"bhk" = (
+"bdY" = (
/obj/item/weapon/paper_bin{
pixel_x = -3;
- pixel_y = 7
+ pixel_y = 7
},
/obj/item/weapon/pen,
/obj/structure/table/wood,
/turf/open/floor/carpet,
/area/bridge/meeting_room)
-"bhl" = (
-/obj/item/weapon/folder/blue,
-/obj/structure/table/wood,
-/turf/open/floor/carpet,
-/area/bridge/meeting_room)
-"bhm" = (
+"bdZ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/maintenance/port)
+"bea" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/port)
+"beb" = (
/obj/structure/table,
/obj/item/weapon/aiModule/core/full/asimov,
/obj/item/weapon/aiModule/core/freeformcore,
/obj/machinery/door/window{
base_state = "right";
- dir = 4;
- icon_state = "right";
- name = "Core Modules";
- req_access_txt = "20"
+ dir = 4;
+ icon_state = "right";
+ name = "Core Modules";
+ req_access_txt = "20"
},
/obj/structure/window/reinforced,
/obj/item/weapon/aiModule/core/full/corp,
@@ -26123,62 +24867,55 @@
/obj/item/weapon/aiModule/core/full/custom,
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/ai_upload)
-"bhn" = (
+"bec" = (
/obj/machinery/light,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/ai_upload)
-"bho" = (
-/obj/machinery/computer/upload/ai,
-/obj/machinery/flasher{
- id = "AI";
- pixel_x = 0;
- pixel_y = -21
- },
-/turf/open/floor/bluegrid,
-/area/ai_monitored/turret_protected/ai_upload)
-"bhp" = (
+"bed" = (
/obj/machinery/power/apc{
cell_type = 5000;
- dir = 2;
- name = "Upload APC";
- pixel_y = -24
+ dir = 2;
+ name = "Upload APC";
+ pixel_y = -24
},
/obj/structure/cable,
/turf/open/floor/bluegrid,
/area/ai_monitored/turret_protected/ai_upload)
-"bhq" = (
+"bee" = (
+/obj/machinery/computer/upload/ai,
+/obj/machinery/flasher{
+ id = "AI";
+ pixel_x = 0;
+ pixel_y = -21
+ },
+/turf/open/floor/bluegrid,
+/area/ai_monitored/turret_protected/ai_upload)
+"bef" = (
/obj/machinery/computer/upload/borg,
/obj/item/device/radio/intercom{
broadcasting = 1;
- frequency = 1447;
- listening = 0;
- name = "Station Intercom (AI Private)";
- pixel_y = -29
+ frequency = 1447;
+ listening = 0;
+ name = "Station Intercom (AI Private)";
+ pixel_y = -29
},
/turf/open/floor/bluegrid,
/area/ai_monitored/turret_protected/ai_upload)
-"bhr" = (
-/obj/machinery/light,
-/obj/machinery/atmospherics/components/unary/vent_pump{
- on = 1
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/ai_upload)
-"bhs" = (
+"beg" = (
/obj/structure/table,
/obj/item/weapon/aiModule/supplied/oxygen,
/obj/item/weapon/aiModule/zeroth/oneHuman,
/obj/machinery/door/window{
base_state = "left";
- dir = 8;
- icon_state = "left";
- name = "High-Risk Modules";
- req_access_txt = "20"
+ dir = 8;
+ icon_state = "left";
+ name = "High-Risk Modules";
+ req_access_txt = "20"
},
/obj/item/weapon/aiModule/reset/purge,
/obj/structure/window/reinforced,
@@ -26192,59 +24929,62 @@
/obj/item/weapon/aiModule/supplied/protectStation,
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/ai_upload)
-"bht" = (
+"beh" = (
+/obj/machinery/light,
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ on = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/ai_upload)
+"bei" = (
/obj/machinery/light{
icon_state = "tube1";
- dir = 8
+ dir = 8
},
/turf/open/floor/wood,
/area/crew_quarters/captain)
-"bhu" = (
-/obj/structure/chair,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+"bej" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/wood,
/area/crew_quarters/captain)
-"bhv" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
+"bek" = (
+/obj/structure/chair,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/wood,
/area/crew_quarters/captain)
-"bhw" = (
+"bel" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/captain)
-"bhx" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ dir = 6
},
-/turf/open/floor/carpet,
-/area/crew_quarters/captain)
-"bhy" = (
+/turf/open/floor/plating,
+/area/maintenance/port)
+"bem" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/open/floor/carpet,
/area/crew_quarters/captain)
-"bhz" = (
+"ben" = (
/obj/structure/table/wood,
/obj/machinery/camera{
c_tag = "Captain's Office";
- dir = 8
+ dir = 8
},
/obj/item/weapon/storage/lockbox/medal{
pixel_y = 0
},
/turf/open/floor/wood,
/area/crew_quarters/captain)
-"bhA" = (
+"beo" = (
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=Stbd";
+ location = "HOP"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bep" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/light{
dir = 8
@@ -26253,235 +24993,230 @@
dir = 8
},
/area/hallway/primary/central)
-"bhB" = (
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=Stbd";
- location = "HOP"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bhC" = (
+"beq" = (
/obj/structure/sign/directions/medical{
dir = 4;
- icon_state = "direction_med";
- pixel_x = 32;
- pixel_y = -24
+ icon_state = "direction_med";
+ pixel_x = 32;
+ pixel_y = -24
},
/obj/structure/sign/directions/science{
dir = 4;
- icon_state = "direction_sci";
- pixel_x = 32;
- pixel_y = -32
+ icon_state = "direction_sci";
+ pixel_x = 32;
+ pixel_y = -32
},
/obj/structure/sign/directions/engineering{
pixel_x = 32;
- pixel_y = -40
+ pixel_y = -40
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bhD" = (
+"ber" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 0;
- pixel_y = -30
+ pixel_y = -30
},
/turf/open/floor/plasteel,
/area/hallway/primary/starboard)
-"bhE" = (
+"bes" = (
/obj/machinery/light,
/turf/open/floor/plasteel/blue/corner,
/area/hallway/primary/starboard)
-"bhF" = (
+"bet" = (
/turf/open/floor/plasteel/blue/side{
dir = 0
},
/area/hallway/primary/starboard)
-"bhG" = (
+"beu" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/blue/side{
dir = 0
},
/area/hallway/primary/starboard)
-"bhH" = (
+"bev" = (
/obj/machinery/light,
/turf/open/floor/plasteel/blue/corner{
dir = 8
},
/area/hallway/primary/starboard)
-"bhI" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bhJ" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 0;
- pixel_y = -30
+"bew" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/machinery/light,
-/turf/open/floor/plasteel/white/corner{
- dir = 2
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/hallway/primary/starboard)
-"bhK" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/white/side{
- dir = 2
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
-/area/hallway/primary/starboard)
-"bhL" = (
+/turf/open/floor/plating,
+/area/maintenance/port)
+"bex" = (
+/obj/machinery/button/door{
+ id = "qm_warehouse";
+ name = "Warehouse Door Control";
+ pixel_x = -1;
+ pixel_y = -24;
+ req_access_txt = "31"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/obj/structure/closet/crate,
+/turf/open/floor/plasteel/floorgrime,
+/area/quartermaster/storage)
+"bey" = (
/turf/open/floor/plasteel/white/corner{
dir = 8
},
/area/hallway/primary/starboard)
-"bhM" = (
+"bez" = (
/obj/structure/cable{
d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d2 = 4;
+ icon_state = "2-4"
},
/turf/open/floor/plasteel,
/area/hallway/primary/starboard)
-"bhN" = (
+"beA" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "packageSort2"
+ },
+/obj/structure/plasticflaps,
+/turf/open/floor/plating,
+/area/quartermaster/office)
+"beB" = (
/obj/machinery/camera{
c_tag = "Starboard Primary Hallway 3";
- dir = 1
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bhO" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bhP" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/hallway/primary/starboard)
-"bhQ" = (
+"beC" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 8;
+ icon_state = "1-8"
},
/turf/open/floor/plasteel,
/area/hallway/primary/starboard)
-"bhR" = (
+"beD" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/obj/structure/closet/crate,
+/turf/open/floor/plasteel/floorgrime,
+/area/quartermaster/storage)
+"beE" = (
/obj/machinery/light,
/turf/open/floor/plasteel,
/area/hallway/primary/starboard)
-"bhS" = (
-/obj/machinery/camera{
- c_tag = "Starboard Primary Hallway 4";
- dir = 1
+"beF" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
},
-/turf/open/floor/plasteel,
-/area/hallway/primary/starboard)
-"bhT" = (
+/turf/open/floor/plasteel/brown{
+ dir = 1
+ },
+/area/quartermaster/office)
+"beG" = (
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/red/corner{
dir = 2
},
/area/hallway/secondary/exit)
-"bhU" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 5;
- pixel_y = -32
+"beH" = (
+/obj/machinery/newscaster{
+ pixel_y = -32
},
+/obj/machinery/light,
/turf/open/floor/plasteel/escape{
dir = 2
},
/area/hallway/secondary/exit)
-"bhV" = (
-/obj/machinery/newscaster{
+"beI" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 5;
pixel_y = -32
},
-/obj/machinery/light,
/turf/open/floor/plasteel/escape{
dir = 2
},
/area/hallway/secondary/exit)
-"bhW" = (
+"beJ" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/white/corner{
dir = 8
},
/area/hallway/secondary/exit)
-"bhX" = (
-/obj/structure/table,
-/obj/item/weapon/storage/firstaid/fire,
-/obj/item/weapon/storage/firstaid/regular{
- pixel_x = 2;
- pixel_y = 3
- },
-/obj/item/weapon/crowbar,
-/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/escape)
-"bhY" = (
+"beK" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 2;
- name = "Port Docking Bay 4";
- req_access_txt = "0"
+ name = "Port Docking Bay 4";
+ req_access_txt = "0"
},
/turf/open/floor/plating,
/area/hallway/secondary/entry)
-"bhZ" = (
+"beL" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 2;
- name = "Port Docking Bay 3";
- req_access_txt = "0"
+ name = "Port Docking Bay 3";
+ req_access_txt = "0"
},
/turf/open/floor/plating,
/area/hallway/secondary/entry)
-"bia" = (
-/obj/item/device/radio/intercom{
- name = "Station Intercom (General)";
- pixel_y = -29
- },
+"beM" = (
/obj/structure/chair{
dir = 1
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"bib" = (
+"beN" = (
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -29
+ },
/obj/structure/chair{
dir = 1
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"bic" = (
+"beO" = (
+/turf/closed/wall,
+/area/maintenance/disposal)
+"beP" = (
+/obj/machinery/conveyor{
+ dir = 8;
+ id = "garbage"
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"beQ" = (
/obj/structure/disposaloutlet{
dir = 4
},
@@ -26493,218 +25228,200 @@
},
/turf/open/floor/plating,
/area/maintenance/disposal)
-"bid" = (
+"beR" = (
/obj/machinery/conveyor{
dir = 8;
- id = "garbage"
+ id = "garbage"
+ },
+/obj/machinery/recycler,
+/obj/structure/sign/securearea{
+ name = "\improper STAY CLEAR HEAVY MACHINERY";
+ pixel_y = 32
},
/turf/open/floor/plating,
/area/maintenance/disposal)
-"bie" = (
+"beS" = (
/obj/machinery/conveyor{
dir = 8;
- id = "garbage"
+ id = "garbage"
},
/obj/machinery/light/small{
dir = 1
},
/turf/open/floor/plating,
/area/maintenance/disposal)
-"bif" = (
+"beT" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall,
+/area/maintenance/disposal)
+"beU" = (
/obj/machinery/conveyor{
- dir = 8;
- id = "garbage"
- },
-/obj/machinery/recycler,
-/obj/structure/sign/securearea{
- name = "\improper STAY CLEAR HEAVY MACHINERY";
- pixel_y = 32
+ dir = 6;
+ id = "garbage";
+ verted = -1
},
/turf/open/floor/plating,
/area/maintenance/disposal)
-"big" = (
-/obj/machinery/conveyor{
- dir = 6;
- id = "garbage";
- verted = -1
- },
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bih" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bii" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bij" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+"beV" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bik" = (
-/obj/structure/disposalpipe/segment{
+/turf/closed/wall,
+/area/quartermaster/office)
+"beW" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+/obj/structure/filingcabinet/filingcabinet,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
},
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bil" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+/turf/open/floor/plasteel/brown{
+ dir = 1
},
-/obj/structure/disposalpipe/sortjunction{
- dir = 1;
- icon_state = "pipe-j2s";
- sortType = 1
+/area/quartermaster/office)
+"beX" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"beY" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"beZ" = (
+/obj/machinery/mineral/stacking_unit_console{
+ dir = 2;
+ machinedir = 8
},
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bim" = (
+/turf/closed/wall,
+/area/maintenance/disposal)
+"bfa" = (
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/locker/locker_toilet)
-"bin" = (
-/obj/machinery/camera{
- c_tag = "Locker Room Toilets";
- dir = 8;
- network = list("SS13")
+"bfb" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 0;
+ pixel_y = 32
},
/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/locker/locker_toilet)
-"bio" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/chapel/main)
+"bfc" = (
/obj/machinery/power/apc{
dir = 1;
- name = "Locker Room APC";
- pixel_x = 0;
- pixel_y = 24
+ name = "Locker Room APC";
+ pixel_x = 0;
+ pixel_y = 24
},
/obj/structure/cable{
icon_state = "0-2";
- d2 = 2
+ d2 = 2
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
/turf/open/floor/plating,
/area/crew_quarters/locker)
-"bip" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"biq" = (
+"bfd" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/port)
-"bir" = (
+"bfe" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/port)
-"bis" = (
+"bff" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
/turf/open/floor/plating,
/area/maintenance/port)
-"bit" = (
-/obj/structure/closet/crate/medical,
-/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/storage)
-"biu" = (
+"bfg" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/item/stack/sheet/cardboard,
/turf/open/floor/plasteel/floorgrime,
/area/quartermaster/storage)
-"biv" = (
-/obj/item/clothing/gloves/color/rainbow,
-/obj/item/clothing/head/soft/rainbow,
-/obj/item/clothing/shoes/sneakers/rainbow,
-/obj/item/clothing/under/color/rainbow,
+"bfh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/light/small,
/turf/open/floor/plating,
/area/maintenance/port)
-"biw" = (
+"bfi" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/floorgrime,
+/area/quartermaster/storage)
+"bfj" = (
/obj/structure/disposalpipe/trunk,
/obj/structure/disposaloutlet{
dir = 4
},
/turf/open/floor/plating,
/area/quartermaster/office)
-"bix" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "packageSort2"
+"bfk" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "Cargo Bay APC";
+ pixel_x = 1;
+ pixel_y = -24
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
/turf/open/floor/plating,
+/area/maintenance/port)
+"bfl" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
/area/quartermaster/office)
-"biy" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "packageSort2"
- },
-/obj/structure/plasticflaps,
+"bfm" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/quartermaster/office)
-"biz" = (
+"bfn" = (
/obj/machinery/disposal/deliveryChute{
dir = 8
},
@@ -26713,467 +25430,425 @@
},
/turf/open/floor/plating,
/area/quartermaster/office)
-"biA" = (
-/turf/closed/wall,
-/area/quartermaster/office)
-"biB" = (
+"bfo" = (
/turf/open/floor/plasteel/brown/corner{
dir = 8
},
/area/hallway/primary/central)
-"biC" = (
+"bfp" = (
/obj/machinery/requests_console{
announcementConsole = 1;
- department = "Bridge";
- departmentType = 5;
- name = "Bridge RC";
- pixel_y = -30
+ department = "Bridge";
+ departmentType = 5;
+ name = "Bridge RC";
+ pixel_y = -30
},
/obj/machinery/light,
/turf/open/floor/wood,
/area/bridge/meeting_room)
-"biD" = (
-/turf/open/floor/carpet,
-/area/bridge/meeting_room)
-"biE" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/carpet,
-/area/bridge/meeting_room)
-"biF" = (
-/obj/machinery/holopad,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/carpet,
-/area/bridge/meeting_room)
-"biG" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
+"bfq" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
},
-/turf/open/floor/carpet,
-/area/bridge/meeting_room)
-"biH" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/port)
+"bfr" = (
/obj/structure/noticeboard{
dir = 8;
- pixel_x = 27;
- pixel_y = 0
+ pixel_x = 27;
+ pixel_y = 0
},
/turf/open/floor/wood,
/area/bridge/meeting_room)
-"biI" = (
+"bfs" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/ai_upload)
-"biJ" = (
+"bft" = (
+/obj/machinery/ai_status_display,
+/turf/closed/wall/r_wall,
+/area/ai_monitored/turret_protected/ai_upload)
+"bfu" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/ai_upload)
-"biK" = (
-/obj/machinery/ai_status_display,
-/turf/closed/wall/r_wall,
-/area/ai_monitored/turret_protected/ai_upload)
-"biL" = (
+"bfv" = (
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/ai_upload)
-"biM" = (
+"bfw" = (
/obj/machinery/status_display{
density = 0;
- layer = 4
+ layer = 4
},
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/ai_upload)
-"biN" = (
+"bfx" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/ai_upload)
-"biO" = (
+"bfy" = (
+/obj/structure/table/wood,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
+ },
+/obj/item/weapon/pen,
+/turf/open/floor/wood,
+/area/crew_quarters/captain)
+"bfz" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/ai_upload)
-"biP" = (
+"bfA" = (
/obj/structure/table/wood,
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
-/obj/item/weapon/pen,
+/obj/item/weapon/hand_tele,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/wood,
/area/crew_quarters/captain)
-"biQ" = (
+"bfB" = (
/obj/structure/table/wood,
/obj/item/weapon/folder/blue,
/obj/item/weapon/stamp/captain,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/wood,
/area/crew_quarters/captain)
-"biR" = (
-/obj/structure/table/wood,
-/obj/item/weapon/hand_tele,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/wood,
-/area/crew_quarters/captain)
-"biS" = (
+"bfC" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp/green,
/turf/open/floor/wood,
/area/crew_quarters/captain)
-"biT" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/wood,
-/area/crew_quarters/captain)
-"biU" = (
+"bfD" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/open/floor/wood,
/area/crew_quarters/captain)
-"biV" = (
-/mob/living/simple_animal/pet/fox/Renault,
-/turf/open/floor/wood,
-/area/crew_quarters/captain)
-"biW" = (
+"bfE" = (
/obj/structure/table/wood,
/obj/item/weapon/pinpointer,
/obj/item/weapon/disk/nuclear,
/obj/item/weapon/storage/secure/safe{
pixel_x = 35;
- pixel_y = 5
+ pixel_y = 5
},
/obj/machinery/light{
dir = 4;
- icon_state = "tube1"
+ icon_state = "tube1"
},
/turf/open/floor/wood,
/area/crew_quarters/captain)
-"biX" = (
+"bfF" = (
/turf/closed/wall,
/area/medical/chemistry)
-"biY" = (
-/obj/structure/sign/bluecross_2,
-/turf/closed/wall,
-/area/medical/medbay)
-"biZ" = (
+"bfG" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
/turf/open/floor/plating,
/area/medical/medbay)
-"bja" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/white,
+"bfH" = (
+/obj/structure/sign/bluecross_2,
+/turf/closed/wall,
/area/medical/medbay)
-"bjb" = (
+"bfI" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/port)
+"bfJ" = (
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bjc" = (
+"bfK" = (
/turf/closed/wall,
/area/security/checkpoint/medical)
-"bjd" = (
+"bfL" = (
/turf/closed/wall,
/area/medical/morgue)
-"bje" = (
-/obj/machinery/door/airlock/medical{
- name = "Morgue";
- req_access_txt = "6"
+"bfM" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"bjf" = (
+/turf/open/floor/plating,
+/area/maintenance/port)
+"bfN" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bfO" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plasteel,
/area/hallway/primary/starboard)
-"bjg" = (
+"bfP" = (
/obj/machinery/power/apc{
dir = 2;
- name = "Starboard Primary Hallway APC";
- pixel_y = -24
+ name = "Starboard Primary Hallway APC";
+ pixel_y = -24
},
/obj/structure/cable,
/turf/open/floor/plasteel,
/area/hallway/primary/starboard)
-"bjh" = (
-/turf/closed/wall,
-/area/storage/emergency)
-"bji" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+"bfQ" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bjj" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/area/quartermaster/office)
+"bfR" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/folder/yellow,
+/obj/item/weapon/paper_bin{
+ pixel_x = 1;
+ pixel_y = 9
+ },
+/obj/item/weapon/pen,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bfS" = (
+/turf/closed/wall,
+/area/storage/emergency)
+"bfT" = (
/turf/closed/wall,
/area/assembly/chargebay)
-"bjk" = (
+"bfU" = (
/turf/open/floor/plasteel/loadingarea{
dir = 1
},
/area/hallway/primary/starboard)
-"bjl" = (
+"bfV" = (
/turf/closed/wall/r_wall,
/area/assembly/robotics)
-"bjm" = (
+"bfW" = (
/turf/open/floor/plasteel/purple/side{
dir = 10
},
/area/hallway/primary/starboard)
-"bjn" = (
+"bfX" = (
/turf/open/floor/plasteel/purple/side{
dir = 2
},
/area/hallway/primary/starboard)
-"bjo" = (
+"bfY" = (
/obj/item/device/radio/intercom{
name = "Station Intercom (General)";
- pixel_y = -29
+ pixel_y = -29
},
/turf/open/floor/plasteel/purple/side{
dir = 2
},
/area/hallway/primary/starboard)
-"bjp" = (
+"bfZ" = (
/obj/structure/sign/securearea{
pixel_x = 0;
- pixel_y = -32
+ pixel_y = -32
},
/turf/open/floor/plasteel/purple/side{
dir = 2
},
/area/hallway/primary/starboard)
-"bjq" = (
+"bga" = (
/obj/machinery/light,
/turf/open/floor/plasteel/purple/side{
dir = 2
},
/area/hallway/primary/starboard)
-"bjr" = (
+"bgb" = (
/turf/open/floor/plasteel/purple/side{
dir = 6
},
/area/hallway/primary/starboard)
-"bjs" = (
+"bgc" = (
/turf/closed/wall/r_wall,
/area/toxins/lab)
-"bjt" = (
+"bgd" = (
+/obj/machinery/airalarm{
+ dir = 1;
+ icon_state = "alarm0";
+ pixel_y = -22
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/escape{
+ dir = 2
+ },
+/area/hallway/secondary/exit)
+"bge" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/escape{
dir = 10
},
/area/hallway/secondary/exit)
-"bju" = (
-/obj/machinery/airalarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/escape{
- dir = 2
+"bgf" = (
+/obj/structure/closet/emcloset,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
},
+/turf/open/floor/plasteel,
/area/hallway/secondary/exit)
-"bjv" = (
+"bgg" = (
/obj/structure/closet/emcloset,
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
/area/hallway/secondary/exit)
-"bjw" = (
-/obj/structure/closet/emcloset,
+"bgh" = (
+/obj/machinery/vending/cigarette,
/obj/effect/turf_decal/stripes/line{
dir = 6
},
/turf/open/floor/plasteel,
-/area/hallway/secondary/exit)
-"bjx" = (
-/obj/structure/closet,
-/turf/open/floor/mineral/titanium/yellow,
-/area/shuttle/escape)
-"bjy" = (
-/obj/structure/closet/crate,
-/turf/open/floor/mineral/titanium/yellow,
-/area/shuttle/escape)
-"bjz" = (
+/area/hallway/secondary/entry)
+"bgi" = (
/obj/machinery/camera{
c_tag = "Arrivals Bay 3 & 4";
- dir = 1
+ dir = 1
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
/area/hallway/secondary/entry)
-"bjA" = (
-/obj/machinery/vending/cigarette,
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/hallway/secondary/entry)
-"bjB" = (
+"bgj" = (
/obj/machinery/conveyor{
- dir = 5;
- id = "garbage"
+ dir = 4;
+ id = "garbage"
},
/turf/open/floor/plating,
/area/maintenance/disposal)
-"bjC" = (
+"bgk" = (
/obj/machinery/conveyor{
- dir = 4;
- id = "garbage"
+ dir = 5;
+ id = "garbage"
},
/turf/open/floor/plating,
/area/maintenance/disposal)
-"bjD" = (
+"bgl" = (
/obj/machinery/conveyor{
dir = 10;
- id = "garbage";
- verted = -1
+ id = "garbage";
+ verted = -1
},
/turf/open/floor/plating,
/area/maintenance/disposal)
-"bjE" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
+"bgm" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
},
-/turf/closed/wall,
-/area/maintenance/disposal)
-"bjF" = (
-/obj/machinery/power/apc{
- dir = 8;
- name = "Disposal APC";
- pixel_x = -24;
- pixel_y = 0
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bgn" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/brown/corner{
+ dir = 8
},
+/area/hallway/primary/central)
+"bgo" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "Mech Bay APC";
+ pixel_x = 26;
+ pixel_y = 0
},
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bjG" = (
+/area/assembly/chargebay)
+"bgp" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ on = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"bgq" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bjH" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bjI" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/port)
-"bjJ" = (
+"bgr" = (
/obj/machinery/door/airlock{
name = "Unit 4"
},
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/locker/locker_toilet)
-"bjK" = (
+"bgs" = (
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
+ icon_state = "alarm0";
+ pixel_y = -22
},
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/locker/locker_toilet)
-"bjL" = (
+"bgt" = (
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/port)
-"bjM" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bjN" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bjO" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+"bgu" = (
+/obj/machinery/button/door{
+ id = "qm_warehouse";
+ name = "Warehouse Door Control";
+ pixel_x = -1;
+ pixel_y = 24;
+ req_access_txt = "31"
},
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bjP" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"bgv" = (
+/obj/structure/disposalpipe/segment,
+/turf/closed/wall,
+/area/quartermaster/office)
+"bgw" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -27181,11 +25856,11 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/port)
-"bjQ" = (
+"bgx" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -27195,90 +25870,49 @@
},
/turf/open/floor/plating,
/area/maintenance/port)
-"bjR" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/power/apc{
- dir = 2;
- name = "Cargo Bay APC";
- pixel_x = 1;
- pixel_y = -24
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bjS" = (
+"bgy" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
/turf/closed/wall,
/area/maintenance/port)
-"bjT" = (
-/obj/structure/closet/cardboard,
-/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/storage)
-"bjU" = (
-/obj/machinery/button/door{
- id = "qm_warehouse";
- name = "Warehouse Door Control";
- pixel_x = -1;
- pixel_y = -24;
- req_access_txt = "31"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/obj/structure/closet/crate,
-/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/storage)
-"bjV" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/obj/structure/closet/crate,
+"bgz" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bgA" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/floorgrime,
/area/quartermaster/storage)
-"bjW" = (
+"bgB" = (
/obj/structure/disposalpipe/segment{
dir = 4;
- icon_state = "pipe-c"
+ icon_state = "pipe-c"
},
/turf/closed/wall,
/area/quartermaster/storage)
-"bjX" = (
+"bgC" = (
/obj/structure/disposalpipe/segment{
dir = 8;
- icon_state = "pipe-c"
+ icon_state = "pipe-c"
},
/turf/closed/wall,
/area/quartermaster/office)
-"bjY" = (
+"bgD" = (
/obj/machinery/conveyor_switch/oneway{
id = "packageSort2"
},
/obj/machinery/camera{
c_tag = "Cargo Delivery Office";
- dir = 4;
- network = list("SS13")
+ dir = 4;
+ network = list("SS13")
},
/obj/machinery/requests_console{
department = "Cargo Bay";
- departmentType = 2;
- pixel_x = -30;
- pixel_y = 0
+ departmentType = 2;
+ pixel_x = -30;
+ pixel_y = 0
},
/obj/machinery/light{
dir = 8
@@ -27287,139 +25921,117 @@
dir = 1
},
/area/quartermaster/office)
-"bjZ" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/open/floor/plasteel/brown{
- dir = 1
- },
-/area/quartermaster/office)
-"bka" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/brown{
- dir = 1
- },
-/area/quartermaster/office)
-"bkb" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
- },
-/turf/open/floor/plasteel/brown{
- dir = 1
- },
-/area/quartermaster/office)
-"bkc" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/window/reinforced{
- dir = 1;
- layer = 2.9
+"bgE" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
},
-/obj/structure/filingcabinet/filingcabinet,
-/obj/machinery/firealarm{
+/obj/machinery/airalarm{
dir = 4;
- pixel_x = 24
- },
-/turf/open/floor/plasteel/brown{
- dir = 1
- },
-/area/quartermaster/office)
-"bkd" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+ locked = 0;
+ pixel_x = -23;
+ pixel_y = 0
},
-/turf/closed/wall,
+/turf/open/floor/plasteel,
/area/quartermaster/office)
-"bke" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/brown/corner{
- dir = 8
- },
-/area/hallway/primary/central)
-"bkf" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
+"bgF" = (
+/obj/structure/table/glass,
+/obj/machinery/reagentgrinder,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27;
+ pixel_y = 0
},
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bkg" = (
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"bgG" = (
/obj/machinery/camera{
c_tag = "Central Hallway West";
- dir = 8
+ dir = 8
},
/turf/open/floor/plasteel/blue/corner,
/area/hallway/primary/central)
-"bkh" = (
+"bgH" = (
/obj/machinery/door/window/eastright{
dir = 1;
- name = "Bridge Delivery";
- req_access_txt = "19"
+ name = "Bridge Delivery";
+ req_access_txt = "19"
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
/area/bridge/meeting_room)
-"bki" = (
+"bgI" = (
+/obj/machinery/computer/slot_machine,
+/turf/open/floor/wood,
+/area/bridge/meeting_room)
+"bgJ" = (
/obj/structure/reagent_dispensers/water_cooler,
/turf/open/floor/wood,
/area/bridge/meeting_room)
-"bkj" = (
-/obj/machinery/computer/slot_machine,
+"bgK" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/wood,
/area/bridge/meeting_room)
-"bkk" = (
+"bgL" = (
/obj/machinery/computer/security/telescreen/entertainment{
pixel_x = 0;
- pixel_y = -32
+ pixel_y = -32
},
/turf/open/floor/wood,
/area/bridge/meeting_room)
-"bkl" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/wood,
-/area/bridge/meeting_room)
-"bkm" = (
+"bgM" = (
/obj/machinery/vending/coffee,
/obj/machinery/light{
dir = 4
},
/turf/open/floor/wood,
/area/bridge/meeting_room)
-"bkn" = (
+"bgN" = (
+/turf/open/floor/plasteel/black,
+/area/engine/gravity_generator)
+"bgO" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall/r_wall,
/area/engine/gravity_generator)
-"bko" = (
-/turf/open/floor/plasteel/black,
-/area/engine/gravity_generator)
-"bkp" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+"bgP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"bgQ" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 2
+ },
+/area/medical/medbay)
+"bgR" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
/turf/closed/wall/r_wall,
/area/engine/gravity_generator)
-"bkq" = (
+"bgS" = (
/obj/machinery/requests_console{
announcementConsole = 1;
- department = "Captain's Desk";
- departmentType = 5;
- name = "Captain RC";
- pixel_x = -30;
- pixel_y = 0
+ department = "Captain's Desk";
+ departmentType = 5;
+ name = "Captain RC";
+ pixel_x = -30;
+ pixel_y = 0
},
/obj/structure/filingcabinet,
/turf/open/floor/wood,
/area/crew_quarters/captain)
-"bkr" = (
+"bgT" = (
+/obj/machinery/computer/communications,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/wood,
+/area/crew_quarters/captain)
+"bgU" = (
/obj/structure/chair/comfy/brown{
dir = 4
},
@@ -27429,32 +26041,27 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/wood,
/area/crew_quarters/captain)
-"bks" = (
-/obj/machinery/computer/communications,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/wood,
-/area/crew_quarters/captain)
-"bkt" = (
+"bgV" = (
/obj/structure/table/wood,
/obj/item/weapon/book/manual/wiki/security_space_law,
/obj/item/weapon/coin/plasma,
/turf/open/floor/wood,
/area/crew_quarters/captain)
-"bku" = (
+"bgW" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/holopad,
/turf/open/floor/wood,
/area/crew_quarters/captain)
-"bkv" = (
+"bgX" = (
/obj/structure/table/wood,
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
+ icon_state = "alarm0";
+ pixel_x = 24
},
/obj/item/device/camera,
/obj/item/weapon/storage/photo_album{
@@ -27462,128 +26069,132 @@
},
/turf/open/floor/wood,
/area/crew_quarters/captain)
-"bkw" = (
+"bgY" = (
/obj/machinery/firealarm{
dir = 4;
- pixel_x = 24
+ pixel_x = 24
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bkx" = (
-/obj/structure/closet/secure_closet/chemical,
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"bky" = (
+"bgZ" = (
/obj/machinery/power/apc{
dir = 1;
- name = "Chemistry APC";
- pixel_y = 24
+ name = "Chemistry APC";
+ pixel_y = 24
},
/obj/structure/cable{
icon_state = "0-2";
- d2 = 2
+ d2 = 2
},
/mob/living/simple_animal/bot/cleanbot{
name = "C.L.E.A.N."
},
/turf/open/floor/plasteel/white,
/area/medical/chemistry)
-"bkz" = (
+"bha" = (
+/obj/structure/closet/secure_closet/chemical,
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"bhb" = (
+/obj/machinery/chem_dispenser,
+/turf/open/floor/plasteel/whiteyellow/side{
+ dir = 1
+ },
+/area/medical/chemistry)
+"bhc" = (
/obj/machinery/camera{
c_tag = "Chemistry";
- dir = 2;
- network = list("SS13")
+ dir = 2;
+ network = list("SS13")
},
/obj/machinery/firealarm{
dir = 2;
- pixel_y = 24
+ pixel_y = 24
},
/obj/machinery/chem_heater,
/turf/open/floor/plasteel/white,
/area/medical/chemistry)
-"bkA" = (
-/obj/machinery/chem_dispenser,
-/turf/open/floor/plasteel/whiteyellow/side{
- dir = 1
- },
-/area/medical/chemistry)
-"bkB" = (
+"bhd" = (
/obj/machinery/chem_master,
/turf/open/floor/plasteel/whiteyellow/side{
dir = 5
},
/area/medical/chemistry)
-"bkC" = (
+"bhe" = (
+/obj/structure/chair,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay)
+"bhf" = (
/obj/structure/table,
/obj/item/weapon/storage/firstaid/regular{
pixel_x = 0;
- pixel_y = 0
+ pixel_y = 0
},
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bkD" = (
-/obj/structure/chair,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bkE" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/white,
+"bhg" = (
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 2
+ },
/area/medical/medbay)
-"bkF" = (
+"bhh" = (
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bkG" = (
+"bhi" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/security/checkpoint/medical)
-"bkH" = (
+"bhj" = (
+/obj/machinery/camera{
+ c_tag = "Security Post - Medbay";
+ dir = 2;
+ network = list("SS13")
+ },
+/obj/machinery/requests_console{
+ department = "Security";
+ departmentType = 5;
+ pixel_y = 30
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 1
+ },
+/area/security/checkpoint/medical)
+"bhk" = (
/obj/structure/table,
/obj/item/weapon/paper_bin{
pixel_x = 1;
- pixel_y = 9
+ pixel_y = 9
},
/obj/item/weapon/pen,
/obj/machinery/button/door{
desc = "A remote control switch for the medbay foyer.";
- id = "MedbayFoyer";
- name = "Medbay Doors Control";
- normaldoorcontrol = 1;
- pixel_x = 0;
- pixel_y = 26;
- req_access_txt = "5"
+ id = "MedbayFoyer";
+ name = "Medbay Doors Control";
+ normaldoorcontrol = 1;
+ pixel_x = 0;
+ pixel_y = 26;
+ req_access_txt = "5"
},
/obj/item/weapon/book/manual/wiki/security_space_law,
/turf/open/floor/plasteel/red/side{
dir = 9
},
/area/security/checkpoint/medical)
-"bkI" = (
-/obj/machinery/camera{
- c_tag = "Security Post - Medbay";
- dir = 2;
- network = list("SS13")
- },
-/obj/machinery/requests_console{
- department = "Security";
- departmentType = 5;
- pixel_y = 30
- },
-/turf/open/floor/plasteel/red/side{
- dir = 1
- },
-/area/security/checkpoint/medical)
-"bkJ" = (
+"bhl" = (
/obj/structure/filingcabinet,
/obj/machinery/newscaster{
pixel_x = 32;
- pixel_y = 0
+ pixel_y = 0
},
/turf/open/floor/plasteel/red/side{
dir = 5
},
/area/security/checkpoint/medical)
-"bkK" = (
+"bhm" = (
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"bhn" = (
/obj/structure/table,
/obj/item/weapon/storage/box/bodybags,
/obj/item/weapon/pen,
@@ -27592,179 +26203,162 @@
},
/turf/open/floor/plasteel/black,
/area/medical/morgue)
-"bkL" = (
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"bkM" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"bkN" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
+"bho" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/black,
/area/medical/morgue)
-"bkO" = (
+"bhp" = (
/obj/machinery/power/apc{
dir = 1;
- name = "Morgue APC";
- pixel_y = 24
+ name = "Morgue APC";
+ pixel_y = 24
},
/obj/structure/cable{
icon_state = "0-2";
- d2 = 2
+ d2 = 2
},
/turf/open/floor/plasteel/black,
/area/medical/morgue)
-"bkP" = (
+"bhq" = (
/obj/machinery/light/small{
dir = 4
},
/turf/open/floor/plasteel/black,
/area/medical/morgue)
-"bkQ" = (
+"bhr" = (
/obj/machinery/door/airlock{
name = "Starboard Emergency Storage";
- req_access_txt = "0"
+ req_access_txt = "0"
},
/turf/open/floor/plating,
/area/storage/emergency)
-"bkR" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+"bhs" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bkS" = (
-/turf/closed/wall,
-/area/assembly/chargebay)
-"bkT" = (
+/turf/open/floor/plasteel,
+/area/security/checkpoint/medical)
+"bht" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research{
name = "Mech Bay";
- req_access_txt = "29";
- req_one_access_txt = "0"
+ req_access_txt = "29";
+ req_one_access_txt = "0"
},
/turf/open/floor/plasteel,
/area/assembly/chargebay)
-"bkU" = (
+"bhu" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/poddoor/shutters{
id = "Skynet_launch";
- name = "mech bay"
+ name = "mech bay"
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
/area/assembly/chargebay)
-"bkV" = (
+"bhv" = (
/obj/machinery/computer/rdconsole/robotics,
/obj/machinery/airalarm{
pixel_y = 25
},
/turf/open/floor/plasteel/white,
/area/assembly/robotics)
-"bkW" = (
+"bhw" = (
+/obj/machinery/r_n_d/circuit_imprinter,
+/turf/open/floor/plasteel/white,
+/area/assembly/robotics)
+"bhx" = (
/obj/structure/table,
/obj/item/weapon/book/manual/robotics_cyborgs{
pixel_x = 2;
- pixel_y = 5
+ pixel_y = 5
},
/obj/item/weapon/storage/belt/utility,
/obj/item/weapon/reagent_containers/glass/beaker/large,
/obj/machinery/requests_console{
department = "Robotics";
- departmentType = 2;
- name = "Robotics RC";
- pixel_y = 30
+ departmentType = 2;
+ name = "Robotics RC";
+ pixel_y = 30
},
/obj/machinery/light{
dir = 1
},
/turf/open/floor/plasteel/white,
/area/assembly/robotics)
-"bkX" = (
-/obj/machinery/r_n_d/circuit_imprinter,
-/turf/open/floor/plasteel/white,
-/area/assembly/robotics)
-"bkY" = (
+"bhy" = (
/obj/structure/grille,
/obj/machinery/door/poddoor/shutters/preopen{
id = "robotics";
- name = "robotics lab shutters"
+ name = "robotics lab shutters"
},
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/assembly/robotics)
-"bkZ" = (
+"bhz" = (
/obj/structure/table/reinforced,
/obj/machinery/door/window/eastright{
base_state = "left";
- dir = 2;
- icon_state = "left";
- name = "Robotics Desk";
- req_access_txt = "29"
+ dir = 2;
+ icon_state = "left";
+ name = "Robotics Desk";
+ req_access_txt = "29"
},
/obj/item/weapon/paper_bin{
pixel_x = -3;
- pixel_y = 7
+ pixel_y = 7
},
/obj/item/weapon/pen,
/obj/machinery/door/poddoor/shutters/preopen{
id = "robotics";
- name = "robotics lab shutters"
+ name = "robotics lab shutters"
},
/turf/open/floor/plating,
/area/assembly/robotics)
-"bla" = (
+"bhA" = (
/turf/closed/wall,
/area/medical/research{
name = "Research Division"
})
-"blb" = (
+"bhB" = (
/obj/machinery/door/airlock/research{
cyclelinkeddir = 2;
- name = "Research Division Access";
- req_access_txt = "47"
+ name = "Research Division Access";
+ req_access_txt = "47"
},
/turf/open/floor/plasteel/white,
/area/medical/research{
name = "Research Division"
})
-"blc" = (
+"bhC" = (
/obj/structure/grille,
/obj/machinery/door/poddoor/shutters/preopen{
id = "rnd";
- name = "research lab shutters"
+ name = "research lab shutters"
},
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/toxins/lab)
-"bld" = (
+"bhD" = (
/obj/structure/table/reinforced,
/obj/machinery/door/window/southright{
name = "Research and Development Desk";
- req_access_txt = "7"
+ req_access_txt = "7"
},
/obj/machinery/door/poddoor/shutters/preopen{
id = "rnd";
- name = "research lab shutters"
+ name = "research lab shutters"
},
/turf/open/floor/plating,
/area/toxins/lab)
-"ble" = (
+"bhE" = (
/obj/structure/table,
/obj/item/stack/sheet/glass{
amount = 50;
- pixel_x = 3;
- pixel_y = 3
+ pixel_x = 3;
+ pixel_y = 3
},
/obj/item/stack/sheet/metal{
amount = 50
@@ -27772,69 +26366,46 @@
/obj/item/clothing/glasses/welding,
/turf/open/floor/plasteel/white,
/area/toxins/lab)
-"blf" = (
+"bhF" = (
/obj/structure/table,
/obj/item/weapon/storage/toolbox/mechanical{
pixel_x = 2;
- pixel_y = 3
+ pixel_y = 3
},
/obj/item/weapon/storage/toolbox/mechanical{
pixel_x = -2;
- pixel_y = -1
+ pixel_y = -1
},
/obj/machinery/light{
dir = 1
},
/turf/open/floor/plasteel/white,
/area/toxins/lab)
-"blg" = (
+"bhG" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/maintenance/asmaint2)
+"bhH" = (
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"blh" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/maintenance/asmaint2)
-"bli" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/shuttle/engine/heater,
-/turf/open/floor/plating/airless,
-/area/shuttle/escape)
-"blj" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 1;
- name = "Port Docking Bay 4";
- req_access_txt = "0"
- },
-/turf/open/floor/plating,
-/area/hallway/secondary/entry)
-"blk" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 1;
- name = "Port Docking Bay 3";
- req_access_txt = "0"
- },
-/turf/open/floor/plating,
-/area/hallway/secondary/entry)
-"bll" = (
+"bhI" = (
/obj/machinery/conveyor{
dir = 1;
- id = "garbage"
+ id = "garbage"
},
/turf/open/floor/plating,
/area/maintenance/disposal)
-"blm" = (
+"bhJ" = (
/obj/structure/disposalpipe/trunk{
dir = 2
},
@@ -27850,50 +26421,66 @@
},
/obj/machinery/door/window{
base_state = "right";
- dir = 4;
- icon_state = "right";
- layer = 3
+ dir = 4;
+ icon_state = "right";
+ layer = 3
},
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/disposal)
-"bln" = (
+"bhK" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/assembly/chargebay)
+"bhL" = (
/obj/machinery/mineral/stacking_machine{
input_dir = 1;
- stack_amt = 10
+ stack_amt = 10
},
/turf/open/floor/plating,
/area/maintenance/disposal)
-"blo" = (
-/obj/machinery/mineral/stacking_unit_console{
- dir = 2;
- machinedir = 8
+"bhM" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/turf/closed/wall,
-/area/maintenance/disposal)
-"blp" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/light/small,
-/turf/open/floor/plating,
-/area/maintenance/port)
-"blq" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/assembly/chargebay)
+"bhN" = (
/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/port)
-"blr" = (
+"bhO" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -27901,36 +26488,44 @@
},
/turf/open/floor/plating,
/area/maintenance/port)
-"bls" = (
+"bhP" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/white,
+/area/assembly/robotics)
+"bhQ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall,
/area/crew_quarters/locker/locker_toilet)
-"blt" = (
+"bhR" = (
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/obj/structure/window{
icon_state = "window";
- dir = 8
+ dir = 1
},
+/obj/structure/window,
/turf/open/floor/plating,
/area/maintenance/port)
-"blu" = (
+"bhS" = (
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/obj/structure/window{
icon_state = "window";
- dir = 1
+ dir = 8
},
-/obj/structure/window,
/turf/open/floor/plating,
/area/maintenance/port)
-"blv" = (
+"bhT" = (
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -27938,26 +26533,23 @@
/obj/structure/window,
/turf/open/floor/plating,
/area/maintenance/port)
-"blw" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"blx" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
+"bhU" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bly" = (
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"bhV" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/lab)
+"bhW" = (
/obj/machinery/door/poddoor/shutters{
id = "qm_warehouse";
- name = "warehouse shutters"
+ name = "warehouse shutters"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/delivery,
@@ -27965,17 +26557,26 @@
name = "floor"
},
/area/quartermaster/storage)
-"blz" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/quartermaster/storage)
-"blA" = (
+"bhX" = (
/obj/structure/disposalpipe/wrapsortjunction{
dir = 1
},
/turf/closed/wall,
/area/quartermaster/storage)
-"blB" = (
+"bhY" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/quartermaster/storage)
+"bhZ" = (
+/obj/machinery/door/window/eastleft{
+ dir = 4;
+ icon_state = "right";
+ name = "Mail";
+ req_access_txt = "50"
+ },
+/turf/open/floor/plating,
+/area/quartermaster/office)
+"bia" = (
/obj/structure/disposalpipe/trunk{
dir = 8
},
@@ -27984,58 +26585,39 @@
},
/turf/open/floor/plating,
/area/quartermaster/office)
-"blC" = (
-/obj/machinery/door/window/eastleft{
- dir = 4;
- icon_state = "right";
- name = "Mail";
- req_access_txt = "50"
+"bib" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
},
-/turf/open/floor/plating,
-/area/quartermaster/office)
-"blD" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 29
},
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"blE" = (
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"blF" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"blG" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/folder/yellow,
-/obj/item/weapon/paper_bin{
- pixel_x = 1;
- pixel_y = 9
+/turf/open/floor/plasteel/white,
+/area/toxins/lab)
+"bic" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
-/obj/item/weapon/pen,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"blH" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/quartermaster/office)
-"blI" = (
+/area/quartermaster/storage)
+"bid" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 27;
- pixel_y = 0
+ pixel_y = 0
},
/turf/open/floor/plasteel/blue/corner,
/area/hallway/primary/central)
-"blJ" = (
+"bie" = (
/obj/machinery/navbeacon{
codes_txt = "delivery;dir=1";
- dir = 1;
- freq = 1400;
- location = "Bridge"
+ dir = 1;
+ freq = 1400;
+ location = "Bridge"
},
/obj/structure/plasticflaps{
opacity = 1
@@ -28043,48 +26625,60 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
/area/bridge/meeting_room)
-"blK" = (
+"bif" = (
/obj/machinery/vending/cigarette,
/turf/open/floor/wood,
/area/bridge/meeting_room)
-"blL" = (
+"big" = (
/turf/open/floor/plasteel/vault{
- dir = 1
+ dir = 8
},
/area/engine/gravity_generator)
-"blM" = (
+"bih" = (
/turf/open/floor/plasteel/vault{
- dir = 8
+ dir = 1
},
/area/engine/gravity_generator)
-"blN" = (
+"bii" = (
/turf/open/floor/plasteel/vault{
dir = 4
},
/area/engine/gravity_generator)
-"blO" = (
+"bij" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall/r_wall,
+/area/engine/gravity_generator)
+"bik" = (
/obj/item/device/radio/intercom{
dir = 8;
- freerange = 1;
- name = "Station Intercom (Command)";
- pixel_x = -28
+ freerange = 1;
+ name = "Station Intercom (Command)";
+ pixel_x = -28
},
/obj/machinery/suit_storage_unit/captain,
/turf/open/floor/wood,
/area/crew_quarters/captain)
-"blP" = (
+"bil" = (
/obj/machinery/computer/card,
/obj/item/weapon/card/id/captains_spare,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/wood,
/area/crew_quarters/captain)
-"blQ" = (
+"bim" = (
/obj/structure/table/wood,
/obj/machinery/recharger,
/obj/item/weapon/melee/chainofcommand,
/turf/open/floor/wood,
/area/crew_quarters/captain)
-"blR" = (
+"bin" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"bio" = (
/obj/structure/table/glass,
/obj/item/weapon/reagent_containers/glass/bottle/epinephrine,
/obj/item/stack/sheet/mineral/plasma{
@@ -28095,28 +26689,36 @@
},
/obj/machinery/requests_console{
department = "Chemistry";
- departmentType = 2;
- pixel_x = -30;
- pixel_y = 0
+ departmentType = 2;
+ pixel_x = -30;
+ pixel_y = 0
},
/obj/machinery/light{
icon_state = "tube1";
- dir = 8
+ dir = 8
},
/turf/open/floor/plasteel/white,
/area/medical/chemistry)
-"blS" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
+"bip" = (
/turf/open/floor/plasteel/white,
/area/medical/chemistry)
-"blT" = (
-/turf/open/floor/plasteel/white,
+"biq" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"bir" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/eastright{
+ dir = 8;
+ name = "Chemistry Desk";
+ req_access_txt = "33"
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plating,
/area/medical/chemistry)
-"blU" = (
+"bis" = (
/obj/structure/chair/office/light{
dir = 4
},
@@ -28127,23 +26729,28 @@
dir = 4
},
/area/medical/chemistry)
-"blV" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/window/eastright{
- dir = 8;
- name = "Chemistry Desk";
- req_access_txt = "33"
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/plating,
-/area/medical/chemistry)
-"blW" = (
+"bit" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
on = 1
},
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"blX" = (
+"biu" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay)
+"biv" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/brown/corner{
+ dir = 8
+ },
+/area/quartermaster/office)
+"biw" = (
+/turf/open/floor/plasteel,
+/area/security/checkpoint/medical)
+"bix" = (
/obj/structure/chair/office/dark{
dir = 8
},
@@ -28152,10 +26759,7 @@
dir = 8
},
/area/security/checkpoint/medical)
-"blY" = (
-/turf/open/floor/plasteel,
-/area/security/checkpoint/medical)
-"blZ" = (
+"biy" = (
/obj/machinery/computer/secure_data,
/obj/item/device/radio/intercom{
pixel_x = 25
@@ -28164,104 +26768,105 @@
dir = 4
},
/area/security/checkpoint/medical)
-"bma" = (
+"biz" = (
/obj/structure/bodycontainer/morgue,
/obj/effect/landmark{
name = "revenantspawn"
},
/turf/open/floor/plasteel/black,
/area/medical/morgue)
-"bmb" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"bmc" = (
+"biA" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/quartermaster/storage)
+"biB" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/open/floor/plasteel/black,
/area/medical/morgue)
-"bmd" = (
+"biC" = (
/turf/open/floor/plating,
/area/storage/emergency)
-"bme" = (
+"biD" = (
+/obj/item/weapon/storage/box/lights/mixed,
+/turf/open/floor/plating,
+/area/storage/emergency)
+"biE" = (
/obj/machinery/light/small{
dir = 1
},
/obj/item/weapon/extinguisher,
/turf/open/floor/plating,
/area/storage/emergency)
-"bmf" = (
-/obj/item/weapon/storage/box/lights/mixed,
-/turf/open/floor/plating,
-/area/storage/emergency)
-"bmg" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+"biF" = (
+/obj/structure/disposalpipe/sortjunction{
+ dir = 1;
+ icon_state = "pipe-j2s";
+ sortType = 2
},
-/obj/machinery/power/apc{
- dir = 4;
- name = "Mech Bay APC";
- pixel_x = 26;
- pixel_y = 0
+/obj/structure/noticeboard{
+ pixel_y = 32
},
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/assembly/chargebay)
-"bmh" = (
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"biG" = (
/obj/machinery/light_switch{
pixel_y = 28
},
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -24
+ pixel_x = -24
},
/turf/open/floor/plasteel,
/area/assembly/chargebay)
-"bmi" = (
-/turf/open/floor/plasteel,
-/area/assembly/chargebay)
-"bmj" = (
+"biH" = (
/obj/machinery/button/door{
dir = 2;
- id = "Skynet_launch";
- name = "Mech Bay Door Control";
- pixel_x = 6;
- pixel_y = 24
+ id = "Skynet_launch";
+ name = "Mech Bay Door Control";
+ pixel_x = 6;
+ pixel_y = 24
},
/obj/effect/turf_decal/stripes/corner{
dir = 8
},
/turf/open/floor/plasteel,
/area/assembly/chargebay)
-"bmk" = (
+"biI" = (
+/turf/open/floor/plasteel,
+/area/assembly/chargebay)
+"biJ" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel,
/area/assembly/chargebay)
-"bml" = (
+"biK" = (
/obj/machinery/power/apc{
dir = 8;
- name = "Robotics Lab APC";
- pixel_x = -25
+ name = "Robotics Lab APC";
+ pixel_x = -25
},
/obj/structure/cable{
icon_state = "0-2";
- d2 = 2
+ d2 = 2
},
/turf/open/floor/plasteel/white,
/area/assembly/robotics)
-"bmm" = (
+"biL" = (
+/turf/open/floor/plasteel/white,
+/area/assembly/robotics)
+"biM" = (
/obj/structure/chair/office/light{
dir = 1
},
@@ -28270,45 +26875,42 @@
},
/turf/open/floor/plasteel/white,
/area/assembly/robotics)
-"bmn" = (
-/turf/open/floor/plasteel/white,
+"biN" = (
+/turf/open/floor/plasteel/whitered/side{
+ dir = 1
+ },
/area/assembly/robotics)
-"bmo" = (
+"biO" = (
/obj/machinery/camera{
c_tag = "Robotics Lab";
- dir = 2;
- network = list("SS13","RD")
+ dir = 2;
+ network = list("SS13","RD")
},
/obj/machinery/button/door{
dir = 2;
- id = "robotics";
- name = "Shutters Control Button";
- pixel_x = 6;
- pixel_y = 24;
- req_access_txt = "29"
+ id = "robotics";
+ name = "Shutters Control Button";
+ pixel_x = 6;
+ pixel_y = 24;
+ req_access_txt = "29"
},
/turf/open/floor/plasteel/whitered/corner{
dir = 4
},
/area/assembly/robotics)
-"bmp" = (
+"biP" = (
+/obj/structure/filingcabinet/chestdrawer,
/turf/open/floor/plasteel/whitered/side{
dir = 1
},
/area/assembly/robotics)
-"bmq" = (
+"biQ" = (
/obj/structure/chair/stool,
/turf/open/floor/plasteel/whitered/side{
dir = 1
},
/area/assembly/robotics)
-"bmr" = (
-/obj/structure/filingcabinet/chestdrawer,
-/turf/open/floor/plasteel/whitered/side{
- dir = 1
- },
-/area/assembly/robotics)
-"bms" = (
+"biR" = (
/obj/structure/closet/emcloset,
/obj/effect/turf_decal/stripes/line{
dir = 9
@@ -28317,25 +26919,17 @@
/area/medical/research{
name = "Research Division"
})
-"bmt" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- on = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bmu" = (
+"biS" = (
/obj/machinery/camera{
c_tag = "Research Division Access";
- dir = 2;
- network = list("SS13")
+ dir = 2;
+ network = list("SS13")
},
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ icon_state = "sink";
+ pixel_x = 11;
+ pixel_y = 0
},
/obj/effect/turf_decal/stripes/line{
dir = 5
@@ -28344,12 +26938,22 @@
/area/medical/research{
name = "Research Division"
})
-"bmv" = (
+"biT" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"biU" = (
/turf/open/floor/plasteel/whitepurple/side{
dir = 1
},
/area/toxins/lab)
-"bmw" = (
+"biV" = (
/obj/structure/chair/stool,
/obj/effect/landmark/start{
name = "Scientist"
@@ -28358,195 +26962,141 @@
dir = 1
},
/area/toxins/lab)
-"bmx" = (
+"biW" = (
+/turf/open/floor/plasteel/white,
+/area/toxins/lab)
+"biX" = (
/obj/machinery/camera{
c_tag = "Research and Development";
- dir = 2;
- network = list("SS13","RD");
- pixel_x = 22
+ dir = 2;
+ network = list("SS13","RD");
+ pixel_x = 22
},
/obj/machinery/button/door{
dir = 2;
- id = "rnd";
- name = "Shutters Control Button";
- pixel_x = -6;
- pixel_y = 24;
- req_access_txt = "47"
+ id = "rnd";
+ name = "Shutters Control Button";
+ pixel_x = -6;
+ pixel_y = 24;
+ req_access_txt = "47"
},
/turf/open/floor/plasteel/whitepurple/corner{
dir = 1
},
/area/toxins/lab)
-"bmy" = (
-/turf/open/floor/plasteel/white,
-/area/toxins/lab)
-"bmz" = (
+"biY" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"bmA" = (
-/obj/structure/shuttle/engine/propulsion,
-/turf/open/floor/plating/airless,
-/area/shuttle/escape)
-"bmB" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/abandoned)
-"bmC" = (
-/obj/machinery/door/airlock/titanium,
-/obj/docking_port/mobile{
- dheight = 0;
- dir = 2;
- dwidth = 11;
- height = 22;
- id = "whiteship";
- launch_status = 0;
- name = "NT Medical Ship";
- port_angle = -90;
- preferred_direction = 4;
- roundstart_move = "whiteship_away";
- timid = null;
- width = 35
- },
-/obj/docking_port/stationary{
- dir = 2;
- dwidth = 11;
- height = 22;
- id = "whiteship_home";
- name = "SS13 Arrival Docking";
- turf_type = /turf/open/space;
- width = 35
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"bmD" = (
-/obj/machinery/door/airlock/titanium,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"bmE" = (
+"biZ" = (
+/obj/machinery/computer/shuttle/syndicate,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"bja" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"bjb" = (
/obj/machinery/conveyor{
dir = 1;
- id = "garbage"
+ id = "garbage"
},
/obj/structure/sign/vacuum{
pixel_x = -32
},
/turf/open/floor/plating,
/area/maintenance/disposal)
-"bmF" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bmG" = (
+"bjc" = (
/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
+ dir = 4
},
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plating,
/area/maintenance/disposal)
-"bmH" = (
+"bjd" = (
/obj/structure/disposalpipe/segment{
- dir = 4
+ dir = 1;
+ icon_state = "pipe-c"
},
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plating,
/area/maintenance/disposal)
-"bmI" = (
+"bje" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/disposal)
-"bmJ" = (
+"bjf" = (
/obj/machinery/door/airlock/maintenance{
name = "Disposal Access";
- req_access_txt = "12"
+ req_access_txt = "12"
},
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/disposal)
-"bmK" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bmL" = (
+"bjg" = (
/obj/structure/disposalpipe/segment{
dir = 8;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating,
-/area/maintenance/port)
-"bmM" = (
-/obj/structure/closet/crate,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
+ icon_state = "pipe-c"
},
/turf/open/floor/plating,
/area/maintenance/port)
-"bmN" = (
+"bjh" = (
/obj/structure/disposalpipe/segment{
dir = 1;
- icon_state = "pipe-c"
+ icon_state = "pipe-c"
},
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 4;
+ icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/port)
-"bmO" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
+"bji" = (
+/obj/structure/closet/crate,
+/obj/effect/spawner/lootdrop/maintenance,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+ dir = 5
},
/turf/open/floor/plating,
/area/maintenance/port)
-"bmP" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
+"bjj" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/port)
-"bmQ" = (
+"bjk" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -28554,306 +27104,291 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/port)
-"bmR" = (
+"bjl" = (
/obj/structure/cable{
d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d2 = 8;
+ icon_state = "2-8"
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
/obj/structure/disposalpipe/segment{
dir = 8;
- icon_state = "pipe-c"
+ icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/port)
-"bmS" = (
-/obj/structure/table,
-/obj/item/clothing/head/soft,
-/obj/item/clothing/head/soft,
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"bmT" = (
+"bjm" = (
/obj/structure/table,
/obj/item/weapon/hand_labeler,
/obj/item/weapon/hand_labeler,
/obj/machinery/requests_console{
department = "Cargo Bay";
- departmentType = 2;
- pixel_x = 0;
- pixel_y = 30
+ departmentType = 2;
+ pixel_x = 0;
+ pixel_y = 30
},
/turf/open/floor/plasteel,
/area/quartermaster/storage)
-"bmU" = (
+"bjn" = (
/obj/structure/table,
-/obj/machinery/cell_charger,
-/obj/item/device/radio/intercom{
- broadcasting = 0;
- listening = 1;
- name = "Station Intercom (General)";
- pixel_y = 20
- },
+/obj/item/clothing/head/soft,
+/obj/item/clothing/head/soft,
/turf/open/floor/plasteel,
/area/quartermaster/storage)
-"bmV" = (
+"bjo" = (
/obj/machinery/camera{
c_tag = "Cargo Bay North"
},
/obj/structure/closet/wardrobe/cargotech,
/turf/open/floor/plasteel,
/area/quartermaster/storage)
-"bmW" = (
+"bjp" = (
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/obj/item/device/radio/intercom{
+ broadcasting = 0;
+ listening = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 20
+ },
/turf/open/floor/plasteel,
/area/quartermaster/storage)
-"bmX" = (
+"bjq" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 5;
- pixel_y = 30
+ pixel_y = 30
},
/obj/machinery/light{
dir = 1
},
/turf/open/floor/plasteel,
/area/quartermaster/storage)
-"bmY" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+"bjr" = (
/turf/open/floor/plasteel,
/area/quartermaster/storage)
-"bmZ" = (
-/obj/machinery/button/door{
- id = "qm_warehouse";
- name = "Warehouse Door Control";
- pixel_x = -1;
- pixel_y = 24;
- req_access_txt = "31"
+"bjs" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_mining{
+ name = "Cargo Office";
+ req_access_txt = "50"
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bjt" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/quartermaster/storage)
-"bna" = (
+"bju" = (
/obj/machinery/photocopier,
/obj/item/device/radio/intercom{
broadcasting = 0;
- listening = 1;
- name = "Station Intercom (General)";
- pixel_y = 20
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bnb" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bnc" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall,
-/area/quartermaster/office)
-"bnd" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/obj/machinery/airalarm{
- dir = 4;
- locked = 0;
- pixel_x = -23;
- pixel_y = 0
+ listening = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 20
},
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"bne" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+"bjv" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"bnf" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+"bjw" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
},
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"bng" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/structure/chair{
- dir = 4
- },
-/obj/effect/landmark/start{
- name = "Cargo Technician"
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bnh" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/storage/box,
-/obj/item/weapon/storage/box,
-/obj/item/weapon/storage/box,
-/obj/item/weapon/hand_labeler,
-/obj/item/weapon/hand_labeler,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bni" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/window/westleft{
- name = "Delivery Desk";
- req_access_txt = "50"
+"bjx" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
-/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bnj" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/brown/corner{
- dir = 8
- },
/area/hallway/primary/central)
-"bnk" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
+"bjy" = (
+/obj/machinery/camera{
+ c_tag = "Gravity Generator Room";
+ dir = 8;
+ network = list("SS13");
+ pixel_x = 0;
+ pixel_y = 0
},
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bnl" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/engine/gravity_generator)
+"bjz" = (
/turf/closed/wall/r_wall,
/area/maintenance/maintcentral)
-"bnm" = (
+"bjA" = (
+/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/maintcentral)
-"bnn" = (
-/obj/effect/spawner/lootdrop/maintenance,
+"bjB" = (
/turf/open/floor/plating,
/area/maintenance/maintcentral)
-"bno" = (
+"bjC" = (
+/obj/structure/closet/wardrobe/black,
+/turf/open/floor/plating,
+/area/maintenance/maintcentral)
+"bjD" = (
/obj/machinery/power/apc{
dir = 1;
- name = "Bridge Maintenance APC";
- pixel_y = 24
+ name = "Bridge Maintenance APC";
+ pixel_y = 24
},
/obj/structure/cable{
icon_state = "0-2";
- d2 = 2
+ d2 = 2
},
/turf/open/floor/plating,
/area/maintenance/maintcentral)
-"bnp" = (
-/obj/structure/closet/wardrobe/black,
-/turf/open/floor/plating,
-/area/maintenance/maintcentral)
-"bnq" = (
+"bjE" = (
/obj/machinery/airalarm{
dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
+ icon_state = "alarm0";
+ pixel_x = -22
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/wood,
/area/bridge/meeting_room)
-"bnr" = (
+"bjF" = (
/obj/machinery/newscaster/security_unit{
pixel_x = -32;
- pixel_y = 0
+ pixel_y = 0
},
/obj/machinery/keycard_auth{
pixel_x = 0;
- pixel_y = -24
+ pixel_y = -24
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/wood,
/area/crew_quarters/captain)
-"bns" = (
+"bjG" = (
/obj/machinery/door/window{
base_state = "right";
- dir = 4;
- icon_state = "right";
- name = "Captain's Desk Door";
- req_access_txt = "20"
- },
-/turf/open/floor/wood,
-/area/crew_quarters/captain)
-"bnt" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ dir = 4;
+ icon_state = "right";
+ name = "Captain's Desk Door";
+ req_access_txt = "20"
},
/turf/open/floor/wood,
/area/crew_quarters/captain)
-"bnu" = (
+"bjH" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
/obj/machinery/firealarm{
dir = 1;
- pixel_y = -24
+ pixel_y = -24
},
/turf/open/floor/wood,
/area/crew_quarters/captain)
-"bnv" = (
+"bjI" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/wood,
+/area/crew_quarters/captain)
+"bjJ" = (
/obj/structure/cable{
d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d2 = 8;
+ icon_state = "2-8"
},
/turf/open/floor/wood,
/area/crew_quarters/captain)
-"bnw" = (
-/obj/structure/table/glass,
-/obj/machinery/reagentgrinder,
-/obj/structure/extinguisher_cabinet{
- pixel_x = -27;
- pixel_y = 0
+"bjK" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
/turf/open/floor/plasteel/white,
/area/medical/chemistry)
-"bnx" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
+"bjL" = (
+/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/white,
/area/medical/chemistry)
-"bny" = (
+"bjM" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/security/checkpoint/medical)
+"bjN" = (
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_x = 30;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 4
+ },
+/area/security/checkpoint/medical)
+"bjO" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 8
},
/turf/open/floor/plasteel/white,
/area/medical/chemistry)
-"bnz" = (
+"bjP" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/assembly/chargebay)
+"bjQ" = (
+/obj/machinery/smartfridge/chemistry,
+/turf/open/floor/plating,
+/area/medical/chemistry)
+"bjR" = (
/obj/structure/table/glass,
/obj/item/weapon/storage/box/beakers{
pixel_x = 2;
- pixel_y = 2
+ pixel_y = 2
},
/obj/item/weapon/storage/box/beakers{
pixel_x = 2;
- pixel_y = 2
+ pixel_y = 2
},
/obj/item/weapon/reagent_containers/glass/beaker/large,
/obj/item/weapon/reagent_containers/glass/beaker/large,
@@ -28863,16 +27398,18 @@
dir = 4
},
/area/medical/chemistry)
-"bnA" = (
-/obj/machinery/smartfridge/chemistry,
-/turf/open/floor/plating,
-/area/medical/chemistry)
-"bnB" = (
+"bjS" = (
/obj/machinery/holopad,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bnC" = (
+"bjT" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 2
+ },
+/area/medical/medbay)
+"bjU" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
@@ -28880,7 +27417,7 @@
dir = 2
},
/area/medical/medbay)
-"bnD" = (
+"bjV" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -28888,28 +27425,16 @@
dir = 2
},
/area/medical/medbay)
-"bnE" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 2
- },
-/area/medical/medbay)
-"bnF" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 2
- },
-/area/medical/medbay)
-"bnG" = (
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 2
+"bjW" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/medical/medbay)
-"bnH" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/assembly/chargebay)
+"bjX" = (
/obj/structure/table,
/obj/machinery/recharger{
pixel_y = 4
@@ -28918,19 +27443,11 @@
dir = 8
},
/area/security/checkpoint/medical)
-"bnI" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/security/checkpoint/medical)
-"bnJ" = (
+"bjY" = (
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
+ icon_state = "alarm0";
+ pixel_x = 24
},
/obj/machinery/light{
dir = 4
@@ -28939,37 +27456,49 @@
dir = 4
},
/area/security/checkpoint/medical)
-"bnK" = (
+"bjZ" = (
+/obj/structure/closet/firecloset,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"bka" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/lab)
+"bkb" = (
/obj/machinery/camera{
c_tag = "Medbay Morgue";
- dir = 8;
- network = list("SS13");
- pixel_x = 0;
- pixel_y = 0
+ dir = 8;
+ network = list("SS13");
+ pixel_x = 0;
+ pixel_y = 0
},
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
+ icon_state = "alarm0";
+ pixel_x = 24
},
/turf/open/floor/plasteel/black,
/area/medical/morgue)
-"bnL" = (
-/obj/machinery/portable_atmospherics/canister/air,
-/turf/open/floor/plating,
-/area/storage/emergency)
-"bnM" = (
+"bkc" = (
/obj/machinery/space_heater,
/turf/open/floor/plating,
/area/storage/emergency)
-"bnN" = (
-/obj/structure/reagent_dispensers/watertank,
+"bkd" = (
+/obj/machinery/portable_atmospherics/canister/air,
/turf/open/floor/plating,
/area/storage/emergency)
-"bnO" = (
+"bke" = (
/obj/structure/rack{
dir = 8;
- layer = 2.9
+ layer = 2.9
},
/obj/item/weapon/tank/internals/emergency_oxygen,
/obj/item/weapon/tank/internals/emergency_oxygen,
@@ -28977,117 +27506,135 @@
/obj/item/clothing/mask/breath,
/turf/open/floor/plating,
/area/storage/emergency)
-"bnP" = (
+"bkf" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/plating,
+/area/storage/emergency)
+"bkg" = (
/obj/structure/cable{
d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d2 = 4;
+ icon_state = "2-4"
},
/turf/open/floor/bluegrid,
/area/assembly/chargebay)
-"bnQ" = (
+"bkh" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/open/floor/bluegrid,
/area/assembly/chargebay)
-"bnR" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+"bki" = (
+/obj/structure/table/glass,
+/obj/item/weapon/reagent_containers/glass/beaker/large{
+ pixel_x = -3;
+ pixel_y = 3
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/item/weapon/reagent_containers/glass/beaker{
+ pixel_x = 8;
+ pixel_y = 2
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
+/obj/item/weapon/reagent_containers/dropper,
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/lab)
+"bkj" = (
+/obj/structure/closet/emcloset,
+/obj/machinery/airalarm{
+ dir = 2;
+ pixel_y = 24
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
-"bnS" = (
+/area/quartermaster/storage)
+"bkk" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/turf/open/floor/plasteel,
-/area/assembly/chargebay)
-"bnT" = (
+/turf/open/floor/plasteel/white,
+/area/assembly/robotics)
+"bkl" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_research{
name = "Robotics Lab";
- req_access_txt = "29"
+ req_access_txt = "29"
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/white,
/area/assembly/robotics)
-"bnU" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
+"bkm" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/white,
/area/assembly/robotics)
-"bnV" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+"bkn" = (
+/obj/machinery/light{
+ dir = 1
},
-/turf/open/floor/plasteel/white,
-/area/assembly/robotics)
-"bnW" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_Toxins = 0
+/obj/machinery/firealarm{
+ pixel_y = 27
},
-/turf/open/floor/plasteel/white,
-/area/assembly/robotics)
-"bnX" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"bko" = (
/obj/machinery/firealarm{
dir = 4;
- pixel_x = 24
+ pixel_x = 24
},
/obj/structure/rack{
dir = 8;
- layer = 2.9
+ layer = 2.9
},
/obj/item/weapon/storage/toolbox/electrical{
pixel_x = 1;
- pixel_y = 6
+ pixel_y = 6
},
/obj/item/weapon/storage/toolbox/mechanical{
pixel_x = -2;
- pixel_y = -1
+ pixel_y = -1
},
/obj/item/clothing/head/welding{
pixel_x = -3;
- pixel_y = 5
+ pixel_y = 5
},
/obj/item/clothing/glasses/welding,
/turf/open/floor/plasteel/white,
/area/assembly/robotics)
-"bnY" = (
+"bkp" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"bkq" = (
/obj/structure/closet/firecloset,
/obj/machinery/light{
dir = 8
@@ -29099,19 +27646,13 @@
/area/medical/research{
name = "Research Division"
})
-"bnZ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"boa" = (
+"bkr" = (
/obj/machinery/shower{
dir = 8
},
/obj/structure/sign/securearea{
pixel_x = 32;
- pixel_y = 0
+ pixel_y = 0
},
/obj/effect/turf_decal/stripes/line{
dir = 4
@@ -29120,567 +27661,617 @@
/area/medical/research{
name = "Research Division"
})
-"bob" = (
+"bks" = (
/obj/machinery/requests_console{
department = "Science";
- departmentType = 2;
- name = "Science Requests Console";
- pixel_x = -30;
- pixel_y = 0
+ departmentType = 2;
+ name = "Science Requests Console";
+ pixel_x = -30;
+ pixel_y = 0
},
/turf/open/floor/plasteel/white,
/area/toxins/lab)
-"boc" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
+"bkt" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
},
-/turf/open/floor/plasteel/white,
-/area/toxins/lab)
-"bod" = (
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"bku" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"bkv" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel/white,
/area/toxins/lab)
-"boe" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 8
+"bkw" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
},
-/obj/item/device/radio/intercom{
- freerange = 0;
- frequency = 1459;
- name = "Station Intercom (General)";
- pixel_x = 29
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
},
-/turf/open/floor/plasteel/white,
-/area/toxins/lab)
-"bof" = (
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bkx" = (
+/obj/machinery/status_display{
+ density = 0;
+ pixel_y = 2;
+ supply_display = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall,
+/area/quartermaster/office)
+"bky" = (
/turf/closed/wall,
/area/maintenance/asmaint2)
-"bog" = (
-/obj/structure/shuttle/engine/propulsion{
- icon_state = "propulsion_l";
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/shuttle/abandoned)
-"boh" = (
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"boi" = (
-/obj/structure/table,
-/obj/item/device/radio/off,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"boj" = (
-/obj/structure/table,
-/obj/item/weapon/screwdriver,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"bok" = (
+"bkz" = (
/obj/machinery/conveyor{
dir = 1;
- id = "garbage";
- layer = 2.5
+ id = "garbage";
+ layer = 2.5
},
/obj/machinery/door/poddoor/preopen{
id = "Disposal Exit";
- layer = 3;
- name = "disposal exit vent"
+ layer = 3;
+ name = "disposal exit vent"
},
/turf/open/floor/plating,
/area/maintenance/disposal)
-"bol" = (
+"bkA" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/ai_monitored/security/armory)
+"bkB" = (
/obj/machinery/button/door{
id = "Disposal Exit";
- name = "Disposal Vent Control";
- pixel_x = -25;
- pixel_y = 4;
- req_access_txt = "12"
+ name = "Disposal Vent Control";
+ pixel_x = -25;
+ pixel_y = 4;
+ req_access_txt = "12"
},
/obj/machinery/button/massdriver{
id = "trash";
- pixel_x = -26;
- pixel_y = -6
+ pixel_x = -26;
+ pixel_y = -6
},
/obj/structure/chair/stool,
/turf/open/floor/plating,
/area/maintenance/disposal)
-"bom" = (
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bon" = (
+"bkC" = (
/obj/effect/decal/cleanable/oil,
/obj/machinery/light_switch{
pixel_x = 25;
- pixel_y = 0
+ pixel_y = 0
},
/turf/open/floor/plating,
/area/maintenance/disposal)
-"boo" = (
+"bkD" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/maintenance/port)
-"bop" = (
-/turf/closed/wall/r_wall,
-/area/maintenance/port)
-"boq" = (
+"bkE" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";
- name = "KEEP CLEAR: DOCKING AREA";
- pixel_y = 0
+ name = "KEEP CLEAR: DOCKING AREA";
+ pixel_y = 0
},
/turf/closed/wall/r_wall,
/area/maintenance/port)
-"bor" = (
+"bkF" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/port)
+"bkG" = (
/obj/machinery/door/airlock/maintenance{
name = "Cargo Bay Maintenance";
- req_access_txt = "31"
+ req_access_txt = "31"
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/quartermaster/storage)
-"bos" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
+"bkH" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
},
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"bot" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+/turf/open/floor/plating,
+/area/quartermaster/office)
+"bkI" = (
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"bou" = (
+/turf/open/floor/plasteel/black,
+/area/engine/gravity_generator)
+"bkJ" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
/turf/open/floor/plating,
/area/quartermaster/storage)
-"bov" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/brown/corner{
- dir = 8
- },
-/area/quartermaster/office)
-"bow" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
+"bkK" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"bkL" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/chem_heater,
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"bkM" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"box" = (
-/obj/structure/disposalpipe/sortjunction{
- dir = 1;
- icon_state = "pipe-j2s";
- sortType = 2
- },
-/obj/structure/noticeboard{
- pixel_y = 32
- },
+"bkN" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/turf/open/floor/plasteel,
+/turf/open/floor/plating,
/area/quartermaster/office)
-"boy" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_mining{
- name = "Cargo Office";
- req_access_txt = "50"
+"bkO" = (
+/obj/machinery/light_switch{
+ pixel_x = 28;
+ pixel_y = 0
},
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
+/obj/item/weapon/screwdriver{
+ pixel_y = 10
},
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"boz" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+/obj/item/device/radio/off,
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ on = 1
},
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"boA" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+/turf/open/floor/plasteel/red/side{
+ dir = 6
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"boB" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
+/area/security/checkpoint/medical)
+"bkP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
},
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"boC" = (
-/obj/structure/table/reinforced,
-/obj/item/device/destTagger,
-/obj/item/device/destTagger,
-/obj/machinery/computer/stockexchange,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"boD" = (
-/obj/structure/table/reinforced,
-/obj/item/stack/wrapping_paper{
- pixel_x = 3;
- pixel_y = 4
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/item/stack/packageWrap{
- pixel_x = -1;
- pixel_y = -1
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
},
-/obj/item/device/radio/intercom{
- name = "Station Intercom (General)";
- pixel_y = -26
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"bkQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"boE" = (
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+/obj/machinery/light/small,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"bkR" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"boF" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/machinery/light_switch{
+ pixel_y = -25
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"bkS" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/brown/corner{
+ dir = 8
},
-/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"boG" = (
+"bkT" = (
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
/turf/open/floor/plating,
/area/maintenance/maintcentral)
-"boH" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+"bkU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/open/floor/plating,
-/area/maintenance/maintcentral)
-"boI" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/power/apc{
- dir = 2;
- name = "Head of Personnel APC";
- pixel_y = -24
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
/obj/structure/cable{
+ d1 = 4;
d2 = 8;
- icon_state = "0-8"
+ icon_state = "4-8";
+ pixel_x = 0
},
-/turf/open/floor/plating,
-/area/crew_quarters/heads)
-"boJ" = (
-/obj/effect/landmark{
- name = "blobstart"
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"bkV" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
},
+/turf/open/floor/plating,
+/area/maintenance/fsmaint)
+"bkW" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
/turf/open/floor/plating,
/area/maintenance/maintcentral)
-"boK" = (
+"bkX" = (
/obj/machinery/power/apc{
dir = 4;
- name = "Conference Room APC";
- pixel_x = 24;
- pixel_y = 0
+ name = "Conference Room APC";
+ pixel_x = 24;
+ pixel_y = 0
},
/obj/structure/cable{
d2 = 8;
- icon_state = "0-8"
+ icon_state = "0-8"
},
/turf/open/floor/plating,
/area/bridge/meeting_room)
-"boL" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
+"bkY" = (
+/obj/effect/landmark{
+ name = "blobstart"
},
-/turf/closed/wall/r_wall,
-/area/engine/gravity_generator)
-"boM" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_Toxins = 0
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/turf/open/floor/plasteel/black,
-/area/engine/gravity_generator)
-"boN" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/maintcentral)
+"bkZ" = (
/obj/machinery/gravity_generator/main/station,
/turf/open/floor/plasteel/vault{
dir = 8
},
/area/engine/gravity_generator)
-"boO" = (
-/obj/machinery/camera{
- c_tag = "Gravity Generator Room";
- dir = 8;
- network = list("SS13");
- pixel_x = 0;
- pixel_y = 0
+"bla" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
-/turf/open/floor/plasteel/black,
-/area/engine/gravity_generator)
-"boP" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/turf/closed/wall/r_wall,
-/area/engine/gravity_generator)
-"boQ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall/r_wall,
-/area/crew_quarters/captain)
-"boR" = (
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"blb" = (
/obj/machinery/door/airlock/command{
name = "Captain's Quarters";
- req_access = null;
- req_access_txt = "20"
+ req_access = null;
+ req_access_txt = "20"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/carpet,
/area/crew_quarters/captain)
-"boS" = (
+"blc" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall/r_wall,
+/area/crew_quarters/captain)
+"bld" = (
/obj/machinery/door/airlock/maintenance{
name = "Captain's Office Maintenance";
- req_access_txt = "20"
+ req_access_txt = "20"
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/open/floor/plating,
/area/crew_quarters/captain)
-"boT" = (
+"ble" = (
/obj/structure/disposalpipe/segment,
/obj/structure/extinguisher_cabinet{
pixel_x = -27;
- pixel_y = 1
+ pixel_y = 1
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"boU" = (
+"blf" = (
/obj/structure/table/glass,
/obj/item/weapon/storage/box/syringes,
/obj/item/clothing/glasses/science{
pixel_x = 2;
- pixel_y = 4
+ pixel_y = 4
},
/obj/item/clothing/glasses/science,
/obj/item/device/radio/intercom{
dir = 8;
- name = "Station Intercom (General)";
- pixel_x = -28
+ name = "Station Intercom (General)";
+ pixel_x = -28
},
/turf/open/floor/plasteel/white,
/area/medical/chemistry)
-"boV" = (
+"blg" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance{
+ name = "Morgue Maintenance";
+ req_access_txt = "6"
+ },
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"boW" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"boX" = (
+/turf/open/floor/plating,
+/area/medical/morgue)
+"blh" = (
/obj/structure/table/reinforced,
/obj/machinery/door/window/eastright{
base_state = "left";
- dir = 8;
- icon_state = "left";
- name = "Chemistry Desk";
- req_access_txt = "33"
+ dir = 8;
+ icon_state = "left";
+ name = "Chemistry Desk";
+ req_access_txt = "33"
},
/obj/machinery/door/firedoor,
/turf/open/floor/plating,
/area/medical/chemistry)
-"boY" = (
+"bli" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"boZ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 4
- },
-/area/medical/medbay)
-"bpa" = (
+"blj" = (
/obj/structure/table/reinforced,
/obj/item/weapon/paper_bin{
pixel_x = 1;
- pixel_y = 9
+ pixel_y = 9
},
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bpb" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/reagent_containers/food/drinks/britcup{
- desc = "Kingston's personal cup."
+"blk" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 4
},
-/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bpc" = (
+"bll" = (
/obj/structure/table/reinforced,
/obj/item/weapon/folder/white,
/obj/item/weapon/pen,
/obj/item/weapon/reagent_containers/glass/bottle/epinephrine,
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bpd" = (
+"blm" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/reagent_containers/food/drinks/britcup{
+ desc = "Kingston's personal cup."
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay)
+"bln" = (
/obj/structure/table/reinforced,
/obj/machinery/camera{
c_tag = "Medbay Foyer";
- dir = 8;
- network = list("SS13");
- pixel_x = 0;
- pixel_y = 0
+ dir = 8;
+ network = list("SS13");
+ pixel_x = 0;
+ pixel_y = 0
},
/obj/machinery/cell_charger,
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bpe" = (
+"blo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "Starboard Emergency Storage APC";
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/storage/emergency)
+"blp" = (
/obj/machinery/power/apc{
dir = 8;
- name = "Medbay Security APC";
- pixel_x = -25
+ name = "Medbay Security APC";
+ pixel_x = -25
},
/obj/structure/cable{
icon_state = "0-4";
- d2 = 4
+ d2 = 4
},
/turf/open/floor/plasteel/red/side{
dir = 8
},
/area/security/checkpoint/medical)
-"bpf" = (
+"blq" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/obj/structure/cable{
d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d2 = 8;
+ icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/security/checkpoint/medical)
-"bpg" = (
-/obj/structure/reagent_dispensers/peppertank{
- pixel_x = 30;
- pixel_y = 0
+/obj/structure/disposalpipe/sortjunction{
+ sortType = 9
},
-/turf/open/floor/plasteel/red/side{
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
-/area/security/checkpoint/medical)
-"bph" = (
+/turf/open/floor/plating,
+/area/maintenance/asmaint)
+"blr" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/morgue)
+"bls" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel,
+/area/assembly/chargebay)
+"blt" = (
+/obj/machinery/holopad,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/assembly/chargebay)
+"blu" = (
/obj/machinery/mech_bay_recharge_port,
/obj/structure/cable,
/turf/open/floor/plating,
/area/assembly/chargebay)
-"bpi" = (
-/turf/open/floor/mech_bay_recharge_floor,
-/area/assembly/chargebay)
-"bpj" = (
+"blv" = (
/obj/machinery/computer/mech_bay_power_console,
/obj/structure/cable{
icon_state = "0-2";
- d2 = 2
+ d2 = 2
},
/turf/open/floor/bluegrid,
/area/assembly/chargebay)
-"bpk" = (
+"blw" = (
+/turf/open/floor/mech_bay_recharge_floor,
+/area/assembly/chargebay)
+"blx" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/assembly/chargebay)
-"bpl" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- on = 1
+"bly" = (
+/obj/structure/table,
+/obj/item/stack/sheet/plasteel{
+ amount = 10
+ },
+/obj/item/stack/cable_coil,
+/obj/item/device/assembly/flash/handheld,
+/obj/item/device/assembly/flash/handheld,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
/turf/open/floor/plasteel,
-/area/assembly/chargebay)
-"bpm" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
/area/assembly/robotics)
-"bpn" = (
+"blz" = (
/obj/structure/table,
/obj/item/stack/sheet/glass{
amount = 20;
- pixel_x = -3;
- pixel_y = 6
+ pixel_x = -3;
+ pixel_y = 6
},
/obj/item/stack/sheet/metal{
amount = 50
@@ -29711,29 +28302,36 @@
},
/turf/open/floor/plasteel,
/area/assembly/robotics)
-"bpo" = (
+"blA" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/assembly/robotics)
+"blB" = (
+/obj/machinery/mecha_part_fabricator,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel,
/area/assembly/robotics)
-"bpp" = (
-/obj/machinery/mecha_part_fabricator,
+"blC" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel,
/area/assembly/robotics)
-"bpq" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
+"blD" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
-/turf/open/floor/plasteel/white,
+/turf/open/floor/plating,
/area/assembly/robotics)
-"bpr" = (
+"blE" = (
/obj/machinery/ai_status_display{
pixel_x = 32;
- pixel_y = 0
+ pixel_y = 0
},
/obj/structure/table,
/obj/item/device/assembly/flash/handheld,
@@ -29743,26 +28341,34 @@
/obj/item/device/assembly/flash/handheld,
/turf/open/floor/plasteel/white,
/area/assembly/robotics)
-"bps" = (
-/obj/structure/closet/firecloset,
-/obj/effect/turf_decal/stripes/line{
- dir = 10
+"blF" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bpt" = (
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/assembly/robotics)
+"blG" = (
+/obj/structure/chair/stool,
+/obj/effect/landmark/start{
+ name = "Roboticist"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/assembly/robotics)
+"blH" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ icon_state = "sink";
+ pixel_x = 11;
+ pixel_y = 0
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
/obj/effect/turf_decal/stripes/line{
dir = 6
@@ -29771,223 +28377,203 @@
/area/medical/research{
name = "Research Division"
})
-"bpu" = (
+"blI" = (
/obj/machinery/r_n_d/destructive_analyzer,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel,
/area/toxins/lab)
-"bpv" = (
+"blJ" = (
+/obj/machinery/r_n_d/protolathe,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel,
/area/toxins/lab)
-"bpw" = (
-/obj/machinery/r_n_d/protolathe,
+"blK" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel,
/area/toxins/lab)
-"bpx" = (
-/obj/structure/disposalpipe/segment,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/lab)
-"bpy" = (
+"blL" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel/white,
/area/toxins/lab)
-"bpz" = (
-/obj/structure/table/glass,
-/obj/item/weapon/reagent_containers/glass/beaker/large{
- pixel_x = -3;
- pixel_y = 3
- },
-/obj/item/weapon/reagent_containers/glass/beaker{
- pixel_x = 8;
- pixel_y = 2
- },
-/obj/item/weapon/reagent_containers/dropper,
-/obj/machinery/airalarm{
+"blM" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
+ on = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
},
/turf/open/floor/plasteel/white,
-/area/toxins/lab)
-"bpA" = (
+/area/assembly/robotics)
+"blN" = (
+/obj/machinery/holopad,
+/turf/open/floor/plasteel/white,
+/area/assembly/robotics)
+"blO" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"bpB" = (
-/obj/machinery/light/small{
- dir = 1
+"blP" = (
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 4;
+ req_access_txt = "13"
},
-/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"bpC" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 4;
- req_access_txt = "13"
+"blQ" = (
+/obj/machinery/light/small{
+ dir = 1
},
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"bpD" = (
+"blR" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
- pixel_y = 32
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 0;
+ pixel_y = 32
},
/obj/item/weapon/cigbutt,
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"bpE" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 8;
- req_access_txt = "13"
+"blS" = (
+/obj/machinery/light/small{
+ dir = 8
},
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bpF" = (
-/obj/structure/shuttle/engine/propulsion{
- icon_state = "propulsion";
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/shuttle/abandoned)
-"bpG" = (
-/obj/structure/shuttle/engine/heater{
- icon_state = "heater";
- dir = 8
- },
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/shuttle/abandoned)
-"bpH" = (
-/turf/open/floor/plating,
-/turf/closed/wall/mineral/titanium/interior,
-/area/shuttle/abandoned)
-"bpI" = (
-/obj/machinery/computer/pod{
- id = "oldship_gun"
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"bpJ" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/machinery/mass_driver{
- id = "trash"
+/obj/machinery/mass_driver{
+ id = "trash"
},
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plating,
/area/maintenance/disposal)
-"bpK" = (
-/obj/machinery/conveyor_switch/oneway{
- convdir = -1;
- id = "garbage";
- name = "disposal coveyor"
+"blT" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bpL" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/ai_monitored/security/armory)
+"blU" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/wood,
+/area/crew_quarters/sleep)
+"blV" = (
/obj/machinery/light/small,
/turf/open/floor/plating,
/area/maintenance/disposal)
-"bpM" = (
-/obj/structure/closet,
-/turf/open/floor/plating,
-/area/maintenance/disposal)
-"bpN" = (
-/turf/closed/wall/mineral/titanium,
-/area/shuttle/supply)
-"bpO" = (
+"blW" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/quartermaster/storage)
-"bpP" = (
+"blX" = (
+/obj/machinery/door/airlock/research{
+ cyclelinkeddir = 1;
+ name = "Research Division Access";
+ req_access_txt = "47"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"blY" = (
/obj/structure/closet/emcloset,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
/area/quartermaster/storage)
-"bpQ" = (
-/obj/structure/closet/emcloset,
-/obj/machinery/airalarm{
- dir = 2;
- pixel_y = 24
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"bpR" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+"blZ" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ on = 1
},
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+/obj/effect/turf_decal/stripes/line{
dir = 8
},
-/mob/living/simple_animal/drone/snowflake,
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"bpS" = (
-/obj/machinery/light{
- dir = 1
+/turf/open/floor/plasteel/white,
+/area/toxins/lab)
+"bma" = (
+/obj/structure/table/glass,
+/obj/item/weapon/stock_parts/manipulator,
+/obj/item/weapon/stock_parts/capacitor,
+/obj/item/weapon/stock_parts/capacitor,
+/obj/item/weapon/stock_parts/manipulator,
+/obj/item/weapon/stock_parts/micro_laser,
+/obj/item/weapon/stock_parts/micro_laser,
+/obj/item/stack/cable_coil{
+ pixel_x = 3;
+ pixel_y = 3
},
+/obj/item/stack/cable_coil,
/obj/machinery/firealarm{
- pixel_y = 27
+ dir = 4;
+ pixel_x = 24
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+/turf/open/floor/plasteel/white,
+/area/toxins/lab)
+"bmb" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/quartermaster/storage)
-"bpT" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"bpU" = (
-/mob/living/simple_animal/sloth/paperwork,
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"bpV" = (
+"bmc" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"bpW" = (
-/obj/machinery/door/airlock/glass_mining{
- name = "Cargo Bay";
- req_access_txt = "31"
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"bmd" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"bme" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"bpX" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"bmf" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -29995,128 +28581,157 @@
dir = 8
},
/area/quartermaster/office)
-"bpY" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bpZ" = (
-/obj/machinery/status_display{
- density = 0;
- pixel_y = 2;
- supply_display = 1
+"bmg" = (
+/obj/machinery/door/airlock/glass_mining{
+ name = "Cargo Bay";
+ req_access_txt = "31"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"bmh" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"bmi" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall,
-/area/quartermaster/office)
-"bqa" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/turf/open/floor/plating,
+/turf/open/floor/plasteel,
/area/quartermaster/office)
-"bqb" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
+"bmj" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/turf/open/floor/plating,
-/area/quartermaster/office)
-"bqc" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"bmk" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_mining{
name = "Delivery Office";
- req_access_txt = "50"
+ req_access_txt = "50"
},
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"bqd" = (
+"bml" = (
+/obj/machinery/mineral/ore_redemption{
+ input_dir = 8;
+ output_dir = 4
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/floorgrime,
+/area/quartermaster/office)
+"bmm" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bmn" = (
/obj/machinery/light{
dir = 8
},
/obj/machinery/door/firedoor,
/obj/machinery/status_display{
density = 0;
- layer = 3;
- pixel_x = -32;
- pixel_y = 0
+ layer = 3;
+ pixel_x = -32;
+ pixel_y = 0
},
/turf/open/floor/plasteel/brown/corner{
dir = 8
},
/area/hallway/primary/central)
-"bqe" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bqf" = (
+"bmo" = (
+/turf/closed/wall,
+/area/crew_quarters/heads)
+"bmp" = (
/obj/structure/rack{
dir = 8;
- layer = 2.9
+ layer = 2.9
},
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/maintcentral)
-"bqg" = (
-/turf/closed/wall,
-/area/crew_quarters/heads)
-"bqh" = (
+"bmq" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall,
/area/crew_quarters/heads)
-"bqi" = (
+"bmr" = (
+/turf/closed/wall/r_wall,
+/area/crew_quarters/heads)
+"bms" = (
/obj/machinery/door/airlock/command{
name = "Head of Personnel";
- req_access = null;
- req_access_txt = "57"
+ req_access = null;
+ req_access_txt = "57"
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/wood,
/area/crew_quarters/heads)
-"bqj" = (
+"bmt" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 8
+ },
+/area/quartermaster/office)
+"bmu" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
+ },
/turf/closed/wall/r_wall,
-/area/crew_quarters/heads)
-"bqk" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
+/area/engine/gravity_generator)
+"bmv" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_Toxins = 0
},
/turf/open/floor/plasteel/black,
/area/engine/gravity_generator)
-"bql" = (
+"bmw" = (
/obj/machinery/light{
dir = 4
},
/turf/open/floor/plasteel/black,
/area/engine/gravity_generator)
-"bqm" = (
+"bmx" = (
/turf/closed/wall,
/area/crew_quarters/captain)
-"bqn" = (
+"bmy" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/captain)
+"bmz" = (
/obj/machinery/light/small{
dir = 1
},
@@ -30126,36 +28741,29 @@
},
/turf/open/floor/carpet,
/area/crew_quarters/captain)
-"bqo" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+"bmA" = (
+/obj/machinery/door/airlock{
+ name = "Private Restroom";
+ req_access_txt = "0"
},
-/turf/open/floor/carpet,
+/turf/open/floor/plasteel/freezer,
/area/crew_quarters/captain)
-"bqp" = (
+"bmB" = (
/obj/machinery/light_switch{
pixel_y = 28
},
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
- on = 1
+ on = 1
},
/turf/open/floor/carpet,
/area/crew_quarters/captain)
-"bqq" = (
-/obj/machinery/door/airlock{
- name = "Private Restroom";
- req_access_txt = "0"
- },
-/turf/open/floor/plasteel/freezer,
-/area/crew_quarters/captain)
-"bqr" = (
+"bmC" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ icon_state = "sink";
+ pixel_x = 11;
+ pixel_y = 0
},
/obj/structure/mirror{
pixel_x = 28
@@ -30165,100 +28773,93 @@
},
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/captain)
-"bqs" = (
+"bmD" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/open/floor/plating,
/area/crew_quarters/captain)
-"bqt" = (
+"bmE" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bqu" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bqv" = (
+"bmF" = (
/obj/structure/table/glass,
/obj/machinery/airalarm{
dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
+ icon_state = "alarm0";
+ pixel_x = -22
},
/obj/item/stack/cable_coil/random,
/obj/item/stack/cable_coil/random,
/turf/open/floor/plasteel/white,
/area/medical/chemistry)
-"bqw" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"bqx" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/chem_heater,
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"bqy" = (
+"bmG" = (
/obj/machinery/chem_dispenser,
/turf/open/floor/plasteel/whiteyellow/side{
dir = 2
},
/area/medical/chemistry)
-"bqz" = (
+"bmH" = (
+/obj/machinery/door/airlock/glass_mining{
+ name = "Cargo Bay";
+ req_access_txt = "31"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"bmI" = (
/obj/machinery/chem_master,
/turf/open/floor/plasteel/whiteyellow/side{
dir = 6
},
/area/medical/chemistry)
-"bqA" = (
+"bmJ" = (
/obj/item/device/radio/intercom{
broadcasting = 1;
- freerange = 0;
- frequency = 1485;
- listening = 0;
- name = "Station Intercom (Medbay)";
- pixel_x = 0;
- pixel_y = -30
+ freerange = 0;
+ frequency = 1485;
+ listening = 0;
+ name = "Station Intercom (Medbay)";
+ pixel_x = 0;
+ pixel_y = -30
},
/obj/machinery/light,
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -24
+ pixel_x = -24
},
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bqB" = (
+"bmK" = (
/obj/structure/table/reinforced,
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bqC" = (
+"bmL" = (
/obj/structure/chair/office/light{
dir = 8
},
/obj/machinery/button/door{
desc = "A remote control switch for the medbay foyer.";
- id = "MedbayFoyer";
- name = "Medbay Doors Control";
- normaldoorcontrol = 1;
- pixel_x = -26;
- req_access_txt = "5"
+ id = "MedbayFoyer";
+ name = "Medbay Doors Control";
+ normaldoorcontrol = 1;
+ pixel_x = -26;
+ req_access_txt = "5"
},
/obj/effect/landmark/start{
name = "Medical Doctor"
},
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bqD" = (
+"bmM" = (
/obj/structure/chair/office/light{
dir = 1
},
@@ -30267,567 +28868,411 @@
},
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bqE" = (
-/obj/structure/closet,
-/turf/open/floor/plasteel/red/side{
- dir = 10
- },
-/area/security/checkpoint/medical)
-"bqF" = (
+"bmN" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/red/side,
/area/security/checkpoint/medical)
-"bqG" = (
-/obj/machinery/light_switch{
- pixel_x = 28;
- pixel_y = 0
+"bmO" = (
+/obj/structure/closet,
+/turf/open/floor/plasteel/red/side{
+ dir = 10
},
-/obj/item/weapon/screwdriver{
- pixel_y = 10
+/area/security/checkpoint/medical)
+"bmP" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
-/obj/item/device/radio/off,
-/obj/machinery/atmospherics/components/unary/vent_pump{
- on = 1
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bmQ" = (
+/obj/item/weapon/stamp{
+ pixel_x = -3;
+ pixel_y = 3
},
-/turf/open/floor/plasteel/red/side{
- dir = 6
+/obj/item/weapon/stamp/denied{
+ pixel_x = 4;
+ pixel_y = -2
},
-/area/security/checkpoint/medical)
-"bqH" = (
+/obj/structure/table,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bmR" = (
/obj/structure/table,
/obj/item/weapon/paper/morguereminder{
pixel_x = 5;
- pixel_y = 4
+ pixel_y = 4
},
/turf/open/floor/plasteel/black,
/area/medical/morgue)
-"bqI" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
+"bmS" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bmT" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ on = 1
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"bmU" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/security/checkpoint/medical)
+"bmV" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/medical{
+ name = "Morgue";
+ req_access_txt = "6;5"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/black,
/area/medical/morgue)
-"bqJ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/light_switch{
- pixel_y = -25
+"bmW" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+/turf/closed/wall,
+/area/medical/morgue)
+"bmX" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/turf/closed/wall/r_wall,
+/area/medical/genetics)
+"bmY" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/turf/open/floor/plasteel/black,
+/turf/closed/wall,
/area/medical/morgue)
-"bqK" = (
-/obj/structure/disposalpipe/segment{
+"bmZ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
+/turf/closed/wall/r_wall,
+/area/medical/genetics)
+"bna" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/light/small,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"bqL" = (
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+/turf/open/floor/plating,
+/area/maintenance/asmaint)
+"bnb" = (
+/obj/machinery/light{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+/obj/machinery/camera{
+ c_tag = "Mech Bay";
dir = 4
},
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"bqM" = (
+/turf/open/floor/plasteel,
+/area/assembly/chargebay)
+"bnc" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/assembly/chargebay)
+"bnd" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/assembly/chargebay)
+"bne" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
},
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"bqN" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/airlock/maintenance{
- name = "Morgue Maintenance";
- req_access_txt = "6"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/medical/morgue)
-"bqO" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bqP" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/power/apc{
- dir = 1;
- name = "Starboard Emergency Storage APC";
- pixel_y = 24
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/storage/emergency)
-"bqQ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/sortjunction{
- sortType = 9
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bqR" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/machinery/camera{
- c_tag = "Mech Bay";
- dir = 4
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/assembly/chargebay)
-"bqS" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+"bnf" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
},
+/turf/open/floor/plasteel/white,
+/area/toxins/lab)
+"bng" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
-/turf/open/floor/plasteel,
-/area/assembly/chargebay)
-"bqT" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
},
+/turf/open/floor/plasteel/white,
+/area/toxins/lab)
+"bnh" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/assembly/chargebay)
-"bqU" = (
-/obj/machinery/holopad,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/assembly/chargebay)
-"bqV" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/assembly/robotics)
-"bqW" = (
-/obj/structure/table,
-/obj/item/stack/sheet/plasteel{
- amount = 10
- },
-/obj/item/stack/cable_coil,
-/obj/item/device/assembly/flash/handheld,
-/obj/item/device/assembly/flash/handheld,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/assembly/robotics)
-"bqX" = (
-/obj/structure/chair/stool,
-/obj/effect/landmark/start{
- name = "Roboticist"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/assembly/robotics)
-"bqY" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/assembly/robotics)
-"bqZ" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
+/turf/open/floor/plasteel/white,
+/area/toxins/lab)
+"bni" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel/white,
/area/assembly/robotics)
-"bra" = (
-/obj/machinery/holopad,
-/turf/open/floor/plasteel/white,
-/area/assembly/robotics)
-"brb" = (
+"bnj" = (
/obj/structure/table,
/obj/machinery/cell_charger,
/obj/item/weapon/stock_parts/cell/high/plus,
/obj/item/device/radio/intercom{
freerange = 0;
- frequency = 1459;
- name = "Station Intercom (General)";
- pixel_x = 29
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 29
},
/turf/open/floor/plasteel/white,
/area/assembly/robotics)
-"brc" = (
-/turf/closed/wall/r_wall,
-/area/medical/research{
- name = "Research Division"
- })
-"brd" = (
-/obj/machinery/door/airlock/research{
- cyclelinkeddir = 1;
- name = "Research Division Access";
- req_access_txt = "47"
- },
+"bnk" = (
+/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bre" = (
+/area/toxins/lab)
+"bnl" = (
+/obj/item/weapon/stock_parts/console_screen,
+/obj/structure/table/glass,
+/obj/item/weapon/stock_parts/console_screen,
+/obj/item/weapon/stock_parts/console_screen,
+/obj/item/weapon/stock_parts/matter_bin,
+/obj/item/weapon/stock_parts/matter_bin,
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/obj/item/weapon/stock_parts/scanning_module{
+ pixel_x = 2;
+ pixel_y = 3
+ },
+/obj/item/weapon/stock_parts/scanning_module,
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "Research Lab APC";
+ pixel_x = 26;
+ pixel_y = 0
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/lab)
+"bnm" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall/r_wall,
/area/medical/research{
name = "Research Division"
})
-"brf" = (
+"bnn" = (
/obj/machinery/computer/rdconsole/core,
/turf/open/floor/plasteel,
/area/toxins/lab)
-"brg" = (
-/turf/open/floor/plasteel,
-/area/toxins/lab)
-"brh" = (
+"bno" = (
/obj/machinery/r_n_d/circuit_imprinter,
/obj/item/weapon/reagent_containers/glass/beaker/sulphuric,
/turf/open/floor/plasteel,
/area/toxins/lab)
-"bri" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/components/unary/vent_pump{
- on = 1
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
+"bnp" = (
+/turf/open/floor/plasteel,
/area/toxins/lab)
-"brj" = (
-/obj/structure/table/glass,
-/obj/item/weapon/stock_parts/manipulator,
-/obj/item/weapon/stock_parts/capacitor,
-/obj/item/weapon/stock_parts/capacitor,
-/obj/item/weapon/stock_parts/manipulator,
-/obj/item/weapon/stock_parts/micro_laser,
-/obj/item/weapon/stock_parts/micro_laser,
-/obj/item/stack/cable_coil{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/stack/cable_coil,
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
+"bnq" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
-/turf/open/floor/plasteel/white,
+/turf/closed/wall,
/area/toxins/lab)
-"brk" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"brl" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+"bnr" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/structure/plasticflaps{
+ opacity = 1
},
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"brm" = (
+/turf/open/floor/plasteel/loadingarea,
+/area/toxins/lab)
+"bns" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/open/floor/plating,
+/turf/closed/wall,
/area/maintenance/asmaint2)
-"brn" = (
+"bnt" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/turf/closed/wall,
+/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"bro" = (
+"bnu" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
/turf/closed/wall,
/area/maintenance/asmaint2)
-"brp" = (
-/turf/open/floor/plating,
-/area/shuttle/abandoned)
-"brq" = (
-/turf/open/floor/mineral/titanium,
-/turf/closed/wall/mineral/titanium/interior,
-/area/shuttle/abandoned)
-"brr" = (
-/obj/structure/rack,
-/obj/item/clothing/suit/space/hardsuit/medical,
-/obj/item/clothing/mask/breath,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"brs" = (
-/obj/machinery/door/airlock/glass,
-/turf/open/floor/plating,
-/area/shuttle/abandoned)
-"brt" = (
-/obj/machinery/mass_driver{
- dir = 4;
- icon_state = "mass_driver";
- id = "oldship_gun"
- },
-/turf/open/floor/plating,
-/area/shuttle/abandoned)
-"bru" = (
-/obj/machinery/door/poddoor{
- id = "oldship_gun";
- name = "pod bay door"
- },
-/turf/open/floor/plating,
-/area/shuttle/abandoned)
-"brv" = (
+"bnv" = (
/obj/machinery/door/poddoor{
id = "trash";
- name = "disposal bay door"
+ name = "disposal bay door"
},
/turf/open/floor/plating,
/area/maintenance/disposal)
-"brw" = (
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/supply)
-"brx" = (
+"bnw" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
/area/quartermaster/storage)
-"bry" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"brz" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+"bnx" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"brA" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"brB" = (
-/obj/machinery/door/airlock/glass_mining{
- name = "Cargo Bay";
- req_access_txt = "31"
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"bny" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
},
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
+/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"brC" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+/area/quartermaster/office)
+"bnz" = (
+/obj/effect/landmark/start{
+ name = "Cargo Technician"
},
-/turf/open/floor/plasteel/brown{
- dir = 8
+/obj/structure/chair/office/dark{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
+/turf/open/floor/plasteel,
/area/quartermaster/office)
-"brD" = (
+"bnA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"brE" = (
+"bnB" = (
+/obj/structure/closet/wardrobe/chemistry_white,
+/obj/machinery/light_switch{
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"bnC" = (
+/obj/structure/chair,
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"bnD" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/table,
+/obj/item/weapon/book/manual/wiki/chemistry,
+/obj/item/weapon/book/manual/wiki/chemistry{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/chemistry)
+"bnE" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d2 = 8;
+ icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"brF" = (
-/obj/item/weapon/stamp{
- pixel_x = -3;
- pixel_y = 3
+"bnF" = (
+/obj/structure/sign/nosmoking_2{
+ pixel_x = 0;
+ pixel_y = 30
},
-/obj/item/weapon/stamp/denied{
- pixel_x = 4;
- pixel_y = -2
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/structure/table,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"brG" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay)
+"bnG" = (
/obj/item/weapon/paper_bin{
pixel_x = -3;
- pixel_y = 7
+ pixel_y = 7
},
/obj/item/weapon/clipboard,
/obj/item/weapon/pen/red,
@@ -30835,201 +29280,215 @@
/obj/machinery/computer/stockexchange,
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"brH" = (
+"bnH" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay)
+"bnI" = (
/obj/machinery/computer/cargo/request,
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"brI" = (
+"bnJ" = (
/obj/machinery/firealarm{
pixel_y = 27
},
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"brJ" = (
+"bnK" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
/turf/open/floor/plating,
/area/quartermaster/office)
-"brK" = (
+"bnL" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 1
+ },
+/area/quartermaster/office)
+"bnM" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"brL" = (
+"bnN" = (
/turf/open/floor/plasteel/red/corner{
dir = 2
},
/area/hallway/primary/central)
-"brM" = (
+"bnO" = (
+/obj/structure/table,
+/obj/machinery/newscaster/security_unit{
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/obj/item/weapon/hand_labeler,
+/obj/item/stack/packageWrap,
+/turf/open/floor/plasteel,
+/area/crew_quarters/heads)
+"bnP" = (
/obj/machinery/button/flasher{
id = "hopflash";
- pixel_x = 6;
- pixel_y = 36
+ pixel_x = 6;
+ pixel_y = 36
},
/obj/machinery/button/door{
id = "hop";
- name = "Privacy Shutters Control";
- pixel_x = 6;
- pixel_y = 25;
- req_access_txt = "57"
+ name = "Privacy Shutters Control";
+ pixel_x = 6;
+ pixel_y = 25;
+ req_access_txt = "57"
},
/obj/machinery/button/door{
id = "hopqueue";
- name = "Queue Shutters Control";
- pixel_x = -4;
- pixel_y = 25;
- req_access_txt = "57"
+ name = "Queue Shutters Control";
+ pixel_x = -4;
+ pixel_y = 25;
+ req_access_txt = "57"
},
/obj/machinery/light_switch{
pixel_x = -4;
- pixel_y = 36
+ pixel_y = 36
},
/obj/machinery/pdapainter,
/turf/open/floor/plasteel/blue/side{
dir = 9
},
/area/crew_quarters/heads)
-"brN" = (
-/obj/structure/table,
-/obj/machinery/newscaster/security_unit{
- pixel_x = 0;
- pixel_y = 32
+"bnQ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/bed/dogbed{
+ anchored = 1;
+ desc = "Ian's bed! Looks comfy.";
+ name = "Ian's bed"
+ },
+/mob/living/simple_animal/pet/dog/corgi/Ian{
+ dir = 8
},
-/obj/item/weapon/hand_labeler,
-/obj/item/stack/packageWrap,
/turf/open/floor/plasteel,
/area/crew_quarters/heads)
-"brO" = (
+"bnR" = (
/obj/machinery/computer/security/telescreen{
desc = "Used for watching Prison Wing holding areas.";
- name = "Prison Monitor";
- network = list("Prison");
- pixel_x = 0;
- pixel_y = 30
+ name = "Prison Monitor";
+ network = list("Prison");
+ pixel_x = 0;
+ pixel_y = 30
},
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk,
/turf/open/floor/plasteel,
/area/crew_quarters/heads)
-"brP" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/bed/dogbed{
- anchored = 1;
- desc = "Ian's bed! Looks comfy.";
- name = "Ian's bed"
- },
-/mob/living/simple_animal/pet/dog/corgi/Ian{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/heads)
-"brQ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+"bnS" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/crew_quarters/heads)
-"brR" = (
+"bnT" = (
/obj/structure/grille,
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
- pixel_x = -32;
- pixel_y = 0
+ icon_state = "shock";
+ name = "HIGH VOLTAGE";
+ pixel_x = -32;
+ pixel_y = 0
},
/obj/structure/cable{
icon_state = "0-4";
- d2 = 4
+ d2 = 4
},
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/engine/gravity_generator)
-"brS" = (
+"bnU" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Gravity Generator";
+ req_access_txt = "11";
+ req_one_access_txt = "0"
+ },
+/turf/open/floor/plasteel/black,
+/area/engine/gravity_generator)
+"bnV" = (
/obj/structure/grille,
/obj/structure/cable{
d2 = 8;
- icon_state = "0-8"
+ icon_state = "0-8"
},
/obj/structure/cable{
icon_state = "0-4";
- d2 = 4
+ d2 = 4
},
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/engine/gravity_generator)
-"brT" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/glass_engineering{
- name = "Gravity Generator";
- req_access_txt = "11";
- req_one_access_txt = "0"
- },
-/turf/open/floor/plasteel/black,
-/area/engine/gravity_generator)
-"brU" = (
+"bnW" = (
/obj/structure/grille,
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'RADIOACTIVE AREA'";
- icon_state = "radiation";
- name = "RADIOACTIVE AREA";
- pixel_x = 32;
- pixel_y = 0
+ icon_state = "radiation";
+ name = "RADIOACTIVE AREA";
+ pixel_x = 32;
+ pixel_y = 0
},
/obj/structure/cable{
icon_state = "0-2";
- d2 = 2
+ d2 = 2
},
/obj/structure/cable{
d2 = 8;
- icon_state = "0-8"
+ icon_state = "0-8"
},
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/engine/gravity_generator)
-"brV" = (
+"bnX" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/carpet,
+/area/crew_quarters/captain)
+"bnY" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/captain,
/obj/machinery/airalarm{
dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
+ icon_state = "alarm0";
+ pixel_x = -22
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/carpet,
/area/crew_quarters/captain)
-"brW" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/carpet,
-/area/crew_quarters/captain)
-"brX" = (
+"bnZ" = (
/obj/structure/table/wood,
/obj/item/device/flashlight/lamp/green,
/turf/open/floor/carpet,
/area/crew_quarters/captain)
-"brY" = (
+"boa" = (
/obj/structure/toilet{
dir = 4
},
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/captain)
-"brZ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bsa" = (
+"bob" = (
/obj/structure/table/glass,
/obj/item/weapon/grenade/chem_grenade,
/obj/item/weapon/grenade/chem_grenade,
@@ -31037,184 +29496,166 @@
/obj/item/weapon/grenade/chem_grenade,
/obj/item/weapon/screwdriver{
pixel_x = -2;
- pixel_y = 6
+ pixel_y = 6
},
/obj/machinery/light{
icon_state = "tube1";
- dir = 8
+ dir = 8
},
/turf/open/floor/plasteel/white,
/area/medical/chemistry)
-"bsb" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/components/unary/vent_pump{
- on = 1
+"boc" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
},
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"bsc" = (
+/area/medical/medbay)
+"bod" = (
/obj/structure/table,
/obj/item/weapon/folder/white,
/obj/item/device/radio/headset/headset_med,
/turf/open/floor/plasteel/white,
/area/medical/chemistry)
-"bsd" = (
-/turf/closed/wall,
-/area/medical/medbay)
-"bse" = (
+"boe" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_medical{
id_tag = "MedbayFoyer";
- name = "Medbay";
- req_access_txt = "5"
+ name = "Medbay";
+ req_access_txt = "5"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/whiteblue/side{
dir = 1
},
/area/medical/medbay)
-"bsf" = (
+"bof" = (
+/turf/closed/wall,
+/area/medical/medbay)
+"bog" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/medical/medbay)
+"boh" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_medical{
id_tag = "MedbayFoyer";
- name = "Medbay";
- req_access_txt = "5"
+ name = "Medbay";
+ req_access_txt = "5"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/whiteblue/side{
dir = 1
},
/area/medical/medbay)
-"bsg" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/medical/medbay)
-"bsh" = (
+"boi" = (
/obj/machinery/computer/med_data,
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bsi" = (
+"boj" = (
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
+ icon_state = "alarm0";
+ pixel_y = -22
},
/obj/machinery/requests_console{
announcementConsole = 0;
- department = "Medbay";
- departmentType = 1;
- name = "Medbay RC";
- pixel_x = 30;
- pixel_y = 0;
- pixel_z = 0
+ department = "Medbay";
+ departmentType = 1;
+ name = "Medbay RC";
+ pixel_x = 30;
+ pixel_y = 0;
+ pixel_z = 0
},
/obj/machinery/light,
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bsj" = (
+"bok" = (
/obj/machinery/door/airlock/glass_security{
name = "Security Office";
- req_access_txt = "63"
+ req_access_txt = "63"
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white,
/area/security/checkpoint/medical)
-"bsk" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/security/checkpoint/medical)
-"bsl" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/airlock/medical{
- name = "Morgue";
- req_access_txt = "6;5"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/black,
-/area/medical/morgue)
-"bsm" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
+"bol" = (
+/obj/machinery/airalarm{
+ frequency = 1439;
+ pixel_y = 23
},
-/turf/closed/wall,
-/area/medical/morgue)
-"bsn" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/closed/wall,
-/area/medical/morgue)
-"bso" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/closed/wall/r_wall,
-/area/medical/genetics)
-"bsp" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
+/turf/open/floor/plasteel/white,
+/area/medical/medbay)
+"bom" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay)
+"bon" = (
/turf/closed/wall/r_wall,
/area/medical/genetics)
-"bsq" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bsr" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
+"boo" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
},
-/turf/closed/wall,
-/area/assembly/chargebay)
-"bss" = (
+/turf/open/floor/plasteel/white,
+/area/medical/medbay)
+"bop" = (
/obj/machinery/mech_bay_recharge_port,
/obj/structure/cable{
icon_state = "0-2";
- d2 = 2
+ d2 = 2
},
/turf/open/floor/plating,
/area/assembly/chargebay)
-"bst" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
+"boq" = (
+/obj/structure/bed/roller,
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 4
+ },
+/area/medical/medbay)
+"bor" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/assembly/chargebay)
-"bsu" = (
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
+/turf/open/floor/bluegrid,
/area/assembly/chargebay)
-"bsv" = (
+"bos" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/assembly/robotics)
+"bot" = (
/obj/structure/grille,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -31222,235 +29663,160 @@
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/assembly/robotics)
-"bsw" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/assembly/robotics)
-"bsx" = (
+"bou" = (
/turf/open/floor/plasteel,
/area/assembly/robotics)
-"bsy" = (
+"bov" = (
/obj/structure/table,
/obj/item/device/assembly/prox_sensor{
pixel_x = -8;
- pixel_y = 4
+ pixel_y = 4
},
/obj/item/device/assembly/prox_sensor{
pixel_x = -8;
- pixel_y = 4
+ pixel_y = 4
},
/obj/item/device/assembly/prox_sensor{
pixel_x = -8;
- pixel_y = 4
+ pixel_y = 4
},
/obj/item/device/assembly/prox_sensor{
pixel_x = -8;
- pixel_y = 4
+ pixel_y = 4
},
/obj/item/weapon/stock_parts/cell/high/plus,
/obj/item/weapon/stock_parts/cell/high/plus{
pixel_x = 5;
- pixel_y = -5
+ pixel_y = -5
},
/obj/machinery/light{
dir = 4;
- icon_state = "tube1"
+ icon_state = "tube1"
},
/obj/item/weapon/crowbar,
/turf/open/floor/plasteel/white,
/area/assembly/robotics)
-"bsz" = (
-/turf/closed/wall,
-/area/assembly/robotics)
-"bsA" = (
+"bow" = (
/obj/machinery/door/firedoor/heavy,
/obj/machinery/door/poddoor/preopen{
id = "Biohazard";
- name = "biohazard containment door"
+ name = "biohazard containment door"
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
/area/medical/research{
name = "Research Division"
})
-"bsB" = (
+"box" = (
+/turf/closed/wall,
+/area/assembly/robotics)
+"boy" = (
/obj/machinery/door/firedoor/heavy,
/obj/machinery/door/poddoor/preopen{
id = "Biohazard";
- name = "biohazard containment door"
+ name = "biohazard containment door"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
/area/medical/research{
name = "Research Division"
})
-"bsC" = (
+"boz" = (
/obj/machinery/door/firedoor/heavy,
/obj/machinery/door/poddoor/preopen{
id = "Biohazard";
- name = "biohazard containment door"
+ name = "biohazard containment door"
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
/area/medical/research{
name = "Research Division"
})
-"bsD" = (
-/turf/closed/wall,
-/area/toxins/lab)
-"bsE" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/lab)
-"bsF" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/lab)
-"bsG" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
+"boA" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel/white,
/area/toxins/lab)
-"bsH" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/effect/turf_decal/stripes/corner{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/lab)
-"bsI" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/plasteel/white,
+"boB" = (
+/turf/closed/wall,
/area/toxins/lab)
-"bsJ" = (
-/obj/item/weapon/stock_parts/console_screen,
-/obj/structure/table/glass,
-/obj/item/weapon/stock_parts/console_screen,
-/obj/item/weapon/stock_parts/console_screen,
-/obj/item/weapon/stock_parts/matter_bin,
-/obj/item/weapon/stock_parts/matter_bin,
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/obj/item/weapon/stock_parts/scanning_module{
- pixel_x = 2;
- pixel_y = 3
- },
-/obj/item/weapon/stock_parts/scanning_module,
-/obj/machinery/power/apc{
- dir = 4;
- name = "Research Lab APC";
- pixel_x = 26;
- pixel_y = 0
+"boC" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
},
+/turf/closed/wall,
+/area/assembly/chargebay)
+"boD" = (
/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/lab)
-"bsK" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/obj/structure/plasticflaps{
- opacity = 1
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/turf/open/floor/plasteel/loadingarea,
-/area/toxins/lab)
-"bsL" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/turf/closed/wall,
-/area/toxins/lab)
-"bsM" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+/turf/open/floor/bluegrid,
+/area/assembly/chargebay)
+"boE" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bsN" = (
+/turf/open/floor/bluegrid,
+/area/assembly/chargebay)
+"boF" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"bsO" = (
+"boG" = (
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/assembly/chargebay)
+"boH" = (
/obj/structure/disposalpipe/segment{
dir = 2;
- icon_state = "pipe-c"
+ icon_state = "pipe-c"
},
/obj/structure/cable{
d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d2 = 8;
+ icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"bsP" = (
+"boI" = (
/obj/structure/grille,
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 0
},
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/quartermaster/storage)
-"bsQ" = (
+"boJ" = (
/obj/machinery/conveyor_switch/oneway{
id = "QMLoad2"
},
@@ -31459,178 +29825,178 @@
},
/turf/open/floor/plasteel,
/area/quartermaster/storage)
-"bsR" = (
+"boK" = (
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
/area/quartermaster/storage)
-"bsS" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/turf/open/floor/plating,
-/area/quartermaster/storage)
-"bsT" = (
-/turf/open/floor/plasteel/brown/corner{
- dir = 1
- },
-/area/quartermaster/office)
-"bsU" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bsV" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
+"boL" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bsW" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+ dir = 9
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bsX" = (
-/obj/effect/landmark/start{
- name = "Cargo Technician"
+/area/assembly/chargebay)
+"boM" = (
+/turf/open/floor/plasteel/white/corner{
+ dir = 2
},
-/obj/structure/chair/office/dark{
- dir = 4
+/area/medical/research{
+ name = "Research Division"
+ })
+"boN" = (
+/turf/open/floor/plasteel/brown/corner{
+ dir = 1
+ },
+/area/quartermaster/office)
+"boO" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/white/side{
+ dir = 2
},
+/area/medical/research{
+ name = "Research Division"
+ })
+"boP" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/white,
+/area/toxins/lab)
+"boQ" = (
+/obj/structure/table,
+/obj/machinery/cell_charger,
+/obj/item/weapon/stock_parts/cell/high/plus,
+/obj/item/weapon/stock_parts/cell/high/plus,
+/turf/open/floor/plasteel/white,
+/area/toxins/lab)
+"boR" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
+/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"bsY" = (
+"boS" = (
/obj/structure/table/reinforced,
/obj/machinery/door/firedoor,
/obj/machinery/door/window/westleft{
name = "Cargo Desk";
- req_access_txt = "50"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+ req_access_txt = "50"
},
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bsZ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"bta" = (
+"boT" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"btb" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plasteel/brown/corner{
- dir = 8
+"boU" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
-/area/hallway/primary/central)
-"btc" = (
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"boV" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"btd" = (
+"boW" = (
/obj/structure/disposalpipe/segment{
- dir = 4
+ dir = 4;
+ icon_state = "pipe-c"
},
-/turf/open/floor/plasteel/red/side{
- dir = 4
+/turf/open/floor/plasteel/brown/corner{
+ dir = 8
},
/area/hallway/primary/central)
-"bte" = (
+"boX" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/door/poddoor/shutters/preopen{
id = "hopqueue";
- name = "HoP Queue Shutters"
+ name = "HoP Queue Shutters"
},
/turf/open/floor/plasteel/loadingarea{
dir = 8
},
/area/hallway/primary/central)
-"btf" = (
+"boY" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
+/turf/open/floor/plasteel/red/side{
+ dir = 4
+ },
/area/hallway/primary/central)
-"btg" = (
+"boZ" = (
/obj/structure/table/reinforced,
/obj/machinery/door/window/northleft{
dir = 8;
- icon_state = "left";
- name = "Reception Window";
- req_access_txt = "0"
+ icon_state = "left";
+ name = "Reception Window";
+ req_access_txt = "0"
},
/obj/machinery/door/window/brigdoor{
base_state = "rightsecure";
- dir = 4;
- icon_state = "rightsecure";
- name = "Head of Personnel's Desk";
- req_access = null;
- req_access_txt = "57"
+ dir = 4;
+ icon_state = "rightsecure";
+ name = "Head of Personnel's Desk";
+ req_access = null;
+ req_access_txt = "57"
},
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/flasher{
id = "hopflash";
- pixel_x = 0;
- pixel_y = 28
+ pixel_x = 0;
+ pixel_y = 28
},
/obj/machinery/door/poddoor/shutters/preopen{
id = "hop";
- layer = 2.9;
- name = "Privacy Shutters"
+ layer = 2.9;
+ name = "Privacy Shutters"
},
/turf/open/floor/plasteel,
/area/crew_quarters/heads)
-"bth" = (
+"bpa" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bpb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/heads)
+"bpc" = (
/obj/structure/chair/office/dark{
dir = 8
},
@@ -31641,102 +30007,96 @@
dir = 8
},
/area/crew_quarters/heads)
-"bti" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
+"bpd" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/carpet,
/area/crew_quarters/heads)
-"btj" = (
+"bpe" = (
/obj/structure/disposalpipe/segment{
dir = 8;
- icon_state = "pipe-c"
+ icon_state = "pipe-c"
},
/turf/open/floor/carpet,
/area/crew_quarters/heads)
-"btk" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/carpet,
-/area/crew_quarters/heads)
-"btl" = (
+"bpf" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/crew_quarters/heads)
-"btm" = (
+"bpg" = (
/obj/structure/chair/office/light,
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -24
+ pixel_x = -24
},
/obj/effect/turf_decal/stripes/line{
dir = 9
},
/turf/open/floor/plasteel,
/area/engine/gravity_generator)
-"btn" = (
+"bph" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel,
/area/engine/gravity_generator)
-"bto" = (
+"bpi" = (
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
+ icon_state = "alarm0";
+ pixel_x = 24
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/effect/turf_decal/stripes/line{
dir = 5
},
/turf/open/floor/plasteel,
/area/engine/gravity_generator)
-"btp" = (
-/obj/structure/closet/secure_closet/captains,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/carpet,
-/area/crew_quarters/captain)
-"btq" = (
+"bpj" = (
/obj/structure/chair/comfy/brown{
dir = 4
},
/obj/machinery/camera{
c_tag = "Captain's Quarters";
- dir = 1
+ dir = 1
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
/turf/open/floor/carpet,
/area/crew_quarters/captain)
-"btr" = (
+"bpk" = (
+/obj/structure/closet/secure_closet/captains,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/carpet,
+/area/crew_quarters/captain)
+"bpl" = (
/obj/structure/table/wood,
/obj/item/weapon/storage/box/matches,
/obj/item/weapon/razor{
pixel_x = -4;
- pixel_y = 2
+ pixel_y = 2
},
/obj/item/clothing/mask/cigarette/cigar,
/obj/item/weapon/reagent_containers/food/drinks/flask/gold,
/turf/open/floor/carpet,
/area/crew_quarters/captain)
-"bts" = (
+"bpm" = (
/obj/machinery/shower{
dir = 1
},
@@ -31748,82 +30108,99 @@
/obj/structure/curtain,
/turf/open/floor/plasteel/freezer,
/area/crew_quarters/captain)
-"btt" = (
+"bpn" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/light{
dir = 8
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"btu" = (
-/obj/structure/closet/wardrobe/chemistry_white,
-/obj/machinery/light_switch{
- pixel_x = -23;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"btv" = (
+"bpo" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/table,
-/obj/item/weapon/book/manual/wiki/chemistry,
-/obj/item/weapon/book/manual/wiki/chemistry{
- pixel_x = 3;
- pixel_y = 3
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"btw" = (
-/obj/structure/chair,
+/area/toxins/lab)
+"bpp" = (
+/obj/machinery/door/window/eastright{
+ base_state = "left";
+ dir = 8;
+ icon_state = "left";
+ name = "Research Division Delivery";
+ req_access_txt = "47"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/toxins/lab)
+"bpq" = (
+/obj/machinery/light_switch{
+ pixel_x = 0;
+ pixel_y = -23
+ },
/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"btx" = (
+/area/toxins/lab)
+"bpr" = (
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=8";
+ dir = 8;
+ freq = 1400;
+ location = "Research Division"
+ },
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/toxins/lab)
+"bps" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/loadingarea{
+ dir = 4
+ },
+/area/quartermaster/storage)
+"bpt" = (
/obj/structure/table,
/obj/item/weapon/hand_labeler,
/obj/item/stack/packageWrap,
/turf/open/floor/plasteel/white,
/area/medical/chemistry)
-"bty" = (
+"bpu" = (
/obj/structure/bed/roller,
/obj/machinery/button/door{
desc = "A remote control switch for the medbay foyer.";
- id = "MedbayFoyer";
- name = "Medbay Exit Button";
- normaldoorcontrol = 1;
- pixel_x = 0;
- pixel_y = 26
+ id = "MedbayFoyer";
+ name = "Medbay Exit Button";
+ normaldoorcontrol = 1;
+ pixel_x = 0;
+ pixel_y = 26
},
/obj/structure/extinguisher_cabinet{
pixel_x = -27;
- pixel_y = 0
+ pixel_y = 0
},
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"btz" = (
-/obj/machinery/status_display,
-/turf/closed/wall,
-/area/medical/medbay)
-"btA" = (
+"bpv" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical{
name = "Medbay Reception";
- req_access_txt = "5"
+ req_access_txt = "5"
},
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"btB" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plasteel/white,
+"bpw" = (
+/obj/machinery/status_display,
+/turf/closed/wall,
/area/medical/medbay)
-"btC" = (
+"bpx" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -31831,266 +30208,270 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"btD" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"btE" = (
-/obj/structure/sign/nosmoking_2{
- pixel_x = 0;
- pixel_y = 30
- },
+"bpy" = (
/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+ dir = 4;
+ icon_state = "pipe-c"
},
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"btF" = (
-/obj/machinery/airalarm{
- frequency = 1439;
- pixel_y = 23
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+"bpz" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"btG" = (
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"bpA" = (
+/obj/machinery/computer/cargo,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bpB" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"btH" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bpC" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bpD" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_medical{
+ id_tag = null;
+ name = "Chemistry Lab";
+ req_access_txt = "5; 33"
},
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"btI" = (
-/obj/machinery/light{
- dir = 1
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"btJ" = (
-/obj/structure/bed/roller,
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 4
- },
-/area/medical/medbay)
-"btK" = (
+/area/medical/chemistry)
+"bpE" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/medical/genetics)
-"btL" = (
+"bpF" = (
+/obj/structure/table/reinforced,
+/obj/machinery/door/window/southleft{
+ dir = 1;
+ name = "Chemistry Desk";
+ req_access_txt = "33"
+ },
+/obj/machinery/door/firedoor,
+/turf/open/floor/plating,
+/area/medical/chemistry)
+"bpG" = (
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "Genetics APC";
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"bpH" = (
/obj/structure/table/glass,
/obj/item/weapon/folder/white,
/obj/item/device/radio/headset/headset_medsci,
/obj/machinery/requests_console{
department = "Genetics";
- departmentType = 0;
- name = "Genetics Requests Console";
- pixel_x = 0;
- pixel_y = 30
+ departmentType = 0;
+ name = "Genetics Requests Console";
+ pixel_x = 0;
+ pixel_y = 30
},
/obj/item/weapon/storage/pill_bottle/mutadone,
/obj/item/weapon/storage/pill_bottle/mannitol,
/turf/open/floor/plasteel/white,
/area/medical/genetics)
-"btM" = (
-/obj/machinery/power/apc{
- dir = 1;
- name = "Genetics APC";
- pixel_y = 24
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+"bpI" = (
+/obj/machinery/dna_scannernew,
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 5
},
-/turf/open/floor/plasteel/white,
/area/medical/genetics)
-"btN" = (
+"bpJ" = (
/obj/machinery/light{
dir = 1
},
/obj/machinery/airalarm{
frequency = 1439;
- pixel_y = 23
+ pixel_y = 23
},
/turf/open/floor/plasteel/white,
/area/medical/genetics)
-"btO" = (
-/obj/machinery/dna_scannernew,
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 5
- },
+"bpK" = (
+/mob/living/carbon/monkey,
+/turf/open/floor/plasteel,
/area/medical/genetics)
-"btP" = (
+"bpL" = (
/obj/structure/window/reinforced{
dir = 8
},
/turf/open/floor/plasteel,
/area/medical/genetics)
-"btQ" = (
-/mob/living/carbon/monkey,
-/turf/open/floor/plasteel,
-/area/medical/genetics)
-"btR" = (
-/turf/closed/wall/r_wall,
-/area/medical/genetics)
-"btS" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+"bpM" = (
+/obj/structure/grille,
+/obj/structure/disposalpipe/segment,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/medical/chemistry)
+"bpN" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
-/turf/closed/wall,
-/area/assembly/chargebay)
-"btT" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = -27
+/turf/open/floor/plasteel/white,
+/area/medical/medbay)
+"bpO" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay)
+"bpP" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/open/floor/bluegrid,
-/area/assembly/chargebay)
-"btU" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+ dir = 5
},
-/turf/open/floor/bluegrid,
-/area/assembly/chargebay)
-"btV" = (
+/turf/open/floor/plasteel/white,
+/area/medical/medbay)
+"bpQ" = (
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+/obj/structure/disposalpipe/sortjunction{
+ dir = 2;
+ icon_state = "pipe-j2s";
+ sortType = 14
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/asmaint)
+"bpR" = (
+/obj/structure/table,
+/obj/item/weapon/retractor,
+/obj/item/weapon/hemostat,
+/turf/open/floor/plasteel,
+/area/assembly/robotics)
+"bpS" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/bluegrid,
-/area/assembly/chargebay)
-"btW" = (
-/obj/structure/disposalpipe/segment,
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
+ d2 = 4;
+ icon_state = "1-4"
},
-/turf/open/floor/plasteel,
-/area/assembly/chargebay)
-"btX" = (
-/obj/machinery/airalarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/assembly/chargebay)
-"btY" = (
-/obj/structure/table,
-/obj/item/weapon/retractor,
-/obj/item/weapon/hemostat,
-/turf/open/floor/plasteel,
-/area/assembly/robotics)
-"btZ" = (
+"bpT" = (
/obj/structure/table,
/obj/item/device/mmi,
/obj/item/device/mmi,
/obj/item/device/mmi,
/obj/structure/window/reinforced{
dir = 4;
- pixel_x = 0
+ pixel_x = 0
},
/turf/open/floor/plasteel,
/area/assembly/robotics)
-"bua" = (
+"bpU" = (
/obj/structure/table,
/obj/item/weapon/storage/firstaid/regular{
empty = 1;
- name = "First-Aid (empty)"
+ name = "First-Aid (empty)"
},
/obj/item/weapon/storage/firstaid/regular{
empty = 1;
- name = "First-Aid (empty)"
+ name = "First-Aid (empty)"
},
/obj/item/weapon/storage/firstaid/regular{
empty = 1;
- name = "First-Aid (empty)"
+ name = "First-Aid (empty)"
},
/obj/item/device/healthanalyzer,
/obj/item/device/healthanalyzer,
/obj/item/device/healthanalyzer,
/turf/open/floor/plasteel/white,
/area/assembly/robotics)
-"bub" = (
+"bpV" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Mech Bay Maintenance";
+ req_access_txt = "29"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/assembly/chargebay)
+"bpW" = (
/obj/structure/grille,
/obj/machinery/door/poddoor/shutters/preopen{
id = "robotics2";
- name = "robotics lab shutters"
+ name = "robotics lab shutters"
},
/obj/structure/window/fulltile,
/obj/machinery/door/poddoor/shutters/preopen{
id = "robotics2";
- name = "robotics lab shutters"
+ name = "robotics lab shutters"
},
/turf/open/floor/plating,
/area/assembly/robotics)
-"buc" = (
-/turf/open/floor/plasteel/white/corner{
- dir = 2
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bud" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/white/side{
- dir = 2
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bue" = (
+"bpX" = (
/obj/machinery/firealarm{
dir = 4;
- pixel_x = 24
+ pixel_x = 24
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white/corner{
@@ -32099,286 +30480,274 @@
/area/medical/research{
name = "Research Division"
})
-"buf" = (
+"bpY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/assembly/chargebay)
+"bpZ" = (
/obj/item/weapon/folder/white,
/obj/structure/table,
/obj/item/weapon/disk/tech_disk{
pixel_x = 0;
- pixel_y = 0
+ pixel_y = 0
},
/obj/item/weapon/disk/tech_disk{
pixel_x = 0;
- pixel_y = 0
+ pixel_y = 0
},
/obj/item/weapon/disk/design_disk,
/obj/item/weapon/disk/design_disk,
/turf/open/floor/plasteel/white,
/area/toxins/lab)
-"bug" = (
-/obj/structure/table,
-/obj/machinery/cell_charger,
-/obj/item/weapon/stock_parts/cell/high/plus,
-/obj/item/weapon/stock_parts/cell/high/plus,
-/turf/open/floor/plasteel/white,
-/area/toxins/lab)
-"buh" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/white,
-/area/toxins/lab)
-"bui" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+"bqa" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/assembly/chargebay)
+"bqb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/lab)
-"buj" = (
-/obj/machinery/light_switch{
- pixel_x = 0;
- pixel_y = -23
+ d2 = 8;
+ icon_state = "1-8"
},
-/turf/open/floor/plasteel/white,
-/area/toxins/lab)
-"buk" = (
-/obj/machinery/door/window/eastright{
- base_state = "left";
- dir = 8;
- icon_state = "left";
- name = "Research Division Delivery";
- req_access_txt = "47"
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
-/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
-/area/toxins/lab)
-"bul" = (
-/obj/machinery/navbeacon{
- codes_txt = "delivery;dir=8";
- dir = 8;
- freq = 1400;
- location = "Research Division"
+/area/assembly/chargebay)
+"bqc" = (
+/obj/structure/table,
+/obj/item/weapon/circular_saw,
+/obj/item/weapon/scalpel{
+ pixel_y = 12
},
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/toxins/lab)
-"bum" = (
+/turf/open/floor/plasteel/white/corner{
+ dir = 2
+ },
+/area/assembly/robotics)
+"bqd" = (
+/obj/structure/table,
+/obj/item/clothing/gloves/color/latex,
+/obj/item/weapon/surgical_drapes,
+/obj/item/weapon/razor,
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 0
+ },
+/turf/open/floor/plasteel/white/corner{
+ dir = 8
+ },
+/area/assembly/robotics)
+"bqe" = (
/turf/closed/wall/r_wall,
/area/toxins/explab)
-"bun" = (
-/obj/structure/shuttle/engine/propulsion{
- icon_state = "propulsion_r";
- dir = 4
- },
-/turf/open/floor/plating/airless,
-/area/shuttle/abandoned)
-"buo" = (
-/obj/machinery/door/airlock/titanium,
-/turf/open/floor/plating,
-/area/shuttle/abandoned)
-"bup" = (
-/obj/item/weapon/stock_parts/cell{
- charge = 100;
- maxcharge = 15000
+"bqf" = (
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "rnd2";
+ name = "research lab shutters"
},
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"buq" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/white,
+/area/toxins/lab)
+"bqg" = (
/obj/structure/rack,
-/obj/item/weapon/tank/internals/emergency_oxygen,
-/obj/item/weapon/tank/internals/emergency_oxygen,
-/obj/item/weapon/tank/internals/emergency_oxygen,
-/obj/item/weapon/tank/internals/emergency_oxygen,
-/obj/item/weapon/storage/toolbox/mechanical,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"bur" = (
-/obj/structure/frame/computer{
- anchored = 1
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"bqh" = (
+/obj/machinery/light/small{
+ dir = 1
},
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"bus" = (
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"bqi" = (
/obj/machinery/conveyor{
dir = 4;
- id = "QMLoad2"
+ id = "QMLoad2"
},
/obj/machinery/door/poddoor{
id = "QMLoaddoor2";
- name = "supply dock loading door"
- },
-/turf/open/floor/plating,
-/area/shuttle/supply)
-"but" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "QMLoad2"
- },
-/obj/machinery/door/poddoor{
- id = "QMLoaddoor2";
- name = "supply dock loading door"
+ name = "supply dock loading door"
},
/turf/open/floor/plating,
/area/quartermaster/storage)
-"buu" = (
+"bqj" = (
/obj/structure/plasticflaps,
/obj/machinery/conveyor{
dir = 4;
- id = "QMLoad2"
+ id = "QMLoad2"
},
/turf/open/floor/plating,
/area/quartermaster/storage)
-"buv" = (
+"bqk" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "rnd2";
+ name = "research lab shutters"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/white,
+/area/toxins/lab)
+"bql" = (
/obj/machinery/conveyor{
dir = 4;
- id = "QMLoad2"
+ id = "QMLoad2"
},
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plating,
/area/quartermaster/storage)
-"buw" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel/loadingarea{
- dir = 4
- },
-/area/quartermaster/storage)
-"bux" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"buy" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"buz" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
+"bqm" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/quartermaster/storage)
-"buA" = (
+"bqn" = (
/obj/machinery/light_switch{
pixel_x = 27
},
/turf/open/floor/plasteel,
/area/quartermaster/storage)
-"buB" = (
+"bqo" = (
/obj/machinery/autolathe,
/obj/machinery/light_switch{
pixel_x = -27
},
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"buC" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
+"bqp" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 1
+ },
/area/quartermaster/office)
-"buD" = (
-/obj/structure/disposalpipe/segment,
+"bqq" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"buE" = (
-/obj/machinery/computer/cargo,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"buF" = (
+/turf/open/floor/carpet,
+/area/crew_quarters/heads)
+"bqr" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/carpet,
+/area/crew_quarters/heads)
+"bqs" = (
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"buG" = (
+"bqt" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"buH" = (
+"bqu" = (
/obj/machinery/door/firedoor,
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"buI" = (
-/turf/open/floor/plasteel/red/corner{
- dir = 4
- },
-/area/hallway/primary/central)
-"buJ" = (
+"bqv" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
/turf/open/floor/plating,
/area/hallway/primary/central)
-"buK" = (
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
+"bqw" = (
+/turf/open/floor/plasteel/red/corner{
+ dir = 4
+ },
/area/hallway/primary/central)
-"buL" = (
+"bqx" = (
/obj/structure/grille,
/obj/structure/cable{
icon_state = "0-2";
- d2 = 2
+ d2 = 2
},
/obj/machinery/door/poddoor/shutters/preopen{
id = "hop";
- layer = 2.9;
- name = "Privacy Shutters"
+ layer = 2.9;
+ name = "Privacy Shutters"
},
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/crew_quarters/heads)
-"buM" = (
+"bqy" = (
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bqz" = (
+/turf/open/floor/carpet,
+/area/crew_quarters/heads)
+"bqA" = (
/obj/machinery/computer/card,
/turf/open/floor/plasteel/blue/side{
dir = 10
},
/area/crew_quarters/heads)
-"buN" = (
-/turf/open/floor/carpet,
-/area/crew_quarters/heads)
-"buO" = (
+"bqB" = (
/obj/machinery/holopad,
/turf/open/floor/carpet,
/area/crew_quarters/heads)
-"buP" = (
+"bqC" = (
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
+ icon_state = "alarm0";
+ pixel_x = 24
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/crew_quarters/heads)
-"buQ" = (
+"bqD" = (
/obj/structure/cable{
icon_state = "0-4";
- d2 = 4
+ d2 = 4
},
/obj/machinery/power/apc{
dir = 8;
- name = "Gravity Generator APC";
- pixel_x = -25;
- pixel_y = 1
+ name = "Gravity Generator APC";
+ pixel_x = -25;
+ pixel_y = 1
},
/obj/structure/table,
/obj/item/weapon/paper/gravity_gen{
@@ -32387,31 +30756,31 @@
/obj/item/weapon/pen/blue,
/obj/item/device/radio/intercom{
name = "Station Intercom (General)";
- pixel_y = -35
+ pixel_y = -35
},
/turf/open/floor/plasteel,
/area/engine/gravity_generator)
-"buR" = (
+"bqE" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
+/obj/machinery/holopad,
/turf/open/floor/plasteel,
/area/engine/gravity_generator)
-"buS" = (
+"bqF" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/holopad,
/turf/open/floor/plasteel,
/area/engine/gravity_generator)
-"buT" = (
+"bqG" = (
/obj/structure/cable{
d2 = 8;
- icon_state = "0-8"
+ icon_state = "0-8"
},
/obj/structure/cable,
/obj/machinery/power/smes{
@@ -32419,145 +30788,206 @@
},
/turf/open/floor/plasteel,
/area/engine/gravity_generator)
-"buU" = (
+"bqH" = (
/turf/closed/wall/r_wall,
/area/teleporter)
-"buV" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+"bqI" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall/r_wall,
/area/teleporter)
-"buW" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+"bqJ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall/r_wall,
/area/teleporter)
-"buX" = (
+"bqK" = (
/obj/machinery/door/airlock/maintenance{
name = "Teleporter Maintenance";
- req_access_txt = "17"
+ req_access_txt = "17"
},
/obj/structure/sign/securearea{
pixel_x = -32;
- pixel_y = 0
+ pixel_y = 0
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/open/floor/plating,
/area/teleporter)
-"buY" = (
+"bqL" = (
/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"buZ" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+"bqM" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/medical/medbay)
+"bqN" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bva" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_medical{
- id_tag = null;
- name = "Chemistry Lab";
- req_access_txt = "5; 33"
- },
+"bqO" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 4;
+ icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/chemistry)
-"bvb" = (
-/obj/structure/grille,
-/obj/structure/disposalpipe/segment,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/medical/chemistry)
-"bvc" = (
-/obj/structure/table/reinforced,
-/obj/machinery/door/window/southleft{
- dir = 1;
- name = "Chemistry Desk";
- req_access_txt = "33"
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
-/obj/machinery/door/firedoor,
-/turf/open/floor/plating,
-/area/medical/chemistry)
-"bvd" = (
+/turf/open/floor/plasteel/whiteyellow/side{
+ dir = 1
+ },
+/area/medical/medbay)
+"bqP" = (
/obj/structure/bed/roller,
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bve" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
+"bqQ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bvf" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
+"bqR" = (
+/obj/structure/table,
+/obj/item/weapon/crowbar,
+/obj/item/clothing/neck/stethoscope,
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/obj/structure/sign/nosmoking_2{
+ pixel_x = 0;
+ pixel_y = 30
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteyellow/corner{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bvg" = (
+"bqS" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteyellow/side{
+ dir = 1
+ },
+/area/medical/medbay)
+"bqT" = (
/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/white,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
+/turf/open/floor/plasteel/whiteyellow/side{
+ dir = 1
+ },
/area/medical/medbay)
-"bvh" = (
+"bqU" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
+/obj/structure/noticeboard{
+ pixel_y = 32
+ },
+/obj/machinery/camera{
+ c_tag = "Medbay West";
+ dir = 2;
+ network = list("SS13")
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bvi" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+"bqV" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/turf/open/floor/plasteel/white,
+/turf/open/floor/plasteel/whiteyellow/corner{
+ dir = 1
+ },
/area/medical/medbay)
-"bvj" = (
+"bqW" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bvk" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
+"bqX" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
},
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bvl" = (
-/obj/structure/table/glass,
-/obj/item/weapon/storage/box/rxglasses,
+"bqY" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bvm" = (
+/area/medical/medbay)
+"bqZ" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/open/floor/plasteel/white,
/area/medical/genetics)
-"bvn" = (
+"bra" = (
+/obj/structure/table/glass,
+/obj/item/weapon/storage/box/rxglasses,
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"brb" = (
+/obj/machinery/computer/scan_consolenew,
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 6
+ },
+/area/medical/genetics)
+"brc" = (
/obj/structure/chair/office/light{
dir = 4
},
@@ -32566,235 +30996,264 @@
},
/turf/open/floor/plasteel/white,
/area/medical/genetics)
-"bvo" = (
-/obj/machinery/computer/scan_consolenew,
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 6
- },
+"brd" = (
+/turf/open/floor/plasteel,
/area/medical/genetics)
-"bvp" = (
+"bre" = (
/obj/structure/window/reinforced{
dir = 8
},
/mob/living/carbon/monkey,
/turf/open/floor/plasteel,
/area/medical/genetics)
-"bvq" = (
-/turf/open/floor/plasteel,
-/area/medical/genetics)
-"bvr" = (
+"brf" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/structure/disposalpipe/sortjunction{
- dir = 2;
- icon_state = "pipe-j2s";
- sortType = 14
+/turf/open/floor/plasteel/white,
+/area/medical/medbay)
+"brg" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay)
+"brh" = (
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
+/turf/open/floor/plasteel/whiteblue/corner{
+ dir = 2
},
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bvs" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Mech Bay Maintenance";
- req_access_txt = "29"
+/area/medical/medbay)
+"bri" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 2
+ },
+/area/medical/medbay)
+"brj" = (
+/obj/structure/bed/roller,
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 6
},
+/area/medical/medbay)
+"brk" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ on = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"brl" = (
+/obj/machinery/light_switch{
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel/white,
+/area/assembly/robotics)
+"brm" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/turf/open/floor/plating,
-/area/assembly/chargebay)
-"bvt" = (
+/turf/open/floor/plasteel/white/side{
+ dir = 9
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"brn" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/turf/open/floor/plasteel,
-/area/assembly/chargebay)
-"bvu" = (
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"bro" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/turf/open/floor/plasteel,
-/area/assembly/chargebay)
-"bvv" = (
+/turf/open/floor/plasteel/white/side{
+ dir = 10
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"brp" = (
/obj/structure/disposalpipe/segment{
dir = 8;
- icon_state = "pipe-c"
+ icon_state = "pipe-c"
},
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/assembly/chargebay)
-"bvw" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/assembly/chargebay)
-"bvx" = (
-/obj/structure/table,
-/obj/item/weapon/circular_saw,
-/obj/item/weapon/scalpel{
- pixel_y = 12
- },
-/turf/open/floor/plasteel/white/corner{
- dir = 2
- },
-/area/assembly/robotics)
-"bvy" = (
-/obj/structure/table,
-/obj/item/clothing/gloves/color/latex,
-/obj/item/weapon/surgical_drapes,
-/obj/item/weapon/razor,
-/obj/structure/window/reinforced{
- dir = 4;
- pixel_x = 0
- },
-/turf/open/floor/plasteel/white/corner{
- dir = 8
+ d2 = 2;
+ icon_state = "1-2"
},
-/area/assembly/robotics)
-"bvz" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"brq" = (
/obj/machinery/button/door{
dir = 2;
- id = "robotics2";
- name = "Shutters Control Button";
- pixel_x = 24;
- pixel_y = -24;
- req_access_txt = "29"
+ id = "robotics2";
+ name = "Shutters Control Button";
+ pixel_x = 24;
+ pixel_y = -24;
+ req_access_txt = "29"
},
/turf/open/floor/plasteel/white,
/area/assembly/robotics)
-"bvA" = (
+"brr" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/toxins/explab)
+"brs" = (
/obj/structure/table/reinforced,
/obj/machinery/door/window/eastright{
base_state = "left";
- dir = 8;
- icon_state = "left";
- name = "Robotics Desk";
- req_access_txt = "29"
+ dir = 8;
+ icon_state = "left";
+ name = "Robotics Desk";
+ req_access_txt = "29"
},
/obj/machinery/door/poddoor/shutters/preopen{
id = "robotics2";
- name = "robotics lab shutters"
+ name = "robotics lab shutters"
},
/obj/item/weapon/folder/white,
/obj/item/weapon/pen,
/turf/open/floor/plating,
/area/assembly/robotics)
-"bvB" = (
+"brt" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white/side{
- dir = 5
+ dir = 9
},
/area/medical/research{
name = "Research Division"
})
-"bvC" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/white/side{
- dir = 9
+"bru" = (
+/obj/machinery/firealarm{
+ dir = 2;
+ pixel_y = 24
},
-/area/medical/research{
- name = "Research Division"
- })
-"bvD" = (
-/obj/structure/grille,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "rnd2";
- name = "research lab shutters"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/structure/window/fulltile,
-/turf/open/floor/plating,
-/area/toxins/lab)
-"bvE" = (
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "rnd2";
- name = "research lab shutters"
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white,
-/area/toxins/lab)
-"bvF" = (
-/obj/structure/disposalpipe/segment,
+/area/toxins/explab)
+"brv" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/door/firedoor/heavy,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/explab)
+"brw" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/explab)
+"brx" = (
+/obj/structure/grille,
/obj/machinery/door/poddoor/shutters/preopen{
id = "rnd2";
- name = "research lab shutters"
+ name = "research lab shutters"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/white,
+/obj/structure/window/fulltile,
+/turf/open/floor/plating,
/area/toxins/lab)
-"bvG" = (
-/obj/structure/table,
-/obj/item/weapon/paper_bin{
- pixel_x = 0;
- pixel_y = 6
+"bry" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Experimentation Lab Maintenance";
+ req_access_txt = "7"
},
-/turf/open/floor/plasteel/white/corner{
- dir = 2
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
+/turf/open/floor/plating,
/area/toxins/explab)
-"bvH" = (
+"brz" = (
/obj/structure/table,
/obj/item/weapon/pen,
/obj/machinery/camera{
c_tag = "Experimentor Lab";
- dir = 2;
- network = list("SS13","RD")
+ dir = 2;
+ network = list("SS13","RD")
},
/obj/item/weapon/hand_labeler,
/obj/item/stack/packageWrap,
@@ -32802,26 +31261,36 @@
dir = 2
},
/area/toxins/explab)
-"bvI" = (
+"brA" = (
+/obj/structure/table,
+/obj/item/weapon/paper_bin{
+ pixel_x = 0;
+ pixel_y = 6
+ },
+/turf/open/floor/plasteel/white/corner{
+ dir = 2
+ },
+/area/toxins/explab)
+"brB" = (
+/obj/structure/closet/l3closet/scientist,
+/turf/open/floor/plasteel/white/side{
+ dir = 2
+ },
+/area/toxins/explab)
+"brC" = (
/obj/structure/table,
/obj/item/weapon/folder/white,
/obj/item/weapon/folder/white,
/obj/machinery/airalarm{
frequency = 1439;
- pixel_y = 23
+ pixel_y = 23
},
/obj/item/device/radio/off,
/turf/open/floor/plasteel/white/side{
dir = 2
},
/area/toxins/explab)
-"bvJ" = (
-/obj/structure/closet/l3closet/scientist,
-/turf/open/floor/plasteel/white/side{
- dir = 2
- },
-/area/toxins/explab)
-"bvK" = (
+"brD" = (
/obj/structure/closet/emcloset{
pixel_x = -2
},
@@ -32829,12 +31298,19 @@
dir = 8
},
/area/toxins/explab)
-"bvL" = (
+"brE" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"brF" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/sign/securearea{
pixel_x = -32
@@ -32842,234 +31318,281 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"bvM" = (
-/obj/structure/chair{
- dir = 1
+"brG" = (
+/obj/machinery/atmospherics/components/binary/valve{
+ dir = 4
},
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"bvN" = (
-/obj/item/weapon/shard{
- icon_state = "medium"
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"brH" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 6
},
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"bvO" = (
-/obj/machinery/door/airlock/titanium{
- name = "Supply Shuttle Airlock";
- req_access_txt = "31"
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"brI" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 8
+ },
+/obj/machinery/light/small{
+ dir = 4
},
/turf/open/floor/plating,
-/area/shuttle/supply)
-"bvP" = (
+/area/maintenance/asmaint2)
+"brJ" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 4;
- name = "Supply Dock Airlock";
- req_access_txt = "31"
+ name = "Supply Dock Airlock";
+ req_access_txt = "31"
},
/turf/open/floor/plating,
/area/quartermaster/storage)
-"bvQ" = (
-/turf/open/floor/plating,
-/area/quartermaster/storage)
-"bvR" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 8;
- name = "Supply Dock Airlock";
- req_access_txt = "31"
- },
+"brK" = (
/turf/open/floor/plating,
/area/quartermaster/storage)
-"bvS" = (
+"brL" = (
/obj/effect/turf_decal/stripes/line{
dir = 9
},
/turf/open/floor/plasteel,
/area/quartermaster/storage)
-"bvT" = (
-/obj/effect/landmark/event_spawn,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"bvU" = (
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/quartermaster/storage)
-"bvV" = (
+"brM" = (
/obj/machinery/navbeacon{
codes_txt = "delivery;dir=8";
- dir = 8;
- freq = 1400;
- location = "QM #1"
+ dir = 8;
+ freq = 1400;
+ location = "QM #1"
},
/obj/effect/turf_decal/bot,
/mob/living/simple_animal/bot/mulebot{
beacon_freq = 1400;
- home_destination = "QM #1";
- suffix = "#1"
+ home_destination = "QM #1";
+ suffix = "#1"
},
/turf/open/floor/plasteel,
/area/quartermaster/storage)
-"bvW" = (
+"brN" = (
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"brO" = (
/obj/structure/table,
/obj/machinery/requests_console{
department = "Cargo Bay";
- departmentType = 2;
- pixel_x = -30;
- pixel_y = 0
+ departmentType = 2;
+ pixel_x = -30;
+ pixel_y = 0
},
/obj/item/device/multitool,
/obj/machinery/camera{
c_tag = "Cargo Office";
- dir = 4;
- network = list("SS13")
+ dir = 4;
+ network = list("SS13")
},
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"bvX" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_mining{
- name = "Cargo Office";
- req_access_txt = "50"
+"brP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/explab)
+"brQ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/junction{
+ icon_state = "pipe-j2";
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"brR" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"bvY" = (
-/obj/effect/landmark/event_spawn,
+"brS" = (
/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bvZ" = (
+/area/crew_quarters/heads)
+"brT" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bwa" = (
-/obj/effect/landmark/event_spawn,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bwb" = (
+"brU" = (
/obj/structure/grille,
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
- pixel_y = -32
+ icon_state = "shock";
+ name = "HIGH VOLTAGE";
+ pixel_y = -32
},
/obj/structure/cable{
icon_state = "0-4";
- d2 = 4
+ d2 = 4
},
/obj/structure/cable,
/obj/machinery/door/poddoor/shutters/preopen{
id = "hop";
- layer = 2.9;
- name = "Privacy Shutters"
+ layer = 2.9;
+ name = "Privacy Shutters"
},
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/crew_quarters/heads)
-"bwc" = (
+"brV" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/medical/medbay)
+"brW" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
/obj/structure/filingcabinet/chestdrawer,
/turf/open/floor/plasteel,
/area/crew_quarters/heads)
-"bwd" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+"brX" = (
+/obj/structure/table,
+/obj/item/weapon/storage/box/masks{
+ pixel_x = 0;
+ pixel_y = 0
},
-/turf/open/floor/carpet,
-/area/crew_quarters/heads)
-"bwe" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+/obj/item/weapon/storage/box/gloves{
+ pixel_x = 3;
+ pixel_y = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/carpet,
-/area/crew_quarters/heads)
-"bwf" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay)
+"brY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay)
+"brZ" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d2 = 8;
+ icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/crew_quarters/heads)
-"bwg" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/closed/wall/r_wall,
-/area/engine/gravity_generator)
-"bwh" = (
+"bsa" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
/turf/closed/wall/r_wall,
/area/engine/gravity_generator)
-"bwi" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+"bsb" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
},
-/turf/open/floor/plasteel,
+/turf/closed/wall/r_wall,
/area/engine/gravity_generator)
-"bwj" = (
+"bsc" = (
/turf/open/floor/plasteel,
/area/engine/gravity_generator)
-"bwk" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
+"bsd" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
/turf/open/floor/plasteel,
/area/engine/gravity_generator)
-"bwl" = (
+"bse" = (
/obj/machinery/power/terminal{
icon_state = "term";
- dir = 1
+ dir = 1
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
/turf/closed/wall/r_wall,
/area/engine/gravity_generator)
-"bwm" = (
+"bsf" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/gravity_generator)
+"bsg" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
/turf/closed/wall/r_wall,
/area/engine/gravity_generator)
-"bwn" = (
+"bsh" = (
/turf/closed/wall,
/area/teleporter)
-"bwo" = (
+"bsi" = (
+/obj/structure/table,
+/obj/item/weapon/hand_tele,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/teleporter)
+"bsj" = (
/obj/structure/extinguisher_cabinet{
pixel_x = -27;
- pixel_y = 1
+ pixel_y = 1
},
/obj/structure/table,
/obj/item/device/radio/beacon,
@@ -33078,21 +31601,25 @@
},
/turf/open/floor/plasteel,
/area/teleporter)
-"bwp" = (
-/obj/structure/table,
-/obj/item/weapon/hand_tele,
+"bsk" = (
+/obj/machinery/firealarm{
+ dir = 2;
+ pixel_y = 24
+ },
+/obj/machinery/light{
+ dir = 1
+ },
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/teleporter)
-"bwq" = (
+"bsl" = (
/obj/item/device/radio/intercom{
broadcasting = 0;
- listening = 1;
- name = "Station Intercom (General)";
- pixel_y = 20
+ listening = 1;
+ name = "Station Intercom (General)";
+ pixel_y = 20
},
/obj/structure/closet/crate,
/obj/item/weapon/crowbar,
@@ -33101,304 +31628,301 @@
},
/turf/open/floor/plasteel,
/area/teleporter)
-"bwr" = (
-/obj/machinery/firealarm{
- dir = 2;
- pixel_y = 24
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+"bsm" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
},
/turf/open/floor/plasteel,
/area/teleporter)
-"bws" = (
+"bsn" = (
/obj/machinery/camera{
c_tag = "Teleporter"
},
/obj/machinery/airalarm{
frequency = 1439;
- pixel_y = 23
+ pixel_y = 23
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/teleporter)
-"bwt" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/teleporter)
-"bwu" = (
+"bso" = (
/obj/machinery/light_switch{
pixel_x = 27
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/open/floor/plasteel,
/area/teleporter)
-"bwv" = (
+"bsp" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/blue/side{
dir = 8
},
/area/hallway/primary/central)
-"bww" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bwx" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+"bsq" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/plating,
-/area/medical/medbay)
-"bwy" = (
-/obj/structure/table,
-/obj/item/weapon/crowbar,
-/obj/item/clothing/neck/stethoscope,
-/obj/item/weapon/reagent_containers/spray/cleaner,
-/obj/structure/sign/nosmoking_2{
+/obj/item/device/radio/intercom{
+ broadcasting = 0;
+ freerange = 0;
+ frequency = 1485;
+ listening = 1;
+ name = "Station Intercom (Medbay)";
pixel_x = 0;
- pixel_y = 30
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+ pixel_y = -30
},
-/turf/open/floor/plasteel/whiteyellow/corner{
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
+/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bwz" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+"bsr" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/plasteel/whiteyellow/side{
- dir = 1
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_Toxins = 0
},
+/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bwA" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
-/turf/open/floor/plasteel/whiteyellow/side{
- dir = 1
+"bss" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bwB" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+"bst" = (
+/obj/item/device/radio/intercom{
+ broadcasting = 0;
+ freerange = 0;
+ frequency = 1485;
+ listening = 1;
+ name = "Station Intercom (Medbay)";
+ pixel_x = 30;
+ pixel_y = 0
},
-/turf/open/floor/plasteel/whiteyellow/side{
- dir = 1
+/obj/machinery/camera{
+ c_tag = "Medbay East";
+ dir = 8;
+ network = list("SS13");
+ pixel_x = 0;
+ pixel_y = -22
},
+/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bwC" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+"bsu" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_medical{
+ id_tag = "GeneticsDoor";
+ name = "Genetics";
+ req_access_txt = "5; 68"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"bsv" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/open/floor/plasteel/whiteyellow/corner{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"bsw" = (
+/obj/machinery/door/airlock/research{
+ name = "Robotics Lab";
+ req_access_txt = "29";
+ req_one_access_txt = "0"
},
-/area/medical/medbay)
-"bwD" = (
+/turf/open/floor/plasteel/white,
+/area/assembly/robotics)
+"bsx" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/structure/noticeboard{
- pixel_y = 32
- },
-/obj/machinery/camera{
- c_tag = "Medbay West";
- dir = 2;
- network = list("SS13")
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bwE" = (
+"bsy" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bwF" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+"bsz" = (
+/obj/machinery/status_display{
+ density = 0;
+ layer = 3;
+ pixel_x = -32;
+ pixel_y = 0
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+/turf/open/floor/plasteel/white/side{
+ dir = 5
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"bsA" = (
+/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,
+/turf/open/floor/plasteel/white/side{
dir = 9
},
+/area/medical/research{
+ name = "Research Division"
+ })
+"bsB" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"bsC" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bwG" = (
+/area/medical/research{
+ name = "Research Division"
+ })
+"bsD" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bwH" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bwI" = (
+/area/medical/research{
+ name = "Research Division"
+ })
+"bsE" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/airlock/research{
+ name = "Experimentation Lab";
+ req_access_txt = "7"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
-/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bwJ" = (
+/area/toxins/explab)
+"bsF" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bwK" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/area/toxins/explab)
+"bsG" = (
+/obj/machinery/holopad,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
},
-/turf/open/floor/plasteel/whiteblue/corner{
- dir = 2
+/turf/open/floor/plasteel/white,
+/area/toxins/explab)
+"bsH" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
-/area/medical/medbay)
-"bwL" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+/turf/closed/wall/r_wall,
+/area/toxins/explab)
+"bsI" = (
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "Experimentation Lab APC";
+ pixel_x = 26;
+ pixel_y = 0
},
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 2
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
-/area/medical/medbay)
-"bwM" = (
-/obj/structure/bed/roller,
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 6
+/turf/open/floor/plasteel/white,
+/area/toxins/explab)
+"bsJ" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
},
-/area/medical/medbay)
-"bwN" = (
+/turf/closed/wall,
+/area/maintenance/asmaint2)
+"bsK" = (
/obj/structure/table/glass,
/obj/item/weapon/storage/box/disks{
pixel_x = 2;
- pixel_y = 2
+ pixel_y = 2
},
/turf/open/floor/plasteel/white,
/area/medical/genetics)
-"bwO" = (
+"bsL" = (
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"bsM" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/components/unary/vent_pump{
- on = 1
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bwP" = (
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bwQ" = (
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"bsN" = (
/obj/machinery/door/window/westleft{
name = "Monkey Pen";
- req_access_txt = "9"
+ req_access_txt = "9"
},
/turf/open/floor/plasteel,
/area/medical/genetics)
-"bwR" = (
+"bsO" = (
/obj/structure/table,
/obj/item/weapon/crowbar/large,
/turf/open/floor/plasteel,
/area/assembly/chargebay)
-"bwS" = (
-/obj/structure/table,
-/obj/item/weapon/storage/toolbox/mechanical,
+"bsP" = (
+/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plasteel,
/area/assembly/chargebay)
-"bwT" = (
-/obj/structure/reagent_dispensers/fueltank,
+"bsQ" = (
+/obj/structure/table,
+/obj/item/weapon/storage/toolbox/mechanical,
/turf/open/floor/plasteel,
/area/assembly/chargebay)
-"bwU" = (
+"bsR" = (
/obj/machinery/recharge_station,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
/area/assembly/chargebay)
-"bwV" = (
+"bsS" = (
/obj/structure/table,
/obj/item/weapon/storage/box/bodybags,
/obj/item/weapon/pen,
@@ -33406,41 +31930,41 @@
dir = 4
},
/area/assembly/robotics)
-"bwW" = (
-/obj/structure/table/optable{
- name = "Robotics Operating Table"
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel/white,
-/area/assembly/robotics)
-"bwX" = (
+"bsT" = (
/obj/machinery/computer/operating{
name = "Robotics Operating Computer"
},
/obj/machinery/light,
/turf/open/floor/plasteel/white,
/area/assembly/robotics)
-"bwY" = (
-/obj/machinery/light_switch{
- pixel_x = -23;
- pixel_y = 0
+"bsU" = (
+/obj/structure/table/optable{
+ name = "Robotics Operating Table"
},
-/obj/effect/turf_decal/stripes/line{
- dir = 8
+/obj/item/weapon/surgical_drapes,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2)
+"bsV" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/open/floor/plasteel/white,
-/area/assembly/robotics)
-"bwZ" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bsW" = (
/obj/structure/closet/wardrobe/robotics_black,
/obj/item/device/radio/headset/headset_sci{
pixel_x = -3
},
/turf/open/floor/plasteel/white,
/area/assembly/robotics)
-"bxa" = (
+"bsX" = (
/obj/machinery/light{
icon_state = "tube1";
- dir = 8
+ dir = 8
},
/turf/open/floor/plasteel/white/side{
dir = 5
@@ -33448,10 +31972,19 @@
/area/medical/research{
name = "Research Division"
})
-"bxb" = (
+"bsY" = (
+/obj/structure/chair/office/dark{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Head of Personnel"
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/heads)
+"bsZ" = (
/obj/structure/disposalpipe/segment{
dir = 4;
- icon_state = "pipe-c"
+ icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
@@ -33460,21 +31993,22 @@
/area/medical/research{
name = "Research Division"
})
-"bxc" = (
+"bta" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/camera{
+ c_tag = "Research Division North";
+ dir = 2
+ },
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/turf/open/floor/plasteel/white/side{
- dir = 9
- },
+/turf/open/floor/plasteel/white,
/area/medical/research{
name = "Research Division"
})
-"bxd" = (
+"btb" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -33488,72 +32022,50 @@
/area/medical/research{
name = "Research Division"
})
-"bxe" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/camera{
- c_tag = "Research Division North";
- dir = 2
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+"btc" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bxf" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/teleporter)
+"btd" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
},
+/turf/open/floor/plasteel,
+/area/teleporter)
+"bte" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/white/side{
- dir = 10
+ dir = 6
},
/area/medical/research{
name = "Research Division"
})
-"bxg" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+"btf" = (
+/obj/machinery/requests_console{
+ announcementConsole = 0;
+ department = "Medbay";
+ departmentType = 1;
+ name = "Medbay RC";
+ pixel_x = -30;
+ pixel_y = 0;
+ pixel_z = 0
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bxh" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/area/medical/medbay)
+"btg" = (
+/obj/machinery/door/firedoor,
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bxi" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white/side{
- dir = 6
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bxj" = (
+/area/medical/sleeper)
+"bth" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -33561,271 +32073,222 @@
/area/medical/research{
name = "Research Division"
})
-"bxk" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/toxins/explab)
-"bxl" = (
+"bti" = (
+/obj/structure/closet/secure_closet/personal/patient,
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"btj" = (
/obj/structure/disposalpipe/segment{
dir = 4;
- icon_state = "pipe-c"
+ icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/white,
/area/toxins/explab)
-"bxm" = (
-/obj/machinery/firealarm{
- dir = 2;
- pixel_y = 24
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
+"btk" = (
+/obj/structure/closet/wardrobe/white,
/turf/open/floor/plasteel/white,
-/area/toxins/explab)
-"bxn" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+/area/medical/genetics)
+"btl" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
/turf/open/floor/plasteel/white,
-/area/toxins/explab)
-"bxo" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/medical/genetics)
+"btm" = (
+/obj/structure/disposalpipe/sortjunction{
+ dir = 2;
+ icon_state = "pipe-j2s";
+ sortType = 12
},
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"btn" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/turf/open/floor/plasteel/white,
-/area/toxins/explab)
-"bxp" = (
+/turf/closed/wall/r_wall,
+/area/medical/research{
+ name = "Research Division"
+ })
+"bto" = (
/obj/structure/disposalpipe/segment{
- dir = 4
+ dir = 2;
+ icon_state = "pipe-c"
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/structure/sign/securearea{
+ pixel_x = 32
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/obj/machinery/light/small{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
},
/turf/open/floor/plasteel/white,
-/area/toxins/explab)
-"bxq" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Experimentation Lab Maintenance";
- req_access_txt = "7"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
+/area/medical/genetics)
+"btp" = (
/turf/open/floor/plating,
-/area/toxins/explab)
-"bxr" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/junction{
- icon_state = "pipe-j2";
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
+/area/maintenance/asmaint2)
+"btq" = (
+/obj/structure/closet,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
},
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"bxs" = (
-/obj/structure/grille,
-/obj/structure/window/shuttle,
-/turf/open/floor/plating,
-/area/shuttle/abandoned)
-"bxt" = (
-/obj/machinery/button/door{
- dir = 2;
- id = "QMLoaddoor2";
- name = "Loading Doors";
- pixel_x = 24;
- pixel_y = 8
- },
-/obj/machinery/button/door{
- id = "QMLoaddoor";
- name = "Loading Doors";
- pixel_x = 24;
- pixel_y = -8
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/supply)
-"bxu" = (
+"btr" = (
/obj/machinery/camera{
c_tag = "Cargo Recieving Dock";
- dir = 4
+ dir = 4
},
/obj/machinery/button/door{
id = "QMLoaddoor";
- layer = 4;
- name = "Loading Doors";
- pixel_x = -24;
- pixel_y = -8
+ layer = 4;
+ name = "Loading Doors";
+ pixel_x = -24;
+ pixel_y = -8
},
/obj/machinery/button/door{
dir = 2;
- id = "QMLoaddoor2";
- layer = 4;
- name = "Loading Doors";
- pixel_x = -24;
- pixel_y = 8
+ id = "QMLoaddoor2";
+ layer = 4;
+ name = "Loading Doors";
+ pixel_x = -24;
+ pixel_y = 8
},
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
/area/quartermaster/storage)
-"bxv" = (
+"bts" = (
/obj/machinery/navbeacon{
codes_txt = "delivery;dir=8";
- dir = 8;
- freq = 1400;
- location = "QM #2"
+ dir = 8;
+ freq = 1400;
+ location = "QM #2"
},
/obj/effect/turf_decal/bot,
/mob/living/simple_animal/bot/mulebot{
home_destination = "QM #2";
- suffix = "#2"
+ suffix = "#2"
},
/turf/open/floor/plasteel,
/area/quartermaster/storage)
-"bxw" = (
+"btt" = (
/obj/structure/table,
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -24
+ pixel_x = -24
},
/obj/item/weapon/folder/yellow,
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"bxx" = (
+"btu" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
- on = 1
+ on = 1
},
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"bxy" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
+"btv" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"bxz" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+"btw" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/turf/open/floor/plating,
-/area/quartermaster/office)
-"bxA" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 8
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"btx" = (
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/poddoor/preopen{
+ id = "Biohazard";
+ name = "biohazard containment door"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
+/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bxB" = (
+/area/medical/research{
+ name = "Research Division"
+ })
+"bty" = (
/obj/structure/chair{
dir = 8
},
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"bxC" = (
+"btz" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/brown/corner{
dir = 8
},
/area/hallway/primary/central)
-"bxD" = (
+"btA" = (
+/obj/machinery/camera{
+ c_tag = "Research Division West";
+ dir = 2;
+ network = list("SS13")
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"btB" = (
/obj/structure/table,
/obj/machinery/recharger,
/turf/open/floor/plasteel/blue/side{
dir = 9
},
/area/crew_quarters/heads)
-"bxE" = (
+"btC" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
/turf/open/floor/plasteel,
/area/crew_quarters/heads)
-"bxF" = (
+"btD" = (
/obj/structure/table,
/obj/item/weapon/paper_bin{
pixel_x = -3;
- pixel_y = 7
+ pixel_y = 7
},
/obj/item/weapon/pen,
/turf/open/floor/plasteel,
/area/crew_quarters/heads)
-"bxG" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/heads)
-"bxH" = (
+"btE" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
/obj/machinery/light{
@@ -33834,340 +32297,329 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/crew_quarters/heads)
-"bxI" = (
-/turf/closed/wall/r_wall,
-/area/engine/gravity_generator)
-"bxJ" = (
+"btF" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/engineering{
name = "Gravity Generator";
- req_access_txt = "11"
+ req_access_txt = "11"
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel{
name = "floor"
},
/area/engine/gravity_generator)
-"bxK" = (
-/obj/machinery/power/apc{
- dir = 8;
- name = "Teleporter APC";
- pixel_x = -24
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/turf/open/floor/plasteel,
-/area/teleporter)
-"bxL" = (
+"btG" = (
+/turf/closed/wall/r_wall,
+/area/engine/gravity_generator)
+"btH" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
/obj/structure/chair/stool,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/teleporter)
-"bxM" = (
-/obj/machinery/holopad,
+"btI" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Teleporter APC";
+ pixel_x = -24
+ },
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "0-4";
+ d2 = 4
},
/turf/open/floor/plasteel,
/area/teleporter)
-"bxN" = (
+"btJ" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
/obj/machinery/bluespace_beacon,
/turf/open/floor/plasteel,
/area/teleporter)
-"bxO" = (
+"btK" = (
+/obj/machinery/holopad,
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
/turf/open/floor/plasteel,
/area/teleporter)
-"bxP" = (
+"btL" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
/turf/open/floor/plasteel,
/area/teleporter)
-"bxQ" = (
+"btM" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Teleport Access";
- req_access_txt = "17"
+ req_access_txt = "17"
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
/turf/open/floor/plasteel,
/area/teleporter)
-"bxR" = (
+"btN" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel,
+/area/teleporter)
+"btO" = (
/obj/structure/cable{
d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d2 = 8;
+ icon_state = "2-8"
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/blue/side{
dir = 8
},
/area/hallway/primary/central)
-"bxS" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bxT" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/medical/medbay)
-"bxU" = (
-/obj/structure/table,
-/obj/item/weapon/storage/box/masks{
- pixel_x = 0;
- pixel_y = 0
- },
-/obj/item/weapon/storage/box/gloves{
- pixel_x = 3;
- pixel_y = 4
+"btP" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -5;
+ pixel_y = 30
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bxV" = (
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bxW" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/area/medical/research{
+ name = "Research Division"
+ })
+"btQ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
+/turf/open/floor/plasteel/white/side{
+ dir = 10
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"btR" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bxX" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
+"btS" = (
+/obj/machinery/firealarm{
+ dir = 2;
+ pixel_y = 24
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bxY" = (
+/area/medical/research{
+ name = "Research Division"
+ })
+"btT" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bxZ" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/item/device/radio/intercom{
- broadcasting = 0;
- freerange = 0;
- frequency = 1485;
- listening = 1;
- name = "Station Intercom (Medbay)";
- pixel_x = 0;
- pixel_y = -30
- },
-/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+"btU" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bya" = (
+/area/medical/research{
+ name = "Research Division"
+ })
+"btV" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"byb" = (
-/obj/structure/disposalpipe/segment{
+"btW" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_Toxins = 0
+/turf/open/floor/plasteel/white/side{
+ dir = 5
},
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"byc" = (
+/area/medical/research{
+ name = "Research Division"
+ })
+"btX" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/firealarm{
dir = 1;
- pixel_y = -24
+ pixel_y = -24
},
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"byd" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+"btY" = (
+/obj/machinery/requests_console{
+ department = "Science";
+ departmentType = 2;
+ name = "Science Requests Console";
+ pixel_x = 0;
+ pixel_y = -30
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ external_pressure_bound = 101.325;
+ on = 1;
+ pressure_checks = 1
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bye" = (
+/area/toxins/explab)
+"btZ" = (
/obj/machinery/light,
/obj/structure/disposalpipe/segment{
dir = 8;
- icon_state = "pipe-c"
+ icon_state = "pipe-c"
},
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"byf" = (
+"bua" = (
+/turf/closed/wall,
+/area/medical/genetics)
+"bub" = (
+/obj/machinery/light,
/obj/item/device/radio/intercom{
- broadcasting = 0;
- freerange = 0;
- frequency = 1485;
- listening = 1;
- name = "Station Intercom (Medbay)";
- pixel_x = 30;
- pixel_y = 0
+ name = "Station Intercom (General)";
+ pixel_y = -35
},
-/obj/machinery/camera{
- c_tag = "Medbay East";
- dir = 8;
- network = list("SS13");
- pixel_x = 0;
- pixel_y = -22
+/turf/open/floor/plasteel/loadingarea{
+ dir = 8
},
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"byg" = (
-/turf/closed/wall,
-/area/medical/genetics)
-"byh" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_medical{
- id_tag = "GeneticsDoor";
- name = "Genetics";
- req_access_txt = "5; 68"
+/area/quartermaster/storage)
+"buc" = (
+/obj/machinery/light,
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "Cargo Office APC";
+ pixel_x = 1;
+ pixel_y = -24
},
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"byi" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ icon_state = "0-4";
+ d2 = 4
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"byj" = (
-/obj/structure/chair/office/light{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/brown/corner{
+ dir = 2
},
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"byk" = (
+/area/quartermaster/office)
+"bud" = (
+/turf/open/floor/plasteel/brown/corner{
+ dir = 8
+ },
+/area/quartermaster/office)
+"bue" = (
+/obj/machinery/requests_console{
+ announcementConsole = 1;
+ department = "Head of Personnel's Desk";
+ departmentType = 5;
+ name = "Head of Personnel RC";
+ pixel_y = -30
+ },
+/obj/machinery/camera{
+ c_tag = "Head of Personnel's Office";
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/crew_quarters/heads)
+"buf" = (
/obj/machinery/computer/scan_consolenew,
/turf/open/floor/plasteel/whiteblue/side{
dir = 5
},
/area/medical/genetics)
-"byl" = (
+"bug" = (
+/obj/structure/chair/office/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"buh" = (
/turf/closed/wall/r_wall,
/area/assembly/chargebay)
-"bym" = (
+"bui" = (
+/obj/machinery/airalarm{
+ dir = 1;
+ icon_state = "alarm0";
+ pixel_y = -22
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay)
+"buj" = (
/obj/structure/grille,
/obj/machinery/door/poddoor/shutters/preopen{
id = "robotics2";
- name = "robotics lab shutters"
+ name = "robotics lab shutters"
},
/obj/structure/window/fulltile,
/turf/open/floor/plating,
/area/assembly/robotics)
-"byn" = (
-/obj/machinery/door/airlock/research{
- name = "Robotics Lab";
- req_access_txt = "29";
- req_one_access_txt = "0"
- },
-/turf/open/floor/plasteel/white,
-/area/assembly/robotics)
-"byo" = (
-/obj/machinery/status_display{
- density = 0;
- layer = 3;
- pixel_x = -32;
- pixel_y = 0
- },
+"buk" = (
/turf/open/floor/plasteel/white/side{
- dir = 5
+ dir = 8
},
-/area/medical/research{
- name = "Research Division"
- })
-"byp" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
+/area/medical/sleeper)
+"bul" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"byq" = (
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,
-/turf/open/floor/plasteel/white/side{
- dir = 9
+/area/medical/genetics)
+"bum" = (
+/obj/machinery/holopad,
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"bun" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
},
-/area/medical/research{
- name = "Research Division"
- })
-"byr" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"buo" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -34175,17 +32627,12 @@
/area/medical/research{
name = "Research Division"
})
-"bys" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"byt" = (
+"bup" = (
+/obj/machinery/light,
/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -34194,25 +32641,34 @@
/area/medical/research{
name = "Research Division"
})
-"byu" = (
-/obj/machinery/light,
+"buq" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/medical/genetics)
+"bur" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"byv" = (
+/area/medical/genetics)
+"bus" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -34221,318 +32677,351 @@
/area/medical/research{
name = "Research Division"
})
-"byw" = (
+"but" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/airlock/research{
- name = "Experimentation Lab";
- req_access_txt = "7"
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white,
-/area/toxins/explab)
-"byx" = (
+/area/medical/genetics)
+"buu" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/white,
/area/toxins/explab)
-"byy" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+"buv" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/white,
/area/toxins/explab)
-"byz" = (
+"buw" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 8;
+ icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/white,
/area/toxins/explab)
-"byA" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+"bux" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel/white,
-/area/toxins/explab)
-"byB" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/turf/open/floor/plasteel/white,
-/area/toxins/explab)
-"byC" = (
-/obj/machinery/holopad,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 4
},
-/turf/open/floor/plasteel/white,
-/area/toxins/explab)
-"byD" = (
-/obj/machinery/power/apc{
- dir = 4;
- name = "Experimentation Lab APC";
- pixel_x = 26;
- pixel_y = 0
+/area/medical/genetics)
+"buy" = (
+/obj/structure/disposalpipe/sortjunction{
+ sortType = 23
},
-/obj/structure/cable,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/turf/open/floor/plasteel/white,
-/area/toxins/explab)
-"byE" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/closed/wall/r_wall,
-/area/toxins/explab)
-"byF" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"buz" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"byG" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/maintenance/asmaint2)
-"byH" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"byI" = (
-/obj/machinery/door/airlock/titanium,
-/turf/open/floor/plasteel/shuttle/white,
-/area/shuttle/abandoned)
-"byJ" = (
-/obj/machinery/door/airlock/titanium{
- name = "Supply Shuttle Airlock";
- req_access_txt = "31"
- },
-/obj/docking_port/mobile/supply{
- dwidth = 5;
- width = 12
- },
-/obj/docking_port/stationary{
- dir = 8;
- dwidth = 5;
- height = 7;
- id = "supply_home";
- name = "Cargo Bay";
- width = 12
- },
-/turf/open/floor/plating,
-/area/shuttle/supply)
-"byK" = (
+"buA" = (
+/obj/structure/frame/computer,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"buB" = (
/obj/machinery/conveyor_switch/oneway{
convdir = -1;
- id = "QMLoad"
+ id = "QMLoad"
},
/turf/open/floor/plasteel,
/area/quartermaster/storage)
-"byL" = (
+"buC" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/quartermaster/storage)
-"byM" = (
+"buD" = (
/obj/machinery/navbeacon{
codes_txt = "delivery;dir=8";
- dir = 8;
- freq = 1400;
- location = "QM #3"
+ dir = 8;
+ freq = 1400;
+ location = "QM #3"
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
/area/quartermaster/storage)
-"byN" = (
+"buE" = (
/obj/structure/table,
/obj/machinery/airalarm{
dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
+ icon_state = "alarm0";
+ pixel_x = -22
},
/obj/machinery/computer/stockexchange,
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"byO" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+"buF" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"byP" = (
-/obj/machinery/mineral/ore_redemption{
- input_dir = 8;
- output_dir = 4
+"buG" = (
+/obj/machinery/door/airlock/research{
+ name = "Genetics Research";
+ req_access_txt = "9"
},
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/floorgrime,
-/area/quartermaster/office)
-"byQ" = (
-/turf/open/floor/plasteel/loadingarea{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/area/quartermaster/office)
-"byR" = (
-/obj/structure/chair{
- dir = 8
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
-/obj/machinery/light,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"byS" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"byT" = (
-/obj/machinery/keycard_auth{
- pixel_x = -24;
- pixel_y = 0
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"buH" = (
+/obj/machinery/door/airlock/research{
+ name = "Genetics Research Access";
+ req_access_txt = "47"
},
-/obj/machinery/computer/cargo,
-/turf/open/floor/plasteel/blue/side{
- dir = 8
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/area/crew_quarters/heads)
-"byU" = (
-/obj/structure/chair/office/dark{
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/effect/landmark/start{
- name = "Head of Personnel"
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"buI" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
},
/turf/open/floor/plasteel,
-/area/crew_quarters/heads)
-"byV" = (
-/obj/structure/table,
-/obj/item/weapon/folder/blue,
-/obj/item/weapon/stamp/hop,
+/area/quartermaster/office)
+"buJ" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/machinery/light,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"buK" = (
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"buL" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"buM" = (
+/obj/machinery/keycard_auth{
+ pixel_x = -24;
+ pixel_y = 0
+ },
+/obj/machinery/computer/cargo,
+/turf/open/floor/plasteel/blue/side{
+ dir = 8
+ },
/area/crew_quarters/heads)
-"byW" = (
+"buN" = (
/obj/structure/chair{
dir = 8
},
/turf/open/floor/plasteel,
/area/crew_quarters/heads)
-"byX" = (
+"buO" = (
+/obj/structure/table,
+/obj/item/weapon/folder/blue,
+/obj/item/weapon/stamp/hop,
+/turf/open/floor/plasteel,
+/area/crew_quarters/heads)
+"buP" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
/turf/closed/wall,
/area/engine/gravity_generator)
-"byY" = (
+"buQ" = (
/obj/machinery/airalarm{
dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
+ icon_state = "alarm0";
+ pixel_x = -22
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
/obj/effect/turf_decal/stripes/line{
dir = 9
},
/turf/open/floor/plasteel,
/area/engine/gravity_generator)
-"byZ" = (
+"buR" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/engine/gravity_generator)
+"buS" = (
/obj/machinery/light{
dir = 4;
- icon_state = "tube1"
+ icon_state = "tube1"
},
/obj/machinery/camera{
c_tag = "Gravity Generator Foyer"
},
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
- on = 1
+ on = 1
},
/obj/effect/turf_decal/stripes/line{
dir = 5
},
/turf/open/floor/plasteel,
/area/engine/gravity_generator)
-"bza" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+"buT" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/closed/wall,
-/area/engine/gravity_generator)
-"bzb" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 10
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 8
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"buU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/poddoor/preopen{
+ id = "Biohazard";
+ name = "biohazard containment door"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
+/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/teleporter)
-"bzc" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+/area/medical/research{
+ name = "Research Division"
+ })
+"buV" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
},
-/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
/area/teleporter)
-"bzd" = (
+"buW" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
/area/teleporter)
-"bze" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
+"buX" = (
+/obj/machinery/shieldwallgen,
+/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
/area/teleporter)
-"bzf" = (
+"buY" = (
/obj/machinery/shieldwallgen,
/obj/structure/window/reinforced{
dir = 8
@@ -34540,74 +33029,159 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
/area/teleporter)
-"bzg" = (
-/obj/machinery/shieldwallgen,
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/teleporter)
-"bzh" = (
+"buZ" = (
/obj/structure/closet/crate,
/turf/open/floor/plasteel,
/area/teleporter)
-"bzi" = (
+"bva" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/sign/securearea{
pixel_x = -32;
- pixel_y = 0
+ pixel_y = 0
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/blue/side{
dir = 8
},
/area/hallway/primary/central)
-"bzj" = (
-/obj/machinery/requests_console{
- announcementConsole = 0;
- department = "Medbay";
- departmentType = 1;
- name = "Medbay RC";
- pixel_x = -30;
- pixel_y = 0;
- pixel_z = 0
+"bvb" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bzk" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bzl" = (
-/obj/machinery/vending/medical{
- pixel_x = -2
+/area/medical/research{
+ name = "Research Division"
+ })
+"bvc" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bzm" = (
+/area/medical/research{
+ name = "Research Division"
+ })
+"bvd" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
/turf/closed/wall,
/area/medical/sleeper)
-"bzn" = (
+"bve" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"bvf" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
+ },
+/turf/open/floor/plasteel/white/side{
+ dir = 9
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"bvg" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"bvh" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
/turf/open/floor/plating,
/area/medical/sleeper)
-"bzo" = (
+"bvi" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/medical/sleeper)
+"bvj" = (
+/turf/closed/wall,
+/area/medical/sleeper)
+"bvk" = (
/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay)
+"bvl" = (
+/obj/machinery/door/airlock/glass_medical{
+ id_tag = "";
+ name = "Surgery Observation";
+ req_access_txt = "0"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/black,
+/area/medical/sleeper)
+"bvm" = (
+/obj/machinery/holopad,
/turf/open/floor/plasteel/white,
/area/medical/sleeper)
-"bzp" = (
+"bvn" = (
/obj/machinery/button/door{
desc = "A remote control switch for the genetics doors.";
- id = "GeneticsDoor";
- name = "Genetics Exit Button";
- normaldoorcontrol = 1;
- pixel_x = 8;
- pixel_y = 24
+ id = "GeneticsDoor";
+ name = "Genetics Exit Button";
+ normaldoorcontrol = 1;
+ pixel_x = 8;
+ pixel_y = 24
},
/obj/structure/table,
/obj/item/weapon/book/manual/medical_cloning{
@@ -34615,161 +33189,144 @@
},
/turf/open/floor/plasteel/white,
/area/medical/genetics)
-"bzq" = (
-/obj/structure/closet/wardrobe/white,
+"bvo" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
/turf/open/floor/plasteel/white,
/area/medical/genetics)
-"bzr" = (
-/obj/structure/closet/secure_closet/personal/patient,
+"bvp" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
/turf/open/floor/plasteel/white,
/area/medical/genetics)
-"bzs" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+"bvq" = (
+/obj/structure/chair,
+/obj/effect/landmark/start{
+ name = "Geneticist"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
/turf/open/floor/plasteel/white,
/area/medical/genetics)
-"bzt" = (
+"bvr" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"bvs" = (
/obj/machinery/dna_scannernew,
/turf/open/floor/plasteel/whiteblue/side{
dir = 6
},
/area/medical/genetics)
-"bzu" = (
-/obj/structure/window/reinforced{
- dir = 8
+"bvt" = (
+/obj/machinery/door/airlock/glass_research{
+ name = "Genetics Research";
+ req_access_txt = "5; 9; 68"
},
-/obj/structure/window/reinforced,
-/turf/open/floor/plasteel,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
/area/medical/genetics)
-"bzv" = (
+"bvu" = (
/obj/structure/window/reinforced,
/mob/living/carbon/monkey,
/turf/open/floor/plasteel,
/area/medical/genetics)
-"bzw" = (
-/obj/structure/disposalpipe/sortjunction{
- dir = 2;
- icon_state = "pipe-j2s";
- sortType = 12
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bzx" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/structure/sign/securearea{
- pixel_x = 32
- },
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+"bvv" = (
+/obj/structure/window/reinforced{
dir = 8
},
+/obj/structure/window/reinforced,
+/turf/open/floor/plasteel,
+/area/medical/genetics)
+"bvw" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plasteel/white,
/area/medical/genetics)
-"bzy" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
+"bvx" = (
/turf/closed/wall/r_wall,
/area/medical/research{
name = "Research Division"
})
-"bzz" = (
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/poddoor/preopen{
- id = "Biohazard";
- name = "biohazard containment door"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+"bvy" = (
+/obj/machinery/camera{
+ c_tag = "Genetics Research";
+ dir = 1;
+ network = list("SS13","RD");
+ pixel_x = 0
},
-/obj/effect/turf_decal/bot,
-/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
-"bzA" = (
-/obj/machinery/light{
- dir = 1
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 8
+/turf/open/floor/plasteel/whitepurple/side{
+ dir = 4
},
-/area/medical/research{
- name = "Research Division"
- })
-"bzB" = (
-/obj/machinery/camera{
- c_tag = "Research Division West";
- dir = 2;
- network = list("SS13")
+/area/medical/genetics)
+"bvz" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bzC" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = -5;
- pixel_y = 30
- },
+/area/medical/genetics)
+"bvA" = (
+/obj/structure/sign/securearea,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bzD" = (
-/obj/machinery/firealarm{
- dir = 2;
- pixel_y = 24
+/turf/closed/wall/r_wall,
+/area/medical/genetics)
+"bvB" = (
+/obj/machinery/camera{
+ c_tag = "Genetics Access";
+ dir = 8;
+ network = list("SS13");
+ pixel_x = 0;
+ pixel_y = -22
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bzE" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white/side{
- dir = 10
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bzF" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
+/area/medical/genetics)
+"bvC" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/security/checkpoint/science)
+"bvD" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/white,
/area/medical/research{
name = "Research Division"
})
-"bzG" = (
+"bvE" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -34779,28 +33336,38 @@
/area/medical/research{
name = "Research Division"
})
-"bzH" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+"bvF" = (
+/obj/structure/table,
+/obj/item/weapon/cartridge/quartermaster{
+ pixel_x = 6;
+ pixel_y = 5
},
-/turf/open/floor/plasteel/white/side{
- dir = 5
+/obj/item/weapon/cartridge/quartermaster,
+/obj/item/weapon/cartridge/quartermaster{
+ pixel_x = -4;
+ pixel_y = 7
},
-/area/medical/research{
- name = "Research Division"
- })
-"bzI" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+/obj/machinery/requests_console{
+ department = "Cargo Bay";
+ departmentType = 2;
+ pixel_x = -30;
+ pixel_y = 0
},
-/obj/machinery/holopad,
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bzJ" = (
+/obj/item/weapon/coin/silver,
+/turf/open/floor/plasteel/brown{
+ dir = 9
+ },
+/area/quartermaster/qm)
+"bvG" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/light_switch{
+ pixel_y = 28
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock)
+"bvH" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
@@ -34810,318 +33377,260 @@
/area/medical/research{
name = "Research Division"
})
-"bzK" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/crew_quarters/hor)
-"bzL" = (
+"bvI" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock)
+"bvJ" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/crew_quarters/hor)
+"bvK" = (
/turf/closed/wall,
/area/crew_quarters/hor)
-"bzM" = (
+"bvL" = (
+/turf/open/floor/plasteel/red/side{
+ dir = 8
+ },
+/area/security/checkpoint/supply)
+"bvM" = (
/obj/machinery/light_switch{
pixel_x = -20;
- pixel_y = 0
+ pixel_y = 0
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/white,
/area/toxins/explab)
-"bzN" = (
-/obj/machinery/requests_console{
- department = "Science";
- departmentType = 2;
- name = "Science Requests Console";
- pixel_x = 0;
- pixel_y = -30
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/explab)
-"bzO" = (
-/turf/open/floor/plasteel/white,
-/area/toxins/explab)
-"bzP" = (
+"bvN" = (
/obj/structure/chair/office/light,
/obj/effect/landmark/start{
name = "Scientist"
},
/turf/open/floor/plasteel/white,
/area/toxins/explab)
-"bzQ" = (
+"bvO" = (
+/turf/open/floor/plasteel/white,
+/area/toxins/explab)
+"bvP" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 5;
- pixel_y = -32
+ pixel_y = -32
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
/turf/open/floor/plasteel/white,
/area/toxins/explab)
-"bzR" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bzS" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
+"bvQ" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"bzT" = (
-/obj/structure/closet,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
+"bvR" = (
+/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
+ dir = 8
},
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"bzU" = (
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bzV" = (
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bzW" = (
-/obj/machinery/door/window,
-/turf/open/floor/mineral/titanium/purple,
-/area/shuttle/abandoned)
-"bzX" = (
-/obj/structure/bed,
-/obj/item/weapon/bedsheet,
-/obj/structure/window/reinforced,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/mineral/titanium/purple,
-/area/shuttle/abandoned)
-"bzY" = (
-/obj/structure/table,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"bzZ" = (
-/obj/structure/table,
-/obj/item/weapon/gun/energy/laser/retro,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"bAa" = (
-/obj/machinery/conveyor{
- dir = 4;
- id = "QMLoad"
- },
-/obj/machinery/door/poddoor{
- id = "QMLoaddoor";
- name = "supply dock loading door"
- },
-/turf/open/floor/plating,
-/area/shuttle/supply)
-"bAb" = (
+"bvS" = (
/obj/machinery/conveyor{
dir = 4;
- id = "QMLoad"
+ id = "QMLoad"
},
/obj/machinery/door/poddoor{
id = "QMLoaddoor";
- name = "supply dock loading door"
+ name = "supply dock loading door"
},
/turf/open/floor/plating,
/area/quartermaster/storage)
-"bAc" = (
+"bvT" = (
/obj/structure/plasticflaps,
/obj/machinery/conveyor{
dir = 4;
- id = "QMLoad"
+ id = "QMLoad"
},
/turf/open/floor/plating,
/area/quartermaster/storage)
-"bAd" = (
+"bvU" = (
/obj/machinery/conveyor{
dir = 4;
- id = "QMLoad"
+ id = "QMLoad"
+ },
+/obj/machinery/light,
+/obj/machinery/status_display{
+ density = 0;
+ pixel_y = -30;
+ supply_display = 1
},
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plating,
/area/quartermaster/storage)
-"bAe" = (
+"bvV" = (
/obj/machinery/conveyor{
dir = 4;
- id = "QMLoad"
- },
-/obj/machinery/light,
-/obj/machinery/status_display{
- density = 0;
- pixel_y = -30;
- supply_display = 1
+ id = "QMLoad"
},
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plating,
/area/quartermaster/storage)
-"bAf" = (
-/obj/machinery/light,
-/obj/item/device/radio/intercom{
- name = "Station Intercom (General)";
- pixel_y = -35
+"bvW" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
-/turf/open/floor/plasteel/loadingarea{
- dir = 8
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
},
-/area/quartermaster/storage)
-"bAg" = (
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bvX" = (
/obj/machinery/camera{
c_tag = "Cargo Bay South";
- dir = 1
+ dir = 1
},
/turf/open/floor/plasteel,
/area/quartermaster/storage)
-"bAh" = (
+"bvY" = (
/obj/machinery/navbeacon{
codes_txt = "delivery;dir=8";
- dir = 8;
- freq = 1400;
- location = "QM #4"
+ dir = 8;
+ freq = 1400;
+ location = "QM #4"
},
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
/area/quartermaster/storage)
-"bAi" = (
+"bvZ" = (
/obj/structure/table,
/obj/item/weapon/storage/firstaid/regular{
pixel_x = 6;
- pixel_y = -5
+ pixel_y = -5
},
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"bAj" = (
-/obj/structure/closet/crate,
-/turf/open/floor/plasteel,
-/area/quartermaster/office)
-"bAk" = (
-/obj/machinery/light,
-/obj/machinery/power/apc{
+"bwa" = (
+/obj/structure/disposalpipe/segment{
dir = 2;
- name = "Cargo Office APC";
- pixel_x = 1;
- pixel_y = -24
+ icon_state = "pipe-c"
},
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/brown/corner{
- dir = 2
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
},
-/area/quartermaster/office)
-"bAl" = (
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bwb" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bwc" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/cable{
d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d2 = 8;
+ icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/quartermaster/office)
-"bAm" = (
-/turf/open/floor/plasteel/brown/corner{
- dir = 8
- },
-/area/quartermaster/office)
-"bAn" = (
-/turf/closed/wall,
-/area/security/checkpoint/supply)
-"bAo" = (
+"bwd" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/security/checkpoint/supply)
-"bAp" = (
+"bwe" = (
+/turf/closed/wall,
+/area/security/checkpoint/supply)
+"bwf" = (
/obj/machinery/camera{
c_tag = "Cargo Bay Entrance";
- dir = 4;
- network = list("SS13")
+ dir = 4;
+ network = list("SS13")
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/brown/corner{
dir = 8
},
/area/hallway/primary/central)
-"bAq" = (
+"bwg" = (
/obj/machinery/door/poddoor/shutters/preopen{
id = "hopqueue";
- name = "HoP Queue Shutters"
+ name = "HoP Queue Shutters"
},
/turf/open/floor/plasteel/loadingarea{
dir = 4
},
/area/hallway/primary/central)
-"bAr" = (
+"bwh" = (
+/obj/structure/sign/securearea{
+ pixel_y = 32
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bwi" = (
/obj/item/device/radio/intercom{
dir = 8;
- name = "Station Intercom (General)";
- pixel_x = -28
+ name = "Station Intercom (General)";
+ pixel_x = -28
},
/obj/structure/closet/secure_closet/hop,
/turf/open/floor/plasteel/blue/side{
dir = 10
},
/area/crew_quarters/heads)
-"bAs" = (
-/obj/machinery/requests_console{
- announcementConsole = 1;
- department = "Head of Personnel's Desk";
- departmentType = 5;
- name = "Head of Personnel RC";
- pixel_y = -30
- },
-/obj/machinery/camera{
- c_tag = "Head of Personnel's Office";
- dir = 1
+"bwj" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
},
/turf/open/floor/plasteel,
/area/crew_quarters/heads)
-"bAt" = (
+"bwk" = (
/obj/structure/table,
/obj/item/weapon/book/manual/wiki/security_space_law,
/turf/open/floor/plasteel,
/area/crew_quarters/heads)
-"bAu" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/crew_quarters/heads)
-"bAv" = (
+"bwl" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -35129,75 +33638,75 @@
},
/turf/open/floor/plasteel,
/area/crew_quarters/heads)
-"bAw" = (
+"bwm" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall,
/area/engine/gravity_generator)
-"bAx" = (
+"bwn" = (
/obj/structure/closet/radiation,
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'RADIOACTIVE AREA'";
- icon_state = "radiation";
- name = "RADIOACTIVE AREA";
- pixel_x = -32;
- pixel_y = 0
+ icon_state = "radiation";
+ name = "RADIOACTIVE AREA";
+ pixel_x = -32;
+ pixel_y = 0
},
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
/area/engine/gravity_generator)
-"bAy" = (
+"bwo" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall,
+/area/engine/gravity_generator)
+"bwp" = (
/obj/structure/closet/radiation,
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'RADIOACTIVE AREA'";
- icon_state = "radiation";
- name = "RADIOACTIVE AREA";
- pixel_x = 32;
- pixel_y = 0
+ icon_state = "radiation";
+ name = "RADIOACTIVE AREA";
+ pixel_x = 32;
+ pixel_y = 0
},
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel,
/area/engine/gravity_generator)
-"bAz" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall,
-/area/engine/gravity_generator)
-"bAA" = (
-/obj/machinery/computer/teleporter,
-/turf/open/floor/plating,
-/area/teleporter)
-"bAB" = (
+"bwq" = (
/obj/machinery/teleport/station,
/turf/open/floor/plating,
/area/teleporter)
-"bAC" = (
-/obj/machinery/teleport/hub,
+"bwr" = (
+/obj/machinery/computer/teleporter,
/turf/open/floor/plating,
/area/teleporter)
-"bAD" = (
+"bws" = (
/obj/structure/rack,
/obj/item/weapon/tank/internals/oxygen,
/obj/item/clothing/mask/gas,
/turf/open/floor/plating,
/area/teleporter)
-"bAE" = (
+"bwt" = (
+/obj/machinery/teleport/hub,
+/turf/open/floor/plating,
+/area/teleporter)
+"bwu" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bAF" = (
+"bwv" = (
/obj/machinery/navbeacon{
codes_txt = "delivery;dir=4";
- dir = 4;
- freq = 1400;
- location = "Medbay"
+ dir = 4;
+ freq = 1400;
+ location = "Medbay"
},
/obj/structure/plasticflaps{
opacity = 1
@@ -35205,370 +33714,368 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
/area/medical/medbay)
-"bAG" = (
+"bww" = (
+/obj/structure/chair,
+/obj/machinery/camera{
+ c_tag = "Surgery Observation"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/medical/sleeper)
+"bwx" = (
/obj/machinery/door/window/eastleft{
name = "Medical Delivery";
- req_access_txt = "5"
+ req_access_txt = "5"
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
/area/medical/medbay)
-"bAH" = (
-/obj/machinery/airalarm{
+"bwy" = (
+/obj/structure/disposalpipe/segment{
dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
+ icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bAI" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
+"bwz" = (
+/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bAJ" = (
+"bwA" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 8
},
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bAK" = (
-/obj/machinery/computer/med_data,
-/turf/open/floor/plasteel/white,
+"bwB" = (
+/obj/structure/chair,
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/black,
/area/medical/sleeper)
-"bAL" = (
+"bwC" = (
+/obj/machinery/computer/med_data,
/turf/open/floor/plasteel/white,
/area/medical/sleeper)
-"bAM" = (
-/turf/open/floor/plasteel/white/side{
- dir = 8
- },
-/area/medical/sleeper)
-"bAN" = (
+"bwD" = (
/obj/machinery/sleeper{
icon_state = "sleeper-open";
- dir = 8
+ dir = 8
},
/turf/open/floor/plasteel,
/area/medical/sleeper)
-"bAO" = (
-/obj/structure/sign/nosmoking_2,
-/turf/closed/wall,
+"bwE" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/black,
/area/medical/sleeper)
-"bAP" = (
+"bwF" = (
/obj/structure/table/glass,
/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{
pixel_x = 7;
- pixel_y = 1
+ pixel_y = 1
},
/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{
pixel_x = 7;
- pixel_y = 1
+ pixel_y = 1
},
/turf/open/floor/plasteel,
/area/medical/sleeper)
-"bAQ" = (
-/obj/machinery/atmospherics/components/unary/cryo_cell,
-/turf/open/floor/plasteel,
+"bwG" = (
+/obj/structure/sign/nosmoking_2,
+/turf/closed/wall,
/area/medical/sleeper)
-"bAR" = (
+"bwH" = (
/obj/structure/table,
/obj/machinery/cell_charger,
/turf/open/floor/plasteel,
/area/medical/sleeper)
-"bAS" = (
+"bwI" = (
+/obj/machinery/atmospherics/components/unary/cryo_cell,
+/turf/open/floor/plasteel,
+/area/medical/sleeper)
+"bwJ" = (
/obj/structure/table/glass,
/obj/machinery/camera{
c_tag = "Medbay Cryogenics";
- dir = 2;
- network = list("SS13");
- pixel_x = 0;
- pixel_y = 0
+ dir = 2;
+ network = list("SS13");
+ pixel_x = 0;
+ pixel_y = 0
},
/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{
pixel_x = 0;
- pixel_y = 0
+ pixel_y = 0
},
/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{
pixel_x = 0;
- pixel_y = 0
+ pixel_y = 0
},
/turf/open/floor/plasteel,
/area/medical/sleeper)
-"bAT" = (
+"bwK" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 27;
+ pixel_y = 0
+ },
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay)
+"bwL" = (
/obj/machinery/camera{
c_tag = "Genetics Cloning";
- dir = 4;
- network = list("SS13")
+ dir = 4;
+ network = list("SS13")
},
/obj/structure/table,
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -24
+ pixel_x = -24
},
/obj/item/weapon/storage/box/rxglasses{
pixel_x = 3;
- pixel_y = 3
+ pixel_y = 3
},
/obj/item/weapon/storage/box/bodybags,
/obj/item/weapon/pen,
/turf/open/floor/plasteel/white,
/area/medical/genetics)
-"bAU" = (
-/obj/machinery/holopad,
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bAV" = (
+"bwM" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 1
+ },
+/area/security/checkpoint/science)
+"bwN" = (
+/obj/machinery/light_switch{
+ pixel_x = 8;
+ pixel_y = 28
+ },
+/obj/machinery/button/door{
+ id = "Biohazard";
+ name = "Biohazard Shutter Control";
+ pixel_x = -5;
+ pixel_y = 28;
+ req_access_txt = "47"
+ },
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
- on = 1
+ on = 1
},
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bAW" = (
+/turf/open/floor/plasteel/red/side{
+ dir = 1
+ },
+/area/security/checkpoint/science)
+"bwO" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/white/side{
+ dir = 9
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"bwP" = (
+/obj/structure/table,
+/obj/item/weapon/storage/box/donkpockets{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"bwQ" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plating,
-/area/medical/genetics)
-"bAX" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
+/area/crew_quarters/hor)
+"bwR" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_Toxins = 0
},
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/hor)
+"bwS" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bAY" = (
/obj/structure/disposalpipe/segment{
- dir = 4
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/qm)
+"bwT" = (
+/obj/machinery/door/airlock/glass_mining{
+ name = "Quartermaster";
+ req_access_txt = "41"
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bAZ" = (
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
+/turf/open/floor/plasteel,
+/area/quartermaster/qm)
+"bwU" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bBa" = (
-/obj/structure/disposalpipe/segment{
+/turf/open/floor/plasteel/brown{
dir = 4
},
+/area/quartermaster/qm)
+"bwV" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 4
+/obj/effect/landmark/start{
+ name = "Shaft Miner"
},
-/area/medical/genetics)
-"bBb" = (
-/obj/machinery/door/airlock/research{
- name = "Genetics Research";
- req_access_txt = "9"
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock)
+"bwW" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bBc" = (
-/obj/structure/disposalpipe/sortjunction{
- sortType = 23
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock)
+"bwX" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/cable{
d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d2 = 8;
+ icon_state = "2-8"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bBd" = (
-/obj/structure/disposalpipe/segment{
+/obj/structure/disposalpipe/sortjunction{
dir = 1;
- icon_state = "pipe-c"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bBe" = (
-/obj/machinery/door/airlock/research{
- name = "Genetics Research Access";
- req_access_txt = "47"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bBf" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ icon_state = "pipe-j2s";
+ sortType = 3
},
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/poddoor/preopen{
- id = "Biohazard";
- name = "biohazard containment door"
+/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock)
+"bwY" = (
+/obj/machinery/door/airlock/glass_security{
+ name = "Security Office";
+ req_access_txt = "63"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
-/area/medical/research{
- name = "Research Division"
- })
-"bBg" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+/area/security/checkpoint/supply)
+"bwZ" = (
+/obj/structure/chair,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/black,
+/area/medical/sleeper)
+"bxa" = (
+/obj/structure/chair,
+/obj/structure/sign/nosmoking_2{
+ pixel_x = -28
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+/turf/open/floor/plasteel/black,
+/area/medical/sleeper)
+"bxb" = (
+/obj/structure/chair,
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
},
-/turf/open/floor/plasteel/whiteblue/side{
+/turf/open/floor/plasteel/black,
+/area/medical/sleeper)
+"bxc" = (
+/obj/machinery/holopad,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
-/area/medical/research{
- name = "Research Division"
- })
-"bBh" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bBi" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bBj" = (
+/turf/open/floor/plasteel/black,
+/area/medical/sleeper)
+"bxd" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
-/obj/machinery/light,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -35576,37 +34083,15 @@
/area/medical/research{
name = "Research Division"
})
-"bBk" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bBl" = (
+"bxe" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -35616,15 +34101,15 @@
/area/medical/research{
name = "Research Division"
})
-"bBm" = (
+"bxf" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -35635,92 +34120,99 @@
/area/medical/research{
name = "Research Division"
})
-"bBn" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bBo" = (
+"bxg" = (
+/obj/structure/reagent_dispensers/watertank,
+/obj/effect/decal/cleanable/cobweb/cobweb2,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
+/turf/open/floor/plating,
+/area/maintenance/asmaint)
+"bxh" = (
+/obj/machinery/door/poddoor{
+ id = "smindicate";
+ name = "outer blast door"
},
-/turf/open/floor/plasteel/white/side{
- dir = 9
+/obj/machinery/button/door{
+ id = "smindicate";
+ name = "external door control";
+ pixel_x = -26;
+ pixel_y = 0;
+ req_access_txt = "150"
},
-/area/medical/research{
- name = "Research Division"
- })
-"bBp" = (
-/obj/structure/filingcabinet/chestdrawer,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/hor)
-"bBq" = (
-/obj/machinery/computer/security/telescreen{
- desc = "Used for watching the RD's goons and the AI's satellite from the safety of his office.";
- name = "Research Monitor";
- network = list("RD","MiniSat");
- pixel_x = 0;
- pixel_y = 2
+/obj/docking_port/mobile{
+ dheight = 9;
+ dir = 2;
+ dwidth = 5;
+ height = 24;
+ id = "syndicate";
+ name = "syndicate infiltrator";
+ port_angle = 0;
+ roundstart_move = "syndicate_away";
+ width = 18
},
-/obj/structure/table,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/hor)
-"bBr" = (
+/obj/docking_port/stationary{
+ dheight = 9;
+ dir = 2;
+ dwidth = 5;
+ height = 24;
+ id = "syndicate_nw";
+ name = "northwest of station";
+ turf_type = /turf/open/space;
+ width = 18
+ },
+/turf/open/floor/plating,
+/area/shuttle/syndicate)
+"bxi" = (
/obj/machinery/computer/aifixer,
/obj/machinery/requests_console{
announcementConsole = 1;
- department = "Research Director's Desk";
- departmentType = 5;
- name = "Research Director RC";
- pixel_x = -2;
- pixel_y = 30
+ department = "Research Director's Desk";
+ departmentType = 5;
+ name = "Research Director RC";
+ pixel_x = -2;
+ pixel_y = 30
},
/obj/structure/window/reinforced{
dir = 4
},
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/hor)
-"bBs" = (
+"bxj" = (
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for watching the RD's goons and the AI's satellite from the safety of his office.";
+ name = "Research Monitor";
+ network = list("RD","MiniSat");
+ pixel_x = 0;
+ pixel_y = 2
+ },
+/obj/structure/table,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/hor)
+"bxk" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/storage/primary)
+"bxl" = (
/obj/structure/rack,
/obj/item/weapon/circuitboard/aicore{
pixel_x = -2;
- pixel_y = 4
+ pixel_y = 4
},
/obj/effect/turf_decal/stripes/line{
dir = 9
},
/turf/open/floor/plasteel/white,
/area/crew_quarters/hor)
-"bBt" = (
-/obj/machinery/ai_status_display{
- pixel_y = 32
- },
-/obj/effect/landmark/event_spawn,
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/crew_quarters/hor)
-"bBu" = (
+"bxm" = (
/obj/effect/landmark/xmastree/rdrod,
/obj/effect/turf_decal/stripes/line{
dir = 5
},
/turf/open/floor/plasteel/white,
/area/crew_quarters/hor)
-"bBv" = (
+"bxn" = (
+/turf/closed/wall,
+/area/toxins/explab)
+"bxo" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 1
@@ -35730,10 +34222,13 @@
},
/turf/open/floor/plasteel,
/area/toxins/explab)
-"bBw" = (
-/turf/closed/wall,
+"bxp" = (
+/obj/machinery/computer/rdconsole/experiment,
+/turf/open/floor/plasteel/white/side{
+ dir = 1
+ },
/area/toxins/explab)
-"bBx" = (
+"bxq" = (
/obj/structure/table,
/obj/item/weapon/clipboard,
/obj/item/weapon/book/manual/experimentor,
@@ -35741,104 +34236,69 @@
dir = 4
},
/area/toxins/explab)
-"bBy" = (
-/obj/machinery/computer/rdconsole/experiment,
-/turf/open/floor/plasteel/white/side{
- dir = 1
- },
-/area/toxins/explab)
-"bBz" = (
+"bxr" = (
/obj/structure/closet/radiation,
/turf/open/floor/plasteel/white/corner{
dir = 1
},
/area/toxins/explab)
-"bBA" = (
+"bxs" = (
/obj/machinery/button/door{
id = "telelab";
- name = "Test Chamber Blast Doors";
- pixel_x = 25;
- pixel_y = 0
+ name = "Test Chamber Blast Doors";
+ pixel_x = 25;
+ pixel_y = 0
},
/obj/effect/turf_decal/stripes/line{
dir = 2
},
/turf/open/floor/plasteel/white,
/area/toxins/explab)
-"bBB" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bBC" = (
-/obj/machinery/atmospherics/components/binary/valve{
- dir = 4
- },
+"bxt" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/simple/general/visible,
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"bBD" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 8
- },
-/obj/machinery/light/small{
+"bxu" = (
+/turf/closed/wall,
+/area/quartermaster/qm)
+"bxv" = (
+/obj/structure/chair/office/dark{
dir = 4
},
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bBE" = (
-/obj/structure/lattice,
-/obj/effect/landmark{
- name = "carpspawn"
- },
-/turf/open/space,
-/area/space)
-"bBF" = (
-/obj/machinery/door/airlock/glass,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"bBG" = (
-/obj/machinery/door/airlock/glass,
-/turf/open/floor/plasteel/shuttle/white,
-/area/shuttle/abandoned)
-"bBH" = (
-/obj/structure/chair{
- dir = 4
+/obj/effect/landmark/start/depsec/science,
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
-/obj/effect/decal/remains/human,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"bBI" = (
-/obj/machinery/computer/shuttle/white_ship,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"bBJ" = (
-/turf/closed/wall,
-/area/quartermaster/qm)
-"bBK" = (
+/turf/open/floor/plasteel,
+/area/security/checkpoint/science)
+"bxw" = (
/obj/machinery/door/airlock/glass_mining{
name = "Quartermaster";
- req_access_txt = "41"
+ req_access_txt = "41"
},
/turf/open/floor/plasteel,
/area/quartermaster/qm)
-"bBL" = (
+"bxx" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/quartermaster/qm)
-"bBM" = (
+"bxy" = (
/turf/closed/wall,
/area/quartermaster/miningdock)
-"bBN" = (
+"bxz" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall,
/area/quartermaster/miningdock)
-"bBO" = (
+"bxA" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
/obj/machinery/door/firedoor,
@@ -35848,10 +34308,10 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/quartermaster/miningdock)
-"bBP" = (
+"bxB" = (
/obj/item/weapon/paper_bin{
pixel_x = 1;
- pixel_y = 9
+ pixel_y = 9
},
/obj/item/weapon/pen,
/obj/structure/table,
@@ -35859,319 +34319,372 @@
dir = 9
},
/area/security/checkpoint/supply)
-"bBQ" = (
-/obj/item/weapon/book/manual/wiki/security_space_law,
+"bxC" = (
+/obj/machinery/recharger{
+ pixel_y = 4
+ },
/obj/structure/table,
/turf/open/floor/plasteel/red/side{
dir = 1
},
/area/security/checkpoint/supply)
-"bBR" = (
-/obj/machinery/recharger{
- pixel_y = 4
- },
+"bxD" = (
+/obj/item/weapon/book/manual/wiki/security_space_law,
/obj/structure/table,
/turf/open/floor/plasteel/red/side{
dir = 1
},
/area/security/checkpoint/supply)
-"bBS" = (
+"bxE" = (
/obj/machinery/computer/secure_data,
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
+ icon_state = "alarm0";
+ pixel_x = 24
},
/turf/open/floor/plasteel/red/side{
dir = 5
},
/area/security/checkpoint/supply)
-"bBT" = (
+"bxF" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white/side{
+ dir = 9
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"bxG" = (
/obj/machinery/door/airlock/command{
name = "Head of Personnel";
- req_access = null;
- req_access_txt = "57"
+ req_access = null;
+ req_access_txt = "57"
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel,
/area/crew_quarters/heads)
-"bBU" = (
+"bxH" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
/turf/closed/wall,
/area/engine/gravity_generator)
-"bBV" = (
+"bxI" = (
/obj/machinery/ai_status_display,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
/turf/closed/wall,
/area/engine/gravity_generator)
-"bBW" = (
+"bxJ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
+ dir = 9
},
/turf/closed/wall,
/area/engine/gravity_generator)
-"bBX" = (
+"bxK" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
+ dir = 6
},
/turf/closed/wall,
/area/engine/gravity_generator)
-"bBY" = (
+"bxL" = (
/obj/machinery/camera{
c_tag = "Central Hallway South-East";
- dir = 8
+ dir = 8
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bBZ" = (
+"bxM" = (
+/obj/structure/chair/office/dark,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/medical/sleeper)
-"bCa" = (
-/obj/machinery/door/airlock/glass_medical{
- id_tag = "";
- name = "Surgery Observation";
- req_access_txt = "0"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/black,
-/area/medical/sleeper)
-"bCb" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/red/side,
+/area/security/checkpoint2)
+"bxN" = (
/obj/structure/sink{
icon_state = "sink";
- dir = 8;
- pixel_x = -12;
- pixel_y = 2
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
},
/obj/structure/mirror{
pixel_x = -28
},
/turf/open/floor/plasteel/white,
/area/medical/sleeper)
-"bCc" = (
-/obj/machinery/holopad,
+"bxO" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_Toxins = 0
+ },
/turf/open/floor/plasteel/white,
/area/medical/sleeper)
-"bCd" = (
+"bxP" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/hor)
+"bxQ" = (
+/turf/open/floor/plasteel,
+/area/medical/sleeper)
+"bxR" = (
/obj/machinery/door/firedoor,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
/area/medical/sleeper)
-"bCe" = (
+"bxS" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
/turf/open/floor/plasteel,
/area/medical/sleeper)
-"bCf" = (
+"bxT" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 5
},
/turf/open/floor/plasteel,
/area/medical/sleeper)
-"bCg" = (
+"bxU" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
+ dir = 10;
+ pixel_x = 0;
+ initialize_directions = 10
},
/turf/open/floor/plasteel,
/area/medical/sleeper)
-"bCh" = (
+"bxV" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible,
/turf/open/floor/plasteel,
/area/medical/sleeper)
-"bCi" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 10;
- pixel_x = 0;
- initialize_directions = 10
+"bxW" = (
+/obj/machinery/door/airlock/glass_command{
+ name = "Research Director";
+ req_access_txt = "30"
},
-/turf/open/floor/plasteel,
-/area/medical/sleeper)
-"bCj" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/hor)
+"bxX" = (
/obj/machinery/light{
icon_state = "tube1";
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bCk" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ dir = 8
},
/turf/open/floor/plasteel/white,
/area/medical/genetics)
-"bCl" = (
-/obj/structure/chair,
-/obj/effect/landmark/start{
- name = "Geneticist"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+"bxY" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bCm" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bCn" = (
-/obj/machinery/door/airlock/glass_research{
- name = "Genetics Research";
- req_access_txt = "5; 9; 68"
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/hor)
+"bxZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/hor)
+"bya" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bCo" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
},
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bCp" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bCq" = (
-/obj/machinery/camera{
- c_tag = "Genetics Research";
- dir = 1;
- network = list("SS13","RD");
- pixel_x = 0
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/hor)
+"byb" = (
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
},
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/hor)
+"byc" = (
+/obj/structure/table,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/turf/open/floor/plasteel/whitepurple/side{
- dir = 4
+/obj/machinery/computer/stockexchange,
+/turf/open/floor/plasteel/brown{
+ dir = 2
},
-/area/medical/genetics)
-"bCr" = (
-/obj/structure/sign/securearea,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+/area/quartermaster/qm)
+"byd" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 2
},
+/area/quartermaster/qm)
+"bye" = (
+/obj/structure/sign/securearea,
/turf/closed/wall/r_wall,
/area/medical/genetics)
-"bCs" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+"byf" = (
+/turf/closed/wall/r_wall,
+/area/toxins/server)
+"byg" = (
+/obj/structure/table,
+/obj/item/weapon/clipboard,
+/obj/item/weapon/stamp/qm{
+ pixel_x = 0;
+ pixel_y = 0
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bCt" = (
-/obj/machinery/camera{
- c_tag = "Genetics Access";
- dir = 8;
- network = list("SS13");
- pixel_x = 0;
- pixel_y = -22
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
+/turf/open/floor/plasteel/brown{
+ dir = 2
},
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bCu" = (
-/turf/closed/wall/r_wall,
-/area/toxins/server)
-"bCv" = (
+/area/quartermaster/qm)
+"byh" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/command{
name = "Server Room";
- req_access = null;
- req_access_txt = "30"
+ req_access = null;
+ req_access_txt = "30"
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/open/floor/plasteel/black,
/area/toxins/server)
-"bCw" = (
+"byi" = (
/turf/closed/wall,
/area/security/checkpoint/science)
-"bCx" = (
+"byj" = (
/obj/machinery/door/airlock/glass_security{
name = "Security Office";
- req_access_txt = "63"
+ req_access_txt = "63"
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/white,
/area/security/checkpoint/science)
-"bCy" = (
+"byk" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/security/checkpoint/science)
-"bCz" = (
+"byl" = (
+/obj/structure/table,
+/obj/item/weapon/folder/yellow,
+/obj/item/weapon/pen{
+ pixel_x = 4;
+ pixel_y = 4
+ },
+/obj/item/weapon/pen/red,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 2
+ },
+/area/quartermaster/qm)
+"bym" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
/turf/open/floor/plating,
-/area/security/checkpoint/science)
-"bCA" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/area/quartermaster/qm)
+"byn" = (
+/obj/structure/filingcabinet,
+/obj/machinery/light_switch{
+ pixel_y = -25
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bCB" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/brown{
+ dir = 6
+ },
+/area/quartermaster/qm)
+"byo" = (
/obj/structure/table,
/obj/machinery/button/door{
id = "Biohazard";
- name = "Biohazard Shutter Control";
- pixel_x = -5;
- pixel_y = 5;
- req_access_txt = "47"
+ name = "Biohazard Shutter Control";
+ pixel_x = -5;
+ pixel_y = 5;
+ req_access_txt = "47"
},
/obj/machinery/button/door{
id = "rnd2";
- name = "Research Lab Shutter Control";
- pixel_x = 5;
- pixel_y = 5;
- req_access_txt = "47"
+ name = "Research Lab Shutter Control";
+ pixel_x = 5;
+ pixel_y = 5;
+ req_access_txt = "47"
},
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/hor)
-"bCC" = (
+"byp" = (
+/obj/machinery/computer/robotics,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/hor)
+"byq" = (
/obj/structure/chair/office/light{
dir = 8
},
@@ -36180,14 +34693,11 @@
},
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/hor)
-"bCD" = (
-/obj/machinery/computer/robotics,
-/obj/structure/window/reinforced{
- dir = 4
- },
-/turf/open/floor/plasteel/cafeteria,
+"byr" = (
+/obj/machinery/holopad,
+/turf/open/floor/plasteel/white,
/area/crew_quarters/hor)
-"bCE" = (
+"bys" = (
/obj/structure/rack,
/obj/item/device/aicard,
/obj/effect/turf_decal/stripes/line{
@@ -36195,122 +34705,81 @@
},
/turf/open/floor/plasteel/white,
/area/crew_quarters/hor)
-"bCF" = (
-/obj/machinery/holopad,
-/turf/open/floor/plasteel/white,
+"byt" = (
+/turf/closed/wall/r_wall,
/area/crew_quarters/hor)
-"bCG" = (
+"byu" = (
/obj/structure/displaycase/labcage,
/obj/machinery/light{
dir = 4;
- icon_state = "tube1"
+ icon_state = "tube1"
},
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel/white,
/area/crew_quarters/hor)
-"bCH" = (
-/turf/closed/wall/r_wall,
-/area/crew_quarters/hor)
-"bCI" = (
+"byv" = (
/obj/structure/grille,
/obj/machinery/door/poddoor/preopen{
id = "telelab";
- name = "test chamber blast door"
+ name = "test chamber blast door"
},
/obj/structure/window/reinforced/fulltile,
/obj/machinery/door/firedoor/heavy,
/turf/open/floor/engine,
/area/toxins/explab)
-"bCJ" = (
+"byw" = (
/obj/machinery/door/poddoor/preopen{
id = "telelab";
- name = "test chamber blast door"
+ name = "test chamber blast door"
},
/obj/machinery/door/firedoor/heavy,
/turf/open/floor/engine,
/area/toxins/explab)
-"bCK" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bCL" = (
-/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
+"byx" = (
+/obj/machinery/atmospherics/components/unary/thermomachine/heater{
dir = 8
},
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"bCM" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"bCN" = (
-/obj/structure/table,
-/obj/item/weapon/tank/internals/oxygen,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"bCO" = (
-/turf/open/floor/mineral/titanium/blue,
-/turf/closed/wall/mineral/titanium/interior,
-/area/shuttle/supply)
-"bCP" = (
-/obj/structure/table,
-/obj/item/weapon/cartridge/quartermaster{
- pixel_x = 6;
- pixel_y = 5
- },
-/obj/item/weapon/cartridge/quartermaster,
-/obj/item/weapon/cartridge/quartermaster{
- pixel_x = -4;
- pixel_y = 7
- },
-/obj/machinery/requests_console{
- department = "Cargo Bay";
- departmentType = 2;
- pixel_x = -30;
- pixel_y = 0
- },
-/obj/item/weapon/coin/silver,
+"byy" = (
+/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock)
+"byz" = (
/turf/open/floor/plasteel/brown{
- dir = 9
+ dir = 1
},
/area/quartermaster/qm)
-"bCQ" = (
+"byA" = (
/obj/machinery/power/apc{
dir = 1;
- name = "Quartermaster APC";
- pixel_y = 24
+ name = "Quartermaster APC";
+ pixel_y = 24
},
/obj/structure/cable{
icon_state = "0-2";
- d2 = 2
+ d2 = 2
},
/turf/open/floor/plasteel/brown{
dir = 1
},
/area/quartermaster/qm)
-"bCR" = (
+"byB" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk,
/turf/open/floor/plasteel/brown{
dir = 1
},
/area/quartermaster/qm)
-"bCS" = (
+"byC" = (
/obj/machinery/holopad,
/turf/open/floor/plasteel/brown{
dir = 1
},
/area/quartermaster/qm)
-"bCT" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk,
-/turf/open/floor/plasteel/brown{
- dir = 1
- },
-/area/quartermaster/qm)
-"bCU" = (
+"byD" = (
/obj/structure/closet/secure_closet/quartermaster,
/obj/machinery/airalarm{
pixel_y = 23
@@ -36319,61 +34788,78 @@
dir = 5
},
/area/quartermaster/qm)
-"bCV" = (
+"byE" = (
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock)
+"byF" = (
/obj/machinery/power/apc{
dir = 1;
- name = "Mining Dock APC";
- pixel_y = 24
+ name = "Mining Dock APC";
+ pixel_y = 24
},
/obj/structure/cable{
icon_state = "0-2";
- d2 = 2
+ d2 = 2
},
/turf/open/floor/plasteel,
/area/quartermaster/miningdock)
-"bCW" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"bCX" = (
+"byG" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
/turf/open/floor/plasteel,
/area/quartermaster/miningdock)
-"bCY" = (
-/obj/machinery/light{
- dir = 1
- },
+"byH" = (
/obj/machinery/light_switch{
- pixel_y = 28
+ pixel_y = -25
+ },
+/obj/structure/closet,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 10
+ },
+/area/security/checkpoint/supply)
+"byI" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
},
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"bCZ" = (
/turf/open/floor/plasteel/red/side{
dir = 8
},
/area/security/checkpoint/supply)
-"bDa" = (
+"byJ" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/security/checkpoint/supply)
+"byK" = (
+/turf/open/floor/plasteel,
+/area/security/checkpoint/supply)
+"byL" = (
/obj/structure/chair/office/dark{
dir = 1
},
/obj/effect/landmark/start/depsec/supply,
/turf/open/floor/plasteel,
/area/security/checkpoint/supply)
-"bDb" = (
-/turf/open/floor/plasteel,
-/area/security/checkpoint/supply)
-"bDc" = (
+"byM" = (
/obj/item/device/radio/intercom{
dir = 4;
- name = "Station Intercom (General)";
- pixel_x = 27
+ name = "Station Intercom (General)";
+ pixel_x = 27
},
/obj/machinery/computer/security/mining{
network = list("MINE","AuxBase")
@@ -36382,13 +34868,27 @@
dir = 4
},
/area/security/checkpoint/supply)
-"bDd" = (
+"byN" = (
/obj/machinery/newscaster{
pixel_y = 32
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bDe" = (
+"byO" = (
+/obj/machinery/requests_console{
+ department = "Security";
+ departmentType = 5;
+ pixel_y = -30
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/red/side,
+/area/security/checkpoint/supply)
+"byP" = (
/obj/structure/sign/securearea{
pixel_y = 32
},
@@ -36396,29 +34896,29 @@
dir = 1
},
/area/hallway/primary/central)
-"bDf" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
+"byQ" = (
/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
+ dir = 4
},
/turf/open/floor/plasteel/blue/side{
dir = 1
},
/area/hallway/primary/central)
-"bDg" = (
+"byR" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/obj/structure/disposalpipe/segment{
- dir = 4
+ dir = 1;
+ icon_state = "pipe-c"
},
/turf/open/floor/plasteel/blue/side{
dir = 1
},
/area/hallway/primary/central)
-"bDh" = (
+"byS" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -36427,177 +34927,179 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bDi" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bDj" = (
+"byT" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
+/turf/open/floor/plasteel/red/side,
+/area/security/checkpoint/supply)
+"byU" = (
+/obj/machinery/light,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bDk" = (
-/obj/structure/sign/securearea{
- pixel_y = 32
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
+"byV" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 5;
+ pixel_y = -32
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bDl" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+"byW" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 5;
+ pixel_y = -32
},
-/obj/effect/turf_decal/stripes/corner{
+/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bDm" = (
+"byX" = (
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
+ icon_state = "alarm0";
+ pixel_x = 24
},
/obj/machinery/light{
dir = 4;
- icon_state = "tube1"
+ icon_state = "tube1"
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bDn" = (
-/obj/structure/chair,
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/black,
-/area/medical/sleeper)
-"bDo" = (
-/obj/structure/chair,
-/obj/machinery/camera{
- c_tag = "Surgery Observation"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+"byY" = (
+/obj/structure/grille,
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/plasteel/black,
+/obj/structure/window/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
/area/medical/sleeper)
-"bDp" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/black,
+"byZ" = (
+/obj/structure/grille,
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/structure/window/fulltile,
+/turf/open/floor/plating,
/area/medical/sleeper)
-"bDq" = (
+"bza" = (
/obj/structure/chair,
/obj/machinery/airalarm{
frequency = 1439;
- pixel_y = 23
+ pixel_y = 23
},
/turf/open/floor/plasteel/black,
/area/medical/sleeper)
-"bDr" = (
-/obj/structure/chair,
-/turf/open/floor/plasteel/black,
+"bzb" = (
+/obj/structure/grille,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/window/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
/area/medical/sleeper)
-"bDs" = (
+"bzc" = (
+/obj/machinery/door/airlock/glass_medical{
+ id_tag = null;
+ name = "Recovery Room";
+ req_access_txt = "0"
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/sleeper)
+"bzd" = (
+/obj/structure/table,
+/obj/item/stack/packageWrap,
+/obj/item/stack/packageWrap,
+/obj/item/weapon/pen,
+/obj/machinery/requests_console{
+ announcementConsole = 0;
+ department = "Medbay";
+ departmentType = 1;
+ name = "Medbay RC";
+ pixel_x = 0;
+ pixel_y = 30;
+ pixel_z = 0
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay)
+"bze" = (
/obj/machinery/airalarm{
dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
+ icon_state = "alarm0";
+ pixel_x = -22
},
/obj/machinery/shower{
dir = 4
},
/turf/open/floor/plasteel/white,
/area/medical/sleeper)
-"bDt" = (
-/obj/effect/landmark/start{
- name = "Medical Doctor"
+"bzf" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
},
/turf/open/floor/plasteel/white,
/area/medical/sleeper)
-"bDu" = (
+"bzg" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/maintenance/asmaint)
+"bzh" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 6
},
/turf/open/floor/plasteel,
/area/medical/sleeper)
-"bDv" = (
+"bzi" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 1
+ dir = 4;
+ initialize_directions = 11
},
/turf/open/floor/plasteel,
/area/medical/sleeper)
-"bDw" = (
+"bzj" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 4;
- initialize_directions = 11
+ dir = 1
},
/turf/open/floor/plasteel,
/area/medical/sleeper)
-"bDx" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
- },
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+"bzk" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
},
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bDy" = (
+/turf/open/floor/plating,
+/area/maintenance/asmaint)
+"bzl" = (
/obj/machinery/dna_scannernew,
/turf/open/floor/plasteel/whiteblue/side{
dir = 10
},
/area/medical/genetics)
-"bDz" = (
+"bzm" = (
+/obj/machinery/clonepod,
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 6
+ },
+/area/medical/genetics)
+"bzn" = (
/obj/machinery/computer/cloning,
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
+ icon_state = "alarm0";
+ pixel_y = -22
},
/turf/open/floor/plasteel/whiteblue/side{
dir = 2
},
/area/medical/genetics)
-"bDA" = (
-/obj/machinery/clonepod,
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 6
- },
-/area/medical/genetics)
-"bDB" = (
-/obj/structure/sign/securearea,
-/turf/closed/wall/r_wall,
-/area/medical/genetics)
-"bDC" = (
+"bzo" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 1
@@ -36607,102 +35109,101 @@
},
/turf/open/floor/plasteel/white,
/area/medical/genetics)
-"bDD" = (
-/obj/structure/closet/secure_closet/medical1,
-/turf/open/floor/plasteel/white,
-/area/medical/genetics)
-"bDE" = (
+"bzp" = (
/obj/structure/closet/secure_closet/personal/patient,
/obj/machinery/light,
/turf/open/floor/plasteel/white,
/area/medical/genetics)
-"bDF" = (
+"bzq" = (
+/obj/structure/closet/secure_closet/medical1,
+/turf/open/floor/plasteel/white,
+/area/medical/genetics)
+"bzr" = (
/obj/structure/closet/wardrobe/genetics_white,
/obj/item/device/radio/intercom{
name = "Station Intercom (General)";
- pixel_y = -29
+ pixel_y = -29
},
/turf/open/floor/plasteel/white,
/area/medical/genetics)
-"bDG" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+"bzs" = (
/turf/closed/wall,
/area/maintenance/asmaint)
-"bDH" = (
-/obj/machinery/r_n_d/server/robotics,
-/turf/open/floor/bluegrid{
- name = "Server Base";
- initial_gas_mix = "n2=500;TEMP=80"
- },
-/area/toxins/server)
-"bDI" = (
+"bzt" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
- external_pressure_bound = 140;
- on = 1;
- pressure_checks = 0
+ external_pressure_bound = 140;
+ on = 1;
+ pressure_checks = 0
},
/turf/open/floor/bluegrid{
name = "Server Base";
- initial_gas_mix = "n2=500;TEMP=80"
+ initial_gas_mix = "n2=500;TEMP=80"
},
/area/toxins/server)
-"bDJ" = (
+"bzu" = (
+/obj/machinery/r_n_d/server/robotics,
+/turf/open/floor/bluegrid{
+ name = "Server Base";
+ initial_gas_mix = "n2=500;TEMP=80"
+ },
+/area/toxins/server)
+"bzv" = (
+/obj/machinery/atmospherics/pipe/simple{
+ dir = 10
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/black,
+/area/toxins/server)
+"bzw" = (
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple{
dir = 4
},
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'SERVER ROOM'.";
- name = "SERVER ROOM";
- pixel_y = 32
+ name = "SERVER ROOM";
+ pixel_y = 32
},
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/toxins/server)
-"bDK" = (
-/obj/machinery/atmospherics/pipe/simple{
- dir = 10
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+"bzx" = (
+/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
+ target_temperature = 80;
+ dir = 2;
+ on = 1
},
+/obj/effect/decal/cleanable/cobweb/cobweb2,
/turf/open/floor/plasteel/black,
/area/toxins/server)
-"bDL" = (
+"bzy" = (
/obj/machinery/camera{
c_tag = "Server Room";
- dir = 2;
- network = list("SS13","RD");
- pixel_x = 22
+ dir = 2;
+ network = list("SS13","RD");
+ pixel_x = 22
},
/obj/machinery/power/apc{
dir = 1;
- name = "Server Room APC";
- pixel_x = 0;
- pixel_y = 25
+ name = "Server Room APC";
+ pixel_x = 0;
+ pixel_y = 25
},
/obj/structure/cable{
d2 = 8;
- icon_state = "0-8"
- },
-/turf/open/floor/plasteel/black,
-/area/toxins/server)
-"bDM" = (
-/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
- target_temperature = 80;
- dir = 2;
- on = 1
+ icon_state = "0-8"
},
-/obj/effect/decal/cleanable/cobweb/cobweb2,
/turf/open/floor/plasteel/black,
/area/toxins/server)
-"bDN" = (
+"bzz" = (
/obj/structure/reagent_dispensers/peppertank{
pixel_x = -30;
- pixel_y = 0
+ pixel_y = 0
},
/obj/machinery/airalarm{
pixel_y = 25
@@ -36712,113 +35213,111 @@
dir = 9
},
/area/security/checkpoint/science)
-"bDO" = (
-/obj/machinery/light_switch{
- pixel_x = 8;
- pixel_y = 28
- },
-/obj/machinery/button/door{
- id = "Biohazard";
- name = "Biohazard Shutter Control";
- pixel_x = -5;
- pixel_y = 28;
- req_access_txt = "47"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
+"bzA" = (
+/obj/machinery/light{
+ dir = 4
},
-/turf/open/floor/plasteel/red/side{
- dir = 1
+/turf/open/floor/plasteel/white/side{
+ dir = 9
},
-/area/security/checkpoint/science)
-"bDP" = (
+/area/medical/research{
+ name = "Research Division"
+ })
+"bzB" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"bzC" = (
+/obj/structure/table,
+/obj/machinery/recharger{
+ pixel_y = 4
},
/turf/open/floor/plasteel/red/side{
- dir = 1
+ dir = 5
},
/area/security/checkpoint/science)
-"bDQ" = (
+"bzD" = (
/obj/structure/table,
/obj/machinery/computer/security/telescreen{
desc = "Used for watching the RD's goons from the safety of your own office.";
- name = "Research Monitor";
- network = list("RD");
- pixel_x = 0;
- pixel_y = 2
+ name = "Research Monitor";
+ network = list("RD");
+ pixel_x = 0;
+ pixel_y = 2
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/red/side{
dir = 1
},
/area/security/checkpoint/science)
-"bDR" = (
-/obj/structure/table,
-/obj/machinery/recharger{
- pixel_y = 4
- },
-/turf/open/floor/plasteel/red/side{
- dir = 5
- },
-/area/security/checkpoint/science)
-"bDS" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
+"bzE" = (
/turf/open/floor/plasteel/white/side{
- dir = 9
+ dir = 5
},
/area/medical/research{
name = "Research Division"
})
-"bDT" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/crew_quarters/hor)
-"bDU" = (
-/obj/structure/table,
-/obj/item/weapon/paper_bin{
- pixel_x = 1;
- pixel_y = 9
+"bzF" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
},
-/obj/item/weapon/pen,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock)
+"bzG" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass{
+ name = "Central Access"
},
-/obj/item/weapon/folder/white,
-/obj/item/weapon/stamp/rd{
- pixel_x = 3;
- pixel_y = -2
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/yellow/corner{
+ dir = 2
},
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/hor)
-"bDV" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_Toxins = 0
+/area/hallway/primary/central)
+"bzH" = (
+/obj/structure/table,
+/obj/item/weapon/hemostat,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/white/side{
+ dir = 2
},
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/hor)
-"bDW" = (
+/area/medical/sleeper)
+"bzI" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/table,
+/obj/item/weapon/surgicaldrill,
+/turf/open/floor/plasteel,
+/area/medical/sleeper)
+"bzJ" = (
/obj/machinery/computer/mecha,
/obj/structure/window/reinforced{
dir = 4
},
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/hor)
-"bDX" = (
+"bzK" = (
+/obj/structure/table,
+/obj/item/weapon/scalpel{
+ pixel_y = 12
+ },
+/obj/item/weapon/circular_saw,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/sleeper)
+"bzL" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel/white,
+/area/crew_quarters/hor)
+"bzM" = (
/obj/structure/rack,
/obj/item/device/taperecorder{
pixel_x = -3
@@ -36831,231 +35330,138 @@
},
/turf/open/floor/plasteel/white,
/area/crew_quarters/hor)
-"bDY" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 2
- },
-/turf/open/floor/plasteel/white,
-/area/crew_quarters/hor)
-"bDZ" = (
+"bzN" = (
/obj/machinery/modular_computer/console/preset/research,
/obj/effect/turf_decal/stripes/line{
dir = 6
},
/turf/open/floor/plasteel/white,
/area/crew_quarters/hor)
-"bEa" = (
+"bzO" = (
/turf/open/floor/engine,
/area/toxins/explab)
-"bEb" = (
-/obj/machinery/meter,
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bEc" = (
-/obj/structure/bed,
-/obj/item/weapon/bedsheet,
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/window/reinforced{
- dir = 8
- },
-/turf/open/floor/mineral/titanium/purple,
-/area/shuttle/abandoned)
-"bEd" = (
-/obj/machinery/door/window/northright,
-/obj/effect/decal/remains/human,
-/turf/open/floor/mineral/titanium/purple,
-/area/shuttle/abandoned)
-"bEe" = (
-/obj/structure/window/reinforced{
- dir = 1
- },
-/obj/structure/shuttle/engine/heater,
-/turf/open/floor/plating/airless,
-/area/shuttle/supply)
-"bEf" = (
+"bzP" = (
/obj/machinery/computer/cargo,
/obj/machinery/light{
icon_state = "tube1";
- dir = 8
+ dir = 8
},
/turf/open/floor/plasteel/brown{
dir = 8
},
/area/quartermaster/qm)
-"bEg" = (
+"bzQ" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
/turf/open/floor/plasteel,
/area/quartermaster/qm)
-"bEh" = (
+"bzR" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
/turf/open/floor/plasteel,
/area/quartermaster/qm)
-"bEi" = (
+"bzS" = (
+/obj/structure/table,
+/obj/item/weapon/cautery{
+ pixel_x = 4
+ },
+/turf/open/floor/plasteel,
+/area/medical/sleeper)
+"bzT" = (
/obj/structure/chair/office/dark,
/obj/effect/landmark/start{
name = "Quartermaster"
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/qm)
-"bEj" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
/turf/open/floor/plasteel,
/area/quartermaster/qm)
-"bEk" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/brown{
- dir = 4
- },
-/area/quartermaster/qm)
-"bEl" = (
-/obj/machinery/door/airlock/glass_mining{
- name = "Quartermaster";
- req_access_txt = "41"
+"bzU" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+/turf/open/floor/plasteel/whiteblue/corner{
+ dir = 2
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/area/medical/sleeper)
+"bzV" = (
+/obj/structure/closet/wardrobe/white/medical,
+/turf/open/floor/plasteel/white,
+/area/medical/sleeper)
+"bzW" = (
+/obj/structure/closet/l3closet,
+/turf/open/floor/plasteel/white,
+/area/medical/sleeper)
+"bzX" = (
+/turf/open/floor/plasteel/whiteblue/corner{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+/area/medical/medbay)
+"bzY" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
},
/turf/open/floor/plasteel,
-/area/quartermaster/qm)
-"bEm" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+/area/quartermaster/miningdock)
+"bzZ" = (
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/plasteel/white/side{
+ dir = 9
},
+/area/medical/research{
+ name = "Research Division"
+ })
+"bAa" = (
+/obj/machinery/door/firedoor/heavy,
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"bEn" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"bAb" = (
+/obj/structure/chair/office/dark{
+ dir = 8
},
/obj/effect/landmark/start{
name = "Shaft Miner"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/quartermaster/miningdock)
-"bEo" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
+"bAc" = (
/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/sortjunction{
- dir = 1;
- icon_state = "pipe-j2s";
- sortType = 3
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"bEp" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"bEq" = (
-/obj/machinery/door/airlock/glass_security{
- name = "Security Office";
- req_access_txt = "63"
- },
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel,
-/area/security/checkpoint/supply)
-"bEr" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/turf/open/floor/plasteel/red/side{
- dir = 8
- },
-/area/security/checkpoint/supply)
-"bEs" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/security/checkpoint/supply)
-"bEt" = (
+/area/quartermaster/miningdock)
+"bAd" = (
/obj/item/weapon/screwdriver{
pixel_y = 10
},
@@ -37067,193 +35473,238 @@
dir = 4
},
/area/security/checkpoint/supply)
-"bEu" = (
+"bAe" = (
/obj/machinery/navbeacon{
codes_txt = "patrol;next_patrol=AIW";
- location = "QM"
+ location = "QM"
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bEv" = (
-/obj/machinery/door/firedoor,
-/obj/effect/landmark/event_spawn,
+"bAf" = (
+/obj/machinery/holopad,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bEw" = (
+"bAg" = (
/obj/machinery/navbeacon{
codes_txt = "patrol;next_patrol=AftH";
- location = "AIW"
+ location = "AIW"
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bEx" = (
-/obj/machinery/holopad,
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bEy" = (
+"bAh" = (
/obj/machinery/navbeacon{
codes_txt = "patrol;next_patrol=CHE";
- location = "AIE"
+ location = "AIE"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bEz" = (
+"bAi" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bAj" = (
/obj/machinery/navbeacon{
codes_txt = "patrol;next_patrol=HOP";
- location = "CHE"
+ location = "CHE"
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bEA" = (
-/obj/structure/chair,
-/obj/structure/sign/nosmoking_2{
- pixel_x = -28
+"bAk" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1
},
-/turf/open/floor/plasteel/black,
-/area/medical/sleeper)
-"bEB" = (
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bAl" = (
/obj/structure/chair,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/black,
/area/medical/sleeper)
-"bEC" = (
-/obj/machinery/holopad,
-/obj/structure/disposalpipe/segment,
+"bAm" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
-/turf/open/floor/plasteel/black,
-/area/medical/sleeper)
-"bED" = (
-/obj/structure/chair,
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock)
+"bAn" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Mining Maintenance";
+ req_access_txt = "48"
},
-/turf/open/floor/plasteel/black,
-/area/medical/sleeper)
-"bEE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/quartermaster/miningdock)
+"bAo" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/machinery/power/apc{
+ dir = 1;
+ name = "Cargo Security APC";
+ pixel_x = 1;
+ pixel_y = 24
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/security/checkpoint/supply)
+"bAp" = (
/obj/structure/closet/secure_closet/medical1,
/obj/machinery/light{
icon_state = "tube1";
- dir = 8
+ dir = 8
},
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -24
+ pixel_x = -24
},
/turf/open/floor/plasteel/white,
/area/medical/sleeper)
-"bEF" = (
+"bAq" = (
/obj/machinery/sleeper{
icon_state = "sleeper-open";
- dir = 8
+ dir = 8
},
/obj/machinery/camera{
c_tag = "Medbay Treatment Center";
- dir = 8;
- network = list("SS13")
+ dir = 8;
+ network = list("SS13")
},
/turf/open/floor/plasteel,
/area/medical/sleeper)
-"bEG" = (
+"bAr" = (
/obj/machinery/portable_atmospherics/canister/oxygen,
/turf/open/floor/plasteel,
/area/medical/sleeper)
-"bEH" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/wrench/medical,
-/turf/open/floor/plasteel,
-/area/medical/sleeper)
-"bEI" = (
+"bAs" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 1;
- name = "Connector Port (Air Supply)"
+ name = "Connector Port (Air Supply)"
},
/obj/machinery/portable_atmospherics/canister/oxygen,
/obj/machinery/firealarm{
dir = 1;
- pixel_y = -24
+ pixel_y = -24
},
/obj/machinery/light,
/turf/open/floor/plasteel,
/area/medical/sleeper)
-"bEJ" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 1;
- name = "Connector Port (Air Supply)"
- },
-/obj/machinery/portable_atmospherics/canister/oxygen,
+"bAt" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/wrench/medical,
/turf/open/floor/plasteel,
/area/medical/sleeper)
-"bEK" = (
+"bAu" = (
/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
dir = 1
},
/turf/open/floor/plasteel,
/area/medical/sleeper)
-"bEL" = (
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bEM" = (
-/obj/structure/reagent_dispensers/watertank,
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+"bAv" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 1;
+ name = "Connector Port (Air Supply)"
+ },
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/open/floor/plasteel,
+/area/medical/sleeper)
+"bAw" = (
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"bEN" = (
-/obj/machinery/airalarm/server{
- dir = 4;
- pixel_x = -22;
- pixel_y = 0
+"bAx" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/machinery/light/small{
- dir = 8
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
-/turf/open/floor/plasteel/black{
- name = "Server Walkway";
- initial_gas_mix = "n2=500;TEMP=80"
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
-/area/toxins/server)
-"bEO" = (
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"bAy" = (
/obj/effect/landmark{
name = "blobstart"
},
/turf/open/floor/plasteel/black{
name = "Server Walkway";
- initial_gas_mix = "n2=500;TEMP=80"
+ initial_gas_mix = "n2=500;TEMP=80"
},
/area/toxins/server)
-"bEP" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_command{
- name = "Server Room";
- req_access_txt = "30"
+"bAz" = (
+/obj/machinery/airalarm/server{
+ dir = 4;
+ pixel_x = -22;
+ pixel_y = 0
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plasteel/black{
+ name = "Server Walkway";
+ initial_gas_mix = "n2=500;TEMP=80"
},
-/turf/open/floor/plasteel/black,
/area/toxins/server)
-"bEQ" = (
+"bAA" = (
/obj/machinery/atmospherics/pipe/manifold{
dir = 8
},
/turf/open/floor/plasteel/black,
/area/toxins/server)
-"bER" = (
-/obj/structure/chair/office/light,
-/obj/machinery/atmospherics/pipe/simple{
- dir = 4
+"bAB" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_command{
+ name = "Server Room";
+ req_access_txt = "30"
},
/turf/open/floor/plasteel/black,
/area/toxins/server)
-"bES" = (
+"bAC" = (
/obj/machinery/atmospherics/pipe/simple{
dir = 9
},
@@ -37262,11 +35713,18 @@
},
/turf/open/floor/plasteel/black,
/area/toxins/server)
-"bET" = (
+"bAD" = (
+/obj/structure/chair/office/light,
+/obj/machinery/atmospherics/pipe/simple{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/toxins/server)
+"bAE" = (
/obj/machinery/camera{
c_tag = "Security Post - Science";
- dir = 4;
- network = list("SS13","RD")
+ dir = 4;
+ network = list("SS13","RD")
},
/obj/machinery/newscaster{
pixel_x = -30
@@ -37278,444 +35736,370 @@
dir = 8
},
/area/security/checkpoint/science)
-"bEU" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel,
-/area/security/checkpoint/science)
-"bEV" = (
+"bAF" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 8;
+ icon_state = "1-8"
},
/turf/open/floor/plasteel,
/area/security/checkpoint/science)
-"bEW" = (
-/obj/structure/chair/office/dark{
- dir = 4
- },
-/obj/effect/landmark/start/depsec/science,
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+"bAG" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
/turf/open/floor/plasteel,
/area/security/checkpoint/science)
-"bEX" = (
+"bAH" = (
/obj/structure/table,
/obj/item/weapon/book/manual/wiki/security_space_law,
/turf/open/floor/plasteel/red/side{
dir = 4
},
/area/security/checkpoint/science)
-"bEY" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bEZ" = (
+"bAI" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
/obj/structure/disposalpipe/segment{
- dir = 4
+ dir = 4;
+ icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/turf/open/floor/plasteel/white/side{
- dir = 9
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bFa" = (
-/obj/machinery/door/airlock/glass_command{
- name = "Research Director";
- req_access_txt = "30"
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"bAJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/hor)
-"bFb" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"bAK" = (
/obj/structure/disposalpipe/segment{
- dir = 4
+ dir = 8;
+ icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/hor)
-"bFc" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/hor)
-"bFd" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+ dir = 10
},
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"bAL" = (
+/obj/structure/table,
+/obj/item/device/plant_analyzer,
+/obj/item/weapon/stock_parts/cell/high/plus,
+/turf/open/floor/plating,
+/area/storage/tech)
+"bAM" = (
+/obj/structure/table,
+/obj/item/device/analyzer,
+/obj/item/device/healthanalyzer,
+/obj/machinery/light/small{
+ dir = 1
},
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/hor)
-"bFe" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
+/turf/open/floor/plating,
+/area/storage/tech)
+"bAN" = (
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bAO" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/caution/corner{
+ dir = 8
},
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/hor)
-"bFf" = (
-/obj/machinery/airalarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
+/area/hallway/primary/aft)
+"bAP" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/yellow/corner{
+ dir = 2
},
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/hor)
-"bFg" = (
-/obj/machinery/r_n_d/experimentor,
-/turf/open/floor/engine,
-/area/toxins/explab)
-"bFh" = (
+/area/hallway/primary/aft)
+"bAQ" = (
/obj/effect/landmark{
name = "blobstart"
},
/obj/effect/landmark{
name = "xeno_spawn";
- pixel_x = -1
+ pixel_x = -1
},
/turf/open/floor/engine,
/area/toxins/explab)
-"bFi" = (
-/obj/machinery/atmospherics/components/unary/thermomachine/heater{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bFj" = (
-/obj/machinery/portable_atmospherics/scrubber,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"bFk" = (
-/obj/structure/shuttle/engine/propulsion{
- icon_state = "burst_l"
- },
-/turf/open/floor/plating/airless,
-/area/shuttle/supply)
-"bFl" = (
-/obj/structure/shuttle/engine/propulsion,
-/turf/open/floor/plating/airless,
-/area/shuttle/supply)
-"bFm" = (
-/obj/structure/shuttle/engine/propulsion{
- icon_state = "burst_r"
- },
-/turf/open/floor/plating/airless,
-/area/shuttle/supply)
-"bFn" = (
+"bAR" = (
+/obj/machinery/r_n_d/experimentor,
+/turf/open/floor/engine,
+/area/toxins/explab)
+"bAS" = (
/obj/machinery/computer/security/mining{
network = list("MINE","AuxBase")
},
/obj/machinery/camera{
c_tag = "Quartermaster's Office";
- dir = 4
+ dir = 4
},
/obj/item/device/radio/intercom{
name = "Station Intercom (General)";
- pixel_y = -35
+ pixel_y = -35
},
/obj/machinery/status_display{
density = 0;
- pixel_x = -32;
- pixel_y = 0;
- supply_display = 1
+ pixel_x = -32;
+ pixel_y = 0;
+ supply_display = 1
},
/turf/open/floor/plasteel/brown{
dir = 10
},
/area/quartermaster/qm)
-"bFo" = (
+"bAT" = (
+/obj/structure/closet/jcloset,
+/turf/open/floor/plasteel,
+/area/janitor)
+"bAU" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/brown{
- dir = 2
- },
-/area/quartermaster/qm)
-"bFp" = (
-/obj/structure/table,
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/computer/stockexchange,
-/turf/open/floor/plasteel/brown{
- dir = 2
- },
-/area/quartermaster/qm)
-"bFq" = (
-/obj/structure/table,
-/obj/item/weapon/folder/yellow,
-/obj/item/weapon/pen{
- pixel_x = 4;
- pixel_y = 4
- },
-/obj/item/weapon/pen/red,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
-/turf/open/floor/plasteel/brown{
- dir = 2
+/turf/open/floor/plasteel,
+/area/janitor)
+"bAV" = (
+/obj/machinery/door/window/westleft{
+ name = "Janitoral Delivery";
+ req_access_txt = "26"
},
-/area/quartermaster/qm)
-"bFr" = (
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
+/area/janitor)
+"bAW" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/sleeper)
+"bAX" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/table,
-/obj/item/weapon/clipboard,
-/obj/item/weapon/stamp/qm{
- pixel_x = 0;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/brown{
- dir = 2
- },
-/area/quartermaster/qm)
-"bFs" = (
-/obj/structure/filingcabinet,
-/obj/machinery/light_switch{
- pixel_y = -25
- },
+/obj/item/clothing/gloves/color/latex,
+/obj/item/clothing/mask/surgical,
+/obj/item/clothing/suit/apron/surgical,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/brown{
dir = 6
},
-/area/quartermaster/qm)
-"bFt" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+/turf/open/floor/plasteel/white/side{
dir = 4
},
-/turf/open/floor/plating,
-/area/quartermaster/qm)
-"bFu" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+/area/medical/sleeper)
+"bAY" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/sleeper)
+"bAZ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/quartermaster/miningdock)
-"bFv" = (
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
+"bBa" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/quartermaster/miningdock)
-"bFw" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+"bBb" = (
+/obj/effect/landmark/start{
+ name = "Medical Doctor"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"bFx" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plasteel/white,
+/area/medical/sleeper)
+"bBc" = (
+/obj/structure/table,
+/obj/item/weapon/surgical_drapes,
+/obj/item/weapon/razor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/turf/open/floor/plating,
-/area/security/checkpoint/supply)
-"bFy" = (
-/obj/machinery/light_switch{
- pixel_y = -25
- },
-/obj/structure/closet,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+/turf/open/floor/plasteel/white/side{
+ dir = 8
},
-/turf/open/floor/plasteel/red/side{
- dir = 10
+/area/medical/sleeper)
+"bBd" = (
+/obj/structure/table,
+/obj/structure/bedsheetbin{
+ pixel_x = 2
},
-/area/security/checkpoint/supply)
-"bFz" = (
+/obj/item/clothing/suit/straight_jacket,
+/obj/item/clothing/mask/muzzle,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/turf/open/floor/plasteel/red/side,
-/area/security/checkpoint/supply)
-"bFA" = (
-/obj/machinery/requests_console{
- department = "Security";
- departmentType = 5;
- pixel_y = -30
+/turf/open/floor/plasteel/whiteblue/corner{
+ dir = 8
},
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+/area/medical/sleeper)
+"bBe" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 4
},
-/turf/open/floor/plasteel/red/side,
-/area/security/checkpoint/supply)
-"bFB" = (
+/area/medical/sleeper)
+"bBf" = (
/obj/structure/filingcabinet,
/obj/structure/reagent_dispensers/peppertank{
pixel_x = 30;
- pixel_y = 0
+ pixel_y = 0
},
/obj/machinery/newscaster{
pixel_x = 0;
- pixel_y = -32
+ pixel_y = -32
},
/obj/machinery/camera{
c_tag = "Security Post - Cargo";
- dir = 1
+ dir = 1
},
/turf/open/floor/plasteel/red/side{
dir = 6
},
/area/security/checkpoint/supply)
-"bFC" = (
+"bBg" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bBh" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d2 = 4;
+ icon_state = "2-4"
},
/turf/open/floor/plasteel/brown/corner{
dir = 8
},
/area/hallway/primary/central)
-"bFD" = (
+"bBi" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bFE" = (
+"bBj" = (
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
+ icon_state = "alarm0";
+ pixel_y = -22
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bFF" = (
+"bBk" = (
/obj/machinery/door/firedoor,
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
/obj/machinery/camera{
c_tag = "Central Primary Hallway South-West";
- dir = 1
+ dir = 1
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bFG" = (
+"bBl" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 8;
+ icon_state = "1-8"
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bFH" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 5;
- pixel_y = -32
+"bBm" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 8
+ },
+/area/medical/medbay)
+"bBn" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay)
+"bBo" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bFI" = (
-/obj/machinery/light,
+"bBp" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bFJ" = (
+"bBq" = (
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j2";
- dir = 2
+ dir = 2
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -37723,32 +36107,32 @@
},
/obj/structure/sign/directions/engineering{
pixel_x = -32;
- pixel_y = -40
+ pixel_y = -40
},
/obj/structure/sign/directions/medical{
dir = 4;
- icon_state = "direction_med";
- pixel_x = -32;
- pixel_y = -24
+ icon_state = "direction_med";
+ pixel_x = -32;
+ pixel_y = -24
},
/obj/structure/sign/directions/evac{
dir = 4;
- icon_state = "direction_evac";
- pixel_x = -32;
- pixel_y = -32
+ icon_state = "direction_evac";
+ pixel_x = -32;
+ pixel_y = -32
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bFK" = (
+"bBr" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+/obj/machinery/status_display{
+ pixel_y = -32
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bFL" = (
+"bBs" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -37757,160 +36141,168 @@
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bFM" = (
+"bBt" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/status_display{
- pixel_y = -32
+/obj/machinery/camera{
+ c_tag = "Central Primary Hallway South";
+ dir = 1
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bFN" = (
+"bBu" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/machinery/light,
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bFO" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/camera{
- c_tag = "Central Primary Hallway South";
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bFP" = (
+"bBv" = (
/obj/structure/disposalpipe/sortjunction{
dir = 8;
- icon_state = "pipe-j2s";
- sortType = 22
+ icon_state = "pipe-j2s";
+ sortType = 22
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bFQ" = (
+"bBw" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay)
+"bBx" = (
/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bFR" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 5;
- pixel_y = -32
- },
+"bBy" = (
+/obj/machinery/light,
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bFS" = (
-/obj/machinery/light,
+"bBz" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bFT" = (
+"bBA" = (
/obj/structure/cable{
d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d2 = 4;
+ icon_state = "2-4"
},
/obj/structure/disposalpipe/junction{
dir = 8;
- icon_state = "pipe-j2"
+ icon_state = "pipe-j2"
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bFU" = (
+"bBB" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
/obj/structure/disposalpipe/segment{
- dir = 4
+ dir = 8;
+ icon_state = "pipe-c"
},
/turf/open/floor/plasteel,
/area/hallway/primary/central)
-"bFV" = (
+"bBC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay)
+"bBD" = (
+/turf/open/floor/plasteel/white/side{
+ dir = 9
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"bBE" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
-/turf/open/floor/plasteel,
-/area/hallway/primary/central)
-"bFW" = (
-/obj/structure/grille,
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"bBF" = (
+/obj/machinery/portable_atmospherics/scrubber,
+/obj/machinery/airalarm{
+ frequency = 1439;
+ locked = 0;
+ pixel_y = 23
},
-/obj/structure/window/fulltile,
-/turf/open/floor/plating,
-/area/medical/sleeper)
-"bFX" = (
-/obj/structure/grille,
-/obj/structure/disposalpipe/segment{
+/obj/item/weapon/storage/firstaid/toxin,
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing)
+"bBG" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/structure/window/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/medical/sleeper)
-"bFY" = (
-/obj/structure/grille,
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock)
+"bBH" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/quartermaster/miningdock)
+"bBI" = (
+/obj/machinery/airalarm{
dir = 8;
- icon_state = "pipe-c"
+ icon_state = "alarm0";
+ pixel_x = 24
},
-/obj/structure/window/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/medical/sleeper)
-"bFZ" = (
-/obj/machinery/door/airlock/glass_medical{
- id_tag = null;
- name = "Recovery Room";
- req_access_txt = "0"
+/obj/structure/closet/wardrobe/miner,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bGa" = (
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock)
+"bBJ" = (
/obj/machinery/firealarm{
dir = 2;
- pixel_y = 24
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bGb" = (
-/obj/structure/table,
-/obj/item/stack/packageWrap,
-/obj/item/stack/packageWrap,
-/obj/item/weapon/pen,
-/obj/machinery/requests_console{
- announcementConsole = 0;
- department = "Medbay";
- departmentType = 1;
- name = "Medbay RC";
- pixel_x = 0;
- pixel_y = 30;
- pixel_z = 0
+ pixel_y = 24
},
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bGc" = (
+"bBK" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk,
/obj/machinery/light{
@@ -37918,111 +36310,112 @@
},
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bGd" = (
+"bBL" = (
+/obj/machinery/vending/medical{
+ pixel_x = -2
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay)
+"bBM" = (
+/obj/structure/table,
+/obj/item/stack/sheet/glass{
+ amount = 10
+ },
+/obj/item/device/multitool,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"bBN" = (
/turf/closed/wall,
/area/medical/cmo)
-"bGe" = (
-/obj/machinery/suit_storage_unit/cmo,
+"bBO" = (
+/obj/machinery/computer/med_data,
+/obj/machinery/airalarm{
+ frequency = 1439;
+ pixel_y = 23
+ },
/turf/open/floor/plasteel/barber,
/area/medical/cmo)
-"bGf" = (
+"bBP" = (
/obj/machinery/computer/crew,
/obj/machinery/requests_console{
announcementConsole = 1;
- department = "Chief Medical Officer's Desk";
- departmentType = 5;
- name = "Chief Medical Officer RC";
- pixel_x = 0;
- pixel_y = 32
- },
-/turf/open/floor/plasteel/barber,
-/area/medical/cmo)
-"bGg" = (
-/obj/machinery/computer/med_data,
-/obj/machinery/airalarm{
- frequency = 1439;
- pixel_y = 23
+ department = "Chief Medical Officer's Desk";
+ departmentType = 5;
+ name = "Chief Medical Officer RC";
+ pixel_x = 0;
+ pixel_y = 32
},
/turf/open/floor/plasteel/barber,
/area/medical/cmo)
-"bGh" = (
+"bBQ" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk,
/obj/machinery/light{
dir = 4;
- icon_state = "tube1"
+ icon_state = "tube1"
},
/turf/open/floor/plasteel/barber,
/area/medical/cmo)
-"bGi" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bGj" = (
+"bBR" = (
/obj/structure/reagent_dispensers/fueltank,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"bGk" = (
-/obj/machinery/r_n_d/server/core,
-/turf/open/floor/bluegrid{
- name = "Server Base";
- initial_gas_mix = "n2=500;TEMP=80"
- },
-/area/toxins/server)
-"bGl" = (
+"bBS" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
- external_pressure_bound = 120;
- initialize_directions = 1;
- internal_pressure_bound = 4000;
- on = 1;
- pressure_checks = 2;
- pump_direction = 0
+ external_pressure_bound = 120;
+ initialize_directions = 1;
+ internal_pressure_bound = 4000;
+ on = 1;
+ pressure_checks = 2;
+ pump_direction = 0
},
/turf/open/floor/bluegrid{
name = "Server Base";
- initial_gas_mix = "n2=500;TEMP=80"
+ initial_gas_mix = "n2=500;TEMP=80"
},
/area/toxins/server)
-"bGm" = (
-/obj/structure/grille,
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'SERVER ROOM'.";
- name = "SERVER ROOM";
- pixel_y = -32
- },
-/obj/machinery/atmospherics/pipe/simple{
- dir = 4
+"bBT" = (
+/obj/machinery/r_n_d/server/core,
+/turf/open/floor/bluegrid{
+ name = "Server Base";
+ initial_gas_mix = "n2=500;TEMP=80"
},
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
/area/toxins/server)
-"bGn" = (
+"bBU" = (
/obj/machinery/atmospherics/pipe/simple{
dir = 9
},
/obj/machinery/firealarm{
dir = 1;
- pixel_y = -24
+ pixel_y = -24
},
/turf/open/floor/plasteel/black,
/area/toxins/server)
-"bGo" = (
-/obj/machinery/computer/rdservercontrol,
-/turf/open/floor/plasteel/black,
+"bBV" = (
+/obj/structure/grille,
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'SERVER ROOM'.";
+ name = "SERVER ROOM";
+ pixel_y = -32
+ },
+/obj/machinery/atmospherics/pipe/simple{
+ dir = 4
+ },
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
/area/toxins/server)
-"bGp" = (
+"bBW" = (
/obj/structure/table,
/obj/item/weapon/folder/white,
/obj/item/weapon/pen,
/turf/open/floor/plasteel/black,
/area/toxins/server)
-"bGq" = (
+"bBX" = (
+/obj/machinery/computer/rdservercontrol,
+/turf/open/floor/plasteel/black,
+/area/toxins/server)
+"bBY" = (
/obj/item/device/radio/intercom{
pixel_x = -25
},
@@ -38031,68 +36424,68 @@
dir = 10
},
/area/security/checkpoint/science)
-"bGr" = (
-/obj/machinery/power/apc{
- dir = 2;
- name = "Science Security APC";
- pixel_y = -24
- },
-/obj/structure/cable,
-/turf/open/floor/plasteel/red/side,
-/area/security/checkpoint/science)
-"bGs" = (
+"bBZ" = (
/obj/item/weapon/screwdriver{
pixel_y = 10
},
/obj/item/device/radio/off,
/turf/open/floor/plasteel/red/side,
/area/security/checkpoint/science)
-"bGt" = (
-/obj/machinery/computer/secure_data,
-/obj/machinery/requests_console{
- department = "Security";
- departmentType = 5;
- pixel_y = -30
+"bCa" = (
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "Science Security APC";
+ pixel_y = -24
},
+/obj/structure/cable,
/turf/open/floor/plasteel/red/side,
/area/security/checkpoint/science)
-"bGu" = (
+"bCb" = (
/obj/structure/table,
/obj/item/weapon/paper_bin{
pixel_x = 1;
- pixel_y = 9
+ pixel_y = 9
},
/obj/item/weapon/pen,
/turf/open/floor/plasteel/red/side{
dir = 6
},
/area/security/checkpoint/science)
-"bGv" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+"bCc" = (
+/obj/machinery/computer/secure_data,
+/obj/machinery/requests_console{
+ department = "Security";
+ departmentType = 5;
+ pixel_y = -30
},
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bGw" = (
-/obj/machinery/light{
+/turf/open/floor/plasteel/red/side,
+/area/security/checkpoint/science)
+"bCd" = (
+/obj/structure/disposalpipe/sortjunction{
+ dir = 8;
+ icon_state = "pipe-j1s";
+ sortType = 15
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/turf/open/floor/plasteel/white/side{
- dir = 9
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"bCe" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
},
-/area/medical/research{
- name = "Research Division"
- })
-"bGx" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"bCf" = (
/obj/machinery/power/apc{
dir = 8;
- name = "RD Office APC";
- pixel_x = -25
+ name = "RD Office APC";
+ pixel_x = -25
},
/obj/structure/cable,
/obj/machinery/light_switch{
@@ -38101,57 +36494,57 @@
/obj/item/weapon/twohanded/required/kirbyplants/dead,
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/hor)
-"bGy" = (
-/obj/machinery/keycard_auth{
- pixel_x = 0;
- pixel_y = -24
- },
-/obj/machinery/light,
-/obj/machinery/computer/card/minor/rd,
-/turf/open/floor/plasteel/cafeteria,
-/area/crew_quarters/hor)
-"bGz" = (
+"bCg" = (
/obj/structure/table,
/obj/item/weapon/cartridge/signal/toxins,
/obj/item/weapon/cartridge/signal/toxins{
pixel_x = -4;
- pixel_y = 2
+ pixel_y = 2
},
/obj/item/weapon/cartridge/signal/toxins{
pixel_x = 4;
- pixel_y = 6
+ pixel_y = 6
},
/obj/machinery/camera{
c_tag = "Research Director's Office";
- dir = 1;
- network = list("SS13","RD")
+ dir = 1;
+ network = list("SS13","RD")
},
/obj/item/device/radio/intercom{
name = "Station Intercom (General)";
- pixel_y = -29
+ pixel_y = -29
},
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/hor)
-"bGA" = (
-/obj/structure/closet/secure_closet/RD,
+"bCh" = (
+/obj/machinery/keycard_auth{
+ pixel_x = 0;
+ pixel_y = -24
+ },
+/obj/machinery/light,
+/obj/machinery/computer/card/minor/rd,
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/hor)
-"bGB" = (
+"bCi" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 1
},
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/hor)
-"bGC" = (
-/obj/machinery/suit_storage_unit/rd,
+"bCj" = (
+/obj/structure/closet/secure_closet/RD,
/turf/open/floor/plasteel/cafeteria,
/area/crew_quarters/hor)
-"bGD" = (
+"bCk" = (
+/obj/structure/filingcabinet/chestdrawer,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/hor)
+"bCl" = (
/obj/machinery/camera{
c_tag = "Experimentor Lab Chamber";
- dir = 1;
- network = list("SS13","RD")
+ dir = 1;
+ network = list("SS13","RD")
},
/obj/machinery/light,
/obj/structure/sign/nosmoking_2{
@@ -38159,47 +36552,76 @@
},
/turf/open/floor/engine,
/area/toxins/explab)
-"bGE" = (
+"bCm" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 5
},
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"bGF" = (
+"bCn" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"bCo" = (
/obj/structure/table,
/obj/item/weapon/paper_bin{
pixel_x = 1;
- pixel_y = 9
+ pixel_y = 9
},
/turf/open/floor/plasteel,
/area/quartermaster/miningdock)
-"bGG" = (
-/obj/machinery/firealarm{
+"bCp" = (
+/obj/machinery/light{
dir = 4;
- pixel_x = 24
+ icon_state = "tube1"
},
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"bGH" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/yellow/corner{
+ dir = 2
+ },
+/area/hallway/primary/aft)
+"bCq" = (
+/turf/closed/wall,
+/area/maintenance/aft)
+"bCr" = (
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
},
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"bGI" = (
-/turf/closed/wall,
-/area/maintenance/aft)
-"bGJ" = (
+"bCs" = (
/turf/closed/wall,
/area/storage/tech)
-"bGK" = (
+"bCt" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/janitor)
+"bCu" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass{
@@ -38210,85 +36632,98 @@
dir = 8
},
/area/hallway/primary/central)
-"bGL" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass{
- name = "Central Access"
+"bCv" = (
+/turf/closed/wall,
+/area/janitor)
+"bCw" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/yellow/corner{
- dir = 2
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
},
-/area/hallway/primary/central)
-"bGM" = (
-/turf/closed/wall,
+/turf/open/floor/plasteel,
/area/janitor)
-"bGN" = (
-/obj/machinery/door/airlock{
- name = "Custodial Closet";
- req_access_txt = "26"
+"bCx" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
},
-/obj/structure/disposalpipe/segment,
/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel,
-/area/janitor)
-"bGO" = (
+/area/gateway)
+"bCy" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall,
-/area/maintenance/asmaint)
-"bGP" = (
+/area/janitor)
+"bCz" = (
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"bGQ" = (
+"bCA" = (
/obj/machinery/vending/cigarette,
/turf/open/floor/plasteel/black,
/area/hallway/primary/central)
-"bGR" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/table,
-/obj/item/weapon/surgicaldrill,
-/turf/open/floor/plasteel,
+"bCB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/door/airlock/maintenance{
+ name = "Surgery Maintenance";
+ req_access_txt = "45"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
/area/medical/sleeper)
-"bGS" = (
+"bCC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/maintenance/asmaint)
+"bCD" = (
/obj/structure/table,
-/obj/item/weapon/hemostat,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/item/weapon/retractor,
/turf/open/floor/plasteel/white/side{
dir = 2
},
/area/medical/sleeper)
-"bGT" = (
-/obj/structure/table,
-/obj/item/weapon/scalpel{
- pixel_y = 12
+"bCE" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
},
-/obj/item/weapon/circular_saw,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/white,
/area/medical/sleeper)
-"bGU" = (
-/obj/structure/table,
-/obj/item/weapon/retractor,
-/turf/open/floor/plasteel/white/side{
- dir = 2
+"bCF" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
},
-/area/medical/sleeper)
-"bGV" = (
-/obj/structure/table,
-/obj/item/weapon/cautery{
- pixel_x = 4
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
},
-/turf/open/floor/plasteel,
+/turf/open/floor/plasteel/white,
/area/medical/sleeper)
-"bGW" = (
+"bCG" = (
/obj/structure/table,
/obj/item/weapon/folder/white,
/obj/item/weapon/gun/syringe,
@@ -38296,103 +36731,191 @@
/obj/item/weapon/soap/nanotrasen,
/turf/open/floor/plasteel/white,
/area/medical/sleeper)
-"bGX" = (
+"bCH" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/whiteblue/corner{
- dir = 2
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
-/area/medical/sleeper)
-"bGY" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/medical/sleeper)
-"bGZ" = (
-/obj/structure/closet/l3closet,
/turf/open/floor/plasteel/white,
/area/medical/sleeper)
-"bHa" = (
-/obj/structure/closet/wardrobe/white/medical,
+"bCI" = (
+/obj/structure/chair/office/dark{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/wood,
+/area/library)
+"bCJ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
/turf/open/floor/plasteel/white,
/area/medical/sleeper)
-"bHb" = (
-/obj/structure/closet/secure_closet/medical3,
-/obj/machinery/airalarm{
- pixel_y = 24
+"bCK" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
},
/turf/open/floor/plasteel/white,
/area/medical/sleeper)
-"bHc" = (
+"bCL" = (
/obj/structure/closet/secure_closet/medical3,
/obj/machinery/camera{
c_tag = "Medbay Storage";
- dir = 2;
- network = list("SS13")
+ dir = 2;
+ network = list("SS13")
},
/turf/open/floor/plasteel/white,
/area/medical/sleeper)
-"bHd" = (
-/obj/structure/table,
-/obj/item/weapon/storage/box/bodybags{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/weapon/storage/box/rxglasses,
+"bCM" = (
+/obj/structure/closet/secure_closet/medical3,
+/obj/machinery/airalarm{
+ pixel_y = 24
+ },
/turf/open/floor/plasteel/white,
/area/medical/sleeper)
-"bHe" = (
+"bCN" = (
/obj/structure/disposalpipe/trunk,
/obj/machinery/disposal/bin,
/turf/open/floor/plasteel/white,
/area/medical/sleeper)
-"bHf" = (
-/turf/open/floor/plasteel/whiteblue/corner{
- dir = 8
+"bCO" = (
+/obj/structure/table,
+/obj/item/weapon/storage/box/bodybags{
+ pixel_x = 3;
+ pixel_y = 3
},
-/area/medical/medbay)
-"bHg" = (
+/obj/item/weapon/storage/box/rxglasses,
+/turf/open/floor/plasteel/white,
+/area/medical/sleeper)
+"bCP" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/medical/sleeper)
+"bCQ" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
+/area/medical/sleeper)
+"bCR" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay)
+"bCS" = (
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/iv_drip,
+/turf/open/floor/plasteel/whiteblue/corner{
+ dir = 4
+ },
+/area/medical/sleeper)
+"bCT" = (
+/obj/structure/table,
+/obj/item/weapon/storage/belt/medical{
+ pixel_x = 0;
+ pixel_y = 2
+ },
+/obj/item/weapon/storage/belt/medical{
+ pixel_x = 0;
+ pixel_y = 2
+ },
+/obj/item/weapon/storage/belt/medical{
+ pixel_x = 0;
+ pixel_y = 2
+ },
+/obj/item/clothing/neck/stethoscope,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/sleeper)
+"bCU" = (
+/obj/item/device/radio/intercom{
+ broadcasting = 0;
+ freerange = 0;
+ frequency = 1485;
+ listening = 1;
+ name = "Station Intercom (Medbay)";
+ pixel_x = -30;
+ pixel_y = 0
+ },
+/obj/machinery/camera{
+ c_tag = "Medbay South";
+ dir = 4;
+ network = list("SS13")
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay)
+"bCV" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay)
+"bCW" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ on = 1
+ },
+/turf/open/floor/plasteel/barber,
/area/medical/cmo)
-"bHh" = (
+"bCX" = (
+/obj/effect/decal/cleanable/oil,
+/obj/item/weapon/cigbutt,
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/toxins/storage)
+"bCY" = (
/turf/open/floor/plasteel/barber,
/area/medical/cmo)
-"bHi" = (
+"bCZ" = (
/obj/structure/chair/office/light,
/obj/effect/landmark/start{
name = "Chief Medical Officer"
},
/turf/open/floor/plasteel/barber,
/area/medical/cmo)
-"bHj" = (
+"bDa" = (
/obj/machinery/keycard_auth{
pixel_x = 24;
- pixel_y = 0
+ pixel_y = 0
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/barber,
/area/medical/cmo)
-"bHk" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bHl" = (
+"bDb" = (
/turf/closed/wall/r_wall,
/area/toxins/xenobiology)
-"bHm" = (
+"bDc" = (
/turf/closed/wall,
/area/toxins/storage)
-"bHn" = (
+"bDd" = (
/obj/machinery/door/firedoor/heavy,
/obj/machinery/airalarm{
dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
+ icon_state = "alarm0";
+ pixel_x = -22
},
/turf/open/floor/plasteel/white/side{
dir = 5
@@ -38400,249 +36923,180 @@
/area/medical/research{
name = "Research Division"
})
-"bHo" = (
-/obj/machinery/door/firedoor/heavy,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+"bDe" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/hallway/primary/port)
+"bDf" = (
+/obj/machinery/light_switch{
+ pixel_x = 27
},
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bHp" = (
-/obj/machinery/door/firedoor/heavy,
-/turf/open/floor/plasteel/white/side{
- dir = 9
+/obj/machinery/light/small{
+ dir = 4
},
-/area/medical/research{
- name = "Research Division"
- })
-"bHq" = (
-/obj/structure/closet,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bHr" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/toxins/storage)
+"bDg" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance{
lootcount = 3;
- name = "3maintenance loot spawner"
+ name = "3maintenance loot spawner"
},
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"bHs" = (
-/obj/item/device/multitool,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"bHt" = (
-/obj/structure/chair,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"bHu" = (
+"bDh" = (
+/obj/structure/closet,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"bDi" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'KEEP CLEAR OF DOCKING AREA'.";
- name = "KEEP CLEAR: DOCKING AREA";
- pixel_y = 32
+ name = "KEEP CLEAR: DOCKING AREA";
+ pixel_y = 32
},
/turf/open/space,
-/area/space)
-"bHv" = (
+/area/space/nearstation)
+"bDj" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/toxins/storage)
+"bDk" = (
/obj/structure/table,
/obj/item/weapon/folder/yellow,
/obj/item/weapon/pen,
/obj/machinery/requests_console{
department = "Mining";
- departmentType = 0;
- pixel_x = -30;
- pixel_y = 0
+ departmentType = 0;
+ pixel_x = -30;
+ pixel_y = 0
},
/obj/machinery/light{
dir = 8
},
/turf/open/floor/plasteel,
/area/quartermaster/miningdock)
-"bHw" = (
-/obj/structure/chair/office/dark{
- dir = 8
+"bDl" = (
+/obj/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
},
-/obj/effect/landmark/start{
- name = "Shaft Miner"
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"bHx" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
+/turf/open/floor/plasteel/white/side{
+ dir = 5
},
+/area/medical/research{
+ name = "Research Division"
+ })
+"bDm" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"bHy" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"bDn" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"bDo" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ external_pressure_bound = 101.325;
+ on = 1;
+ pressure_checks = 1
},
/turf/open/floor/plasteel,
/area/quartermaster/miningdock)
-"bHz" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Mining Maintenance";
- req_access_txt = "48"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/quartermaster/miningdock)
-"bHA" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bHB" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/power/apc{
- dir = 1;
- name = "Cargo Security APC";
- pixel_x = 1;
- pixel_y = 24
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+"bDp" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
},
-/turf/open/floor/plating,
-/area/security/checkpoint/supply)
-"bHC" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/yellow/corner{
+ dir = 2
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+/area/hallway/primary/aft)
+"bDq" = (
+/obj/structure/table,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+/obj/item/weapon/pen,
+/obj/item/key/janitor,
+/turf/open/floor/plasteel,
+/area/janitor)
+"bDr" = (
+/obj/item/weapon/restraints/legcuffs/beartrap,
+/obj/item/weapon/restraints/legcuffs/beartrap,
+/obj/item/weapon/storage/box/mousetraps,
+/obj/item/weapon/storage/box/mousetraps,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/janitor)
+"bDs" = (
+/obj/structure/reagent_dispensers/watertank,
+/turf/open/floor/plasteel,
+/area/janitor)
+"bDt" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
},
-/turf/open/floor/plating,
+/turf/closed/wall,
/area/maintenance/aft)
-"bHD" = (
+"bDu" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bHE" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
+ dir = 6
},
/turf/open/floor/plating,
-/area/maintenance/aft)
-"bHF" = (
+/area/maintenance/asmaint)
+"bDv" = (
/obj/structure/table,
/obj/item/device/flashlight{
pixel_x = 1;
- pixel_y = 5
+ pixel_y = 5
},
/obj/item/device/flashlight{
pixel_x = 1;
- pixel_y = 5
+ pixel_y = 5
},
/obj/item/device/assembly/flash/handheld,
/obj/item/device/assembly/flash/handheld,
/obj/machinery/ai_status_display{
pixel_x = -32;
- pixel_y = 0
- },
-/turf/open/floor/plating,
-/area/storage/tech)
-"bHG" = (
-/obj/structure/table,
-/obj/item/weapon/electronics/apc,
-/obj/item/weapon/electronics/airlock,
-/obj/machinery/light/small{
- dir = 1
+ pixel_y = 0
},
/turf/open/floor/plating,
/area/storage/tech)
-"bHH" = (
+"bDw" = (
/obj/structure/table,
/obj/item/weapon/screwdriver{
pixel_y = 16
@@ -38650,79 +37104,128 @@
/obj/item/weapon/wirecutters,
/turf/open/floor/plating,
/area/storage/tech)
-"bHI" = (
-/obj/machinery/airalarm{
- frequency = 1439;
- pixel_y = 23
+"bDx" = (
+/obj/structure/table,
+/obj/item/weapon/electronics/apc,
+/obj/item/weapon/electronics/airlock,
+/obj/machinery/light/small{
+ dir = 1
},
/turf/open/floor/plating,
/area/storage/tech)
-"bHJ" = (
+"bDy" = (
/obj/machinery/camera{
c_tag = "Tech Storage";
- dir = 2
+ dir = 2
},
/obj/machinery/power/apc{
dir = 1;
- name = "Tech Storage APC";
- pixel_y = 24
+ name = "Tech Storage APC";
+ pixel_y = 24
},
/obj/structure/cable{
icon_state = "0-2";
- d2 = 2
+ d2 = 2
},
/turf/open/floor/plating,
/area/storage/tech)
-"bHK" = (
-/obj/structure/table,
-/obj/item/device/analyzer,
-/obj/item/device/healthanalyzer,
-/obj/machinery/light/small{
- dir = 1
+"bDz" = (
+/obj/machinery/airalarm{
+ frequency = 1439;
+ pixel_y = 23
},
/turf/open/floor/plating,
/area/storage/tech)
-"bHL" = (
-/obj/structure/table,
-/obj/item/device/plant_analyzer,
-/obj/item/weapon/stock_parts/cell/high/plus,
-/turf/open/floor/plating,
-/area/storage/tech)
-"bHM" = (
-/turf/open/floor/plating,
-/area/storage/tech)
-"bHN" = (
+"bDA" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/door/firedoor,
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "Treatment Center APC";
+ pixel_x = 26;
+ pixel_y = 0
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/caution/corner{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
-/area/hallway/primary/aft)
-"bHO" = (
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bHP" = (
+/turf/open/floor/plating,
+/area/medical/sleeper)
+"bDB" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white/side{
+ dir = 4
+ },
+/area/medical/sleeper)
+"bDC" = (
+/obj/machinery/computer/operating,
+/turf/open/floor/plasteel/white,
+/area/medical/sleeper)
+"bDD" = (
+/obj/structure/sign/nosmoking_2{
+ pixel_x = -28
+ },
+/obj/structure/bed,
+/obj/item/weapon/bedsheet/medical,
+/turf/open/floor/plasteel/whiteblue/corner{
+ dir = 1
+ },
+/area/medical/sleeper)
+"bDE" = (
+/obj/machinery/vending/wallmed{
+ pixel_x = 28;
+ pixel_y = 0
+ },
+/obj/machinery/camera{
+ c_tag = "Medbay Recovery Room";
+ dir = 8;
+ network = list("SS13")
+ },
+/obj/machinery/iv_drip,
+/turf/open/floor/plasteel/white,
+/area/medical/sleeper)
+"bDF" = (
+/obj/structure/grille,
+/obj/machinery/door/poddoor/preopen{
+ id = "medpriv4";
+ name = "privacy door"
+ },
+/obj/structure/window/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/medical/medbay)
+"bDG" = (
/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/yellow/corner{
dir = 2
},
/area/hallway/primary/aft)
-"bHQ" = (
-/obj/structure/closet/jcloset,
-/turf/open/floor/plasteel,
-/area/janitor)
-"bHR" = (
+"bDH" = (
/obj/structure/closet/l3closet/janitor,
/obj/machinery/airalarm{
frequency = 1439;
- pixel_y = 23
+ pixel_y = 23
},
/turf/open/floor/plasteel,
/area/janitor)
-"bHS" = (
+"bDI" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay)
+"bDJ" = (
+/obj/item/weapon/storage/box/lights/mixed,
+/obj/item/weapon/storage/box/lights/mixed,
+/turf/open/floor/plasteel,
+/area/janitor)
+"bDK" = (
/obj/machinery/light_switch{
pixel_y = 28
},
@@ -38732,41 +37235,35 @@
/obj/vehicle/janicart,
/turf/open/floor/plasteel,
/area/janitor)
-"bHT" = (
-/obj/item/weapon/storage/box/lights/mixed,
-/obj/item/weapon/storage/box/lights/mixed,
+"bDL" = (
/turf/open/floor/plasteel,
/area/janitor)
-"bHU" = (
+"bDM" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel,
/area/janitor)
-"bHV" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/janitor)
-"bHW" = (
-/obj/machinery/portable_atmospherics/canister/water_vapor,
-/turf/open/floor/plasteel,
-/area/janitor)
-"bHX" = (
-/obj/machinery/door/window/westleft{
- name = "Janitoral Delivery";
- req_access_txt = "26"
+"bDN" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel,
-/area/janitor)
-"bHY" = (
+/turf/open/floor/plasteel/white,
+/area/medical/medbay)
+"bDO" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/asmaint)
+"bDP" = (
/obj/machinery/navbeacon{
codes_txt = "delivery;dir=8";
- dir = 1;
- freq = 1400;
- location = "Janitor"
+ dir = 1;
+ freq = 1400;
+ location = "Janitor"
},
/obj/structure/plasticflaps{
opacity = 1
@@ -38774,258 +37271,256 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
/area/janitor)
-"bHZ" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bIa" = (
+"bDQ" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 8;
+ icon_state = "1-8"
},
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"bIb" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/table,
-/obj/item/clothing/gloves/color/latex,
-/obj/item/clothing/mask/surgical,
-/obj/item/clothing/suit/apron/surgical,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel/white/side{
- dir = 4
- },
-/area/medical/sleeper)
-"bIc" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+"bDR" = (
/turf/open/floor/plasteel/white,
/area/medical/sleeper)
-"bId" = (
+"bDS" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/turf/open/floor/plasteel/barber,
+/area/medical/cmo)
+"bDT" = (
/obj/effect/landmark/start{
name = "Medical Doctor"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
/turf/open/floor/plasteel/white,
/area/medical/sleeper)
-"bIe" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bIf" = (
-/obj/structure/table,
-/obj/item/weapon/surgical_drapes,
-/obj/item/weapon/razor,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white/side{
- dir = 8
+"bDU" = (
+/obj/machinery/door/airlock/glass_command{
+ name = "Chief Medical Officer";
+ req_access_txt = "40"
},
-/area/medical/sleeper)
-"bIg" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/turf/closed/wall,
-/area/medical/sleeper)
-"bIh" = (
-/obj/structure/table,
-/obj/structure/bedsheetbin{
- pixel_x = 2
+/turf/open/floor/plasteel/barber,
+/area/medical/cmo)
+"bDV" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/item/clothing/suit/straight_jacket,
-/obj/item/clothing/mask/muzzle,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+/obj/structure/disposalpipe/sortjunction{
+ sortType = 10
},
-/turf/open/floor/plasteel/whiteblue/corner{
- dir = 8
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/asmaint)
+"bDW" = (
+/obj/machinery/door/airlock/glass_medical{
+ id_tag = null;
+ name = "Medbay Storage";
+ req_access_txt = "45"
},
-/area/medical/sleeper)
-"bIi" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/white,
/area/medical/sleeper)
-"bIj" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 4
+"bDX" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
},
-/area/medical/sleeper)
-"bIk" = (
-/obj/machinery/door/airlock/glass_medical{
- id_tag = null;
- name = "Medbay Storage";
- req_access_txt = "45"
+/mob/living/simple_animal/mouse,
+/turf/open/floor/plasteel/floorgrime,
+/area/toxins/storage)
+"bDY" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
},
+/turf/open/floor/plasteel/floorgrime,
+/area/toxins/storage)
+"bDZ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/white,
/area/medical/sleeper)
-"bIl" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bIm" = (
+"bEa" = (
/obj/structure/disposalpipe/segment{
dir = 1;
- icon_state = "pipe-c"
+ icon_state = "pipe-c"
},
/turf/open/floor/plasteel/white,
/area/medical/sleeper)
-"bIn" = (
+"bEb" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/toxins/storage)
+"bEc" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/toxins/storage)
+"bEd" = (
/obj/machinery/door/airlock/glass_medical{
id_tag = null;
- name = "Medbay Storage";
- req_access_txt = "45"
+ name = "Medbay Storage";
+ req_access_txt = "45"
},
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel/white,
/area/medical/sleeper)
-"bIo" = (
+"bEe" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 8
- },
-/area/medical/medbay)
-"bIp" = (
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bIq" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+"bEf" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+ dir = 10
},
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bIr" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
+/turf/open/floor/plasteel/white/side{
+ dir = 5
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+/area/medical/research{
+ name = "Research Division"
+ })
+"bEg" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/machinery/door/airlock/research{
+ name = "Toxins Storage";
+ req_access_txt = "8"
},
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bIs" = (
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
+ dir = 4
},
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bIt" = (
+/turf/open/floor/plasteel/floorgrime,
+/area/toxins/storage)
+"bEh" = (
/obj/structure/table/glass,
/obj/item/weapon/paper_bin{
pixel_x = -2;
- pixel_y = 5
+ pixel_y = 5
},
/turf/open/floor/plasteel/barber,
/area/medical/cmo)
-"bIu" = (
-/obj/structure/table/glass,
-/obj/item/weapon/folder/white,
-/obj/item/weapon/stamp/cmo,
-/obj/item/clothing/glasses/hud/health,
-/turf/open/floor/plasteel/barber,
+"bEi" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
/area/medical/cmo)
-"bIv" = (
+"bEj" = (
/obj/structure/table/glass,
/obj/item/weapon/pen,
/obj/item/clothing/neck/stethoscope,
/mob/living/simple_animal/pet/cat/Runtime,
/turf/open/floor/plasteel/barber,
/area/medical/cmo)
-"bIw" = (
+"bEk" = (
+/obj/structure/table/glass,
+/obj/item/weapon/folder/white,
+/obj/item/weapon/stamp/cmo,
+/obj/item/clothing/glasses/hud/health,
+/turf/open/floor/plasteel/barber,
+/area/medical/cmo)
+"bEl" = (
/obj/structure/disposalpipe/segment,
/obj/item/device/radio/intercom{
pixel_x = 25
},
/obj/machinery/camera{
c_tag = "Chief Medical Office";
- dir = 8;
- network = list("SS13");
- pixel_x = 0;
- pixel_y = -22
+ dir = 8;
+ network = list("SS13");
+ pixel_x = 0;
+ pixel_y = -22
},
/turf/open/floor/plasteel/barber,
/area/medical/cmo)
-"bIx" = (
+"bEm" = (
/turf/open/floor/engine,
/area/toxins/xenobiology)
-"bIy" = (
+"bEn" = (
/obj/machinery/camera{
c_tag = "Xenobiology Test Chamber";
- dir = 2;
- network = list("Xeno","RD");
- pixel_x = 0
+ dir = 2;
+ network = list("Xeno","RD");
+ pixel_x = 0
},
/obj/machinery/light{
dir = 1
},
/turf/open/floor/engine,
/area/toxins/xenobiology)
-"bIz" = (
+"bEo" = (
/obj/machinery/portable_atmospherics/canister/toxins,
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel{
name = "floor"
},
/area/toxins/storage)
-"bIA" = (
+"bEp" = (
/obj/machinery/portable_atmospherics/canister/toxins,
/obj/structure/sign/nosmoking_2{
pixel_x = 0;
- pixel_y = 32
+ pixel_y = 32
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel{
name = "floor"
},
/area/toxins/storage)
-"bIB" = (
+"bEq" = (
/obj/machinery/power/apc{
dir = 8;
- name = "Misc Research APC";
- pixel_x = -25
+ name = "Misc Research APC";
+ pixel_x = -25
},
/obj/structure/cable{
icon_state = "0-4";
- d2 = 4
+ d2 = 4
},
/turf/open/floor/plasteel/white/side{
dir = 5
@@ -39033,104 +37528,79 @@
/area/medical/research{
name = "Research Division"
})
-"bIC" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
+"bEr" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d2 = 8;
+ icon_state = "1-8"
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white,
/area/medical/research{
name = "Research Division"
})
-"bID" = (
-/turf/open/floor/plasteel/white/side{
- dir = 9
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bIE" = (
+"bEs" = (
+/turf/closed/wall,
+/area/toxins/mixing)
+"bEt" = (
/obj/machinery/vending/coffee,
/turf/open/floor/plasteel/white,
/area/medical/research{
name = "Research Division"
})
-"bIF" = (
-/turf/closed/wall,
+"bEu" = (
+/obj/structure/closet/bombcloset,
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel/white,
/area/toxins/mixing)
-"bIG" = (
+"bEv" = (
/obj/structure/closet/bombcloset,
/obj/machinery/light_switch{
pixel_x = 0;
- pixel_y = 28
+ pixel_y = 28
},
/obj/effect/turf_decal/stripes/line{
dir = 2
},
/turf/open/floor/plasteel/white,
/area/toxins/mixing)
-"bIH" = (
-/obj/structure/closet/bombcloset,
-/obj/machinery/light{
- dir = 1
+"bEw" = (
+/obj/machinery/portable_atmospherics/canister,
+/obj/item/device/radio/intercom{
+ pixel_y = 25
},
/obj/effect/turf_decal/stripes/line{
dir = 2
},
/turf/open/floor/plasteel/white,
/area/toxins/mixing)
-"bII" = (
+"bEx" = (
/obj/machinery/portable_atmospherics/canister,
/obj/structure/window/reinforced{
dir = 8
},
/obj/machinery/firealarm{
dir = 2;
- pixel_y = 24
+ pixel_y = 24
},
/obj/machinery/camera{
c_tag = "Toxins Lab West";
- dir = 2;
- network = list("SS13","RD");
- pixel_y = 0
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 2
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bIJ" = (
-/obj/machinery/portable_atmospherics/canister,
-/obj/item/device/radio/intercom{
- pixel_y = 25
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 2
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bIK" = (
-/obj/machinery/portable_atmospherics/scrubber,
-/obj/machinery/airalarm{
- frequency = 1439;
- locked = 0;
- pixel_y = 23
+ dir = 2;
+ network = list("SS13","RD");
+ pixel_y = 0
},
-/obj/item/weapon/storage/firstaid/toxin,
/obj/effect/turf_decal/stripes/line{
dir = 2
},
/turf/open/floor/plasteel/white,
/area/toxins/mixing)
-"bIL" = (
+"bEy" = (
/obj/machinery/portable_atmospherics/pump,
/obj/structure/window/reinforced{
dir = 4
@@ -39140,14 +37610,15 @@
},
/turf/open/floor/plasteel/white,
/area/toxins/mixing)
-"bIM" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+"bEz" = (
/obj/effect/turf_decal/stripes/line{
- dir = 9
+ dir = 8
},
/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bIN" = (
+/area/medical/research{
+ name = "Research Division"
+ })
+"bEA" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible,
/obj/machinery/light{
dir = 1
@@ -39157,44 +37628,51 @@
},
/turf/open/floor/plasteel/white,
/area/toxins/mixing)
-"bIO" = (
+"bEB" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible,
/obj/effect/turf_decal/stripes/line{
- dir = 5
+ dir = 9
},
/turf/open/floor/plasteel/white,
/area/toxins/mixing)
-"bIP" = (
+"bEC" = (
/turf/closed/wall/r_wall,
/area/toxins/mixing)
-"bIQ" = (
-/obj/structure/closet/crate,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 4;
- name = "4maintenance loot spawner"
+"bED" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
},
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bIR" = (
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing)
+"bEE" = (
/obj/structure/cable{
d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d2 = 4;
+ icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
/obj/structure/disposalpipe/segment{
dir = 4;
- icon_state = "pipe-c"
+ icon_state = "pipe-c"
},
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"bIS" = (
+"bEF" = (
+/obj/structure/closet/crate,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 4;
+ name = "4maintenance loot spawner"
+ },
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"bEG" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -39204,298 +37682,322 @@
},
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"bIT" = (
+"bEH" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/toxins/mixing)
+"bEI" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 8;
+ icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
/obj/structure/disposalpipe/segment{
dir = 8;
- icon_state = "pipe-c"
+ icon_state = "pipe-c"
},
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"bIU" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/toxins/mixing)
-"bIV" = (
-/obj/structure/frame/computer{
- anchored = 1
+"bEJ" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
},
-/turf/open/floor/plasteel/shuttle/white,
-/area/shuttle/abandoned)
-"bIW" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2)
+"bEK" = (
/obj/machinery/computer/security/mining{
network = list("MINE","AuxBase")
},
/obj/machinery/camera{
c_tag = "Mining Dock";
- dir = 4;
- network = list("SS13")
+ dir = 4;
+ network = list("SS13")
},
/turf/open/floor/plasteel,
/area/quartermaster/miningdock)
-"bIX" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
+"bEL" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
},
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"bIY" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing)
+"bEM" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall/r_wall,
+/area/toxins/mixing)
+"bEN" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"bIZ" = (
-/obj/machinery/airalarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
+/area/toxins/mixing)
+"bEO" = (
+/obj/structure/sign/securearea{
+ pixel_x = -32
},
-/obj/structure/closet/wardrobe/miner,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"bJa" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
},
-/turf/closed/wall,
-/area/quartermaster/miningdock)
-"bJb" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+/turf/open/floor/plasteel,
+/area/toxins/mixing)
+"bEP" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"bJc" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
+"bEQ" = (
+/obj/effect/landmark/start{
+ name = "Shaft Miner"
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock)
+"bER" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bJd" = (
-/obj/structure/disposalpipe/sortjunction{
- dir = 8;
- icon_state = "pipe-j1s";
- sortType = 15
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
/turf/open/floor/plating,
+/area/storage/tech)
+"bES" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
/area/maintenance/aft)
-"bJe" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
+"bET" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/aft)
-"bJf" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/closed/wall,
-/area/maintenance/aft)
-"bJg" = (
+/area/storage/tech)
+"bEU" = (
/obj/structure/cable{
icon_state = "0-2";
- d2 = 2
+ d2 = 2
},
/obj/structure/cable{
icon_state = "0-4";
- d2 = 4
+ d2 = 4
},
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/storage/tech)
-"bJh" = (
+"bEV" = (
/obj/structure/cable{
icon_state = "0-4";
- d2 = 4
+ d2 = 4
},
/obj/structure/cable{
d2 = 8;
- icon_state = "0-8"
+ icon_state = "0-8"
},
/obj/structure/grille,
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/storage/tech)
-"bJi" = (
+"bEW" = (
/obj/structure/cable{
icon_state = "0-4";
- d2 = 4
+ d2 = 4
},
/obj/structure/cable{
d2 = 8;
- icon_state = "0-8"
+ icon_state = "0-8"
},
/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/storage/tech)
-"bJj" = (
+"bEX" = (
+/obj/structure/table,
+/obj/item/device/aicard,
+/obj/item/weapon/aiModule/reset,
+/turf/open/floor/plating,
+/area/storage/tech)
+"bEY" = (
/obj/structure/cable{
d2 = 8;
- icon_state = "0-8"
+ icon_state = "0-8"
},
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/storage/tech)
-"bJk" = (
-/obj/structure/table,
-/obj/item/device/aicard,
-/obj/item/weapon/aiModule/reset,
-/turf/open/floor/plating,
-/area/storage/tech)
-"bJl" = (
+"bEZ" = (
/obj/structure/table,
/obj/item/stack/cable_coil{
pixel_x = -3;
- pixel_y = 3
+ pixel_y = 3
},
/obj/item/stack/cable_coil,
/obj/item/weapon/stock_parts/cell/high/plus,
/turf/open/floor/plating,
/area/storage/tech)
-"bJm" = (
+"bFa" = (
+/turf/open/floor/plating,
+/area/storage/tech)
+"bFb" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/open/floor/plating,
/area/storage/tech)
-"bJn" = (
+"bFc" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/storage/tech)
+"bFd" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/caution/corner{
dir = 8
},
/area/hallway/primary/aft)
-"bJo" = (
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bJp" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
+"bFe" = (
+/obj/machinery/door/airlock/engineering{
+ name = "Tech Storage";
+ req_access_txt = "23"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/yellow/corner{
- dir = 2
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
-/area/hallway/primary/aft)
-"bJq" = (
-/turf/open/floor/plasteel,
-/area/janitor)
-"bJr" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/storage/tech)
+"bFf" = (
/obj/structure/chair/stool,
/obj/effect/landmark/start{
name = "Janitor"
},
/turf/open/floor/plasteel,
/area/janitor)
-"bJs" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
+"bFg" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/janitor)
-"bJt" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+"bFh" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
/turf/open/floor/plasteel,
-/area/janitor)
-"bJu" = (
+/area/hallway/primary/aft)
+"bFi" = (
/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
+ dir = 4;
+ icon_state = "pipe-c"
},
/turf/open/floor/plasteel,
/area/janitor)
-"bJv" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/mob/living/simple_animal/hostile/lizard{
- name = "Wags-His-Tail";
- real_name = "Wags-His-Tail"
+"bFj" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
-/turf/open/floor/plasteel,
-/area/janitor)
-"bJw" = (
+/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,
+/turf/open/floor/plasteel/caution/corner{
+ dir = 8
+ },
+/area/hallway/primary/aft)
+"bFk" = (
/obj/item/weapon/mop,
/obj/item/weapon/reagent_containers/glass/bucket,
/turf/open/floor/plasteel,
/area/janitor)
-"bJx" = (
+"bFl" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/power/apc{
dir = 8;
- name = "Custodial Closet APC";
- pixel_x = -24
+ name = "Custodial Closet APC";
+ pixel_x = -24
},
/obj/structure/cable{
icon_state = "0-2";
- d2 = 2
+ d2 = 2
},
/turf/open/floor/plating,
/area/janitor)
-"bJy" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/structure/grille/broken,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bJz" = (
+"bFm" = (
/obj/structure/disposalpipe/sortjunction{
dir = 8;
- icon_state = "pipe-j2s";
- sortType = 6
+ icon_state = "pipe-j2s";
+ sortType = 6
},
/obj/structure/grille,
/obj/structure/window/fulltile{
@@ -39503,353 +38005,335 @@
},
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"bJA" = (
-/obj/structure/grille,
+"bFn" = (
/obj/structure/disposalpipe/segment{
- dir = 4
+ dir = 1;
+ icon_state = "pipe-c"
},
-/obj/structure/window/fulltile,
+/obj/structure/grille/broken,
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"bJB" = (
+"bFo" = (
/obj/structure/disposalpipe/segment{
dir = 2;
- icon_state = "pipe-c"
+ icon_state = "pipe-c"
},
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"bJC" = (
+"bFp" = (
+/obj/structure/grille,
/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
+ dir = 4
},
+/obj/structure/window/fulltile,
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"bJD" = (
+"bFq" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/yellow/corner{
+ dir = 2
+ },
+/area/hallway/primary/aft)
+"bFr" = (
/obj/structure/disposalpipe/segment{
- dir = 4
+ dir = 4;
+ icon_state = "pipe-c"
},
+/turf/open/floor/plating,
+/area/maintenance/asmaint)
+"bFs" = (
/obj/machinery/door/airlock/maintenance{
- name = "Surgery Maintenance";
- req_access_txt = "45"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+ name = "Custodial Maintenance";
+ req_access_txt = "26"
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/medical/sleeper)
-"bJE" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bJF" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bJG" = (
-/obj/structure/table/optable,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bJH" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bJI" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bJJ" = (
+/area/janitor)
+"bFt" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/asmaint)
+"bFu" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/medical{
name = "Operating Theatre";
- req_access_txt = "45"
+ req_access_txt = "45"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/medical/sleeper)
-"bJK" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whiteblue/side{
- dir = 8
- },
-/area/medical/sleeper)
-"bJL" = (
+"bFv" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
+ dir = 4
},
/turf/open/floor/plasteel/white,
/area/medical/sleeper)
-"bJM" = (
-/obj/machinery/airalarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
- },
+"bFw" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/machinery/iv_drip,
-/turf/open/floor/plasteel/whiteblue/corner{
- dir = 4
- },
-/area/medical/sleeper)
-"bJN" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+/turf/open/floor/plasteel/whiteblue/side{
+ dir = 8
},
-/turf/closed/wall,
/area/medical/sleeper)
-"bJO" = (
-/obj/structure/table,
-/obj/item/weapon/storage/belt/medical{
- pixel_x = 0;
- pixel_y = 2
- },
-/obj/item/weapon/storage/belt/medical{
- pixel_x = 0;
- pixel_y = 2
- },
-/obj/item/weapon/storage/belt/medical{
- pixel_x = 0;
- pixel_y = 2
- },
-/obj/item/clothing/neck/stethoscope,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+"bFx" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/maintenance/asmaint)
+"bFy" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ external_pressure_bound = 101.325;
+ on = 1;
+ pressure_checks = 1
},
/turf/open/floor/plasteel/white,
/area/medical/sleeper)
-"bJP" = (
+"bFz" = (
+/obj/machinery/airalarm{
+ dir = 1;
+ icon_state = "alarm0";
+ pixel_y = -22
+ },
/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
+ dir = 1;
+ external_pressure_bound = 101.325;
+ on = 1;
+ pressure_checks = 1
+ },
+/turf/open/floor/plasteel/white/side{
+ dir = 1
},
-/turf/open/floor/plasteel/white,
/area/medical/sleeper)
-"bJQ" = (
+"bFA" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ icon_state = "sink";
+ pixel_x = 11;
+ pixel_y = 0
},
/turf/open/floor/plasteel/white,
/area/medical/sleeper)
-"bJR" = (
-/obj/item/device/radio/intercom{
- broadcasting = 0;
- freerange = 0;
- frequency = 1485;
- listening = 1;
- name = "Station Intercom (Medbay)";
- pixel_x = -30;
- pixel_y = 0
+"bFB" = (
+/obj/structure/closet/secure_closet/medical2,
+/turf/open/floor/plasteel,
+/area/medical/sleeper)
+"bFC" = (
+/obj/structure/table,
+/obj/item/weapon/reagent_containers/food/condiment/peppermill{
+ pixel_x = 5;
+ pixel_y = -2
},
-/obj/machinery/camera{
- c_tag = "Medbay South";
- dir = 4;
- network = list("SS13")
+/obj/item/weapon/reagent_containers/food/condiment/saltshaker{
+ pixel_x = -2;
+ pixel_y = 2
},
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bJS" = (
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"bFD" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bJT" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- on = 1
+"bFE" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_Toxins = 0
},
/turf/open/floor/plasteel/barber,
/area/medical/cmo)
-"bJU" = (
+"bFF" = (
+/obj/machinery/light,
+/turf/open/floor/plasteel/white,
+/area/medical/sleeper)
+"bFG" = (
/obj/structure/chair{
dir = 1
},
/turf/open/floor/plasteel/barber,
/area/medical/cmo)
-"bJV" = (
+"bFH" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/light_switch{
pixel_x = 28;
- pixel_y = 0
+ pixel_y = 0
},
/turf/open/floor/plasteel/barber,
/area/medical/cmo)
-"bJW" = (
+"bFI" = (
/obj/machinery/airalarm{
dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
+ icon_state = "alarm0";
+ pixel_x = -22
},
/obj/machinery/light/small{
dir = 8
},
/turf/open/floor/plasteel/floorgrime,
/area/toxins/storage)
-"bJX" = (
-/turf/open/floor/plasteel/floorgrime,
-/area/toxins/storage)
-"bJY" = (
-/obj/effect/decal/cleanable/oil,
-/obj/item/weapon/cigbutt,
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+"bFJ" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet/medical,
+/turf/open/floor/plasteel/white,
+/area/medical/sleeper)
+"bFK" = (
+/obj/structure/closet/wardrobe/pjs,
+/turf/open/floor/plasteel/white,
+/area/medical/sleeper)
+"bFL" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
},
-/turf/open/floor/plasteel/floorgrime,
-/area/toxins/storage)
-"bJZ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/turf/open/floor/plasteel/floorgrime,
-/area/toxins/storage)
-"bKa" = (
-/obj/machinery/light_switch{
- pixel_x = 27
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay)
+"bFM" = (
+/obj/structure/disposalpipe/junction{
+ icon_state = "pipe-j2";
+ dir = 2
},
-/obj/machinery/light/small{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay)
+"bFN" = (
+/obj/structure/table,
+/obj/item/weapon/cartridge/medical{
+ pixel_x = -2;
+ pixel_y = 6
+ },
+/obj/item/weapon/cartridge/medical{
+ pixel_x = 6;
+ pixel_y = 3
+ },
+/obj/item/weapon/cartridge/medical,
+/obj/item/weapon/cartridge/chemistry{
+ pixel_y = 2
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/turf/open/floor/plasteel/floorgrime,
-/area/toxins/storage)
-"bKb" = (
+/turf/open/floor/plasteel/barber,
+/area/medical/cmo)
+"bFO" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/turf/closed/wall,
-/area/toxins/storage)
-"bKc" = (
-/obj/machinery/firealarm{
- dir = 8;
- pixel_x = -24
- },
+/turf/open/floor/plating,
+/area/medical/cmo)
+"bFP" = (
+/obj/machinery/computer/card/minor/cmo,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
+/turf/open/floor/plasteel/barber,
+/area/medical/cmo)
+"bFQ" = (
+/obj/structure/sign/nosmoking_2{
+ pixel_x = -32
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/white/side{
dir = 5
},
/area/medical/research{
name = "Research Division"
})
-"bKd" = (
+"bFR" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white,
/area/medical/research{
name = "Research Division"
})
-"bKe" = (
+"bFS" = (
/obj/effect/turf_decal/stripes/line{
- dir = 9
+ dir = 10
},
/turf/open/floor/plasteel/white,
/area/medical/research{
name = "Research Division"
})
-"bKf" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/toxins/mixing)
-"bKg" = (
+"bFT" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
/turf/open/floor/plasteel/white,
/area/toxins/mixing)
-"bKh" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 5
- },
+"bFU" = (
/turf/open/floor/plasteel/white,
/area/toxins/mixing)
-"bKi" = (
+"bFV" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible,
/obj/machinery/meter,
/turf/open/floor/plasteel/white,
/area/toxins/mixing)
-"bKj" = (
+"bFW" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 5
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing)
+"bFX" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 9
},
/turf/open/floor/plasteel/white,
/area/toxins/mixing)
-"bKk" = (
+"bFY" = (
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"bKl" = (
+"bFZ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
+ dir = 4
},
/turf/closed/wall,
-/area/maintenance/asmaint2)
-"bKm" = (
+/area/toxins/mixing)
+"bGa" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+ dir = 6
},
/turf/closed/wall,
-/area/toxins/mixing)
-"bKn" = (
+/area/maintenance/asmaint2)
+"bGb" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
/turf/closed/wall,
/area/toxins/mixing)
-"bKo" = (
+"bGc" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/toxins/mixing)
+"bGd" = (
/obj/machinery/doppler_array{
dir = 4
},
@@ -39860,122 +38344,139 @@
dir = 2
},
/area/toxins/mixing)
-"bKp" = (
+"bGe" = (
/turf/closed/wall,
/area/toxins/test_area)
-"bKq" = (
+"bGf" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating/airless,
/area/toxins/test_area)
-"bKr" = (
-/obj/item/weapon/scalpel,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"bKs" = (
+"bGg" = (
/obj/structure/table,
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/labor)
-"bKt" = (
+"bGh" = (
/obj/machinery/computer/shuttle/mining,
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/labor)
-"bKu" = (
+"bGi" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/quartermaster/miningdock)
-"bKv" = (
+"bGj" = (
/obj/machinery/computer/shuttle/mining,
/turf/open/floor/plasteel/brown{
dir = 9
},
/area/quartermaster/miningdock)
-"bKw" = (
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"bKx" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
+"bGk" = (
+/obj/structure/chair/stool,
+/obj/effect/landmark/start{
+ name = "Scientist"
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing)
+"bGl" = (
+/obj/item/device/assembly/prox_sensor{
+ pixel_x = -4;
+ pixel_y = 1
+ },
+/obj/item/device/assembly/prox_sensor{
+ pixel_x = 8;
+ pixel_y = 9
+ },
+/obj/item/device/assembly/prox_sensor{
+ pixel_x = 9;
+ pixel_y = -2
+ },
+/obj/item/device/assembly/prox_sensor{
+ pixel_x = 0;
+ pixel_y = 2
+ },
+/obj/structure/table/reinforced,
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing)
+"bGm" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
/turf/open/floor/plasteel,
/area/quartermaster/miningdock)
-"bKy" = (
+"bGn" = (
/obj/structure/closet/secure_closet/miner,
/turf/open/floor/plasteel,
/area/quartermaster/miningdock)
-"bKz" = (
+"bGo" = (
/obj/machinery/door/airlock/maintenance{
name = "Firefighting equipment";
- req_access_txt = "12"
+ req_access_txt = "12"
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"bKA" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bKB" = (
+"bGp" = (
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bKC" = (
+"bGq" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"bGr" = (
/obj/structure/cable{
icon_state = "0-2";
- d2 = 2
+ d2 = 2
},
/obj/structure/cable,
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/storage/tech)
-"bKD" = (
+"bGs" = (
+/obj/machinery/camera{
+ c_tag = "Secure Tech Storage";
+ dir = 2
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/storage/tech)
+"bGt" = (
/obj/structure/rack{
dir = 8;
- layer = 2.9
+ layer = 2.9
},
/obj/item/weapon/circuitboard/computer/borgupload{
pixel_x = -1;
- pixel_y = 1
+ pixel_y = 1
},
/obj/item/weapon/circuitboard/computer/aiupload{
pixel_x = 2;
- pixel_y = -2
- },
-/turf/open/floor/plasteel,
-/area/storage/tech)
-"bKE" = (
-/obj/machinery/camera{
- c_tag = "Secure Tech Storage";
- dir = 2
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ pixel_y = -2
},
/turf/open/floor/plasteel,
/area/storage/tech)
-"bKF" = (
+"bGu" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE"
+ icon_state = "shock";
+ name = "HIGH VOLTAGE"
},
/turf/closed/wall/r_wall,
/area/storage/tech)
-"bKG" = (
+"bGv" = (
/obj/structure/table,
/obj/machinery/cell_charger{
pixel_y = 5
@@ -39983,26 +38484,26 @@
/obj/item/device/multitool,
/turf/open/floor/plating,
/area/storage/tech)
-"bKH" = (
+"bGw" = (
/obj/structure/rack{
dir = 8;
- layer = 2.9
+ layer = 2.9
},
/obj/item/weapon/circuitboard/computer/pandemic{
pixel_x = -3;
- pixel_y = 3
+ pixel_y = 3
},
/obj/item/weapon/circuitboard/computer/rdconsole,
/obj/item/weapon/circuitboard/machine/rdserver{
pixel_x = 3;
- pixel_y = -3
+ pixel_y = -3
},
/obj/item/weapon/circuitboard/machine/destructive_analyzer,
/obj/item/weapon/circuitboard/machine/protolathe,
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/item/weapon/circuitboard/computer/aifixer,
/obj/item/weapon/circuitboard/computer/teleporter,
@@ -40010,20 +38511,7 @@
/obj/item/weapon/circuitboard/machine/mechfab,
/turf/open/floor/plating,
/area/storage/tech)
-"bKI" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/weapon/circuitboard/computer/mining,
-/obj/item/weapon/circuitboard/machine/autolathe{
- pixel_x = 3;
- pixel_y = -3
- },
-/obj/item/weapon/circuitboard/computer/arcade/battle,
-/turf/open/floor/plating,
-/area/storage/tech)
-"bKJ" = (
+"bGx" = (
/obj/structure/rack,
/obj/item/weapon/circuitboard/machine/telecomms/processor,
/obj/item/weapon/circuitboard/machine/telecomms/receiver,
@@ -40035,40 +38523,69 @@
},
/turf/open/floor/plating,
/area/storage/tech)
-"bKK" = (
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
+"bGy" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/yellow/corner{
- dir = 2
+/obj/item/weapon/circuitboard/computer/mining,
+/obj/item/weapon/circuitboard/machine/autolathe{
+ pixel_x = 3;
+ pixel_y = -3
},
-/area/hallway/primary/aft)
-"bKL" = (
-/obj/structure/table,
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 7
+/obj/item/weapon/circuitboard/computer/arcade/battle,
+/turf/open/floor/plating,
+/area/storage/tech)
+"bGz" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/wrench,
+/obj/item/weapon/screwdriver{
+ pixel_y = 10
},
-/obj/item/weapon/pen,
-/obj/item/key/janitor,
-/turf/open/floor/plasteel,
-/area/janitor)
-"bKM" = (
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing)
+"bGA" = (
+/obj/machinery/holopad,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing)
+"bGB" = (
/obj/structure/table,
/obj/item/weapon/grenade/chem_grenade/cleaner,
/obj/item/weapon/grenade/chem_grenade/cleaner,
/obj/item/weapon/grenade/chem_grenade/cleaner,
/obj/machinery/requests_console{
department = "Janitorial";
- departmentType = 1;
- pixel_y = -29
+ departmentType = 1;
+ pixel_y = -29
},
/obj/item/weapon/reagent_containers/spray/cleaner,
/turf/open/floor/plasteel,
/area/janitor)
-"bKN" = (
+"bGC" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/door/airlock/research{
+ name = "Toxins Launch Room Access";
+ req_access_txt = "8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing)
+"bGD" = (
+/obj/structure/janitorialcart,
+/turf/open/floor/plasteel,
+/area/janitor)
+"bGE" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 1
@@ -40076,150 +38593,167 @@
/obj/machinery/light,
/turf/open/floor/plasteel,
/area/janitor)
-"bKO" = (
-/obj/structure/janitorialcart,
-/turf/open/floor/plasteel,
-/area/janitor)
-"bKP" = (
-/obj/item/weapon/restraints/legcuffs/beartrap,
-/obj/item/weapon/restraints/legcuffs/beartrap,
-/obj/item/weapon/storage/box/mousetraps,
-/obj/item/weapon/storage/box/mousetraps,
+"bGF" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing)
+"bGG" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
/turf/open/floor/plasteel,
-/area/janitor)
-"bKQ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/janitor)
-"bKR" = (
-/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/plasteel,
-/area/janitor)
-"bKS" = (
+/area/toxins/mixing)
+"bGH" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
/obj/structure/cable{
d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d2 = 4;
+ icon_state = "2-4"
},
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"bKT" = (
+"bGI" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
+/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"bKU" = (
+"bGJ" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"bKV" = (
-/obj/structure/disposalpipe/segment,
+"bGK" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bKW" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/power/apc{
- dir = 4;
- name = "Treatment Center APC";
- pixel_x = 26;
- pixel_y = 0
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/toxins/mixing)
+"bGL" = (
+/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/toxins/mixing)
+"bGM" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock)
+"bGN" = (
/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/open/floor/plating,
-/area/medical/sleeper)
-"bKX" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/turf/open/floor/plasteel/white/side{
- dir = 4
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bGO" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
},
-/area/medical/sleeper)
-"bKY" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bKZ" = (
-/obj/machinery/computer/operating,
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bLa" = (
-/obj/structure/sign/nosmoking_2{
- pixel_x = -28
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/yellow/corner{
+ dir = 2
},
-/obj/structure/bed,
-/obj/item/weapon/bedsheet/medical,
-/turf/open/floor/plasteel/whiteblue/corner{
- dir = 1
+/area/hallway/primary/aft)
+"bGP" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/medical/sleeper)
-"bLb" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bLc" = (
-/obj/machinery/vending/wallmed{
- pixel_x = 28;
- pixel_y = 0
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
-/obj/machinery/camera{
- c_tag = "Medbay Recovery Room";
- dir = 8;
- network = list("SS13")
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/asmaint)
+"bGQ" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
-/obj/machinery/iv_drip,
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bLd" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/asmaint)
+"bGR" = (
/obj/structure/table,
/obj/item/weapon/hand_labeler,
/obj/item/weapon/gun/syringe,
/turf/open/floor/plasteel/white,
/area/medical/sleeper)
-"bLe" = (
+"bGS" = (
/obj/structure/closet/crate/freezer/surplus_limbs,
/obj/item/weapon/reagent_containers/glass/beaker/synthflesh,
/turf/open/floor/plasteel/white,
/area/medical/sleeper)
-"bLf" = (
+"bGT" = (
/obj/structure/table,
/obj/item/weapon/folder/white,
/obj/item/clothing/neck/stethoscope,
@@ -40231,269 +38765,213 @@
},
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bLg" = (
-/obj/structure/chair/office/light{
- dir = 8
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bLh" = (
+"bGU" = (
/obj/structure/closet/secure_closet/personal/patient,
/obj/machinery/button/door{
id = "medpriv4";
- name = "Privacy Shutters";
- pixel_y = 25
+ name = "Privacy Shutters";
+ pixel_y = 25
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bLi" = (
-/obj/structure/grille,
-/obj/machinery/door/poddoor/preopen{
- id = "medpriv4";
- name = "privacy door"
- },
-/obj/structure/window/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+"bGV" = (
+/obj/structure/chair/office/light{
+ dir = 8
},
-/turf/open/floor/plating,
-/area/medical/medbay)
-"bLj" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
},
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bLk" = (
+"bGW" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,
+/turf/open/floor/plating,
+/area/maintenance/asmaint)
+"bGX" = (
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
},
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bLl" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bLm" = (
-/obj/machinery/door/airlock/glass_command{
- name = "Chief Medical Officer";
- req_access_txt = "40"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
+"bGY" = (
+/obj/machinery/portable_atmospherics/scrubber/huge,
+/turf/open/floor/plasteel/floorgrime,
+/area/toxins/storage)
+"bGZ" = (
+/obj/machinery/holopad,
/turf/open/floor/plasteel/barber,
/area/medical/cmo)
-"bLn" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
+"bHa" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/open/floor/plasteel/barber,
-/area/medical/cmo)
-"bLo" = (
-/obj/machinery/holopad,
-/turf/open/floor/plasteel/barber,
+/turf/closed/wall,
/area/medical/cmo)
-"bLp" = (
+"bHb" = (
/obj/structure/disposalpipe/segment{
dir = 1;
- icon_state = "pipe-c"
+ icon_state = "pipe-c"
},
/turf/open/floor/plasteel/barber,
/area/medical/cmo)
-"bLq" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+"bHc" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27;
+ pixel_y = 0
},
-/turf/closed/wall,
-/area/medical/cmo)
-"bLr" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bLs" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/turf/open/floor/plasteel/white/side{
+ dir = 5
},
-/obj/structure/disposalpipe/sortjunction{
- sortType = 10
+/area/medical/research{
+ name = "Research Division"
+ })
+"bHd" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"bLt" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/engine,
-/area/toxins/xenobiology)
-"bLu" = (
+"bHe" = (
/obj/machinery/power/apc{
dir = 8;
- name = "Toxins Storage APC";
- pixel_x = -25
+ name = "Toxins Storage APC";
+ pixel_x = -25
},
/obj/structure/cable{
icon_state = "0-4";
- d2 = 4
+ d2 = 4
},
/obj/machinery/camera{
c_tag = "Toxins Storage";
- dir = 4;
- network = list("SS13","RD")
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/toxins/storage)
-"bLv" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ dir = 4;
+ network = list("SS13","RD")
},
/turf/open/floor/plasteel/floorgrime,
/area/toxins/storage)
-"bLw" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/effect/landmark{
- name = "xeno_spawn";
- pixel_x = -1
+"bHf" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
},
-/turf/open/floor/plasteel/floorgrime,
-/area/toxins/storage)
-"bLx" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"bHg" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing)
+"bHh" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
- on = 1
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/toxins/storage)
-"bLy" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/door/airlock/research{
- name = "Toxins Storage";
- req_access_txt = "8"
+ on = 1
},
+/turf/open/floor/plating,
+/area/storage/tech)
+"bHi" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/turf/open/floor/plasteel/floorgrime,
-/area/toxins/storage)
-"bLz" = (
+/turf/open/floor/plating,
+/area/storage/tech)
+"bHj" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/open/floor/plasteel/white/side{
- dir = 5
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
},
-/area/medical/research{
- name = "Research Division"
- })
-"bLA" = (
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bHk" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bLB" = (
-/obj/effect/turf_decal/stripes/line{
+/turf/open/floor/plasteel/caution/corner{
dir = 8
},
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bLC" = (
+/area/hallway/primary/aft)
+"bHl" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
+/turf/open/floor/plasteel/yellow/corner{
+ dir = 2
+ },
+/area/hallway/primary/aft)
+"bHm" = (
/obj/machinery/door/firedoor/heavy,
/obj/machinery/door/airlock/research{
name = "Toxins Lab";
- req_access_txt = "8"
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bLD" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
+ req_access_txt = "8"
},
/turf/open/floor/plasteel/white,
/area/toxins/mixing)
-"bLE" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bLF" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
+"bHn" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/closed/wall/r_wall,
-/area/toxins/mixing)
-"bLG" = (
-/obj/structure/sign/securearea{
- pixel_x = -32
- },
+/area/maintenance/asmaint)
+"bHo" = (
+/obj/structure/closet,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/effect/turf_decal/stripes/corner{
- dir = 1
+/turf/open/floor/plating,
+/area/maintenance/asmaint)
+"bHp" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
},
-/turf/open/floor/plasteel,
-/area/toxins/mixing)
-"bLH" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/asmaint)
+"bHq" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
-/turf/open/floor/plasteel,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/asmaint)
+"bHr" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
/area/toxins/mixing)
-"bLI" = (
+"bHs" = (
/obj/machinery/light/small{
dir = 4
},
@@ -40506,16 +38984,14 @@
},
/turf/open/floor/plasteel,
/area/toxins/mixing)
-"bLJ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/toxins/mixing)
-"bLK" = (
+"bHt" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"bHu" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
- on = 1
+ on = 1
},
/obj/item/device/radio/intercom{
pixel_y = 25
@@ -40525,34 +39001,22 @@
},
/turf/open/floor/plasteel,
/area/toxins/mixing)
-"bLL" = (
-/obj/machinery/button/massdriver{
- dir = 2;
- id = "toxinsdriver";
- pixel_y = 24
- },
-/obj/effect/landmark/event_spawn,
-/obj/effect/turf_decal/stripes/corner{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/toxins/mixing)
-"bLM" = (
+"bHv" = (
/obj/machinery/computer/security/telescreen{
desc = "Used for watching the test chamber.";
- dir = 8;
- layer = 4;
- name = "Test Chamber Telescreen";
- network = list("Toxins");
- pixel_x = 30;
- pixel_y = 0
+ dir = 8;
+ layer = 4;
+ name = "Test Chamber Telescreen";
+ network = list("Toxins");
+ pixel_x = 30;
+ pixel_y = 0
},
/obj/effect/turf_decal/stripes/line{
dir = 5
},
/turf/open/floor/plasteel,
/area/toxins/mixing)
-"bLN" = (
+"bHw" = (
/obj/item/target,
/obj/structure/window/reinforced,
/obj/effect/turf_decal/stripes/line{
@@ -40560,282 +39024,248 @@
},
/turf/open/floor/plating,
/area/toxins/test_area)
-"bLO" = (
-/obj/structure/table,
-/obj/item/weapon/storage/firstaid/regular{
- pixel_x = 6;
- pixel_y = -5
- },
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"bLP" = (
+"bHx" = (
/obj/structure/chair{
dir = 1
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/labor)
-"bLQ" = (
-/obj/item/weapon/ore/iron,
-/obj/effect/turf_decal/stripes/line{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"bLR" = (
+"bHy" = (
/obj/structure/closet/crate,
/obj/machinery/light/small{
dir = 4
},
/obj/item/device/radio/intercom{
dir = 4;
- name = "Station Intercom (General)";
- pixel_x = 27
+ name = "Station Intercom (General)";
+ pixel_x = 27
},
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel,
/area/quartermaster/miningdock)
-"bLS" = (
+"bHz" = (
+/obj/item/weapon/ore/iron,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock)
+"bHA" = (
/turf/open/floor/plasteel/brown{
dir = 8
},
/area/quartermaster/miningdock)
-"bLT" = (
-/obj/effect/landmark/start{
- name = "Shaft Miner"
+"bHB" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"bLU" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"bLV" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/structure/chair/stool,
+/mob/living/simple_animal/mouse,
/turf/open/floor/plating,
-/area/maintenance/aft)
-"bLW" = (
+/area/maintenance/asmaint)
+"bHC" = (
/obj/effect/landmark{
name = "blobstart"
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"bLX" = (
+"bHD" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/chair/stool,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bLY" = (
+"bHE" = (
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"bHF" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/wood,
+/area/crew_quarters/theatre)
+"bHG" = (
/obj/structure/rack{
dir = 8;
- layer = 2.9
+ layer = 2.9
},
/obj/item/weapon/circuitboard/computer/crew{
pixel_x = -1;
- pixel_y = 1
+ pixel_y = 1
},
/obj/item/weapon/circuitboard/computer/card{
pixel_x = 2;
- pixel_y = -2
+ pixel_y = -2
},
/obj/item/weapon/circuitboard/computer/communications{
pixel_x = 5;
- pixel_y = -5
+ pixel_y = -5
},
/obj/machinery/light/small{
dir = 8
},
/turf/open/floor/plasteel,
/area/storage/tech)
-"bLZ" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
+"bHH" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
+/turf/open/floor/plating,
/area/storage/tech)
-"bMa" = (
+"bHI" = (
/obj/machinery/door/airlock/highsecurity{
name = "Secure Tech Storage";
- req_access_txt = "19;23"
+ req_access_txt = "19;23"
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/open/floor/plating,
-/area/storage/tech)
-"bMb" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
/turf/open/floor/plating,
/area/storage/tech)
-"bMc" = (
+"bHJ" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
/obj/effect/landmark{
name = "xeno_spawn";
- pixel_x = -1
+ pixel_x = -1
},
/turf/open/floor/plating,
/area/storage/tech)
-"bMd" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+"bHK" = (
+/obj/machinery/light{
+ icon_state = "tube1";
+ dir = 8
},
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/white/side{
+ dir = 5
},
-/turf/open/floor/plating,
-/area/storage/tech)
-"bMe" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+/area/medical/research{
+ name = "Research Division"
+ })
+"bHL" = (
+/obj/machinery/camera{
+ c_tag = "Research Division South";
+ dir = 8;
+ network = list("SS13")
},
-/obj/effect/landmark{
- name = "blobstart"
+/obj/machinery/door/firedoor/heavy,
+/turf/open/floor/plasteel/white/side{
+ dir = 9
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+/area/medical/research{
+ name = "Research Division"
+ })
+"bHM" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/firedoor/heavy,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"bHN" = (
+/obj/machinery/requests_console{
+ department = "Tech storage";
+ pixel_x = 0;
+ pixel_y = -32
},
/turf/open/floor/plating,
/area/storage/tech)
-"bMf" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+"bHO" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+/obj/item/weapon/storage/toolbox/electrical{
+ pixel_x = 1;
+ pixel_y = -1
},
+/obj/item/device/multitool,
+/obj/item/clothing/glasses/meson,
+/obj/machinery/light/small,
/turf/open/floor/plating,
/area/storage/tech)
-"bMg" = (
-/obj/machinery/door/airlock/engineering{
- name = "Tech Storage";
- req_access_txt = "23"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+"bHP" = (
+/turf/open/floor/plasteel/yellow/corner{
+ dir = 2
},
+/area/hallway/primary/aft)
+"bHQ" = (
+/obj/machinery/vending/assist,
/turf/open/floor/plating,
/area/storage/tech)
-"bMh" = (
+"bHR" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+/obj/machinery/camera{
+ c_tag = "Aft Primary Hallway 2";
+ dir = 4;
+ network = list("SS13")
},
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/caution/corner{
dir = 8
},
/area/hallway/primary/aft)
-"bMi" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+"bHS" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ external_pressure_bound = 101.325;
+ on = 1;
+ pressure_checks = 1
},
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
-"bMj" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/yellow/corner{
- dir = 2
- },
-/area/hallway/primary/aft)
-"bMk" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/closed/wall,
-/area/janitor)
-"bMl" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Custodial Maintenance";
- req_access_txt = "26"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/janitor)
-"bMm" = (
-/obj/machinery/power/apc{
- dir = 8;
- name = "Medbay Maintenance APC";
- pixel_x = -24
+"bHT" = (
+/obj/structure/grille,
+/obj/machinery/door/poddoor/preopen{
+ id = "medpriv1";
+ name = "privacy door"
},
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+/obj/structure/window/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bMn" = (
+/area/medical/medbay)
+"bHU" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/grille/broken,
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"bMo" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile{
- obj_integrity = 25
+"bHV" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Medbay Maintenance APC";
+ pixel_x = -24
+ },
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
},
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"bMp" = (
+"bHW" = (
/obj/structure/disposalpipe/segment,
/obj/structure/grille,
/obj/structure/window/fulltile{
@@ -40843,105 +39273,171 @@
},
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"bMq" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bMr" = (
-/obj/structure/disposalpipe/segment,
+"bHX" = (
/obj/structure/grille,
-/obj/structure/window/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/window/fulltile{
+ obj_integrity = 25
+ },
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"bMs" = (
-/obj/structure/disposalpipe/segment,
+"bHY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay)
+"bHZ" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"bMt" = (
-/obj/structure/closet/secure_closet/medical2,
-/turf/open/floor/plasteel,
-/area/medical/sleeper)
-"bMu" = (
-/obj/machinery/airalarm{
+"bIa" = (
+/obj/structure/disposalpipe/segment{
dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
+ icon_state = "pipe-c"
},
-/obj/machinery/atmospherics/components/unary/vent_pump{
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,
+/turf/open/floor/plasteel/white,
+/area/medical/medbay)
+"bIb" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/white/side{
+ dir = 5
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"bIc" = (
+/obj/machinery/firealarm{
dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
+ pixel_y = -24
},
/turf/open/floor/plasteel/white/side{
dir = 1
},
/area/medical/sleeper)
-"bMv" = (
+"bId" = (
/obj/machinery/vending/wallmed{
pixel_y = -28
},
/obj/machinery/camera{
c_tag = "Surgery Operating";
- dir = 1;
- network = list("SS13");
- pixel_x = 22
+ dir = 1;
+ network = list("SS13");
+ pixel_x = 22
},
/obj/machinery/light,
/turf/open/floor/plasteel/white,
/area/medical/sleeper)
-"bMw" = (
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
+"bIe" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/status_display{
+ density = 0;
+ layer = 3;
+ pixel_x = -32;
+ pixel_y = 0
},
-/turf/open/floor/plasteel/white/side{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/caution/corner{
+ dir = 8
},
-/area/medical/sleeper)
-"bMx" = (
-/obj/structure/closet/crate/freezer,
-/obj/item/weapon/reagent_containers/blood/empty,
-/obj/item/weapon/reagent_containers/blood/empty,
-/obj/item/weapon/reagent_containers/blood/AMinus,
-/obj/item/weapon/reagent_containers/blood/BMinus{
- pixel_x = -4;
- pixel_y = 4
+/area/hallway/primary/aft)
+"bIf" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/item/weapon/reagent_containers/blood/BPlus{
- pixel_x = 1;
- pixel_y = 2
+/obj/machinery/doorButtons/access_button{
+ idDoor = "virology_airlock_exterior";
+ idSelf = "virology_airlock_control";
+ name = "Virology Access Button";
+ pixel_x = -24;
+ pixel_y = 0;
+ req_access_txt = "39"
},
-/obj/item/weapon/reagent_containers/blood/OMinus,
-/obj/item/weapon/reagent_containers/blood/OPlus{
- pixel_x = -2;
- pixel_y = -1
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/virology{
+ autoclose = 0;
+ frequency = 1449;
+ icon_state = "door_locked";
+ id_tag = "virology_airlock_exterior";
+ locked = 1;
+ name = "Virology Exterior Airlock";
+ req_access_txt = "39"
},
-/obj/item/weapon/reagent_containers/blood/random,
-/obj/item/weapon/reagent_containers/blood/random,
-/obj/item/weapon/reagent_containers/blood/APlus,
-/obj/item/weapon/reagent_containers/blood/random,
-/turf/open/floor/plasteel,
-/area/medical/sleeper)
-"bMy" = (
-/obj/structure/bed,
-/obj/item/weapon/bedsheet/medical,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bMz" = (
-/obj/machinery/light,
+/area/medical/virology)
+"bIg" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/sortjunction{
+ dir = 2;
+ icon_state = "pipe-j2s";
+ sortType = 13
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/asmaint)
+"bIh" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bMA" = (
-/obj/structure/closet/wardrobe/pjs,
+/area/toxins/xenobiology)
+"bIi" = (
+/obj/structure/table,
+/obj/item/weapon/storage/firstaid/o2{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/firstaid/o2,
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = -3;
+ pixel_y = -3
+ },
/turf/open/floor/plasteel/white,
/area/medical/sleeper)
-"bMB" = (
+"bIj" = (
/obj/structure/table,
/obj/machinery/light,
/obj/item/weapon/reagent_containers/spray/cleaner,
@@ -40950,582 +39446,598 @@
/obj/item/clothing/glasses/hud/health,
/turf/open/floor/plasteel/white,
/area/medical/sleeper)
-"bMC" = (
+"bIk" = (
/obj/structure/table,
-/obj/item/weapon/storage/firstaid/o2{
+/obj/machinery/requests_console{
+ announcementConsole = 0;
+ department = "Medbay";
+ departmentType = 1;
+ name = "Medbay RC";
+ pixel_x = 0;
+ pixel_y = -30;
+ pixel_z = 0
+ },
+/obj/item/weapon/storage/firstaid/fire{
pixel_x = 3;
- pixel_y = 3
+ pixel_y = 3
},
-/obj/item/weapon/storage/firstaid/o2,
+/obj/item/weapon/storage/firstaid/fire,
/obj/item/weapon/storage/firstaid/regular{
pixel_x = -3;
- pixel_y = -3
+ pixel_y = -3
},
/turf/open/floor/plasteel/white,
/area/medical/sleeper)
-"bMD" = (
+"bIl" = (
/obj/structure/table,
/obj/item/device/radio/intercom{
broadcasting = 0;
- freerange = 0;
- frequency = 1485;
- listening = 1;
- name = "Station Intercom (Medbay)";
- pixel_x = 0;
- pixel_y = -30
+ freerange = 0;
+ frequency = 1485;
+ listening = 1;
+ name = "Station Intercom (Medbay)";
+ pixel_x = 0;
+ pixel_y = -30
},
/obj/item/weapon/storage/firstaid/toxin{
pixel_x = 3;
- pixel_y = 3
+ pixel_y = 3
},
/obj/item/weapon/storage/firstaid/toxin,
/obj/item/weapon/storage/firstaid/regular{
pixel_x = -3;
- pixel_y = -3
+ pixel_y = -3
},
/turf/open/floor/plasteel/white,
/area/medical/sleeper)
-"bME" = (
-/obj/structure/table,
-/obj/machinery/requests_console{
- announcementConsole = 0;
- department = "Medbay";
- departmentType = 1;
- name = "Medbay RC";
- pixel_x = 0;
- pixel_y = -30;
- pixel_z = 0
- },
-/obj/item/weapon/storage/firstaid/fire{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/weapon/storage/firstaid/fire,
-/obj/item/weapon/storage/firstaid/regular{
- pixel_x = -3;
- pixel_y = -3
- },
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bMF" = (
-/obj/structure/table,
-/obj/item/weapon/storage/firstaid/brute{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/weapon/storage/firstaid/brute,
-/obj/item/weapon/storage/firstaid/regular{
- pixel_x = -3;
- pixel_y = -3
- },
-/turf/open/floor/plasteel/white,
-/area/medical/sleeper)
-"bMG" = (
-/obj/machinery/light,
+"bIm" = (
+/obj/machinery/light,
/obj/structure/table,
/obj/item/weapon/storage/box/beakers{
pixel_x = 2;
- pixel_y = 2
+ pixel_y = 2
},
/obj/item/weapon/storage/box/syringes,
/obj/item/weapon/reagent_containers/glass/bottle/epinephrine{
pixel_x = 7;
- pixel_y = -3
+ pixel_y = -3
},
/obj/item/weapon/reagent_containers/glass/bottle/morphine{
pixel_x = 8;
- pixel_y = -3
+ pixel_y = -3
},
/obj/item/weapon/reagent_containers/syringe{
pixel_x = 6;
- pixel_y = -3
+ pixel_y = -3
},
/turf/open/floor/plasteel/white,
/area/medical/sleeper)
-"bMH" = (
+"bIn" = (
+/obj/structure/table,
+/obj/item/weapon/storage/firstaid/brute{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/firstaid/brute,
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/sleeper)
+"bIo" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet/medical,
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bMI" = (
+"bIp" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bMJ" = (
+"bIq" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/medbay)
+"bIr" = (
/obj/machinery/door/airlock/medical{
name = "Patient Room";
- req_access_txt = "5"
+ req_access_txt = "5"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bMK" = (
-/obj/structure/disposalpipe/junction{
- icon_state = "pipe-j2";
- dir = 2
- },
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bML" = (
+"bIs" = (
/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bMM" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+/obj/machinery/door/airlock/maintenance{
+ name = "Xenobiology Maintenance";
+ req_access_txt = "55"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plating,
-/area/medical/cmo)
-"bMN" = (
-/obj/structure/table,
-/obj/item/weapon/cartridge/medical{
- pixel_x = -2;
- pixel_y = 6
+/area/toxins/xenobiology)
+"bIt" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/item/weapon/cartridge/medical{
- pixel_x = 6;
- pixel_y = 3
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
},
-/obj/item/weapon/cartridge/medical,
-/obj/item/weapon/cartridge/chemistry{
- pixel_y = 2
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/turf/open/floor/plasteel/barber,
-/area/medical/cmo)
-"bMO" = (
-/obj/machinery/computer/card/minor/cmo,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"bIu" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/turf/open/floor/plasteel/barber,
-/area/medical/cmo)
-"bMP" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
-/turf/open/floor/plasteel/barber,
-/area/medical/cmo)
-"bMQ" = (
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"bIv" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"bIw" = (
/obj/structure/closet/secure_closet/CMO,
/obj/machinery/light{
dir = 4;
- icon_state = "tube1"
+ icon_state = "tube1"
},
/turf/open/floor/plasteel/barber,
/area/medical/cmo)
-"bMR" = (
+"bIx" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE"
+ icon_state = "shock";
+ name = "HIGH VOLTAGE"
},
/turf/closed/wall/r_wall,
/area/toxins/xenobiology)
-"bMS" = (
+"bIy" = (
/obj/structure/disposaloutlet{
dir = 1
},
/obj/structure/disposalpipe/trunk,
/turf/open/floor/engine,
/area/toxins/xenobiology)
-"bMT" = (
+"bIz" = (
/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
/area/toxins/storage)
-"bMU" = (
-/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
+"bIA" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
/area/toxins/storage)
-"bMV" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
+"bIB" = (
+/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
/area/toxins/storage)
-"bMW" = (
-/obj/machinery/portable_atmospherics/scrubber/huge,
+"bIC" = (
/turf/open/floor/plasteel/floorgrime,
/area/toxins/storage)
-"bMX" = (
-/obj/structure/sign/nosmoking_2{
- pixel_x = -32
+"bID" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel/white/side{
dir = 5
},
/area/medical/research{
name = "Research Division"
})
-"bMY" = (
-/obj/structure/disposalpipe/segment,
+"bIE" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bMZ" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 10
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
},
/turf/open/floor/plasteel/white,
/area/medical/research{
name = "Research Division"
})
-"bNa" = (
-/obj/item/device/assembly/prox_sensor{
- pixel_x = -4;
- pixel_y = 1
+"bIF" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/item/device/assembly/prox_sensor{
- pixel_x = 8;
- pixel_y = 9
+/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
+/turf/open/floor/plasteel,
+/area/atmos)
+"bIG" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
},
-/obj/item/device/assembly/prox_sensor{
- pixel_x = 9;
- pixel_y = -2
+/turf/open/floor/plasteel,
+/area/atmos)
+"bIH" = (
+/obj/machinery/pipedispenser/disposal,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
-/obj/item/device/assembly/prox_sensor{
- pixel_x = 0;
- pixel_y = 2
+/turf/open/floor/plasteel,
+/area/atmos)
+"bII" = (
+/obj/item/weapon/storage/secure/safe{
+ pixel_x = 5;
+ pixel_y = 29
},
-/obj/structure/table/reinforced,
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bNb" = (
-/obj/structure/chair/stool,
-/obj/effect/landmark/start{
- name = "Scientist"
+/obj/machinery/camera{
+ c_tag = "Virology Break Room"
},
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bNc" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/wrench,
-/obj/item/weapon/screwdriver{
- pixel_y = 10
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bNd" = (
-/obj/machinery/holopad,
+/area/medical/virology)
+"bIJ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
+ dir = 4
},
/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bNe" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/area/medical/virology)
+"bIK" = (
+/obj/structure/sink{
+ icon_state = "sink";
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
},
/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bNf" = (
+/area/medical/virology)
+"bIL" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/door/airlock/research{
- name = "Toxins Launch Room Access";
- req_access_txt = "8"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bNg" = (
+/area/medical/virology)
+"bIM" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/sign/securearea{
+ pixel_x = 32
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/effect/turf_decal/stripes/line{
- dir = 8
+/turf/open/floor/plating,
+/area/maintenance/asmaint)
+"bIN" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
-/turf/open/floor/plasteel,
-/area/toxins/mixing)
-"bNh" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/turf/closed/wall/r_wall,
+/area/toxins/xenobiology)
+"bIO" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"bIP" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
+/obj/structure/chair/comfy/black,
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"bIQ" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/disposalpipe/segment,
+/obj/machinery/holopad,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/turf/open/floor/plasteel,
-/area/toxins/mixing)
-"bNi" = (
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,
-/obj/effect/turf_decal/stripes/line{
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"bIR" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/turf/open/floor/plasteel,
-/area/toxins/mixing)
-"bNj" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ external_pressure_bound = 101.325;
+ on = 1;
+ pressure_checks = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"bIS" = (
/obj/machinery/door/airlock/research{
name = "Toxins Launch Room";
- req_access_txt = "8"
+ req_access_txt = "8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/toxins/mixing)
-"bNk" = (
+"bIT" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/turf/open/floor/plasteel,
-/area/toxins/mixing)
-"bNl" = (
+/turf/open/floor/plating,
+/area/toxins/xenobiology)
+"bIU" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1;
+ scrub_Toxins = 0
},
/obj/effect/turf_decal/stripes/corner{
dir = 2
},
/turf/open/floor/plasteel,
/area/toxins/mixing)
-"bNm" = (
+"bIV" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/toxins/mixing)
+"bIW" = (
/obj/effect/turf_decal/stripes/line{
dir = 6
},
/turf/open/floor/plasteel,
/area/toxins/mixing)
-"bNn" = (
+"bIX" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'BOMB RANGE";
- name = "BOMB RANGE"
+ name = "BOMB RANGE"
},
/turf/closed/wall,
/area/toxins/test_area)
-"bNo" = (
+"bIY" = (
/obj/structure/chair,
/obj/effect/turf_decal/stripes/line{
dir = 9
},
/turf/open/floor/plating/airless,
/area/toxins/test_area)
-"bNp" = (
-/obj/item/device/flashlight/lamp,
+"bIZ" = (
+/obj/structure/chair,
/obj/effect/turf_decal/stripes/line{
- dir = 1
+ dir = 5
},
/turf/open/floor/plating/airless,
/area/toxins/test_area)
-"bNq" = (
-/obj/structure/chair,
+"bJa" = (
+/obj/item/device/flashlight/lamp,
/obj/effect/turf_decal/stripes/line{
- dir = 5
+ dir = 1
},
/turf/open/floor/plating/airless,
/area/toxins/test_area)
-"bNr" = (
-/obj/machinery/sleeper{
- icon_state = "sleeper-open";
- dir = 8
+"bJb" = (
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 4;
+ name = "Mining Dock Airlock";
+ req_access = null;
+ req_access_txt = "48";
+ shuttledocked = 1
},
-/obj/effect/decal/remains/human,
-/turf/open/floor/mineral/titanium,
-/area/shuttle/abandoned)
-"bNs" = (
+/turf/open/floor/plating,
+/area/quartermaster/miningdock)
+"bJc" = (
/obj/machinery/door/airlock/titanium{
name = "Mining Shuttle Airlock";
- req_access_txt = "48"
+ req_access_txt = "0"
},
/obj/docking_port/mobile{
dir = 8;
- dwidth = 3;
- height = 5;
- id = "mining";
- name = "mining shuttle";
- port_angle = 90;
- width = 7
+ dwidth = 3;
+ height = 5;
+ id = "mining";
+ name = "mining shuttle";
+ port_angle = 90;
+ width = 7
},
/obj/docking_port/stationary{
dir = 8;
- dwidth = 3;
- height = 5;
- id = "mining_home";
- name = "mining shuttle bay";
- width = 7
+ dwidth = 3;
+ height = 5;
+ id = "mining_home";
+ name = "mining shuttle bay";
+ width = 7
},
/turf/open/floor/plating,
/area/shuttle/labor)
-"bNt" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 4;
- name = "Mining Dock Airlock";
- req_access = null;
- req_access_txt = "48";
- shuttledocked = 1
- },
-/turf/open/floor/plating,
-/area/quartermaster/miningdock)
-"bNu" = (
+"bJd" = (
/obj/machinery/door/airlock/glass_mining{
cyclelinkeddir = 8;
- name = "Mining Dock";
- req_access_txt = "48"
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"bNv" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ name = "Mining Dock";
+ req_access_txt = "48"
},
/turf/open/floor/plasteel,
/area/quartermaster/miningdock)
-"bNw" = (
+"bJe" = (
/obj/structure/table,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bNx" = (
+"bJf" = (
/obj/structure/closet/firecloset,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bNy" = (
+"bJg" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel,
+/area/storage/tech)
+"bJh" = (
/obj/structure/rack{
dir = 8;
- layer = 2.9
+ layer = 2.9
},
/obj/item/weapon/circuitboard/computer/robotics{
pixel_x = -2;
- pixel_y = 2
+ pixel_y = 2
},
/obj/item/weapon/circuitboard/computer/mecha_control{
pixel_x = 1;
- pixel_y = -1
- },
-/turf/open/floor/plasteel,
-/area/storage/tech)
-"bNz" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ pixel_y = -1
},
/turf/open/floor/plasteel,
/area/storage/tech)
-"bNA" = (
+"bJi" = (
/obj/structure/sign/securearea,
/turf/closed/wall/r_wall,
/area/storage/tech)
-"bNB" = (
+"bJj" = (
/obj/structure/table,
/obj/item/weapon/stock_parts/subspace/analyzer,
/obj/item/weapon/stock_parts/subspace/analyzer,
/obj/item/weapon/stock_parts/subspace/analyzer,
/turf/open/floor/plating,
/area/storage/tech)
-"bNC" = (
+"bJk" = (
/obj/structure/rack{
dir = 8;
- layer = 2.9
+ layer = 2.9
},
/obj/item/weapon/circuitboard/computer/cloning{
pixel_x = 0
},
/obj/item/weapon/circuitboard/computer/med_data{
pixel_x = 3;
- pixel_y = -3
+ pixel_y = -3
},
/obj/item/weapon/circuitboard/machine/clonescanner,
/obj/item/weapon/circuitboard/machine/clonepod,
/obj/item/weapon/circuitboard/computer/scan_consolenew,
/turf/open/floor/plating,
/area/storage/tech)
-"bND" = (
+"bJl" = (
/obj/structure/rack{
dir = 8;
- layer = 2.9
+ layer = 2.9
},
-/obj/item/weapon/circuitboard/computer/secure_data{
+/obj/item/weapon/circuitboard/computer/powermonitor{
pixel_x = -2;
- pixel_y = 2
+ pixel_y = 2
},
-/obj/item/weapon/circuitboard/computer/security{
+/obj/item/weapon/circuitboard/computer/stationalert{
pixel_x = 1;
- pixel_y = -1
+ pixel_y = -1
+ },
+/obj/item/weapon/circuitboard/computer/atmos_alert{
+ pixel_x = 3;
+ pixel_y = -3
},
/turf/open/floor/plating,
/area/storage/tech)
-"bNE" = (
+"bJm" = (
/obj/structure/rack{
dir = 8;
- layer = 2.9
+ layer = 2.9
},
-/obj/item/weapon/circuitboard/computer/powermonitor{
+/obj/item/weapon/circuitboard/computer/secure_data{
pixel_x = -2;
- pixel_y = 2
+ pixel_y = 2
},
-/obj/item/weapon/circuitboard/computer/stationalert{
+/obj/item/weapon/circuitboard/computer/security{
pixel_x = 1;
- pixel_y = -1
- },
-/obj/item/weapon/circuitboard/computer/atmos_alert{
- pixel_x = 3;
- pixel_y = -3
+ pixel_y = -1
},
/turf/open/floor/plating,
/area/storage/tech)
-"bNF" = (
+"bJn" = (
/obj/machinery/light_switch{
pixel_x = 27
},
/turf/open/floor/plating,
/area/storage/tech)
-"bNG" = (
+"bJo" = (
+/turf/open/floor/plasteel/white/side{
+ dir = 1
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"bJp" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
@@ -41534,50 +40046,15 @@
dir = 8
},
/area/hallway/primary/aft)
-"bNH" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bNI" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/yellow/corner{
- dir = 2
- },
-/area/hallway/primary/aft)
-"bNJ" = (
+"bJq" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
@@ -41587,25 +40064,21 @@
},
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"bNK" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
+"bJr" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+ dir = 9
},
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bNL" = (
+/turf/open/floor/plasteel/white/side{
+ dir = 1
+ },
+/area/medical/research{
+ name = "Research Division"
+ })
+"bJs" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -41613,14 +40086,13 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"bNM" = (
+"bJt" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -41628,49 +40100,61 @@
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"bNN" = (
+"bJu" = (
+/obj/structure/light_construct{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/construction)
+"bJv" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"bNO" = (
+"bJw" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"bNP" = (
+"bJx" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/blue/corner{
+ dir = 8
+ },
+/area/hallway/primary/central)
+"bJy" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -41680,23 +40164,21 @@
},
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"bNQ" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+"bJz" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -27;
+ pixel_y = 1
},
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+/obj/machinery/light{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/caution/corner{
+ dir = 8
},
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bNR" = (
+/area/hallway/primary/aft)
+"bJA" = (
/obj/effect/landmark{
name = "blobstart"
},
@@ -41705,206 +40187,185 @@
},
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"bNS" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bNT" = (
-/obj/structure/disposalpipe/segment,
+"bJB" = (
/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bNU" = (
+/turf/open/floor/plasteel,
+/area/atmos)
+"bJC" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall/r_wall,
/area/medical/sleeper)
-"bNV" = (
+"bJD" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
/turf/closed/wall/r_wall,
/area/medical/sleeper)
-"bNW" = (
+"bJE" = (
/turf/closed/wall/r_wall,
/area/medical/medbay)
-"bNX" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
+"bJF" = (
+/obj/machinery/pipedispenser/disposal/transit_tube,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bNY" = (
+/turf/open/floor/plasteel,
+/area/atmos)
+"bJG" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bNZ" = (
+"bJH" = (
/obj/structure/cable{
icon_state = "0-2";
- d2 = 2
+ d2 = 2
},
/obj/machinery/shieldwallgen{
req_access = list(55)
},
/turf/open/floor/plating,
/area/toxins/xenobiology)
-"bOa" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/door/poddoor/preopen{
- id = "misclab";
- name = "test chamber blast door"
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/engine,
-/area/toxins/xenobiology)
-"bOb" = (
+"bJI" = (
/obj/structure/grille,
/obj/structure/cable{
icon_state = "0-2";
- d2 = 2
+ d2 = 2
},
/obj/structure/cable{
d2 = 8;
- icon_state = "0-8"
+ icon_state = "0-8"
},
/obj/structure/cable{
icon_state = "0-4";
- d2 = 4
+ d2 = 4
},
/obj/machinery/door/poddoor/preopen{
id = "misclab";
- name = "test chamber blast door"
+ name = "test chamber blast door"
},
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/engine,
/area/toxins/xenobiology)
-"bOc" = (
-/obj/machinery/door/window/southleft{
- dir = 1;
- name = "Test Chamber";
- req_access_txt = "55"
- },
+"bJJ" = (
+/obj/structure/grille,
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "0-4";
+ d2 = 4
},
/obj/machinery/door/poddoor/preopen{
id = "misclab";
- name = "test chamber blast door"
+ name = "test chamber blast door"
},
+/obj/structure/window/reinforced/fulltile,
/turf/open/floor/engine,
/area/toxins/xenobiology)
-"bOd" = (
+"bJK" = (
/obj/structure/grille,
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d2 = 8;
- icon_state = "0-8"
+ icon_state = "0-8"
},
/obj/structure/cable{
icon_state = "0-4";
- d2 = 4
+ d2 = 4
},
/obj/machinery/door/poddoor/preopen{
id = "misclab";
- name = "test chamber blast door"
+ name = "test chamber blast door"
},
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/engine,
/area/toxins/xenobiology)
-"bOe" = (
+"bJL" = (
+/obj/machinery/door/window/southleft{
+ dir = 1;
+ name = "Test Chamber";
+ req_access_txt = "55"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "misclab";
+ name = "test chamber blast door"
+ },
+/turf/open/floor/engine,
+/area/toxins/xenobiology)
+"bJM" = (
/obj/structure/grille,
/obj/structure/cable{
d2 = 8;
- icon_state = "0-8"
+ icon_state = "0-8"
},
/obj/machinery/door/poddoor/preopen{
id = "misclab";
- name = "test chamber blast door"
+ name = "test chamber blast door"
},
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/engine,
/area/toxins/xenobiology)
-"bOf" = (
+"bJN" = (
/turf/closed/wall,
/area/toxins/xenobiology)
-"bOg" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = -27;
- pixel_y = 0
+"bJO" = (
+/obj/machinery/door/airlock/research{
+ name = "Testing Lab";
+ req_access_txt = "47"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+/turf/open/floor/plasteel,
+/area/toxins/misc_lab)
+"bJP" = (
+/obj/machinery/vending/boozeomat,
+/turf/open/floor/plasteel/bar,
+/area/maintenance/aft)
+"bJQ" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
-/turf/open/floor/plasteel/white/side{
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"bJR" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/toxins/storage)
+"bJS" = (
+/turf/open/space,
+/obj/machinery/porta_turret/syndicate{
dir = 5
},
-/area/medical/research{
- name = "Research Division"
- })
-"bOh" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
+/turf/closed/wall/mineral/plastitanium{
+ dir = 1;
+ icon_state = "diagonalWall3"
},
-/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bOi" = (
+/area/shuttle/syndicate)
+"bJT" = (
/obj/machinery/vending/cigarette,
/turf/open/floor/plasteel/white,
/area/medical/research{
name = "Research Division"
})
-"bOj" = (
-/obj/structure/closet/l3closet/scientist{
- pixel_x = -2
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bOk" = (
+"bJU" = (
/obj/structure/closet/wardrobe/science_white,
/turf/open/floor/plasteel/white,
/area/toxins/mixing)
-"bOl" = (
-/obj/item/device/assembly/signaler{
- pixel_x = 0;
- pixel_y = 8
- },
-/obj/item/device/assembly/signaler{
- pixel_x = -8;
- pixel_y = 5
- },
-/obj/item/device/assembly/signaler{
- pixel_x = 6;
- pixel_y = 5
- },
-/obj/item/device/assembly/signaler{
- pixel_x = -2;
- pixel_y = -2
+"bJV" = (
+/obj/structure/closet/l3closet/scientist{
+ pixel_x = -2
},
-/obj/structure/table/reinforced,
/turf/open/floor/plasteel/white,
/area/toxins/mixing)
-"bOm" = (
+"bJW" = (
/obj/item/device/transfer_valve{
pixel_x = -5
},
@@ -41925,77 +40386,88 @@
},
/obj/machinery/requests_console{
department = "Science";
- departmentType = 2;
- name = "Science Requests Console";
- pixel_x = 0;
- pixel_y = -30
+ departmentType = 2;
+ name = "Science Requests Console";
+ pixel_x = 0;
+ pixel_y = -30
},
/obj/structure/table/reinforced,
/turf/open/floor/plasteel/white,
/area/toxins/mixing)
-"bOn" = (
+"bJX" = (
+/obj/item/device/assembly/signaler{
+ pixel_x = 0;
+ pixel_y = 8
+ },
+/obj/item/device/assembly/signaler{
+ pixel_x = -8;
+ pixel_y = 5
+ },
+/obj/item/device/assembly/signaler{
+ pixel_x = 6;
+ pixel_y = 5
+ },
+/obj/item/device/assembly/signaler{
+ pixel_x = -2;
+ pixel_y = -2
+ },
+/obj/structure/table/reinforced,
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing)
+"bJY" = (
+/obj/structure/tank_dispenser,
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing)
+"bJZ" = (
/obj/item/device/assembly/timer{
pixel_x = 5;
- pixel_y = 4
+ pixel_y = 4
},
/obj/item/device/assembly/timer{
pixel_x = -4;
- pixel_y = 2
+ pixel_y = 2
},
/obj/item/device/assembly/timer{
pixel_x = 6;
- pixel_y = -4
+ pixel_y = -4
},
/obj/item/device/assembly/timer{
pixel_x = 0;
- pixel_y = 0
+ pixel_y = 0
},
/obj/structure/table/reinforced,
/turf/open/floor/plasteel/white,
/area/toxins/mixing)
-"bOo" = (
-/obj/structure/tank_dispenser,
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bOp" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bOq" = (
+"bKa" = (
/obj/machinery/power/apc{
dir = 4;
- name = "Toxins Lab APC";
- pixel_x = 26;
- pixel_y = 0
+ name = "Toxins Lab APC";
+ pixel_x = 26;
+ pixel_y = 0
},
/obj/structure/cable,
/turf/open/floor/plasteel/white,
/area/toxins/mixing)
-"bOr" = (
-/obj/effect/turf_decal/stripes/corner{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/toxins/mixing)
-"bOs" = (
+"bKb" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel,
/area/toxins/mixing)
-"bOt" = (
+"bKc" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/toxins/mixing)
+"bKd" = (
/obj/machinery/camera{
c_tag = "Toxins Launch Room Access";
- dir = 1
+ dir = 1
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/stripes/corner{
@@ -42003,28 +40475,28 @@
},
/turf/open/floor/plasteel,
/area/toxins/mixing)
-"bOu" = (
+"bKe" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/turf/open/floor/plating,
+/area/toxins/mixing)
+"bKf" = (
/obj/machinery/door/window/southleft{
name = "Mass Driver Door";
- req_access_txt = "7"
+ req_access_txt = "7"
},
/turf/open/floor/plasteel/loadingarea,
/area/toxins/mixing)
-"bOv" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/turf/open/floor/plating,
-/area/toxins/mixing)
-"bOw" = (
+"bKg" = (
+/turf/open/floor/plating/airless,
+/area/toxins/test_area)
+"bKh" = (
/obj/effect/turf_decal/stripes/line{
dir = 9
},
/turf/open/floor/plating/airless,
/area/toxins/test_area)
-"bOx" = (
-/turf/open/floor/plating/airless,
-/area/toxins/test_area)
-"bOy" = (
+"bKi" = (
/obj/structure/chair{
dir = 8
},
@@ -42033,46 +40505,46 @@
},
/turf/open/floor/plating/airless,
/area/toxins/test_area)
-"bOz" = (
-/obj/item/weapon/ore/silver,
-/obj/item/weapon/ore/silver,
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plasteel,
-/area/quartermaster/miningdock)
-"bOA" = (
+"bKj" = (
/obj/machinery/camera{
c_tag = "Mining Dock External";
- dir = 8
+ dir = 8
},
/obj/structure/reagent_dispensers/fueltank,
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
/area/quartermaster/miningdock)
-"bOB" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0
+"bKk" = (
+/obj/item/weapon/ore/silver,
+/obj/item/weapon/ore/silver,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
},
-/turf/closed/wall,
+/turf/open/floor/plasteel,
/area/quartermaster/miningdock)
-"bOC" = (
+"bKl" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plasteel/brown{
dir = 10
},
/area/quartermaster/miningdock)
-"bOD" = (
+"bKm" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 0
+ },
+/turf/closed/wall,
+/area/quartermaster/miningdock)
+"bKn" = (
/obj/structure/rack{
dir = 1
},
/obj/item/weapon/storage/toolbox/mechanical{
pixel_x = -2;
- pixel_y = -1
+ pixel_y = -1
},
/obj/item/weapon/pickaxe{
pixel_x = 5
@@ -42082,47 +40554,43 @@
},
/turf/open/floor/plasteel,
/area/quartermaster/miningdock)
-"bOE" = (
-/obj/structure/closet/crate,
+"bKo" = (
+/obj/machinery/light,
/turf/open/floor/plasteel,
/area/quartermaster/miningdock)
-"bOF" = (
-/obj/machinery/light,
+"bKp" = (
+/obj/structure/closet/crate,
/turf/open/floor/plasteel,
/area/quartermaster/miningdock)
-"bOG" = (
+"bKq" = (
/obj/machinery/mineral/equipment_vendor,
/turf/open/floor/plasteel,
/area/quartermaster/miningdock)
-"bOH" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/maintenance/aft)
-"bOI" = (
+"bKr" = (
/obj/structure/cable{
icon_state = "0-4";
- d2 = 4
+ d2 = 4
},
/obj/structure/cable,
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/storage/tech)
-"bOJ" = (
+"bKs" = (
/obj/structure/cable{
icon_state = "0-4";
- d2 = 4
+ d2 = 4
},
/obj/structure/cable{
d2 = 8;
- icon_state = "0-8"
+ icon_state = "0-8"
},
/obj/structure/grille,
/obj/structure/cable,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/storage/tech)
-"bOK" = (
+"bKt" = (
/obj/structure/table,
/obj/item/weapon/stock_parts/micro_laser,
/obj/item/weapon/stock_parts/manipulator,
@@ -42136,168 +40604,145 @@
/obj/item/weapon/stock_parts/micro_laser/high,
/turf/open/floor/plating,
/area/storage/tech)
-"bOL" = (
+"bKu" = (
/obj/structure/table,
/obj/item/weapon/stock_parts/subspace/amplifier,
/obj/item/weapon/stock_parts/subspace/amplifier,
/obj/item/weapon/stock_parts/subspace/amplifier,
/turf/open/floor/plating,
/area/storage/tech)
-"bOM" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/open/floor/plating,
-/area/storage/tech)
-"bON" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+"bKv" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
},
/turf/open/floor/plating,
-/area/storage/tech)
-"bOO" = (
+/area/maintenance/aft)
+"bKw" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/closed/wall,
-/area/storage/tech)
-"bOP" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/caution/corner{
- dir = 8
- },
-/area/hallway/primary/aft)
-"bOQ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bOR" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
-/turf/open/floor/plasteel/yellow/corner{
- dir = 2
+/area/maintenance/asmaint)
+"bKx" = (
+/obj/structure/closet/crate,
+/obj/effect/landmark{
+ name = "blobstart"
},
-/area/hallway/primary/aft)
-"bOS" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/turf/closed/wall,
-/area/maintenance/asmaint)
-"bOT" = (
+/turf/open/floor/plating,
+/area/construction)
+"bKy" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/closed/wall/r_wall,
/area/maintenance/asmaint)
-"bOU" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/closed/wall/r_wall,
-/area/maintenance/asmaint)
-"bOV" = (
-/obj/structure/closet,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bOW" = (
+"bKz" = (
/obj/structure/reagent_dispensers/watertank,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"bOX" = (
-/obj/structure/reagent_dispensers/fueltank,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
+"bKA" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bOY" = (
+/area/construction)
+"bKB" = (
/obj/machinery/meter,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"bOZ" = (
+"bKC" = (
+/obj/structure/reagent_dispensers/fueltank,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"bPa" = (
+"bKD" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 4;
+ icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"bPb" = (
+"bKE" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/maintenance/asmaint)
+"bKF" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/storage/box,
+/obj/item/weapon/storage/box,
+/obj/item/weapon/storage/box,
+/obj/item/weapon/hand_labeler,
+/obj/item/weapon/hand_labeler,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bKG" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
/obj/structure/sign/securearea{
pixel_x = 0;
- pixel_y = -32
+ pixel_y = -32
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"bPc" = (
+"bKH" = (
/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
+ dir = 4
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"bPd" = (
+"bKI" = (
/obj/structure/disposalpipe/sortjunction{
dir = 8;
- icon_state = "pipe-j1s";
- sortType = 11
+ icon_state = "pipe-j1s";
+ sortType = 11
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -42305,172 +40750,186 @@
},
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"bPe" = (
+"bKJ" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"bPf" = (
+"bKK" = (
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "Medbay APC";
+ pixel_x = 24;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/medical/medbay)
+"bKL" = (
/obj/structure/disposalpipe/segment{
dir = 2;
- icon_state = "pipe-c"
+ icon_state = "pipe-c"
},
/obj/structure/cable{
d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d2 = 8;
+ icon_state = "2-8"
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"bPg" = (
-/obj/effect/decal/cleanable/cobweb/cobweb2,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/power/apc{
- dir = 4;
- name = "Medbay APC";
- pixel_x = 24;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/medical/medbay)
-"bPh" = (
+"bKM" = (
/obj/machinery/vending/wallmed{
pixel_y = 28
},
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
- on = 1
+ on = 1
},
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bPi" = (
+"bKN" = (
/obj/machinery/door/airlock/medical{
name = "Patient Room 2";
- req_access_txt = "5"
+ req_access_txt = "5"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bPj" = (
+"bKO" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bPk" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+"bKP" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/window/westleft{
+ name = "Delivery Desk";
+ req_access_txt = "50"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/turf/closed/wall,
-/area/medical/medbay)
-"bPl" = (
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bKQ" = (
/obj/structure/rack{
dir = 1
},
/obj/effect/spawner/lootdrop/maintenance{
lootcount = 2;
- name = "2maintenance loot spawner"
+ name = "2maintenance loot spawner"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"bPm" = (
+"bKR" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/medical/medbay)
+"bKS" = (
/obj/machinery/power/apc{
dir = 1;
- name = "CM Office APC";
- pixel_y = 24
+ name = "CM Office APC";
+ pixel_y = 24
},
/obj/structure/cable{
icon_state = "0-2";
- d2 = 2
+ d2 = 2
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plating,
/area/medical/cmo)
-"bPn" = (
+"bKT" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"bPo" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+"bKU" = (
+/obj/machinery/door/airlock/engineering{
+ name = "Construction Area";
+ req_access_txt = "32"
},
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bPp" = (
-/obj/item/weapon/wrench,
+/area/construction)
+"bKV" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/effect/turf_decal/stripes/line{
- dir = 2
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
-"bPq" = (
-/obj/machinery/computer/security/telescreen{
- name = "Test Chamber Moniter";
- network = list("Xeno");
- pixel_x = 0;
- pixel_y = 2
+/area/atmos)
+"bKW" = (
+/obj/item/weapon/wrench,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/table/reinforced,
/obj/effect/turf_decal/stripes/line{
dir = 2
},
/turf/open/floor/plasteel,
/area/toxins/xenobiology)
-"bPr" = (
+"bKX" = (
/obj/machinery/button/door{
id = "misclab";
- name = "Test Chamber Blast Doors";
- pixel_x = 0;
- pixel_y = -2;
- req_access_txt = "55"
+ name = "Test Chamber Blast Doors";
+ pixel_x = 0;
+ pixel_y = -2;
+ req_access_txt = "55"
},
/obj/structure/table/reinforced,
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
/obj/structure/window/reinforced{
dir = 4
@@ -42480,17 +40939,20 @@
},
/turf/open/floor/plasteel,
/area/toxins/xenobiology)
-"bPs" = (
-/obj/machinery/door/window/southleft{
- name = "Test Chamber";
- req_access_txt = "55"
+"bKY" = (
+/obj/machinery/computer/security/telescreen{
+ name = "Test Chamber Moniter";
+ network = list("Xeno");
+ pixel_x = 0;
+ pixel_y = 2
},
+/obj/structure/table/reinforced,
/obj/effect/turf_decal/stripes/line{
dir = 2
},
/turf/open/floor/plasteel,
/area/toxins/xenobiology)
-"bPt" = (
+"bKZ" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 1
@@ -42503,7 +40965,28 @@
},
/turf/open/floor/plasteel,
/area/toxins/xenobiology)
-"bPu" = (
+"bLa" = (
+/obj/machinery/door/window/southleft{
+ name = "Test Chamber";
+ req_access_txt = "55"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/toxins/xenobiology)
+"bLb" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plasteel,
+/area/toxins/xenobiology)
+"bLc" = (
/obj/item/clothing/mask/gas,
/obj/item/clothing/mask/gas,
/obj/item/clothing/mask/gas,
@@ -42515,125 +40998,128 @@
},
/turf/open/floor/plasteel,
/area/toxins/xenobiology)
-"bPv" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+"bLd" = (
+/obj/structure/sink{
+ icon_state = "sink";
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
+ },
+/obj/machinery/doorButtons/access_button{
+ idDoor = "virology_airlock_interior";
+ idSelf = "virology_airlock_control";
+ name = "Virology Access Button";
+ pixel_x = 8;
+ pixel_y = -28;
+ req_access_txt = "39"
},
/obj/effect/turf_decal/stripes/line{
- dir = 2
+ dir = 10
},
-/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
-"bPw" = (
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"bLe" = (
/obj/structure/sign/biohazard,
/turf/closed/wall,
/area/toxins/xenobiology)
-"bPx" = (
-/obj/machinery/light{
- icon_state = "tube1";
- dir = 8
+"bLf" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/white/side{
- dir = 5
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ on = 1
},
-/area/medical/research{
- name = "Research Division"
- })
-"bPy" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/firedoor/heavy,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bPz" = (
-/obj/machinery/camera{
- c_tag = "Research Division South";
- dir = 8;
- network = list("SS13")
+/area/medical/virology)
+"bLg" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
},
-/obj/machinery/door/firedoor/heavy,
-/turf/open/floor/plasteel/white/side{
- dir = 9
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
},
-/area/medical/research{
- name = "Research Division"
- })
-"bPA" = (
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"bLh" = (
/obj/structure/sign/fire,
/turf/closed/wall,
/area/medical/research{
name = "Research Division"
})
-"bPB" = (
+"bLi" = (
/obj/structure/sign/nosmoking_2{
pixel_x = -32
},
/turf/open/floor/plasteel/white,
/area/toxins/mixing)
-"bPC" = (
-/obj/machinery/mass_driver{
- dir = 4;
- id = "toxinsdriver"
- },
-/turf/open/floor/plating,
-/area/toxins/mixing)
-"bPD" = (
+"bLj" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
- pixel_y = -32
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 0;
+ pixel_y = -32
},
/turf/open/floor/plating,
/area/toxins/mixing)
-"bPE" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
+"bLk" = (
+/obj/machinery/mass_driver{
+ dir = 4;
+ id = "toxinsdriver"
},
/turf/open/floor/plating,
/area/toxins/mixing)
-"bPF" = (
+"bLl" = (
/obj/machinery/door/poddoor{
id = "toxinsdriver";
- name = "toxins launcher bay door"
+ name = "toxins launcher bay door"
},
/turf/open/floor/plating,
/area/toxins/mixing)
-"bPG" = (
+"bLm" = (
/obj/effect/turf_decal/stripes/line{
- dir = 8
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/toxins/mixing)
+"bLn" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
},
/turf/open/floor/plating/airless,
/area/toxins/test_area)
-"bPH" = (
+"bLo" = (
/obj/effect/turf_decal/stripes/line{
- dir = 4
+ dir = 8
},
/turf/open/floor/plating/airless,
/area/toxins/test_area)
-"bPI" = (
+"bLp" = (
/obj/item/device/radio/beacon,
/turf/open/floor/plating/airless,
/area/toxins/test_area)
-"bPJ" = (
+"bLq" = (
+/turf/closed/indestructible{
+ desc = "A wall impregnated with Fixium, able to withstand massive explosions with ease";
+ icon_state = "riveted";
+ name = "hyper-reinforced wall"
+ },
+/area/toxins/test_area)
+"bLr" = (
/obj/machinery/camera{
active_power_usage = 0;
- c_tag = "Bomb Test Site";
- desc = "A specially-reinforced camera with a long lasting battery, used to monitor the bomb testing site.";
- dir = 8;
- invuln = 1;
- light = null;
- name = "Hardened Bomb-Test Camera";
- network = list("Toxins");
- use_power = 0
+ c_tag = "Bomb Test Site";
+ desc = "A specially-reinforced camera with a long lasting battery, used to monitor the bomb testing site.";
+ dir = 8;
+ invuln = 1;
+ light = null;
+ name = "Hardened Bomb-Test Camera";
+ network = list("Toxins");
+ use_power = 0
},
/obj/item/target/alien{
anchored = 1
@@ -42643,48 +41129,41 @@
},
/turf/open/floor/plating{
luminosity = 2;
- initial_gas_mix = "o2=0.01;n2=0.01"
- },
-/area/toxins/test_area)
-"bPK" = (
-/turf/closed/indestructible{
- desc = "A wall impregnated with Fixium, able to withstand massive explosions with ease";
- icon_state = "riveted";
- name = "hyper-reinforced wall"
+ initial_gas_mix = "o2=0.01;n2=0.01"
},
/area/toxins/test_area)
-"bPL" = (
-/obj/structure/shuttle/engine/heater,
-/turf/open/floor/plating,
-/area/shuttle/labor)
-"bPM" = (
+"bLs" = (
/obj/structure/ore_box,
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/labor)
-"bPN" = (
+"bLt" = (
+/obj/structure/shuttle/engine/heater,
+/turf/open/floor/plating,
+/area/shuttle/labor)
+"bLu" = (
/obj/structure/rack{
dir = 8;
- layer = 2.9
+ layer = 2.9
},
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bPO" = (
+"bLv" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bPP" = (
+"bLw" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bPQ" = (
+"bLx" = (
/obj/structure/table,
/obj/item/weapon/stock_parts/subspace/transmitter,
/obj/item/weapon/stock_parts/subspace/transmitter,
@@ -42693,17 +41172,7 @@
/obj/item/weapon/stock_parts/subspace/treatment,
/turf/open/floor/plating,
/area/storage/tech)
-"bPR" = (
-/obj/structure/table,
-/obj/item/weapon/stock_parts/subspace/filter,
-/obj/item/weapon/stock_parts/subspace/filter,
-/obj/item/weapon/stock_parts/subspace/filter,
-/obj/item/weapon/stock_parts/subspace/filter,
-/obj/item/weapon/stock_parts/subspace/filter,
-/obj/machinery/light/small,
-/turf/open/floor/plating,
-/area/storage/tech)
-"bPS" = (
+"bLy" = (
/obj/structure/table,
/obj/item/weapon/stock_parts/subspace/ansible,
/obj/item/weapon/stock_parts/subspace/ansible,
@@ -42713,144 +41182,143 @@
/obj/item/weapon/stock_parts/subspace/crystal,
/turf/open/floor/plating,
/area/storage/tech)
-"bPT" = (
+"bLz" = (
+/obj/structure/table,
+/obj/item/weapon/stock_parts/subspace/filter,
+/obj/item/weapon/stock_parts/subspace/filter,
+/obj/item/weapon/stock_parts/subspace/filter,
+/obj/item/weapon/stock_parts/subspace/filter,
+/obj/item/weapon/stock_parts/subspace/filter,
+/obj/machinery/light/small,
+/turf/open/floor/plating,
+/area/storage/tech)
+"bLA" = (
/obj/structure/rack{
dir = 8;
- layer = 2.9
+ layer = 2.9
},
/obj/item/weapon/storage/toolbox/electrical{
pixel_x = 1;
- pixel_y = -1
+ pixel_y = -1
},
/obj/item/clothing/gloves/color/yellow,
/obj/item/device/t_scanner,
/obj/item/device/multitool,
/turf/open/floor/plating,
/area/storage/tech)
-"bPU" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
+"bLB" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"bLC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
},
-/obj/item/weapon/storage/toolbox/electrical{
- pixel_x = 1;
- pixel_y = -1
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
-/obj/item/device/multitool,
-/obj/item/clothing/glasses/meson,
-/obj/machinery/light/small,
/turf/open/floor/plating,
-/area/storage/tech)
-"bPV" = (
-/obj/machinery/requests_console{
- department = "Tech storage";
- pixel_x = 0;
- pixel_y = -32
+/area/construction)
+"bLD" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
-/turf/open/floor/plating,
-/area/storage/tech)
-"bPW" = (
-/obj/machinery/vending/assist,
-/turf/open/floor/plating,
+/turf/closed/wall,
/area/storage/tech)
-"bPX" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/camera{
- c_tag = "Aft Primary Hallway 2";
- dir = 4;
- network = list("SS13")
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/caution/corner{
- dir = 8
- },
-/area/hallway/primary/aft)
-"bPY" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+"bLE" = (
+/turf/open/floor/plasteel/grimy,
+/area/security/detectives_office)
+"bLF" = (
+/obj/structure/table/reinforced,
+/obj/item/device/destTagger,
+/obj/item/device/destTagger,
+/obj/machinery/computer/stockexchange,
/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bPZ" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
+/area/quartermaster/office)
+"bLG" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bQa" = (
+/turf/open/floor/plasteel/grimy,
+/area/security/detectives_office)
+"bLH" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plasteel/caution{
dir = 5
},
/area/hallway/primary/aft)
-"bQb" = (
-/turf/closed/wall/r_wall,
-/area/atmos)
-"bQc" = (
+"bLI" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bLJ" = (
/obj/machinery/portable_atmospherics/canister/air,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
/area/atmos)
-"bQd" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
+"bLK" = (
+/turf/closed/wall/r_wall,
+/area/atmos)
+"bLL" = (
+/obj/machinery/portable_atmospherics/canister/nitrogen,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
/area/atmos)
-"bQe" = (
-/obj/machinery/portable_atmospherics/canister/nitrogen,
+"bLM" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
/area/atmos)
-"bQf" = (
+"bLN" = (
/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
/area/atmos)
-"bQg" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall/r_wall,
-/area/atmos)
-"bQh" = (
+"bLO" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/firedoor/heavy,
/obj/machinery/door/airlock/maintenance{
name = "Atmospherics Maintenance";
- req_access_txt = "24"
+ req_access_txt = "24"
},
/turf/open/floor/plating,
/area/atmos)
-"bQi" = (
+"bLP" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall/r_wall,
+/area/atmos)
+"bLQ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/turf/closed/wall/r_wall,
/area/atmos)
-"bQj" = (
+"bLR" = (
/obj/machinery/atmospherics/pipe/simple/supply/visible,
/turf/closed/wall/r_wall,
/area/atmos)
-"bQk" = (
+"bLS" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/maintenance/asmaint)
+"bLT" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"bQl" = (
+"bLU" = (
/obj/structure/table,
/obj/item/weapon/folder/white,
/obj/item/clothing/neck/stethoscope,
@@ -42859,337 +41327,317 @@
},
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bQm" = (
-/obj/structure/chair/office/light{
- dir = 8
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bQn" = (
+"bLV" = (
/obj/structure/closet/secure_closet/personal/patient,
/obj/machinery/button/door{
id = "medpriv1";
- name = "Privacy Shutters";
- pixel_y = -25
+ name = "Privacy Shutters";
+ pixel_y = -25
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bQo" = (
-/obj/structure/grille,
-/obj/machinery/door/poddoor/preopen{
- id = "medpriv1";
- name = "privacy door"
+"bLW" = (
+/obj/structure/chair/office/light{
+ dir = 8
},
-/obj/structure/window/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
-/turf/open/floor/plating,
+/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bQp" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
+"bLX" = (
/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,
/turf/open/floor/plasteel/white,
/area/medical/medbay)
-"bQq" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+"bLY" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ on = 1
},
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"bLZ" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bMa" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
},
/turf/open/floor/plasteel/white,
-/area/medical/medbay)
-"bQr" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Medbay Maintenance";
- req_access_txt = "5"
- },
+/area/medical/virology)
+"bMb" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plating,
-/area/medical/medbay)
-"bQs" = (
+/area/maintenance/asmaint)
+"bMc" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Medbay Maintenance";
+ req_access_txt = "5"
+ },
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bQt" = (
+/area/medical/medbay)
+"bMd" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
},
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 4;
+ icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"bQu" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bQv" = (
+"bMe" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/junction,
/obj/structure/cable{
d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d2 = 8;
+ icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"bQw" = (
+"bMf" = (
+/obj/structure/table,
+/obj/machinery/cell_charger{
+ pixel_y = 5
+ },
+/obj/item/stack/cable_coil,
+/obj/item/device/multitool,
+/obj/item/weapon/stock_parts/cell/high/plus,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/toxins/misc_lab)
+"bMg" = (
/obj/machinery/power/apc{
dir = 8;
- name = "Xenobiology APC";
- pixel_x = -25
+ name = "Xenobiology APC";
+ pixel_x = -25
},
/obj/structure/cable{
icon_state = "0-2";
- d2 = 2
+ d2 = 2
},
/obj/structure/cable{
icon_state = "0-2";
- d2 = 2
+ d2 = 2
},
/obj/structure/cable,
/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
-"bQx" = (
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"bQy" = (
+"bMh" = (
/obj/structure/chair/stool,
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
-"bQz" = (
+"bMi" = (
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"bMj" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/closed/wall,
+/area/maintenance/aft)
+"bMk" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
-"bQA" = (
-/obj/machinery/monkey_recycler,
-/obj/machinery/firealarm{
- dir = 2;
- pixel_y = 24
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"bQB" = (
+"bMl" = (
/obj/machinery/processor{
desc = "A machine used to process slimes and retrieve their extract.";
- name = "Slime Processor"
+ name = "Slime Processor"
},
/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
-"bQC" = (
-/obj/machinery/smartfridge/extract,
+"bMm" = (
+/obj/machinery/monkey_recycler,
+/obj/machinery/firealarm{
+ dir = 2;
+ pixel_y = 24
+ },
/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
-"bQD" = (
+"bMn" = (
/obj/structure/table,
/obj/machinery/reagentgrinder,
/obj/machinery/airalarm{
frequency = 1439;
- pixel_y = 23
+ pixel_y = 23
},
/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
-"bQE" = (
-/obj/structure/closet/l3closet/scientist,
+"bMo" = (
+/obj/machinery/smartfridge/extract,
/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
-"bQF" = (
+"bMp" = (
/obj/structure/closet/l3closet/scientist,
/obj/machinery/light_switch{
pixel_x = 0;
- pixel_y = 28
+ pixel_y = 28
},
/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
-"bQG" = (
+"bMq" = (
+/obj/structure/closet/l3closet/scientist,
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"bMr" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
/turf/open/floor/plating,
/area/toxins/xenobiology)
-"bQH" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/white/side{
- dir = 5
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bQI" = (
+"bMs" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/medical/research{
name = "Research Division"
})
-"bQJ" = (
+"bMt" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/turf/open/floor/engine/vacuum,
+/area/toxins/mixing)
+"bMu" = (
/obj/machinery/door/poddoor{
id = "mixvent";
- name = "Mixer Room Vent"
+ name = "Mixer Room Vent"
},
/turf/open/floor/engine/vacuum,
/area/toxins/mixing)
-"bQK" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
- pixel_y = 32
+"bMv" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
},
-/turf/open/floor/engine/vacuum,
+/turf/closed/wall/r_wall,
/area/toxins/mixing)
-"bQL" = (
+"bMw" = (
/obj/machinery/sparker{
dir = 2;
- id = "mixingsparker";
- pixel_x = 25
+ id = "mixingsparker";
+ pixel_x = 25
},
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
- external_pressure_bound = 0;
- initialize_directions = 1;
- internal_pressure_bound = 4000;
- on = 1;
- pressure_checks = 2;
- pump_direction = 0
+ external_pressure_bound = 0;
+ initialize_directions = 1;
+ internal_pressure_bound = 4000;
+ on = 1;
+ pressure_checks = 2;
+ pump_direction = 0
},
/turf/open/floor/engine/vacuum,
/area/toxins/mixing)
-"bQM" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/toxins/mixing)
-"bQN" = (
+"bMx" = (
/obj/machinery/airlock_sensor{
id_tag = "tox_airlock_sensor";
- master_tag = "tox_airlock_control";
- pixel_y = 24
+ master_tag = "tox_airlock_control";
+ pixel_y = 24
},
/obj/machinery/atmospherics/components/binary/pump{
dir = 4;
- on = 1
+ on = 1
},
/turf/open/floor/engine,
/area/toxins/mixing)
-"bQO" = (
+"bMy" = (
+/obj/machinery/atmospherics/components/binary/valve{
+ dir = 4;
+ name = "mix to port"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing)
+"bMz" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 4
},
/obj/machinery/meter,
/obj/machinery/embedded_controller/radio/airlock_controller{
airpump_tag = "tox_airlock_pump";
- exterior_door_tag = "tox_airlock_exterior";
- id_tag = "tox_airlock_control";
- interior_door_tag = "tox_airlock_interior";
- pixel_x = -24;
- pixel_y = 0;
- sanitize_external = 1;
- sensor_tag = "tox_airlock_sensor"
+ exterior_door_tag = "tox_airlock_exterior";
+ id_tag = "tox_airlock_control";
+ interior_door_tag = "tox_airlock_interior";
+ pixel_x = -24;
+ pixel_y = 0;
+ sanitize_external = 1;
+ sensor_tag = "tox_airlock_sensor"
},
/obj/effect/turf_decal/stripes/corner{
dir = 1
},
/turf/open/floor/plasteel/white,
/area/toxins/mixing)
-"bQP" = (
-/obj/machinery/atmospherics/components/binary/valve{
- dir = 4;
- name = "mix to port"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bQQ" = (
+"bMA" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 8
},
@@ -43198,23 +41646,23 @@
},
/turf/open/floor/plasteel,
/area/toxins/mixing)
-"bQR" = (
+"bMB" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"bQS" = (
+"bMC" = (
/obj/effect/decal/cleanable/cobweb/cobweb2,
/obj/effect/spawner/lootdrop/maintenance,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"bQT" = (
+"bMD" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
},
/turf/open/floor/plating/airless,
/area/toxins/test_area)
-"bQU" = (
+"bME" = (
/obj/structure/chair{
dir = 8
},
@@ -43223,53 +41671,57 @@
},
/turf/open/floor/plating/airless,
/area/toxins/test_area)
-"bQV" = (
+"bMF" = (
/obj/structure/shuttle/engine/propulsion/burst,
/obj/structure/window/reinforced{
dir = 1;
- layer = 2.9
+ layer = 2.9
},
/turf/open/floor/plating/airless,
/area/shuttle/labor)
-"bQW" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/status_display{
- density = 0;
- layer = 3;
- pixel_x = -32;
- pixel_y = 0
+"bMG" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/caution/corner{
- dir = 8
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/area/hallway/primary/aft)
-"bQX" = (
-/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
-"bQY" = (
-/turf/open/floor/plasteel/caution{
- dir = 4
+"bMH" = (
+/obj/machinery/holopad,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
},
-/area/hallway/primary/aft)
-"bQZ" = (
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"bMI" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"bMJ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"bMK" = (
/turf/closed/wall,
/area/atmos)
-"bRa" = (
+"bML" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 4
},
/obj/machinery/portable_atmospherics/canister/air,
/turf/open/floor/plasteel,
/area/atmos)
-"bRb" = (
-/obj/machinery/atmospherics/components/trinary/filter{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bRc" = (
+"bMM" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 8
},
@@ -43278,321 +41730,265 @@
},
/turf/open/floor/plasteel,
/area/atmos)
-"bRd" = (
-/obj/machinery/firealarm{
- dir = 2;
- pixel_y = 24
+"bMN" = (
+/obj/machinery/atmospherics/components/trinary/filter{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/atmos)
-"bRe" = (
+"bMO" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/atmos)
-"bRf" = (
-/obj/machinery/pipedispenser,
+"bMP" = (
+/obj/machinery/firealarm{
+ dir = 2;
+ pixel_y = 24
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/atmos)
-"bRg" = (
+"bMQ" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/atmos)
-"bRh" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
- dir = 8
- },
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/meter{
- frequency = 1441;
- id_tag = "waste_meter";
- name = "Waste Loop"
- },
+"bMR" = (
+/obj/machinery/pipedispenser,
/turf/open/floor/plasteel,
/area/atmos)
-"bRi" = (
+"bMS" = (
/obj/machinery/camera{
c_tag = "Atmospherics North East"
},
/obj/machinery/atmospherics/components/binary/pump{
dir = 8;
- name = "Distro to Waste";
- on = 0
+ name = "Distro to Waste";
+ on = 0
},
/turf/open/floor/plasteel,
/area/atmos)
-"bRj" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/visible{
- dir = 2
+"bMT" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 1
},
/obj/machinery/meter{
frequency = 1441;
- id_tag = "distro_meter";
- name = "Distribution Loop"
+ id_tag = "waste_meter";
+ name = "Waste Loop"
},
/turf/open/floor/plasteel,
/area/atmos)
-"bRk" = (
+"bMU" = (
/obj/machinery/atmospherics/pipe/manifold/supply/visible{
dir = 1
},
/turf/open/floor/plasteel,
/area/atmos)
-"bRl" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 8;
- name = "Air to Distro";
- on = 1
+"bMV" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/visible{
+ dir = 2
+ },
+/obj/machinery/meter{
+ frequency = 1441;
+ id_tag = "distro_meter";
+ name = "Distribution Loop"
},
/turf/open/floor/plasteel,
/area/atmos)
-"bRm" = (
+"bMW" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 10;
- initialize_directions = 10
+ initialize_directions = 10
},
/turf/open/floor/plasteel,
/area/atmos)
-"bRn" = (
-/obj/machinery/atmospherics/pipe/simple/yellow/visible{
- dir = 6
+"bMX" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "Air to Distro";
+ on = 1
},
/turf/open/floor/plasteel,
/area/atmos)
-"bRo" = (
+"bMY" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
dir = 4
},
/turf/closed/wall/r_wall,
/area/atmos)
-"bRp" = (
-/obj/structure/lattice,
+"bMZ" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
- dir = 4
+ dir = 6
},
-/turf/open/space,
-/area/space/nearstation)
-"bRq" = (
+/turf/open/floor/plasteel,
+/area/atmos)
+"bNa" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
dir = 4
},
/turf/open/space,
/area/space)
-"bRr" = (
+"bNb" = (
+/obj/item/weapon/airlock_painter,
/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/yellow/visible{
- icon_state = "intact";
- dir = 10
- },
+/obj/structure/closet,
/turf/open/space,
/area/space/nearstation)
-"bRs" = (
+"bNc" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall/r_wall,
/area/medical/virology)
-"bRt" = (
+"bNd" = (
/turf/closed/wall/r_wall,
/area/medical/virology)
-"bRu" = (
-/turf/closed/wall,
-/area/medical/virology)
-"bRv" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/doorButtons/access_button{
- idDoor = "virology_airlock_exterior";
- idSelf = "virology_airlock_control";
- name = "Virology Access Button";
- pixel_x = -24;
- pixel_y = 0;
- req_access_txt = "39"
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/virology{
- autoclose = 0;
- frequency = 1449;
- icon_state = "door_locked";
- id_tag = "virology_airlock_exterior";
- locked = 1;
- name = "Virology Exterior Airlock";
- req_access_txt = "39"
+"bNe" = (
+/obj/structure/window/reinforced{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bRw" = (
+/obj/structure/table,
+/obj/item/weapon/hand_labeler,
+/obj/item/clothing/glasses/science,
+/obj/item/clothing/glasses/science,
+/turf/open/floor/plasteel,
+/area/toxins/misc_lab)
+"bNf" = (
/obj/structure/sign/biohazard,
/turf/closed/wall,
/area/medical/virology)
-"bRx" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/disposalpipe/sortjunction{
- dir = 2;
- icon_state = "pipe-j2s";
- sortType = 13
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bRy" = (
+"bNg" = (
/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/door/airlock/maintenance{
- name = "Xenobiology Maintenance";
- req_access_txt = "55"
+ dir = 8;
+ icon_state = "pipe-c"
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+ d2 = 8;
+ icon_state = "4-8"
},
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plating,
-/area/toxins/xenobiology)
-"bRz" = (
-/obj/structure/disposalpipe/segment{
+/area/maintenance/aft)
+"bNh" = (
+/obj/machinery/computer/pandemic,
+/turf/open/floor/plasteel/whitegreen/side{
dir = 4
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+/area/medical/virology)
+"bNi" = (
+/obj/structure/chair/stool,
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ external_pressure_bound = 101.325;
+ on = 1;
+ pressure_checks = 1
},
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"bRA" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+/area/medical/virology)
+"bNj" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_virology{
+ name = "Isolation A";
+ req_access_txt = "39"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"bNk" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/medical/virology)
+"bNl" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_virology{
+ name = "Isolation B";
+ req_access_txt = "39"
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"bRB" = (
+/area/medical/virology)
+"bNm" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/toxins/misc_lab)
+"bNn" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 8;
+ icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
-"bRC" = (
+"bNo" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
-"bRD" = (
+"bNp" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
-"bRE" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+"bNq" = (
+/obj/structure/table,
+/obj/item/stack/sheet/glass{
+ amount = 50;
+ pixel_x = 3;
+ pixel_y = 3
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+/obj/item/stack/sheet/metal{
+ amount = 50
},
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"bRF" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/item/stack/sheet/mineral/plasma{
+ layer = 2.9
},
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+/obj/effect/turf_decal/stripes/line{
dir = 1
},
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"bRG" = (
+/turf/open/floor/plasteel,
+/area/toxins/misc_lab)
+"bNr" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/research{
name = "Xenobiology Lab";
- req_access_txt = "55"
+ req_access_txt = "55"
},
/obj/structure/disposalpipe/segment{
dir = 4
@@ -43602,119 +41998,97 @@
},
/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
-"bRH" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plasteel/white/side{
- dir = 5
- },
-/area/medical/research{
- name = "Research Division"
- })
-"bRI" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+"bNs" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
- on = 1
+ on = 1
},
/turf/open/floor/plasteel/white,
-/area/medical/research{
- name = "Research Division"
- })
-"bRJ" = (
-/turf/open/floor/engine/vacuum,
-/area/toxins/mixing)
-"bRK" = (
-/obj/effect/landmark/event_spawn,
+/area/medical/virology)
+"bNt" = (
/turf/open/floor/engine/vacuum,
/area/toxins/mixing)
-"bRL" = (
+"bNu" = (
/obj/machinery/door/airlock/glass_research{
autoclose = 0;
- frequency = 1449;
- glass = 1;
- heat_proof = 1;
- icon_state = "door_locked";
- id_tag = "tox_airlock_exterior";
- locked = 1;
- name = "Mixing Room Exterior Airlock";
- req_access_txt = "8"
+ frequency = 1449;
+ glass = 1;
+ heat_proof = 1;
+ icon_state = "door_locked";
+ id_tag = "tox_airlock_exterior";
+ locked = 1;
+ name = "Mixing Room Exterior Airlock";
+ req_access_txt = "8"
},
/turf/open/floor/engine,
/area/toxins/mixing)
-"bRM" = (
-/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume{
- dir = 2;
- frequency = 1449;
- id = "tox_airlock_pump"
+"bNv" = (
+/obj/machinery/door/airlock/glass_research{
+ autoclose = 0;
+ frequency = 1449;
+ glass = 1;
+ heat_proof = 1;
+ icon_state = "door_locked";
+ id_tag = "tox_airlock_interior";
+ locked = 1;
+ name = "Mixing Room Interior Airlock";
+ req_access_txt = "8"
},
/turf/open/floor/engine,
/area/toxins/mixing)
-"bRN" = (
-/obj/machinery/door/airlock/glass_research{
- autoclose = 0;
- frequency = 1449;
- glass = 1;
- heat_proof = 1;
- icon_state = "door_locked";
- id_tag = "tox_airlock_interior";
- locked = 1;
- name = "Mixing Room Interior Airlock";
- req_access_txt = "8"
+"bNw" = (
+/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume{
+ dir = 2;
+ frequency = 1449;
+ id = "tox_airlock_pump"
},
/turf/open/floor/engine,
/area/toxins/mixing)
-"bRO" = (
+"bNx" = (
/obj/effect/turf_decal/stripes/line{
- dir = 8
+ dir = 4
},
/turf/open/floor/plasteel/white,
/area/toxins/mixing)
-"bRP" = (
+"bNy" = (
/obj/effect/turf_decal/stripes/line{
- dir = 4
+ dir = 8
},
/turf/open/floor/plasteel/white,
/area/toxins/mixing)
-"bRQ" = (
+"bNz" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 27;
- pixel_y = 0
+ pixel_y = 0
},
/obj/machinery/camera{
c_tag = "Toxins Lab East";
- dir = 8;
- network = list("SS13","RD");
- pixel_y = -22
+ dir = 8;
+ network = list("SS13","RD");
+ pixel_y = -22
},
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel,
/area/toxins/mixing)
-"bRR" = (
+"bNA" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"bRS" = (
-/obj/structure/closet/wardrobe/grey,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"bRT" = (
+"bNB" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance{
lootcount = 2;
- name = "2maintenance loot spawner"
+ name = "2maintenance loot spawner"
},
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"bRU" = (
+"bNC" = (
+/obj/structure/closet/wardrobe/grey,
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"bND" = (
/obj/structure/chair{
dir = 1
},
@@ -43723,14 +42097,7 @@
},
/turf/open/floor/plating/airless,
/area/toxins/test_area)
-"bRV" = (
-/obj/item/device/flashlight/lamp,
-/obj/effect/turf_decal/stripes/line{
- dir = 2
- },
-/turf/open/floor/plating/airless,
-/area/toxins/test_area)
-"bRW" = (
+"bNE" = (
/obj/structure/chair{
dir = 1
},
@@ -43739,71 +42106,94 @@
},
/turf/open/floor/plating/airless,
/area/toxins/test_area)
-"bRX" = (
+"bNF" = (
+/obj/item/device/flashlight/lamp,
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plating/airless,
+/area/toxins/test_area)
+"bNG" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/toxins/test_area)
-"bRY" = (
+"bNH" = (
+/obj/structure/table/reinforced,
+/obj/item/stack/wrapping_paper{
+ pixel_x = 3;
+ pixel_y = 4
+ },
+/obj/item/stack/packageWrap{
+ pixel_x = -1;
+ pixel_y = -1
+ },
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -26
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bNI" = (
/turf/closed/wall,
/area/construction)
-"bRZ" = (
-/obj/structure/closet/crate,
-/turf/open/floor/plating,
-/area/construction)
-"bSa" = (
+"bNJ" = (
/turf/open/floor/plating,
/area/construction)
-"bSb" = (
+"bNK" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_mining{
+ name = "Cargo Office";
+ req_access_txt = "50"
+ },
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bNL" = (
/obj/machinery/airalarm{
frequency = 1439;
- pixel_y = 23
+ pixel_y = 23
},
/turf/open/floor/plating,
/area/construction)
-"bSc" = (
-/turf/open/floor/plasteel,
-/area/construction)
-"bSd" = (
-/obj/structure/closet/toolcloset,
+"bNM" = (
+/turf/open/floor/plasteel/loadingarea{
+ dir = 4
+ },
+/area/quartermaster/office)
+"bNN" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
-/area/construction)
-"bSe" = (
+/area/hallway/primary/aft)
+"bNO" = (
/turf/open/floor/plasteel/caution{
dir = 6
},
/area/hallway/primary/aft)
-"bSf" = (
+"bNP" = (
/obj/structure/disposalpipe/segment{
dir = 4;
- icon_state = "pipe-c"
+ icon_state = "pipe-c"
},
/obj/item/device/radio/intercom{
freerange = 0;
- frequency = 1459;
- name = "Station Intercom (General)";
- pixel_x = -30
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bSg" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = -30
},
/turf/open/floor/plasteel,
/area/atmos)
-"bSh" = (
+"bNQ" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
/turf/open/floor/plasteel,
/area/atmos)
-"bSi" = (
+"bNR" = (
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
dir = 8
@@ -43813,62 +42203,71 @@
},
/obj/machinery/camera{
c_tag = "Atmospherics Monitoring";
- dir = 2;
- network = list("SS13")
+ dir = 2;
+ network = list("SS13")
},
/obj/machinery/light{
dir = 4;
- icon_state = "tube1"
+ icon_state = "tube1"
},
/turf/open/floor/plasteel/caution{
dir = 5
},
/area/atmos)
-"bSj" = (
+"bNS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bNT" = (
/obj/machinery/camera{
c_tag = "Atmospherics North West";
- dir = 4;
- network = list("SS13")
+ dir = 4;
+ network = list("SS13")
},
/obj/machinery/light{
dir = 8
},
/turf/open/floor/plasteel,
/area/atmos)
-"bSk" = (
+"bNU" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/medical/virology)
+"bNV" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 1
},
/turf/open/floor/plasteel,
/area/atmos)
-"bSl" = (
-/turf/open/floor/plasteel,
-/area/atmos)
-"bSm" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+"bNW" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bSn" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ dir = 1;
+ external_pressure_bound = 101.325;
+ on = 1;
+ pressure_checks = 1
},
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
-/turf/open/floor/plasteel,
-/area/atmos)
-"bSo" = (
-/obj/machinery/pipedispenser/disposal,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"bNX" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
-/turf/open/floor/plasteel,
-/area/atmos)
-"bSp" = (
+/turf/open/floor/plasteel/floorgrime,
+/area/toxins/misc_lab)
+"bNY" = (
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -43876,249 +42275,217 @@
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/atmos)
-"bSq" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+"bNZ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ on = 1
},
/turf/open/floor/plasteel,
-/area/atmos)
-"bSr" = (
+/area/toxins/misc_lab)
+"bOa" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
- on = 1
+ on = 1
},
/turf/open/floor/plasteel,
/area/atmos)
-"bSs" = (
+"bOb" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bOc" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 1;
- name = "Mix to Distro";
- on = 0
+ name = "Mix to Distro";
+ on = 0
},
/turf/open/floor/plasteel,
/area/atmos)
-"bSt" = (
+"bOd" = (
+/turf/open/floor/plasteel,
+/area/atmos)
+"bOe" = (
/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
dir = 8;
- initialize_directions = 11
+ initialize_directions = 11
},
/obj/machinery/meter,
/turf/open/floor/plasteel,
/area/atmos)
-"bSu" = (
+"bOf" = (
+/obj/structure/grille,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 10;
+ initialize_directions = 10
+ },
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/atmos)
+"bOg" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
},
/obj/machinery/atmospherics/components/binary/pump{
dir = 1;
- name = "Mix to Incinerator";
- on = 0
+ name = "Mix to Incinerator";
+ on = 0
},
/turf/open/floor/plasteel,
/area/atmos)
-"bSv" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 10;
- initialize_directions = 10
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/atmos)
-"bSw" = (
+"bOh" = (
/obj/structure/grille,
/turf/closed/wall/r_wall,
/area/atmos)
-"bSx" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/yellow/visible,
-/turf/open/space,
+"bOi" = (
+/turf/open/floor/plasteel/airless{
+ icon_state = "damaged5"
+ },
/area/space/nearstation)
-"bSy" = (
+"bOj" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
/turf/closed/wall/r_wall,
/area/medical/virology)
-"bSz" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bSA" = (
-/obj/item/weapon/storage/secure/safe{
- pixel_x = 5;
- pixel_y = 29
- },
-/obj/machinery/camera{
- c_tag = "Virology Break Room"
+"bOk" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
},
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+/obj/effect/turf_decal/stripes/corner{
+ dir = 2
},
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bSB" = (
+/turf/open/floor/plasteel,
+/area/toxins/misc_lab)
+"bOl" = (
/obj/machinery/light{
dir = 1
},
-/obj/machinery/airalarm{
- frequency = 1439;
- pixel_y = 23
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bSC" = (
+/obj/machinery/announcement_system,
+/turf/open/floor/plasteel,
+/area/tcommsat/computer)
+"bOm" = (
/obj/item/weapon/bedsheet,
/obj/structure/bed,
/turf/open/floor/plasteel/white,
/area/medical/virology)
-"bSD" = (
-/obj/structure/sink{
- icon_state = "sink";
- dir = 8;
- pixel_x = -12;
- pixel_y = 2
+"bOn" = (
+/obj/machinery/light{
+ dir = 1
},
-/obj/effect/turf_decal/stripes/line{
- dir = 9
+/obj/machinery/airalarm{
+ frequency = 1439;
+ pixel_y = 23
},
/turf/open/floor/plasteel/white,
/area/medical/virology)
-"bSE" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+"bOo" = (
+/obj/item/device/radio/intercom{
+ dir = 8;
+ freerange = 1;
+ name = "Station Intercom (Telecoms)";
+ pixel_x = 0;
+ pixel_y = 26
},
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bSF" = (
+/turf/open/floor/plasteel,
+/area/tcommsat/computer)
+"bOp" = (
/obj/structure/closet/emcloset,
/obj/machinery/camera{
c_tag = "Virology Airlock";
- dir = 2;
- network = list("SS13")
+ dir = 2;
+ network = list("SS13")
},
/obj/effect/turf_decal/stripes/line{
dir = 5
},
/turf/open/floor/plasteel/white,
/area/medical/virology)
-"bSG" = (
+"bOq" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel/white,
/area/medical/virology)
-"bSH" = (
-/mob/living/carbon/monkey,
+"bOr" = (
/turf/open/floor/plasteel/white,
/area/medical/virology)
-"bSI" = (
+"bOs" = (
/obj/machinery/light/small{
dir = 1
},
/turf/open/floor/plasteel/white,
/area/medical/virology)
-"bSJ" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/sign/securearea{
- pixel_x = 32
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+"bOt" = (
+/mob/living/carbon/monkey,
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"bOu" = (
+/obj/structure/rack,
+/obj/item/clothing/mask/gas{
+ pixel_x = 3;
+ pixel_y = 3
},
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"bSK" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas{
+ pixel_x = -3;
+ pixel_y = -3
},
-/turf/closed/wall/r_wall,
-/area/toxins/xenobiology)
-"bSL" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+/obj/machinery/airalarm{
+ dir = 4;
+ locked = 0;
+ pixel_x = -23;
+ pixel_y = 0
},
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"bSM" = (
+/turf/open/floor/plasteel,
+/area/toxins/misc_lab)
+"bOv" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/structure/chair/comfy/black,
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"bSN" = (
-/obj/effect/landmark/start{
- name = "Scientist"
+/turf/open/floor/plasteel,
+/area/toxins/misc_lab)
+"bOw" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/structure/chair/comfy/black,
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"bSO" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"bSP" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/holopad,
+/obj/machinery/droneDispenser,
+/turf/open/floor/plasteel,
+/area/toxins/misc_lab)
+"bOx" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
-"bSQ" = (
+"bOy" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"bSR" = (
+/turf/open/floor/plasteel/floorgrime,
+/area/toxins/misc_lab)
+"bOz" = (
/obj/structure/chair/stool,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
-"bSS" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/toxins/xenobiology)
-"bST" = (
+"bOA" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
@@ -44128,80 +42495,85 @@
/area/medical/research{
name = "Research Division"
})
-"bSU" = (
+"bOB" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
+ dir = 10
},
-/turf/open/floor/plasteel/white/side{
- dir = 1
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
},
-/area/medical/research{
- name = "Research Division"
- })
-"bSV" = (
-/turf/open/floor/plasteel/white/side{
- dir = 1
+/turf/open/floor/plasteel,
+/area/toxins/misc_lab)
+"bOC" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
},
-/area/medical/research{
- name = "Research Division"
- })
-"bSW" = (
+/turf/open/floor/plasteel,
+/area/tcommsat/computer)
+"bOD" = (
+/obj/structure/chair/office/dark{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/tcommsat/computer)
+"bOE" = (
/obj/machinery/sparker{
dir = 2;
- id = "mixingsparker";
- pixel_x = 25
+ id = "mixingsparker";
+ pixel_x = 25
},
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 4;
- frequency = 1441;
- id = "air_in"
+ frequency = 1441;
+ id = "air_in"
},
/turf/open/floor/engine/vacuum,
/area/toxins/mixing)
-"bSX" = (
+"bOF" = (
/obj/structure/sign/fire{
pixel_y = -32
},
/obj/machinery/atmospherics/components/binary/pump{
dir = 8;
- on = 1
+ on = 1
},
/turf/open/floor/engine,
/area/toxins/mixing)
-"bSY" = (
+"bOG" = (
+/obj/machinery/light,
+/obj/machinery/atmospherics/components/binary/valve{
+ dir = 4;
+ name = "port to mix"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/mixing)
+"bOH" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 4
},
/obj/machinery/meter,
/obj/machinery/button/door{
id = "mixvent";
- name = "Mixing Room Vent Control";
- pixel_x = -25;
- pixel_y = 5;
- req_access_txt = "7"
+ name = "Mixing Room Vent Control";
+ pixel_x = -25;
+ pixel_y = 5;
+ req_access_txt = "7"
},
/obj/machinery/button/ignition{
id = "mixingsparker";
- pixel_x = -25;
- pixel_y = -5
+ pixel_x = -25;
+ pixel_y = -5
},
/obj/effect/turf_decal/stripes/corner{
dir = 4
},
/turf/open/floor/plasteel/white,
/area/toxins/mixing)
-"bSZ" = (
-/obj/machinery/light,
-/obj/machinery/atmospherics/components/binary/valve{
- dir = 4;
- name = "port to mix"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/mixing)
-"bTa" = (
+"bOI" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 8
},
@@ -44210,7 +42582,7 @@
},
/turf/open/floor/plasteel,
/area/toxins/mixing)
-"bTb" = (
+"bOJ" = (
/obj/item/target,
/obj/structure/window/reinforced{
dir = 1
@@ -44218,88 +42590,70 @@
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating,
/area/toxins/test_area)
-"bTc" = (
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/space/nearstation)
-"bTd" = (
-/obj/structure/closet/emcloset,
+"bOK" = (
+/obj/structure/barricade/wooden,
+/obj/structure/girder,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bTe" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
+"bOL" = (
+/obj/structure/closet/crate,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"bOM" = (
+/obj/structure/table,
+/obj/item/weapon/paper_bin,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
},
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 4;
- name = "4maintenance loot spawner"
+/turf/open/floor/plasteel,
+/area/tcommsat/computer)
+"bON" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "kanyewest";
+ layer = 2.9;
+ name = "privacy shutters"
},
/turf/open/floor/plating,
-/area/maintenance/aft)
-"bTf" = (
-/obj/structure/chair/stool,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bTg" = (
-/obj/effect/decal/cleanable/cobweb,
-/obj/structure/closet,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
+/area/security/detectives_office)
+"bOO" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Engineering Security APC";
+ pixel_x = -24
},
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bTh" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bTi" = (
-/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bTj" = (
-/obj/structure/light_construct{
- dir = 8
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
},
-/turf/open/floor/plating,
-/area/construction)
-"bTk" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+/obj/machinery/newscaster{
+ pixel_y = 32
},
-/turf/open/floor/plating,
-/area/construction)
-"bTl" = (
-/obj/structure/light_construct{
- dir = 4
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ on = 1
},
-/turf/open/floor/plasteel,
-/area/construction)
-"bTm" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/extinguisher_cabinet{
- pixel_x = -27;
- pixel_y = 1
+/turf/open/floor/plasteel/red/side{
+ dir = 9
},
-/obj/machinery/light{
- dir = 8
+/area/security/checkpoint/engineering)
+"bOP" = (
+/obj/structure/table/glass,
+/obj/structure/reagent_dispensers/virusfood{
+ density = 0;
+ pixel_x = -30
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/caution/corner{
- dir = 8
+/obj/item/weapon/book/manual/wiki/infections{
+ pixel_y = 7
},
-/area/hallway/primary/aft)
-"bTn" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
+/obj/item/weapon/reagent_containers/syringe/antiviral,
+/obj/item/weapon/reagent_containers/dropper,
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 8
},
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bTo" = (
+/area/medical/virology)
+"bOQ" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -44307,28 +42661,17 @@
dir = 8
},
/area/hallway/primary/aft)
-"bTp" = (
+"bOR" = (
/obj/structure/disposalpipe/segment{
- dir = 4
+ dir = 1;
+ icon_state = "pipe-c"
},
-/obj/structure/plasticflaps{
- opacity = 1
- },
-/obj/machinery/navbeacon{
- codes_txt = "delivery;dir=4";
- dir = 4;
- freq = 1400;
- location = "Atmospherics"
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel{
- name = "floor"
- },
-/area/atmos)
-"bTq" = (
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bOS" = (
/obj/structure/disposalpipe/segment{
dir = 8;
- icon_state = "pipe-c"
+ icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
@@ -44337,31 +42680,45 @@
dir = 4
},
/area/atmos)
-"bTr" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+"bOT" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/plasteel,
+/obj/structure/plasticflaps{
+ opacity = 1
+ },
+/obj/machinery/navbeacon{
+ codes_txt = "delivery;dir=4";
+ dir = 4;
+ freq = 1400;
+ location = "Atmospherics"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
/area/atmos)
-"bTs" = (
+"bOU" = (
/obj/machinery/holopad,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/atmos)
-"bTt" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+"bOV" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
/turf/open/floor/plasteel,
/area/atmos)
-"bTu" = (
+"bOW" = (
/obj/machinery/computer/atmos_control,
/obj/machinery/requests_console{
department = "Atmospherics";
- departmentType = 4;
- name = "Atmos RC";
- pixel_x = 30;
- pixel_y = 0
+ departmentType = 4;
+ name = "Atmos RC";
+ pixel_x = 30;
+ pixel_y = 0
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -44370,21 +42727,21 @@
dir = 4
},
/area/atmos)
-"bTv" = (
+"bOX" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/atmos)
+"bOY" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall,
/area/atmos)
-"bTw" = (
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,
-/turf/open/floor/plasteel,
-/area/atmos)
-"bTx" = (
+"bOZ" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -44392,14 +42749,7 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/atmos)
-"bTy" = (
-/obj/machinery/pipedispenser/disposal/transit_tube,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bTz" = (
+"bPa" = (
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -44407,60 +42757,60 @@
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/atmos)
-"bTA" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 0;
- name = "Waste In";
- on = 1
+"bPb" = (
+/obj/machinery/door/airlock/glass_research{
+ name = "Firing Range";
+ req_access_txt = "47"
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel,
-/area/atmos)
-"bTB" = (
+/area/toxins/misc_lab)
+"bPc" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
/turf/open/floor/plasteel,
/area/atmos)
-"bTC" = (
-/obj/machinery/atmospherics/pipe/manifold/yellow/visible,
-/turf/open/floor/plasteel,
-/area/atmos)
-"bTD" = (
+"bPd" = (
/obj/machinery/atmospherics/components/binary/pump{
- dir = 8;
- name = "Mix Outlet Pump";
- on = 0
+ dir = 0;
+ name = "Waste In";
+ on = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
/turf/open/floor/plasteel,
/area/atmos)
-"bTE" = (
+"bPe" = (
+/obj/machinery/atmospherics/pipe/manifold/yellow/visible,
+/turf/open/floor/plasteel,
+/area/atmos)
+"bPf" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 0;
- name = "Air to Mix";
- on = 0
+ name = "Air to Mix";
+ on = 0
},
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
dir = 4
},
/turf/open/floor/plasteel,
/area/atmos)
-"bTF" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/obj/machinery/atmospherics/pipe/manifold/yellow/visible,
-/turf/open/floor/plasteel/green/side{
- dir = 5
+"bPg" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "Mix Outlet Pump";
+ on = 0
},
+/turf/open/floor/plasteel,
/area/atmos)
-"bTG" = (
+"bPh" = (
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
@@ -44469,7 +42819,17 @@
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/atmos)
-"bTH" = (
+"bPi" = (
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/obj/machinery/atmospherics/pipe/manifold/yellow/visible,
+/turf/open/floor/plasteel/green/side{
+ dir = 5
+ },
+/area/atmos)
+"bPj" = (
/obj/machinery/atmospherics/pipe/simple{
dir = 4
},
@@ -44477,124 +42837,139 @@
/obj/machinery/meter,
/turf/closed/wall/r_wall,
/area/atmos)
-"bTI" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- external_pressure_bound = 0;
- frequency = 1441;
- id_tag = "mix_out";
- initialize_directions = 1;
- internal_pressure_bound = 4000;
- on = 1;
- pressure_checks = 2;
- pump_direction = 0
+"bPk" = (
+/obj/machinery/camera{
+ c_tag = "Atmospherics Waste Tank"
},
/turf/open/floor/engine/vacuum,
/area/atmos)
-"bTJ" = (
-/obj/machinery/camera{
- c_tag = "Atmospherics Waste Tank"
+"bPl" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ external_pressure_bound = 0;
+ frequency = 1441;
+ id_tag = "mix_out";
+ initialize_directions = 1;
+ internal_pressure_bound = 4000;
+ on = 1;
+ pressure_checks = 2;
+ pump_direction = 0
},
/turf/open/floor/engine/vacuum,
/area/atmos)
-"bTK" = (
+"bPm" = (
/turf/open/floor/engine/vacuum,
/area/atmos)
-"bTL" = (
+"bPn" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"bTM" = (
+"bPo" = (
/obj/structure/table,
/obj/machinery/microwave{
pixel_x = -3;
- pixel_y = 6
+ pixel_y = 6
},
/turf/open/floor/plasteel/white,
/area/medical/virology)
-"bTN" = (
+"bPp" = (
/obj/machinery/iv_drip,
/turf/open/floor/plasteel/white,
/area/medical/virology)
-"bTO" = (
+"bPq" = (
/obj/machinery/shower{
dir = 4
},
/obj/structure/sign/securearea{
pixel_x = -32;
- pixel_y = 0
+ pixel_y = 0
},
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel/white,
/area/medical/virology)
-"bTP" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bTQ" = (
+"bPr" = (
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
+ icon_state = "alarm0";
+ pixel_x = 24
},
/obj/structure/closet/l3closet,
/obj/machinery/light{
dir = 4;
- icon_state = "tube1"
+ icon_state = "tube1"
},
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel/white,
/area/medical/virology)
-"bTR" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+"bPs" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bTS" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/toxins/misc_lab)
+"bPt" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/mob/living/carbon/monkey,
/turf/open/floor/plasteel/white,
/area/medical/virology)
-"bTT" = (
+"bPu" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"bPv" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/asmaint)
+"bPw" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 4
},
/turf/closed/wall/r_wall,
/area/medical/virology)
-"bTU" = (
+"bPx" = (
/obj/machinery/disposal/bin,
/obj/structure/sign/deathsposal{
pixel_x = 0;
- pixel_y = -32
+ pixel_y = -32
},
/obj/structure/disposalpipe/trunk{
dir = 4
},
/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
-"bTV" = (
-/obj/machinery/computer/camera_advanced/xenobio,
-/obj/structure/disposalpipe/segment{
+"bPy" = (
+/obj/effect/landmark/start{
+ name = "Scientist"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
+/obj/structure/chair/comfy/black,
/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
-"bTW" = (
+"bPz" = (
/obj/machinery/light,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -44604,60 +42979,60 @@
/obj/item/weapon/storage/box/monkeycubes,
/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
-"bTX" = (
-/obj/structure/table/glass,
+"bPA" = (
+/obj/machinery/computer/camera_advanced/xenobio,
/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/item/weapon/folder/white,
-/obj/item/weapon/pen,
/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
-"bTY" = (
+"bPB" = (
+/obj/structure/table/glass,
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/item/weapon/folder/white,
+/obj/item/weapon/pen,
/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
-"bTZ" = (
+"bPC" = (
/obj/structure/disposalpipe/segment{
dir = 2;
- icon_state = "pipe-c"
+ icon_state = "pipe-c"
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
-"bUa" = (
+"bPD" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"bPE" = (
/obj/structure/table,
/obj/item/weapon/extinguisher{
pixel_x = 4;
- pixel_y = 3
+ pixel_y = 3
},
/obj/item/weapon/extinguisher,
/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
-"bUb" = (
-/obj/structure/table,
-/obj/machinery/requests_console{
- department = "Science";
- departmentType = 2;
- name = "Science Requests Console";
- pixel_x = 0;
- pixel_y = -30
+"bPF" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
-/obj/item/weapon/paper_bin{
- pixel_x = 1;
- pixel_y = 9
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
},
-/obj/item/weapon/pen,
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"bUc" = (
+/turf/open/floor/plasteel,
+/area/toxins/misc_lab)
+"bPG" = (
/obj/structure/table,
/obj/item/stack/sheet/mineral/plasma{
layer = 2.9
@@ -44671,240 +43046,224 @@
/obj/machinery/light,
/obj/item/device/radio/intercom{
name = "Station Intercom (General)";
- pixel_y = -29
+ pixel_y = -29
},
/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
-"bUd" = (
+"bPH" = (
/obj/structure/table,
-/obj/item/weapon/storage/box/beakers{
- pixel_x = 2;
- pixel_y = 2
+/obj/machinery/requests_console{
+ department = "Science";
+ departmentType = 2;
+ name = "Science Requests Console";
+ pixel_x = 0;
+ pixel_y = -30
},
-/obj/item/weapon/storage/box/syringes,
+/obj/item/weapon/paper_bin{
+ pixel_x = 1;
+ pixel_y = 9
+ },
+/obj/item/weapon/pen,
/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
-"bUe" = (
+"bPI" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
-"bUf" = (
+"bPJ" = (
+/obj/structure/table,
+/obj/item/weapon/storage/box/beakers{
+ pixel_x = 2;
+ pixel_y = 2
+ },
+/obj/item/weapon/storage/box/syringes,
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"bPK" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
/turf/open/floor/plating,
/area/toxins/misc_lab)
-"bUg" = (
-/obj/machinery/door/airlock/research{
- name = "Testing Lab";
- req_access_txt = "47"
+"bPL" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
},
/turf/open/floor/plasteel,
/area/toxins/misc_lab)
-"bUh" = (
+"bPM" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/toxins/misc_lab)
+"bPN" = (
/turf/closed/wall,
/area/toxins/misc_lab)
-"bUi" = (
+"bPO" = (
/obj/effect/spawner/lootdrop/maintenance,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"bUj" = (
+"bPP" = (
/obj/effect/decal/cleanable/oil,
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"bUk" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 4;
- name = "External Access";
- req_access = null;
- req_access_txt = "13"
+"bPQ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
},
-/turf/open/floor/plating,
+/turf/open/floor/plasteel,
+/area/tcommsat/computer)
+"bPR" = (
+/obj/effect/decal/cleanable/robot_debris/old,
+/turf/open/floor/wood,
/area/maintenance/aft)
-"bUl" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
- pixel_y = 32
- },
-/turf/open/floor/plating,
+"bPS" = (
+/turf/open/floor/wood,
/area/maintenance/aft)
-"bUm" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 8;
- name = "External Access";
- req_access = null;
- req_access_txt = "13"
+"bPT" = (
+/turf/open/floor/wood{
+ icon_state = "wood-broken"
},
+/area/maintenance/aft)
+"bPU" = (
+/obj/item/weapon/shard,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bUn" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+"bPV" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Maint Bar Access";
+ req_access_txt = "12"
+ },
+/obj/structure/barricade/wooden{
+ name = "wooden barricade (CLOSED)"
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"bUo" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
+"bPW" = (
+/obj/effect/decal/cleanable/oil,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bUp" = (
+"bPX" = (
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bUq" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"bUr" = (
-/obj/structure/table,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
- },
+"bPY" = (
+/obj/structure/girder,
+/obj/structure/grille/broken,
/turf/open/floor/plating,
-/area/maintenance/aft)
-"bUs" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
+/area/maintenance/fsmaint2)
+"bPZ" = (
+/obj/structure/chair{
+ dir = 1
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"bUt" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
+"bQa" = (
+/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bUu" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/construction)
-"bUv" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/construction)
-"bUw" = (
-/obj/structure/closet/crate,
-/obj/effect/landmark{
- name = "blobstart"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/construction)
-"bUx" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/construction)
-"bUy" = (
-/obj/effect/landmark{
- name = "xeno_spawn";
- pixel_x = -1
+"bQb" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+/turf/open/floor/plasteel,
+/area/tcommsat/computer)
+"bQc" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
/turf/open/floor/plating,
/area/construction)
-"bUz" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
+"bQd" = (
+/obj/structure/table,
+/obj/item/weapon/folder/blue,
+/obj/item/weapon/pen/blue,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
-/area/construction)
-"bUA" = (
-/obj/machinery/door/airlock/engineering{
- name = "Construction Area";
- req_access_txt = "32"
+/area/tcommsat/computer)
+"bQe" = (
+/obj/item/weapon/screwdriver{
+ pixel_y = 10
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+/obj/machinery/button/door{
+ desc = "A remote control-switch for the engineering security doors.";
+ id = "Engineering";
+ name = "Engineering Lockdown";
+ pixel_x = -24;
+ pixel_y = -6;
+ req_access_txt = "10"
},
-/turf/open/floor/plating,
-/area/construction)
-"bUB" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
-/turf/open/floor/plasteel/caution/corner{
+/obj/item/device/radio/off,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/red/side{
dir = 8
},
-/area/hallway/primary/aft)
-"bUC" = (
+/area/security/checkpoint/engineering)
+"bQf" = (
/turf/open/floor/plasteel/caution{
dir = 5
},
/area/hallway/primary/aft)
-"bUD" = (
-/obj/structure/grille,
-/obj/machinery/door/poddoor/preopen{
- id = "atmos";
- layer = 2.9;
- name = "atmos blast door"
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/atmos)
-"bUE" = (
+"bQg" = (
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bQh" = (
/obj/structure/tank_dispenser{
pixel_x = -1
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/atmos)
-"bUF" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
+"bQi" = (
+/obj/structure/grille,
+/obj/machinery/door/poddoor/preopen{
+ id = "atmos";
+ layer = 2.9;
+ name = "atmos blast door"
},
-/turf/open/floor/plasteel,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
/area/atmos)
-"bUG" = (
+"bQj" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/atmos)
-"bUH" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
+"bQk" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
},
/turf/open/floor/plasteel,
/area/atmos)
-"bUI" = (
+"bQl" = (
/obj/machinery/computer/atmos_control,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -44913,7 +43272,13 @@
dir = 4
},
/area/atmos)
-"bUJ" = (
+"bQm" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bQn" = (
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -44921,246 +43286,241 @@
/obj/structure/window/fulltile,
/turf/open/floor/plating,
/area/atmos)
-"bUK" = (
+"bQo" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/atmos)
-"bUL" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bUM" = (
+"bQp" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 8;
+ icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
},
/turf/open/floor/plasteel,
/area/atmos)
-"bUN" = (
-/obj/structure/closet/crate,
-/turf/open/floor/plasteel,
-/area/atmos)
-"bUO" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
- dir = 8
+"bQq" = (
+/obj/machinery/camera{
+ c_tag = "Security Post - Engineering";
+ dir = 8;
+ network = list("SS13")
},
-/obj/effect/landmark/event_spawn,
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 27
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 4
+ },
+/area/security/checkpoint/engineering)
+"bQr" = (
+/obj/structure/closet/crate,
/turf/open/floor/plasteel,
/area/atmos)
-"bUP" = (
+"bQs" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 8;
- name = "Mix to Filter";
- on = 1
+ name = "Mix to Filter";
+ on = 1
},
/turf/open/floor/plasteel,
/area/atmos)
-"bUQ" = (
-/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
- dir = 4
+"bQt" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
+ dir = 8
},
/turf/open/floor/plasteel,
/area/atmos)
-"bUR" = (
+"bQu" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 6
},
/turf/open/floor/plasteel,
/area/atmos)
-"bUS" = (
-/obj/machinery/atmospherics/pipe/manifold/green/visible{
- dir = 1
+"bQv" = (
+/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
+ dir = 4
},
/turf/open/floor/plasteel,
/area/atmos)
-"bUT" = (
+"bQw" = (
/obj/machinery/atmospherics/pipe/manifold/green/visible{
dir = 4
},
/turf/open/floor/plasteel,
/area/atmos)
-"bUU" = (
-/obj/machinery/computer/atmos_control/tank{
- frequency = 1441;
- input_tag = "mix_in";
- name = "Gas Mix Tank Control";
- output_tag = "mix_out";
- sensors = list("mix_sensor" = "Tank")
- },
-/turf/open/floor/plasteel/green/side{
- dir = 4
+"bQx" = (
+/obj/machinery/atmospherics/pipe/manifold/green/visible{
+ dir = 1
},
+/turf/open/floor/plasteel,
/area/atmos)
-"bUV" = (
+"bQy" = (
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/atmos)
-"bUW" = (
+"bQz" = (
+/obj/machinery/computer/atmos_control/tank{
+ frequency = 1441;
+ input_tag = "mix_in";
+ name = "Gas Mix Tank Control";
+ output_tag = "mix_out";
+ sensors = list("mix_sensor" = "Tank")
+ },
+/turf/open/floor/plasteel/green/side{
+ dir = 4
+ },
+/area/atmos)
+"bQA" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating/airless,
/area/atmos)
-"bUX" = (
+"bQB" = (
/obj/machinery/air_sensor{
frequency = 1441;
- id_tag = "mix_sensor"
+ id_tag = "mix_sensor"
},
/turf/open/floor/engine/vacuum,
/area/atmos)
-"bUY" = (
+"bQC" = (
/obj/machinery/light/small{
dir = 4
},
/turf/open/floor/engine/vacuum,
/area/atmos)
-"bUZ" = (
+"bQD" = (
+/obj/structure/chair/stool,
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"bQE" = (
/obj/structure/table,
/obj/item/weapon/storage/box/donkpockets{
pixel_x = 3;
- pixel_y = 3
+ pixel_y = 3
},
/obj/machinery/newscaster{
pixel_x = -30
},
/turf/open/floor/plasteel/white,
/area/medical/virology)
-"bVa" = (
-/obj/structure/chair/stool,
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bVb" = (
+"bQF" = (
/obj/structure/closet/wardrobe/virology_white,
/turf/open/floor/plasteel/white,
/area/medical/virology)
-"bVc" = (
-/obj/structure/sink{
- icon_state = "sink";
- dir = 8;
- pixel_x = -12;
- pixel_y = 2
- },
-/obj/machinery/doorButtons/access_button{
- idDoor = "virology_airlock_interior";
- idSelf = "virology_airlock_control";
- name = "Virology Access Button";
- pixel_x = 8;
- pixel_y = -28;
- req_access_txt = "39"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bVd" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- on = 1
+"bQG" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bVe" = (
+/turf/open/floor/plating,
+/area/toxins/misc_lab)
+"bQH" = (
/obj/structure/closet/l3closet,
/obj/effect/turf_decal/stripes/line{
dir = 6
},
/turf/open/floor/plasteel/white,
/area/medical/virology)
-"bVf" = (
+"bQI" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel,
+/area/toxins/misc_lab)
+"bQJ" = (
/obj/effect/landmark{
name = "blobstart"
},
/turf/open/floor/plasteel/white,
/area/medical/virology)
-"bVg" = (
+"bQK" = (
+/obj/machinery/door/airlock/glass_command{
+ name = "Control Room";
+ req_access_txt = "19; 61"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/tcommsat/computer)
+"bQL" = (
/obj/machinery/door/firedoor,
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
-"bVh" = (
+"bQM" = (
/obj/machinery/door/firedoor,
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
-"bVi" = (
+"bQN" = (
/obj/machinery/door/firedoor,
/obj/machinery/light{
icon_state = "tube1";
- dir = 4
+ dir = 4
},
/obj/machinery/camera{
c_tag = "Xenobiology North";
- dir = 8;
- network = list("SS13","RD")
+ dir = 8;
+ network = list("SS13","RD")
},
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
-"bVj" = (
+"bQO" = (
/obj/structure/closet/bombcloset,
/obj/machinery/light_switch{
pixel_x = -20;
- pixel_y = 0
+ pixel_y = 0
},
/turf/open/floor/plasteel,
/area/toxins/misc_lab)
-"bVk" = (
-/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"bVl" = (
-/turf/open/floor/plasteel/floorgrime,
-/area/toxins/misc_lab)
-"bVm" = (
-/obj/machinery/requests_console{
- department = "Science";
- departmentType = 2;
- dir = 2;
- name = "Science Requests Console";
- pixel_x = 0;
- pixel_y = 30
+"bQP" = (
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/grille,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/tcommsat/computer)
+"bQQ" = (
+/obj/machinery/door/firedoor,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"bVn" = (
+/area/hallway/primary/aft)
+"bQR" = (
/obj/structure/table,
/obj/structure/window/reinforced{
dir = 4
@@ -45169,37 +43529,51 @@
/obj/item/clothing/ears/earmuffs,
/obj/machinery/camera{
c_tag = "Testing Lab North";
- dir = 2;
- network = list("SS13","RD")
+ dir = 2;
+ network = list("SS13","RD")
},
/turf/open/floor/plasteel,
/area/toxins/misc_lab)
-"bVo" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 4
+"bQS" = (
+/obj/machinery/requests_console{
+ department = "Science";
+ departmentType = 2;
+ dir = 2;
+ name = "Science Requests Console";
+ pixel_x = 0;
+ pixel_y = 30
},
-/turf/open/floor/engine,
+/turf/open/floor/plasteel,
/area/toxins/misc_lab)
-"bVp" = (
+"bQT" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 1
},
/turf/open/floor/engine,
/area/toxins/misc_lab)
-"bVq" = (
+"bQU" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/toxins/misc_lab)
+"bQV" = (
/obj/machinery/atmospherics/components/trinary/filter{
dir = 4;
- req_access = null
+ req_access = null
},
/turf/open/floor/engine,
/area/toxins/misc_lab)
-"bVr" = (
+"bQW" = (
/obj/machinery/atmospherics/components/unary/thermomachine/heater{
dir = 8
},
/turf/open/floor/engine,
/area/toxins/misc_lab)
-"bVs" = (
+"bQX" = (
+/turf/open/floor/plasteel/floorgrime,
+/area/toxins/misc_lab)
+"bQY" = (
/obj/machinery/light/small{
dir = 1
},
@@ -45208,7 +43582,10 @@
},
/turf/open/floor/plasteel,
/area/toxins/misc_lab)
-"bVt" = (
+"bQZ" = (
+/turf/closed/wall/r_wall,
+/area/toxins/misc_lab)
+"bRa" = (
/obj/machinery/light/small{
dir = 1
},
@@ -45217,172 +43594,168 @@
},
/turf/open/floor/plasteel,
/area/toxins/misc_lab)
-"bVu" = (
-/turf/closed/wall/r_wall,
-/area/toxins/misc_lab)
-"bVv" = (
+"bRb" = (
/obj/structure/rack,
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"bVw" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/light/small{
- dir = 8
+"bRc" = (
+/obj/structure/table/wood,
+/obj/item/weapon/soap/nanotrasen,
+/turf/open/floor/wood{
+ icon_state = "wood-broken7"
},
-/turf/open/floor/plating,
/area/maintenance/aft)
-"bVx" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/open/floor/plating,
+"bRd" = (
+/obj/structure/table,
+/obj/machinery/chem_dispenser/drinks/beer,
+/turf/open/floor/wood,
/area/maintenance/aft)
-"bVy" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+"bRe" = (
+/obj/structure/table/wood,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 4;
+ name = "4maintenance loot spawner"
},
-/obj/machinery/light/small,
-/turf/open/floor/plating,
+/turf/open/floor/wood,
/area/maintenance/aft)
-"bVz" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+"bRf" = (
+/obj/structure/table/wood,
+/turf/open/floor/wood{
+ icon_state = "wood-broken5"
},
-/turf/open/floor/plating,
/area/maintenance/aft)
-"bVA" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+"bRg" = (
+/turf/closed/wall,
+/area/maintenance/bar)
+"bRh" = (
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 3;
+ name = "3maintenance loot spawner"
+ },
/turf/open/floor/plating,
/area/maintenance/aft)
-"bVB" = (
-/obj/structure/disposalpipe/segment{
+"bRi" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
- icon_state = "pipe-c"
+ on = 1
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"bRj" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bVC" = (
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/machinery/door/airlock/maintenance{
- name = "Construction Area Maintenance";
- req_access_txt = "32"
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"bRk" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+ dir = 9
},
-/turf/open/floor/plating,
-/area/construction)
-"bVD" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
+/turf/open/floor/plasteel/red/side{
+ dir = 8
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+/area/security/checkpoint/engineering)
+"bRl" = (
+/obj/structure/light_construct{
+ dir = 8
},
/turf/open/floor/plating,
/area/construction)
-"bVE" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+"bRm" = (
+/obj/machinery/door/airlock/glass_security{
+ name = "Security Office";
+ req_access_txt = "63"
},
-/turf/open/floor/plating,
-/area/construction)
-"bVF" = (
-/obj/machinery/light_switch{
- pixel_x = 27
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel,
-/area/construction)
-"bVG" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+/area/security/checkpoint/engineering)
+"bRn" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall,
/area/construction)
-"bVH" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+"bRo" = (
+/obj/machinery/computer/secure_data,
+/obj/machinery/light_switch{
+ pixel_x = 27
+ },
+/turf/open/floor/plasteel/red/side{
dir = 4
},
+/area/security/checkpoint/engineering)
+"bRp" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
/turf/open/floor/plasteel/caution/corner{
dir = 8
},
/area/hallway/primary/aft)
-"bVI" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+"bRq" = (
+/turf/open/floor/plasteel/caution{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
+/area/hallway/primary/aft)
+"bRr" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/effect/landmark/start{
+ name = "Atmospheric Technician"
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bVJ" = (
+/area/atmos)
+"bRs" = (
/obj/structure/table/reinforced,
/obj/machinery/door/firedoor/heavy,
/obj/machinery/door/window/northleft{
dir = 4;
- icon_state = "left";
- name = "Atmospherics Desk";
- req_access_txt = "24"
+ icon_state = "left";
+ name = "Atmospherics Desk";
+ req_access_txt = "24"
},
/obj/machinery/door/poddoor/preopen{
id = "atmos";
- layer = 2.9;
- name = "atmos blast door"
+ layer = 2.9;
+ name = "atmos blast door"
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel{
name = "floor"
},
/area/atmos)
-"bVK" = (
-/obj/structure/chair{
- dir = 8
- },
-/obj/effect/landmark/start{
- name = "Atmospheric Technician"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/atmos)
-"bVL" = (
+"bRt" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/atmos)
-"bVM" = (
+"bRu" = (
+/obj/machinery/computer/atmos_alert,
+/turf/open/floor/plasteel/caution{
+ dir = 4
+ },
+/area/atmos)
+"bRv" = (
/obj/structure/chair/office/dark{
dir = 4
},
@@ -45391,118 +43764,104 @@
},
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
+ external_pressure_bound = 101.325;
+ on = 1;
+ pressure_checks = 1
},
/turf/open/floor/plasteel,
/area/atmos)
-"bVN" = (
-/obj/machinery/computer/atmos_alert,
-/turf/open/floor/plasteel/caution{
+"bRw" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 4
},
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/open/floor/plasteel,
/area/atmos)
-"bVO" = (
+"bRx" = (
/obj/structure/grille,
/obj/structure/window/fulltile,
/turf/open/floor/plating,
/area/atmos)
-"bVP" = (
+"bRy" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 4
+ dir = 8
},
-/obj/machinery/portable_atmospherics/canister/oxygen,
/turf/open/floor/plasteel,
/area/atmos)
-"bVQ" = (
+"bRz" = (
/obj/machinery/atmospherics/components/trinary/mixer{
dir = 8
},
/turf/open/floor/plasteel,
/area/atmos)
-"bVR" = (
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 8
+"bRA" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 4
},
/turf/open/floor/plasteel,
/area/atmos)
-"bVS" = (
+"bRB" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 6
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bVT" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 4
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/open/floor/plasteel,
/area/atmos)
-"bVU" = (
+"bRC" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 4
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_atmos{
name = "Distribution Loop";
- req_access_txt = "24"
+ req_access_txt = "24"
},
/turf/open/floor/plasteel,
/area/atmos)
-"bVV" = (
+"bRD" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 9
},
/turf/open/floor/plasteel,
/area/atmos)
-"bVW" = (
-/obj/machinery/atmospherics/pipe/simple/yellow/visible{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bVX" = (
+"bRE" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 1;
- name = "Pure to Mix";
- on = 0
+ name = "Pure to Mix";
+ on = 0
},
/turf/open/floor/plasteel,
/area/atmos)
-"bVY" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 5;
- initialize_directions = 12
+"bRF" = (
+/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+ dir = 9
},
/turf/open/floor/plasteel,
/area/atmos)
-"bVZ" = (
+"bRG" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 1;
- name = "Unfiltered to Mix";
- on = 1
+ name = "Unfiltered to Mix";
+ on = 1
},
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 4;
- initialize_directions = 12
+ initialize_directions = 12
},
/turf/open/floor/plasteel,
/area/atmos)
-"bWa" = (
+"bRH" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4
- },
-/turf/open/floor/plasteel/green/side{
- dir = 6
+ dir = 5;
+ initialize_directions = 12
},
+/turf/open/floor/plasteel,
/area/atmos)
-"bWb" = (
+"bRI" = (
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/obj/machinery/atmospherics/pipe/simple/green/visible{
@@ -45511,190 +43870,210 @@
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/atmos)
-"bWc" = (
-/obj/structure/lattice,
+"bRJ" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 4
},
+/turf/open/floor/plasteel/green/side{
+ dir = 6
+ },
+/area/atmos)
+"bRK" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+ dir = 4
+ },
/turf/open/space,
/area/space/nearstation)
-"bWd" = (
+"bRL" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 8;
- frequency = 1441;
- id = "mix_in";
- pixel_y = 1
+ frequency = 1441;
+ id = "mix_in";
+ pixel_y = 1
},
/turf/open/floor/engine/vacuum,
/area/atmos)
-"bWe" = (
+"bRM" = (
/obj/structure/table,
/obj/machinery/light_switch{
pixel_x = -23;
- pixel_y = 0
+ pixel_y = 0
},
/obj/machinery/reagentgrinder,
/turf/open/floor/plasteel/white,
/area/medical/virology)
-"bWf" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- on = 1
- },
-/turf/open/floor/plasteel/white,
+"bRN" = (
+/turf/closed/wall,
/area/medical/virology)
-"bWg" = (
+"bRO" = (
/obj/machinery/firealarm{
dir = 4;
- pixel_x = 24
+ pixel_x = 24
},
/turf/open/floor/plasteel/white,
/area/medical/virology)
-"bWh" = (
+"bRP" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/virology{
autoclose = 0;
- frequency = 1449;
- icon_state = "door_locked";
- id_tag = "virology_airlock_interior";
- locked = 1;
- name = "Virology Interior Airlock";
- req_access_txt = "39"
+ frequency = 1449;
+ icon_state = "door_locked";
+ id_tag = "virology_airlock_interior";
+ locked = 1;
+ name = "Virology Interior Airlock";
+ req_access_txt = "39"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/white,
/area/medical/virology)
-"bWi" = (
+"bRQ" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/medical/virology)
-"bWj" = (
+"bRR" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_virology{
name = "Monkey Pen";
- req_access_txt = "39"
+ req_access_txt = "39"
},
/turf/open/floor/plasteel/white,
/area/medical/virology)
-"bWk" = (
+"bRS" = (
+/obj/structure/chair/office/dark,
+/obj/effect/landmark/start/depsec/engineering,
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel,
+/area/security/checkpoint/engineering)
+"bRT" = (
/obj/structure/disposalpipe/trunk{
dir = 4
},
/obj/structure/disposaloutlet,
/turf/open/floor/engine,
/area/toxins/xenobiology)
-"bWl" = (
+"bRU" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/engine,
/area/toxins/xenobiology)
-"bWm" = (
+"bRV" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plasteel,
+/area/toxins/xenobiology)
+"bRW" = (
/obj/structure/grille,
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/structure/cable{
icon_state = "0-2";
- d2 = 2
+ d2 = 2
},
/obj/machinery/door/poddoor/preopen{
id = "xenobio3";
- name = "containment blast door"
+ name = "containment blast door"
},
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/engine,
/area/toxins/xenobiology)
-"bWn" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 8
- },
-/obj/structure/window/reinforced,
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
-"bWo" = (
+"bRX" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 4;
+ icon_state = "1-4"
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"bWp" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
-"bWq" = (
+"bRY" = (
/obj/structure/window/reinforced,
/obj/structure/table/reinforced,
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
},
/obj/machinery/button/door{
id = "xenobio8";
- name = "Containment Blast Doors";
- pixel_x = 0;
- pixel_y = 4;
- req_access_txt = "55"
+ name = "Containment Blast Doors";
+ pixel_x = 0;
+ pixel_y = 4;
+ req_access_txt = "55"
},
/obj/effect/turf_decal/stripes/line{
dir = 10
},
/turf/open/floor/plasteel,
/area/toxins/xenobiology)
-"bWr" = (
+"bRZ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"bSa" = (
/obj/structure/grille,
/obj/structure/cable{
icon_state = "0-2";
- d2 = 2
+ d2 = 2
},
/obj/structure/cable{
d2 = 8;
- icon_state = "0-8"
+ icon_state = "0-8"
},
/obj/machinery/door/poddoor/preopen{
id = "xenobio8";
- name = "containment blast door"
+ name = "containment blast door"
},
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/engine,
/area/toxins/xenobiology)
-"bWs" = (
+"bSb" = (
/obj/structure/closet/l3closet/scientist{
pixel_x = -2
},
/turf/open/floor/plasteel,
/area/toxins/misc_lab)
-"bWt" = (
-/obj/structure/chair/stool,
-/turf/open/floor/plasteel/floorgrime,
+"bSc" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
/area/toxins/misc_lab)
-"bWu" = (
+"bSd" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/tcommsat/computer)
+"bSe" = (
/obj/structure/table,
/obj/structure/window/reinforced{
dir = 4
@@ -45704,30 +44083,34 @@
/obj/item/device/assembly/signaler,
/turf/open/floor/plasteel,
/area/toxins/misc_lab)
-"bWv" = (
+"bSf" = (
+/obj/structure/chair/stool,
+/turf/open/floor/plasteel/floorgrime,
+/area/toxins/misc_lab)
+"bSg" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 4;
- initialize_directions = 11
+ initialize_directions = 11
},
/turf/open/floor/engine,
/area/toxins/misc_lab)
-"bWw" = (
+"bSh" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible,
+/turf/open/floor/engine,
+/area/toxins/misc_lab)
+"bSi" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 8
},
/turf/open/floor/engine,
/area/toxins/misc_lab)
-"bWx" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible,
-/turf/open/floor/engine,
-/area/toxins/misc_lab)
-"bWy" = (
+"bSj" = (
/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
dir = 8
},
/turf/open/floor/engine,
/area/toxins/misc_lab)
-"bWz" = (
+"bSk" = (
/obj/machinery/magnetic_module,
/obj/effect/landmark{
name = "blobstart"
@@ -45740,161 +44123,166 @@
dir = 2
},
/area/toxins/misc_lab)
-"bWA" = (
+"bSl" = (
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 4;
+ icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/disposalpipe/segment{
dir = 1;
- icon_state = "pipe-c"
+ icon_state = "pipe-c"
},
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"bWB" = (
+"bSm" = (
/obj/structure/cable{
d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d2 = 8;
+ icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment{
dir = 2;
- icon_state = "pipe-c"
+ icon_state = "pipe-c"
},
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
/area/maintenance/asmaint2)
-"bWC" = (
+"bSn" = (
+/obj/machinery/space_heater,
+/turf/open/floor/wood,
+/area/maintenance/aft)
+"bSo" = (
/obj/structure/rack{
dir = 8;
- layer = 2.9
+ layer = 2.9
},
/obj/effect/spawner/lootdrop/maintenance{
lootcount = 2;
- name = "2maintenance loot spawner"
+ name = "2maintenance loot spawner"
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"bWD" = (
-/obj/structure/closet/crate,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
- },
+"bSp" = (
+/obj/structure/grille/broken,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bWE" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+"bSq" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
},
+/obj/item/weapon/tank/internals/emergency_oxygen,
+/obj/item/weapon/tank/internals/emergency_oxygen,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/mask/breath,
+/obj/effect/decal/cleanable/cobweb,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bWF" = (
-/turf/closed/wall,
-/area/maintenance/bar)
-"bWG" = (
+"bSr" = (
+/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bWH" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+"bSs" = (
+/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bWI" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 1
+"bSt" = (
+/obj/structure/closet/emcloset,
+/obj/machinery/camera{
+ c_tag = "Telecoms Monitoring";
+ dir = 8;
+ network = list("SS13")
},
-/turf/open/floor/plating,
-/area/construction)
-"bWJ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/tcommsat/computer)
+"bSu" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"bSv" = (
/obj/machinery/camera{
c_tag = "Construction Area";
- dir = 1
- },
-/turf/open/floor/plating,
-/area/construction)
-"bWK" = (
-/obj/structure/rack{
dir = 1
},
-/obj/item/clothing/suit/hazardvest,
/turf/open/floor/plating,
/area/construction)
-"bWL" = (
-/obj/structure/table,
-/obj/item/stack/cable_coil{
- amount = 5
+"bSw" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/item/device/flashlight,
-/turf/open/floor/plating,
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bSx" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
/area/construction)
-"bWM" = (
+"bSy" = (
+/obj/machinery/light/small,
+/turf/open/floor/plasteel/grimy,
+/area/security/detectives_office)
+"bSz" = (
/obj/structure/table,
/turf/open/floor/plating,
/area/construction)
-"bWN" = (
+"bSA" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/caution/corner{
dir = 8
},
/area/hallway/primary/aft)
-"bWO" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bWP" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/door/poddoor/preopen{
- id = "atmos";
- layer = 2.9;
- name = "atmos blast door"
- },
-/turf/open/floor/plating,
-/area/atmos)
-"bWQ" = (
+"bSB" = (
/obj/machinery/firealarm{
dir = 1;
- pixel_y = -24
+ pixel_y = -24
},
/obj/structure/table,
/obj/item/weapon/tank/internals/emergency_oxygen{
pixel_x = -8;
- pixel_y = 0
+ pixel_y = 0
},
/obj/item/weapon/tank/internals/emergency_oxygen{
pixel_x = -8;
- pixel_y = 0
+ pixel_y = 0
},
/obj/item/clothing/mask/breath{
pixel_x = 4;
- pixel_y = 0
+ pixel_y = 0
},
/obj/item/clothing/mask/breath{
pixel_x = 4;
- pixel_y = 0
+ pixel_y = 0
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/atmos)
-"bWR" = (
+"bSC" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/door/poddoor/preopen{
+ id = "atmos";
+ layer = 2.9;
+ name = "atmos blast door"
+ },
+/turf/open/floor/plating,
+/area/atmos)
+"bSD" = (
/obj/structure/sign/atmosplaque{
pixel_x = 0;
- pixel_y = -32
+ pixel_y = -32
},
/obj/structure/table,
/obj/item/weapon/storage/box,
@@ -45902,32 +44290,32 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/atmos)
-"bWS" = (
+"bSE" = (
/obj/machinery/computer/station_alert,
/obj/machinery/light{
dir = 4;
- icon_state = "tube1"
+ icon_state = "tube1"
},
/obj/machinery/button/door{
id = "atmos";
- name = "Atmospherics Lockdown";
- pixel_x = 24;
- pixel_y = 4;
- req_access_txt = "24"
+ name = "Atmospherics Lockdown";
+ pixel_x = 24;
+ pixel_y = 4;
+ req_access_txt = "24"
},
/turf/open/floor/plasteel/caution{
dir = 6
},
/area/atmos)
-"bWT" = (
+"bSF" = (
/obj/structure/table,
/obj/item/clothing/head/welding{
pixel_x = -3;
- pixel_y = 7
+ pixel_y = 7
},
/obj/item/clothing/head/welding{
pixel_x = -5;
- pixel_y = 3
+ pixel_y = 3
},
/obj/machinery/light{
dir = 8
@@ -45935,74 +44323,75 @@
/obj/item/device/multitool,
/turf/open/floor/plasteel,
/area/atmos)
-"bWU" = (
+"bSG" = (
/obj/structure/table,
-/obj/item/stack/sheet/glass{
+/obj/item/stack/sheet/metal{
amount = 50
},
-/obj/item/weapon/storage/belt/utility,
-/obj/item/device/t_scanner,
-/obj/item/device/t_scanner,
-/obj/item/device/t_scanner,
+/obj/item/stack/sheet/metal{
+ amount = 50;
+ pixel_x = 2;
+ pixel_y = 2
+ },
/turf/open/floor/plasteel,
/area/atmos)
-"bWV" = (
+"bSH" = (
/obj/structure/table,
-/obj/item/stack/sheet/metal{
+/obj/item/stack/sheet/glass{
amount = 50
},
-/obj/item/stack/sheet/metal{
- amount = 50;
- pixel_x = 2;
- pixel_y = 2
- },
+/obj/item/weapon/storage/belt/utility,
+/obj/item/device/t_scanner,
+/obj/item/device/t_scanner,
+/obj/item/device/t_scanner,
/turf/open/floor/plasteel,
/area/atmos)
-"bWW" = (
+"bSI" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/open/floor/plasteel,
/area/atmos)
-"bWX" = (
+"bSJ" = (
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 6;
- initialize_directions = 6
+ dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/yellow/visible,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/atmos)
-"bWY" = (
+"bSK" = (
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 4
+ dir = 6;
+ initialize_directions = 6
},
-/obj/machinery/atmospherics/pipe/simple/yellow/visible,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/atmos)
-"bWZ" = (
-/obj/structure/grille,
+"bSL" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
},
+/obj/structure/grille,
+/obj/machinery/atmospherics/pipe/simple/yellow/visible,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/atmos)
-"bXa" = (
+"bSM" = (
+/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
},
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/yellow/visible,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/atmos)
-"bXb" = (
+"bSN" = (
+/obj/machinery/atmospherics/pipe/simple/green/visible,
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
},
@@ -46010,8 +44399,7 @@
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/atmos)
-"bXc" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible,
+"bSO" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
},
@@ -46019,370 +44407,400 @@
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/atmos)
-"bXd" = (
+"bSP" = (
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
dir = 4;
- initialize_directions = 11
+ initialize_directions = 11
},
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/atmos)
-"bXe" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bXf" = (
+"bSQ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/white,
/area/medical/virology)
-"bXg" = (
+"bSR" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/caution/corner{
+ dir = 8
+ },
+/area/hallway/primary/aft)
+"bSS" = (
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/virology{
name = "Break Room";
- req_access_txt = "39"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bXh" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = -5;
- pixel_y = 30
+ req_access_txt = "39"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/white,
/area/medical/virology)
-"bXi" = (
+"bST" = (
/obj/machinery/doorButtons/airlock_controller{
idExterior = "virology_airlock_exterior";
- idInterior = "virology_airlock_interior";
- idSelf = "virology_airlock_control";
- name = "Virology Access Console";
- pixel_x = 8;
- pixel_y = 22;
- req_access_txt = "39"
+ idInterior = "virology_airlock_interior";
+ idSelf = "virology_airlock_control";
+ name = "Virology Access Console";
+ pixel_x = 8;
+ pixel_y = 22;
+ req_access_txt = "39"
},
/obj/machinery/light_switch{
pixel_x = -4;
- pixel_y = 24
+ pixel_y = 24
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/white,
/area/medical/virology)
-"bXj" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+"bSU" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -5;
+ pixel_y = 30
},
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/white,
/area/medical/virology)
-"bXk" = (
+"bSV" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
/obj/machinery/firealarm{
pixel_y = 25
},
/turf/open/floor/plasteel/white,
/area/medical/virology)
-"bXl" = (
+"bSW" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"bSX" = (
/obj/machinery/power/apc{
cell_type = 5000;
- dir = 1;
- name = "Virology APC";
- pixel_x = 0;
- pixel_y = 24
+ dir = 1;
+ name = "Virology APC";
+ pixel_x = 0;
+ pixel_y = 24
},
/obj/structure/cable{
d2 = 8;
- icon_state = "0-8"
+ icon_state = "0-8"
},
/obj/machinery/camera{
c_tag = "Virology Module"
},
/turf/open/floor/plasteel/white,
/area/medical/virology)
-"bXm" = (
+"bSY" = (
/obj/machinery/vending/medical,
/turf/open/floor/plasteel/white,
/area/medical/virology)
-"bXn" = (
+"bSZ" = (
/obj/effect/landmark{
name = "revenantspawn"
},
/turf/open/floor/engine,
/area/toxins/xenobiology)
-"bXo" = (
+"bTa" = (
+/obj/machinery/door/window/northleft{
+ dir = 4;
+ name = "Containment Pen";
+ req_access_txt = "55"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/toxins/xenobiology)
+"bTb" = (
/obj/machinery/door/window/northleft{
base_state = "right";
- dir = 8;
- icon_state = "right";
- name = "Containment Pen";
- req_access_txt = "55"
+ dir = 8;
+ icon_state = "right";
+ name = "Containment Pen";
+ req_access_txt = "55"
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
/obj/machinery/door/poddoor/preopen{
id = "xenobio3";
- name = "containment blast door"
+ name = "containment blast door"
},
/turf/open/floor/engine,
/area/toxins/xenobiology)
-"bXp" = (
-/obj/machinery/door/window/northleft{
- dir = 4;
- name = "Containment Pen";
- req_access_txt = "55"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/toxins/xenobiology)
-"bXq" = (
+"bTc" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
-"bXr" = (
+"bTd" = (
/obj/machinery/door/window/northleft{
base_state = "right";
- dir = 8;
- icon_state = "right";
- name = "Containment Pen";
- req_access_txt = "55"
+ dir = 8;
+ icon_state = "right";
+ name = "Containment Pen";
+ req_access_txt = "55"
},
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
/area/toxins/xenobiology)
-"bXs" = (
+"bTe" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
/obj/machinery/door/window/northleft{
dir = 4;
- name = "Containment Pen";
- req_access_txt = "55"
+ name = "Containment Pen";
+ req_access_txt = "55"
},
/obj/machinery/door/poddoor/preopen{
id = "xenobio8";
- name = "containment blast door"
+ name = "containment blast door"
},
/turf/open/floor/engine,
/area/toxins/xenobiology)
-"bXt" = (
+"bTf" = (
/obj/structure/rack,
-/obj/item/clothing/mask/gas{
- pixel_x = 3;
- pixel_y = 3
+/obj/item/weapon/wrench,
+/obj/item/weapon/crowbar,
+/obj/machinery/computer/security/telescreen{
+ name = "Test Chamber Moniter";
+ network = list("Test");
+ pixel_x = 0;
+ pixel_y = -30
},
-/obj/item/clothing/mask/gas,
-/obj/item/clothing/mask/gas{
- pixel_x = -3;
- pixel_y = -3
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/turf/open/floor/plasteel/floorgrime,
+/area/toxins/misc_lab)
+"bTg" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/airalarm{
- dir = 4;
- locked = 0;
- pixel_x = -23;
- pixel_y = 0
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
},
/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"bXu" = (
+/area/engine/break_room)
+"bTh" = (
+/obj/machinery/holopad,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"bTi" = (
/obj/structure/table,
-/obj/machinery/cell_charger{
- pixel_y = 5
+/obj/machinery/recharger{
+ pixel_y = 4
},
-/obj/item/stack/cable_coil,
-/obj/item/device/multitool,
-/obj/item/weapon/stock_parts/cell/high/plus,
-/obj/structure/window/reinforced{
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"bXv" = (
-/turf/open/floor/engine,
-/area/toxins/misc_lab)
-"bXw" = (
+/turf/open/floor/plasteel/red/side{
+ dir = 10
+ },
+/area/security/checkpoint/engineering)
+"bTj" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/security/checkpoint/engineering)
+"bTk" = (
/obj/machinery/atmospherics/components/binary/valve,
/turf/open/floor/engine,
/area/toxins/misc_lab)
-"bXx" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible,
+"bTl" = (
/turf/open/floor/engine,
/area/toxins/misc_lab)
-"bXy" = (
-/obj/item/pipe{
- dir = 4;
- icon_state = "mixer";
- name = "gas mixer fitting";
- pipe_type = 14
- },
+"bTm" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible,
/turf/open/floor/engine,
/area/toxins/misc_lab)
-"bXz" = (
+"bTn" = (
/obj/structure/table,
/obj/item/device/assembly/igniter{
pixel_x = -5;
- pixel_y = 3
+ pixel_y = 3
},
/obj/item/device/assembly/igniter{
pixel_x = 5;
- pixel_y = -4
+ pixel_y = -4
},
/obj/item/device/assembly/igniter{
pixel_x = 2;
- pixel_y = 6
+ pixel_y = 6
},
/obj/item/device/assembly/igniter{
pixel_x = 2;
- pixel_y = -1
+ pixel_y = -1
},
/obj/machinery/light{
dir = 4;
- icon_state = "tube1"
+ icon_state = "tube1"
},
/obj/item/device/assembly/timer{
pixel_x = -3;
- pixel_y = 3
+ pixel_y = 3
},
/obj/item/device/assembly/timer{
pixel_x = -3;
- pixel_y = 3
+ pixel_y = 3
},
/obj/item/device/assembly/timer{
pixel_x = -3;
- pixel_y = 3
+ pixel_y = 3
},
/obj/item/device/assembly/timer{
pixel_x = -3;
- pixel_y = 3
+ pixel_y = 3
},
/turf/open/floor/engine,
/area/toxins/misc_lab)
-"bXA" = (
+"bTo" = (
/obj/effect/turf_decal/stripes/line{
dir = 10
},
/turf/open/floor/plasteel,
/area/toxins/misc_lab)
-"bXB" = (
+"bTp" = (
/obj/effect/turf_decal/stripes/line{
dir = 6
},
/turf/open/floor/plasteel,
/area/toxins/misc_lab)
-"bXC" = (
+"bTq" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall,
/area/toxins/misc_lab)
-"bXD" = (
+"bTr" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"bXE" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+"bTs" = (
+/turf/open/floor/wood{
+ icon_state = "wood-broken5"
},
-/turf/open/floor/plating,
/area/maintenance/aft)
-"bXF" = (
-/obj/machinery/light/small{
- dir = 8
+"bTt" = (
+/obj/machinery/atmospherics/pipe/simple/general/hidden{
+ icon_state = "intact";
+ dir = 4
},
-/turf/open/floor/plasteel/freezer,
-/area/maintenance/bar)
-"bXG" = (
-/obj/machinery/shower{
- dir = 8
+/turf/open/floor/wood{
+ icon_state = "wood-broken6"
},
-/obj/item/weapon/soap,
-/turf/open/floor/plasteel/freezer,
-/area/maintenance/bar)
-"bXH" = (
-/obj/machinery/vending/autodrobe{
- req_access_txt = "0"
+/area/maintenance/aft)
+"bTu" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
},
/turf/open/floor/wood,
-/area/maintenance/bar)
-"bXI" = (
-/obj/machinery/vending/clothing,
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"bXJ" = (
-/obj/machinery/vending/kink,
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"bXK" = (
-/obj/structure/table/wood,
-/obj/machinery/newscaster{
- pixel_y = 32
+/area/maintenance/aft)
+"bTv" = (
+/obj/machinery/atmospherics/pipe/simple/general/hidden{
+ icon_state = "intact";
+ dir = 4
},
-/obj/item/weapon/reagent_containers/spray/cleaner,
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"bXL" = (
-/obj/structure/table/wood,
-/obj/machinery/firealarm{
- pixel_y = 24
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"bTw" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
},
-/obj/item/weapon/paper_bin,
-/obj/item/weapon/pen,
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"bXM" = (
+/obj/machinery/atmospherics/pipe/simple/general/hidden{
+ icon_state = "intact";
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"bTx" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ icon_state = "connector_map";
+ dir = 8
+ },
+/obj/machinery/portable_atmospherics/canister/air,
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"bTy" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/obj/machinery/atmospherics/pipe/simple/general/hidden{
+ icon_state = "intact";
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/fsmaint2)
+"bTz" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"bTA" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/maintenance/aft)
+"bTB" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
/turf/closed/wall,
/area/maintenance/bar)
-"bXN" = (
+"bTC" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/turf/closed/wall,
+/area/maintenance/aft)
+"bTD" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -46391,53 +44809,65 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bXO" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/closed/wall,
+"bTE" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
/area/maintenance/aft)
-"bXP" = (
+"bTF" = (
/obj/structure/closet/emcloset,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"bXQ" = (
+"bTG" = (
+/obj/structure/table,
+/obj/item/weapon/paper_bin{
+ pixel_x = 1;
+ pixel_y = 9
+ },
+/obj/item/weapon/pen,
+/obj/structure/reagent_dispensers/peppertank{
+ pixel_x = 30;
+ pixel_y = 0
+ },
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
+ dir = 4
},
-/turf/closed/wall,
-/area/maintenance/aft)
-"bXR" = (
+/turf/open/floor/plasteel/red/side{
+ dir = 6
+ },
+/area/security/checkpoint/engineering)
+"bTH" = (
+/obj/structure/table,
+/obj/item/weapon/book/manual/wiki/security_space_law,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/turf/open/floor/plasteel/red/side,
+/area/security/checkpoint/engineering)
+"bTI" = (
+/obj/machinery/holopad,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/tcommsat/computer)
+"bTJ" = (
/obj/machinery/power/apc{
name = "Aft Hall APC";
- dir = 8;
- pixel_x = -25;
- pixel_y = 1
+ dir = 8;
+ pixel_x = -25;
+ pixel_y = 1
},
/obj/structure/cable{
icon_state = "0-4";
- d2 = 4
+ d2 = 4
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/caution/corner{
dir = 8
},
/area/hallway/primary/aft)
-"bXS" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bXT" = (
+"bTK" = (
/obj/item/weapon/crowbar,
/obj/item/weapon/wrench,
/obj/structure/window/reinforced,
@@ -46445,199 +44875,192 @@
dir = 6
},
/area/hallway/primary/aft)
-"bXU" = (
+"bTL" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall,
/area/atmos)
-"bXV" = (
+"bTM" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall,
/area/atmos)
-"bXW" = (
+"bTN" = (
/obj/machinery/door/firedoor/heavy,
/obj/machinery/door/airlock/glass_atmos{
name = "Atmospherics Monitoring";
- req_access_txt = "24"
+ req_access_txt = "24"
},
/turf/open/floor/plasteel,
/area/atmos)
-"bXX" = (
+"bTO" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 6;
- initialize_directions = 6
+ initialize_directions = 6
},
/turf/open/floor/plasteel,
/area/atmos)
-"bXY" = (
+"bTP" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
},
/turf/open/floor/plasteel,
/area/atmos)
-"bXZ" = (
-/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
- dir = 4;
- initialize_directions = 11
- },
+"bTQ" = (
+/obj/machinery/atmospherics/pipe/simple/yellow/visible,
/obj/machinery/meter,
/turf/open/floor/plasteel,
/area/atmos)
-"bYa" = (
-/obj/machinery/atmospherics/pipe/simple/yellow/visible,
+"bTR" = (
+/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
+ dir = 4;
+ initialize_directions = 11
+ },
/obj/machinery/meter,
/turf/open/floor/plasteel,
/area/atmos)
-"bYb" = (
+"bTS" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
dir = 6
},
/obj/machinery/meter,
/turf/open/floor/plasteel,
/area/atmos)
-"bYc" = (
-/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bYd" = (
+"bTT" = (
/obj/machinery/atmospherics/pipe/simple/green/visible,
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
dir = 4
},
/turf/open/floor/plasteel,
/area/atmos)
-"bYe" = (
+"bTU" = (
+/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bTV" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 8;
- name = "N2O Outlet Pump";
- on = 0
+ name = "N2O Outlet Pump";
+ on = 0
},
/turf/open/floor/plasteel/escape{
dir = 5
},
/area/atmos)
-"bYf" = (
+"bTW" = (
+/turf/open/floor/engine/n2o,
+/area/atmos)
+"bTX" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
- external_pressure_bound = 0;
- frequency = 1441;
- id_tag = "n2o_out";
- initialize_directions = 1;
- internal_pressure_bound = 4000;
- on = 1;
- pressure_checks = 2;
- pump_direction = 0
+ external_pressure_bound = 0;
+ frequency = 1441;
+ id_tag = "n2o_out";
+ initialize_directions = 1;
+ internal_pressure_bound = 4000;
+ on = 1;
+ pressure_checks = 2;
+ pump_direction = 0
},
/turf/open/floor/engine/n2o,
/area/atmos)
-"bYg" = (
-/turf/open/floor/engine/n2o,
-/area/atmos)
-"bYh" = (
+"bTY" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 5
},
/turf/closed/wall/r_wall,
/area/medical/virology)
-"bYi" = (
+"bTZ" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall/r_wall,
/area/medical/virology)
-"bYj" = (
+"bUa" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
/turf/closed/wall,
/area/medical/virology)
-"bYk" = (
+"bUb" = (
/obj/machinery/airalarm{
dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
+ icon_state = "alarm0";
+ pixel_x = -22
},
/obj/structure/sink{
icon_state = "sink";
- dir = 8;
- pixel_x = -12;
- pixel_y = 2
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bYl" = (
-/obj/machinery/holopad,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bYm" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bYn" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
},
/turf/open/floor/plasteel/white,
/area/medical/virology)
-"bYo" = (
-/obj/structure/grille,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/cable,
-/obj/machinery/door/poddoor/preopen{
- id = "xenobio3";
- name = "containment blast door"
+"bUc" = (
+/obj/machinery/requests_console{
+ announcementConsole = 1;
+ department = "Telecoms Admin";
+ departmentType = 5;
+ name = "Telecoms RC";
+ pixel_x = 30;
+ pixel_y = 0
},
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/engine,
-/area/toxins/xenobiology)
-"bYp" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/tcommsat/computer)
+"bUd" = (
/obj/structure/table/reinforced,
/obj/machinery/button/door{
id = "xenobio3";
- name = "Containment Blast Doors";
- pixel_x = 0;
- pixel_y = 4;
- req_access_txt = "55"
+ name = "Containment Blast Doors";
+ pixel_x = 0;
+ pixel_y = 4;
+ req_access_txt = "55"
},
/obj/structure/window/reinforced{
dir = 1
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
/obj/effect/turf_decal/stripes/line{
dir = 5
},
/turf/open/floor/plasteel,
/area/toxins/xenobiology)
-"bYq" = (
+"bUe" = (
+/obj/structure/grille,
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/structure/cable,
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio3";
+ name = "containment blast door"
+ },
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/engine,
+/area/toxins/xenobiology)
+"bUf" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 8;
+ icon_state = "1-8"
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
-"bYr" = (
+"bUg" = (
/obj/structure/window/reinforced{
dir = 1
},
@@ -46650,7 +45073,7 @@
},
/turf/open/floor/plasteel,
/area/toxins/xenobiology)
-"bYs" = (
+"bUh" = (
/obj/structure/grille,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -46658,12 +45081,12 @@
/obj/structure/cable,
/obj/machinery/door/poddoor/preopen{
id = "xenobio8";
- name = "containment blast door"
+ name = "containment blast door"
},
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/engine,
/area/toxins/xenobiology)
-"bYt" = (
+"bUi" = (
/obj/structure/disposalpipe/trunk{
dir = 8
},
@@ -46672,218 +45095,215 @@
},
/turf/open/floor/engine,
/area/toxins/xenobiology)
-"bYu" = (
+"bUj" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 4
},
/obj/machinery/light{
icon_state = "tube1";
- dir = 8
+ dir = 8
},
/turf/open/floor/plasteel/floorgrime,
/area/toxins/misc_lab)
-"bYv" = (
+"bUk" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 10;
- pixel_x = 0;
- initialize_directions = 10
+ pixel_x = 0;
+ initialize_directions = 10
},
/turf/open/floor/plasteel,
/area/toxins/misc_lab)
-"bYw" = (
-/obj/structure/window/reinforced{
- dir = 4
+"bUl" = (
+/obj/structure/disposalpipe/sortjunction{
+ dir = 2;
+ icon_state = "pipe-j2s";
+ sortType = 5
},
-/obj/structure/table,
-/obj/item/weapon/hand_labeler,
-/obj/item/clothing/glasses/science,
-/obj/item/clothing/glasses/science,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/caution/corner{
+ dir = 8
+ },
+/area/hallway/primary/aft)
+"bUm" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"bYx" = (
+/area/engine/break_room)
+"bUn" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 9
},
/turf/open/floor/engine,
/area/toxins/misc_lab)
-"bYy" = (
+"bUo" = (
/obj/structure/table,
/obj/item/weapon/storage/box/beakers{
pixel_x = 2;
- pixel_y = 2
+ pixel_y = 2
},
/obj/item/weapon/grenade/chem_grenade,
/obj/item/weapon/grenade/chem_grenade,
/turf/open/floor/engine,
/area/toxins/misc_lab)
-"bYz" = (
+"bUp" = (
/turf/open/floor/plating,
/area/toxins/misc_lab)
-"bYA" = (
+"bUq" = (
/obj/structure/target_stake,
/obj/effect/decal/cleanable/cobweb,
/turf/open/floor/plating,
/area/toxins/misc_lab)
-"bYB" = (
-/obj/machinery/door/airlock{
- name = "Shower"
+"bUr" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+ icon_state = "intact";
+ dir = 10
},
-/turf/open/floor/plasteel/freezer,
-/area/maintenance/bar)
-"bYC" = (
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"bYD" = (
+/turf/open/space,
+/area/space/nearstation)
+"bUs" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"bUt" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
/turf/open/floor/wood,
/area/maintenance/bar)
-"bYE" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"bYF" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall,
-/area/maintenance/bar)
-"bYG" = (
+"bUu" = (
/obj/structure/cable{
d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d2 = 4;
+ icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
/obj/structure/disposalpipe/junction{
icon_state = "pipe-j1";
- dir = 4
+ dir = 4
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"bYH" = (
-/obj/structure/disposalpipe/junction{
- icon_state = "pipe-y";
- dir = 1
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+"bUv" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bYI" = (
+/turf/closed/wall,
+/area/maintenance/bar)
+"bUw" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"bYJ" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+"bUx" = (
+/obj/structure/disposalpipe/junction{
+ icon_state = "pipe-y";
+ dir = 1
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bYK" = (
+"bUy" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/tcommsat/computer)
+"bUz" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"bYL" = (
+"bUA" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/power/apc{
dir = 1;
- name = "Construction Area APC";
- pixel_y = 24
+ name = "Construction Area APC";
+ pixel_y = 24
},
/obj/structure/cable{
d2 = 8;
- icon_state = "0-8"
+ icon_state = "0-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plating,
/area/construction)
-"bYM" = (
+"bUB" = (
/obj/machinery/power/apc{
dir = 2;
- name = "Telecoms Monitoring APC";
- pixel_y = -24
+ name = "Telecoms Monitoring APC";
+ pixel_y = -24
},
/obj/structure/cable{
d2 = 8;
- icon_state = "0-8"
+ icon_state = "0-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plating,
/area/tcommsat/computer)
-"bYN" = (
+"bUC" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bYO" = (
+/turf/closed/wall/r_wall,
+/area/tcommsat/computer)
+"bUD" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"bYP" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"bYQ" = (
+"bUE" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 4
},
@@ -46892,14 +45312,7 @@
dir = 8
},
/area/atmos)
-"bYR" = (
-/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
- dir = 1
- },
-/obj/machinery/meter,
-/turf/closed/wall/r_wall,
-/area/atmos)
-"bYS" = (
+"bUF" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
},
@@ -46908,14 +45321,21 @@
dir = 8
},
/area/atmos)
-"bYT" = (
+"bUG" = (
+/obj/machinery/atmospherics/pipe/manifold/cyan/visible{
+ dir = 1
+ },
+/obj/machinery/meter,
+/turf/closed/wall/r_wall,
+/area/atmos)
+"bUH" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/atmos)
-"bYU" = (
+"bUI" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
},
@@ -46923,30 +45343,36 @@
dir = 4
},
/area/atmos)
-"bYV" = (
+"bUJ" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
},
/obj/machinery/door/firedoor/heavy,
/obj/machinery/door/airlock/atmos{
name = "Atmospherics";
- req_access_txt = "24"
+ req_access_txt = "24"
},
/turf/open/floor/plasteel,
/area/atmos)
-"bYW" = (
+"bUK" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 8;
- name = "Air to External";
- on = 1
+ name = "Air to External";
+ on = 1
},
/turf/open/floor/plasteel,
/area/atmos)
-"bYX" = (
+"bUL" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 9
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bUM" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
@@ -46954,397 +45380,455 @@
},
/turf/open/floor/plasteel,
/area/atmos)
-"bYY" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 9
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"bYZ" = (
+"bUN" = (
/obj/item/device/radio/beacon,
/turf/open/floor/plasteel,
/area/atmos)
-"bZa" = (
+"bUO" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 0;
- name = "Air to Port";
- on = 0
+ name = "Mix to Port";
+ on = 0
},
/turf/open/floor/plasteel,
/area/atmos)
-"bZb" = (
+"bUP" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 0;
- name = "Mix to Port";
- on = 0
+ name = "Air to Port";
+ on = 0
},
/turf/open/floor/plasteel,
/area/atmos)
-"bZc" = (
+"bUQ" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 0;
- name = "Pure to Port";
- on = 0
+ name = "Pure to Port";
+ on = 0
},
/turf/open/floor/plasteel,
/area/atmos)
-"bZd" = (
-/obj/machinery/atmospherics/pipe/simple/yellow/visible,
+"bUR" = (
+/obj/machinery/atmospherics/pipe/simple/green/visible,
/turf/open/floor/plasteel,
/area/atmos)
-"bZe" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible,
+"bUS" = (
+/obj/machinery/atmospherics/pipe/simple/yellow/visible,
/turf/open/floor/plasteel,
/area/atmos)
-"bZf" = (
+"bUT" = (
/obj/machinery/computer/atmos_control/tank{
frequency = 1441;
- input_tag = "n2o_in";
- name = "Nitrous Oxide Supply Control";
- output_tag = "n2o_out";
- sensors = list("n2o_sensor" = "Tank")
+ input_tag = "n2o_in";
+ name = "Nitrous Oxide Supply Control";
+ output_tag = "n2o_out";
+ sensors = list("n2o_sensor" = "Tank")
},
/turf/open/floor/plasteel/escape{
dir = 4
},
/area/atmos)
-"bZg" = (
+"bUU" = (
+/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
+/turf/open/floor/engine/n2o,
+/area/atmos)
+"bUV" = (
/obj/machinery/air_sensor{
frequency = 1441;
- id_tag = "n2o_sensor"
+ id_tag = "n2o_sensor"
},
/turf/open/floor/engine/n2o,
/area/atmos)
-"bZh" = (
-/obj/machinery/portable_atmospherics/canister/nitrous_oxide,
-/turf/open/floor/engine/n2o,
-/area/atmos)
-"bZi" = (
+"bUW" = (
/obj/machinery/light/small{
dir = 4
},
/turf/open/floor/engine/n2o,
/area/atmos)
-"bZj" = (
+"bUX" = (
/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
+ dir = 4
},
/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ dir = 4
},
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"bZk" = (
+"bUY" = (
/obj/structure/disposalpipe/segment{
- dir = 4
+ dir = 1;
+ icon_state = "pipe-c"
},
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+ dir = 5
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"bZl" = (
+"bUZ" = (
/obj/structure/disposalpipe/segment{
dir = 2;
- icon_state = "pipe-c"
+ icon_state = "pipe-c"
},
/obj/structure/cable{
d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d2 = 8;
+ icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"bZm" = (
+"bVa" = (
/obj/machinery/smartfridge/chemistry/virology,
/turf/open/floor/plasteel/whitegreen/side{
dir = 8
},
/area/medical/virology)
-"bZn" = (
-/obj/structure/chair/stool,
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
+"bVb" = (
+/obj/machinery/light_switch{
+ pixel_x = 27
},
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bZo" = (
-/obj/machinery/computer/pandemic,
-/turf/open/floor/plasteel/whitegreen/side{
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/turf/open/floor/plasteel,
+/area/tcommsat/computer)
+"bVc" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/area/medical/virology)
-"bZp" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/medical/virology)
-"bZq" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_virology{
- name = "Isolation A";
- req_access_txt = "39"
+/turf/open/floor/plasteel/yellow/side{
+ dir = 1
},
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bZr" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/turf/open/floor/plating,
-/area/medical/virology)
-"bZs" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_virology{
- name = "Isolation B";
- req_access_txt = "39"
+/area/hallway/primary/aft)
+"bVd" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"bZt" = (
+/turf/open/floor/plasteel/yellow/side{
+ dir = 9
+ },
+/area/hallway/primary/aft)
+"bVe" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bVf" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/turf/open/floor/plasteel/yellow/corner{
+ dir = 1
+ },
+/area/hallway/primary/aft)
+"bVg" = (
+/obj/item/device/radio/intercom{
+ broadcasting = 0;
+ name = "Station Intercom (General)";
+ pixel_y = 20
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 5
+ },
+/area/hallway/primary/aft)
+"bVh" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/yellow/corner{
+ dir = 4
+ },
+/area/hallway/primary/aft)
+"bVi" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE"
+ icon_state = "shock";
+ name = "HIGH VOLTAGE"
},
/turf/closed/wall,
/area/toxins/xenobiology)
-"bZu" = (
+"bVj" = (
/obj/machinery/light{
icon_state = "tube1";
- dir = 8
+ dir = 8
},
/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
-"bZv" = (
+"bVk" = (
/obj/structure/sink{
dir = 4;
- icon_state = "sink";
- pixel_x = 11;
- pixel_y = 0
+ icon_state = "sink";
+ pixel_x = 11;
+ pixel_y = 0
},
/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
-"bZw" = (
+"bVl" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 4
},
/turf/open/floor/plasteel/floorgrime,
/area/toxins/misc_lab)
-"bZx" = (
+"bVm" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"bVn" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 4;
- initialize_directions = 11
+ initialize_directions = 11
},
/obj/machinery/meter,
/turf/open/floor/plasteel/floorgrime,
/area/toxins/misc_lab)
-"bZy" = (
-/obj/effect/turf_decal/stripes/corner{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"bZz" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
+"bVo" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
-/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"bZA" = (
-/obj/structure/table,
-/obj/item/stack/sheet/glass{
- amount = 50;
- pixel_x = 3;
- pixel_y = 3
+/turf/open/floor/plating,
+/area/engine/break_room)
+"bVp" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/item/stack/sheet/metal{
- amount = 50
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
-/obj/item/stack/sheet/mineral/plasma{
- layer = 2.9
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"bVq" = (
+/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"bVr" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
-/obj/effect/turf_decal/stripes/line{
- dir = 1
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"bZB" = (
+/area/engine/break_room)
+"bVs" = (
/obj/machinery/camera{
c_tag = "Testing Firing Range";
- dir = 8;
- network = list("SS13","RD");
- pixel_y = -22
+ dir = 8;
+ network = list("SS13","RD");
+ pixel_y = -22
},
/turf/open/floor/plating,
/area/toxins/misc_lab)
-"bZC" = (
+"bVt" = (
/obj/structure/target_stake,
/turf/open/floor/plating,
/area/toxins/misc_lab)
-"bZD" = (
-/obj/structure/table,
-/obj/item/wallframe/camera,
-/obj/item/wallframe/camera,
-/obj/item/weapon/screwdriver,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bZE" = (
-/obj/structure/table,
-/obj/item/weapon/poster/contraband,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"bZF" = (
-/obj/structure/table/wood,
-/obj/item/device/radio/intercom{
- freerange = 0;
- frequency = 1459;
- name = "Station Intercom (General)";
- pixel_x = -30
+"bVu" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/yellow/visible,
+/turf/open/space,
+/area/space/nearstation)
+"bVv" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 4
},
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"bZG" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- on = 1
+/turf/open/space,
+/area/space/nearstation)
+"bVw" = (
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/space/nearstation)
+"bVx" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/on{
+ dir = 2
},
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"bZH" = (
-/obj/structure/bed,
-/obj/item/weapon/bedsheet/red,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
+/turf/open/floor/plating/airless,
+/area/maintenance/aft)
+"bVy" = (
+/obj/structure/grille,
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"bZI" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 4
},
-/turf/closed/wall,
-/area/maintenance/bar)
-"bZJ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"bVz" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"bZK" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"bVA" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/open/floor/carpet,
-/area/maintenance/bar)
-"bZL" = (
-/obj/structure/chair/stool,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+/obj/structure/reagent_dispensers/fueltank,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ icon_state = "intact";
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"bVB" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/carpet,
-/area/maintenance/bar)
-"bZM" = (
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
-/turf/open/floor/carpet,
-/area/maintenance/bar)
-"bZN" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+/obj/structure/closet/emcloset,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 4
},
-/turf/closed/wall,
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"bVC" = (
+/obj/structure/table,
+/obj/item/weapon/poster/contraband,
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"bVD" = (
+/obj/structure/table,
+/obj/item/wallframe/camera,
+/obj/item/wallframe/camera,
+/obj/item/weapon/screwdriver,
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"bVE" = (
+/obj/effect/decal/cleanable/cobweb/cobweb2,
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"bVF" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible,
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"bVG" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ on = 1
+ },
+/turf/open/floor/wood,
/area/maintenance/bar)
-"bZO" = (
+"bVH" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bZP" = (
+"bVI" = (
/turf/closed/wall/r_wall,
/area/tcommsat/server)
-"bZQ" = (
+"bVJ" = (
/turf/closed/wall/r_wall,
/area/tcommsat/computer)
-"bZR" = (
+"bVK" = (
+/obj/machinery/vending/snack/random,
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"bVL" = (
/obj/structure/rack{
dir = 1
},
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bZS" = (
+"bVM" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/aft)
-"bZT" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 9
- },
-/turf/closed/wall/r_wall,
-/area/atmos)
-"bZU" = (
+"bVN" = (
/obj/machinery/camera{
c_tag = "Atmospherics Access";
- dir = 4;
- network = list("SS13")
+ dir = 4;
+ network = list("SS13")
},
/obj/machinery/light{
dir = 8
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
/turf/open/floor/plasteel/caution{
dir = 8
},
/area/atmos)
-"bZV" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
+"bVO" = (
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 9
},
-/turf/open/floor/plasteel,
+/turf/closed/wall/r_wall,
/area/atmos)
-"bZW" = (
+"bVP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 6
},
/turf/open/floor/plasteel,
/area/atmos)
-"bZX" = (
+"bVQ" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ external_pressure_bound = 101.325;
+ on = 1;
+ pressure_checks = 1
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bVR" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 4
},
@@ -47352,44 +45836,40 @@
dir = 4
},
/area/atmos)
-"bZY" = (
+"bVS" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 4
},
/obj/structure/sign/securearea,
/turf/closed/wall,
/area/atmos)
-"bZZ" = (
+"bVT" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 4;
- name = "External to Filter";
- on = 1
+ name = "External to Filter";
+ on = 1
},
/turf/open/floor/plasteel,
/area/atmos)
-"caa" = (
+"bVU" = (
+/obj/structure/reagent_dispensers/watertank/high,
+/turf/open/floor/plasteel,
+/area/atmos)
+"bVV" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
dir = 4
},
/turf/open/floor/plasteel,
/area/atmos)
-"cab" = (
-/obj/structure/reagent_dispensers/watertank/high,
-/turf/open/floor/plasteel,
-/area/atmos)
-"cac" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/plasteel,
-/area/atmos)
-"cad" = (
+"bVW" = (
/obj/structure/rack{
dir = 8;
- layer = 2.9
+ layer = 2.9
},
/obj/item/clothing/suit/hazardvest,
/obj/item/clothing/suit/hazardvest,
@@ -47402,33 +45882,37 @@
/obj/item/clothing/mask/gas,
/turf/open/floor/plasteel,
/area/atmos)
-"cae" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 8
- },
+"bVX" = (
+/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plasteel,
/area/atmos)
-"caf" = (
+"bVY" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible,
/obj/machinery/meter,
/turf/open/floor/plasteel,
/area/atmos)
-"cag" = (
+"bVZ" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"bWa" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 4;
- initialize_directions = 11
+ initialize_directions = 11
},
/turf/open/floor/plasteel,
/area/atmos)
-"cah" = (
+"bWb" = (
/obj/machinery/atmospherics/components/trinary/filter{
dir = 1;
- filter_type = "n2o";
- on = 1
+ filter_type = "n2o";
+ on = 1
},
/turf/open/floor/plasteel,
/area/atmos)
-"cai" = (
+"bWc" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 4
},
@@ -47436,30 +45920,30 @@
dir = 6
},
/area/atmos)
-"caj" = (
+"bWd" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 8;
- frequency = 1441;
- id = "n2o_in";
- pixel_y = 1
+ frequency = 1441;
+ id = "n2o_in";
+ pixel_y = 1
},
/turf/open/floor/engine/n2o,
/area/atmos)
-"cak" = (
+"bWe" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"cal" = (
+"bWf" = (
/obj/structure/table/glass,
/obj/item/clothing/gloves/color/latex,
/obj/machinery/requests_console{
department = "Virology";
- name = "Virology Requests Console";
- pixel_x = -32
+ name = "Virology Requests Console";
+ pixel_x = -32
},
/obj/item/device/healthanalyzer,
/obj/item/clothing/glasses/hud/health,
@@ -47467,7 +45951,7 @@
dir = 8
},
/area/medical/virology)
-"cam" = (
+"bWg" = (
/obj/structure/table,
/obj/item/weapon/hand_labeler,
/obj/item/device/radio/headset/headset_med,
@@ -47475,22 +45959,24 @@
dir = 4
},
/area/medical/virology)
-"can" = (
+"bWh" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"bWi" = (
/obj/structure/grille,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/window/fulltile,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
/turf/open/floor/plating,
/area/medical/virology)
-"cao" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/turf/open/floor/plasteel/white,
+"bWj" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/turf/open/floor/plating,
/area/medical/virology)
-"cap" = (
+"bWk" = (
/obj/structure/bed,
/obj/item/weapon/bedsheet,
/obj/effect/landmark{
@@ -47498,302 +45984,229 @@
},
/turf/open/floor/plasteel/white,
/area/medical/virology)
-"caq" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"car" = (
+"bWl" = (
/obj/structure/grille,
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/structure/cable{
icon_state = "0-2";
- d2 = 2
+ d2 = 2
},
/obj/machinery/door/poddoor/preopen{
id = "xenobio2";
- name = "containment blast door"
+ name = "containment blast door"
},
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/engine,
/area/toxins/xenobiology)
-"cas" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"cat" = (
+"bWm" = (
/obj/structure/window/reinforced,
/obj/structure/table/reinforced,
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
},
/obj/machinery/button/door{
id = "xenobio7";
- name = "Containment Blast Doors";
- pixel_x = 0;
- pixel_y = 4;
- req_access_txt = "55"
+ name = "Containment Blast Doors";
+ pixel_x = 0;
+ pixel_y = 4;
+ req_access_txt = "55"
},
/obj/effect/turf_decal/stripes/line{
dir = 10
},
/turf/open/floor/plasteel,
/area/toxins/xenobiology)
-"cau" = (
+"bWn" = (
/obj/structure/grille,
/obj/structure/cable{
icon_state = "0-2";
- d2 = 2
+ d2 = 2
},
/obj/structure/cable{
d2 = 8;
- icon_state = "0-8"
+ icon_state = "0-8"
},
/obj/machinery/door/poddoor/preopen{
id = "xenobio7";
- name = "containment blast door"
+ name = "containment blast door"
},
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/engine,
/area/toxins/xenobiology)
-"cav" = (
+"bWo" = (
/obj/item/device/radio/intercom{
pixel_x = -25
},
/turf/open/floor/plasteel/floorgrime,
/area/toxins/misc_lab)
-"caw" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 2
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/toxins/misc_lab)
-"cax" = (
+"bWp" = (
/obj/structure/chair/office/light,
/obj/effect/landmark/start{
name = "Scientist"
},
/turf/open/floor/plasteel/floorgrime,
/area/toxins/misc_lab)
-"cay" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+"bWq" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 2
},
/turf/open/floor/plasteel/floorgrime,
/area/toxins/misc_lab)
-"caz" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- on = 1
- },
+"bWr" = (
/turf/open/floor/plasteel,
/area/toxins/misc_lab)
-"caA" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
+"bWs" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/tcommsat/computer)
+"bWt" = (
+/obj/structure/chair/office/dark{
dir = 8
},
-/obj/effect/turf_decal/stripes/corner{
- dir = 2
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
},
/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"caB" = (
-/obj/structure/closet/secure_closet/personal/cabinet,
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"caC" = (
-/obj/machinery/light/small,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/obj/machinery/airalarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
+/area/tcommsat/computer)
+"bWu" = (
+/obj/machinery/door/airlock/engineering{
+ name = "Telecommunications";
+ req_access_txt = "61"
},
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"caD" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/machinery/button/door{
- id = "MaintDorm2";
- name = "Dorm Bolt Control";
- normaldoorcontrol = 1;
- pixel_x = 10;
- pixel_y = -25;
- req_access_txt = "0";
- specialfunctions = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"caE" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+/turf/open/floor/plasteel,
+/area/tcommsat/computer)
+"bWv" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/machinery/door/airlock{
- id_tag = "MaintDorm2";
- name = "Dorm 2"
+/turf/open/floor/plasteel,
+/area/tcommsat/computer)
+"bWw" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"bWx" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 5
},
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"caF" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"bWy" = (
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/aft)
+"bWz" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 9
},
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"caG" = (
-/obj/structure/chair/stool,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/carpet,
-/area/maintenance/bar)
-"caH" = (
-/obj/structure/table/wood/poker,
-/obj/item/weapon/coin/iron,
-/obj/item/weapon/coin/iron,
-/obj/item/weapon/coin/iron,
-/turf/open/floor/carpet,
-/area/maintenance/bar)
-"caI" = (
-/obj/structure/table/wood/poker,
-/obj/item/weapon/storage/pill_bottle/dice,
-/obj/item/weapon/dice/d20,
-/turf/open/floor/carpet,
-/area/maintenance/bar)
-"caJ" = (
-/turf/open/floor/wood{
- icon_state = "wood-broken"
- },
-/area/maintenance/bar)
-"caK" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
-/area/maintenance/bar)
-"caL" = (
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"bWA" = (
+/obj/machinery/atmospherics/pipe/manifold4w/general,
+/obj/machinery/meter,
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"bWB" = (
/turf/open/floor/bluegrid{
name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
+ initial_gas_mix = "n2=100;TEMP=80"
},
/area/tcommsat/server)
-"caM" = (
+"bWC" = (
+/obj/machinery/telecomms/bus/preset_four,
+/turf/open/floor/plasteel/black{
+ name = "Mainframe Floor";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/server)
+"bWD" = (
/obj/machinery/telecomms/server/presets/engineering,
/turf/open/floor/plasteel/black{
name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
+ initial_gas_mix = "n2=100;TEMP=80"
},
/area/tcommsat/server)
-"caN" = (
-/obj/machinery/telecomms/bus/preset_four,
+"bWE" = (
+/obj/machinery/telecomms/processor/preset_three,
/turf/open/floor/plasteel/black{
name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
+ initial_gas_mix = "n2=100;TEMP=80"
},
/area/tcommsat/server)
-"caO" = (
+"bWF" = (
/obj/machinery/light{
dir = 1
},
/obj/machinery/power/apc{
cell_type = 5000;
- dir = 1;
- name = "Telecoms Server APC";
- pixel_x = 0;
- pixel_y = 25
+ dir = 1;
+ name = "Telecoms Server APC";
+ pixel_x = 0;
+ pixel_y = 25
},
/obj/structure/cable{
icon_state = "0-2";
- d2 = 2
+ d2 = 2
},
/turf/open/floor/bluegrid{
name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/server)
-"caP" = (
-/obj/machinery/telecomms/processor/preset_three,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
+ initial_gas_mix = "n2=100;TEMP=80"
},
/area/tcommsat/server)
-"caQ" = (
+"bWG" = (
/obj/machinery/telecomms/server/presets/security,
/turf/open/floor/plasteel/black{
name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
+ initial_gas_mix = "n2=100;TEMP=80"
},
/area/tcommsat/server)
-"caR" = (
+"bWH" = (
+/obj/structure/table,
+/turf/open/floor/plasteel/yellow/side{
+ dir = 9
+ },
+/area/tcommsat/computer)
+"bWI" = (
/obj/structure/window/reinforced/fulltile,
/obj/structure/grille,
/obj/structure/cable{
icon_state = "0-2";
- d2 = 2
+ d2 = 2
},
/turf/open/floor/plating,
/area/tcommsat/computer)
-"caS" = (
-/obj/structure/table,
-/turf/open/floor/plasteel/yellow/side{
- dir = 9
- },
-/area/tcommsat/computer)
-"caT" = (
-/obj/item/device/radio/intercom{
- dir = 8;
- freerange = 1;
- name = "Station Intercom (Telecoms)";
- pixel_x = 0;
- pixel_y = 26
+"bWJ" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"caU" = (
-/obj/machinery/light{
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
},
-/obj/machinery/announcement_system,
/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"caV" = (
+/area/hallway/primary/aft)
+"bWK" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/yellow/side{
+ dir = 8
+ },
+/area/hallway/primary/aft)
+"bWL" = (
/obj/machinery/airalarm{
dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
+ icon_state = "alarm0";
+ pixel_x = -22
},
/obj/structure/disposalpipe/segment,
/obj/machinery/light{
@@ -47803,7 +46216,7 @@
dir = 8
},
/area/hallway/primary/aft)
-"caW" = (
+"bWM" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 4
},
@@ -47812,99 +46225,108 @@
dir = 8
},
/area/atmos)
-"caX" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
- dir = 1
- },
-/obj/machinery/meter,
-/turf/closed/wall/r_wall,
-/area/atmos)
-"caY" = (
+"bWN" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 4
},
/obj/machinery/door/poddoor/preopen{
id = "atmos";
- name = "atmos blast door"
+ name = "atmos blast door"
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel{
name = "floor"
},
/area/atmos)
-"caZ" = (
+"bWO" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
+ dir = 1
+ },
+/obj/machinery/meter,
+/turf/closed/wall/r_wall,
+/area/atmos)
+"bWP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 9
},
/obj/machinery/door/poddoor/preopen{
id = "atmos";
- name = "atmos blast door"
+ name = "atmos blast door"
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel{
name = "floor"
},
/area/atmos)
-"cba" = (
+"bWQ" = (
/turf/closed/wall/r_wall,
/area/security/checkpoint/engineering)
-"cbb" = (
+"bWR" = (
/obj/item/device/radio/intercom{
freerange = 0;
- frequency = 1459;
- name = "Station Intercom (General)";
- pixel_x = -30
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = -30
},
/turf/open/floor/plasteel,
/area/atmos)
-"cbc" = (
+"bWS" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 27;
- pixel_y = 0
+ pixel_y = 0
},
/obj/machinery/camera{
c_tag = "Atmospherics West";
- dir = 8;
- network = list("SS13")
+ dir = 8;
+ network = list("SS13")
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/obj/machinery/light{
dir = 4;
- icon_state = "tube1"
+ icon_state = "tube1"
},
/turf/open/floor/plasteel,
/area/atmos)
-"cbd" = (
+"bWT" = (
/obj/structure/extinguisher_cabinet{
pixel_x = -27;
- pixel_y = 0
+ pixel_y = 0
},
/obj/machinery/atmospherics/components/binary/pump{
dir = 0;
- name = "Air to Port";
- on = 0
+ name = "Air to Port";
+ on = 0
},
/obj/machinery/light{
dir = 8
},
/turf/open/floor/plasteel,
/area/atmos)
-"cbe" = (
+"bWU" = (
/obj/machinery/light{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
/turf/open/floor/plasteel,
/area/atmos)
-"cbf" = (
+"bWV" = (
/obj/structure/door_assembly/door_assembly_mai,
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"cbg" = (
+"bWW" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/medical/virology)
+"bWX" = (
/obj/structure/table/glass,
/obj/item/device/radio/intercom{
pixel_x = -25
@@ -47914,7 +46336,7 @@
},
/obj/item/weapon/storage/box/beakers{
pixel_x = 2;
- pixel_y = 2
+ pixel_y = 2
},
/obj/item/weapon/storage/box/syringes,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -47924,13 +46346,21 @@
dir = 8
},
/area/medical/virology)
-"cbh" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
+"bWY" = (
+/obj/structure/table,
+/obj/item/weapon/paper_bin{
+ pixel_x = -2;
+ pixel_y = 5
+ },
+/obj/item/weapon/pen/red,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/whitegreen/side{
+ dir = 4
},
-/turf/open/floor/plasteel/white,
/area/medical/virology)
-"cbi" = (
+"bWZ" = (
/obj/structure/chair/office/light{
dir = 4
},
@@ -47942,21 +46372,13 @@
},
/turf/open/floor/plasteel/white,
/area/medical/virology)
-"cbj" = (
-/obj/structure/table,
-/obj/item/weapon/paper_bin{
- pixel_x = -2;
- pixel_y = 5
- },
-/obj/item/weapon/pen/red,
+"bXa" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/whitegreen/side{
- dir = 4
+ dir = 10
},
+/turf/open/floor/plasteel/white,
/area/medical/virology)
-"cbk" = (
+"bXb" = (
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -47965,157 +46387,199 @@
/obj/structure/window/fulltile,
/turf/open/floor/plating,
/area/medical/virology)
-"cbl" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
- },
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"cbm" = (
+"bXc" = (
/obj/structure/table,
/turf/open/floor/plasteel/white,
/area/medical/virology)
-"cbn" = (
+"bXd" = (
/obj/machinery/light{
dir = 4
},
/turf/open/floor/plasteel/white,
/area/medical/virology)
-"cbo" = (
+"bXe" = (
/obj/effect/landmark{
name = "revenantspawn"
},
/mob/living/simple_animal/slime,
/turf/open/floor/engine,
/area/toxins/xenobiology)
-"cbp" = (
+"bXf" = (
/obj/machinery/door/window/northleft{
base_state = "right";
- dir = 8;
- icon_state = "right";
- name = "Containment Pen";
- req_access_txt = "55"
+ dir = 8;
+ icon_state = "right";
+ name = "Containment Pen";
+ req_access_txt = "55"
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
/obj/machinery/door/poddoor/preopen{
id = "xenobio2";
- name = "containment blast door"
+ name = "containment blast door"
},
/turf/open/floor/engine,
/area/toxins/xenobiology)
-"cbq" = (
+"bXg" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
/obj/machinery/door/window/northleft{
dir = 4;
- name = "Containment Pen";
- req_access_txt = "55"
+ name = "Containment Pen";
+ req_access_txt = "55"
},
/obj/machinery/door/poddoor/preopen{
id = "xenobio7";
- name = "containment blast door"
+ name = "containment blast door"
},
/turf/open/floor/engine,
/area/toxins/xenobiology)
-"cbr" = (
+"bXh" = (
/obj/structure/filingcabinet/chestdrawer,
/turf/open/floor/plasteel/floorgrime,
/area/toxins/misc_lab)
-"cbs" = (
+"bXi" = (
+/obj/structure/table,
+/obj/item/weapon/folder/white,
+/obj/item/weapon/folder/white,
+/obj/item/weapon/pen,
+/obj/item/device/taperecorder{
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/toxins/misc_lab)
+"bXj" = (
/obj/structure/table,
/obj/machinery/atmospherics/pipe/simple/general/visible,
/obj/machinery/button/ignition{
id = "testigniter";
- pixel_x = -6;
- pixel_y = 2
+ pixel_x = -6;
+ pixel_y = 2
},
/obj/machinery/button/door{
id = "testlab";
- name = "Test Chamber Blast Doors";
- pixel_x = 4;
- pixel_y = 2;
- req_access_txt = "55"
+ name = "Test Chamber Blast Doors";
+ pixel_x = 4;
+ pixel_y = 2;
+ req_access_txt = "55"
},
/turf/open/floor/plasteel/floorgrime,
/area/toxins/misc_lab)
-"cbt" = (
-/obj/structure/table,
-/obj/item/weapon/folder/white,
-/obj/item/weapon/folder/white,
-/obj/item/weapon/pen,
-/obj/item/device/taperecorder{
- pixel_y = 0
+"bXk" = (
+/obj/machinery/navbeacon{
+ codes_txt = "patrol;next_patrol=AIE";
+ location = "AftH"
},
-/turf/open/floor/plasteel/floorgrime,
-/area/toxins/misc_lab)
-"cbu" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bXl" = (
/obj/structure/table,
/obj/item/weapon/paper_bin{
pixel_x = 0;
- pixel_y = 6
+ pixel_y = 6
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
/turf/open/floor/plasteel/floorgrime,
/area/toxins/misc_lab)
-"cbv" = (
-/obj/structure/rack,
-/obj/item/weapon/wrench,
-/obj/item/weapon/crowbar,
-/obj/machinery/computer/security/telescreen{
- name = "Test Chamber Moniter";
- network = list("Test");
- pixel_x = 0;
- pixel_y = -30
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plasteel/floorgrime,
-/area/toxins/misc_lab)
-"cbw" = (
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
+"bXm" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/obj/machinery/droneDispenser,
/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"cbx" = (
+/area/hallway/primary/aft)
+"bXn" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"cby" = (
+/turf/open/floor/plasteel/yellow/side{
+ dir = 4
+ },
+/area/hallway/primary/aft)
+"bXo" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"bXp" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/turf/open/floor/plasteel/floorgrime,
-/area/toxins/misc_lab)
-"cbz" = (
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"bXq" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Engineering";
+ req_access_txt = "32"
+ },
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
+ dir = 4
},
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"bXr" = (
/obj/effect/turf_decal/stripes/line{
- dir = 4
+ dir = 1
},
/turf/open/floor/plasteel,
/area/toxins/misc_lab)
-"cbA" = (
+"bXs" = (
/obj/structure/table/reinforced,
/obj/structure/window/reinforced{
dir = 1
@@ -48129,7 +46593,7 @@
},
/turf/open/floor/plating,
/area/toxins/misc_lab)
-"cbB" = (
+"bXt" = (
/obj/structure/table/reinforced,
/obj/machinery/magnetic_controller{
autolink = 1
@@ -48139,140 +46603,146 @@
},
/obj/item/device/radio/intercom{
freerange = 0;
- frequency = 1459;
- name = "Station Intercom (General)";
- pixel_x = 29
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = 29
},
/obj/machinery/light{
dir = 4;
- icon_state = "tube1"
+ icon_state = "tube1"
},
/obj/effect/turf_decal/stripes/line{
dir = 10
},
/turf/open/floor/plating,
/area/toxins/misc_lab)
-"cbC" = (
+"bXu" = (
/obj/structure/grille,
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/window/reinforced/tinted/fulltile,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"cbD" = (
+"bXv" = (
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 4;
+ name = "External Access";
+ req_access = null;
+ req_access_txt = "13"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"bXw" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
/obj/item/weapon/shard,
/turf/open/floor/plating,
/area/maintenance/aft)
-"cbE" = (
-/obj/machinery/light{
- dir = 8
+"bXx" = (
+/obj/effect/landmark{
+ name = "blobstart"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cbF" = (
-/obj/structure/table/wood/poker,
-/turf/open/floor/carpet,
-/area/maintenance/bar)
-"cbG" = (
-/obj/structure/table/wood/poker,
-/obj/item/weapon/book/manual/daredice,
-/turf/open/floor/carpet,
-/area/maintenance/bar)
-"cbH" = (
-/obj/machinery/light{
- dir = 4
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/aft)
+"bXy" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/aft)
+"bXz" = (
+/obj/machinery/telecomms/processor/preset_four,
+/turf/open/floor/plasteel/black{
+ name = "Mainframe Floor";
+ initial_gas_mix = "n2=100;TEMP=80"
},
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cbI" = (
+/area/tcommsat/server)
+"bXA" = (
/obj/machinery/telecomms/server/presets/common,
/turf/open/floor/plasteel/black{
name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
+ initial_gas_mix = "n2=100;TEMP=80"
},
/area/tcommsat/server)
-"cbJ" = (
-/obj/machinery/telecomms/processor/preset_four,
+"bXB" = (
+/obj/machinery/telecomms/bus/preset_three,
/turf/open/floor/plasteel/black{
name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
+ initial_gas_mix = "n2=100;TEMP=80"
},
/area/tcommsat/server)
-"cbK" = (
+"bXC" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/open/floor/bluegrid{
name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/server)
-"cbL" = (
-/obj/machinery/telecomms/bus/preset_three,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
+ initial_gas_mix = "n2=100;TEMP=80"
},
/area/tcommsat/server)
-"cbM" = (
+"bXD" = (
/obj/machinery/telecomms/server/presets/command,
/turf/open/floor/plasteel/black{
name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
+ initial_gas_mix = "n2=100;TEMP=80"
},
/area/tcommsat/server)
-"cbN" = (
+"bXE" = (
+/obj/machinery/computer/message_monitor,
+/turf/open/floor/plasteel/yellow/side{
+ dir = 8
+ },
+/area/tcommsat/computer)
+"bXF" = (
/obj/structure/window/reinforced/fulltile,
/obj/structure/grille,
/obj/structure/cable{
icon_state = "0-2";
- d2 = 2
+ d2 = 2
},
/obj/structure/cable,
/turf/open/floor/plating,
/area/tcommsat/computer)
-"cbO" = (
-/obj/machinery/computer/message_monitor,
-/turf/open/floor/plasteel/yellow/side{
- dir = 8
- },
-/area/tcommsat/computer)
-"cbP" = (
-/obj/structure/chair/office/dark{
- dir = 8
- },
+"bXG" = (
/turf/open/floor/plasteel,
/area/tcommsat/computer)
-"cbQ" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
+"bXH" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,
/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"cbR" = (
-/obj/structure/table,
-/obj/item/weapon/paper_bin,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
+/area/engine/break_room)
+"bXI" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"cbS" = (
+/area/engine/break_room)
+"bXJ" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 4
},
@@ -48282,79 +46752,65 @@
dir = 8
},
/area/atmos)
-"cbT" = (
+"bXK" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 9
},
/turf/closed/wall/r_wall,
/area/atmos)
-"cbU" = (
+"bXL" = (
+/obj/structure/sign/securearea,
+/turf/closed/wall/r_wall,
+/area/atmos)
+"bXM" = (
/obj/machinery/door/firedoor/heavy,
/obj/machinery/door/airlock/atmos{
name = "Atmospherics";
- req_access_txt = "24"
+ req_access_txt = "24"
},
/turf/open/floor/plasteel,
/area/atmos)
-"cbV" = (
-/obj/structure/sign/securearea,
-/turf/closed/wall/r_wall,
-/area/atmos)
-"cbW" = (
-/obj/machinery/power/apc{
- dir = 8;
- name = "Engineering Security APC";
- pixel_x = -24
- },
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/machinery/newscaster{
- pixel_y = 32
+"bXN" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
},
-/obj/machinery/atmospherics/components/unary/vent_pump{
- on = 1
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"bXO" = (
+/obj/structure/filingcabinet,
+/obj/machinery/airalarm{
+ pixel_y = 23
},
/turf/open/floor/plasteel/red/side{
- dir = 9
+ dir = 5
},
/area/security/checkpoint/engineering)
-"cbX" = (
+"bXP" = (
/obj/machinery/requests_console{
department = "Security";
- departmentType = 5;
- pixel_y = 30
+ departmentType = 5;
+ pixel_y = 30
},
/obj/structure/closet,
/turf/open/floor/plasteel/red/side{
dir = 1
},
/area/security/checkpoint/engineering)
-"cbY" = (
-/obj/structure/filingcabinet,
-/obj/machinery/airalarm{
- pixel_y = 23
- },
-/turf/open/floor/plasteel/red/side{
- dir = 5
- },
-/area/security/checkpoint/engineering)
-"cbZ" = (
+"bXQ" = (
/obj/structure/fireaxecabinet{
pixel_x = -32;
- pixel_y = 0
+ pixel_y = 0
},
/turf/open/floor/plasteel,
/area/atmos)
-"cca" = (
+"bXR" = (
/obj/structure/closet/secure_closet/atmospherics,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
/area/atmos)
-"ccb" = (
+"bXS" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 4
},
@@ -48366,7 +46822,7 @@
dir = 2
},
/area/atmos)
-"ccc" = (
+"bXT" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 8
},
@@ -48377,98 +46833,78 @@
dir = 2
},
/area/atmos)
-"ccd" = (
+"bXU" = (
/obj/machinery/atmospherics/pipe/manifold/yellow/visible{
dir = 8
},
/turf/open/floor/plasteel,
/area/atmos)
-"cce" = (
+"bXV" = (
/obj/machinery/camera{
c_tag = "Atmospherics East";
- dir = 8;
- network = list("SS13")
+ dir = 8;
+ network = list("SS13")
},
/obj/machinery/atmospherics/components/binary/pump{
dir = 8;
- name = "Plasma Outlet Pump";
- on = 0
+ name = "Plasma Outlet Pump";
+ on = 0
},
/obj/effect/turf_decal/stripes/line{
dir = 5
},
/turf/open/floor/plasteel,
/area/atmos)
-"ccf" = (
+"bXW" = (
+/turf/open/floor/engine/plasma,
+/area/atmos)
+"bXX" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
- external_pressure_bound = 0;
- frequency = 1441;
- id_tag = "tox_out";
- initialize_directions = 1;
- internal_pressure_bound = 4000;
- on = 1;
- pressure_checks = 2;
- pump_direction = 0
+ external_pressure_bound = 0;
+ frequency = 1441;
+ id_tag = "tox_out";
+ initialize_directions = 1;
+ internal_pressure_bound = 4000;
+ on = 1;
+ pressure_checks = 2;
+ pump_direction = 0
},
/turf/open/floor/engine/plasma,
/area/atmos)
-"ccg" = (
-/turf/open/floor/engine/plasma,
-/area/atmos)
-"cch" = (
+"bXY" = (
/obj/effect/landmark{
name = "xeno_spawn";
- pixel_x = -1
+ pixel_x = -1
},
/turf/open/floor/engine/plasma,
/area/atmos)
-"cci" = (
-/obj/structure/reagent_dispensers/fueltank,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"ccj" = (
+"bXZ" = (
/obj/structure/closet/crate,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"cck" = (
-/obj/structure/table/glass,
-/obj/structure/reagent_dispensers/virusfood{
- density = 0;
- pixel_x = -30
- },
-/obj/item/weapon/book/manual/wiki/infections{
- pixel_y = 7
- },
-/obj/item/weapon/reagent_containers/syringe/antiviral,
-/obj/item/weapon/reagent_containers/dropper,
-/obj/item/weapon/reagent_containers/spray/cleaner,
-/turf/open/floor/plasteel/whitegreen/side{
- dir = 8
- },
-/area/medical/virology)
-"ccl" = (
+"bYa" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
/turf/open/floor/plasteel/white,
/area/medical/virology)
-"ccm" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
+"bYb" = (
+/obj/machinery/vending/cigarette{
+ pixel_x = 0;
+ pixel_y = 0
},
-/turf/open/floor/plasteel/white,
-/area/medical/virology)
-"ccn" = (
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"bYc" = (
/obj/machinery/disposal/bin,
/obj/structure/sign/deathsposal{
pixel_x = 0;
- pixel_y = -32
+ pixel_y = -32
},
/obj/structure/disposalpipe/trunk{
dir = 8
@@ -48477,99 +46913,90 @@
dir = 4
},
/area/medical/virology)
-"cco" = (
-/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/window/fulltile,
-/turf/open/floor/plating,
+"bYd" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel/white,
/area/medical/virology)
-"ccp" = (
+"bYe" = (
/obj/structure/closet/secure_closet/personal/patient,
/turf/open/floor/plasteel/white,
/area/medical/virology)
-"ccq" = (
-/obj/structure/grille,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/door/poddoor/preopen{
- id = "xenobio2";
- name = "containment blast door"
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/engine,
-/area/toxins/xenobiology)
-"ccr" = (
+"bYf" = (
/obj/structure/table/reinforced,
/obj/machinery/button/door{
id = "xenobio2";
- name = "Containment Blast Doors";
- pixel_x = 0;
- pixel_y = 4;
- req_access_txt = "55"
+ name = "Containment Blast Doors";
+ pixel_x = 0;
+ pixel_y = 4;
+ req_access_txt = "55"
},
/obj/structure/window/reinforced{
dir = 1
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
/obj/effect/turf_decal/stripes/line{
dir = 5
},
/turf/open/floor/plasteel,
/area/toxins/xenobiology)
-"ccs" = (
+"bYg" = (
/obj/structure/grille,
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/structure/cable,
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
/obj/machinery/door/poddoor/preopen{
- id = "xenobio7";
- name = "containment blast door"
+ id = "xenobio2";
+ name = "containment blast door"
},
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/engine,
/area/toxins/xenobiology)
-"cct" = (
+"bYh" = (
/obj/structure/grille,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable,
/obj/machinery/door/poddoor/preopen{
- id = "testlab";
- name = "test chamber blast door"
+ id = "xenobio7";
+ name = "containment blast door"
},
-/obj/machinery/atmospherics/pipe/simple/general/visible,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/engine,
-/area/toxins/misc_lab)
-"ccu" = (
+/area/toxins/xenobiology)
+"bYi" = (
/obj/structure/grille,
/obj/machinery/door/poddoor/preopen{
id = "testlab";
- name = "test chamber blast door"
+ name = "test chamber blast door"
},
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/engine,
/area/toxins/misc_lab)
-"ccv" = (
+"bYj" = (
/obj/structure/grille,
/obj/machinery/door/poddoor/preopen{
id = "testlab";
- name = "test chamber blast door"
+ name = "test chamber blast door"
},
+/obj/machinery/atmospherics/pipe/simple/general/visible,
/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/engine,
/area/toxins/misc_lab)
-"ccw" = (
+"bYk" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/effect/turf_decal/bot{
dir = 2
@@ -48578,7 +47005,12 @@
dir = 2
},
/area/toxins/misc_lab)
-"ccx" = (
+"bYl" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/toxins/misc_lab)
+"bYm" = (
/obj/structure/reagent_dispensers/watertank,
/obj/structure/window/reinforced{
dir = 4
@@ -48590,179 +47022,125 @@
dir = 2
},
/area/toxins/misc_lab)
-"ccy" = (
+"bYn" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"ccz" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"ccA" = (
-/obj/machinery/door/airlock/glass_research{
- name = "Firing Range";
- req_access_txt = "47"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"ccB" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/effect/turf_decal/stripes/corner{
+/turf/open/floor/plasteel/yellow/side,
+/area/hallway/primary/aft)
+"bYo" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
-/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"ccC" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
/obj/effect/turf_decal/stripes/line{
- dir = 1
+ dir = 4
},
/turf/open/floor/plasteel,
/area/toxins/misc_lab)
-"ccD" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
+"bYp" = (
+/obj/structure/sign/securearea{
+ pixel_x = -32;
+ pixel_y = 0
},
-/obj/effect/turf_decal/stripes/corner{
- dir = 4
+/turf/open/floor/plasteel/yellow/side{
+ dir = 10
},
-/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"ccE" = (
+/area/hallway/primary/aft)
+"bYq" = (
+/obj/machinery/light,
+/turf/open/floor/plasteel/yellow/side,
+/area/hallway/primary/aft)
+"bYr" = (
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
},
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"ccF" = (
+"bYs" = (
/obj/structure/closet/crate,
/obj/item/clothing/under/color/lightpurple,
/obj/item/stack/spacecash/c200,
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"ccG" = (
+"bYt" = (
/obj/structure/girder,
/obj/structure/grille,
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"ccH" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/open/floor/wood{
- icon_state = "wood-broken7"
- },
-/area/maintenance/bar)
-"ccI" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/button/door{
- id = "MaintDorm1";
- name = "Dorm Bolt Control";
- normaldoorcontrol = 1;
- pixel_x = 10;
- pixel_y = 25;
- req_access_txt = "0";
- specialfunctions = 4
+"bYu" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = -32;
+ pixel_y = 0
},
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"bYv" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "Mix to Space";
+ on = 0
},
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"ccJ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/aft)
+"bYw" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 4
},
-/obj/machinery/door/airlock{
- id_tag = "MaintDorm1";
- name = "Dorm 1"
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/aft)
+"bYx" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 4;
+ initialize_directions = 11
},
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/aft)
+"bYy" = (
+/obj/structure/closet/secure_closet/personal/cabinet,
/turf/open/floor/wood,
/area/maintenance/bar)
-"ccK" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"ccL" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/carpet,
-/area/maintenance/bar)
-"ccM" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/obj/structure/chair/stool,
-/turf/open/floor/carpet,
-/area/maintenance/bar)
-"ccN" = (
-/obj/structure/chair/stool,
-/turf/open/floor/carpet,
-/area/maintenance/bar)
-"ccO" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/carpet,
-/area/maintenance/bar)
-"ccP" = (
+"bYz" = (
/turf/open/floor/plasteel/black{
name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
+ initial_gas_mix = "n2=100;TEMP=80"
},
/area/tcommsat/server)
-"ccQ" = (
-/obj/machinery/blackbox_recorder,
+"bYA" = (
+/obj/machinery/telecomms/broadcaster/preset_right,
/turf/open/floor/plasteel/black{
name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
+ initial_gas_mix = "n2=100;TEMP=80"
},
/area/tcommsat/server)
-"ccR" = (
-/obj/machinery/telecomms/broadcaster/preset_right,
+"bYB" = (
+/obj/machinery/blackbox_recorder,
/turf/open/floor/plasteel/black{
name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
+ initial_gas_mix = "n2=100;TEMP=80"
},
/area/tcommsat/server)
-"ccS" = (
+"bYC" = (
/obj/machinery/telecomms/receiver/preset_right,
/turf/open/floor/plasteel/black{
name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
+ initial_gas_mix = "n2=100;TEMP=80"
},
/area/tcommsat/server)
-"ccT" = (
+"bYD" = (
/obj/machinery/computer/telecomms/server{
network = "tcommsat"
},
@@ -48770,542 +47148,474 @@
dir = 10
},
/area/tcommsat/computer)
-"ccU" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
+"bYE" = (
+/turf/open/floor/plasteel/yellow/side,
+/area/hallway/primary/aft)
+"bYF" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/tcommsat/computer)
-"ccV" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
+"bYG" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"ccW" = (
-/obj/structure/table,
-/obj/item/weapon/folder/blue,
-/obj/item/weapon/pen/blue,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"ccX" = (
+/turf/open/floor/plasteel/yellow/side{
+ dir = 6
+ },
+/area/hallway/primary/aft)
+"bYH" = (
+/turf/closed/wall,
+/area/engine/break_room)
+"bYI" = (
/obj/machinery/firealarm{
dir = 4;
- pixel_x = 24
+ pixel_x = 24
},
/turf/open/floor/plasteel/yellow/corner{
dir = 2
},
/area/hallway/primary/aft)
-"ccY" = (
-/turf/closed/wall,
-/area/engine/break_room)
-"ccZ" = (
+"bYJ" = (
/turf/open/floor/plasteel/caution{
dir = 9
},
/area/engine/break_room)
-"cda" = (
+"bYK" = (
/turf/open/floor/plasteel/caution{
- dir = 1
+ dir = 5
},
/area/engine/break_room)
-"cdb" = (
+"bYL" = (
/turf/open/floor/plasteel/caution{
- dir = 5
+ dir = 1
},
/area/engine/break_room)
-"cdc" = (
-/turf/closed/wall,
-/area/security/checkpoint/engineering)
-"cdd" = (
-/obj/item/weapon/screwdriver{
- pixel_y = 10
- },
-/obj/machinery/button/door{
- desc = "A remote control-switch for the engineering security doors.";
- id = "Engineering";
- name = "Engineering Lockdown";
- pixel_x = -24;
- pixel_y = -6;
- req_access_txt = "10"
+"bYM" = (
+/obj/machinery/airalarm{
+ dir = 1;
+ icon_state = "alarm0";
+ pixel_y = -22
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
},
-/obj/item/device/radio/off,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/red/side{
- dir = 8
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
+/turf/open/floor/plasteel/yellow/side,
+/area/hallway/primary/aft)
+"bYN" = (
+/turf/closed/wall,
/area/security/checkpoint/engineering)
-"cde" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/security/checkpoint/engineering)
-"cdf" = (
-/obj/machinery/camera{
- c_tag = "Security Post - Engineering";
- dir = 8;
- network = list("SS13")
- },
-/obj/item/device/radio/intercom{
- dir = 4;
- name = "Station Intercom (General)";
- pixel_x = 27
- },
-/obj/machinery/light{
- dir = 4
- },
-/turf/open/floor/plasteel/red/side{
+"bYO" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/area/security/checkpoint/engineering)
-"cdg" = (
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"bYP" = (
+/obj/effect/landmark/event_spawn,
+/turf/closed/wall,
+/area/crew_quarters/bar)
+"bYQ" = (
/obj/machinery/suit_storage_unit/atmos,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
/area/atmos)
-"cdh" = (
+"bYR" = (
/obj/structure/sign/nosmoking_2,
/turf/closed/wall,
/area/atmos)
-"cdi" = (
+"bYS" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 4;
- initialize_directions = 11
+ initialize_directions = 11
},
/obj/machinery/meter,
/turf/open/floor/plasteel,
/area/atmos)
-"cdj" = (
+"bYT" = (
/obj/machinery/computer/atmos_control/tank{
frequency = 1441;
- input_tag = "tox_in";
- name = "Plasma Supply Control";
- output_tag = "tox_out";
- sensors = list("tox_sensor" = "Tank")
+ input_tag = "tox_in";
+ name = "Plasma Supply Control";
+ output_tag = "tox_out";
+ sensors = list("tox_sensor" = "Tank")
},
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel,
/area/atmos)
-"cdk" = (
+"bYU" = (
+/obj/machinery/portable_atmospherics/canister/toxins,
+/turf/open/floor/engine/plasma,
+/area/atmos)
+"bYV" = (
/obj/machinery/air_sensor{
frequency = 1441;
- id_tag = "tox_sensor"
+ id_tag = "tox_sensor"
},
/turf/open/floor/engine/plasma,
/area/atmos)
-"cdl" = (
-/obj/machinery/portable_atmospherics/canister/toxins,
-/turf/open/floor/engine/plasma,
-/area/atmos)
-"cdm" = (
+"bYW" = (
/obj/machinery/light/small{
dir = 4
},
/turf/open/floor/engine/plasma,
/area/atmos)
-"cdn" = (
+"bYX" = (
/obj/structure/closet/l3closet/virology,
/turf/open/floor/plasteel/whitegreen/side{
dir = 2
},
/area/medical/virology)
-"cdo" = (
+"bYY" = (
/obj/structure/closet/secure_closet/medical1,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/whitegreen/side{
dir = 2
},
/area/medical/virology)
-"cdp" = (
+"bYZ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall/r_wall,
/area/medical/virology)
-"cdq" = (
+"bZa" = (
/obj/structure/sink{
icon_state = "sink";
- dir = 8;
- pixel_x = -12;
- pixel_y = 2
+ dir = 8;
+ pixel_x = -12;
+ pixel_y = 2
},
/obj/machinery/camera{
c_tag = "Xenobiology South";
- dir = 4;
- network = list("SS13","RD")
+ dir = 4;
+ network = list("SS13","RD")
},
/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
-"cdr" = (
+"bZb" = (
/obj/machinery/light{
dir = 4
},
/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
-"cds" = (
+"bZc" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 1
},
/turf/open/floor/engine,
/area/toxins/misc_lab)
-"cdt" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/engine,
-/area/toxins/misc_lab)
-"cdu" = (
+"bZd" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"cdv" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
/turf/open/floor/plasteel,
/area/toxins/misc_lab)
-"cdw" = (
+"bZe" = (
/obj/structure/grille,
-/obj/structure/window/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/toxins/misc_lab)
-"cdx" = (
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
+/area/engine/break_room)
+"bZf" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_Toxins = 0
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"bZg" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"cdy" = (
+/area/engine/break_room)
+"bZh" = (
/obj/structure/rack,
/obj/item/weapon/gun/energy/laser/practice,
/obj/item/clothing/ears/earmuffs,
/turf/open/floor/plasteel,
/area/toxins/misc_lab)
-"cdz" = (
+"bZi" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"bZj" = (
/obj/item/weapon/shard{
icon_state = "small"
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"cdA" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- on = 1
+"bZk" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 4
},
-/obj/machinery/airalarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
+/obj/machinery/portable_atmospherics/canister,
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"bZl" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "Mix to Port";
+ on = 0
},
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cdB" = (
-/obj/structure/bed,
-/obj/item/weapon/bedsheet/blue,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
+/obj/machinery/light/small,
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"bZm" = (
+/obj/structure/disposaloutlet{
+ dir = 8
},
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cdC" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+/obj/structure/disposalpipe/trunk{
dir = 4
},
-/turf/open/floor/wood{
- icon_state = "wood-broken6"
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"bZn" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/area/maintenance/bar)
-"cdD" = (
-/obj/machinery/airalarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
+/turf/open/floor/bluegrid{
+ name = "Mainframe Base";
+ initial_gas_mix = "n2=100;TEMP=80"
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
+/area/tcommsat/server)
+"bZo" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cdE" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cdF" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cdG" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cdH" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/bluegrid{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
+/turf/open/floor/bluegrid{
+ name = "Mainframe Base";
+ initial_gas_mix = "n2=100;TEMP=80"
},
/area/tcommsat/server)
-"cdI" = (
+"bZp" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 8;
+ icon_state = "1-8"
},
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/open/floor/bluegrid{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/server)
-"cdJ" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d2 = 4;
+ icon_state = "1-4"
},
/turf/open/floor/bluegrid{
name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
+ initial_gas_mix = "n2=100;TEMP=80"
},
/area/tcommsat/server)
-"cdK" = (
+"bZq" = (
/obj/structure/window/reinforced/fulltile,
/obj/structure/grille,
/obj/structure/cable{
icon_state = "0-4";
- d2 = 4
+ d2 = 4
},
/obj/structure/cable{
icon_state = "0-2";
- d2 = 2
+ d2 = 2
},
/turf/open/floor/plating,
/area/tcommsat/computer)
-"cdL" = (
+"bZr" = (
+/obj/machinery/status_display,
+/turf/closed/wall,
+/area/tcommsat/computer)
+"bZs" = (
/obj/structure/window/reinforced/fulltile,
/obj/structure/grille,
/obj/structure/cable{
d2 = 8;
- icon_state = "0-8"
+ icon_state = "0-8"
},
/obj/structure/cable,
/turf/open/floor/plating,
/area/tcommsat/computer)
-"cdM" = (
-/obj/machinery/status_display,
-/turf/closed/wall,
-/area/tcommsat/computer)
-"cdN" = (
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/grille,
-/turf/open/floor/plating,
-/area/tcommsat/computer)
-"cdO" = (
-/obj/machinery/door/airlock/glass_command{
- name = "Control Room";
- req_access_txt = "19; 61"
- },
+"bZt" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"cdP" = (
+/area/engine/break_room)
+"bZu" = (
+/obj/machinery/camera{
+ c_tag = "Engineering Foyer";
+ dir = 1
+ },
+/obj/structure/noticeboard{
+ dir = 1;
+ pixel_y = -27
+ },
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"bZv" = (
/obj/structure/window/reinforced/fulltile,
/obj/structure/grille,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/tcommsat/computer)
-"cdQ" = (
+"bZw" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 27;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/closet/firecloset,
+/turf/open/floor/plasteel,
+/area/engine/break_room)
+"bZx" = (
/obj/machinery/door/firedoor,
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/caution/corner{
dir = 8
},
/area/hallway/primary/aft)
-"cdR" = (
-/obj/machinery/door/firedoor,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
+"bZy" = (
/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"cdS" = (
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/yellow/corner{
- dir = 2
- },
-/area/hallway/primary/aft)
-"cdT" = (
+/area/engine/break_room)
+"bZz" = (
/obj/structure/table,
/obj/machinery/cell_charger,
/obj/machinery/light_switch{
pixel_x = -23;
- pixel_y = 0
+ pixel_y = 0
},
/obj/machinery/light{
dir = 8
},
/turf/open/floor/plasteel,
/area/engine/break_room)
-"cdU" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cdV" = (
+"bZA" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cdW" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+ dir = 8
},
/turf/open/floor/plasteel,
/area/engine/break_room)
-"cdX" = (
-/obj/machinery/door/airlock/glass_security{
- name = "Security Office";
- req_access_txt = "63"
+"bZB" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
},
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"bZC" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "Engineering";
+ name = "engineering security door"
+ },
+/obj/machinery/door/airlock/glass_command{
+ name = "Chief Engineer";
+ req_access_txt = "56"
},
-/turf/open/floor/plasteel,
-/area/security/checkpoint/engineering)
-"cdY" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
},
-/turf/open/floor/plasteel/red/side{
- dir = 8
+/area/engine/chiefs_office)
+"bZD" = (
+/obj/structure/grille,
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
-/area/security/checkpoint/engineering)
-"cdZ" = (
-/obj/structure/chair/office/dark,
-/obj/effect/landmark/start/depsec/engineering,
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
},
-/turf/open/floor/plasteel,
-/area/security/checkpoint/engineering)
-"cea" = (
-/obj/machinery/computer/secure_data,
-/obj/machinery/light_switch{
- pixel_x = 27
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/poddoor/preopen{
+ id = "Engineering";
+ name = "engineering security door"
},
-/turf/open/floor/plasteel/red/side{
- dir = 4
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/engine/chiefs_office)
+"bZE" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/yellow/side{
+ dir = 10
},
-/area/security/checkpoint/engineering)
-"ceb" = (
+/area/engine/break_room)
+"bZF" = (
/obj/machinery/power/apc{
dir = 8;
- name = "Atmospherics APC";
- pixel_x = -24
+ name = "Atmospherics APC";
+ pixel_x = -24
},
/obj/structure/cable{
icon_state = "0-4";
- d2 = 4
+ d2 = 4
},
/turf/open/floor/plasteel,
/area/atmos)
-"cec" = (
+"bZG" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 8;
+ icon_state = "1-8"
},
/turf/open/floor/plasteel,
/area/atmos)
-"ced" = (
+"bZH" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 4;
- initialize_directions = 11
+ initialize_directions = 11
},
/obj/item/weapon/wrench,
/turf/open/floor/plasteel,
/area/atmos)
-"cee" = (
+"bZI" = (
/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 8
},
/obj/machinery/meter,
/turf/open/floor/plasteel,
/area/atmos)
-"cef" = (
+"bZJ" = (
/obj/machinery/atmospherics/components/trinary/filter{
dir = 1;
- filter_type = "plasma";
- on = 1
+ filter_type = "plasma";
+ on = 1
},
/turf/open/floor/plasteel,
/area/atmos)
-"ceg" = (
+"bZK" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 4
},
@@ -49314,25 +47624,25 @@
},
/turf/open/floor/plasteel,
/area/atmos)
-"ceh" = (
+"bZL" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 8;
- frequency = 1441;
- id = "tox_in";
- pixel_y = 1
+ frequency = 1441;
+ id = "tox_in";
+ pixel_y = 1
},
/turf/open/floor/engine/plasma,
/area/atmos)
-"cei" = (
+"bZM" = (
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
/area/maintenance/asmaint)
-"cej" = (
+"bZN" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"cek" = (
+"bZO" = (
/obj/effect/decal/cleanable/cobweb/cobweb2,
/obj/effect/spawner/lootdrop/maintenance,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
@@ -49340,17 +47650,27 @@
},
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"cel" = (
+"bZP" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
/turf/closed/wall/r_wall,
/area/medical/virology)
-"cem" = (
+"bZQ" = (
+/obj/machinery/atmospherics/components/binary/valve/open{
+ icon_state = "mvalve_map";
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/asmaint)
+"bZR" = (
/obj/machinery/airalarm{
frequency = 1439;
- pixel_y = 23
+ pixel_y = 23
},
/obj/item/weapon/wrench,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
@@ -49361,17 +47681,7 @@
},
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"cen" = (
-/obj/machinery/atmospherics/components/binary/valve/open{
- icon_state = "mvalve_map";
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"ceo" = (
+"bZS" = (
/obj/machinery/atmospherics/components/unary/tank/air{
dir = 8
},
@@ -49380,12 +47690,7 @@
},
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"cep" = (
-/obj/structure/closet/emcloset,
-/obj/effect/decal/cleanable/cobweb,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"ceq" = (
+"bZT" = (
/obj/structure/rack{
dir = 1
},
@@ -49395,72 +47700,77 @@
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"cer" = (
+"bZU" = (
+/obj/structure/closet/emcloset,
+/obj/effect/decal/cleanable/cobweb,
+/turf/open/floor/plating,
+/area/maintenance/asmaint)
+"bZV" = (
/obj/structure/grille,
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/structure/cable{
icon_state = "0-2";
- d2 = 2
+ d2 = 2
},
/obj/machinery/door/poddoor/preopen{
id = "xenobio1";
- name = "containment blast door"
+ name = "containment blast door"
},
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/engine,
/area/toxins/xenobiology)
-"ces" = (
+"bZW" = (
/obj/structure/window/reinforced,
/obj/structure/table/reinforced,
/obj/machinery/button/door{
id = "xenobio6";
- name = "Containment Blast Doors";
- pixel_x = 0;
- pixel_y = 4;
- req_access_txt = "55"
+ name = "Containment Blast Doors";
+ pixel_x = 0;
+ pixel_y = 4;
+ req_access_txt = "55"
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
},
/obj/effect/turf_decal/stripes/line{
dir = 10
},
/turf/open/floor/plasteel,
/area/toxins/xenobiology)
-"cet" = (
+"bZX" = (
/obj/structure/grille,
/obj/structure/cable{
icon_state = "0-2";
- d2 = 2
+ d2 = 2
},
/obj/structure/cable{
d2 = 8;
- icon_state = "0-8"
+ icon_state = "0-8"
},
/obj/machinery/door/poddoor/preopen{
id = "xenobio6";
- name = "containment blast door"
+ name = "containment blast door"
},
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/engine,
/area/toxins/xenobiology)
-"ceu" = (
+"bZY" = (
/obj/item/device/radio/intercom{
pixel_x = -25
},
/turf/open/floor/engine,
/area/toxins/misc_lab)
-"cev" = (
+"bZZ" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/toxins/misc_lab)
-"cew" = (
+"caa" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/stripes/corner{
@@ -49468,10 +47778,10 @@
},
/turf/open/floor/plasteel,
/area/toxins/misc_lab)
-"cex" = (
+"cab" = (
/obj/structure/extinguisher_cabinet{
pixel_x = 27;
- pixel_y = 0
+ pixel_y = 0
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/stripes/corner{
@@ -49479,159 +47789,156 @@
},
/turf/open/floor/plasteel,
/area/toxins/misc_lab)
-"cey" = (
-/obj/structure/table,
-/obj/item/device/flashlight/lamp,
+"cac" = (
+/obj/structure/chair/stool,
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"cez" = (
-/obj/structure/chair/stool,
+"cad" = (
+/obj/structure/table,
+/obj/item/device/flashlight/lamp,
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"ceA" = (
+"cae" = (
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
/area/maintenance/asmaint2)
-"ceB" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/door/airlock{
- name = "Gaming Room"
+"caf" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 5
},
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"ceC" = (
-/obj/machinery/door/airlock{
- name = "Gaming Room"
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"ceD" = (
+/turf/open/floor/plating/airless,
+/area/maintenance/aft)
+"cag" = (
/obj/machinery/power/terminal{
dir = 4
},
/obj/machinery/ntnet_relay,
/turf/open/floor/bluegrid{
name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
+ initial_gas_mix = "n2=100;TEMP=80"
},
/area/tcommsat/server)
-"ceE" = (
+"cah" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/bluegrid{
+ name = "Mainframe Base";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/server)
+"cai" = (
/obj/machinery/power/smes{
charge = 5e+006
},
/obj/structure/cable{
icon_state = "0-4";
- d2 = 4
+ d2 = 4
},
/turf/open/floor/bluegrid{
name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
+ initial_gas_mix = "n2=100;TEMP=80"
},
/area/tcommsat/server)
-"ceF" = (
+"caj" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 4;
+ icon_state = "1-4"
},
/turf/open/floor/bluegrid{
name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
+ initial_gas_mix = "n2=100;TEMP=80"
},
/area/tcommsat/server)
-"ceG" = (
+"cak" = (
/obj/machinery/telecomms/hub/preset,
/turf/open/floor/plasteel/vault{
dir = 8;
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/server)
-"ceH" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/open/floor/bluegrid{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/server)
-"ceI" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/turf/open/floor/bluegrid{
- name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
+ name = "Mainframe Floor";
+ initial_gas_mix = "n2=100;TEMP=80"
},
/area/tcommsat/server)
-"ceJ" = (
+"cal" = (
/obj/machinery/door/airlock/glass_engineering{
cyclelinkeddir = 4;
- name = "Server Room";
- req_access_txt = "61"
+ name = "Server Room";
+ req_access_txt = "61"
},
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 8;
+ icon_state = "1-8"
},
/obj/structure/cable{
d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d2 = 8;
+ icon_state = "2-8"
},
/turf/open/floor/plasteel/vault{
dir = 5
},
/area/tcommsat/computer)
-"ceK" = (
-/turf/open/floor/plasteel/vault{
- dir = 5
+"cam" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/tcommsat/computer)
-"ceL" = (
+/turf/open/floor/bluegrid{
+ name = "Mainframe Base";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/server)
+"can" = (
/obj/machinery/door/airlock/glass_engineering{
cyclelinkeddir = 8;
- name = "Server Room";
- req_access_txt = "61"
+ name = "Server Room";
+ req_access_txt = "61"
},
/turf/open/floor/plasteel/vault{
dir = 5
},
/area/tcommsat/computer)
-"ceM" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
+"cao" = (
+/turf/open/floor/plasteel/vault{
+ dir = 5
},
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"ceN" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
/area/tcommsat/computer)
-"ceO" = (
-/obj/structure/closet/emcloset,
-/obj/machinery/camera{
- c_tag = "Telecoms Monitoring";
- dir = 8;
- network = list("SS13")
+"cap" = (
+/obj/machinery/light,
+/obj/structure/closet/firecloset,
+/turf/open/floor/plasteel/yellow/side{
+ dir = 6
+ },
+/area/engine/break_room)
+"caq" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
+/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"ceP" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"ceQ" = (
+"car" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/closed/wall,
+/area/maintenance/aft)
+"cas" = (
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
},
@@ -49640,165 +47947,166 @@
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"ceR" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
- },
-/turf/open/floor/plasteel/caution/corner{
- dir = 8
+"cat" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
},
-/area/hallway/primary/aft)
-"ceS" = (
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cau" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
},
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
-"ceT" = (
-/turf/open/floor/plasteel/yellow/corner{
- dir = 2
+"cav" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/caution/corner{
+ dir = 8
},
/area/hallway/primary/aft)
-"ceU" = (
+"caw" = (
/obj/structure/table,
/obj/item/clothing/glasses/meson,
/obj/machinery/airalarm{
dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
+ icon_state = "alarm0";
+ pixel_x = -22
},
/turf/open/floor/plasteel,
/area/engine/break_room)
-"ceV" = (
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"ceW" = (
-/obj/machinery/holopad,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"ceX" = (
+"cax" = (
+/obj/structure/closet/wardrobe/black,
+/obj/effect/decal/cleanable/cobweb,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cay" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"ceY" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plating,
-/area/security/checkpoint/engineering)
-"ceZ" = (
-/obj/structure/table,
-/obj/machinery/recharger{
- pixel_y = 4
+/area/maintenance/aft)
+"caz" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/turf/open/floor/plasteel/red/side{
- dir = 10
- },
-/area/security/checkpoint/engineering)
-"cfa" = (
-/obj/structure/table,
-/obj/item/weapon/book/manual/wiki/security_space_law,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plasteel/red/side,
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"caA" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
/area/security/checkpoint/engineering)
-"cfb" = (
-/obj/structure/table,
-/obj/item/weapon/paper_bin{
- pixel_x = 1;
- pixel_y = 9
+"caB" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/item/weapon/pen,
-/obj/structure/reagent_dispensers/peppertank{
- pixel_x = 30;
- pixel_y = 0
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/turf/open/floor/plasteel/red/side{
- dir = 6
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"caC" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/area/security/checkpoint/engineering)
-"cfc" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+ dir = 9
},
-/turf/closed/wall/r_wall,
-/area/security/checkpoint/engineering)
-"cfd" = (
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"caD" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/security/checkpoint/engineering)
+"caE" = (
/obj/machinery/requests_console{
department = "Atmospherics";
- departmentType = 4;
- name = "Atmos RC";
- pixel_x = 30;
- pixel_y = 0
+ departmentType = 4;
+ name = "Atmos RC";
+ pixel_x = 30;
+ pixel_y = 0
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/obj/machinery/light{
dir = 4;
- icon_state = "tube1"
+ icon_state = "tube1"
},
/turf/open/floor/plasteel,
/area/atmos)
-"cfe" = (
+"caF" = (
/obj/machinery/light{
icon_state = "tube1";
- dir = 8
+ dir = 8
},
/obj/machinery/camera{
c_tag = "Atmospherics Central";
- dir = 4;
- network = list("SS13")
+ dir = 4;
+ network = list("SS13")
},
/obj/machinery/atmospherics/components/binary/pump{
dir = 0;
- name = "Port to Filter";
- on = 0
+ name = "Port to Filter";
+ on = 0
},
/turf/open/floor/plasteel,
/area/atmos)
-"cff" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
+"caG" = (
+/obj/machinery/atmospherics/components/unary/thermomachine/heater{
dir = 8
},
-/obj/structure/chair/stool,
/turf/open/floor/plasteel,
/area/atmos)
-"cfg" = (
-/obj/machinery/atmospherics/components/unary/thermomachine/heater{
+"caH" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
dir = 8
},
+/obj/structure/chair/stool,
/turf/open/floor/plasteel,
/area/atmos)
-"cfh" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/yellow/visible{
- icon_state = "intact";
- dir = 5
- },
-/turf/open/space,
-/area/space/nearstation)
-"cfi" = (
+"caI" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
@@ -49806,95 +48114,89 @@
},
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"cfj" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
+"caJ" = (
+/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
- dir = 4
+ icon_state = "intact";
+ dir = 5
},
+/turf/open/space,
+/area/space/nearstation)
+"caK" = (
+/obj/structure/rack,
+/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"cfk" = (
+"caL" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/yellow/visible{
- icon_state = "intact";
- dir = 10
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"cfl" = (
-/obj/structure/rack,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"cfm" = (
+"caM" = (
/obj/structure/disposalpipe/segment{
dir = 1;
- icon_state = "pipe-c"
+ icon_state = "pipe-c"
},
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 4;
+ icon_state = "1-4"
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"cfn" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"cfo" = (
+"caN" = (
/obj/structure/disposalpipe/segment{
dir = 2;
- icon_state = "pipe-c"
+ icon_state = "pipe-c"
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"cfp" = (
+"caO" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d2 = 8;
+ icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"cfq" = (
+"caP" = (
+/obj/machinery/atmospherics/components/binary/valve{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 2
+ },
+/turf/open/floor/plating,
+/area/maintenance/asmaint)
+"caQ" = (
/obj/structure/chair/stool{
pixel_y = 8
},
@@ -49909,16 +48211,7 @@
},
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"cfr" = (
-/obj/machinery/atmospherics/components/binary/valve{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 2
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"cfs" = (
+"caR" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 8
},
@@ -49928,183 +48221,164 @@
},
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"cft" = (
+"caS" = (
/obj/structure/disposalpipe/segment{
dir = 4;
- icon_state = "pipe-c"
+ icon_state = "pipe-c"
},
/obj/structure/cable{
d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d2 = 4;
+ icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
},
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"cfu" = (
+"caT" = (
/obj/structure/disposalpipe/segment{
dir = 8;
- icon_state = "pipe-c"
+ icon_state = "pipe-c"
},
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 8;
+ icon_state = "1-8"
},
/obj/structure/cable{
d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d2 = 8;
+ icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"cfv" = (
+"caU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/asmaint)
+"caV" = (
/obj/machinery/door/window/northleft{
base_state = "right";
- dir = 8;
- icon_state = "right";
- name = "Containment Pen";
- req_access_txt = "55"
+ dir = 8;
+ icon_state = "right";
+ name = "Containment Pen";
+ req_access_txt = "55"
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
/obj/machinery/door/poddoor/preopen{
id = "xenobio1";
- name = "containment blast door"
+ name = "containment blast door"
},
/turf/open/floor/engine,
/area/toxins/xenobiology)
-"cfw" = (
+"caW" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
/obj/machinery/door/window/northleft{
dir = 4;
- name = "Containment Pen";
- req_access_txt = "55"
+ name = "Containment Pen";
+ req_access_txt = "55"
},
/obj/machinery/door/poddoor/preopen{
id = "xenobio6";
- name = "containment blast door"
+ name = "containment blast door"
},
/turf/open/floor/engine,
/area/toxins/xenobiology)
-"cfx" = (
+"caX" = (
/obj/machinery/sparker{
id = "testigniter";
- pixel_x = -25
+ pixel_x = -25
},
/turf/open/floor/engine,
/area/toxins/misc_lab)
-"cfy" = (
+"caY" = (
/obj/item/device/radio/beacon,
/turf/open/floor/engine,
/area/toxins/misc_lab)
-"cfz" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/turf/open/floor/engine,
-/area/toxins/misc_lab)
-"cfA" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/engine,
-/area/toxins/misc_lab)
-"cfB" = (
+"caZ" = (
+/obj/structure/grille,
/obj/machinery/door/poddoor/preopen{
id = "testlab";
- name = "test chamber blast door"
- },
-/obj/machinery/door/airlock/glass_research{
- cyclelinkeddir = 4;
- name = "Test Chamber";
- req_access_txt = "47"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+ name = "test chamber blast door"
},
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/engine,
/area/toxins/misc_lab)
-"cfC" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel{
- name = "floor"
+"cba" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
+/turf/open/floor/engine,
/area/toxins/misc_lab)
-"cfD" = (
-/obj/machinery/door/airlock/glass_research{
- cyclelinkeddir = 8;
- name = "Test Chamber";
- req_access_txt = "47"
- },
+"cbb" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel{
- name = "floor"
- },
+/turf/open/floor/engine,
/area/toxins/misc_lab)
-"cfE" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
+"cbc" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
},
-/turf/open/floor/plasteel,
+/turf/open/floor/engine,
/area/toxins/misc_lab)
-"cfF" = (
+"cbd" = (
/obj/machinery/power/apc{
dir = 4;
- name = "Testing Lab APC";
- pixel_x = 26;
- pixel_y = 0
+ name = "Testing Lab APC";
+ pixel_x = 26;
+ pixel_y = 0
},
/obj/structure/cable{
d2 = 8;
- icon_state = "0-8"
+ icon_state = "0-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/floorgrime,
/area/toxins/misc_lab)
-"cfG" = (
+"cbe" = (
/obj/machinery/light/small{
dir = 4
},
/turf/open/floor/plasteel,
/area/toxins/misc_lab)
-"cfH" = (
+"cbf" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"cfI" = (
+"cbg" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/disposalpipe/segment,
@@ -50112,418 +48386,368 @@
icon_state = "platingdmg3"
},
/area/maintenance/asmaint2)
-"cfJ" = (
-/obj/structure/table,
-/obj/item/weapon/paper_bin{
- pixel_x = -2;
- pixel_y = 5
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"cfK" = (
+"cbh" = (
/obj/structure/table,
/obj/item/weapon/folder/white,
/obj/item/weapon/folder/white,
/obj/item/weapon/pen,
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"cfL" = (
-/obj/structure/closet/secure_closet/freezer/kitchen/maintenance,
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/bar)
-"cfM" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/bar)
-"cfN" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/firealarm{
- pixel_y = 24
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/bar)
-"cfO" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/door/airlock{
- name = "Kitchen"
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/bar)
-"cfP" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+"cbi" = (
+/obj/structure/table,
+/obj/item/weapon/paper_bin{
+ pixel_x = -2;
+ pixel_y = 5
},
-/turf/open/floor/plasteel/bar,
-/area/maintenance/bar)
-"cfQ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"cbj" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 4
},
-/obj/machinery/newscaster{
- pixel_y = 32
- },
-/turf/open/floor/plasteel/bar,
-/area/maintenance/bar)
-"cfR" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/obj/machinery/firealarm{
- pixel_y = 24
- },
-/turf/open/floor/plasteel/bar,
-/area/maintenance/bar)
-"cfS" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
- },
-/obj/machinery/door/window/eastleft{
- name = "Bar Counter"
- },
-/turf/open/floor/plasteel/bar,
-/area/maintenance/bar)
-"cfT" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cfU" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cfV" = (
-/obj/machinery/light{
- dir = 1
- },
-/obj/machinery/newscaster{
- pixel_y = 32
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+/turf/open/floor/plating/airless,
+/area/maintenance/aft)
+"cbk" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cfW" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/light/small{
- dir = 8
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "Mix to Space";
+ on = 1
},
-/turf/open/floor/plating,
-/area/maintenance/bar)
-"cfX" = (
+/turf/open/floor/plating/airless,
+/area/maintenance/aft)
+"cbl" = (
/obj/machinery/camera{
c_tag = "Telecoms Server Room";
- dir = 4;
- network = list("SS13")
+ dir = 4;
+ network = list("SS13")
},
/turf/open/floor/plasteel/black{
name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
+ initial_gas_mix = "n2=100;TEMP=80"
},
/area/tcommsat/server)
-"cfY" = (
+"cbm" = (
/obj/structure/window/reinforced/fulltile,
/obj/structure/grille,
/obj/structure/cable{
icon_state = "0-4";
- d2 = 4
+ d2 = 4
},
/obj/structure/cable,
/turf/open/floor/plating,
/area/tcommsat/computer)
-"cfZ" = (
+"cbn" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'SERVER ROOM'.";
+ name = "SERVER ROOM";
+ pixel_y = 0
+ },
+/turf/closed/wall,
+/area/tcommsat/computer)
+"cbo" = (
/obj/structure/window/reinforced/fulltile,
/obj/structure/grille,
/obj/structure/cable{
icon_state = "0-2";
- d2 = 2
+ d2 = 2
},
/obj/structure/cable{
d2 = 8;
- icon_state = "0-8"
+ icon_state = "0-8"
},
/turf/open/floor/plating,
/area/tcommsat/computer)
-"cga" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'SERVER ROOM'.";
- name = "SERVER ROOM";
- pixel_y = 0
+"cbp" = (
+/obj/machinery/power/apc{
+ cell_type = 5000;
+ dir = 4;
+ name = "CE Office APC";
+ pixel_x = 24;
+ pixel_y = 0
},
-/turf/closed/wall,
-/area/tcommsat/computer)
-"cgb" = (
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"cgc" = (
-/obj/machinery/holopad,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"cgd" = (
-/obj/machinery/requests_console{
- announcementConsole = 1;
- department = "Telecoms Admin";
- departmentType = 5;
- name = "Telecoms RC";
- pixel_x = 30;
- pixel_y = 0
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"cge" = (
-/obj/structure/disposalpipe/sortjunction{
- dir = 2;
- icon_state = "pipe-j2s";
- sortType = 5
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/neutral{
+ dir = 2
+ },
+/area/engine/chiefs_office)
+"cbq" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/caution/corner{
- dir = 8
+/turf/open/floor/plasteel/neutral{
+ dir = 2
},
-/area/hallway/primary/aft)
-"cgf" = (
+/area/engine/chiefs_office)
+"cbr" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/open/floor/plasteel,
/area/hallway/primary/aft)
-"cgg" = (
+"cbs" = (
+/obj/structure/sign/securearea,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/engine/engineering)
+"cbt" = (
/obj/structure/disposalpipe/segment{
dir = 2;
- icon_state = "pipe-c"
+ icon_state = "pipe-c"
},
/obj/machinery/camera{
c_tag = "Aft Primary Hallway 1";
- dir = 8;
- network = list("SS13");
- pixel_x = 0;
- pixel_y = -22
+ dir = 8;
+ network = list("SS13");
+ pixel_x = 0;
+ pixel_y = -22
},
/turf/open/floor/plasteel/yellow/corner{
dir = 2
},
/area/hallway/primary/aft)
-"cgh" = (
+"cbu" = (
/obj/machinery/power/apc{
dir = 8;
- name = "Engineering Foyer APC";
- pixel_x = -24
+ name = "Engineering Foyer APC";
+ pixel_x = -24
},
/obj/structure/cable{
icon_state = "0-2";
- d2 = 2
+ d2 = 2
},
/turf/open/floor/plasteel,
/area/engine/break_room)
-"cgi" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cgj" = (
+"cbv" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Research Delivery access";
+ req_access_txt = "12"
+ },
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"cbw" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cbx" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cgk" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/security/checkpoint/engineering)
-"cgl" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/turf/open/floor/plasteel,
-/area/atmos)
-"cgm" = (
+/area/maintenance/aft)
+"cby" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cbz" = (
/obj/structure/closet/wardrobe/atmospherics_yellow,
/turf/open/floor/plasteel,
/area/atmos)
-"cgn" = (
-/obj/machinery/space_heater,
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
+"cbA" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/turf/open/floor/plasteel,
/area/atmos)
-"cgo" = (
+"cbB" = (
/obj/machinery/space_heater,
/obj/effect/turf_decal/stripes/line{
dir = 6
},
/turf/open/floor/plasteel,
/area/atmos)
-"cgp" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
- dir = 8
+"cbC" = (
+/obj/machinery/space_heater,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
},
/turf/open/floor/plasteel,
/area/atmos)
-"cgq" = (
+"cbD" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 8;
- name = "Port to Filter";
- on = 0
+ name = "Port to Filter";
+ on = 0
},
/turf/open/floor/plasteel,
/area/atmos)
-"cgr" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible,
-/obj/item/weapon/cigbutt,
-/turf/open/floor/plasteel,
-/area/atmos)
-"cgs" = (
+"cbE" = (
/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
dir = 8
},
/turf/open/floor/plasteel,
/area/atmos)
-"cgt" = (
+"cbF" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible,
+/obj/item/weapon/cigbutt,
+/turf/open/floor/plasteel,
+/area/atmos)
+"cbG" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 8;
- name = "CO2 Outlet Pump";
- on = 0
+ name = "CO2 Outlet Pump";
+ on = 0
},
/turf/open/floor/plasteel/yellow/side{
dir = 5
},
/area/atmos)
-"cgu" = (
+"cbH" = (
+/turf/open/floor/engine/co2,
+/area/atmos)
+"cbI" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
- external_pressure_bound = 0;
- frequency = 1441;
- id_tag = "co2_out";
- initialize_directions = 1;
- internal_pressure_bound = 4000;
- on = 1;
- pressure_checks = 2;
- pump_direction = 0
+ external_pressure_bound = 0;
+ frequency = 1441;
+ id_tag = "co2_out";
+ initialize_directions = 1;
+ internal_pressure_bound = 4000;
+ on = 1;
+ pressure_checks = 2;
+ pump_direction = 0
},
/turf/open/floor/engine/co2,
/area/atmos)
-"cgv" = (
-/turf/open/floor/engine/co2,
-/area/atmos)
-"cgw" = (
+"cbJ" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+ icon_state = "intact";
+ dir = 10
},
-/obj/machinery/atmospherics/pipe/simple/yellow/visible,
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"cgx" = (
+"cbK" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/maintenance/asmaint)
+"cbL" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"cgy" = (
+"cbM" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"cgz" = (
+"cbN" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"cgA" = (
+"cbO" = (
/obj/machinery/door/airlock/atmos{
name = "Atmospherics Maintenance";
- req_access_txt = "12;24"
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"cgB" = (
-/obj/structure/disposalpipe/segment{
- dir = 4;
- icon_state = "pipe-c"
+ req_access_txt = "12;24"
},
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"cgC" = (
+"cbP" = (
/obj/structure/disposalpipe/segment{
dir = 2;
- icon_state = "pipe-c"
+ icon_state = "pipe-c"
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"cgD" = (
-/obj/structure/grille,
-/obj/structure/cable,
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/machinery/door/poddoor/preopen{
- id = "xenobio1";
- name = "containment blast door"
+"cbQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/engine,
-/area/toxins/xenobiology)
-"cgE" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/maintenance/asmaint)
+"cbR" = (
/obj/structure/table/reinforced,
/obj/machinery/button/door{
id = "xenobio1";
- name = "Containment Blast Doors";
- pixel_x = 0;
- pixel_y = 4;
- req_access_txt = "55"
+ name = "Containment Blast Doors";
+ pixel_x = 0;
+ pixel_y = 4;
+ req_access_txt = "55"
},
/obj/structure/window/reinforced{
dir = 1
},
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
- on = 1
+ on = 1
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
/obj/machinery/light,
/obj/effect/turf_decal/stripes/line{
@@ -50531,16 +48755,30 @@
},
/turf/open/floor/plasteel,
/area/toxins/xenobiology)
-"cgF" = (
+"cbS" = (
+/obj/structure/grille,
+/obj/structure/cable,
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/machinery/door/poddoor/preopen{
+ id = "xenobio1";
+ name = "containment blast door"
+ },
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/engine,
+/area/toxins/xenobiology)
+"cbT" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 8;
+ icon_state = "1-8"
},
/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
-"cgG" = (
+"cbU" = (
/obj/structure/grille,
/obj/structure/disposalpipe/segment{
dir = 4
@@ -50548,26 +48786,26 @@
/obj/structure/cable,
/obj/machinery/door/poddoor/preopen{
id = "xenobio6";
- name = "containment blast door"
+ name = "containment blast door"
},
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/engine,
/area/toxins/xenobiology)
-"cgH" = (
+"cbV" = (
/obj/machinery/camera{
c_tag = "Testing Chamber";
- dir = 1;
- network = list("Test","RD");
- pixel_x = 0
+ dir = 1;
+ network = list("Test","RD");
+ pixel_x = 0
},
/obj/machinery/light,
/turf/open/floor/engine,
/area/toxins/misc_lab)
-"cgI" = (
+"cbW" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -50576,412 +48814,330 @@
},
/turf/open/floor/plasteel,
/area/toxins/misc_lab)
-"cgJ" = (
+"cbX" = (
/obj/machinery/camera{
c_tag = "Testing Lab South";
- dir = 8;
- network = list("SS13","RD");
- pixel_y = -22
+ dir = 8;
+ network = list("SS13","RD");
+ pixel_y = -22
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/toxins/misc_lab)
-"cgK" = (
-/obj/structure/closet/crate,
-/obj/item/target,
-/obj/item/target,
-/obj/item/target,
-/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"cgL" = (
+"cbY" = (
/obj/structure/closet/crate,
/obj/item/target/syndicate,
/obj/item/target/alien,
/obj/item/target/clown,
/turf/open/floor/plasteel,
/area/toxins/misc_lab)
-"cgM" = (
+"cbZ" = (
+/obj/structure/closet/crate,
+/obj/item/target,
+/obj/item/target,
+/obj/item/target,
+/turf/open/floor/plasteel,
+/area/toxins/misc_lab)
+"cca" = (
/obj/structure/cable{
icon_state = "0-4";
- d2 = 4
+ d2 = 4
},
/obj/machinery/power/solar{
id = "portsolar";
- name = "Port Solar Array"
+ name = "Port Solar Array"
},
/turf/open/floor/plasteel/airless/solarpanel,
/area/solar/port)
-"cgN" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/port)
-"cgO" = (
+"ccb" = (
/obj/structure/cable{
d2 = 8;
- icon_state = "0-8"
+ icon_state = "0-8"
},
/obj/machinery/power/solar{
id = "portsolar";
- name = "Port Solar Array"
+ name = "Port Solar Array"
},
/turf/open/floor/plasteel/airless/solarpanel,
/area/solar/port)
-"cgP" = (
-/turf/closed/wall/r_wall,
-/area/maintenance/aft)
-"cgQ" = (
+"ccc" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/solar/port)
+"ccd" = (
+/obj/structure/closet,
+/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/aft)
-"cgR" = (
-/obj/structure/table,
-/obj/machinery/microwave,
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/bar)
-"cgS" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/obj/effect/landmark{
- name = "xeno_spawn";
- pixel_x = -1
+"cce" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/bar)
-"cgT" = (
-/obj/structure/reagent_dispensers/keg/mead,
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/bar)
-"cgU" = (
-/obj/structure/table,
-/obj/item/device/radio/intercom{
- freerange = 0;
- frequency = 1459;
- name = "Station Intercom (General)";
- pixel_x = -30
+/obj/machinery/door/airlock/maintenance{
+ name = "Construction Area Maintenance";
+ req_access_txt = "32"
},
-/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,
-/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,
-/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,
-/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,
-/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,
-/turf/open/floor/plasteel/bar,
-/area/maintenance/bar)
-"cgV" = (
-/turf/open/floor/plasteel/bar,
-/area/maintenance/bar)
-"cgW" = (
-/obj/structure/table,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/bar,
-/area/maintenance/bar)
-"cgX" = (
-/obj/structure/chair/stool/bar,
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cgY" = (
-/obj/item/device/radio/intercom{
- dir = 4;
- name = "Station Intercom (General)";
- pixel_x = 27
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cgZ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
-/area/maintenance/bar)
-"cha" = (
-/obj/machinery/message_server,
+/area/construction)
+"ccf" = (
+/obj/machinery/telecomms/broadcaster/preset_left,
/turf/open/floor/plasteel/black{
name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
+ initial_gas_mix = "n2=100;TEMP=80"
},
/area/tcommsat/server)
-"chb" = (
-/obj/machinery/telecomms/broadcaster/preset_left,
+"ccg" = (
+/obj/machinery/message_server,
/turf/open/floor/plasteel/black{
name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
+ initial_gas_mix = "n2=100;TEMP=80"
},
/area/tcommsat/server)
-"chc" = (
+"cch" = (
/obj/machinery/telecomms/receiver/preset_left,
/turf/open/floor/plasteel/black{
name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
+ initial_gas_mix = "n2=100;TEMP=80"
},
/area/tcommsat/server)
-"chd" = (
+"cci" = (
/obj/structure/table,
/obj/item/device/multitool,
/turf/open/floor/plasteel/yellow/side{
dir = 9
},
/area/tcommsat/computer)
-"che" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+"ccj" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/clipboard,
+/obj/item/weapon/lighter,
+/obj/item/clothing/glasses/meson{
+ pixel_y = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"chf" = (
-/obj/machinery/light_switch{
- pixel_x = 27
+/obj/item/weapon/stamp/ce,
+/obj/item/weapon/stock_parts/cell/high/plus,
+/turf/open/floor/plasteel/neutral{
+ dir = 2
},
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"chg" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+/area/engine/chiefs_office)
+"cck" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/closed/wall/r_wall,
-/area/tcommsat/computer)
-"chh" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/turf/open/floor/plasteel/yellow/side{
- dir = 9
+/turf/open/floor/plasteel/neutral{
+ dir = 2
},
-/area/hallway/primary/aft)
-"chi" = (
-/obj/structure/disposalpipe/segment{
+/area/engine/chiefs_office)
+"ccl" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/neutral{
+ dir = 2
+ },
+/area/engine/chiefs_office)
+"ccm" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
- icon_state = "pipe-c"
+ on = 1
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"ccn" = (
+/obj/machinery/camera{
+ c_tag = "Engineering Access"
+ },
+/obj/structure/closet/radiation,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cco" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
-/turf/open/floor/plasteel/yellow/side{
- dir = 1
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"ccp" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/hallway/primary/aft)
-"chj" = (
/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/turf/open/floor/plasteel/yellow/corner{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
},
-/area/hallway/primary/aft)
-"chk" = (
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"ccq" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"chl" = (
-/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/turf/open/floor/plasteel/yellow/corner{
- dir = 4
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"ccr" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/area/hallway/primary/aft)
-"chm" = (
-/obj/item/device/radio/intercom{
- broadcasting = 0;
- name = "Station Intercom (General)";
- pixel_y = 20
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/plasteel/yellow/side{
- dir = 5
- },
-/area/hallway/primary/aft)
-"chn" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+ dir = 9
},
/turf/open/floor/plating,
-/area/engine/break_room)
-"cho" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+/area/maintenance/asmaint2)
+"ccs" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/engine/break_room)
-"chp" = (
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"chq" = (
+"cct" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 8;
+ icon_state = "1-8"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"chr" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"chs" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"ccu" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cht" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
},
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"chu" = (
-/obj/machinery/vending/snack,
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"chv" = (
-/turf/closed/wall/r_wall,
-/area/engine/engineering)
-"chw" = (
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"ccv" = (
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -24
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"chx" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 5
+ pixel_x = -24
},
/turf/open/floor/plasteel,
/area/atmos)
-"chy" = (
+"ccw" = (
+/turf/closed/wall/r_wall,
+/area/engine/engineering)
+"ccx" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
dir = 1
},
/obj/machinery/meter,
/turf/open/floor/plasteel,
/area/atmos)
-"chz" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"chA" = (
+"ccy" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 9
+ dir = 5
},
-/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel,
/area/atmos)
-"chB" = (
+"ccz" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 4;
- name = "N2 to Pure";
- on = 0
+ name = "N2 to Pure";
+ on = 0
},
/turf/open/floor/plasteel,
/area/atmos)
-"chC" = (
+"ccA" = (
/obj/machinery/computer/atmos_control/tank{
frequency = 1441;
- input_tag = "co2_in";
- name = "Carbon Dioxide Supply Control";
- output_tag = "co2_out";
- sensors = list("co2_sensor" = "Tank")
+ input_tag = "co2_in";
+ name = "Carbon Dioxide Supply Control";
+ output_tag = "co2_out";
+ sensors = list("co2_sensor" = "Tank")
},
/turf/open/floor/plasteel/yellow/side{
dir = 4
},
/area/atmos)
-"chD" = (
+"ccB" = (
+/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
+/turf/open/floor/engine/co2,
+/area/atmos)
+"ccC" = (
/obj/machinery/air_sensor{
frequency = 1441;
- id_tag = "co2_sensor"
+ id_tag = "co2_sensor"
},
/turf/open/floor/engine/co2,
/area/atmos)
-"chE" = (
-/obj/machinery/portable_atmospherics/canister/carbon_dioxide,
-/turf/open/floor/engine/co2,
-/area/atmos)
-"chF" = (
+"ccD" = (
/obj/machinery/light/small{
dir = 4
},
/turf/open/floor/engine/co2,
/area/atmos)
-"chG" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+"ccE" = (
+/obj/structure/sign/nosmoking_2{
+ pixel_x = 0;
+ pixel_y = 28
},
-/obj/machinery/atmospherics/pipe/simple/yellow/visible,
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"chH" = (
+"ccF" = (
/obj/machinery/light/small{
dir = 1
},
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"chI" = (
-/obj/structure/sign/nosmoking_2{
- pixel_x = 0;
- pixel_y = 28
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"chJ" = (
+"ccG" = (
/obj/structure/chair/stool,
/obj/effect/decal/cleanable/cobweb{
icon_state = "cobweb2"
@@ -50989,120 +49145,119 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"chK" = (
+"ccH" = (
/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
+ dir = 4
},
/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
+ dir = 4
},
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"chL" = (
+"ccI" = (
/obj/structure/disposalpipe/segment{
- dir = 4
+ dir = 1;
+ icon_state = "pipe-c"
},
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+ dir = 5
},
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"chM" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
+"ccJ" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
},
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"chN" = (
+"ccK" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"chO" = (
+"ccL" = (
/obj/structure/disposalpipe/segment{
dir = 4;
- icon_state = "pipe-c"
+ icon_state = "pipe-c"
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"chP" = (
+"ccM" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/maintenance/asmaint)
+"ccN" = (
/obj/structure/disposalpipe/segment{
dir = 8;
- icon_state = "pipe-c"
+ icon_state = "pipe-c"
},
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 8;
+ icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"chQ" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"chR" = (
+"ccO" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"chS" = (
+"ccP" = (
/obj/structure/disposalpipe/segment,
/turf/open/floor/plasteel/white,
/area/toxins/xenobiology)
-"chT" = (
-/obj/structure/rack,
-/obj/item/clothing/shoes/winterboots,
-/obj/item/clothing/suit/hooded/wintercoat,
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"chU" = (
+"ccQ" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/toxins/xenobiology)
+"ccR" = (
/obj/machinery/portable_atmospherics/pump,
/obj/effect/turf_decal/bot{
dir = 2
@@ -51111,85 +49266,76 @@
dir = 2
},
/area/toxins/misc_lab)
-"chV" = (
+"ccS" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/floorgrime,
/area/toxins/misc_lab)
-"chW" = (
+"ccT" = (
/obj/machinery/light{
dir = 4;
- icon_state = "tube1"
+ icon_state = "tube1"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/floorgrime,
/area/toxins/misc_lab)
-"chX" = (
+"ccU" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall,
/area/maintenance/asmaint2)
-"chY" = (
+"ccV" = (
/obj/structure/table,
-/obj/effect/decal/cleanable/cobweb,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"chZ" = (
+"ccW" = (
/obj/structure/table,
+/obj/effect/decal/cleanable/cobweb,
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"cia" = (
+"ccX" = (
/obj/structure/cable{
d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d2 = 8;
+ icon_state = "2-8"
},
/obj/structure/cable{
d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d2 = 4;
+ icon_state = "2-4"
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/lattice/catwalk,
/turf/open/space,
/area/solar/port)
-"cib" = (
-/obj/effect/decal/cleanable/cobweb,
-/obj/structure/closet/crate,
-/obj/effect/spawner/lootdrop/maintenance,
+"ccY" = (
+/obj/structure/table,
+/obj/item/weapon/kitchen/rollingpin,
+/obj/item/weapon/reagent_containers/food/condiment/enzyme,
+/obj/item/weapon/reagent_containers/food/condiment/sugar,
/turf/open/floor/plating,
/area/maintenance/aft)
-"cic" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
- },
-/obj/machinery/light/small{
- dir = 1
- },
+"ccZ" = (
+/obj/structure/chair/stool,
/turf/open/floor/plating,
/area/maintenance/aft)
-"cid" = (
+"cda" = (
/obj/structure/table,
/obj/item/device/radio/intercom{
freerange = 0;
- frequency = 1459;
- name = "Station Intercom (General)";
- pixel_x = -30
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = -30
},
/obj/item/weapon/kitchen/rollingpin,
/obj/item/weapon/reagent_containers/food/condiment/sugar,
@@ -51197,199 +49343,39 @@
/obj/item/weapon/reagent_containers/glass/beaker,
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/bar)
-"cie" = (
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/bar)
-"cif" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk,
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/bar)
-"cig" = (
-/obj/structure/table,
-/obj/machinery/power/apc{
- auto_name = 1;
- dir = 8;
- name = "Maintenance Bar APC";
- pixel_x = -25;
- pixel_y = 1
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,
-/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,
-/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,
-/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,
-/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,
-/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,
-/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,
-/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,
-/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,
-/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,
-/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,
-/turf/open/floor/plasteel/bar,
-/area/maintenance/bar)
-"cih" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/plasteel/bar,
-/area/maintenance/bar)
-"cii" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/plasteel/bar,
-/area/maintenance/bar)
-"cij" = (
-/obj/structure/table,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/plasteel/bar,
-/area/maintenance/bar)
-"cik" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/structure/chair/stool/bar,
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cil" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cim" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cin" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cio" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/door/airlock/maintenance{
- name = "Maintenance Bar"
- },
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cip" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/plating,
-/area/maintenance/bar)
-"ciq" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
+"cdb" = (
+/obj/machinery/portable_atmospherics/canister/air,
/turf/open/floor/plating,
/area/maintenance/aft)
-"cir" = (
-/obj/machinery/telecomms/server/presets/supply,
+"cdc" = (
+/obj/machinery/telecomms/bus/preset_two,
/turf/open/floor/plasteel/black{
name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
+ initial_gas_mix = "n2=100;TEMP=80"
},
/area/tcommsat/server)
-"cis" = (
-/obj/machinery/telecomms/bus/preset_two,
+"cdd" = (
+/obj/machinery/telecomms/server/presets/supply,
/turf/open/floor/plasteel/black{
name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
+ initial_gas_mix = "n2=100;TEMP=80"
},
/area/tcommsat/server)
-"cit" = (
+"cde" = (
/obj/machinery/telecomms/processor/preset_one,
/turf/open/floor/plasteel/black{
name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
+ initial_gas_mix = "n2=100;TEMP=80"
},
/area/tcommsat/server)
-"ciu" = (
+"cdf" = (
/obj/machinery/telecomms/server/presets/medical,
/turf/open/floor/plasteel/black{
name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
+ initial_gas_mix = "n2=100;TEMP=80"
},
/area/tcommsat/server)
-"civ" = (
+"cdg" = (
/obj/machinery/computer/telecomms/monitor{
network = "tcommsat"
},
@@ -51397,248 +49383,228 @@
dir = 8
},
/area/tcommsat/computer)
-"ciw" = (
-/obj/structure/chair/office/dark{
- dir = 8
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"cix" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"ciy" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"ciz" = (
-/obj/machinery/door/airlock/engineering{
- name = "Telecommunications";
- req_access_txt = "61"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/tcommsat/computer)
-"ciA" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 8
- },
-/area/hallway/primary/aft)
-"ciB" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
+"cdh" = (
+/obj/structure/disposalpipe/sortjunction{
+ dir = 8;
+ icon_state = "pipe-j2s";
+ sortType = 4
},
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"ciC" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cdi" = (
+/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"ciD" = (
-/obj/machinery/navbeacon{
- codes_txt = "patrol;next_patrol=AIE";
- location = "AftH"
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
},
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cdj" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cdk" = (
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
},
+/obj/machinery/modular_computer/console/preset/engineering,
/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"ciE" = (
+/area/engine/engineering)
+"cdl" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/carpet,
+/area/chapel/main)
+"cdm" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ external_pressure_bound = 101.325;
+ on = 1;
+ pressure_checks = 1
},
-/turf/open/floor/plasteel,
-/area/hallway/primary/aft)
-"ciF" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/turf/open/floor/plasteel/neutral{
+ dir = 2
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+/area/engine/chiefs_office)
+"cdn" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
},
-/turf/open/floor/plasteel/yellow/side{
- dir = 4
+/obj/structure/closet/firecloset,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cdo" = (
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
},
-/area/hallway/primary/aft)
-"ciG" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/structure/closet/radiation,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cdp" = (
+/obj/effect/landmark{
+ name = "lightsout"
},
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_engineering{
- name = "Engineering";
- req_access_txt = "32"
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cdq" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/tinted/fulltile,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+ dir = 6
},
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"ciH" = (
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"cdr" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 8;
+ icon_state = "1-8"
},
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"ciI" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"cds" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Science Maintenance APC";
+ pixel_x = -25
},
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"ciJ" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ icon_state = "0-4";
+ d2 = 4
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/obj/machinery/camera{
+ c_tag = "Aft Starboard Solar Access";
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"ciK" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"cdt" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/engine/break_room)
-"ciL" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
+"cdu" = (
+/obj/structure/closet/emcloset,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
},
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"ciM" = (
-/obj/machinery/vending/cigarette{
- pixel_x = 0;
- pixel_y = 0
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"cdv" = (
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
},
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"ciN" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cdw" = (
/obj/machinery/airalarm{
dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
+ icon_state = "alarm0";
+ pixel_x = -22
},
/turf/open/floor/plasteel,
/area/atmos)
-"ciO" = (
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+"cdx" = (
+/obj/machinery/atmospherics/pipe/manifold/cyan/visible,
/turf/open/floor/plasteel,
/area/atmos)
-"ciP" = (
+"cdy" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
},
/obj/machinery/meter,
/turf/open/floor/plasteel,
/area/atmos)
-"ciQ" = (
-/obj/machinery/atmospherics/pipe/manifold/cyan/visible,
-/turf/open/floor/plasteel,
-/area/atmos)
-"ciR" = (
-/obj/machinery/atmospherics/components/trinary/mixer{
- dir = 4;
- node1_concentration = 0.8;
- node2_concentration = 0.2;
- on = 1;
- pixel_x = 0;
- pixel_y = 0;
- target_pressure = 4500
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"ciS" = (
+"cdz" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible{
dir = 4
},
/obj/machinery/atmospherics/components/binary/pump{
dir = 1;
- name = "O2 to Pure";
- on = 0
+ name = "O2 to Pure";
+ on = 0
},
/turf/open/floor/plasteel,
/area/atmos)
-"ciT" = (
+"cdA" = (
+/obj/machinery/atmospherics/components/trinary/mixer{
+ dir = 4;
+ node1_concentration = 0.8;
+ node2_concentration = 0.2;
+ on = 1;
+ pixel_x = 0;
+ pixel_y = 0;
+ target_pressure = 4500
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"cdB" = (
/obj/machinery/atmospherics/components/trinary/filter{
dir = 1;
- filter_type = "co2";
- on = 1
+ filter_type = "co2";
+ on = 1
},
/turf/open/floor/plasteel,
/area/atmos)
-"ciU" = (
+"cdC" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 4
},
@@ -51646,200 +49612,139 @@
dir = 6
},
/area/atmos)
-"ciV" = (
+"cdD" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 8;
- frequency = 1441;
- id = "co2_in";
- pixel_y = 1
+ frequency = 1441;
+ id = "co2_in";
+ pixel_y = 1
},
/turf/open/floor/engine/co2,
/area/atmos)
-"ciW" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
+"cdE" = (
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/machinery/atmospherics/pipe/simple/yellow/visible,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"ciX" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
+/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+ dir = 4
},
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"ciY" = (
+"cdF" = (
/obj/structure/cable{
d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d2 = 8;
+ icon_state = "2-8"
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"ciZ" = (
+"cdG" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
+ dir = 6
},
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"cja" = (
+"cdH" = (
/obj/structure/table,
/obj/effect/spawner/lootdrop/maintenance,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"cjb" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
+"cdI" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
+ dir = 9
},
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"cjc" = (
+"cdJ" = (
/obj/structure/disposalpipe/segment{
- dir = 4
+ dir = 1;
+ icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+ dir = 5
},
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"cjd" = (
+"cdK" = (
/obj/structure/disposalpipe/segment{
dir = 2;
- icon_state = "pipe-c"
+ icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"cje" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/mob/living/simple_animal/mouse,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"cjf" = (
+"cdL" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"cjg" = (
+"cdM" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/mob/living/simple_animal/mouse,
+/turf/open/floor/plating,
+/area/maintenance/asmaint)
+"cdN" = (
/obj/structure/disposalpipe/segment{
dir = 8;
- icon_state = "pipe-c"
+ icon_state = "pipe-c"
},
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"cjh" = (
+"cdO" = (
/obj/structure/disposalpipe/segment,
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"cji" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 2;
- external_pressure_bound = 140;
- on = 1;
- pressure_checks = 0
- },
-/obj/machinery/camera{
- c_tag = "Xenobiology Kill Room";
- dir = 4;
- network = list("SS13","RD")
- },
-/turf/open/floor/bluegrid{
- name = "Killroom Floor";
- initial_gas_mix = "n2=500;TEMP=80"
- },
-/area/toxins/xenobiology)
-"cjj" = (
-/turf/open/floor/bluegrid{
- name = "Killroom Floor";
- initial_gas_mix = "n2=500;TEMP=80"
- },
-/area/toxins/xenobiology)
-"cjk" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 2;
- external_pressure_bound = 120;
- initialize_directions = 1;
- internal_pressure_bound = 4000;
- on = 1;
- pressure_checks = 2;
- pump_direction = 0
- },
-/turf/open/floor/bluegrid{
- name = "Killroom Floor";
- initial_gas_mix = "n2=500;TEMP=80"
- },
-/area/toxins/xenobiology)
-"cjl" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/sign/biohazard,
-/turf/open/floor/plating,
-/area/toxins/xenobiology)
-"cjm" = (
-/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
- target_temperature = 80;
- dir = 2;
- on = 1
+"cdP" = (
+/obj/machinery/door/window{
+ name = "Ready Room";
+ req_access_txt = "150"
},
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"cjn" = (
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"cdQ" = (
/obj/structure/closet/emcloset,
/obj/effect/decal/cleanable/cobweb,
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"cjo" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"cjp" = (
+"cdR" = (
/obj/machinery/atmospherics/components/unary/tank/air,
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"cjq" = (
+"cdS" = (
/obj/machinery/portable_atmospherics/scrubber,
/obj/effect/turf_decal/bot{
dir = 2
@@ -51848,413 +49753,305 @@
dir = 2
},
/area/toxins/misc_lab)
-"cjr" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+"cdT" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ on = 1
+ },
/turf/open/floor/plasteel,
-/area/toxins/misc_lab)
-"cjs" = (
-/obj/structure/rack{
- dir = 1
+/area/engine/engineering)
+"cdU" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/paper_bin{
+ pixel_x = -3;
+ pixel_y = 7
},
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"cjt" = (
+/obj/item/weapon/pen,
+/obj/item/weapon/storage/fancy/cigarettes,
+/turf/open/floor/plasteel/neutral{
+ dir = 2
+ },
+/area/engine/chiefs_office)
+"cdV" = (
/obj/structure/table,
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"cju" = (
+"cdW" = (
/obj/machinery/power/apc{
dir = 8;
- name = "Engineering Maintenance APC";
- pixel_x = -25;
- pixel_y = 1
+ name = "Engineering Maintenance APC";
+ pixel_x = -25;
+ pixel_y = 1
},
/obj/structure/cable{
icon_state = "0-4";
- d2 = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cjv" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cjw" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d2 = 4
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"cjx" = (
-/obj/structure/table,
-/obj/machinery/airalarm{
- dir = 4;
- locked = 0;
- pixel_x = -23;
- pixel_y = 0
- },
-/obj/item/weapon/storage/box/donkpockets,
-/obj/item/weapon/kitchen/knife,
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/bar)
-"cjy" = (
+"cdX" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/bar)
-"cjz" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/structure/table,
-/obj/item/wallframe/camera,
-/obj/item/wallframe/camera,
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/bar)
-"cjA" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/closed/wall,
-/area/maintenance/bar)
-"cjB" = (
-/obj/structure/table,
-/obj/machinery/airalarm{
dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/chem_dispenser/drinks{
- name = "dusty old soda dispenser"
- },
-/turf/open/floor/plasteel/bar,
-/area/maintenance/bar)
-"cjC" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- on = 1
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plasteel/bar,
-/area/maintenance/bar)
-"cjD" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1
- },
-/turf/open/floor/plasteel/bar,
-/area/maintenance/bar)
-"cjE" = (
-/obj/structure/table,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/filled/cola,
-/turf/open/floor/plasteel/bar,
-/area/maintenance/bar)
-"cjF" = (
-/obj/structure/chair/stool/bar,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cjG" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cjH" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/wood{
- icon_state = "wood-broken5"
- },
-/area/maintenance/bar)
-"cjI" = (
-/obj/structure/disposalpipe/junction{
- icon_state = "pipe-j1";
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cjJ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/disposalpipe/segment{
- dir = 4
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
-/turf/open/floor/plating,
-/area/maintenance/bar)
-"cjK" = (
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"cdY" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/disposalpipe/junction{
- icon_state = "pipe-j2";
- dir = 1
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"cjL" = (
+"cdZ" = (
+/obj/machinery/telecomms/processor/preset_two,
+/turf/open/floor/plasteel/black{
+ name = "Mainframe Floor";
+ initial_gas_mix = "n2=100;TEMP=80"
+ },
+/area/tcommsat/server)
+"cea" = (
/obj/machinery/telecomms/server/presets/service,
/turf/open/floor/plasteel/black{
name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
+ initial_gas_mix = "n2=100;TEMP=80"
},
/area/tcommsat/server)
-"cjM" = (
-/obj/machinery/telecomms/processor/preset_two,
+"ceb" = (
+/obj/machinery/telecomms/bus/preset_one,
/turf/open/floor/plasteel/black{
name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
+ initial_gas_mix = "n2=100;TEMP=80"
},
/area/tcommsat/server)
-"cjN" = (
+"cec" = (
/obj/structure/sign/nosmoking_2{
pixel_y = -32
},
/obj/machinery/light,
/turf/open/floor/bluegrid{
name = "Mainframe Base";
- initial_gas_mix = "n2=100;TEMP=80"
- },
-/area/tcommsat/server)
-"cjO" = (
-/obj/machinery/telecomms/bus/preset_one,
-/turf/open/floor/plasteel/black{
- name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
+ initial_gas_mix = "n2=100;TEMP=80"
},
/area/tcommsat/server)
-"cjP" = (
+"ced" = (
/obj/machinery/telecomms/server/presets/science,
/turf/open/floor/plasteel/black{
name = "Mainframe Floor";
- initial_gas_mix = "n2=100;TEMP=80"
+ initial_gas_mix = "n2=100;TEMP=80"
},
/area/tcommsat/server)
-"cjQ" = (
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/grille,
-/obj/structure/cable,
-/turf/open/floor/plating,
-/area/tcommsat/computer)
-"cjR" = (
+"cee" = (
/obj/structure/table,
/obj/item/device/radio/off,
/turf/open/floor/plasteel/yellow/side{
dir = 10
},
/area/tcommsat/computer)
-"cjS" = (
-/obj/item/device/radio/intercom{
- name = "Station Intercom (General)";
- pixel_y = -35
- },
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
+"cef" = (
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/grille,
+/obj/structure/cable,
+/turf/open/floor/plating,
/area/tcommsat/computer)
-"cjT" = (
+"ceg" = (
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
+ icon_state = "alarm0";
+ pixel_y = -22
},
/obj/machinery/light,
/obj/structure/filingcabinet/chestdrawer,
/turf/open/floor/plasteel,
/area/tcommsat/computer)
-"cjU" = (
+"ceh" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/bridge)
+"cei" = (
/obj/structure/rack{
dir = 8;
- layer = 2.9
+ layer = 2.9
},
/obj/item/weapon/storage/toolbox/mechanical{
pixel_x = -2;
- pixel_y = -1
+ pixel_y = -1
},
/turf/open/floor/plasteel,
/area/tcommsat/computer)
-"cjV" = (
-/obj/structure/sign/securearea{
- pixel_x = -32;
- pixel_y = 0
+"cej" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "Engineering";
+ name = "engineering security door"
},
-/turf/open/floor/plasteel/yellow/side{
- dir = 10
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
},
-/area/hallway/primary/aft)
-"cjW" = (
+/area/engine/engineering)
+"cek" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "Engineering";
+ name = "engineering security door"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/engine/engineering)
+"cel" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "Engineering";
+ name = "engineering security door"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/engine/engineering)
+"cem" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/yellow/side,
-/area/hallway/primary/aft)
-"cjX" = (
-/turf/open/floor/plasteel/yellow/side,
-/area/hallway/primary/aft)
-"cjY" = (
-/obj/machinery/light,
-/turf/open/floor/plasteel/yellow/side,
-/area/hallway/primary/aft)
-"cjZ" = (
-/obj/machinery/airalarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cen" = (
/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ dir = 4;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
-/turf/open/floor/plasteel/yellow/side,
-/area/hallway/primary/aft)
-"cka" = (
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"ceo" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
-/turf/open/floor/plasteel/yellow/side{
- dir = 6
+/turf/open/floor/plasteel/neutral{
+ dir = 2
},
-/area/hallway/primary/aft)
-"ckb" = (
+/area/engine/chiefs_office)
+"cep" = (
+/obj/structure/sign/securearea,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall/r_wall,
+/area/engine/engineering)
+"ceq" = (
/obj/structure/grille,
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
-/area/engine/break_room)
-"ckc" = (
-/obj/structure/disposalpipe/segment{
+/area/engine/chiefs_office)
+"cer" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/engine/break_room)
-"ckd" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
+"ces" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/yellow/side{
+ dir = 9
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cke" = (
+/area/engine/engineering)
+"cet" = (
+/obj/machinery/door/firedoor,
+/turf/open/floor/plasteel/yellow/side{
+ dir = 5
+ },
+/area/engine/engineering)
+"ceu" = (
+/obj/structure/grille,
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"ckf" = (
-/obj/machinery/camera{
- c_tag = "Engineering Foyer";
- dir = 1
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
-/obj/structure/noticeboard{
- dir = 1;
- pixel_y = -27
+/obj/structure/window/fulltile,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cev" = (
+/obj/structure/grille,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"ckg" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"ckh" = (
+/obj/structure/window/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cew" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/break_room)
-"cki" = (
-/obj/structure/extinguisher_cabinet{
- pixel_x = 27;
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+ dir = 1
},
/turf/open/floor/plasteel,
/area/engine/break_room)
-"ckj" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/engine/engineering)
-"ckk" = (
+"cex" = (
/obj/machinery/camera{
c_tag = "Atmospherics South West";
- dir = 4;
- network = list("SS13")
+ dir = 4;
+ network = list("SS13")
},
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
- on = 1
+ on = 1
},
/turf/open/floor/plasteel,
/area/atmos)
-"ckl" = (
+"cey" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/engine/engineering)
+"cez" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/turf/open/floor/plasteel,
/area/atmos)
-"ckm" = (
-/obj/machinery/atmospherics/components/binary/valve/digital{
- name = "Waste Release"
+"ceA" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible{
+ dir = 9
},
-/turf/open/floor/plasteel,
+/turf/open/floor/plating,
/area/atmos)
-"ckn" = (
+"ceB" = (
/obj/machinery/light{
dir = 4
},
@@ -52263,38 +50060,21 @@
},
/turf/open/floor/plasteel,
/area/atmos)
-"cko" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/atmos)
-"ckp" = (
-/obj/machinery/power/apc{
- dir = 2;
- name = "Incinerator APC";
- pixel_x = 0;
- pixel_y = -24
+"ceC" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
-/obj/structure/cable,
/obj/machinery/atmospherics/pipe/simple/yellow/visible,
/turf/open/floor/plating,
-/area/maintenance/incinerator)
-"ckq" = (
-/obj/structure/sign/fire{
- pixel_x = 0;
- pixel_y = -32
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
/area/maintenance/asmaint)
-"ckr" = (
+"ceD" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 6
@@ -52302,122 +50082,70 @@
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"cks" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+"ceE" = (
+/obj/structure/sign/fire{
+ pixel_x = 0;
+ pixel_y = -32
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"ckt" = (
+"ceF" = (
/obj/structure/closet/emcloset,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"cku" = (
-/obj/structure/sign/biohazard,
-/turf/closed/wall,
+"ceG" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
/area/maintenance/asmaint)
-"ckv" = (
+"ceH" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/closed/wall,
/area/maintenance/asmaint)
-"ckw" = (
-/obj/structure/disposalpipe/segment,
-/turf/closed/wall,
+"ceI" = (
+/obj/structure/sign/biohazard,
+/turf/closed/wall,
/area/maintenance/asmaint)
-"ckx" = (
+"ceJ" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/light/small,
-/turf/open/floor/plating,
+/turf/closed/wall,
/area/maintenance/asmaint)
-"cky" = (
+"ceK" = (
/obj/structure/disposalpipe/segment,
/obj/structure/closet/l3closet,
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"ckz" = (
-/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 5
- },
-/turf/open/floor/bluegrid{
- name = "Killroom Floor";
- initial_gas_mix = "n2=500;TEMP=80"
- },
-/area/toxins/xenobiology)
-"ckA" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/turf/open/floor/bluegrid{
- name = "Killroom Floor";
- initial_gas_mix = "n2=500;TEMP=80"
- },
-/area/toxins/xenobiology)
-"ckB" = (
-/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/manifold/general/visible,
-/turf/open/floor/bluegrid{
- name = "Killroom Floor";
- initial_gas_mix = "n2=500;TEMP=80"
- },
-/area/toxins/xenobiology)
-"ckC" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/research{
- name = "Kill Chamber";
- req_access_txt = "55"
- },
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/toxins/xenobiology)
-"ckD" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"ckE" = (
+"ceL" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"ckF" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 9
- },
-/obj/structure/table,
-/obj/item/weapon/folder/white,
-/obj/item/weapon/pen,
-/turf/open/floor/plasteel/white,
-/area/toxins/xenobiology)
-"ckG" = (
+/obj/machinery/light/small,
+/turf/open/floor/plating,
+/area/maintenance/asmaint)
+"ceM" = (
/obj/machinery/meter,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 6
},
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"ckH" = (
-/obj/machinery/meter,
-/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"ckI" = (
+"ceN" = (
/obj/machinery/atmospherics/pipe/simple/cyan/hidden{
icon_state = "intact";
- dir = 9
+ dir = 9
},
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"ckJ" = (
+"ceO" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"ceP" = (
/obj/machinery/portable_atmospherics/canister,
/obj/effect/turf_decal/bot{
dir = 2
@@ -52426,265 +50154,202 @@
dir = 2
},
/area/toxins/misc_lab)
-"ckK" = (
+"ceQ" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/toxins/misc_lab)
-"ckL" = (
-/obj/item/stack/sheet/cardboard,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"ckM" = (
+"ceR" = (
/obj/effect/landmark{
name = "blobstart"
},
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"ckN" = (
+"ceS" = (
+/obj/item/stack/sheet/cardboard,
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"ceT" = (
/obj/machinery/light/small,
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"ckO" = (
+"ceU" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
- pixel_y = -32
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 0;
+ pixel_y = -32
},
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"ckP" = (
-/obj/machinery/portable_atmospherics/canister/air,
+"ceV" = (
+/obj/structure/closet,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
+ },
/turf/open/floor/plating,
/area/maintenance/aft)
-"ckQ" = (
-/obj/machinery/processor,
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/bar)
-"ckR" = (
-/obj/machinery/light/small,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/bar)
-"ckS" = (
-/obj/structure/closet/secure_closet/personal/cabinet,
-/obj/item/clothing/glasses/sunglasses/reagent,
-/obj/item/ammo_box/foambox,
-/obj/item/weapon/gun/ballistic/shotgun/toy/unrestricted,
-/obj/item/weapon/lighter,
-/obj/item/clothing/mask/cigarette/cigar/cohiba,
-/obj/item/weapon/storage/box/drinkingglasses,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/bar)
-"ckT" = (
-/obj/structure/table,
-/obj/machinery/chem_dispenser/drinks/beer{
- name = "dusty old booze dispenser"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/bar,
-/area/maintenance/bar)
-"ckU" = (
-/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/bar,
-/area/maintenance/bar)
-"ckV" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plasteel/bar,
-/area/maintenance/bar)
-"ckW" = (
-/obj/structure/table,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/bar,
-/area/maintenance/bar)
-"ckX" = (
-/obj/structure/chair/stool/bar,
+"ceW" = (
+/obj/machinery/space_heater,
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"ceX" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"ckY" = (
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
+/obj/machinery/holopad,
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"ceY" = (
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"ceZ" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Power Storage";
+ req_access_txt = "11";
+ req_one_access_txt = "0"
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cfa" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
},
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"ckZ" = (
-/obj/machinery/vending/cigarette,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+/obj/item/weapon/storage/belt/utility,
+/obj/item/weapon/wrench,
+/obj/item/weapon/weldingtool,
+/obj/item/clothing/head/welding{
+ pixel_x = -3;
+ pixel_y = 5
},
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"cla" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
+/turf/open/floor/plasteel/yellow/side{
dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
- },
-/turf/open/floor/wood,
-/area/maintenance/bar)
-"clb" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"clc" = (
+/area/engine/engineering)
+"cfb" = (
/turf/closed/wall/r_wall,
/area/engine/chiefs_office)
-"cld" = (
+"cfc" = (
/obj/structure/grille,
/obj/structure/cable{
icon_state = "0-4";
- d2 = 4
+ d2 = 4
},
/obj/machinery/door/poddoor/preopen{
id = "Engineering";
- name = "engineering security door"
+ name = "engineering security door"
},
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/engine/chiefs_office)
-"cle" = (
-/obj/structure/grille,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+"cfd" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
},
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+/obj/structure/closet/radiation,
+/turf/open/floor/plasteel/yellow/side{
+ dir = 4
+ },
+/area/engine/engineering)
+"cfe" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'RADIOACTIVE AREA'";
+ icon_state = "radiation";
+ name = "RADIOACTIVE AREA";
+ pixel_x = -32;
+ pixel_y = 0
},
/obj/structure/disposalpipe/segment,
-/obj/machinery/door/poddoor/preopen{
- id = "Engineering";
- name = "engineering security door"
+/obj/structure/sign/securearea{
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
-/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/engine/chiefs_office)
-"clf" = (
-/obj/machinery/door/poddoor/preopen{
- id = "Engineering";
- name = "engineering security door"
- },
-/obj/machinery/door/airlock/glass_command{
- name = "Chief Engineer";
- req_access_txt = "56"
+/area/maintenance/aft)
+"cff" = (
+/obj/machinery/vending/tool,
+/turf/open/floor/plasteel/yellow/corner{
+ dir = 1
},
+/area/engine/engineering)
+"cfg" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel{
- name = "floor"
+ d2 = 4;
+ icon_state = "1-4"
},
-/area/engine/chiefs_office)
-"clg" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/yellow/side{
- dir = 10
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/yellow/corner{
+ dir = 4
},
-/area/engine/break_room)
-"clh" = (
+/area/engine/engineering)
+"cfh" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/yellow/side,
/area/engine/break_room)
-"cli" = (
-/obj/machinery/light,
-/turf/open/floor/plasteel/yellow/side{
- dir = 6
- },
-/area/engine/break_room)
-"clj" = (
+"cfi" = (
/obj/machinery/atmospherics/components/trinary/filter{
dir = 2;
- filter_type = "n2";
- on = 1
+ filter_type = "n2";
+ on = 1
},
/turf/open/floor/plasteel,
/area/atmos)
-"clk" = (
-/turf/closed/wall,
-/area/maintenance/incinerator)
-"cll" = (
-/obj/machinery/atmospherics/pipe/simple/yellow/visible,
-/turf/closed/wall,
-/area/maintenance/incinerator)
-"clm" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+"cfj" = (
/turf/closed/wall,
/area/maintenance/incinerator)
-"cln" = (
+"cfk" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/door/airlock/atmos{
name = "Turbine Access";
- req_access_txt = "32"
+ req_access_txt = "32"
},
/turf/open/floor/plating,
/area/maintenance/incinerator)
-"clo" = (
+"cfl" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/closed/wall,
+/area/maintenance/incinerator)
+"cfm" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance{
lootcount = 2;
- name = "2maintenance loot spawner"
+ name = "2maintenance loot spawner"
},
/obj/item/toy/minimeteor,
/obj/item/weapon/poster/contraband,
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"clp" = (
-/obj/structure/closet,
-/obj/effect/spawner/lootdrop/maintenance,
-/obj/item/roller,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"clq" = (
+"cfn" = (
/obj/structure/disposalpipe/segment,
/obj/structure/rack{
dir = 1
@@ -52694,440 +50359,415 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"clr" = (
+"cfo" = (
+/obj/structure/closet,
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/item/roller,
+/turf/open/floor/plating,
+/area/maintenance/asmaint)
+"cfp" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/item/weapon/c_tube,
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"cls" = (
+"cfq" = (
/obj/structure/mopbucket,
/obj/item/weapon/caution,
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"clt" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/toxins/xenobiology)
-"clu" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
+"cfr" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 2;
+ external_pressure_bound = 140;
+ on = 1;
+ pressure_checks = 0
+ },
+/obj/machinery/camera{
+ c_tag = "Xenobiology Kill Room";
+ dir = 4;
+ network = list("SS13","RD")
+ },
+/turf/open/floor/bluegrid{
+ name = "Killroom Floor";
+ initial_gas_mix = "n2=500;TEMP=80"
+ },
/area/toxins/xenobiology)
-"clv" = (
+"cfs" = (
/obj/machinery/door/airlock/maintenance{
name = "Air Supply Maintenance";
- req_access_txt = "12"
+ req_access_txt = "12"
},
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"clw" = (
+"cft" = (
/obj/machinery/door/airlock/maintenance{
name = "Testing Lab Maintenance";
- req_access_txt = "47"
+ req_access_txt = "47"
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/toxins/misc_lab)
-"clx" = (
+"cfu" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall/r_wall,
/area/toxins/misc_lab)
-"cly" = (
-/obj/structure/closet/cardboard,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"clz" = (
+"cfv" = (
/obj/machinery/door/airlock/maintenance{
name = "Firefighting equipment";
- req_access_txt = "12"
+ req_access_txt = "12"
},
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"clA" = (
+"cfw" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/portsolar)
+"cfx" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating/airless,
/area/maintenance/portsolar)
-"clB" = (
-/turf/closed/wall/r_wall,
-/area/maintenance/portsolar)
-"clC" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"clD" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/closed/wall,
-/area/maintenance/aft)
-"clE" = (
+"cfy" = (
+/obj/structure/rack,
+/obj/item/clothing/shoes/winterboots,
+/obj/item/clothing/suit/hooded/wintercoat,
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"cfz" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"clF" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
-/turf/closed/wall,
-/area/maintenance/aft)
-"clG" = (
-/obj/structure/closet/wardrobe/black,
-/obj/effect/decal/cleanable/cobweb,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+/turf/open/floor/plasteel/yellow/corner{
dir = 1
},
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"clH" = (
+/area/engine/engineering)
+"cfA" = (
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 4;
- icon_state = "pipe-c"
+ on = 1
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cfB" = (
+/obj/structure/closet/secure_closet/engineering_personal,
+/turf/open/floor/plasteel/yellow/side{
dir = 4
},
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"clI" = (
+/area/engine/engineering)
+"cfC" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cfD" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/maintenance{
+ name = "Engineering Maintenance";
+ req_access_txt = "10"
},
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"clJ" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
-/area/maintenance/aft)
-"clK" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+/area/engine/engineering)
+"cfE" = (
+/obj/machinery/holopad,
+/turf/open/floor/plasteel/neutral{
+ dir = 2
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/area/engine/chiefs_office)
+"cfF" = (
+/obj/machinery/suit_storage_unit/ce,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
+/turf/open/floor/plasteel/white,
+/area/engine/chiefs_office)
+"cfG" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"clL" = (
-/obj/machinery/space_heater,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"clM" = (
-/obj/machinery/suit_storage_unit/ce,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
-/turf/open/floor/plasteel/white,
-/area/engine/chiefs_office)
-"clN" = (
-/obj/machinery/holopad,
-/turf/open/floor/plasteel/neutral{
- dir = 2
- },
-/area/engine/chiefs_office)
-"clO" = (
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cfH" = (
/obj/machinery/light{
dir = 1
},
/obj/machinery/keycard_auth{
pixel_x = 0;
- pixel_y = 24
- },
-/turf/open/floor/plasteel/neutral{
- dir = 2
+ pixel_y = 24
},
-/area/engine/chiefs_office)
-"clP" = (
/turf/open/floor/plasteel/neutral{
dir = 2
},
/area/engine/chiefs_office)
-"clQ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+"cfI" = (
+/obj/structure/closet/secure_closet/engineering_personal,
+/obj/machinery/airalarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/neutral{
- dir = 2
+/turf/open/floor/plasteel/yellow/side{
+ dir = 4
},
-/area/engine/chiefs_office)
-"clR" = (
-/obj/machinery/power/apc{
- cell_type = 5000;
- dir = 4;
- name = "CE Office APC";
- pixel_x = 24;
- pixel_y = 0
+/area/engine/engineering)
+"cfJ" = (
+/obj/machinery/light/small{
+ dir = 1
},
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cfK" = (
+/obj/structure/sign/securearea,
+/turf/closed/wall,
+/area/engine/engineering)
+"cfL" = (
+/obj/machinery/firealarm{
+ pixel_y = 24
},
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/open/floor/plasteel/neutral{
- dir = 2
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
-/area/engine/chiefs_office)
-"clS" = (
-/obj/structure/sign/securearea,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall,
+/turf/open/floor/plasteel,
/area/engine/engineering)
-"clT" = (
+"cfM" = (
/obj/machinery/door/airlock/engineering{
cyclelinkeddir = 2;
- name = "Engine Room";
- req_access_txt = "10"
+ name = "Engine Room";
+ req_access_txt = "10"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/engine/engineering)
-"clU" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'RADIOACTIVE AREA'";
- icon_state = "radiation";
- name = "RADIOACTIVE AREA";
- pixel_x = 0;
- pixel_y = 0
- },
-/turf/closed/wall,
-/area/engine/engineering)
-"clV" = (
+"cfN" = (
/obj/machinery/portable_atmospherics/scrubber,
/turf/open/floor/plasteel,
/area/atmos)
-"clW" = (
+"cfO" = (
/obj/machinery/atmospherics/pipe/simple/green/visible,
/obj/machinery/portable_atmospherics/pump,
/turf/open/floor/plasteel,
/area/atmos)
-"clX" = (
+"cfP" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/turf/open/floor/plasteel,
/area/atmos)
-"clY" = (
+"cfQ" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/turf/open/floor/plasteel,
/area/atmos)
-"clZ" = (
+"cfR" = (
/obj/machinery/atmospherics/components/trinary/filter{
- dir = 4;
- filter_type = "o2";
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/atmos)
-"cma" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible{
- dir = 4
+ dir = 1;
+ filter_type = "o2";
+ on = 1
},
/turf/open/floor/plasteel,
/area/atmos)
-"cmb" = (
+"cfS" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 4;
- initialize_directions = 12
+ initialize_directions = 12
},
/turf/open/floor/plasteel,
/area/atmos)
-"cmc" = (
+"cfT" = (
/obj/machinery/atmospherics/pipe/simple/green/visible{
dir = 9
},
/turf/open/floor/plasteel,
/area/atmos)
-"cmd" = (
-/obj/effect/decal/cleanable/cobweb,
-/obj/structure/reagent_dispensers/watertank,
-/obj/item/weapon/extinguisher,
-/turf/open/floor/plasteel/floorgrime,
+"cfU" = (
+/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+ dir = 4
+ },
+/turf/closed/wall,
/area/maintenance/incinerator)
-"cme" = (
-/obj/machinery/light{
- dir = 1
+"cfV" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 2;
- name = "atmospherics mix pump"
+/obj/machinery/atmospherics/pipe/simple/yellow/visible,
+/turf/open/floor/plating,
+/area/maintenance/asmaint)
+"cfW" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
-"cmf" = (
-/obj/machinery/light_switch{
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/atmospherics/pipe/simple/yellow/visible,
+/turf/open/floor/plating,
+/area/maintenance/asmaint)
+"cfX" = (
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "Incinerator APC";
pixel_x = 0;
- pixel_y = 26
+ pixel_y = -24
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/floorgrime,
+/obj/structure/cable,
+/obj/machinery/atmospherics/pipe/simple/yellow/visible,
+/turf/open/floor/plating,
/area/maintenance/incinerator)
-"cmg" = (
+"cfY" = (
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 4;
+ icon_state = "1-4"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plating,
/area/maintenance/incinerator)
-"cmh" = (
-/obj/machinery/disposal/bin,
-/obj/structure/sign/deathsposal{
+"cfZ" = (
+/obj/machinery/light_switch{
pixel_x = 0;
- pixel_y = 32
- },
-/obj/structure/disposalpipe/trunk,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ pixel_y = 26
},
-/turf/open/floor/plating,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/floorgrime,
/area/maintenance/incinerator)
-"cmi" = (
+"cga" = (
/obj/machinery/power/smes{
capacity = 9e+006;
- charge = 10000
+ charge = 10000
},
/obj/structure/cable{
d2 = 8;
- icon_state = "0-8"
+ icon_state = "0-8"
},
/obj/effect/decal/cleanable/cobweb{
icon_state = "cobweb2"
},
/turf/open/floor/plating,
/area/maintenance/incinerator)
-"cmj" = (
+"cgb" = (
+/obj/machinery/disposal/bin,
+/obj/structure/sign/deathsposal{
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/obj/structure/disposalpipe/trunk,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/incinerator)
+"cgc" = (
/obj/effect/landmark{
name = "xeno_spawn";
- pixel_x = -1
+ pixel_x = -1
},
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
/area/maintenance/asmaint)
-"cmk" = (
+"cgd" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"cml" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/grille/broken,
+"cge" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"cmm" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+"cgf" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/grille/broken,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"cmn" = (
+"cgg" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"cmo" = (
+"cgh" = (
/obj/structure/disposalpipe/segment,
+/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"cmp" = (
+"cgi" = (
+/turf/open/floor/bluegrid{
+ name = "Killroom Floor";
+ initial_gas_mix = "n2=500;TEMP=80"
+ },
+/area/toxins/xenobiology)
+"cgj" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/barricade/wooden,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -53135,95 +50775,86 @@
},
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"cmq" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
+"cgk" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/sign/biohazard,
/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"cmr" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"cms" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
+/area/toxins/xenobiology)
+"cgl" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 2;
+ external_pressure_bound = 120;
+ initialize_directions = 1;
+ internal_pressure_bound = 4000;
+ on = 1;
+ pressure_checks = 2;
+ pump_direction = 0
},
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+/turf/open/floor/bluegrid{
+ name = "Killroom Floor";
+ initial_gas_mix = "n2=500;TEMP=80"
},
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"cmt" = (
+/area/toxins/xenobiology)
+"cgm" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"cmu" = (
+"cgn" = (
+/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
+ target_temperature = 80;
+ dir = 2;
+ on = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"cgo" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
},
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"cmv" = (
+"cgp" = (
/obj/structure/cable{
d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d2 = 8;
+ icon_state = "2-8"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"cmw" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/maintenance/asmaint2)
-"cmx" = (
+"cgq" = (
/obj/machinery/space_heater,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"cmy" = (
-/obj/structure/sign/securearea{
- pixel_y = 32
- },
-/obj/effect/spawner/lootdrop/maintenance,
+"cgr" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/turf/open/floor/plating,
+/turf/closed/wall,
/area/maintenance/asmaint2)
-"cmz" = (
+"cgs" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9
@@ -53231,7 +50862,17 @@
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"cmA" = (
+"cgt" = (
+/obj/structure/sign/securearea{
+ pixel_y = 32
+ },
+/obj/effect/spawner/lootdrop/maintenance,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"cgu" = (
/obj/structure/rack{
dir = 1
},
@@ -53239,462 +50880,480 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"cmB" = (
-/obj/machinery/door/airlock/maintenance{
- name = "Research Delivery access";
- req_access_txt = "12"
+"cgv" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"cmC" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cgw" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cgx" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/engine/engineering)
+"cgy" = (
/obj/machinery/light/small{
dir = 1
},
/obj/structure/chair/stool,
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"cmD" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"cmE" = (
+"cgz" = (
/obj/structure/cable,
/obj/structure/lattice/catwalk,
/turf/open/space,
/area/solar/port)
-"cmF" = (
+"cgA" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = -32;
- pixel_y = 0
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = -32;
+ pixel_y = 0
},
/turf/open/floor/plating,
/area/maintenance/portsolar)
-"cmG" = (
+"cgB" = (
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
+ },
+/obj/machinery/power/smes,
+/turf/open/floor/plating,
+/area/maintenance/portsolar)
+"cgC" = (
/obj/machinery/power/terminal{
dir = 4
},
/obj/structure/cable{
icon_state = "0-2";
- d2 = 2
+ d2 = 2
},
/obj/machinery/light/small{
dir = 1
},
/turf/open/floor/plating,
/area/maintenance/portsolar)
-"cmH" = (
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/machinery/power/smes,
-/turf/open/floor/plating,
-/area/maintenance/portsolar)
-"cmI" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
- pixel_y = 0
- },
-/turf/closed/wall/r_wall,
-/area/maintenance/portsolar)
-"cmJ" = (
+"cgD" = (
/obj/machinery/camera{
c_tag = "Aft Port Solar Access";
- dir = 4
+ dir = 4
},
/obj/machinery/light/small{
dir = 8
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
/turf/open/floor/plating,
/area/maintenance/aft)
-"cmK" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+"cgE" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'HIGH VOLTAGE'";
+ icon_state = "shock";
+ name = "HIGH VOLTAGE";
+ pixel_y = 0
},
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cmL" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/portsolar)
+"cgF" = (
+/obj/structure/table,
+/obj/machinery/airalarm{
+ dir = 4;
+ locked = 0;
+ pixel_x = -23;
+ pixel_y = 0
+ },
+/obj/item/weapon/storage/box/donkpockets,
+/obj/item/weapon/kitchen/knife,
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/bar)
+"cgG" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"cmM" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
+"cgH" = (
/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"cmN" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+"cgI" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/grille,
+/obj/structure/window/fulltile,
/turf/open/floor/plating,
-/area/maintenance/aft)
-"cmO" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
+/area/engine/engineering)
+"cgJ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cgK" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
},
+/obj/structure/grille,
+/obj/structure/window/fulltile,
/turf/open/floor/plating,
-/area/maintenance/aft)
-"cmP" = (
+/area/engine/engineering)
+"cgL" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Supermatter Engine Room";
+ req_access_txt = "10"
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cgM" = (
/obj/machinery/computer/atmos_alert,
/obj/machinery/requests_console{
announcementConsole = 1;
- department = "Chief Engineer's Desk";
- departmentType = 3;
- name = "Chief Engineer RC";
- pixel_x = -32;
- pixel_y = 0
+ department = "Chief Engineer's Desk";
+ departmentType = 3;
+ name = "Chief Engineer RC";
+ pixel_x = -32;
+ pixel_y = 0
},
/turf/open/floor/plasteel/neutral{
dir = 2
},
/area/engine/chiefs_office)
-"cmQ" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/clipboard,
-/obj/item/weapon/lighter,
-/obj/item/clothing/glasses/meson{
- pixel_y = 4
- },
-/obj/item/weapon/stamp/ce,
-/obj/item/weapon/stock_parts/cell/high/plus,
+"cgN" = (
+/obj/structure/closet/radiation,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cgO" = (
/turf/open/floor/plasteel/neutral{
dir = 2
},
/area/engine/chiefs_office)
-"cmR" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+"cgP" = (
+/obj/structure/table,
+/obj/item/device/flashlight{
+ pixel_y = 5
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/neutral{
- dir = 2
+/obj/item/clothing/ears/earmuffs{
+ pixel_x = -5;
+ pixel_y = 6
},
-/area/engine/chiefs_office)
-"cmS" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/item/weapon/airlock_painter,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cgQ" = (
+/obj/machinery/camera{
+ c_tag = "Engineering East";
+ dir = 8;
+ network = list("SS13");
+ pixel_x = 0;
+ pixel_y = 0
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/obj/structure/closet/wardrobe/engineering_yellow,
+/turf/open/floor/plasteel/yellow/corner{
+ dir = 4
},
-/turf/open/floor/plasteel/neutral{
- dir = 2
- },
-/area/engine/chiefs_office)
-"cmT" = (
+/area/engine/engineering)
+"cgR" = (
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cgS" = (
/obj/structure/grille,
/obj/structure/cable{
d2 = 8;
- icon_state = "0-8"
+ icon_state = "0-8"
},
/obj/structure/cable{
icon_state = "0-2";
- d2 = 2
+ d2 = 2
},
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/engine/chiefs_office)
-"cmU" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
+"cgT" = (
+/obj/machinery/door/airlock/engineering{
+ cyclelinkeddir = 8;
+ name = "SMES Room";
+ req_access_txt = "32"
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cmV" = (
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cmW" = (
-/obj/machinery/camera{
- c_tag = "Engineering Access"
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
},
-/obj/structure/closet/radiation,
+/area/engine/engine_smes)
+"cgU" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/engine/engineering)
-"cmX" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible,
-/obj/machinery/portable_atmospherics/pump,
-/turf/open/floor/plasteel/red/side{
- dir = 10
- },
-/area/atmos)
-"cmY" = (
+"cgV" = (
/obj/machinery/computer/atmos_control/tank{
frequency = 1441;
- input_tag = "n2_in";
- name = "Nitrogen Supply Control";
- output_tag = "n2_out";
- sensors = list("n2_sensor" = "Tank")
+ input_tag = "n2_in";
+ name = "Nitrogen Supply Control";
+ output_tag = "n2_out";
+ sensors = list("n2_sensor" = "Tank")
},
/turf/open/floor/plasteel/red/side,
/area/atmos)
-"cmZ" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 1;
- name = "N2 Outlet Pump";
- on = 1
- },
+"cgW" = (
+/obj/machinery/atmospherics/pipe/simple/green/visible,
+/obj/machinery/portable_atmospherics/pump,
/turf/open/floor/plasteel/red/side{
- dir = 6
+ dir = 10
},
/area/atmos)
-"cna" = (
+"cgX" = (
/obj/machinery/light,
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/turf/open/floor/plasteel,
/area/atmos)
-"cnb" = (
-/obj/machinery/atmospherics/pipe/simple/green/visible,
-/turf/open/floor/plasteel/blue/side{
- dir = 10
+"cgY" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1;
+ name = "N2 Outlet Pump";
+ on = 1
+ },
+/turf/open/floor/plasteel/red/side{
+ dir = 6
},
/area/atmos)
-"cnc" = (
+"cgZ" = (
/obj/machinery/computer/atmos_control/tank{
frequency = 1441;
- input_tag = "o2_in";
- name = "Oxygen Supply Control";
- output_tag = "o2_out";
- sensors = list("o2_sensor" = "Tank")
+ input_tag = "o2_in";
+ name = "Oxygen Supply Control";
+ output_tag = "o2_out";
+ sensors = list("o2_sensor" = "Tank")
},
/turf/open/floor/plasteel/blue/side{
dir = 0
},
/area/atmos)
-"cnd" = (
+"cha" = (
+/obj/machinery/atmospherics/pipe/simple/green/visible,
+/turf/open/floor/plasteel/blue/side{
+ dir = 10
+ },
+/area/atmos)
+"chb" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 1;
- name = "O2 Outlet Pump";
- on = 1
+ name = "O2 Outlet Pump";
+ on = 1
},
/turf/open/floor/plasteel/blue/side{
dir = 6
},
/area/atmos)
-"cne" = (
+"chc" = (
+/obj/machinery/computer/atmos_control/tank{
+ frequency = 1441;
+ input_tag = "air_in";
+ name = "Mixed Air Supply Control";
+ output_tag = "air_out";
+ sensors = list("air_sensor" = "Tank")
+ },
+/turf/open/floor/plasteel/arrival,
+/area/atmos)
+"chd" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/turf/open/floor/plasteel/arrival{
dir = 10
},
/area/atmos)
-"cnf" = (
-/obj/machinery/computer/atmos_control/tank{
- frequency = 1441;
- input_tag = "air_in";
- name = "Mixed Air Supply Control";
- output_tag = "air_out";
- sensors = list("air_sensor" = "Tank")
+"che" = (
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 4;
+ name = "Atmospherics External Airlock";
+ req_access_txt = "24"
},
-/turf/open/floor/plasteel/arrival,
+/turf/open/floor/plating,
/area/atmos)
-"cng" = (
+"chf" = (
/obj/machinery/camera{
c_tag = "Atmospherics South East";
- dir = 1
+ dir = 1
},
/obj/machinery/atmospherics/components/binary/pump{
dir = 1;
- name = "Air Outlet Pump";
- on = 1
+ name = "Air Outlet Pump";
+ on = 1
},
/turf/open/floor/plasteel/arrival{
dir = 6
},
/area/atmos)
-"cnh" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 4;
- name = "Atmospherics External Airlock";
- req_access_txt = "24"
- },
-/turf/open/floor/plating,
-/area/atmos)
-"cni" = (
-/turf/open/floor/plating,
-/area/atmos)
-"cnj" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 8;
- name = "Atmospherics External Airlock";
- req_access_txt = "24"
- },
+"chg" = (
/turf/open/floor/plating,
/area/atmos)
-"cnk" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/yellow/visible{
- dir = 6
- },
-/turf/open/space,
-/area/space/nearstation)
-"cnl" = (
-/obj/machinery/atmospherics/pipe/simple/yellow/visible{
- dir = 4
- },
-/turf/closed/wall,
-/area/maintenance/incinerator)
-"cnm" = (
-/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+"chh" = (
+/obj/machinery/atmospherics/components/unary/tank/toxins{
dir = 4
},
-/obj/structure/reagent_dispensers/fueltank,
-/obj/item/weapon/storage/toolbox/emergency,
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/incinerator)
-"cnn" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 8;
- name = "Mix to MiniSat"
+"chi" = (
+/obj/machinery/atmospherics/pipe/manifold4w/general{
+ level = 2
},
+/obj/machinery/meter,
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/incinerator)
-"cno" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
+"chj" = (
+/obj/machinery/atmospherics/components/binary/pump{
dir = 4;
- initialize_directions = 11
+ name = "plasma tank pump"
},
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/incinerator)
-"cnp" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
-"cnq" = (
-/turf/open/floor/plasteel/floorgrime,
+"chk" = (
+/obj/machinery/atmospherics/pipe/simple/yellow/visible,
+/turf/closed/wall,
/area/maintenance/incinerator)
-"cnr" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+"chl" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 2;
+ name = "atmospherics mix pump"
},
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/incinerator)
-"cns" = (
+"chm" = (
/obj/machinery/power/terminal{
icon_state = "term";
- dir = 1
+ dir = 1
},
/obj/machinery/airalarm{
desc = "This particular atmos control unit appears to have no access restrictions.";
- dir = 8;
- icon_state = "alarm0";
- locked = 0;
- name = "all-access air alarm";
- pixel_x = 24;
- req_access = "0";
- req_one_access = "0"
+ dir = 8;
+ icon_state = "alarm0";
+ locked = 0;
+ name = "all-access air alarm";
+ pixel_x = 24;
+ req_access = "0";
+ req_one_access = "0"
},
/obj/structure/cable/yellow{
d2 = 8;
- icon_state = "0-8"
+ icon_state = "0-8"
},
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/incinerator)
-"cnt" = (
+"chn" = (
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"cnu" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"cnv" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/incinerator)
+"cho" = (
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 5
+ },
+/turf/open/floor/bluegrid{
+ name = "Killroom Floor";
+ initial_gas_mix = "n2=500;TEMP=80"
+ },
+/area/toxins/xenobiology)
+"chp" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"cnw" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
+ dir = 5
},
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
+/turf/closed/wall,
+/area/maintenance/asmaint)
+"chq" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
},
-/area/maintenance/asmaint2)
-"cnx" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 1
+/turf/open/floor/bluegrid{
+ name = "Killroom Floor";
+ initial_gas_mix = "n2=500;TEMP=80"
+ },
+/area/toxins/xenobiology)
+"chr" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/research{
+ name = "Kill Chamber";
+ req_access_txt = "55"
+ },
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"cny" = (
+/area/toxins/xenobiology)
+"chs" = (
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/manifold/general/visible,
+/turf/open/floor/bluegrid{
+ name = "Killroom Floor";
+ initial_gas_mix = "n2=500;TEMP=80"
+ },
+/area/toxins/xenobiology)
+"cht" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"chu" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"chv" = (
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 4;
+ icon_state = "1-4"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -53702,43 +51361,62 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"cnz" = (
+"chw" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"chx" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"cnA" = (
+"chy" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 8;
+ icon_state = "1-8"
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/obj/structure/disposalpipe/segment{
dir = 1;
- icon_state = "pipe-c"
+ icon_state = "pipe-c"
},
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"cnB" = (
+"chz" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"chA" = (
/obj/structure/reagent_dispensers/watertank,
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
@@ -53748,27 +51426,26 @@
},
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"cnC" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
+"chB" = (
+/obj/structure/cable/yellow{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"cnD" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"chC" = (
/obj/structure/rack{
dir = 1
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/effect/spawner/lootdrop/maintenance,
/obj/structure/disposalpipe/segment{
@@ -53776,409 +51453,413 @@
},
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"cnE" = (
-/obj/structure/cable{
+"chD" = (
+/obj/structure/cable/yellow{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment{
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
},
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"cnF" = (
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"chE" = (
+/obj/structure/disposalpipe/segment,
/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/structure/disposalpipe/segment{
- dir = 4
+/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"chF" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/grille,
+/obj/structure/window/fulltile,
/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"cnG" = (
-/obj/structure/cable{
+/area/engine/engineering)
+"chG" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/obj/structure/cable/yellow{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
},
+/turf/open/floor/engine,
+/area/engine/engineering)
+"chH" = (
+/obj/structure/closet/firecloset,
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"cnH" = (
+"chI" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"cnI" = (
-/obj/structure/closet/firecloset,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"cnJ" = (
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/solar/port)
+"chJ" = (
/obj/machinery/power/tracker,
/obj/structure/cable{
icon_state = "0-4";
- d2 = 4
+ d2 = 4
},
/turf/open/floor/plasteel/airless/solarpanel,
/area/solar/port)
-"cnK" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/port)
-"cnL" = (
+"chK" = (
/obj/structure/cable{
d2 = 8;
- icon_state = "0-8"
+ icon_state = "0-8"
},
/obj/structure/lattice/catwalk,
/turf/open/space,
/area/solar/port)
-"cnM" = (
+"chL" = (
/obj/structure/lattice/catwalk,
/turf/open/space,
/area/solar/port)
-"cnN" = (
+"chM" = (
/obj/structure/cable{
icon_state = "0-4";
- d2 = 4
+ d2 = 4
},
/obj/structure/lattice/catwalk,
/turf/open/space,
/area/solar/port)
-"cnO" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 4;
- name = "Solar Maintenance";
- req_access = null;
- req_access_txt = "10; 13"
- },
-/turf/open/floor/plating,
-/area/maintenance/portsolar)
-"cnP" = (
+"chN" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/open/floor/plating,
/area/maintenance/portsolar)
-"cnQ" = (
+"chO" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/door/airlock/external{
- cyclelinkeddir = 8;
- name = "Solar Maintenance";
- req_access = null;
- req_access_txt = "10; 13"
+ cyclelinkeddir = 4;
+ name = "Solar Maintenance";
+ req_access = null;
+ req_access_txt = "10; 13"
},
/turf/open/floor/plating,
/area/maintenance/portsolar)
-"cnR" = (
+"chP" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/structure/cable{
d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d2 = 8;
+ icon_state = "2-8"
},
/turf/open/floor/plating,
/area/maintenance/portsolar)
-"cnS" = (
+"chQ" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
-/turf/open/floor/plating,
-/area/maintenance/portsolar)
-"cnT" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d2 = 4;
+ icon_state = "1-4"
},
+/turf/open/floor/plating,
+/area/maintenance/portsolar)
+"chR" = (
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 8;
+ icon_state = "1-8"
},
/turf/open/floor/plating,
/area/maintenance/portsolar)
-"cnU" = (
+"chS" = (
/obj/machinery/door/airlock/engineering{
name = "Aft Port Solar Access";
- req_access_txt = "10"
+ req_access_txt = "10"
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/open/floor/plating,
/area/maintenance/portsolar)
-"cnV" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
+"chT" = (
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 8;
+ icon_state = "1-8"
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"cnW" = (
+"chU" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
+/mob/living/simple_animal/mouse,
/turf/open/floor/plating,
/area/maintenance/aft)
-"cnX" = (
-/obj/structure/disposalpipe/segment{
+"chV" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+/obj/structure/table/reinforced,
+/obj/item/weapon/tank/internals/emergency_oxygen/engi{
+ pixel_x = 5;
+ pixel_y = 0
},
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cnY" = (
-/obj/structure/disposalpipe/sortjunction{
- dir = 8;
- icon_state = "pipe-j2s";
- sortType = 4
+/obj/item/clothing/gloves/color/black,
+/obj/item/clothing/glasses/meson/engine,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+/turf/open/floor/engine,
+/area/engine/engineering)
+"chW" = (
+/obj/machinery/camera{
+ c_tag = "Engineering Center";
+ dir = 2;
+ pixel_x = 23
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
-/area/maintenance/aft)
-"cnZ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/area/engine/engineering)
+"chX" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
},
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
},
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"coa" = (
+/turf/open/floor/engine,
+/area/engine/engineering)
+"chY" = (
/obj/machinery/shieldgen,
/turf/open/floor/plating,
/area/engine/engineering)
-"cob" = (
+"chZ" = (
/obj/machinery/the_singularitygen{
anchored = 0
},
/turf/open/floor/plating,
/area/engine/engineering)
-"coc" = (
-/obj/machinery/power/apc{
- cell_type = 15000;
- dir = 1;
- name = "Engineering APC";
- pixel_x = 0;
- pixel_y = 25
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/turf/open/floor/plasteel/yellow/side,
-/area/engine/engineering)
-"cod" = (
+"cia" = (
/obj/machinery/light{
dir = 1
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
/obj/structure/cable{
d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d2 = 4;
+ icon_state = "2-4"
},
/turf/open/floor/plasteel/yellow/side,
/area/engine/engineering)
-"coe" = (
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+"cib" = (
+/obj/machinery/power/apc{
+ cell_type = 15000;
+ dir = 1;
+ name = "Engineering APC";
+ pixel_x = 0;
+ pixel_y = 25
},
/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+ icon_state = "0-4";
+ d2 = 4
},
-/obj/machinery/portable_atmospherics/pump,
/turf/open/floor/plasteel/yellow/side,
/area/engine/engineering)
-"cof" = (
+"cic" = (
/obj/structure/cable{
icon_state = "0-4";
- d2 = 4
+ d2 = 4
},
/obj/structure/cable{
d2 = 8;
- icon_state = "0-8"
+ icon_state = "0-8"
},
/obj/structure/table,
+/obj/item/clothing/gloves/color/yellow,
+/obj/item/clothing/gloves/color/yellow,
/turf/open/floor/plasteel/yellow/side,
/area/engine/engineering)
-"cog" = (
+"cid" = (
/obj/structure/cable{
icon_state = "0-4";
- d2 = 4
+ d2 = 4
},
/obj/structure/cable{
d2 = 8;
- icon_state = "0-8"
+ icon_state = "0-8"
},
-/obj/structure/table,
-/obj/item/weapon/tank/internals/emergency_oxygen/engi,
-/obj/item/clothing/mask/breath,
+/obj/machinery/portable_atmospherics/pump,
/turf/open/floor/plasteel/yellow/side,
/area/engine/engineering)
-"coh" = (
+"cie" = (
/obj/structure/cable{
d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d2 = 8;
+ icon_state = "2-8"
},
/obj/structure/extinguisher_cabinet{
pixel_x = -5;
- pixel_y = 30
+ pixel_y = 30
},
/turf/open/floor/plasteel/yellow/side,
/area/engine/engineering)
-"coi" = (
+"cif" = (
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/structure/table,
+/obj/item/weapon/tank/internals/emergency_oxygen/engi,
+/obj/item/clothing/mask/breath,
+/turf/open/floor/plasteel/yellow/side,
+/area/engine/engineering)
+"cig" = (
+/turf/closed/wall,
+/area/engine/engineering)
+"cih" = (
/obj/machinery/airalarm{
pixel_y = 23
},
/obj/machinery/portable_atmospherics/canister/oxygen,
/turf/open/floor/plasteel/yellow/side,
/area/engine/engineering)
-"coj" = (
-/turf/closed/wall,
+"cii" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/table/reinforced,
+/obj/item/clothing/suit/radiation,
+/obj/item/clothing/head/radiation,
+/obj/item/clothing/glasses/meson,
+/obj/item/device/geiger_counter,
+/obj/item/device/geiger_counter,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/engine,
/area/engine/engineering)
-"cok" = (
+"cij" = (
/obj/machinery/computer/station_alert,
/obj/item/device/radio/intercom{
broadcasting = 0;
- name = "Station Intercom (General)";
- pixel_y = 20
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"col" = (
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
+ name = "Station Intercom (General)";
+ pixel_y = 20
},
-/obj/machinery/modular_computer/console/preset/engineering,
/turf/open/floor/plasteel,
/area/engine/engineering)
-"com" = (
+"cik" = (
/obj/machinery/computer/station_alert,
/obj/machinery/button/door{
desc = "A remote control-switch for the engineering security doors.";
- id = "Engineering";
- name = "Engineering Lockdown";
- pixel_x = -24;
- pixel_y = -10;
- req_access_txt = "10"
+ id = "Engineering";
+ name = "Engineering Lockdown";
+ pixel_x = -24;
+ pixel_y = -10;
+ req_access_txt = "10"
},
/obj/machinery/button/door{
desc = "A remote control-switch for secure storage.";
- id = "Secure Storage";
- name = "Engineering Secure Storage";
- pixel_x = -24;
- pixel_y = 0;
- req_access_txt = "11"
+ id = "Secure Storage";
+ name = "Engineering Secure Storage";
+ pixel_x = -24;
+ pixel_y = 0;
+ req_access_txt = "11"
},
/obj/machinery/button/door{
id = "atmos";
- name = "Atmospherics Lockdown";
- pixel_x = -24;
- pixel_y = 10;
- req_access_txt = "24"
+ name = "Atmospherics Lockdown";
+ pixel_x = -24;
+ pixel_y = 10;
+ req_access_txt = "24"
},
/turf/open/floor/plasteel/neutral{
dir = 2
},
/area/engine/chiefs_office)
-"con" = (
+"cil" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/clothing/gloves/color/yellow,
+/obj/item/weapon/storage/belt/utility,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cim" = (
/obj/structure/chair/office/light{
dir = 4
},
@@ -54189,154 +51870,117 @@
dir = 2
},
/area/engine/chiefs_office)
-"coo" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/folder/yellow,
-/obj/item/weapon/paper/monitorkey,
-/obj/effect/landmark/event_spawn,
+"cin" = (
+/obj/structure/closet/secure_closet/engineering_chief{
+ req_access_txt = "0"
+ },
/turf/open/floor/plasteel/neutral{
dir = 2
},
/area/engine/chiefs_office)
-"cop" = (
+"cio" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
- },
/turf/open/floor/plasteel/neutral{
dir = 2
},
/area/engine/chiefs_office)
-"coq" = (
-/obj/structure/closet/secure_closet/engineering_chief{
- req_access_txt = "0"
+"cip" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
-/turf/open/floor/plasteel/neutral{
- dir = 2
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
},
-/area/engine/chiefs_office)
-"cor" = (
+/turf/open/floor/engine,
+/area/engine/engineering)
+"ciq" = (
/obj/structure/grille,
/obj/structure/cable,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/engine/chiefs_office)
-"cos" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cot" = (
-/obj/effect/landmark{
- name = "lightsout"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+"cir" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
},
-/turf/open/floor/plasteel,
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/turf/open/floor/plating,
/area/engine/engineering)
-"cou" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/obj/structure/closet/radiation,
+"cis" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
/turf/open/floor/plasteel,
/area/engine/engineering)
-"cov" = (
+"cit" = (
/obj/machinery/atmospherics/pipe/simple/green/visible,
/turf/closed/wall/r_wall,
/area/atmos)
-"cow" = (
+"ciu" = (
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/yellow/visible,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/atmos)
-"cox" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/turf/open/floor/plating,
-/area/atmos)
-"coy" = (
+"civ" = (
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/green/visible,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/atmos)
-"coz" = (
+"ciw" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/atmos)
-"coA" = (
+"cix" = (
/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/turf/closed/wall/r_wall,
/area/atmos)
-"coB" = (
-/obj/machinery/atmospherics/components/unary/tank/toxins{
- dir = 4
+"ciy" = (
+/obj/structure/sign/nosmoking_2{
+ pixel_x = -28
},
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
-"coC" = (
-/obj/machinery/atmospherics/components/binary/pump{
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 4;
- name = "plasma tank pump"
+ name = "input gas connector port"
},
+/obj/machinery/portable_atmospherics/canister/oxygen,
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/incinerator)
-"coD" = (
-/obj/machinery/atmospherics/pipe/manifold4w/general{
- level = 2
+"ciz" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 4;
+ initialize_directions = 11
},
-/obj/machinery/meter,
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/incinerator)
-"coE" = (
-/obj/effect/landmark{
- name = "blobstart"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+"ciA" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 4;
- name = "Mix to Incinerator";
- on = 0
+ name = "input port pump"
},
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/incinerator)
-"coF" = (
-/obj/item/weapon/cigbutt,
-/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 10
- },
+"ciB" = (
+/obj/effect/decal/cleanable/cobweb,
+/obj/structure/reagent_dispensers/watertank,
+/obj/item/weapon/extinguisher,
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/incinerator)
-"coG" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+"ciC" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+ dir = 6
},
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
-"coH" = (
+/turf/open/space,
+/area/space/nearstation)
+"ciD" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
name = "output gas connector port"
},
@@ -54346,233 +51990,159 @@
},
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/incinerator)
-"coI" = (
+"ciE" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/incinerator)
+"ciF" = (
/obj/structure/table,
/obj/item/weapon/cartridge/medical,
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"coJ" = (
+"ciG" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/closet/firecloset/full,
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"coK" = (
+"ciH" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance{
lootcount = 2;
- name = "2maintenance loot spawner"
+ name = "2maintenance loot spawner"
},
/obj/item/latexballon,
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"coL" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"coM" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"coN" = (
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"coO" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"coP" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"coQ" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"coR" = (
-/obj/structure/rack,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+"ciI" = (
+/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"coS" = (
+"ciJ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating{
icon_state = "platingdmg3"
},
/area/maintenance/asmaint2)
-"coT" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/tinted/fulltile,
+"ciK" = (
+/obj/structure/rack,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"coU" = (
+"ciL" = (
/obj/structure/grille,
/obj/structure/window/reinforced/tinted/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 6
- },
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"coV" = (
-/obj/machinery/power/apc{
- dir = 8;
- name = "Science Maintenance APC";
- pixel_x = -25
+"ciM" = (
+/obj/machinery/power/compressor{
+ comp_id = "incineratorturbine";
+ dir = 1;
+ luminosity = 2
},
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+/obj/structure/cable/yellow,
+/obj/structure/cable/yellow{
+ d2 = 2;
+ icon_state = "0-2"
},
/obj/machinery/camera{
- c_tag = "Aft Starboard Solar Access";
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+ c_tag = "Turbine Chamber";
+ dir = 4;
+ network = list("Turbine")
},
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"coW" = (
+/turf/open/floor/engine/vacuum,
+/area/maintenance/incinerator)
+"ciN" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 2;
+ icon_state = "1-2"
},
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"ciO" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
},
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"coX" = (
-/obj/structure/closet/emcloset,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/turf_decal/stripes/line{
dir = 9
},
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"coY" = (
+/turf/open/floor/engine,
+/area/engine/engineering)
+"ciP" = (
/obj/structure/cable{
icon_state = "0-2";
- d2 = 2
+ d2 = 2
},
/obj/structure/lattice/catwalk,
/turf/open/space,
/area/solar/port)
-"coZ" = (
+"ciQ" = (
/obj/machinery/power/solar_control{
id = "portsolar";
- name = "Aft Port Solar Control";
- track = 0
+ name = "Aft Port Solar Control";
+ track = 0
},
/obj/structure/cable,
/turf/open/floor/plating,
/area/maintenance/portsolar)
-"cpa" = (
-/turf/open/floor/plating,
-/area/maintenance/portsolar)
-"cpb" = (
+"ciR" = (
/obj/machinery/power/apc{
dir = 4;
- name = "Aft Port Solar APC";
- pixel_x = 23;
- pixel_y = 2
+ name = "Aft Port Solar APC";
+ pixel_x = 23;
+ pixel_y = 2
},
/obj/machinery/camera{
c_tag = "Aft Port Solar Control";
- dir = 1
+ dir = 1
},
/obj/structure/cable,
/turf/open/floor/plating,
/area/maintenance/portsolar)
-"cpc" = (
+"ciS" = (
+/turf/open/floor/plating,
+/area/maintenance/portsolar)
+"ciT" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"ciU" = (
/obj/structure/disposalpipe/segment{
dir = 1;
- icon_state = "pipe-c"
+ icon_state = "pipe-c"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/aft)
-"cpd" = (
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+"ciV" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"ciW" = (
+/obj/effect/landmark{
+ name = "blobstart"
},
/turf/open/floor/plating,
-/area/maintenance/aft)
-"cpe" = (
+/area/engine/engineering)
+"ciX" = (
/obj/structure/closet/crate,
/obj/item/stack/sheet/metal{
amount = 50
@@ -54591,74 +52161,43 @@
},
/turf/open/floor/plating,
/area/engine/engineering)
-"cpf" = (
-/obj/effect/landmark{
- name = "blobstart"
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cpg" = (
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cph" = (
+"ciY" = (
/obj/machinery/door/poddoor{
id = "Secure Storage";
- name = "secure storage"
+ name = "secure storage"
},
/turf/open/floor/plating,
/area/engine/engineering)
-"cpi" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/turf/open/floor/plasteel,
+"ciZ" = (
+/turf/open/floor/plating,
/area/engine/engineering)
-"cpj" = (
+"cja" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 8;
+ icon_state = "1-8"
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"cpk" = (
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cpl" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cpm" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
+"cjb" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- on = 1
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"cpn" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+"cjc" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"cpo" = (
+"cjd" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/structure/sign/nosmoking_2{
pixel_y = 32
@@ -54671,11 +52210,19 @@
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"cpp" = (
+"cje" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cjf" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/structure/chair/office/dark{
dir = 1
@@ -54685,50 +52232,51 @@
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"cpq" = (
+"cjg" = (
/obj/machinery/camera{
c_tag = "Chief Engineer's Office";
- dir = 4;
- network = list("SS13")
+ dir = 4;
+ network = list("SS13")
},
/obj/machinery/airalarm{
dir = 4;
- icon_state = "alarm0";
- pixel_x = -22
+ icon_state = "alarm0";
+ pixel_x = -22
},
/obj/machinery/computer/card/minor/ce,
/turf/open/floor/plasteel/neutral{
dir = 2
},
/area/engine/chiefs_office)
-"cpr" = (
-/obj/structure/table/reinforced,
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 7
- },
-/obj/item/weapon/pen,
-/obj/item/weapon/storage/fancy/cigarettes,
-/turf/open/floor/plasteel/neutral{
- dir = 2
+"cjh" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 10
},
-/area/engine/chiefs_office)
-"cps" = (
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cji" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plasteel/neutral{
- dir = 2
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
},
-/area/engine/chiefs_office)
-"cpt" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ external_pressure_bound = 101.325;
+ on = 1;
+ pressure_checks = 1
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cjj" = (
/obj/item/device/radio/intercom{
dir = 4;
- name = "Station Intercom (General)";
- pixel_x = 27
+ name = "Station Intercom (General)";
+ pixel_x = 27
},
/obj/structure/filingcabinet/chestdrawer,
/mob/living/simple_animal/parrot/Poly,
@@ -54736,369 +52284,306 @@
dir = 2
},
/area/engine/chiefs_office)
-"cpu" = (
-/obj/machinery/door/poddoor/preopen{
- id = "Engineering";
- name = "engineering security door"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel{
- name = "floor"
+"cjk" = (
+/obj/structure/sign/securearea,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
+/turf/closed/wall/r_wall,
/area/engine/engineering)
-"cpv" = (
-/obj/machinery/door/poddoor/preopen{
- id = "Engineering";
- name = "engineering security door"
+"cjl" = (
+/obj/machinery/camera{
+ c_tag = "Engineering MiniSat Access";
+ dir = 4;
+ network = list("SS13")
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel{
- name = "floor"
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
+/turf/open/floor/plasteel,
/area/engine/engineering)
-"cpw" = (
-/obj/machinery/door/poddoor/preopen{
- id = "Engineering";
- name = "engineering security door"
+"cjm" = (
+/obj/machinery/door/airlock/command{
+ name = "MiniSat Access";
+ req_access_txt = "65"
},
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel{
- name = "floor"
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
+/turf/open/floor/plasteel,
/area/engine/engineering)
-"cpx" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/green/visible,
-/turf/open/space,
-/area/space/nearstation)
-"cpy" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/on{
- dir = 1;
- frequency = 1441;
- id = "waste_out"
- },
-/turf/open/floor/plating/airless,
-/area/atmos)
-"cpz" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/cyan/visible,
-/turf/open/space,
-/area/space/nearstation)
-"cpA" = (
-/obj/structure/sign/nosmoking_2{
- pixel_x = -28
+"cjn" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/door/airlock{
+ name = "Gaming Room"
},
-/obj/machinery/atmospherics/components/unary/portables_connector/visible{
- dir = 4;
- name = "input gas connector port"
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"cjo" = (
+/obj/structure/closet/toolcloset,
+/turf/open/floor/plasteel,
+/area/construction)
+"cjp" = (
+/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+ dir = 4
},
-/obj/machinery/portable_atmospherics/canister/oxygen,
+/obj/structure/reagent_dispensers/fueltank,
+/obj/item/weapon/storage/toolbox/emergency,
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/incinerator)
-"cpB" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 4;
- name = "input port pump"
+"cjq" = (
+/obj/machinery/atmospherics/components/binary/valve{
+ name = "Mix to Space"
},
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/incinerator)
-"cpC" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
- },
+"cjr" = (
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/incinerator)
-"cpD" = (
+"cjs" = (
/obj/machinery/atmospherics/pipe/simple/general/visible,
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/incinerator)
-"cpE" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
+"cjt" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
- icon_state = "pipe-c"
+ external_pressure_bound = 101.325;
+ on = 1;
+ pressure_checks = 1
},
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/incinerator)
-"cpF" = (
+"cju" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 1;
- name = "Incinerator to Output";
- on = 0
+ name = "Incinerator to Output";
+ on = 0
},
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/incinerator)
-"cpG" = (
+"cjv" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/obj/structure/disposalpipe/segment{
- dir = 4
+ dir = 1;
+ icon_state = "pipe-c"
},
-/turf/closed/wall,
+/turf/open/floor/plasteel/floorgrime,
/area/maintenance/incinerator)
-"cpH" = (
+"cjw" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/closed/wall,
/area/maintenance/asmaint)
-"cpI" = (
+"cjx" = (
/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
+ dir = 4
},
/turf/closed/wall,
-/area/maintenance/asmaint)
-"cpJ" = (
+/area/maintenance/incinerator)
+"cjy" = (
/obj/structure/disposalpipe/segment,
/obj/item/weapon/shard,
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"cpK" = (
-/obj/structure/disposalpipe/segment,
-/obj/item/weapon/cigbutt/roach,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"cpL" = (
+"cjz" = (
/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
+ dir = 2;
+ icon_state = "pipe-c"
},
/turf/closed/wall,
/area/maintenance/asmaint)
-"cpM" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cpN" = (
-/obj/structure/chair,
-/obj/item/weapon/storage/fancy/cigarettes,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cpO" = (
-/obj/structure/chair,
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"cpP" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall,
-/area/maintenance/aft)
-"cpQ" = (
-/obj/structure/closet,
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
+"cjA" = (
+/obj/structure/disposalpipe/segment,
+/obj/item/weapon/cigbutt/roach,
/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"cpR" = (
-/obj/structure/reagent_dispensers/fueltank,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+/area/maintenance/asmaint)
+"cjB" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 9
},
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"cpS" = (
+/obj/structure/table,
+/obj/item/weapon/folder/white,
+/obj/item/weapon/pen,
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"cjC" = (
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"cpT" = (
+"cjD" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/starboardsolar)
+"cjE" = (
/obj/structure/rack,
/obj/effect/decal/cleanable/cobweb/cobweb2,
/obj/effect/spawner/lootdrop/maintenance,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"cpU" = (
-/turf/closed/wall/r_wall,
-/area/maintenance/starboardsolar)
-"cpV" = (
+"cjF" = (
/obj/machinery/door/airlock/engineering{
name = "Aft Starboard Solar Access";
- req_access_txt = "10"
+ req_access_txt = "10"
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
/turf/open/floor/plating,
/area/maintenance/starboardsolar)
-"cpW" = (
+"cjG" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
- pixel_y = 0
+ icon_state = "shock";
+ name = "HIGH VOLTAGE";
+ pixel_y = 0
},
/turf/closed/wall/r_wall,
/area/maintenance/starboardsolar)
-"cpX" = (
+"cjH" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 8;
+ icon_state = "1-8"
},
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 4;
+ icon_state = "1-4"
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/lattice/catwalk,
/turf/open/space,
/area/solar/port)
-"cpY" = (
+"cjI" = (
+/obj/structure/closet/crate,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cjJ" = (
/turf/closed/wall/r_wall,
/area/engine/engine_smes)
-"cpZ" = (
+"cjK" = (
/obj/effect/spawner/lootdrop/maintenance,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/aft)
-"cqa" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+"cjL" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
/turf/open/floor/plating,
-/area/maintenance/aft)
-"cqb" = (
+/area/construction)
+"cjM" = (
/obj/machinery/portable_atmospherics/canister/toxins,
/obj/machinery/light/small{
dir = 8
},
/obj/machinery/camera{
c_tag = "Engineering Secure Storage";
- dir = 4;
- network = list("SS13")
+ dir = 4;
+ network = list("SS13")
},
/turf/open/floor/plating,
/area/engine/engineering)
-"cqc" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cqd" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+"cjN" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"cqe" = (
+"cjO" = (
+/obj/machinery/light,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"cqf" = (
+"cjP" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 10
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"cqg" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+"cjQ" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/engine/engineering)
-"cqh" = (
-/obj/machinery/disposal/bin,
-/obj/structure/disposalpipe/trunk{
+"cjR" = (
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 2;
+ name = "Engineering External Access";
+ req_access = null;
+ req_access_txt = "10;13"
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cjS" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/turf/open/floor/plasteel/neutral{
- dir = 2
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cjT" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
},
-/area/engine/chiefs_office)
-"cqi" = (
-/obj/structure/disposalpipe/segment{
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cjU" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
dir = 4
},
/turf/open/floor/plasteel/neutral{
dir = 2
},
/area/engine/chiefs_office)
-"cqj" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
+"cjV" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cjW" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
-/turf/open/floor/plasteel/neutral{
- dir = 2
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
},
-/area/engine/chiefs_office)
-"cqk" = (
+/area/toxins/misc_lab)
+"cjX" = (
/obj/item/weapon/cartridge/engineering{
pixel_x = 4;
- pixel_y = 5
+ pixel_y = 5
},
/obj/item/weapon/cartridge/engineering{
pixel_x = -3;
- pixel_y = 2
+ pixel_y = 2
},
/obj/item/weapon/cartridge/engineering{
pixel_x = 3
@@ -55112,37 +52597,46 @@
dir = 2
},
/area/engine/chiefs_office)
-"cql" = (
+"cjY" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plasteel/neutral{
+ dir = 2
+ },
+/area/engine/chiefs_office)
+"cjZ" = (
/obj/structure/sign/securearea,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall/r_wall,
/area/engine/engineering)
-"cqm" = (
-/obj/machinery/door/airlock/engineering{
- cyclelinkeddir = 1;
- name = "Engine Room";
- req_access_txt = "10"
+"cka" = (
+/obj/machinery/door/poddoor/preopen{
+ id = "testlab";
+ name = "test chamber blast door"
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cqn" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'RADIOACTIVE AREA'";
- icon_state = "radiation";
- name = "RADIOACTIVE AREA";
- pixel_x = 0;
- pixel_y = 0
+/obj/machinery/door/airlock/glass_research{
+ cyclelinkeddir = 4;
+ name = "Test Chamber";
+ req_access_txt = "47"
},
-/turf/closed/wall/r_wall,
-/area/engine/engineering)
-"cqo" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/toxins/misc_lab)
+"ckb" = (
/obj/machinery/atmospherics/pipe/simple,
/obj/structure/grille,
/obj/machinery/meter,
/turf/closed/wall/r_wall,
/area/atmos)
-"cqp" = (
+"ckc" = (
/obj/machinery/atmospherics/pipe/simple,
/obj/structure/grille,
/obj/machinery/meter{
@@ -55150,7 +52644,7 @@
},
/turf/closed/wall/r_wall,
/area/atmos)
-"cqq" = (
+"ckd" = (
/obj/machinery/atmospherics/pipe/simple,
/obj/structure/grille,
/obj/machinery/meter{
@@ -55158,193 +52652,229 @@
},
/turf/closed/wall/r_wall,
/area/atmos)
-"cqr" = (
+"cke" = (
+/obj/structure/chair/stool,
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/incinerator)
+"ckf" = (
/obj/structure/grille,
/obj/structure/disposalpipe/segment,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/maintenance/incinerator)
-"cqs" = (
-/obj/structure/chair/stool,
+"ckg" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 8
+ },
+/obj/machinery/meter,
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/incinerator)
-"cqt" = (
-/obj/machinery/atmospherics/components/binary/valve{
- name = "Mix to Space"
+"ckh" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "Mix to MiniSat"
},
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/incinerator)
-"cqu" = (
+"cki" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/incinerator)
+"ckj" = (
+/obj/item/weapon/cigbutt,
/obj/machinery/atmospherics/pipe/simple/general/visible{
- dir = 2
+ dir = 10
},
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/incinerator)
-"cqv" = (
+"ckk" = (
/obj/structure/cable/yellow{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
-"cqw" = (
-/obj/machinery/light{
+/obj/machinery/atmospherics/components/binary/valve{
dir = 4;
- icon_state = "tube1"
+ name = "Incinerator to Space"
},
-/obj/machinery/atmospherics/pipe/simple/general/visible,
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/incinerator)
-"cqx" = (
+"ckl" = (
/obj/machinery/portable_atmospherics/canister,
/obj/effect/decal/cleanable/cobweb,
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"cqy" = (
+"ckm" = (
/obj/machinery/door/airlock/maintenance{
name = "Biohazard Disposals";
- req_access_txt = "12"
+ req_access_txt = "12"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"cqz" = (
+"ckn" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/toxins/xenobiology)
+"cko" = (
/obj/structure/disposalpipe/segment,
/turf/closed/wall,
/area/maintenance/asmaint2)
-"cqA" = (
+"ckp" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance{
lootcount = 2;
- name = "2maintenance loot spawner"
+ name = "2maintenance loot spawner"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"cqB" = (
+"ckq" = (
+/obj/structure/shuttle/engine/propulsion/burst{
+ dir = 4;
+ icon_state = "propulsion";
+ tag = "icon-propulsion (WEST)"
+ },
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/pod_2)
+"ckr" = (
/obj/structure/reagent_dispensers/fueltank,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"cqC" = (
-/obj/machinery/power/apc{
- dir = 8;
- name = "Aft Starboard Solar APC";
- pixel_x = -26;
- pixel_y = 3
+"cks" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
},
/turf/open/floor/plating,
/area/maintenance/starboardsolar)
-"cqD" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+"ckt" = (
+/obj/machinery/power/apc{
+ dir = 8;
+ name = "Aft Starboard Solar APC";
+ pixel_x = -26;
+ pixel_y = 3
},
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ icon_state = "0-4";
+ d2 = 4
},
/turf/open/floor/plating,
/area/maintenance/starboardsolar)
-"cqE" = (
+"cku" = (
/obj/structure/cable{
d2 = 8;
- icon_state = "0-8"
+ icon_state = "0-8"
},
/obj/machinery/power/smes,
/turf/open/floor/plating,
/area/maintenance/starboardsolar)
-"cqF" = (
+"ckv" = (
/obj/machinery/light/small{
dir = 8
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"cqG" = (
+"ckw" = (
/obj/structure/cable{
d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d2 = 4;
+ icon_state = "2-4"
},
/turf/open/floor/plasteel/black,
/area/engine/engine_smes)
-"cqH" = (
+"ckx" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/light{
+ dir = 1
},
/turf/open/floor/plasteel/black,
/area/engine/engine_smes)
-"cqI" = (
+"cky" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/light{
- dir = 1
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/open/floor/plasteel/black,
/area/engine/engine_smes)
-"cqJ" = (
+"ckz" = (
/obj/structure/cable{
d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d2 = 8;
+ icon_state = "2-8"
},
/turf/open/floor/plasteel/black,
/area/engine/engine_smes)
-"cqK" = (
+"ckA" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/aft)
-"cqL" = (
+"ckB" = (
/obj/machinery/field/generator,
/turf/open/floor/plating,
/area/engine/engineering)
-"cqM" = (
+"ckC" = (
/obj/machinery/power/emitter,
/turf/open/floor/plating,
/area/engine/engineering)
-"cqN" = (
+"ckD" = (
+/obj/structure/table,
+/obj/item/weapon/electronics/airlock,
+/obj/item/weapon/electronics/airlock,
+/obj/item/weapon/electronics/apc,
+/obj/item/weapon/stock_parts/cell/high/plus,
+/obj/item/weapon/stock_parts/cell/high/plus,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"ckE" = (
/obj/structure/table,
/obj/machinery/cell_charger,
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"cqO" = (
-/obj/structure/table,
-/obj/item/weapon/electronics/airlock,
-/obj/item/weapon/electronics/airlock,
-/obj/item/weapon/electronics/apc,
-/obj/item/weapon/stock_parts/cell/high/plus,
-/obj/item/weapon/stock_parts/cell/high/plus,
+"ckF" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/engine/engineering)
-"cqP" = (
+"ckG" = (
/obj/structure/table,
/obj/item/weapon/book/manual/engineering_singularity_safety,
/obj/item/clothing/gloves/color/yellow,
+/obj/item/clothing/gloves/color/yellow,
/turf/open/floor/plasteel,
/area/engine/engineering)
-"cqQ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+"ckH" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
/turf/open/floor/plasteel,
/area/engine/engineering)
-"cqR" = (
+"ckI" = (
+/obj/structure/tank_dispenser,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"ckJ" = (
/obj/structure/closet/crate{
name = "solar pack crate"
},
@@ -55366,248 +52896,260 @@
/obj/item/weapon/paper/solar,
/turf/open/floor/plasteel,
/area/engine/engineering)
-"cqS" = (
-/obj/structure/tank_dispenser,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cqT" = (
+"ckK" = (
/obj/machinery/suit_storage_unit/engine,
/turf/open/floor/plasteel,
/area/engine/engineering)
-"cqU" = (
+"ckL" = (
/obj/structure/grille,
/obj/structure/cable{
icon_state = "0-4";
- d2 = 4
+ d2 = 4
},
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/engine/chiefs_office)
-"cqV" = (
-/obj/structure/grille,
+"ckM" = (
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/toxins/misc_lab)
+"ckN" = (
+/obj/machinery/door/airlock/glass_research{
+ cyclelinkeddir = 8;
+ name = "Test Chamber";
+ req_access_txt = "47"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/toxins/misc_lab)
+"ckO" = (
+/obj/structure/grille,
/obj/structure/cable{
d2 = 8;
- icon_state = "0-8"
+ icon_state = "0-8"
},
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/engine/chiefs_office)
-"cqW" = (
+"ckP" = (
/obj/machinery/door/airlock/glass_command{
name = "Chief Engineer";
- req_access_txt = "56"
+ req_access_txt = "56"
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/cable{
d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d2 = 8;
+ icon_state = "2-8"
},
/obj/structure/cable{
d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d2 = 4;
+ icon_state = "2-4"
},
/turf/open/floor/plasteel/neutral{
dir = 2
},
/area/engine/chiefs_office)
-"cqX" = (
-/obj/structure/grille,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/engine/chiefs_office)
-"cqY" = (
+"ckQ" = (
+/obj/structure/closet/cardboard,
+/turf/open/floor/plasteel/floorgrime,
+/area/quartermaster/storage)
+"ckR" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE"
+ icon_state = "shock";
+ name = "HIGH VOLTAGE"
},
/turf/closed/wall/r_wall,
/area/engine/chiefs_office)
-"cqZ" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/yellow/side{
- dir = 9
- },
-/area/engine/engineering)
-"cra" = (
+"ckS" = (
+/obj/structure/closet/cardboard,
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"ckT" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/yellow/side{
dir = 1
},
/area/engine/engineering)
-"crb" = (
-/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel/yellow/side{
- dir = 5
- },
-/area/engine/engineering)
-"crc" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/on{
- dir = 1;
- frequency = 1441;
- id = "n2_in"
+"ckU" = (
+/obj/machinery/air_sensor{
+ frequency = 1441;
+ id_tag = "n2_sensor"
},
/turf/open/floor/engine/n2,
/area/atmos)
-"crd" = (
-/obj/machinery/air_sensor{
+"ckV" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/on{
+ dir = 1;
frequency = 1441;
- id_tag = "n2_sensor"
+ id = "n2_in"
},
/turf/open/floor/engine/n2,
/area/atmos)
-"cre" = (
+"ckW" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
- external_pressure_bound = 0;
- frequency = 1441;
- id_tag = "n2_out";
- initialize_directions = 1;
- internal_pressure_bound = 4000;
- on = 1;
- pressure_checks = 2;
- pump_direction = 0
+ external_pressure_bound = 0;
+ frequency = 1441;
+ id_tag = "n2_out";
+ initialize_directions = 1;
+ internal_pressure_bound = 4000;
+ on = 1;
+ pressure_checks = 2;
+ pump_direction = 0
},
/turf/open/floor/engine/n2,
/area/atmos)
-"crf" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/on{
- dir = 1;
- frequency = 1441;
- id = "o2_in"
+"ckX" = (
+/obj/machinery/air_sensor{
+ frequency = 1441;
+ id_tag = "o2_sensor"
},
/turf/open/floor/engine/o2,
/area/atmos)
-"crg" = (
-/obj/machinery/air_sensor{
+"ckY" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/on{
+ dir = 1;
frequency = 1441;
- id_tag = "o2_sensor"
+ id = "o2_in"
},
/turf/open/floor/engine/o2,
/area/atmos)
-"crh" = (
+"ckZ" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
- external_pressure_bound = 0;
- frequency = 1441;
- id_tag = "o2_out";
- initialize_directions = 1;
- internal_pressure_bound = 4000;
- on = 1;
- pressure_checks = 2;
- pump_direction = 0
+ external_pressure_bound = 0;
+ frequency = 1441;
+ id_tag = "o2_out";
+ initialize_directions = 1;
+ internal_pressure_bound = 4000;
+ on = 1;
+ pressure_checks = 2;
+ pump_direction = 0
},
/turf/open/floor/engine/o2,
/area/atmos)
-"cri" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/on{
- dir = 1;
- frequency = 1441;
- id = "air_in"
+"cla" = (
+/obj/machinery/air_sensor{
+ frequency = 1441;
+ id_tag = "air_sensor"
},
/turf/open/floor/engine/air,
/area/atmos)
-"crj" = (
-/obj/machinery/air_sensor{
+"clb" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/on{
+ dir = 1;
frequency = 1441;
- id_tag = "air_sensor"
+ id = "air_in"
},
/turf/open/floor/engine/air,
/area/atmos)
-"crk" = (
+"clc" = (
/obj/machinery/atmospherics/components/unary/vent_pump/high_volume{
dir = 1;
- external_pressure_bound = 0;
- frequency = 1441;
- icon_state = "vent_map";
- id_tag = "air_out";
- internal_pressure_bound = 2000;
- on = 1;
- pressure_checks = 2;
- pump_direction = 0
+ external_pressure_bound = 0;
+ frequency = 1441;
+ icon_state = "vent_map";
+ id_tag = "air_out";
+ internal_pressure_bound = 2000;
+ on = 1;
+ pressure_checks = 2;
+ pump_direction = 0
},
/turf/open/floor/engine/air,
/area/atmos)
-"crl" = (
+"cld" = (
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 4;
+ name = "Mix to Incinerator";
+ on = 0
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/incinerator)
+"cle" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 2
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/incinerator)
+"clf" = (
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/incinerator)
+"clg" = (
/obj/item/device/radio/intercom{
name = "Station Intercom (General)";
- pixel_y = -29
+ pixel_y = -29
},
/obj/structure/table,
/obj/item/weapon/paper_bin{
pixel_x = -3;
- pixel_y = 7
+ pixel_y = 7
},
/obj/item/weapon/pen,
/turf/open/floor/plating,
/area/maintenance/incinerator)
-"crm" = (
+"clh" = (
/obj/machinery/light/small,
/obj/structure/extinguisher_cabinet{
pixel_x = 0;
- pixel_y = -31
+ pixel_y = -31
},
/obj/machinery/computer/turbine_computer{
id = "incineratorturbine"
},
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/incinerator)
-"crn" = (
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 8
- },
-/obj/machinery/meter,
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
-"cro" = (
-/obj/machinery/computer/security/telescreen{
- desc = "Used for watching the turbine vent.";
- dir = 1;
- name = "turbine vent monitor";
- network = list("Turbine");
- pixel_x = 0;
- pixel_y = -29
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
- dir = 4
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
-"crp" = (
+"cli" = (
/obj/machinery/button/door{
id = "auxincineratorvent";
- name = "Auxiliary Vent Control";
- pixel_x = 6;
- pixel_y = -24;
- req_access_txt = "32"
+ name = "Auxiliary Vent Control";
+ pixel_x = 6;
+ pixel_y = -24;
+ req_access_txt = "32"
},
/obj/machinery/button/door{
id = "turbinevent";
- name = "Turbine Vent Control";
- pixel_x = -6;
- pixel_y = -24;
- req_access_txt = "32"
+ name = "Turbine Vent Control";
+ pixel_x = -6;
+ pixel_y = -24;
+ req_access_txt = "32"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
dir = 4
@@ -55615,120 +53157,95 @@
/obj/machinery/atmospherics/pipe/simple/general/visible,
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/incinerator)
-"crq" = (
+"clj" = (
/obj/structure/cable/yellow{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/components/binary/valve{
- dir = 4;
- name = "Incinerator to Space"
- },
-/turf/open/floor/plasteel/floorgrime,
-/area/maintenance/incinerator)
-"crr" = (
-/obj/machinery/doorButtons/airlock_controller{
- idExterior = "incinerator_airlock_exterior";
- idSelf = "incinerator_access_control";
- idInterior = "incinerator_airlock_interior";
- name = "Incinerator Access Console";
- pixel_x = 6;
- pixel_y = -26;
- req_access_txt = "12"
- },
-/obj/machinery/button/ignition{
- id = "Incinerator";
- pixel_x = -6;
- pixel_y = -24
- },
-/obj/machinery/atmospherics/pipe/manifold/general/visible{
- dir = 4;
- initialize_directions = 11
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/machinery/meter,
/turf/open/floor/plasteel/floorgrime,
/area/maintenance/incinerator)
-"crs" = (
+"clk" = (
/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"crt" = (
-/obj/machinery/meter,
-/obj/machinery/atmospherics/pipe/manifold/general/hidden{
- icon_state = "manifold";
- dir = 1
- },
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"cru" = (
+"cll" = (
/obj/structure/disposalpipe/segment,
/obj/machinery/atmospherics/components/binary/pump{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"crv" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+"clm" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/manifold/general/hidden{
+ icon_state = "manifold";
dir = 1
},
-/obj/machinery/meter,
+/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"crw" = (
+"cln" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"crx" = (
+"clo" = (
/obj/structure/disposalpipe/segment,
-/obj/structure/reagent_dispensers/fueltank,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/obj/machinery/meter,
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"cry" = (
+"clp" = (
/obj/machinery/door/airlock/external{
name = "Solar Maintenance";
- req_access = null;
- req_access_txt = "10; 13"
+ req_access = null;
+ req_access_txt = "10; 13"
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"crz" = (
+"clq" = (
/obj/structure/rack,
/obj/structure/disposalpipe/segment,
/obj/effect/spawner/lootdrop/maintenance{
lootcount = 2;
- name = "2maintenance loot spawner"
+ name = "2maintenance loot spawner"
},
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"crA" = (
+"clr" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"cls" = (
/obj/structure/rack,
/obj/effect/spawner/lootdrop/maintenance{
lootcount = 3;
- name = "3maintenance loot spawner"
+ name = "3maintenance loot spawner"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"crB" = (
+"clt" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
+ dir = 4
},
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"crC" = (
+"clu" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+ dir = 9
},
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"crD" = (
+"clv" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
@@ -55736,342 +53253,357 @@
icon_state = "platingdmg3"
},
/area/maintenance/asmaint2)
-"crE" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"crF" = (
+"clw" = (
/obj/structure/table,
/obj/machinery/cell_charger,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"crG" = (
-/obj/structure/chair/stool,
-/obj/machinery/camera{
- c_tag = "Aft Starboard Solar Control";
- dir = 4;
- network = list("SS13")
+"clx" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
/turf/open/floor/plating,
/area/maintenance/starboardsolar)
-"crH" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+"cly" = (
+/obj/structure/chair/stool,
+/obj/machinery/camera{
+ c_tag = "Aft Starboard Solar Control";
+ dir = 4;
+ network = list("SS13")
},
/turf/open/floor/plating,
/area/maintenance/starboardsolar)
-"crI" = (
+"clz" = (
/obj/machinery/power/terminal{
icon_state = "term";
- dir = 1
+ dir = 1
},
/obj/structure/cable{
d2 = 8;
- icon_state = "0-8"
+ icon_state = "0-8"
},
/obj/machinery/light/small{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/starboardsolar)
-"crJ" = (
-/obj/machinery/door/airlock/maintenance{
- req_access_txt = "12"
+"clA" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 0;
+ pixel_y = 32
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"crK" = (
-/obj/structure/closet,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"crL" = (
+"clB" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/yellow/corner{
+ dir = 1
+ },
+/area/hallway/secondary/entry)
+"clC" = (
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 4;
+ icon_state = "1-4"
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/open/floor/plasteel/black,
/area/engine/engine_smes)
-"crM" = (
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/power/smes/engineering,
-/turf/open/floor/plasteel/vault{
- dir = 1
- },
-/area/engine/engine_smes)
-"crN" = (
+"clD" = (
/turf/open/floor/plasteel/vault{
dir = 8
},
/area/engine/engine_smes)
-"crO" = (
+"clE" = (
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 8;
+ icon_state = "0-8"
},
/obj/machinery/power/smes/engineering,
/turf/open/floor/plasteel/vault{
- dir = 4
+ dir = 1
},
/area/engine/engine_smes)
-"crP" = (
+"clF" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 8;
+ icon_state = "1-8"
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/open/floor/plasteel/black,
/area/engine/engine_smes)
-"crQ" = (
+"clG" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ icon_state = "0-4";
+ d2 = 4
},
-/turf/closed/wall,
-/area/engine/engineering)
-"crR" = (
-/obj/structure/grille,
-/obj/structure/window/fulltile,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"crS" = (
-/obj/structure/grille,
+/obj/machinery/power/smes/engineering,
+/turf/open/floor/plasteel/vault{
+ dir = 4
+ },
+/area/engine/engine_smes)
+"clH" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/window/fulltile,
-/turf/open/floor/plating,
+/turf/closed/wall,
/area/engine/engineering)
-"crT" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/airlock/glass_engineering{
- name = "Power Storage";
- req_access_txt = "11";
- req_one_access_txt = "0"
+"clI" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"crU" = (
+/turf/open/floor/plasteel/red/side,
+/area/security/main)
+"clJ" = (
/obj/structure/grille,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
/obj/structure/window/fulltile,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/engine/engineering)
-"crV" = (
+"clK" = (
+/obj/item/device/radio/intercom{
+ desc = "Talk through this. Evilly";
+ freerange = 1;
+ frequency = 1213;
+ name = "Syndicate Intercom";
+ pixel_y = -32;
+ subspace_transmission = 1;
+ syndie = 1
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"clL" = (
+/obj/structure/closet/syndicate/personal,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"clM" = (
/obj/structure/table,
/obj/item/weapon/crowbar/large,
/obj/item/weapon/storage/box/lights/mixed,
+/obj/item/clothing/glasses/meson,
+/obj/item/clothing/glasses/meson,
/turf/open/floor/plasteel/yellow/side{
dir = 9
},
/area/engine/engineering)
-"crW" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/weapon/storage/belt/utility,
-/obj/item/weapon/wrench,
-/obj/item/weapon/weldingtool,
-/obj/item/clothing/head/welding{
- pixel_x = -3;
- pixel_y = 5
- },
-/turf/open/floor/plasteel/yellow/side{
- dir = 1
- },
-/area/engine/engineering)
-"crX" = (
+"clN" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/yellow/corner{
dir = 1
},
/area/engine/engineering)
-"crY" = (
+"clO" = (
+/turf/open/space,
+/turf/closed/wall/mineral/plastitanium{
+ icon_state = "diagonalWall3"
+ },
+/area/shuttle/syndicate)
+"clP" = (
/turf/open/floor/plasteel/yellow/corner{
dir = 4
},
/area/engine/engineering)
-"crZ" = (
-/obj/machinery/light{
- dir = 1
- },
-/turf/open/floor/plasteel/yellow/side{
+"clQ" = (
+/turf/open/floor/plasteel/yellow/corner{
dir = 1
},
/area/engine/engineering)
-"csa" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/yellow/corner{
+"clR" = (
+/obj/machinery/light{
dir = 1
},
-/area/engine/engineering)
-"csb" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"csc" = (
-/obj/machinery/firealarm{
- dir = 4;
- pixel_x = 24
+/obj/structure/table,
+/obj/item/weapon/book/manual/wiki/engineering_hacking{
+ pixel_x = 3;
+ pixel_y = 3
},
+/obj/item/weapon/book/manual/wiki/engineering_construction,
+/obj/item/clothing/glasses/meson,
/turf/open/floor/plasteel/yellow/side{
- dir = 4
+ dir = 1
},
/area/engine/engineering)
-"csd" = (
+"clS" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/turf/open/floor/plasteel/red/side,
+/area/security/main)
+"clT" = (
+/obj/machinery/portable_atmospherics/canister/nitrogen,
/turf/open/floor/engine/n2,
/area/atmos)
-"cse" = (
-/obj/machinery/portable_atmospherics/canister/nitrogen,
+"clU" = (
/turf/open/floor/engine/n2,
/area/atmos)
-"csf" = (
+"clV" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
/turf/open/floor/engine/o2,
/area/atmos)
-"csg" = (
-/obj/machinery/portable_atmospherics/canister/oxygen,
+"clW" = (
/turf/open/floor/engine/o2,
/area/atmos)
-"csh" = (
+"clX" = (
+/obj/effect/landmark/event_spawn,
+/obj/effect/landmark/xmastree,
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"clY" = (
/obj/effect/landmark{
name = "xeno_spawn";
- pixel_x = -1
+ pixel_x = -1
},
/turf/open/floor/engine/air,
/area/atmos)
-"csi" = (
-/obj/machinery/portable_atmospherics/canister/air,
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/engine/air,
-/area/atmos)
-"csj" = (
+"clZ" = (
/turf/open/floor/engine/air,
/area/atmos)
-"csk" = (
+"cma" = (
+/obj/machinery/door/window{
+ name = "Cockpit";
+ req_access_txt = "150"
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"cmb" = (
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/maintenance/incinerator)
-"csl" = (
-/turf/closed/wall/r_wall,
-/area/maintenance/incinerator)
-"csm" = (
+"cmc" = (
/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 2
},
/turf/closed/wall/r_wall,
/area/maintenance/incinerator)
-"csn" = (
+"cmd" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/incinerator)
+"cme" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/turf/closed/wall/r_wall,
+/area/maintenance/incinerator)
+"cmf" = (
/obj/machinery/door/airlock/glass{
autoclose = 0;
- frequency = 1449;
- heat_proof = 1;
- icon_state = "door_locked";
- id_tag = "incinerator_airlock_interior";
- locked = 1;
- name = "Turbine Interior Airlock";
- req_access_txt = "32"
+ frequency = 1449;
+ heat_proof = 1;
+ icon_state = "door_locked";
+ id_tag = "incinerator_airlock_interior";
+ locked = 1;
+ name = "Turbine Interior Airlock";
+ req_access_txt = "32"
},
/obj/structure/cable/yellow{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/open/floor/engine,
/area/maintenance/incinerator)
-"cso" = (
-/obj/machinery/atmospherics/pipe/simple/general/visible,
-/turf/closed/wall/r_wall,
-/area/maintenance/incinerator)
-"csp" = (
+"cmg" = (
/obj/machinery/atmospherics/pipe/simple/general/hidden{
dir = 9
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"csq" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
+"cmh" = (
+/obj/structure/disposalpipe/junction{
+ dir = 2;
+ icon_state = "pipe-y"
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"csr" = (
-/obj/structure/disposalpipe/junction{
- dir = 2;
- icon_state = "pipe-y"
+"cmi" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"css" = (
+"cmj" = (
/obj/structure/disposalpipe/segment,
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"cst" = (
+"cmk" = (
/obj/structure/chair/stool{
pixel_y = 8
},
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"csu" = (
-/obj/effect/landmark{
- name = "xeno_spawn";
- pixel_x = -1
+"cml" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating{
- icon_state = "platingdmg3"
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden)
+"cmm" = (
+/obj/structure/chair{
+ dir = 8
},
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"cmn" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"csv" = (
-/obj/structure/closet/toolcloset,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
+"cmo" = (
+/obj/structure/rack{
+ dir = 1
},
+/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"csw" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+"cmp" = (
+/obj/machinery/porta_turret/syndicate{
dir = 4
},
+/turf/closed/wall/mineral/plastitanium,
+/area/shuttle/syndicate)
+"cmq" = (
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/asmaint2)
+"cmr" = (
+/obj/structure/closet/toolcloset,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"csx" = (
+"cms" = (
/obj/machinery/door/airlock/maintenance{
req_access_txt = "12"
},
@@ -56080,7 +53612,7 @@
},
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"csy" = (
+"cmt" = (
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -56088,100 +53620,104 @@
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"csz" = (
+"cmu" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 9
},
/turf/closed/wall,
/area/maintenance/asmaint2)
-"csA" = (
-/obj/machinery/power/solar_control{
- id = "starboardsolar";
- name = "Aft Starboard Solar Control";
- track = 0
+"cmv" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
/turf/open/floor/plating,
/area/maintenance/starboardsolar)
-"csB" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+"cmw" = (
+/obj/machinery/power/solar_control{
+ id = "starboardsolar";
+ name = "Aft Starboard Solar Control";
+ track = 0
},
/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ icon_state = "0-4";
+ d2 = 4
},
/turf/open/floor/plating,
/area/maintenance/starboardsolar)
-"csC" = (
+"cmx" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
- pixel_y = -32
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 0;
+ pixel_y = -32
},
/turf/open/floor/plating,
/area/maintenance/starboardsolar)
-"csD" = (
+"cmy" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/open/floor/plasteel/black,
/area/engine/engine_smes)
-"csE" = (
+"cmz" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plasteel/black,
+/area/engine/engine_smes)
+"cmA" = (
/obj/machinery/power/terminal{
icon_state = "term";
- dir = 1
+ dir = 1
},
/obj/structure/cable/yellow{
d2 = 4;
- icon_state = "0-4"
+ icon_state = "0-4"
},
/turf/open/floor/plasteel/vault{
dir = 8
},
/area/engine/engine_smes)
-"csF" = (
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel/black,
-/area/engine/engine_smes)
-"csG" = (
+"cmB" = (
/obj/machinery/power/terminal{
icon_state = "term";
- dir = 1
+ dir = 1
},
/obj/structure/cable/yellow{
d2 = 8;
- icon_state = "0-8"
+ icon_state = "0-8"
},
/turf/open/floor/plasteel/vault{
dir = 8
},
/area/engine/engine_smes)
-"csH" = (
+"cmC" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall/r_wall,
+/area/engine/engineering)
+"cmD" = (
/obj/machinery/navbeacon{
codes_txt = "delivery;dir=2";
- freq = 1400;
- location = "Engineering"
+ freq = 1400;
+ location = "Engineering"
},
/obj/structure/plasticflaps{
opacity = 1
@@ -56189,663 +53725,649 @@
/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
/area/engine/engineering)
-"csI" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall/r_wall,
-/area/engine/engineering)
-"csJ" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'RADIOACTIVE AREA'";
- icon_state = "radiation";
- name = "RADIOACTIVE AREA";
- pixel_x = -32;
- pixel_y = 0
- },
-/obj/structure/disposalpipe/segment,
-/obj/structure/sign/securearea{
- pixel_x = 32;
- pixel_y = 0
+"cmE" = (
+/turf/open/space,
+/turf/closed/wall/mineral/plastitanium{
+ dir = 4;
+ icon_state = "diagonalWall3"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+/area/shuttle/syndicate)
+"cmF" = (
+/turf/open/floor/plasteel/yellow/side{
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/maintenance/aft)
-"csK" = (
-/obj/structure/closet/secure_closet/engineering_welding,
+/area/engine/engineering)
+"cmG" = (
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -24
+ pixel_x = -24
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/open/floor/plasteel/yellow/side{
dir = 9
},
/area/engine/engineering)
-"csL" = (
-/obj/structure/closet/secure_closet/engineering_electrical,
-/turf/open/floor/plasteel/yellow/side{
- dir = 1
- },
-/area/engine/engineering)
-"csM" = (
+"cmH" = (
+/obj/structure/table,
+/obj/item/stack/cable_coil,
+/obj/item/weapon/crowbar/red,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"cmI" = (
/obj/machinery/vending/engivend,
/turf/open/floor/plasteel/yellow/side{
dir = 1
},
/area/engine/engineering)
-"csN" = (
-/obj/machinery/vending/tool,
-/turf/open/floor/plasteel/yellow/corner{
- dir = 1
- },
-/area/engine/engineering)
-"csO" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+"cmJ" = (
+/obj/structure/table,
+/obj/item/weapon/storage/box/zipties{
+ pixel_x = 1;
+ pixel_y = 2
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/yellow/corner{
- dir = 4
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"cmK" = (
+/obj/machinery/requests_console{
+ announcementConsole = 0;
+ department = "Engineering";
+ departmentType = 4;
+ name = "Engineering RC";
+ pixel_y = 30
},
-/area/engine/engineering)
-"csP" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/open/floor/plasteel/yellow/side{
dir = 1
},
/area/engine/engineering)
-"csQ" = (
-/obj/machinery/requests_console{
- announcementConsole = 0;
- department = "Engineering";
- departmentType = 4;
- name = "Engineering RC";
- pixel_y = 30
- },
+"cmL" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/turf/open/floor/plasteel/yellow/side{
dir = 1
},
/area/engine/engineering)
-"csR" = (
+"cmM" = (
+/obj/machinery/sleeper/syndie{
+ dir = 4
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/syndicate)
+"cmN" = (
/obj/structure/sign/nosmoking_2{
pixel_y = 32
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
/turf/open/floor/plasteel/yellow/side{
dir = 1
},
/area/engine/engineering)
-"csS" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/turf/open/floor/plasteel/yellow/corner{
- dir = 1
- },
-/area/engine/engineering)
-"csT" = (
+"cmO" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/syndicate)
+"cmP" = (
+/turf/open/floor/mineral/titanium,
+/area/shuttle/syndicate)
+"cmQ" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"csU" = (
+"cmR" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d2 = 8;
+ icon_state = "1-8"
},
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"csV" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"csW" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 4
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"csX" = (
-/obj/structure/closet/secure_closet/engineering_personal,
-/turf/open/floor/plasteel/yellow/side{
- dir = 4
+"cmS" = (
+/obj/structure/table,
+/obj/item/stack/medical/ointment,
+/obj/item/stack/medical/bruise_pack,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -5;
+ pixel_y = 30
},
-/area/engine/engineering)
-"csY" = (
+/turf/open/floor/mineral/titanium,
+/area/shuttle/syndicate)
+"cmT" = (
+/obj/machinery/suit_storage_unit/syndicate,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"cmU" = (
/obj/machinery/light/small,
/turf/open/floor/engine/n2,
/area/atmos)
-"csZ" = (
+"cmV" = (
/obj/machinery/light/small,
/turf/open/floor/engine/o2,
/area/atmos)
-"cta" = (
+"cmW" = (
/obj/machinery/light/small,
/turf/open/floor/engine/air,
/area/atmos)
-"ctb" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 2;
- name = "Incinerator Output Pump";
- on = 1
+"cmX" = (
+/obj/machinery/light_switch{
+ pixel_x = 27
},
-/turf/open/space,
-/area/maintenance/incinerator)
-"ctc" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/construction)
+"cmY" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 2;
- on = 1
+ on = 1
},
/obj/machinery/doorButtons/access_button{
idDoor = "incinerator_airlock_exterior";
- idSelf = "incinerator_access_control";
- layer = 3.1;
- name = "Incinerator airlock control";
- pixel_x = 8;
- pixel_y = -24
+ idSelf = "incinerator_access_control";
+ layer = 3.1;
+ name = "Incinerator airlock control";
+ pixel_x = 8;
+ pixel_y = -24
},
/obj/machinery/light/small{
dir = 8
},
/obj/structure/sign/fire{
pixel_x = -32;
- pixel_y = 0
- },
-/turf/open/floor/engine,
-/area/maintenance/incinerator)
-"ctd" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ pixel_y = 0
},
/turf/open/floor/engine,
/area/maintenance/incinerator)
-"cte" = (
+"cmZ" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 1;
- on = 1
+ on = 1
},
/obj/structure/sign/fire{
pixel_x = 32;
- pixel_y = 0
+ pixel_y = 0
},
/obj/machinery/doorButtons/access_button{
idSelf = "incinerator_access_control";
- idDoor = "incinerator_airlock_interior";
- name = "Incinerator airlock control";
- pixel_x = -8;
- pixel_y = 24
+ idDoor = "incinerator_airlock_interior";
+ name = "Incinerator airlock control";
+ pixel_x = -8;
+ pixel_y = 24
},
/obj/machinery/light/small{
dir = 4
},
/turf/open/floor/engine,
/area/maintenance/incinerator)
-"ctf" = (
-/obj/machinery/light/small,
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"ctg" = (
+"cna" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/engine,
+/area/maintenance/incinerator)
+"cnb" = (
/obj/structure/disposalpipe/segment{
dir = 1;
- icon_state = "pipe-c"
+ icon_state = "pipe-c"
},
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"cth" = (
+"cnc" = (
+/obj/machinery/light/small,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/maintenance/asmaint)
+"cnd" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/obj/structure/disposalpipe/segment,
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"cti" = (
+"cne" = (
/obj/structure/disposalpipe/segment{
dir = 8;
- icon_state = "pipe-c"
+ icon_state = "pipe-c"
},
/obj/effect/spawner/lootdrop/maintenance,
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"ctj" = (
+"cnf" = (
+/obj/structure/table,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
+ },
+/turf/open/floor/plating,
+/area/maintenance/asmaint)
+"cng" = (
/obj/machinery/light/small,
/obj/structure/table,
/obj/structure/disposalpipe/segment{
dir = 8;
- icon_state = "pipe-c"
+ icon_state = "pipe-c"
},
/obj/effect/spawner/lootdrop/maintenance,
/obj/item/weapon/clipboard,
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"ctk" = (
-/obj/structure/table,
-/obj/effect/spawner/lootdrop/maintenance{
- lootcount = 2;
- name = "2maintenance loot spawner"
+"cnh" = (
+/obj/structure/chair/stool{
+ pixel_y = 8
},
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"ctl" = (
-/obj/structure/disposalpipe/segment,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"ctm" = (
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"cni" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 0
+ },
+/turf/closed/wall/mineral/plastitanium,
+/area/shuttle/syndicate)
+"cnj" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/maintenance/starboardsolar)
-"ctn" = (
+"cnk" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
/obj/machinery/door/airlock/external{
cyclelinkeddir = 2;
- name = "Solar Maintenance";
- req_access = null;
- req_access_txt = "10; 13"
+ name = "Solar Maintenance";
+ req_access = null;
+ req_access_txt = "10; 13"
},
/turf/open/floor/plating,
/area/maintenance/starboardsolar)
-"cto" = (
+"cnl" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 8;
+ icon_state = "1-8"
},
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 4;
+ icon_state = "1-4"
},
/obj/structure/lattice/catwalk,
/turf/open/space,
/area/solar/port)
-"ctp" = (
+"cnm" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 2;
- on = 1
+ on = 1
},
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 4;
+ icon_state = "1-4"
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/open/floor/plasteel/black,
/area/engine/engine_smes)
-"ctq" = (
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/machinery/power/smes/engineering,
-/turf/open/floor/plasteel/vault{
- dir = 4
- },
-/area/engine/engine_smes)
-"ctr" = (
+"cnn" = (
/obj/structure/cable/yellow{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/open/floor/plasteel/vault{
dir = 8
},
/area/engine/engine_smes)
-"cts" = (
+"cno" = (
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 8;
+ icon_state = "0-8"
},
/obj/machinery/power/smes/engineering,
/turf/open/floor/plasteel/vault{
- dir = 1
+ dir = 4
},
/area/engine/engine_smes)
-"ctt" = (
+"cnp" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 8;
+ icon_state = "1-8"
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/camera{
c_tag = "SMES Room";
- dir = 8;
- network = list("SS13");
- pixel_x = 0;
- pixel_y = 0
+ dir = 8;
+ network = list("SS13");
+ pixel_x = 0;
+ pixel_y = 0
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
/turf/open/floor/plasteel/black,
/area/engine/engine_smes)
-"ctu" = (
+"cnq" = (
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/machinery/power/smes/engineering,
+/turf/open/floor/plasteel/vault{
+ dir = 1
+ },
+/area/engine/engine_smes)
+"cnr" = (
/obj/machinery/door/window/southleft{
base_state = "left";
- dir = 2;
- icon_state = "left";
- name = "Engineering Delivery";
- req_access_txt = "10"
+ dir = 2;
+ icon_state = "left";
+ name = "Engineering Delivery";
+ req_access_txt = "10"
},
/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel,
/area/engine/engineering)
-"ctv" = (
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/airlock/maintenance{
- name = "Engineering Maintenance";
- req_access_txt = "10"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"ctw" = (
+"cns" = (
+/obj/structure/closet/syndicate/nuclear,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"cnt" = (
/obj/machinery/camera{
c_tag = "Engineering West";
- dir = 4;
- network = list("SS13")
+ dir = 4;
+ network = list("SS13")
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/landmark/start{
+ name = "Station Engineer"
},
/turf/open/floor/plasteel/yellow/corner{
dir = 1
},
/area/engine/engineering)
-"ctx" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
+"cnu" = (
+/obj/structure/table,
+/obj/item/device/aicard,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"cnv" = (
+/obj/machinery/holopad,
+/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel,
/area/engine/engineering)
-"cty" = (
+"cnw" = (
/obj/structure/cable/yellow{
d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d2 = 4;
+ icon_state = "2-4"
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"ctz" = (
-/obj/machinery/computer/security/telescreen{
- desc = "Used for watching the singularity chamber.";
- dir = 1;
- layer = 4;
- name = "Singularity Engine Telescreen";
- network = list("Singularity");
- pixel_x = 0;
- pixel_y = -30
- },
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+"cnx" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"ctA" = (
-/obj/structure/cable/yellow{
+/obj/structure/cable{
d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
},
-/turf/open/floor/plasteel,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/turf/open/floor/engine,
/area/engine/engineering)
-"ctB" = (
+"cny" = (
/obj/effect/landmark/start{
name = "Station Engineer"
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"ctC" = (
-/obj/structure/closet/secure_closet/engineering_personal,
-/obj/machinery/airalarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
+"cnz" = (
+/obj/structure/tank_dispenser/oxygen,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/syndicate)
+"cnA" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/open/floor/plasteel/yellow/side{
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cnB" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/area/engine/engineering)
-"ctD" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
-/turf/open/space,
-/area/maintenance/incinerator)
-"ctE" = (
+/turf/closed/wall,
+/area/construction)
+"cnC" = (
/obj/machinery/door/airlock/glass{
autoclose = 0;
- frequency = 1449;
- heat_proof = 1;
- icon_state = "door_locked";
- id_tag = "incinerator_airlock_exterior";
- locked = 1;
- name = "Turbine Exterior Airlock";
- req_access_txt = "32"
+ frequency = 1449;
+ heat_proof = 1;
+ icon_state = "door_locked";
+ id_tag = "incinerator_airlock_exterior";
+ locked = 1;
+ name = "Turbine Exterior Airlock";
+ req_access_txt = "32"
},
/obj/structure/cable/yellow{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/open/floor/engine,
/area/maintenance/incinerator)
-"ctF" = (
+"cnD" = (
/obj/structure/disposalpipe/segment{
dir = 1;
- icon_state = "pipe-c"
+ icon_state = "pipe-c"
},
/turf/closed/wall,
/area/maintenance/asmaint)
-"ctG" = (
+"cnE" = (
+/obj/structure/disposalpipe/junction{
+ dir = 4;
+ icon_state = "pipe-j2"
+ },
+/turf/open/floor/plating,
+/area/maintenance/asmaint)
+"cnF" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 2;
- name = "Waste Out";
- on = 1
+ name = "Waste Out";
+ on = 1
},
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"ctH" = (
-/obj/structure/disposalpipe/junction{
- dir = 4;
- icon_state = "pipe-j2"
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint)
-"ctI" = (
+"cnG" = (
/obj/structure/closet/emcloset,
/obj/structure/disposalpipe/segment{
dir = 8;
- icon_state = "pipe-c"
+ icon_state = "pipe-c"
},
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"ctJ" = (
+"cnH" = (
/obj/structure/disposalpipe/segment,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"ctK" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
},
-/turf/open/floor/plating,
-/area/maintenance/starboardsolar)
-"ctL" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
-/obj/structure/window/reinforced,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/black,
-/area/engine/engine_smes)
-"ctM" = (
-/obj/structure/window/reinforced,
-/obj/structure/cable/yellow{
- d2 = 4;
- icon_state = "0-4"
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"cnI" = (
+/obj/structure/table,
+/obj/item/weapon/c4{
+ pixel_x = 2;
+ pixel_y = -5
},
-/obj/machinery/power/terminal{
- icon_state = "term";
- dir = 1
+/obj/item/weapon/c4{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/weapon/c4{
+ pixel_x = 2;
+ pixel_y = -3
+ },
+/obj/item/weapon/c4{
+ pixel_x = -2;
+ pixel_y = -1
+ },
+/obj/item/weapon/c4{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"cnJ" = (
+/obj/structure/disposalpipe/segment,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"cnK" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboardsolar)
+"cnL" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/obj/structure/window/reinforced,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/black,
/area/engine/engine_smes)
-"ctN" = (
+"cnM" = (
/obj/machinery/door/window{
name = "SMES Chamber";
- req_access_txt = "32"
+ req_access_txt = "32"
},
/obj/structure/cable/yellow{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/cable/yellow{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 4;
+ icon_state = "1-4"
},
/obj/structure/cable/yellow{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 8;
+ icon_state = "1-8"
},
/turf/open/floor/plasteel/black,
/area/engine/engine_smes)
-"ctO" = (
-/obj/machinery/power/terminal{
- icon_state = "term";
- dir = 1
- },
+"cnN" = (
/obj/structure/window/reinforced,
/obj/structure/cable/yellow{
- d2 = 8;
- icon_state = "0-8"
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/obj/machinery/power/terminal{
+ icon_state = "term";
+ dir = 1
},
/turf/open/floor/plasteel/black,
/area/engine/engine_smes)
-"ctP" = (
+"cnO" = (
/obj/structure/window/reinforced,
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 4;
+ icon_state = "1-4"
},
/turf/open/floor/plasteel/black,
/area/engine/engine_smes)
-"ctQ" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+"cnP" = (
+/obj/machinery/power/terminal{
+ icon_state = "term";
+ dir = 1
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+/obj/structure/window/reinforced,
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
},
-/turf/closed/wall/r_wall,
+/turf/open/floor/plasteel/black,
/area/engine/engine_smes)
-"ctR" = (
+"cnQ" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/light{
dir = 1
@@ -56858,19 +54380,30 @@
},
/turf/open/floor/plasteel,
/area/engine/engine_smes)
-"ctS" = (
+"cnR" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/engine/engine_smes)
+"cnS" = (
/obj/machinery/door/firedoor,
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/camera{
c_tag = "SMES Access";
- dir = 8;
- network = list("SS13");
- pixel_x = 0;
- pixel_y = 0
+ dir = 8;
+ network = list("SS13");
+ pixel_x = 0;
+ pixel_y = 0
},
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 1
@@ -56880,78 +54413,59 @@
},
/turf/open/floor/plasteel,
/area/engine/engine_smes)
-"ctT" = (
+"cnT" = (
+/obj/structure/sign/bluecross_2,
+/turf/closed/wall/mineral/plastitanium,
+/area/shuttle/syndicate)
+"cnU" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
- pixel_x = -32;
- pixel_y = 0
+ icon_state = "shock";
+ name = "HIGH VOLTAGE";
+ pixel_x = -32;
+ pixel_y = 0
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/loadingarea,
/area/engine/engineering)
-"ctU" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+"cnV" = (
+/obj/structure/bed/roller,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/syndicate)
+"cnW" = (
+/turf/open/space,
+/turf/closed/wall/mineral/plastitanium{
+ dir = 1;
+ icon_state = "diagonalWall3"
},
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"ctV" = (
-/obj/structure/disposalpipe/segment,
+/area/shuttle/syndicate)
+"cnX" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"ctW" = (
-/obj/machinery/firealarm{
- pixel_y = 24
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -5;
+ pixel_y = 30
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"ctX" = (
+"cnY" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/structure/sign/nosmoking_2{
pixel_y = 32
@@ -56961,26 +54475,25 @@
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"ctY" = (
+"cnZ" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/structure/extinguisher_cabinet{
- pixel_x = -5;
- pixel_y = 30
+/obj/machinery/airalarm{
+ pixel_y = 23
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"ctZ" = (
+"coa" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
@@ -56988,317 +54501,291 @@
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"cua" = (
+"cob" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/airalarm{
- pixel_y = 23
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cub" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"cuc" = (
+"coc" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
-/turf/open/floor/plasteel,
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Supermatter Engine Room";
+ req_access_txt = "10"
+ },
+/turf/open/floor/engine,
/area/engine/engineering)
-"cud" = (
+"cod" = (
/obj/structure/table,
-/obj/item/weapon/paper_bin{
- pixel_x = -3;
- pixel_y = 7
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = 3;
+ pixel_y = 3
},
-/obj/item/weapon/pen,
/obj/item/weapon/storage/firstaid/fire,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = -3;
+ pixel_y = -3
},
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cue" = (
-/obj/effect/landmark/start{
- name = "Station Engineer"
+/turf/open/floor/mineral/titanium,
+/area/shuttle/syndicate)
+"coe" = (
+/obj/machinery/door/window{
+ dir = 4;
+ name = "EVA Storage";
+ req_access_txt = "150"
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"cof" = (
+/obj/machinery/door/airlock/external{
+ req_access_txt = "150"
},
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cuf" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 9
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"cog" = (
+/obj/machinery/door/window{
+ base_state = "right";
+ dir = 4;
+ icon_state = "right";
+ name = "EVA Storage";
+ req_access_txt = "150"
},
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cug" = (
-/obj/structure/closet/radiation,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cuh" = (
-/obj/machinery/door/firedoor,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "Singularity";
- name = "radiation shutters"
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"coh" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/shuttle/syndicate)
+"coi" = (
+/obj/structure/rack,
+/obj/item/clothing/suit/space/syndicate/black/red,
+/obj/item/clothing/head/helmet/space/syndicate/black/red,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"coj" = (
+/obj/item/device/radio/intercom{
+ desc = "Talk through this. Evilly";
+ freerange = 1;
+ frequency = 1213;
+ name = "Syndicate Intercom";
+ pixel_x = -32;
+ subspace_transmission = 1;
+ syndie = 1
},
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"cok" = (
+/obj/machinery/recharge_station,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"col" = (
+/obj/machinery/door/window{
+ dir = 4;
+ name = "Infirmary";
+ req_access_txt = "150"
},
-/obj/effect/turf_decal/bot{
- dir = 2
+/turf/open/floor/mineral/titanium,
+/area/shuttle/syndicate)
+"com" = (
+/obj/machinery/door/window{
+ base_state = "right";
+ dir = 4;
+ icon_state = "right";
+ name = "Infirmary";
+ req_access_txt = "150"
},
-/turf/open/floor/plasteel{
- dir = 2
+/turf/open/floor/mineral/titanium,
+/area/shuttle/syndicate)
+"con" = (
+/obj/structure/window/reinforced{
+ dir = 1
},
-/area/engine/engineering)
-"cui" = (
-/obj/structure/closet/radiation,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cuj" = (
/obj/structure/table,
-/obj/item/device/flashlight{
- pixel_y = 5
- },
-/obj/item/clothing/ears/earmuffs{
- pixel_x = -5;
- pixel_y = 6
- },
-/obj/item/weapon/airlock_painter,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cuk" = (
-/obj/machinery/camera{
- c_tag = "Engineering East";
- dir = 8;
- network = list("SS13");
- pixel_x = 0;
- pixel_y = 0
- },
-/obj/structure/closet/wardrobe/engineering_yellow,
-/turf/open/floor/plasteel/yellow/corner{
- dir = 4
+/obj/item/bodypart/r_arm/robot,
+/obj/item/bodypart/l_arm/robot,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/syndicate)
+"coo" = (
+/obj/structure/table,
+/obj/item/weapon/stock_parts/cell/high{
+ pixel_x = -3;
+ pixel_y = 3
},
-/area/engine/engineering)
-"cul" = (
+/obj/item/weapon/stock_parts/cell/high,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"cop" = (
/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 1;
- frequency = 1441;
- id = "inc_in"
- },
-/turf/open/floor/engine/vacuum,
-/area/maintenance/incinerator)
-"cum" = (
-/obj/machinery/igniter{
- icon_state = "igniter0";
- id = "Incinerator";
- luminosity = 2;
- on = 0
- },
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ frequency = 1441;
+ id = "inc_in"
},
/turf/open/floor/engine/vacuum,
/area/maintenance/incinerator)
-"cun" = (
+"coq" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
- external_pressure_bound = 0;
- initialize_directions = 1;
- internal_pressure_bound = 4000;
- on = 0;
- pressure_checks = 2;
- pump_direction = 0
+ external_pressure_bound = 0;
+ initialize_directions = 1;
+ internal_pressure_bound = 4000;
+ on = 0;
+ pressure_checks = 2;
+ pump_direction = 0
},
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
- pixel_y = -32
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 0;
+ pixel_y = -32
},
/turf/open/floor/engine/vacuum,
/area/maintenance/incinerator)
-"cuo" = (
+"cor" = (
+/obj/machinery/igniter{
+ icon_state = "igniter0";
+ id = "Incinerator";
+ luminosity = 2;
+ on = 0
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/engine/vacuum,
+/area/maintenance/incinerator)
+"cos" = (
/obj/machinery/door/poddoor{
id = "auxincineratorvent";
- name = "Auxiliary Incinerator Vent"
+ name = "Auxiliary Incinerator Vent"
},
/turf/open/floor/engine/vacuum,
/area/maintenance/incinerator)
-"cup" = (
+"cot" = (
/obj/structure/grille,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/maintenance/asmaint)
-"cuq" = (
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"cur" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"cus" = (
-/obj/structure/table,
-/obj/item/weapon/weldingtool,
-/obj/structure/disposalpipe/segment{
- dir = 2;
- icon_state = "pipe-c"
- },
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"cut" = (
+"cou" = (
/obj/machinery/space_heater,
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"cuu" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
- },
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 1;
- name = "Solar Maintenance";
- req_access = null;
- req_access_txt = "10; 13"
- },
-/turf/open/floor/plating,
-/area/maintenance/starboardsolar)
-"cuv" = (
+"cov" = (
/obj/machinery/power/port_gen/pacman,
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 8
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/effect/turf_decal/stripes/line{
dir = 9
},
/turf/open/floor/plasteel,
/area/engine/engine_smes)
-"cuw" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/engine_smes)
-"cux" = (
+"cow" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/structure/cable/yellow{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 4;
+ icon_state = "1-4"
},
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel,
/area/engine/engine_smes)
-"cuy" = (
+"cox" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plasteel,
/area/engine/engine_smes)
-"cuz" = (
+"coy" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable/yellow{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
dir = 5
},
/turf/open/floor/plasteel,
/area/engine/engine_smes)
-"cuA" = (
-/obj/machinery/door/airlock/engineering{
- cyclelinkeddir = 4;
- name = "SMES Room";
- req_access_txt = "32"
- },
+"coz" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/structure/cable/yellow{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel{
- name = "floor"
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
},
+/turf/open/floor/plasteel,
/area/engine/engine_smes)
-"cuB" = (
+"coA" = (
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 1
},
/obj/structure/cable/yellow{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
/area/engine/engine_smes)
-"cuC" = (
+"coB" = (
+/obj/machinery/door/airlock/engineering{
+ cyclelinkeddir = 4;
+ name = "SMES Room";
+ req_access_txt = "32"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel{
+ name = "floor"
+ },
+/area/engine/engine_smes)
+"coC" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -57306,401 +54793,411 @@
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/structure/cable/yellow{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel,
/area/engine/engine_smes)
-"cuD" = (
-/obj/machinery/door/airlock/engineering{
- cyclelinkeddir = 8;
- name = "SMES Room";
- req_access_txt = "32"
+"coD" = (
+/obj/structure/table,
+/obj/item/weapon/wrench,
+/obj/item/device/assembly/infra,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"coE" = (
+/obj/structure/table,
+/obj/item/weapon/screwdriver{
+ pixel_y = 9
},
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+/obj/item/device/assembly/voice{
+ pixel_y = 3
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"coF" = (
+/obj/structure/table,
+/obj/item/weapon/weldingtool/largetank{
+ pixel_y = 3
},
-/obj/effect/turf_decal/delivery,
-/turf/open/floor/plasteel{
- name = "floor"
+/obj/item/device/multitool,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"coG" = (
+/obj/structure/table,
+/obj/item/device/assembly/signaler,
+/obj/item/device/assembly/signaler,
+/obj/item/device/assembly/prox_sensor{
+ pixel_x = -8;
+ pixel_y = 4
},
-/area/engine/engine_smes)
-"cuE" = (
+/obj/item/device/assembly/prox_sensor{
+ pixel_x = -8;
+ pixel_y = 4
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"coH" = (
/obj/structure/cable/yellow{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
/turf/open/floor/plasteel,
/area/engine/engineering)
-"cuF" = (
+"coI" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/syndicate)
+"coJ" = (
+/obj/machinery/door/firedoor,
/obj/structure/cable/yellow{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel,
/area/engine/engineering)
-"cuG" = (
-/obj/structure/disposalpipe/segment,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+"coK" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cuH" = (
/obj/structure/cable/yellow{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
},
-/turf/open/floor/plasteel,
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/turf/open/floor/plating,
/area/engine/engineering)
-"cuI" = (
-/obj/machinery/door/firedoor,
+"coL" = (
/obj/structure/cable/yellow{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cuJ" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"cuK" = (
+"coM" = (
/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/turf/open/floor/plasteel,
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/engine,
/area/engine/engineering)
-"cuL" = (
+"coN" = (
+/obj/machinery/door/window/westright{
+ name = "Tool Storage";
+ req_access_txt = "150"
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"coO" = (
/obj/structure/table,
-/obj/item/weapon/book/manual/wiki/engineering_hacking{
- pixel_x = 3;
- pixel_y = 3
+/obj/item/weapon/storage/toolbox/syndicate,
+/obj/item/weapon/crowbar/red,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"coP" = (
+/obj/machinery/door/window{
+ dir = 1;
+ name = "Surgery";
+ req_access_txt = "150"
},
-/obj/item/weapon/book/manual/wiki/engineering_construction,
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
+/turf/open/floor/mineral/titanium,
+/area/shuttle/syndicate)
+"coQ" = (
+/obj/structure/table,
+/obj/structure/window/reinforced{
+ dir = 8
},
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cuM" = (
-/obj/machinery/holopad,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = 3;
+ pixel_y = 3
},
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cuN" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+/obj/item/weapon/storage/firstaid/brute,
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = -3;
+ pixel_y = -3
},
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cuO" = (
-/obj/structure/rack{
+/turf/open/floor/mineral/titanium,
+/area/shuttle/syndicate)
+"coR" = (
+/obj/machinery/door/window{
dir = 8;
- layer = 2.9
- },
-/obj/item/clothing/gloves/color/black,
-/obj/item/weapon/extinguisher{
- pixel_x = 8
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 9
+ name = "Tool Storage";
+ req_access_txt = "150"
},
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cuP" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 9
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"coS" = (
+/obj/structure/rack,
+/obj/item/weapon/gun/energy/laser{
+ pixel_x = -3;
+ pixel_y = 3
},
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cuQ" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/item/weapon/gun/energy/laser,
+/obj/item/weapon/gun/energy/laser{
+ pixel_x = 3;
+ pixel_y = -3
},
-/obj/effect/turf_decal/stripes/line{
- dir = 1
+/obj/effect/turf_decal/bot{
+ dir = 2
},
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cuR" = (
-/obj/machinery/camera{
- c_tag = "Engineering Center";
- dir = 2;
- pixel_x = 23
+/turf/open/floor/plasteel{
+ dir = 2
},
-/obj/machinery/light{
- dir = 1
+/area/ai_monitored/security/armory)
+"coT" = (
+/obj/item/pipe{
+ dir = 4;
+ icon_state = "mixer";
+ name = "gas mixer fitting";
+ pipe_type = 14
},
-/obj/effect/turf_decal/stripes/line{
- dir = 1
+/turf/open/floor/engine,
+/area/toxins/misc_lab)
+"coU" = (
+/obj/structure/table,
+/obj/item/weapon/surgicaldrill,
+/obj/item/weapon/circular_saw,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/syndicate)
+"coV" = (
+/obj/structure/sink{
+ dir = 4;
+ icon_state = "sink";
+ pixel_x = 11;
+ pixel_y = 0
},
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cuS" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 5
+/obj/structure/mirror{
+ pixel_x = 30
},
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cuT" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
+/turf/open/floor/mineral/titanium,
+/area/shuttle/syndicate)
+"coW" = (
+/obj/structure/table,
+/obj/item/device/sbeacondrop/bomb{
+ pixel_y = 5
},
-/obj/item/clothing/gloves/color/yellow,
-/obj/item/weapon/storage/belt/utility,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cuU" = (
-/obj/machinery/holopad,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cuV" = (
+/obj/item/device/sbeacondrop/bomb,
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"coX" = (
/obj/structure/table,
-/obj/item/weapon/book/manual/wiki/engineering_guide,
-/obj/item/weapon/book/manual/engineering_particle_accelerator{
- pixel_y = 6
+/obj/item/weapon/grenade/syndieminibomb{
+ pixel_x = 4;
+ pixel_y = 2
},
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cuW" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/item/weapon/grenade/syndieminibomb{
+ pixel_x = -1
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"coY" = (
+/obj/machinery/nuclearbomb/syndicate,
+/obj/machinery/door/window{
+ dir = 1;
+ name = "Secure Storage";
+ req_access_txt = "150"
},
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cuX" = (
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"coZ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 10
},
+/obj/structure/closet/secure_closet/engineering_electrical,
/turf/open/floor/plasteel,
/area/engine/engineering)
-"cuY" = (
+"cpa" = (
/obj/machinery/light{
dir = 4;
- icon_state = "tube1"
+ icon_state = "tube1"
},
/obj/effect/turf_decal/stripes/line{
dir = 5
},
+/obj/structure/closet/secure_closet/engineering_welding,
/turf/open/floor/plasteel,
/area/engine/engineering)
-"cuZ" = (
+"cpb" = (
/obj/structure/closet/emcloset,
/obj/machinery/light/small{
dir = 1
},
/turf/open/floor/plating,
/area/engine/engineering)
-"cva" = (
+"cpc" = (
/obj/structure/shuttle/engine/propulsion/burst{
- dir = 4
+ dir = 8
},
/turf/closed/wall/mineral/titanium,
/area/shuttle/pod_4)
-"cvb" = (
+"cpd" = (
/turf/closed/wall/mineral/titanium,
/area/shuttle/pod_4)
-"cvc" = (
-/obj/machinery/power/compressor{
- comp_id = "incineratorturbine";
- dir = 1;
- luminosity = 2
+"cpe" = (
+/obj/docking_port/stationary/random{
+ dir = 8;
+ id = "pod_asteroid2";
+ name = "asteroid"
},
-/obj/structure/cable/yellow,
-/obj/structure/cable/yellow{
- d2 = 2;
- icon_state = "0-2"
+/turf/open/space,
+/area/space)
+"cpf" = (
+/obj/machinery/telecomms/allinone{
+ intercept = 1
},
-/obj/machinery/camera{
- c_tag = "Turbine Chamber";
- dir = 4;
- network = list("Turbine")
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"cpg" = (
+/obj/item/weapon/grenade/barrier{
+ pixel_x = 4
},
-/turf/open/floor/engine/vacuum,
-/area/maintenance/incinerator)
-"cvd" = (
+/obj/item/weapon/grenade/barrier,
+/obj/item/weapon/grenade/barrier{
+ pixel_x = -4
+ },
+/obj/structure/table,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/ai_monitored/security/armory)
+"cph" = (
/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/obj/machinery/atmospherics/pipe/simple/green/visible,
/turf/open/space,
-/area/maintenance/asmaint)
-"cve" = (
+/area/space/nearstation)
+"cpi" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2";
- pixel_y = 0
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
/obj/structure/lattice/catwalk,
/turf/open/space,
/area/solar/starboard)
-"cvf" = (
+"cpj" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
- on = 1
+ on = 1
},
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
/area/engine/engine_smes)
-"cvg" = (
-/turf/open/floor/plasteel,
-/area/engine/engine_smes)
-"cvh" = (
+"cpk" = (
/obj/effect/turf_decal/stripes/corner{
dir = 2
},
/turf/open/floor/plasteel,
/area/engine/engine_smes)
-"cvi" = (
-/obj/machinery/light,
-/obj/effect/turf_decal/stripes/line,
+"cpl" = (
/turf/open/floor/plasteel,
/area/engine/engine_smes)
-"cvj" = (
+"cpm" = (
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
+ icon_state = "alarm0";
+ pixel_y = -22
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
/obj/effect/turf_decal/stripes/line{
dir = 6
},
/turf/open/floor/plasteel,
/area/engine/engine_smes)
-"cvk" = (
+"cpn" = (
+/obj/machinery/light,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/engine/engine_smes)
+"cpo" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
- on = 1
+ on = 1
},
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plasteel,
/area/engine/engine_smes)
-"cvl" = (
+"cpp" = (
/obj/machinery/door/firedoor,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
/obj/machinery/airalarm{
dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
+ icon_state = "alarm0";
+ pixel_y = -22
},
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel,
/area/engine/engine_smes)
-"cvm" = (
+"cpq" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE";
- pixel_x = -32;
- pixel_y = 0
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cvn" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cvo" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ icon_state = "shock";
+ name = "HIGH VOLTAGE";
+ pixel_x = -32;
+ pixel_y = 0
},
-/obj/structure/disposalpipe/segment,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel,
/area/engine/engineering)
-"cvp" = (
+"cpr" = (
+/obj/structure/table,
+/obj/item/weapon/cautery,
+/obj/item/weapon/scalpel,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/syndicate)
+"cps" = (
/obj/structure/table,
/obj/item/stack/sheet/glass{
amount = 50
@@ -57713,7 +55210,7 @@
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"cvq" = (
+"cpt" = (
/obj/structure/table,
/obj/item/clothing/gloves/color/yellow,
/obj/item/weapon/storage/toolbox/electrical{
@@ -57721,301 +55218,240 @@
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"cvr" = (
-/obj/effect/landmark/start{
- name = "Station Engineer"
- },
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cvs" = (
-/obj/structure/cable/yellow{
+"cpu" = (
+/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
},
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- on = 1
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Supermatter Engine Room";
+ req_access_txt = "10"
},
-/turf/open/floor/plasteel,
+/turf/open/floor/engine,
/area/engine/engineering)
-"cvt" = (
-/obj/structure/cable/yellow{
+"cpv" = (
+/obj/structure/cable{
d1 = 2;
- d2 = 4;
- icon_state = "2-4"
- },
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
},
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cvu" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/door/firedoor,
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "Singularity";
- name = "radiation shutters"
- },
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/effect/turf_decal/bot{
- dir = 2
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
},
-/turf/open/floor/plasteel{
- dir = 2
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
},
+/turf/open/floor/engine,
/area/engine/engineering)
-"cvv" = (
-/obj/structure/cable/yellow{
+"cpw" = (
+/obj/structure/table,
+/obj/item/weapon/retractor,
+/obj/item/weapon/hemostat,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/syndicate)
+"cpx" = (
+/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 8
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
},
-/turf/open/floor/plating,
+/turf/open/floor/engine,
/area/engine/engineering)
-"cvw" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+"cpy" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
},
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
},
-/turf/open/floor/plating,
+/turf/open/floor/engine,
/area/engine/engineering)
-"cvx" = (
+"cpz" = (
/obj/structure/particle_accelerator/end_cap,
/turf/open/floor/plating,
/area/engine/engineering)
-"cvy" = (
-/obj/structure/cable/yellow{
+"cpA" = (
+/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cvz" = (
+/obj/structure/chair/office/dark{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/security/armory)
+"cpB" = (
/obj/structure/cable/yellow{
d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ d2 = 8;
+ icon_state = "4-8"
},
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plating,
/area/engine/engineering)
-"cvA" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cvB" = (
-/obj/effect/landmark/start{
- name = "Station Engineer"
- },
+"cpC" = (
/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/obj/effect/landmark/event_spawn,
/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cvC" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
+/area/bridge)
+"cpD" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/turf/open/floor/plasteel,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf/open/floor/engine,
/area/engine/engineering)
-"cvD" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
+"cpE" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"cvE" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 4;
- name = "Escape Pod Four";
- req_access = null;
- req_access_txt = "0"
+"cpF" = (
+/obj/structure/table/optable,
+/obj/item/weapon/surgical_drapes,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/syndicate)
+"cpG" = (
+/obj/structure/table/optable,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/turf/open/floor/plasteel/white,
+/area/medical/sleeper)
+"cpH" = (
+/obj/structure/shuttle/engine/heater,
+/obj/structure/window/reinforced{
+ dir = 1
},
/turf/open/floor/plating,
-/area/engine/engineering)
-"cvF" = (
+/area/shuttle/syndicate)
+"cpI" = (
/obj/machinery/door/airlock/external{
- cyclelinkeddir = 8;
- name = "Escape Pod Four";
- req_access = null;
- req_access_txt = "0";
- shuttledocked = 1
+ cyclelinkeddir = 4;
+ name = "Escape Pod Four";
+ req_access = null;
+ req_access_txt = "0"
},
/turf/open/floor/plating,
/area/engine/engineering)
-"cvG" = (
+"cpJ" = (
/obj/machinery/door/airlock/titanium{
name = "Escape Pod Airlock"
},
/obj/docking_port/mobile/pod{
dir = 4;
- id = "pod4";
- name = "escape pod 4";
- port_angle = 180;
- preferred_direction = 4
- },
-/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/pod_4)
-"cvH" = (
-/obj/item/device/radio/intercom{
- pixel_y = 25
- },
-/obj/item/weapon/storage/pod{
- pixel_x = 6;
- pixel_y = -32
- },
-/obj/structure/chair{
- dir = 4
+ id = "pod4";
+ name = "escape pod 4";
+ port_angle = 180;
+ preferred_direction = 4
},
/turf/open/floor/mineral/titanium/blue,
/area/shuttle/pod_4)
-"cvI" = (
+"cpK" = (
/obj/machinery/computer/shuttle/pod{
+ pixel_x = 0;
pixel_y = -32;
- possible_destinations = "pod_asteroid4";
- shuttleId = "pod4"
+ possible_destinations = "pod_asteroid2";
+ shuttleId = "pod2"
},
/obj/structure/chair{
- dir = 4
+ dir = 8
},
/obj/machinery/status_display{
density = 0;
- layer = 3;
- pixel_x = 0;
- pixel_y = 32
+ layer = 3;
+ pixel_x = 0;
+ pixel_y = 32
},
/turf/open/floor/mineral/titanium/blue,
-/area/shuttle/pod_4)
-"cvJ" = (
-/obj/structure/grille,
-/obj/structure/window/shuttle,
-/turf/open/floor/plating,
-/area/shuttle/pod_4)
-"cvK" = (
-/obj/docking_port/stationary/random{
- dir = 4;
- id = "pod_asteroid4";
- name = "asteroid"
+/area/shuttle/pod_2)
+"cpL" = (
+/obj/item/weapon/storage/pod{
+ pixel_x = 6;
+ pixel_y = -28
},
-/turf/open/space,
-/area/space)
-"cvL" = (
+/obj/item/device/radio/intercom{
+ pixel_x = 0;
+ pixel_y = 25
+ },
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/pod_2)
+"cpM" = (
+/obj/structure/grille,
+/obj/structure/window/shuttle,
+/turf/open/floor/plating,
+/area/shuttle/pod_4)
+"cpN" = (
/obj/machinery/power/turbine{
luminosity = 2
},
/obj/structure/cable/yellow,
/turf/open/floor/engine/vacuum,
/area/maintenance/incinerator)
-"cvM" = (
-/obj/item/weapon/wrench,
-/obj/structure/lattice/catwalk,
+"cpO" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 2;
+ name = "Incinerator Output Pump";
+ on = 1
+ },
+/turf/open/space,
+/area/maintenance/incinerator)
+"cpP" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
/turf/open/space,
/area/space/nearstation)
-"cvN" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/on{
- dir = 1
- },
-/turf/open/floor/plating/airless,
-/area/maintenance/asmaint)
-"cvO" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/table_frame,
-/obj/item/weapon/wirerod,
-/obj/effect/spawner/lootdrop/maintenance,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"cvP" = (
-/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"cvQ" = (
-/obj/structure/disposaloutlet,
-/obj/structure/disposalpipe/trunk{
- dir = 1
- },
-/turf/open/floor/plating/airless,
-/area/space)
-"cvR" = (
+"cpQ" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/turf/open/space,
+/area/maintenance/incinerator)
+"cpR" = (
/obj/machinery/door/airlock{
name = "Observatory Access"
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"cvS" = (
+"cpS" = (
/obj/structure/cable,
/obj/machinery/power/apc{
dir = 2;
- name = "SMES room APC";
- pixel_y = -24
+ name = "SMES room APC";
+ pixel_y = -24
},
/obj/effect/turf_decal/stripes/line{
dir = 10
},
/turf/open/floor/plasteel,
/area/engine/engine_smes)
-"cvT" = (
-/obj/structure/chair/office/light{
- dir = 4
- },
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
- },
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plasteel,
-/area/engine/engine_smes)
-"cvU" = (
+"cpT" = (
/obj/structure/table,
/obj/item/device/radio/intercom{
name = "Station Intercom (General)";
- pixel_y = -35
+ pixel_y = -35
},
/obj/item/weapon/stock_parts/cell/high/plus,
/obj/effect/turf_decal/stripes/line{
@@ -58023,294 +55459,292 @@
},
/turf/open/floor/plasteel,
/area/engine/engine_smes)
-"cvV" = (
+"cpU" = (
+/obj/structure/chair/office/light{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
+/area/engine/engine_smes)
+"cpV" = (
/obj/structure/table,
/obj/machinery/camera{
c_tag = "Engineering Storage";
- dir = 4;
- network = list("SS13")
+ dir = 4;
+ network = list("SS13")
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"cvW" = (
+"cpW" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cpX" = (
/obj/structure/table,
/obj/item/stack/rods{
amount = 50
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"cvX" = (
+"cpY" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ on = 1
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/bar)
+"cpZ" = (
/obj/structure/table,
/obj/item/weapon/storage/toolbox/mechanical{
pixel_y = 5
},
/obj/item/device/flashlight{
pixel_x = 1;
- pixel_y = 5
+ pixel_y = 5
},
/obj/item/device/flashlight{
pixel_x = 1;
- pixel_y = 5
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 2
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cvY" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'RADIOACTIVE AREA'";
- icon_state = "radiation";
- name = "RADIOACTIVE AREA";
- pixel_x = 0;
- pixel_y = -32
- },
-/obj/machinery/light,
-/obj/effect/turf_decal/stripes/line{
- dir = 2
+ pixel_y = 5
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"cvZ" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 2
+"cqa" = (
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
},
-/turf/open/floor/plasteel,
+/turf/open/floor/plating,
/area/engine/engineering)
-"cwa" = (
-/obj/item/clothing/glasses/meson,
-/obj/structure/cable/yellow{
+"cqb" = (
+/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cqc" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/effect/turf_decal/stripes/line{
- dir = 2
+ dir = 8
},
-/turf/open/floor/plasteel,
+/turf/open/floor/engine,
/area/engine/engineering)
-"cwb" = (
-/obj/structure/chair/stool,
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 2
+"cqd" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
},
-/turf/open/floor/plasteel,
+/obj/machinery/meter,
+/turf/open/floor/engine,
/area/engine/engineering)
-"cwc" = (
-/obj/machinery/button/door{
- id = "Singularity";
- name = "Shutters Control";
- pixel_x = 25;
- pixel_y = 0;
- req_access_txt = "11"
+"cqe" = (
+/obj/effect/turf_decal/stripes/corner,
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ icon_state = "intact";
+ dir = 6
},
/obj/structure/cable/yellow{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/effect/turf_decal/stripes/line{
- dir = 2
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cqf" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
},
-/turf/open/floor/plasteel,
+/obj/machinery/light,
+/turf/open/floor/engine,
/area/engine/engineering)
-"cwd" = (
-/obj/machinery/button/door{
- id = "Singularity";
- name = "Shutters Control";
- pixel_x = -25;
- pixel_y = 0;
- req_access_txt = "11"
+"cqg" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "Gas to Filter";
+ on = 1
},
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cqh" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 1
},
-/obj/effect/turf_decal/stripes/line{
- dir = 8
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_x = 0;
+ pixel_y = -26
},
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cwe" = (
-/obj/machinery/particle_accelerator/control_box,
-/obj/structure/cable/yellow,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cwf" = (
-/obj/structure/particle_accelerator/fuel_chamber,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cwg" = (
-/obj/effect/landmark/start{
- name = "Station Engineer"
+/obj/machinery/camera{
+ c_tag = "Engineering Supermatter North";
+ dir = 1;
+ pixel_x = 23
},
-/turf/open/floor/plating,
+/turf/open/floor/engine,
/area/engine/engineering)
-"cwh" = (
-/obj/machinery/button/door{
- id = "Singularity";
- name = "Shutters Control";
- pixel_x = 25;
- pixel_y = 0;
- req_access_txt = "11"
- },
-/obj/effect/turf_decal/stripes/line{
+"cqi" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/pipe/simple/general/visible{
dir = 4
},
-/turf/open/floor/plating,
+/obj/machinery/light,
+/obj/machinery/meter,
+/turf/open/floor/engine,
/area/engine/engineering)
-"cwi" = (
-/obj/machinery/button/door{
- id = "Singularity";
- name = "Shutters Control";
- pixel_x = -25;
- pixel_y = 0;
- req_access_txt = "11"
+"cqj" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 1
},
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/machinery/button/door{
+ id = "engsm";
+ name = "Radiation Shutters Control";
+ pixel_x = 0;
+ pixel_y = -24;
+ req_access_txt = "24"
},
-/obj/effect/turf_decal/stripes/line{
- dir = 2
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cqk" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 1
},
-/turf/open/floor/plasteel,
+/turf/open/floor/engine,
/area/engine/engineering)
-"cwj" = (
+"cql" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
/obj/structure/cable/yellow{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/effect/turf_decal/stripes/line{
- dir = 2
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 1
},
-/turf/open/floor/plasteel,
+/turf/open/floor/engine,
/area/engine/engineering)
-"cwk" = (
-/obj/structure/rack{
- dir = 8;
- layer = 2.9
- },
-/obj/item/clothing/mask/gas{
- pixel_x = 3;
- pixel_y = 3
- },
-/obj/item/clothing/mask/gas,
-/obj/item/clothing/mask/gas{
- pixel_x = -3;
- pixel_y = -3
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 2
+"cqm" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
},
+/obj/machinery/meter,
/turf/open/floor/plasteel,
/area/engine/engineering)
-"cwl" = (
-/obj/structure/closet/firecloset,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cwm" = (
+"cqn" = (
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cqo" = (
/obj/structure/sign/pods{
pixel_x = 32;
- pixel_y = 0
+ pixel_y = 0
},
/obj/effect/turf_decal/stripes/line{
dir = 6
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"cwn" = (
+"cqp" = (
/obj/machinery/camera{
c_tag = "Engineering Escape Pod";
- dir = 4;
- network = list("SS13")
+ dir = 4;
+ network = list("SS13")
},
/turf/open/floor/plating,
/area/engine/engineering)
-"cwo" = (
-/obj/effect/landmark{
- name = "carpspawn"
+"cqq" = (
+/obj/machinery/door/airlock/titanium{
+ name = "Escape Pod Airlock"
},
-/turf/open/space,
-/area/space/nearstation)
-"cwp" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/on{
+/obj/docking_port/mobile/pod{
+ dir = 8;
+ id = "pod2";
+ name = "escape pod 2";
+ port_angle = 180
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/pod_2)
+"cqr" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/obj/effect/turf_decal/stripes/corner{
dir = 1
},
-/turf/open/floor/plating/airless,
-/area/maintenance/incinerator)
-"cwq" = (
+/turf/open/floor/plasteel,
+/area/hallway/secondary/entry)
+"cqs" = (
/obj/structure/sign/fire{
pixel_x = 0;
- pixel_y = 0
+ pixel_y = 0
},
/turf/closed/wall/r_wall,
/area/maintenance/incinerator)
-"cwr" = (
+"cqt" = (
/obj/machinery/door/poddoor{
id = "turbinevent";
- name = "Turbine Vent"
+ name = "Turbine Vent"
},
/turf/open/floor/engine/vacuum,
/area/maintenance/incinerator)
-"cws" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/light/small{
- dir = 4
+"cqu" = (
+/obj/machinery/door/airlock/external{
+ name = "External Access";
+ req_access = null;
+ req_access_txt = "13"
},
/turf/open/floor/plating,
/area/maintenance/asmaint2)
-"cwt" = (
+"cqv" = (
/obj/effect/decal/cleanable/cobweb/cobweb2,
/turf/open/floor/plating,
/area/maintenance/aft)
-"cwu" = (
+"cqw" = (
/obj/structure/table,
/obj/item/stack/sheet/plasteel{
amount = 10
},
/obj/machinery/light{
icon_state = "tube1";
- dir = 8
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cwv" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment{
- dir = 1;
- icon_state = "pipe-c"
- },
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- external_pressure_bound = 101.325;
- on = 1;
- pressure_checks = 1
+ dir = 8
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"cww" = (
+"cqx" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"cwx" = (
+"cqy" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cqz" = (
/obj/machinery/light{
dir = 4;
- icon_state = "tube1"
+ icon_state = "tube1"
},
/obj/machinery/disposal/bin,
/obj/structure/disposalpipe/trunk{
@@ -58318,117 +55752,118 @@
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"cwy" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
+"cqA" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 2;
- name = "Engineering External Access";
- req_access = null;
- req_access_txt = "10;13"
- },
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cwz" = (
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "Singularity";
- name = "radiation shutters"
+ name = "Engineering External Access";
+ req_access = null;
+ req_access_txt = "10;13"
},
/turf/open/floor/plating,
/area/engine/engineering)
-"cwA" = (
-/obj/machinery/door/poddoor/shutters/preopen{
- id = "Singularity";
- name = "radiation shutters"
+"cqB" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/general/visible,
/obj/structure/cable/yellow{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/open/floor/plating,
+/turf/open/floor/engine,
/area/engine/engineering)
-"cwB" = (
-/obj/item/stack/cable_coil{
- pixel_x = 3;
- pixel_y = -7
- },
-/obj/item/stack/cable_coil{
- pixel_x = 3;
- pixel_y = -7
- },
-/obj/item/weapon/crowbar,
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
+"cqC" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/stripes/line{
- dir = 8
+ dir = 4
},
-/turf/open/floor/plating,
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/open/floor/engine,
/area/engine/engineering)
-"cwC" = (
-/obj/structure/chair/stool,
-/turf/open/floor/plating,
+"cqD" = (
+/obj/structure/sign/radiation,
+/turf/closed/wall/r_wall,
/area/engine/engineering)
-"cwD" = (
-/obj/structure/particle_accelerator/power_box,
-/turf/open/floor/plating,
+"cqE" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/door/airlock/glass_engineering{
+ heat_proof = 1;
+ name = "Supermatter Chamber";
+ req_access_txt = "10"
+ },
+/turf/open/floor/engine,
/area/engine/engineering)
-"cwE" = (
-/obj/item/weapon/screwdriver,
-/turf/open/floor/plating,
+"cqF" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/turf/closed/wall/r_wall,
/area/engine/engineering)
-"cwF" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
+"cqG" = (
+/obj/structure/rack,
+/obj/item/weapon/storage/box/rubbershot{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/item/weapon/storage/box/rubbershot{
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/obj/item/weapon/storage/box/rubbershot,
+/obj/item/weapon/storage/box/rubbershot,
+/obj/item/weapon/storage/box/rubbershot{
+ pixel_x = 3;
+ pixel_y = -3
+ },
+/obj/item/weapon/storage/box/rubbershot{
+ pixel_x = 3;
+ pixel_y = -3
},
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/ai_monitored/security/armory)
+"cqH" = (
+/obj/item/weapon/screwdriver,
/turf/open/floor/plating,
/area/engine/engineering)
-"cwG" = (
-/obj/machinery/door/airlock/external{
- name = "External Access";
- req_access = null;
- req_access_txt = "13"
+"cqI" = (
+/obj/structure/shuttle/engine/propulsion{
+ icon_state = "propulsion_l"
},
/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"cwH" = (
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/closet/emcloset,
-/turf/open/floor/plating,
-/area/maintenance/asmaint2)
-"cwI" = (
+/area/shuttle/syndicate)
+"cqJ" = (
/obj/structure/cable,
/obj/structure/lattice/catwalk,
/turf/open/space,
/area/solar/starboard)
-"cwJ" = (
-/obj/structure/chair,
+"cqK" = (
+/obj/structure/table,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
+ },
/turf/open/floor/plating,
/area/maintenance/aft)
-"cwK" = (
+"cqL" = (
/obj/machinery/light/small{
dir = 4
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"cwL" = (
-/obj/structure/table,
-/obj/item/stack/cable_coil{
- pixel_x = 3;
- pixel_y = -7
+"cqM" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/obj/item/stack/cable_coil,
-/obj/item/weapon/electronics/airlock,
-/obj/item/weapon/electronics/airlock,
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cwM" = (
+/turf/open/floor/plating,
+/area/maintenance/fsmaint2)
+"cqN" = (
/obj/structure/table,
/obj/item/stack/sheet/metal{
amount = 50
@@ -58438,63 +55873,67 @@
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"cwN" = (
+"cqO" = (
+/obj/structure/table,
+/obj/item/stack/cable_coil{
+ pixel_x = 3;
+ pixel_y = -7
+ },
+/obj/item/stack/cable_coil,
+/obj/item/weapon/electronics/airlock,
+/obj/item/weapon/electronics/airlock,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cqP" = (
/obj/structure/table,
/obj/item/weapon/folder/yellow,
/obj/item/clothing/ears/earmuffs{
pixel_x = -3;
- pixel_y = -2
+ pixel_y = -2
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"cwO" = (
-/obj/structure/reagent_dispensers/fueltank,
+"cqQ" = (
+/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plasteel,
/area/engine/engineering)
-"cwP" = (
-/obj/structure/reagent_dispensers/watertank,
+"cqR" = (
+/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plasteel,
/area/engine/engineering)
-"cwQ" = (
+"cqS" = (
/obj/machinery/light/small{
dir = 8
},
/obj/structure/closet/emcloset,
/turf/open/floor/plating,
/area/engine/engineering)
-"cwR" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
+"cqT" = (
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 32
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 32
},
/turf/open/floor/plating,
/area/engine/engineering)
-"cwS" = (
-/obj/structure/reagent_dispensers/fueltank,
-/obj/effect/turf_decal/stripes/line{
+"cqU" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
dir = 1
},
-/turf/open/floor/plating,
+/obj/effect/turf_decal/bot,
+/obj/machinery/portable_atmospherics/canister,
+/turf/open/floor/plasteel/black,
/area/engine/engineering)
-"cwT" = (
-/obj/machinery/power/rad_collector{
- anchored = 1
- },
-/obj/structure/cable/yellow,
+"cqV" = (
+/obj/structure/reagent_dispensers/fueltank,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plating,
/area/engine/engineering)
-"cwU" = (
+"cqW" = (
/obj/machinery/power/rad_collector{
anchored = 1
},
@@ -58505,267 +55944,238 @@
},
/turf/open/floor/plating,
/area/engine/engineering)
-"cwV" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cwW" = (
+"cqX" = (
/obj/structure/cable/yellow{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plating,
/area/engine/engineering)
-"cwX" = (
-/obj/structure/particle_accelerator/particle_emitter/left,
+"cqY" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/engine/engineering)
-"cwY" = (
-/obj/structure/particle_accelerator/particle_emitter/center,
-/turf/open/floor/plating,
+"cqZ" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/engine,
/area/engine/engineering)
-"cwZ" = (
-/obj/structure/particle_accelerator/particle_emitter/right,
-/turf/open/floor/plating,
+"cra" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1;
+ name = "Gas to Filter"
+ },
+/obj/machinery/airalarm{
+ dir = 4;
+ locked = 0;
+ pixel_x = -23;
+ pixel_y = 0;
+ req_access = null;
+ req_one_access_txt = "24;10"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/engine,
/area/engine/engineering)
-"cxa" = (
-/obj/structure/reagent_dispensers/watertank,
+"crb" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 2;
+ icon_state = "pump_map";
+ name = "Gas to Chamber"
+ },
+/obj/effect/decal/cleanable/dirt,
+/turf/open/floor/engine,
+/area/engine/engineering)
+"crc" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/effect/turf_decal/stripes/line{
- dir = 1
+ dir = 4
},
-/turf/open/floor/plating,
+/turf/open/floor/engine,
/area/engine/engineering)
-"cxb" = (
+"crd" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Supermatter Engine Room";
+ req_access_txt = "10"
+ },
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"cre" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = -32
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = -32
},
/turf/open/floor/plating,
/area/engine/engineering)
-"cxc" = (
-/obj/machinery/light/small{
- dir = 4
+"crf" = (
+/obj/structure/shuttle/engine/propulsion{
+ icon_state = "propulsion_r"
},
-/obj/structure/closet/emcloset,
/turf/open/floor/plating,
-/area/engine/engineering)
-"cxd" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cxe" = (
-/obj/structure/sign/securearea,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/engine/engineering)
-"cxf" = (
-/obj/machinery/camera{
- c_tag = "Engineering MiniSat Access";
- dir = 4;
- network = list("SS13")
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cxg" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 8;
- on = 1
- },
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cxh" = (
+/area/shuttle/syndicate)
+"crg" = (
+/obj/structure/shuttle/engine/propulsion,
+/turf/open/floor/plating,
+/area/shuttle/syndicate)
+"crh" = (
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plating,
/area/engine/engineering)
-"cxi" = (
+"cri" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"crj" = (
/obj/structure/cable{
icon_state = "0-2";
- d2 = 2
+ d2 = 2
},
/obj/machinery/power/solar{
id = "starboardsolar";
- name = "Starboard Solar Array"
+ name = "Starboard Solar Array"
},
/turf/open/floor/plasteel/airless/solarpanel,
/area/solar/starboard)
-"cxj" = (
+"crk" = (
/obj/structure/lattice/catwalk,
/turf/open/space,
/area/solar/starboard)
-"cxk" = (
+"crl" = (
/obj/structure/table,
/obj/item/device/taperecorder{
pixel_y = 0
},
/turf/open/floor/plating,
/area/maintenance/aft)
-"cxl" = (
+"crm" = (
/obj/structure/table,
/obj/item/weapon/storage/box/matches,
/obj/item/weapon/storage/fancy/cigarettes,
/turf/open/floor/plating,
/area/maintenance/aft)
-"cxm" = (
+"crn" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating/airless,
/area/engine/engineering)
-"cxn" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'HIGH VOLTAGE'";
- icon_state = "shock";
- name = "HIGH VOLTAGE"
- },
-/turf/closed/wall/r_wall,
-/area/engine/engineering)
-"cxo" = (
+"cro" = (
/obj/structure/grille,
/obj/structure/cable{
icon_state = "0-4";
- d2 = 4
+ d2 = 4
},
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/engine/engineering)
-"cxp" = (
-/obj/structure/grille,
-/obj/structure/cable,
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+"crp" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'HIGH VOLTAGE'";
+ icon_state = "shock";
+ name = "HIGH VOLTAGE"
},
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
+/turf/closed/wall/r_wall,
/area/engine/engineering)
-"cxq" = (
+"crq" = (
/obj/structure/cable{
d2 = 8;
- icon_state = "0-8"
+ icon_state = "0-8"
},
/obj/structure/grille,
/obj/machinery/door/poddoor/preopen{
id = "Secure Gate";
- name = "brig shutters"
+ name = "brig shutters"
},
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/engine/engineering)
-"cxr" = (
+"crr" = (
+/obj/structure/grille,
+/obj/structure/cable,
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 8;
+ icon_state = "0-8"
},
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 1;
- name = "Engineering External Access";
- req_access = null;
- req_access_txt = "10;13"
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
},
-/obj/structure/fans/tiny,
+/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/engine/engineering)
-"cxs" = (
-/obj/structure/cable/yellow{
- icon_state = "1-4";
- d1 = 1;
- d2 = 4
- },
-/obj/effect/turf_decal/stripes/line{
- dir = 10
+"crs" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ icon_state = "intact";
+ dir = 6
},
-/turf/open/floor/plating,
+/turf/closed/wall/r_wall,
/area/engine/engineering)
-"cxt" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+"crt" = (
+/obj/machinery/door/airlock/glass_engineering{
+ heat_proof = 1;
+ name = "Supermatter Chamber";
+ req_access_txt = "10"
},
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plating,
+/turf/open/floor/engine,
/area/engine/engineering)
-"cxu" = (
-/obj/item/weapon/wirecutters,
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+"cru" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 5
},
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cxv" = (
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plating,
+/turf/closed/wall/r_wall,
/area/engine/engineering)
-"cxw" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 6
+"crv" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 10
},
-/turf/open/floor/plating,
+/turf/closed/wall/r_wall,
/area/engine/engineering)
-"cxx" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+"crw" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 5
},
/turf/open/floor/plasteel,
/area/engine/engineering)
-"cxy" = (
-/obj/machinery/light,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+"crx" = (
+/obj/structure/grille,
+/obj/structure/window/shuttle,
+/turf/open/floor/plating,
+/area/shuttle/escape)
+"cry" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cxz" = (
-/obj/machinery/door/airlock/command{
- name = "MiniSat Access";
- req_access_txt = "65"
- },
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+/obj/effect/turf_decal/stripes/corner{
+ dir = 2
},
/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cxA" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+/area/hallway/secondary/entry)
+"crz" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
+/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cxB" = (
+/area/hallway/secondary/entry)
+"crA" = (
/obj/structure/transit_tube_pod,
/obj/structure/transit_tube/station/reverse/flipped{
dir = 4
@@ -58775,512 +56185,560 @@
},
/turf/open/floor/plating,
/area/engine/engineering)
-"cxC" = (
-/obj/structure/lattice,
-/obj/machinery/atmospherics/pipe/simple/yellow/visible,
-/turf/open/space,
-/area/space)
-"cxD" = (
+"crB" = (
/obj/structure/cable{
d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d2 = 4;
+ icon_state = "2-4"
},
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 4;
+ icon_state = "1-4"
},
/obj/structure/lattice/catwalk,
/turf/open/space,
/area/solar/starboard)
-"cxE" = (
+"crC" = (
/obj/structure/cable{
d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d2 = 4;
+ icon_state = "2-4"
},
/obj/structure/cable{
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 4;
+ icon_state = "1-4"
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/starboard)
-"cxF" = (
-/obj/structure/cable{
d2 = 8;
- icon_state = "0-8"
+ icon_state = "4-8";
+ pixel_x = 0
},
/obj/structure/lattice/catwalk,
/turf/open/space,
/area/solar/starboard)
-"cxG" = (
+"crD" = (
/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+ d2 = 8;
+ icon_state = "0-8"
},
/obj/structure/lattice/catwalk,
/turf/open/space,
/area/solar/starboard)
-"cxH" = (
+"crE" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 8;
+ icon_state = "1-8"
},
/obj/structure/cable{
d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d2 = 8;
+ icon_state = "2-8"
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
/obj/structure/lattice/catwalk,
/turf/open/space,
/area/solar/starboard)
-"cxI" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
+"crF" = (
/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ icon_state = "0-4";
+ d2 = 4
},
/obj/structure/lattice/catwalk,
/turf/open/space,
/area/solar/starboard)
-"cxJ" = (
-/obj/structure/grille,
+"crG" = (
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"cxK" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
},
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"cxL" = (
-/obj/machinery/camera/emp_proof{
- c_tag = "Singularity North-West";
- dir = 2;
- network = list("Singularity")
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/solar/starboard)
+"crH" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 4
},
-/obj/machinery/power/grounding_rod,
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"cxM" = (
-/obj/machinery/power/grounding_rod,
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"cxN" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/turf/open/space,
+/area/space)
+"crI" = (
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 9
},
-/turf/open/floor/plating,
+/turf/closed/wall/r_wall,
/area/engine/engineering)
-"cxO" = (
-/obj/machinery/camera/emp_proof{
- c_tag = "Singularity North East";
- dir = 2;
- network = list("Singularity")
+"crJ" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 4
},
-/obj/machinery/power/grounding_rod,
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"cxP" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/turf/open/space,
+/area/space)
+"crK" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/junction{
+ dir = 8
},
-/turf/open/floor/plating/airless,
+/turf/closed/wall/r_wall,
/area/engine/engineering)
-"cxQ" = (
-/obj/structure/grille,
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+"crL" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ icon_state = "connector_map";
+ dir = 8
},
-/turf/open/floor/plating/airless,
+/turf/open/floor/plasteel/black,
/area/engine/engineering)
-"cxR" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 2;
- name = "Engineering External Access";
- req_access = null;
- req_access_txt = "10;13"
+"crM" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 1
},
-/turf/open/floor/plasteel,
-/area/engine/engineering)
-"cxS" = (
-/obj/structure/closet/emcloset,
-/turf/open/floor/plasteel,
+/turf/open/floor/plasteel/black,
/area/engine/engineering)
-"cxT" = (
+"crN" = (
+/obj/structure/table,
+/obj/item/weapon/storage/firstaid/fire,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape)
+"crO" = (
+/turf/open/floor/mineral/titanium,
+/turf/closed/wall/mineral/titanium/interior,
+/area/shuttle/escape)
+"crP" = (
/obj/machinery/light,
/turf/open/floor/plasteel,
/area/engine/engineering)
-"cxU" = (
+"crQ" = (
+/obj/machinery/computer/emergency_shuttle,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"crR" = (
/obj/structure/transit_tube,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/turf/open/floor/plating,
/area/engine/engineering)
-"cxV" = (
+"crS" = (
/obj/structure/cable,
/obj/machinery/power/solar{
id = "starboardsolar";
- name = "Starboard Solar Array"
+ name = "Starboard Solar Array"
},
/turf/open/floor/plasteel/airless/solarpanel,
/area/solar/starboard)
-"cxW" = (
-/obj/structure/grille,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"cxX" = (
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"cxY" = (
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4";
- tag = ""
- },
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"cxZ" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"cya" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8";
- tag = ""
+"crT" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 4
},
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4";
- tag = "90Curve"
+/turf/open/space,
+/area/space)
+"crU" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 10
},
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"cyb" = (
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/turf/open/space,
+/area/space)
+"crV" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 8
},
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"cyc" = (
-/obj/item/weapon/wrench,
-/turf/open/floor/plating/airless,
+/turf/open/floor/plasteel/black,
/area/engine/engineering)
-"cyd" = (
+"crW" = (
/obj/machinery/light/small{
dir = 8
},
/turf/open/floor/plating,
/area/engine/engineering)
-"cye" = (
+"crX" = (
/obj/structure/closet/emcloset,
/obj/structure/sign/securearea{
desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 32
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 32
},
/turf/open/floor/plating,
/area/engine/engineering)
-"cyf" = (
+"crY" = (
/obj/structure/window/reinforced/fulltile,
/obj/structure/transit_tube,
/turf/open/floor/plating,
/area/engine/engineering)
-"cyg" = (
+"crZ" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 4
+ },
+/obj/structure/lattice,
+/turf/open/space,
+/area/space)
+"csa" = (
/obj/structure/grille,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"csb" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 9
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/turf/open/space,
+/area/space)
+"csc" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,
+/turf/open/space,
+/area/maintenance/asmaint)
+"csd" = (
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"cse" = (
+/obj/machinery/atmospherics/components/unary/thermomachine/freezer{
+ dir = 8
},
-/turf/open/floor/plating/airless,
+/turf/open/floor/plasteel/black,
/area/engine/engineering)
-"cyh" = (
+"csf" = (
/obj/machinery/power/emitter{
anchored = 1;
- dir = 4;
- state = 2
+ dir = 8;
+ state = 2
},
/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+ icon_state = "0-4";
+ d2 = 4
},
/turf/open/floor/plating/airless,
/area/engine/engineering)
-"cyi" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 8
+"csg" = (
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 1;
+ name = "Engineering External Access";
+ req_access = null;
+ req_access_txt = "10;13"
},
-/turf/open/floor/plating/airless,
+/turf/open/floor/plating,
/area/engine/engineering)
-"cyj" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+"csh" = (
+/obj/structure/transit_tube{
+ icon_state = "D-SW"
},
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"cyk" = (
-/obj/machinery/field/generator{
- anchored = 1;
- state = 2
+/turf/open/space,
+/area/space)
+"csi" = (
+/obj/structure/transit_tube/curved/flipped{
+ dir = 1
},
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"cyl" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 4
+/turf/open/space,
+/area/space)
+"csj" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/junction{
+ dir = 8
},
-/turf/open/floor/plating/airless,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall/r_wall,
/area/engine/engineering)
-"cym" = (
-/obj/machinery/power/emitter{
- anchored = 1;
- dir = 8;
- state = 2
+"csk" = (
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"csl" = (
+/obj/structure/transit_tube/curved{
+ dir = 4
},
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
+/turf/open/space,
+/area/space)
+"csm" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/on{
+ dir = 1
},
/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"cyn" = (
-/obj/structure/grille,
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/area/maintenance/asmaint)
+"csn" = (
+/obj/structure/transit_tube/horizontal,
+/turf/open/space,
+/area/space)
+"cso" = (
+/obj/structure/lattice,
+/obj/structure/transit_tube/crossing/horizontal,
+/turf/open/space,
+/area/space)
+"csp" = (
+/obj/structure/transit_tube{
+ icon_state = "E-W-Pass"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+/turf/open/space,
+/area/space)
+"csq" = (
+/obj/machinery/computer/security/telescreen{
+ desc = "Used for watching the turbine vent.";
+ dir = 1;
+ name = "turbine vent monitor";
+ network = list("Turbine");
+ pixel_x = 0;
+ pixel_y = -29
},
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"cyo" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 1;
- name = "Engineering External Access";
- req_access = null;
- req_access_txt = "10;13"
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 4
},
-/turf/open/floor/plating,
-/area/engine/engineering)
-"cyp" = (
-/obj/structure/sign/securearea,
-/turf/closed/wall,
-/area/engine/engineering)
-"cyq" = (
-/obj/structure/transit_tube/curved/flipped{
- dir = 1
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/incinerator)
+"csr" = (
+/obj/machinery/doorButtons/airlock_controller{
+ idExterior = "incinerator_airlock_exterior";
+ idSelf = "incinerator_access_control";
+ idInterior = "incinerator_airlock_interior";
+ name = "Incinerator Access Console";
+ pixel_x = 6;
+ pixel_y = -26;
+ req_access_txt = "12"
+ },
+/obj/machinery/button/ignition{
+ id = "Incinerator";
+ pixel_x = -6;
+ pixel_y = -24
+ },
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 4;
+ initialize_directions = 11
},
+/obj/machinery/meter,
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/incinerator)
+"css" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
/turf/open/space,
/area/space)
-"cyr" = (
+"cst" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/aisat_interior)
-"cys" = (
-/obj/item/device/multitool,
/turf/open/floor/plating/airless,
/area/engine/engineering)
-"cyt" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+"csu" = (
+/obj/structure/closet/firecloset,
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"csv" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 5
},
-/obj/structure/cable/yellow{
- icon_state = "1-4";
- d1 = 1;
- d2 = 4
+/obj/structure/lattice,
+/turf/open/space,
+/area/space)
+"csw" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/yellow/visible,
+/turf/open/space,
+/area/space)
+"csx" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
+/turf/open/space,
+/area/space)
+"csy" = (
+/obj/structure/table,
+/obj/item/weapon/weldingtool,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
},
-/turf/open/floor/plating/airless,
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"csz" = (
+/obj/effect/landmark{
+ name = "carpspawn"
+ },
+/turf/open/space,
/area/space/nearstation)
-"cyu" = (
+"csA" = (
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "engsm";
+ name = "Radiation Chamber Shutters"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
/obj/structure/cable/yellow{
+ d1 = 4;
d2 = 8;
- icon_state = "0-8"
+ icon_state = "4-8";
+ pixel_y = 0
},
-/obj/machinery/power/tesla_coil,
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"cyv" = (
+/turf/open/floor/plating,
+/area/engine/engineering)
+"csB" = (
/obj/item/weapon/wirecutters,
/obj/structure/lattice,
/turf/open/space,
/area/space/nearstation)
-"cyw" = (
-/obj/structure/cable/yellow{
- icon_state = "0-4";
- d2 = 4
+"csC" = (
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"csD" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/turf/open/floor/plating,
+/area/ai_monitored/turret_protected/aisat_interior)
+"csE" = (
+/obj/structure/cable{
+ icon_state = "0-2";
+ d2 = 2
},
-/obj/machinery/power/tesla_coil,
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"cyx" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/solar/starboard)
+"csF" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'RADIOACTIVE AREA'";
+ icon_state = "radiation";
+ name = "RADIOACTIVE AREA";
+ pixel_x = 0;
+ pixel_y = 0
},
-/obj/structure/cable/yellow{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+/turf/closed/wall/r_wall,
+/area/engine/engineering)
+"csG" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
+/obj/structure/grille,
/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"cyy" = (
-/obj/structure/transit_tube/curved{
+/area/engine/engineering)
+"csH" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/engine,
+/area/engine/engineering)
+"csI" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"csJ" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/turf/open/floor/engine,
+/area/engine/engineering)
+"csK" = (
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/grille,
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"csL" = (
+/obj/structure/transit_tube{
+ icon_state = "D-NE"
+ },
/turf/open/space,
/area/space)
-"cyz" = (
-/obj/structure/lattice,
-/obj/structure/transit_tube/crossing/horizontal,
-/turf/open/space,
-/area/space)
-"cyA" = (
-/obj/structure/transit_tube/horizontal,
-/turf/open/space,
-/area/space)
-"cyB" = (
+"csM" = (
/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/simple/yellow/visible,
/obj/structure/transit_tube/crossing/horizontal,
/turf/open/space,
/area/space)
-"cyC" = (
-/obj/structure/window/reinforced/fulltile,
+"csN" = (
/obj/structure/transit_tube/horizontal,
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/aisat_interior)
-"cyD" = (
+"csO" = (
+/obj/structure/window/reinforced/fulltile,
/obj/structure/transit_tube/horizontal,
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/aisat_interior)
-"cyE" = (
-/obj/structure/transit_tube/station/reverse,
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/aisat_interior)
-"cyF" = (
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/aisat_interior)
-"cyG" = (
-/obj/structure/cable{
+"csP" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4";
d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ d2 = 4
},
-/obj/structure/grille,
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"cyH" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/obj/structure/grille,
-/turf/open/floor/plating/airless,
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 4;
+ initialize_directions = 11
+ },
+/turf/open/floor/engine,
/area/engine/engineering)
-"cyI" = (
-/obj/effect/landmark/event_spawn,
-/turf/open/space,
-/area/space/nearstation)
-"cyJ" = (
-/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+"csQ" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
},
-/obj/structure/grille,
-/turf/open/floor/plating/airless,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel/black,
/area/engine/engineering)
-"cyK" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+"csR" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible,
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
},
-/obj/structure/grille,
-/turf/open/floor/plating/airless,
+/turf/open/floor/engine,
/area/engine/engineering)
-"cyL" = (
+"csS" = (
+/obj/item/weapon/weldingtool,
+/turf/open/space,
+/area/space/nearstation)
+"csT" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/landmark/xmastree,
+/turf/open/floor/plasteel/black,
+/area/chapel/main)
+"csU" = (
+/obj/structure/transit_tube/station/reverse,
+/turf/open/floor/plating,
+/area/ai_monitored/turret_protected/aisat_interior)
+"csV" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/aisat_interior)
-"cyM" = (
+"csW" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
on = 1
},
@@ -59289,131 +56747,89 @@
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/aisat_interior)
-"cyN" = (
+"csX" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
+ icon_state = "space";
+ layer = 4;
+ name = "EXTERNAL AIRLOCK";
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/turf/open/floor/plating,
+/area/ai_monitored/turret_protected/aisat_interior)
+"csY" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ icon_state = "0-2";
+ d2 = 2
},
-/obj/structure/grille,
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"cyO" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 9
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
},
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"cyP" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 1
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
},
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"cyQ" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 5
+/obj/structure/cable,
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/solar/starboard)
+"csZ" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
},
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"cyR" = (
-/obj/item/weapon/crowbar,
+/obj/structure/lattice/catwalk,
/turf/open/space,
-/area/space/nearstation)
-"cyS" = (
+/area/solar/starboard)
+"cta" = (
/obj/machinery/door/airlock/external{
cyclelinkeddir = 4;
- name = "MiniSat External Access";
- req_access = null;
- req_access_txt = "65;13"
+ name = "MiniSat External Access";
+ req_access = null;
+ req_access_txt = "65;13"
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/aisat_interior)
-"cyT" = (
-/obj/structure/sign/securearea{
- desc = "A warning sign which reads 'EXTERNAL AIRLOCK'";
- icon_state = "space";
- layer = 4;
- name = "EXTERNAL AIRLOCK";
- pixel_x = 0;
- pixel_y = 32
- },
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/aisat_interior)
-"cyU" = (
-/obj/machinery/door/airlock/external{
- cyclelinkeddir = 8;
- name = "MiniSat External Access";
- req_access = null;
- req_access_txt = "65;13"
- },
+"ctb" = (
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/aisat_interior)
-"cyV" = (
+"ctc" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/aisat_interior)
-"cyW" = (
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
+"ctd" = (
/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/simple/yellow/visible,
/turf/open/space,
-/area/solar/starboard)
-"cyX" = (
-/obj/machinery/light{
- dir = 8
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/grille,
+/area/space)
+"cte" = (
+/obj/item/device/radio/off,
/turf/open/floor/plating/airless,
/area/engine/engineering)
-"cyY" = (
-/obj/machinery/the_singularitygen,
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"cyZ" = (
-/obj/item/weapon/wrench,
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"cza" = (
-/obj/machinery/the_singularitygen/tesla,
+"ctf" = (
/obj/effect/turf_decal/stripes/line{
- dir = 4
+ dir = 2
},
/turf/open/floor/plating/airless,
/area/space/nearstation)
-"czb" = (
-/obj/machinery/light{
- dir = 4;
- icon_state = "tube1"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/structure/grille,
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"czc" = (
-/obj/structure/lattice/catwalk,
-/obj/machinery/atmospherics/pipe/simple/yellow/visible,
-/turf/open/space,
-/area/space)
-"czd" = (
+"ctg" = (
/obj/structure/closet/emcloset,
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/aisat_interior)
-"cze" = (
+"cth" = (
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = -29
+ },
+/obj/machinery/light/small,
+/turf/open/floor/plating,
+/area/ai_monitored/turret_protected/aisat_interior)
+"cti" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/structure/sign/securearea{
@@ -59421,110 +56837,73 @@
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/aisat_interior)
-"czf" = (
-/obj/item/device/radio/intercom{
- name = "Station Intercom (General)";
- pixel_x = 0;
- pixel_y = -29
- },
-/obj/machinery/light/small,
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/aisat_interior)
-"czg" = (
+"ctj" = (
/obj/machinery/camera{
c_tag = "MiniSat Pod Access";
- dir = 1;
- network = list("MiniSat");
- pixel_x = 0;
- pixel_y = 0;
- start_active = 1
+ dir = 1;
+ network = list("MiniSat");
+ pixel_x = 0;
+ pixel_y = 0;
+ start_active = 1
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 2;
- on = 1
+ on = 1
},
/obj/machinery/light/small,
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/aisat_interior)
-"czh" = (
-/obj/item/weapon/weldingtool,
-/turf/open/space,
-/area/space/nearstation)
-"czi" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 10
+"ctk" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 8
+ },
+/turf/closed/wall,
+/area/ai_monitored/turret_protected/aisat_interior)
+"ctl" = (
+/obj/structure/grille,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"czj" = (
+/area/engine/engineering)
+"ctm" = (
/obj/effect/turf_decal/stripes/line{
- dir = 2
+ dir = 10
},
/turf/open/floor/plating/airless,
/area/space/nearstation)
-"czk" = (
-/obj/effect/turf_decal/stripes/line{
- dir = 6
+"ctn" = (
+/obj/structure/grille,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
},
/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"czl" = (
-/turf/closed/wall,
-/area/ai_monitored/turret_protected/aisat_interior)
-"czm" = (
+/area/engine/engineering)
+"cto" = (
/obj/machinery/door/airlock/hatch{
name = "MiniSat Foyer";
- req_one_access_txt = "65"
+ req_one_access_txt = "65"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/aisat_interior)
-"czn" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+"ctp" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/on{
dir = 8
},
-/turf/closed/wall,
+/turf/open/floor/plating/airless,
/area/ai_monitored/turret_protected/aisat_interior)
-"czo" = (
+"ctq" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/closed/wall,
/area/ai_monitored/turret_protected/aisat_interior)
-"czp" = (
-/obj/machinery/atmospherics/components/unary/outlet_injector/on{
- dir = 8
- },
-/turf/open/floor/plating/airless,
-/area/ai_monitored/turret_protected/aisat_interior)
-"czq" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_x = 0
- },
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/starboard)
-"czr" = (
-/obj/structure/cable{
- icon_state = "0-2";
- d2 = 2
- },
-/obj/structure/cable{
- icon_state = "0-4";
- d2 = 4
- },
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
- },
-/obj/structure/cable,
-/obj/structure/lattice/catwalk,
-/turf/open/space,
-/area/solar/starboard)
-"czs" = (
+"ctr" = (
/obj/structure/table,
/obj/machinery/light/small{
dir = 1
@@ -59534,18 +56913,14 @@
},
/obj/item/weapon/phone{
pixel_x = -3;
- pixel_y = 3
+ pixel_y = 3
},
/obj/item/weapon/pen,
/turf/open/floor/plasteel/vault{
dir = 8
},
/area/ai_monitored/turret_protected/aisat_interior)
-"czt" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/aisat_interior)
-"czu" = (
+"cts" = (
/obj/structure/rack{
dir = 1
},
@@ -59566,356 +56941,315 @@
dir = 8
},
/area/ai_monitored/turret_protected/aisat_interior)
-"czv" = (
-/obj/item/device/radio/off,
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"czw" = (
+"ctt" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/aisat_interior)
+"ctu" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/grimy,
+/area/ai_monitored/turret_protected/aisat_interior)
+"ctv" = (
+/turf/closed/wall/r_wall,
+/area/space)
+"ctw" = (
/obj/machinery/airalarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23;
+ pixel_y = 0
},
/obj/machinery/computer/station_alert,
/turf/open/floor/plasteel/vault{
dir = 8
},
/area/ai_monitored/turret_protected/aisat_interior)
-"czx" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
- },
+"ctx" = (
+/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,
/turf/open/floor/plasteel/grimy,
/area/ai_monitored/turret_protected/aisat_interior)
-"czy" = (
+"cty" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/turf/open/floor/plasteel/grimy,
/area/ai_monitored/turret_protected/aisat_interior)
-"czz" = (
-/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,
-/turf/open/floor/plasteel/grimy,
+"ctz" = (
+/obj/machinery/door/poddoor/shutters{
+ id = "teledoor";
+ name = "MiniSat Teleport Access"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/aisat_interior)
-"czA" = (
+"ctA" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
/obj/structure/extinguisher_cabinet{
pixel_x = -5;
- pixel_y = 30
+ pixel_y = 30
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/aisat_interior)
-"czB" = (
-/obj/machinery/door/poddoor/shutters{
- id = "teledoor";
- name = "MiniSat Teleport Access"
+"ctB" = (
+/obj/structure/cable,
+/obj/machinery/power/tracker,
+/turf/open/floor/plasteel/airless/solarpanel,
+/area/solar/starboard)
+"ctC" = (
+/obj/machinery/camera/emp_proof{
+ c_tag = "Singularity West";
+ dir = 1;
+ network = list("Singularity")
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"ctD" = (
+/obj/machinery/camera/emp_proof{
+ c_tag = "Singularity East";
+ dir = 1;
+ network = list("Singularity")
},
-/turf/open/floor/plasteel/black,
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"ctE" = (
+/obj/machinery/teleport/hub,
+/turf/open/floor/plating,
/area/ai_monitored/turret_protected/aisat_interior)
-"czC" = (
+"ctF" = (
/obj/machinery/button/door{
id = "teledoor";
- name = "MiniSat Teleport Shutters Control";
- pixel_x = 0;
- pixel_y = 25;
- req_access_txt = "17;65"
+ name = "MiniSat Teleport Shutters Control";
+ pixel_x = 0;
+ pixel_y = 25;
+ req_access_txt = "17;65"
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1;
+ scrub_Toxins = 0
},
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/aisat_interior)
-"czD" = (
-/obj/machinery/teleport/hub,
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/aisat_interior)
-"czE" = (
-/obj/structure/grille,
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+"ctG" = (
+/obj/structure/chair/office/dark{
+ dir = 8
},
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"czF" = (
-/obj/structure/grille,
/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
},
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"czG" = (
+/turf/open/floor/plasteel/grimy,
+/area/ai_monitored/turret_protected/aisat_interior)
+"ctH" = (
/obj/machinery/computer/security/telescreen/entertainment{
pixel_x = -31
},
/obj/machinery/computer/monitor,
/obj/structure/cable{
icon_state = "0-4";
- d2 = 4
+ d2 = 4
},
/turf/open/floor/plasteel/vault{
dir = 8
},
/area/ai_monitored/turret_protected/aisat_interior)
-"czH" = (
-/obj/structure/chair/office/dark{
- dir = 8
- },
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
+"ctI" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/grimy,
/area/ai_monitored/turret_protected/aisat_interior)
-"czI" = (
+"ctJ" = (
/obj/machinery/holopad,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/structure/cable{
d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
},
/obj/effect/landmark/start{
name = "Cyborg"
},
/turf/open/floor/plasteel/grimy,
/area/ai_monitored/turret_protected/aisat_interior)
-"czJ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/grimy,
-/area/ai_monitored/turret_protected/aisat_interior)
-"czK" = (
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/aisat_interior)
-"czL" = (
+"ctK" = (
/obj/machinery/door/airlock/hatch{
name = "MiniSat Teleporter";
- req_access_txt = "17;65"
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/aisat_interior)
-"czM" = (
-/obj/machinery/bluespace_beacon,
-/obj/effect/turf_decal/stripes/line{
- dir = 4
+ req_access_txt = "17;65"
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/aisat_interior)
-"czN" = (
+"ctL" = (
/obj/machinery/teleport/station,
/obj/machinery/light/small{
dir = 4
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/aisat_interior)
-"czO" = (
-/obj/structure/grille,
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"czP" = (
-/obj/structure/cable/yellow{
- icon_state = "0-2";
- d2 = 2
+"ctM" = (
+/obj/machinery/bluespace_beacon,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
},
-/obj/machinery/power/tesla_coil,
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"czQ" = (
-/obj/structure/lattice,
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/aisat_interior)
+"ctN" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
icon_state = "intact";
- dir = 5
+ dir = 10
},
+/obj/structure/lattice,
/turf/open/space,
/area/space)
-"czR" = (
+"ctO" = (
+/obj/structure/lattice,
/obj/machinery/atmospherics/pipe/simple/yellow/visible{
icon_state = "intact";
- dir = 10
+ dir = 5
},
-/obj/structure/lattice,
/turf/open/space,
/area/space)
-"czS" = (
+"ctP" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/turf/open/floor/plasteel/grimy,
+/area/ai_monitored/turret_protected/aisat_interior)
+"ctQ" = (
/obj/structure/table,
/obj/machinery/microwave{
pixel_x = 0;
- pixel_y = 4
+ pixel_y = 4
},
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -24
+ pixel_x = -24
},
/turf/open/floor/plasteel/vault{
dir = 8
},
/area/ai_monitored/turret_protected/aisat_interior)
-"czT" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
+"ctR" = (
+/obj/structure/sign/securearea{
+ desc = "A warning sign which reads 'RADIOACTIVE AREA'";
+ icon_state = "radiation";
+ name = "RADIOACTIVE AREA";
+ pixel_x = 0;
+ pixel_y = 0
+ },
+/turf/closed/wall,
+/area/engine/engineering)
+"ctS" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
},
/turf/open/floor/plasteel/grimy,
/area/ai_monitored/turret_protected/aisat_interior)
-"czU" = (
+"ctT" = (
/obj/machinery/atmospherics/pipe/manifold4w/supply/hidden,
/obj/structure/cable{
d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d2 = 4;
+ icon_state = "2-4"
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/open/floor/plasteel/grimy,
/area/ai_monitored/turret_protected/aisat_interior)
-"czV" = (
+"ctU" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/turf/open/floor/plasteel/grimy,
+/turf/closed/wall,
/area/ai_monitored/turret_protected/aisat_interior)
-"czW" = (
+"ctV" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
/obj/structure/cable{
d2 = 8;
- icon_state = "0-8"
+ icon_state = "0-8"
},
/obj/machinery/power/apc{
dir = 4;
- name = "MiniSat Foyer APC";
- pixel_x = 27;
- pixel_y = 0
+ name = "MiniSat Foyer APC";
+ pixel_x = 27;
+ pixel_y = 0
},
/obj/structure/chair,
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/aisat_interior)
-"czX" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
- },
-/turf/closed/wall,
+"ctW" = (
+/obj/machinery/computer/teleporter,
+/turf/open/floor/plating,
/area/ai_monitored/turret_protected/aisat_interior)
-"czY" = (
+"ctX" = (
/obj/machinery/camera{
c_tag = "MiniSat Teleporter";
- dir = 1;
- network = list("MiniSat");
- pixel_x = 0;
- pixel_y = 0;
- start_active = 1
+ dir = 1;
+ network = list("MiniSat");
+ pixel_x = 0;
+ pixel_y = 0;
+ start_active = 1
},
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
- on = 1
+ on = 1
},
/obj/effect/turf_decal/stripes/line{
dir = 4
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/aisat_interior)
-"czZ" = (
-/obj/machinery/computer/teleporter,
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/aisat_interior)
-"cAa" = (
-/obj/structure/cable,
-/obj/machinery/power/tracker,
-/turf/open/floor/plasteel/airless/solarpanel,
-/area/solar/starboard)
-"cAb" = (
-/obj/machinery/camera/emp_proof{
- c_tag = "Singularity West";
- dir = 1;
- network = list("Singularity")
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"cAc" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4";
- tag = "90Curve"
- },
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"cAd" = (
-/obj/structure/cable/yellow{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8";
- tag = ""
- },
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"cAe" = (
-/obj/structure/cable/yellow{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8";
- tag = ""
- },
-/turf/open/floor/plating/airless,
-/area/space/nearstation)
-"cAf" = (
-/obj/machinery/camera/emp_proof{
- c_tag = "Singularity East";
- dir = 1;
- network = list("Singularity")
- },
-/turf/open/floor/plating/airless,
-/area/engine/engineering)
-"cAg" = (
+"ctY" = (
+/obj/machinery/atmospherics/pipe/simple/yellow/visible,
+/obj/machinery/meter,
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/AIsatextAS{
name = "AI Satellite Atmospherics"
})
-"cAh" = (
-/obj/machinery/atmospherics/pipe/simple/yellow/visible,
-/obj/machinery/meter,
+"ctZ" = (
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/AIsatextAS{
name = "AI Satellite Atmospherics"
})
-"cAi" = (
+"cua" = (
+/turf/closed/wall,
+/area/ai_monitored/turret_protected/aisat_interior)
+"cub" = (
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = -29
+ },
+/obj/machinery/light/small,
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/aisat_interior)
+"cuc" = (
/obj/structure/rack{
dir = 1
},
@@ -59927,44 +57261,40 @@
dir = 8
},
/area/ai_monitored/turret_protected/aisat_interior)
-"cAj" = (
-/obj/item/device/radio/intercom{
- name = "Station Intercom (General)";
- pixel_x = 0;
- pixel_y = -29
- },
-/obj/machinery/light/small,
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/aisat_interior)
-"cAk" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/aisat_interior)
-"cAl" = (
+"cud" = (
/obj/machinery/turretid{
control_area = null;
- enabled = 1;
- icon_state = "control_standby";
- name = "Antechamber Turret Control";
- pixel_x = 0;
- pixel_y = -24;
- req_access = list(65)
+ enabled = 1;
+ icon_state = "control_standby";
+ name = "Antechamber Turret Control";
+ pixel_x = 0;
+ pixel_y = -24;
+ req_access = list(65)
},
/obj/machinery/light/small,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/camera/motion{
c_tag = "MiniSat Foyer";
- dir = 1;
- network = list("MiniSat")
+ dir = 1;
+ network = list("MiniSat")
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/aisat_interior)
-"cAm" = (
+"cue" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/aisat_interior)
+"cuf" = (
+/turf/closed/wall/r_wall,
+/area/ai_monitored/turret_protected/AIsatextFP{
+ name = "AI Satellite Service"
+ })
+"cug" = (
/obj/machinery/ai_status_display{
pixel_y = -32
},
@@ -59973,16 +57303,7 @@
dir = 8
},
/area/ai_monitored/turret_protected/aisat_interior)
-"cAn" = (
-/turf/closed/wall/r_wall,
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
-"cAo" = (
-/obj/structure/sign/securearea,
-/turf/closed/wall/r_wall,
-/area/engine/engineering)
-"cAp" = (
+"cuh" = (
/obj/machinery/atmospherics/pipe/simple/yellow/visible,
/obj/structure/rack,
/obj/item/weapon/wrench,
@@ -59992,44 +57313,56 @@
/area/ai_monitored/turret_protected/AIsatextAS{
name = "AI Satellite Atmospherics"
})
-"cAq" = (
+"cui" = (
/obj/machinery/atmospherics/components/unary/tank/air,
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextAS{
name = "AI Satellite Atmospherics"
})
-"cAr" = (
+"cuj" = (
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/aisat_interior)
-"cAs" = (
+"cuk" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall/r_wall,
+/area/ai_monitored/turret_protected/aisat_interior)
+"cul" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/hatch{
name = "MiniSat Antechamber";
- req_one_access_txt = "65"
+ req_one_access_txt = "65"
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/aisat_interior)
-"cAt" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall/r_wall,
-/area/ai_monitored/turret_protected/aisat_interior)
-"cAu" = (
+"cum" = (
/obj/machinery/recharge_station,
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"cAv" = (
+"cun" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 2;
+ name = "Mix to MiniSat"
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plating{
+ icon_plating = "warnplate"
+ },
+/area/ai_monitored/turret_protected/AIsatextAS{
+ name = "AI Satellite Atmospherics"
+ })
+"cuo" = (
/obj/machinery/portable_atmospherics/canister/air,
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -24
+ pixel_x = -24
},
/obj/effect/turf_decal/stripes/corner{
dir = 2
@@ -60040,10 +57373,20 @@
/area/ai_monitored/turret_protected/AIsatextAS{
name = "AI Satellite Atmospherics"
})
-"cAw" = (
-/obj/machinery/atmospherics/components/binary/pump{
- dir = 2;
- name = "Mix to MiniSat"
+"cup" = (
+/obj/structure/showcase{
+ density = 0;
+ desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze.";
+ dir = 8;
+ icon = 'icons/mob/robots.dmi';
+ icon_state = "robot_old";
+ name = "Cyborg Statue";
+ pixel_x = 9;
+ pixel_y = 2
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -5;
+ pixel_y = 30
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating{
@@ -60052,33 +57395,11 @@
/area/ai_monitored/turret_protected/AIsatextAS{
name = "AI Satellite Atmospherics"
})
-"cAx" = (
+"cuq" = (
/obj/machinery/atmospherics/components/binary/pump{
dir = 0;
- name = "Air Out";
- on = 0
- },
-/obj/effect/turf_decal/stripes/line,
-/turf/open/floor/plating{
- icon_plating = "warnplate"
- },
-/area/ai_monitored/turret_protected/AIsatextAS{
- name = "AI Satellite Atmospherics"
- })
-"cAy" = (
-/obj/structure/showcase{
- density = 0;
- desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze.";
- dir = 8;
- icon = 'icons/mob/robots.dmi';
- icon_state = "robot_old";
- name = "Cyborg Statue";
- pixel_x = 9;
- pixel_y = 2
- },
-/obj/structure/extinguisher_cabinet{
- pixel_x = -5;
- pixel_y = 30
+ name = "Air Out";
+ on = 0
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating{
@@ -60087,66 +57408,79 @@
/area/ai_monitored/turret_protected/AIsatextAS{
name = "AI Satellite Atmospherics"
})
-"cAz" = (
+"cur" = (
/obj/structure/showcase{
density = 0;
- desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze.";
- dir = 4;
- icon = 'icons/mob/robots.dmi';
- icon_state = "robot_old";
- name = "Cyborg Statue";
- pixel_x = -9;
- pixel_y = 2
+ desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze.";
+ dir = 4;
+ icon = 'icons/mob/robots.dmi';
+ icon_state = "robot_old";
+ name = "Cyborg Statue";
+ pixel_x = -9;
+ pixel_y = 2
},
/turf/open/floor/plasteel/darkblue/corner{
dir = 1
},
/area/ai_monitored/turret_protected/aisat_interior)
-"cAA" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/aisat_interior)
-"cAB" = (
+"cus" = (
/obj/structure/showcase{
density = 0;
- desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze.";
- dir = 8;
- icon = 'icons/mob/robots.dmi';
- icon_state = "robot_old";
- name = "Cyborg Statue";
- pixel_x = 9;
- pixel_y = 2
+ desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze.";
+ dir = 8;
+ icon = 'icons/mob/robots.dmi';
+ icon_state = "robot_old";
+ name = "Cyborg Statue";
+ pixel_x = 9;
+ pixel_y = 2
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
- on = 1
+ on = 1
},
/turf/open/floor/plasteel/darkblue/corner{
dir = 4
},
/area/ai_monitored/turret_protected/aisat_interior)
-"cAC" = (
+"cut" = (
+/obj/structure/table,
+/obj/item/stack/sheet/metal{
+ amount = 50
+ },
+/obj/item/stack/sheet/glass{
+ amount = 50
+ },
+/obj/item/stack/rods{
+ amount = 50
+ },
+/turf/open/floor/mineral/plastitanium,
+/area/shuttle/syndicate)
+"cuu" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/aisat_interior)
+"cuv" = (
/obj/structure/showcase{
density = 0;
- desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze.";
- dir = 4;
- icon = 'icons/mob/robots.dmi';
- icon_state = "robot_old";
- name = "Cyborg Statue";
- pixel_x = -9;
- pixel_y = 2
+ desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze.";
+ dir = 4;
+ icon = 'icons/mob/robots.dmi';
+ icon_state = "robot_old";
+ name = "Cyborg Statue";
+ pixel_x = -9;
+ pixel_y = 2
},
/obj/structure/extinguisher_cabinet{
pixel_x = 5;
- pixel_y = 30
+ pixel_y = 30
},
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating{
@@ -60155,7 +57489,7 @@
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"cAD" = (
+"cuw" = (
/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating{
icon_plating = "warnplate"
@@ -60163,7 +57497,7 @@
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"cAE" = (
+"cux" = (
/obj/structure/table,
/obj/item/stack/sheet/metal{
amount = 50
@@ -60174,11 +57508,11 @@
/obj/item/clothing/head/welding,
/obj/item/stack/sheet/mineral/plasma{
amount = 35;
- layer = 3.1
+ layer = 3.1
},
/obj/machinery/firealarm{
dir = 4;
- pixel_x = 24
+ pixel_x = 24
},
/obj/effect/turf_decal/stripes/corner{
dir = 1
@@ -60187,22 +57521,31 @@
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"cAF" = (
+"cuy" = (
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/aisat_interior)
+"cuz" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/AIsatextAS{
+ name = "AI Satellite Atmospherics"
+ })
+"cuA" = (
/obj/machinery/light/small{
dir = 8
},
/obj/machinery/camera{
c_tag = "MiniSat Atmospherics";
- dir = 4;
- network = list("MiniSat");
- pixel_x = 0;
- pixel_y = 0;
- start_active = 1
+ dir = 4;
+ network = list("MiniSat");
+ pixel_x = 0;
+ pixel_y = 0;
+ start_active = 1
},
/obj/machinery/airalarm{
dir = 4;
- pixel_x = -23;
- pixel_y = 0
+ pixel_x = -23;
+ pixel_y = 0
},
/obj/machinery/space_heater,
/obj/effect/turf_decal/stripes/line{
@@ -60212,33 +57555,20 @@
/area/ai_monitored/turret_protected/AIsatextAS{
name = "AI Satellite Atmospherics"
})
-"cAG" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/AIsatextAS{
- name = "AI Satellite Atmospherics"
- })
-"cAH" = (
-/obj/machinery/holopad,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/AIsatextAS{
- name = "AI Satellite Atmospherics"
- })
-"cAI" = (
+"cuB" = (
/obj/machinery/light/small{
dir = 4
},
/obj/item/device/radio/intercom{
name = "Station Intercom (General)";
- pixel_x = 28;
- pixel_y = 0
+ pixel_x = 28;
+ pixel_y = 0
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
/turf/open/floor/plasteel/darkblue/corner{
dir = 4
@@ -60246,32 +57576,33 @@
/area/ai_monitored/turret_protected/AIsatextAS{
name = "AI Satellite Atmospherics"
})
-"cAJ" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
- },
-/turf/closed/wall/r_wall,
-/area/ai_monitored/turret_protected/aisat_interior)
-"cAK" = (
+"cuC" = (
+/obj/machinery/holopad,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/AIsatextAS{
+ name = "AI Satellite Atmospherics"
+ })
+"cuD" = (
/obj/machinery/light/small{
dir = 8
},
/obj/machinery/camera{
c_tag = "MiniSat Antechamber";
- dir = 4;
- network = list("MiniSat");
- pixel_x = 0;
- pixel_y = 0;
- start_active = 1
+ dir = 4;
+ network = list("MiniSat");
+ pixel_x = 0;
+ pixel_y = 0;
+ start_active = 1
},
/obj/machinery/turretid{
control_area = "AI Satellite Atmospherics";
- enabled = 1;
- icon_state = "control_standby";
- name = "Atmospherics Turret Control";
- pixel_x = -27;
- pixel_y = 0;
- req_access = list(65)
+ enabled = 1;
+ icon_state = "control_standby";
+ name = "Atmospherics Turret Control";
+ pixel_x = -27;
+ pixel_y = 0;
+ req_access = list(65)
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -60280,45 +57611,51 @@
dir = 1
},
/area/ai_monitored/turret_protected/aisat_interior)
-"cAL" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/holopad,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+"cuE" = (
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
},
-/turf/open/floor/plasteel/black,
+/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/aisat_interior)
-"cAM" = (
+"cuF" = (
/obj/machinery/light/small{
dir = 4
},
/obj/machinery/turretid{
control_area = "AI Satellite Service";
- enabled = 1;
- icon_state = "control_standby";
- name = "Service Bay Turret Control";
- pixel_x = 27;
- pixel_y = 0;
- req_access = list(65)
+ enabled = 1;
+ icon_state = "control_standby";
+ name = "Service Bay Turret Control";
+ pixel_x = 27;
+ pixel_y = 0;
+ req_access = list(65)
},
/obj/machinery/atmospherics/pipe/manifold4w/scrubbers,
/turf/open/floor/plasteel/darkblue/corner{
dir = 4
},
/area/ai_monitored/turret_protected/aisat_interior)
-"cAN" = (
-/obj/machinery/light/small{
- dir = 8
- },
-/obj/item/device/radio/intercom{
- name = "Station Intercom (General)";
- pixel_x = -28;
- pixel_y = 0
+"cuG" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/holopad,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/aisat_interior)
+"cuH" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_x = -28;
+ pixel_y = 0
},
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
dir = 4
@@ -60329,46 +57666,46 @@
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"cAO" = (
-/obj/machinery/holopad,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 4
+"cuI" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_Toxins = 0
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"cAP" = (
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 8;
- on = 1;
- scrub_Toxins = 0
+"cuJ" = (
+/obj/machinery/holopad,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"cAQ" = (
+"cuK" = (
/obj/machinery/light/small{
dir = 4
},
/obj/machinery/camera{
c_tag = "MiniSat Service Bay";
- dir = 8;
- network = list("MiniSat");
- pixel_x = 0;
- pixel_y = 0;
- start_active = 1
+ dir = 8;
+ network = list("MiniSat");
+ pixel_x = 0;
+ pixel_y = 0;
+ start_active = 1
},
/obj/machinery/airalarm{
dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
+ icon_state = "alarm0";
+ pixel_x = 24
},
/obj/structure/rack,
/obj/item/weapon/storage/toolbox/electrical{
pixel_x = -3;
- pixel_y = 3
+ pixel_y = 3
},
/obj/item/weapon/storage/toolbox/mechanical,
/obj/item/device/multitool,
@@ -60379,16 +57716,30 @@
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"cAR" = (
+"cuL" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/AIsatextAS{
+ name = "AI Satellite Atmospherics"
+ })
+"cuM" = (
/obj/machinery/power/apc{
dir = 8;
- name = "MiniSat Atmospherics APC";
- pixel_x = -27;
- pixel_y = 0
+ name = "MiniSat Atmospherics APC";
+ pixel_x = -27;
+ pixel_y = 0
},
/obj/structure/cable{
icon_state = "0-4";
- d2 = 4
+ d2 = 4
},
/obj/machinery/portable_atmospherics/scrubber,
/obj/effect/turf_decal/stripes/line{
@@ -60398,26 +57749,26 @@
/area/ai_monitored/turret_protected/AIsatextAS{
name = "AI Satellite Atmospherics"
})
-"cAS" = (
+"cuN" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/AIsatextAS{
name = "AI Satellite Atmospherics"
})
-"cAT" = (
+"cuO" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
},
/obj/machinery/ai_slipper{
uses = 10
@@ -60427,26 +57778,24 @@
/area/ai_monitored/turret_protected/AIsatextAS{
name = "AI Satellite Atmospherics"
})
-"cAU" = (
+"cuP" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
},
-/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
- dir = 1
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/AIsatextAS{
- name = "AI Satellite Atmospherics"
- })
-"cAV" = (
+/area/ai_monitored/turret_protected/aisat_interior)
+"cuQ" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -60454,38 +57803,39 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/hatch{
name = "MiniSat Atmospherics";
- req_one_access_txt = "65"
+ req_one_access_txt = "65"
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/aisat_interior)
-"cAW" = (
+"cuR" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/aisat_interior)
-"cAX" = (
+"cuS" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/structure/cable{
d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
},
/obj/structure/cable{
d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d2 = 4;
+ icon_state = "2-4"
},
/obj/machinery/ai_slipper{
uses = 10
@@ -60494,25 +57844,26 @@
/mob/living/simple_animal/bot/secbot/pingsky,
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/aisat_interior)
-"cAY" = (
+"cuT" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+ dir = 10
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/aisat_interior)
-"cAZ" = (
+/area/ai_monitored/turret_protected/AIsatextFP{
+ name = "AI Satellite Service"
+ })
+"cuU" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -60520,65 +57871,51 @@
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/hatch{
name = "MiniSat Service Bay";
- req_one_access_txt = "65"
+ req_one_access_txt = "65"
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/aisat_interior)
-"cBa" = (
+"cuV" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 10
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"cBb" = (
+"cuW" = (
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
},
/obj/machinery/ai_slipper{
uses = 10
},
/obj/structure/cable{
d1 = 2;
- d2 = 8;
- icon_state = "2-8";
- tag = ""
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
-"cBc" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"cBd" = (
+"cuX" = (
/obj/machinery/power/apc{
dir = 4;
- name = "MiniSat Service Bay APC";
- pixel_x = 27;
- pixel_y = 0
+ name = "MiniSat Service Bay APC";
+ pixel_x = 27;
+ pixel_y = 0
},
/obj/structure/cable{
d2 = 8;
- icon_state = "0-8"
+ icon_state = "0-8"
},
/obj/machinery/power/port_gen/pacman,
/obj/effect/turf_decal/stripes/line{
@@ -60588,7 +57925,7 @@
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"cBe" = (
+"cuY" = (
/obj/machinery/porta_turret/ai{
dir = 4
},
@@ -60598,76 +57935,87 @@
/area/ai_monitored/turret_protected/AIsatextAS{
name = "AI Satellite Atmospherics"
})
-"cBf" = (
+"cuZ" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
- on = 1
+ on = 1
},
/mob/living/simple_animal/bot/floorbot,
/turf/open/floor/plasteel/darkblue/corner,
/area/ai_monitored/turret_protected/AIsatextAS{
name = "AI Satellite Atmospherics"
})
-"cBg" = (
+"cva" = (
+/turf/closed/wall/r_wall,
+/area/ai_monitored/turret_protected/ai)
+"cvb" = (
+/obj/machinery/ai_status_display,
+/turf/closed/wall/r_wall,
+/area/ai_monitored/turret_protected/ai)
+"cvc" = (
/obj/structure/sign/securearea{
pixel_x = -32;
- pixel_y = 0
+ pixel_y = 0
},
/obj/machinery/porta_turret/ai{
dir = 4
},
/obj/item/device/radio/intercom{
broadcasting = 1;
- frequency = 1447;
- listening = 0;
- name = "Station Intercom (AI Private)";
- pixel_y = -29
+ frequency = 1447;
+ listening = 0;
+ name = "Station Intercom (AI Private)";
+ pixel_y = -29
},
/turf/open/floor/plasteel/darkblue/corner{
dir = 8
},
/area/ai_monitored/turret_protected/aisat_interior)
-"cBh" = (
+"cvd" = (
+/obj/machinery/porta_turret/ai{
+ dir = 4
+ },
+/obj/structure/sign/securearea{
+ pixel_x = 32;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/darkblue/corner,
+/area/ai_monitored/turret_protected/aisat_interior)
+"cve" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
/obj/machinery/turretid{
control_area = "AI Satellite Hallway";
- enabled = 1;
- icon_state = "control_standby";
- name = "Chamber Hallway Turret Control";
- pixel_x = 32;
- pixel_y = -24;
- req_access = list(65)
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/aisat_interior)
-"cBi" = (
-/obj/machinery/porta_turret/ai{
- dir = 4
- },
-/obj/structure/sign/securearea{
+ enabled = 1;
+ icon_state = "control_standby";
+ name = "Chamber Hallway Turret Control";
pixel_x = 32;
- pixel_y = 0
+ pixel_y = -24;
+ req_access = list(65)
},
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plasteel/darkblue/corner,
+/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/aisat_interior)
-"cBj" = (
+"cvf" = (
+/obj/machinery/status_display,
+/turf/closed/wall/r_wall,
+/area/ai_monitored/turret_protected/ai)
+"cvg" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 1;
- on = 1
+ on = 1
},
/mob/living/simple_animal/bot/cleanbot,
/turf/open/floor/plasteel/darkblue/corner{
@@ -60676,17 +58024,7 @@
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"cBk" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/AIsatextFP{
- name = "AI Satellite Service"
- })
-"cBl" = (
+"cvh" = (
/obj/machinery/porta_turret/ai{
dir = 4
},
@@ -60696,111 +58034,143 @@
/area/ai_monitored/turret_protected/AIsatextFP{
name = "AI Satellite Service"
})
-"cBm" = (
-/turf/closed/wall/r_wall,
+"cvi" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/AIsatextFP{
+ name = "AI Satellite Service"
+ })
+"cvj" = (
+/turf/closed/wall,
/area/ai_monitored/turret_protected/AIsatextFS{
name = "AI Satellite Hallway"
})
-"cBn" = (
-/turf/closed/wall,
+"cvk" = (
+/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/AIsatextFS{
name = "AI Satellite Hallway"
})
-"cBo" = (
+"cvl" = (
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/ai)
+"cvm" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "MiniSat Maintenance";
- req_access_txt = "65"
+ req_access_txt = "65"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextFS{
name = "AI Satellite Hallway"
})
-"cBp" = (
+"cvn" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall/r_wall,
+/area/ai_monitored/turret_protected/AIsatextFS{
+ name = "AI Satellite Hallway"
+ })
+"cvo" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/hatch{
name = "MiniSat Chamber Hallway";
- req_one_access_txt = "65"
+ req_one_access_txt = "65"
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/AIsatextFS{
name = "AI Satellite Hallway"
})
-"cBq" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall/r_wall,
-/area/ai_monitored/turret_protected/AIsatextFS{
- name = "AI Satellite Hallway"
- })
-"cBr" = (
+"cvp" = (
+/turf/open/floor/bluegrid,
+/area/ai_monitored/turret_protected/ai)
+"cvq" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "MiniSat Maintenance";
- req_access_txt = "65"
+ req_access_txt = "65"
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextFS{
name = "AI Satellite Hallway"
})
-"cBs" = (
-/obj/docking_port/stationary{
- dheight = 9;
- dir = 2;
- dwidth = 5;
- height = 24;
- id = "syndicate_southmaint";
- name = "south maintenance airlock";
- turf_type = /turf/open/space;
- width = 18
+"cvr" = (
+/obj/machinery/porta_turret/ai{
+ dir = 4
},
-/turf/open/space,
-/area/space)
-"cBt" = (
+/turf/open/floor/bluegrid,
+/area/ai_monitored/turret_protected/ai)
+"cvs" = (
/obj/machinery/portable_atmospherics/scrubber,
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextFS{
name = "AI Satellite Hallway"
})
-"cBu" = (
+"cvt" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextFS{
name = "AI Satellite Hallway"
})
-"cBv" = (
-/turf/open/floor/bluegrid,
-/area/ai_monitored/turret_protected/AIsatextFS{
- name = "AI Satellite Hallway"
- })
-"cBw" = (
+"cvu" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextFS{
name = "AI Satellite Hallway"
})
-"cBx" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
- },
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/black,
+"cvv" = (
+/turf/closed/wall,
+/area/ai_monitored/turret_protected/ai)
+"cvw" = (
+/turf/open/floor/bluegrid,
/area/ai_monitored/turret_protected/AIsatextFS{
name = "AI Satellite Hallway"
})
-"cBy" = (
+"cvx" = (
+/obj/effect/landmark{
+ name = "tripai"
+ },
+/obj/item/device/radio/intercom{
+ anyai = 1;
+ freerange = 1;
+ listening = 0;
+ name = "Custom Channel";
+ pixel_x = 0;
+ pixel_y = 28
+ },
+/obj/item/device/radio/intercom{
+ broadcasting = 0;
+ freerange = 1;
+ listening = 1;
+ name = "Common Channel";
+ pixel_x = -27;
+ pixel_y = 5
+ },
+/obj/item/device/radio/intercom{
+ anyai = 1;
+ broadcasting = 0;
+ freerange = 1;
+ frequency = 1447;
+ name = "Private Channel";
+ pixel_x = 0;
+ pixel_y = -25
+ },
+/turf/open/floor/bluegrid,
+/area/ai_monitored/turret_protected/ai)
+"cvy" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
@@ -60808,17 +58178,49 @@
/area/ai_monitored/turret_protected/AIsatextFS{
name = "AI Satellite Hallway"
})
-"cBz" = (
+"cvz" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/open/floor/plating,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/AIsatextFS{
name = "AI Satellite Hallway"
})
-"cBA" = (
+"cvA" = (
+/obj/effect/landmark{
+ name = "tripai"
+ },
+/obj/item/device/radio/intercom{
+ anyai = 1;
+ freerange = 1;
+ listening = 0;
+ name = "Custom Channel";
+ pixel_x = 0;
+ pixel_y = 28
+ },
+/obj/item/device/radio/intercom{
+ broadcasting = 0;
+ freerange = 1;
+ listening = 1;
+ name = "Common Channel";
+ pixel_x = 27;
+ pixel_y = 5
+ },
+/obj/item/device/radio/intercom{
+ anyai = 1;
+ broadcasting = 0;
+ freerange = 1;
+ frequency = 1447;
+ name = "Private Channel";
+ pixel_x = 0;
+ pixel_y = -25
+ },
+/turf/open/floor/bluegrid,
+/area/ai_monitored/turret_protected/ai)
+"cvB" = (
/obj/structure/rack,
/obj/item/weapon/crowbar/red,
/obj/item/weapon/wrench,
@@ -60826,145 +58228,153 @@
/area/ai_monitored/turret_protected/AIsatextFS{
name = "AI Satellite Hallway"
})
-"cBB" = (
+"cvC" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/ai_monitored/turret_protected/AIsatextFS{
+ name = "AI Satellite Hallway"
+ })
+"cvD" = (
/obj/structure/reagent_dispensers/watertank,
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextFS{
name = "AI Satellite Hallway"
})
-"cBC" = (
+"cvE" = (
/obj/structure/reagent_dispensers/fueltank,
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextFS{
name = "AI Satellite Hallway"
})
-"cBD" = (
+"cvF" = (
/obj/structure/lattice,
/obj/machinery/camera{
c_tag = "MiniSat External NorthWest";
- dir = 8;
- network = list("MiniSat");
- pixel_x = 0;
- pixel_y = 0;
- start_active = 1
+ dir = 8;
+ network = list("MiniSat");
+ pixel_x = 0;
+ pixel_y = 0;
+ start_active = 1
},
/turf/open/space,
/area/space)
-"cBE" = (
+"cvG" = (
/obj/machinery/porta_turret/ai{
dir = 4;
- installation = /obj/item/weapon/gun/energy/e_gun
+ installation = /obj/item/weapon/gun/energy/e_gun
},
/obj/machinery/light{
icon_state = "tube1";
- dir = 8
+ dir = 8
},
/turf/open/floor/bluegrid,
/area/ai_monitored/turret_protected/AIsatextFS{
name = "AI Satellite Hallway"
})
-"cBF" = (
+"cvH" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/ai_monitored/turret_protected/AIsatextFS{
+ name = "AI Satellite Hallway"
+ })
+"cvI" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 4;
- on = 1;
- scrub_N2O = 0;
- scrub_Toxins = 0
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/AIsatextFS{
name = "AI Satellite Hallway"
})
-"cBG" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 4
- },
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/AIsatextFS{
- name = "AI Satellite Hallway"
- })
-"cBH" = (
+"cvJ" = (
/obj/machinery/porta_turret/ai{
dir = 4;
- installation = /obj/item/weapon/gun/energy/e_gun
+ installation = /obj/item/weapon/gun/energy/e_gun
},
/obj/machinery/light{
icon_state = "tube1";
- dir = 4
+ dir = 4
},
/turf/open/floor/bluegrid,
/area/ai_monitored/turret_protected/AIsatextFS{
name = "AI Satellite Hallway"
})
-"cBI" = (
+"cvK" = (
/obj/structure/lattice,
/obj/machinery/camera{
c_tag = "MiniSat External NorthEast";
- dir = 4;
- network = list("MiniSat");
- pixel_x = 0;
- pixel_y = 0;
- start_active = 1
+ dir = 4;
+ network = list("MiniSat");
+ pixel_x = 0;
+ pixel_y = 0;
+ start_active = 1
},
/turf/open/space,
/area/space)
-"cBJ" = (
+"cvL" = (
/obj/structure/sign/securearea{
pixel_x = 32;
- pixel_y = 0
+ pixel_y = 0
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextFS{
name = "AI Satellite Hallway"
})
-"cBK" = (
+"cvM" = (
/obj/machinery/camera/motion{
c_tag = "MiniSat Core Hallway";
- dir = 4;
- network = list("MiniSat")
+ dir = 4;
+ network = list("MiniSat")
},
/obj/machinery/firealarm{
dir = 8;
- pixel_x = -24
+ pixel_x = -24
},
/turf/open/floor/bluegrid,
/area/ai_monitored/turret_protected/AIsatextFS{
name = "AI Satellite Hallway"
})
-"cBL" = (
+"cvN" = (
/obj/structure/sign/securearea{
pixel_x = -32;
- pixel_y = 0
+ pixel_y = 0
},
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextFS{
name = "AI Satellite Hallway"
})
-"cBM" = (
-/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 5
+"cvO" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/AIsatextFS{
- name = "AI Satellite Hallway"
- })
-"cBN" = (
+/area/maintenance/asmaint2)
+"cvP" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "MiniSat Maintenance";
- req_access_txt = "65"
+ req_access_txt = "65"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
@@ -60973,15 +58383,15 @@
/area/ai_monitored/turret_protected/AIsatextFS{
name = "AI Satellite Hallway"
})
-"cBO" = (
+"cvQ" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+ dir = 5
},
-/turf/open/floor/bluegrid,
+/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextFS{
name = "AI Satellite Hallway"
})
-"cBP" = (
+"cvR" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -60991,69 +58401,67 @@
/area/ai_monitored/turret_protected/AIsatextFS{
name = "AI Satellite Hallway"
})
-"cBQ" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+"cvS" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
},
-/obj/machinery/holopad,
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel/black,
+/turf/open/floor/bluegrid,
/area/ai_monitored/turret_protected/AIsatextFS{
name = "AI Satellite Hallway"
})
-"cBR" = (
+"cvT" = (
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
},
-/turf/open/floor/bluegrid,
+/obj/machinery/holopad,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/AIsatextFS{
name = "AI Satellite Hallway"
})
-"cBS" = (
+"cvU" = (
/obj/machinery/door/airlock/maintenance_hatch{
name = "MiniSat Maintenance";
- req_access_txt = "65"
+ req_access_txt = "65"
},
/obj/structure/cable{
d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
},
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextFS{
name = "AI Satellite Hallway"
})
-"cBT" = (
+"cvV" = (
/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
-/turf/open/floor/plating,
+/turf/open/floor/bluegrid,
/area/ai_monitored/turret_protected/AIsatextFS{
name = "AI Satellite Hallway"
})
-"cBU" = (
+"cvW" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextFS{
name = "AI Satellite Hallway"
})
-"cBV" = (
-/obj/machinery/airalarm{
- dir = 4;
- pixel_x = -23;
- pixel_y = 0
- },
-/turf/open/floor/bluegrid,
+"cvX" = (
+/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextFS{
name = "AI Satellite Hallway"
})
-"cBW" = (
+"cvY" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
@@ -61061,31 +58469,29 @@
/area/ai_monitored/turret_protected/AIsatextFS{
name = "AI Satellite Hallway"
})
-"cBX" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+"cvZ" = (
+/obj/machinery/airalarm{
+ dir = 4;
+ pixel_x = -23;
+ pixel_y = 0
},
-/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/obj/effect/landmark/event_spawn,
-/turf/open/floor/plasteel/black,
+/turf/open/floor/bluegrid,
/area/ai_monitored/turret_protected/AIsatextFS{
name = "AI Satellite Hallway"
})
-"cBY" = (
+"cwa" = (
/obj/structure/cable,
/obj/machinery/power/apc{
dir = 4;
- name = "MiniSat Chamber Hallway APC";
- pixel_x = 27;
- pixel_y = 0
+ name = "MiniSat Chamber Hallway APC";
+ pixel_x = 27;
+ pixel_y = 0
},
/turf/open/floor/bluegrid,
/area/ai_monitored/turret_protected/AIsatextFS{
name = "AI Satellite Hallway"
})
-"cBZ" = (
+"cwb" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -61095,215 +58501,185 @@
/area/ai_monitored/turret_protected/AIsatextFS{
name = "AI Satellite Hallway"
})
-"cCa" = (
+"cwc" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/atmospherics/components/unary/vent_pump{
dir = 8;
- on = 1
+ on = 1
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/AIsatextFS{
name = "AI Satellite Hallway"
})
-"cCb" = (
+"cwd" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/item/device/radio/intercom{
broadcasting = 1;
- frequency = 1447;
- listening = 0;
- name = "Station Intercom (AI Private)";
- pixel_x = -28;
- pixel_y = -29
+ frequency = 1447;
+ listening = 0;
+ name = "Station Intercom (AI Private)";
+ pixel_x = -28;
+ pixel_y = -29
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/AIsatextFS{
name = "AI Satellite Hallway"
})
-"cCc" = (
-/turf/closed/wall/r_wall,
-/area/ai_monitored/turret_protected/ai)
-"cCd" = (
-/obj/machinery/status_display,
+"cwe" = (
+/obj/structure/sign/securearea,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/closed/wall/r_wall,
/area/ai_monitored/turret_protected/ai)
-"cCe" = (
+"cwf" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/hatch{
name = "MiniSat Chamber Observation";
- req_one_access_txt = "65"
+ req_one_access_txt = "65"
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/ai)
-"cCf" = (
-/obj/structure/sign/securearea,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/closed/wall/r_wall,
-/area/ai_monitored/turret_protected/ai)
-"cCg" = (
-/obj/machinery/ai_status_display,
-/turf/closed/wall/r_wall,
+"cwg" = (
+/obj/machinery/airalarm{
+ frequency = 1439;
+ pixel_y = 23
+ },
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/ai)
-"cCh" = (
+"cwh" = (
/obj/machinery/light/small{
dir = 1
},
/obj/structure/table/reinforced,
/obj/item/weapon/paper_bin{
pixel_x = -3;
- pixel_y = 7
+ pixel_y = 7
},
/obj/item/weapon/pen{
pixel_x = 4;
- pixel_y = 4
+ pixel_y = 4
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/ai)
-"cCi" = (
-/obj/machinery/airalarm{
- frequency = 1439;
- pixel_y = 23
- },
-/obj/structure/chair{
+"cwi" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
dir = 8
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/ai)
-"cCj" = (
+"cwj" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/ai)
-"cCk" = (
-/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
- dir = 8
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/ai)
-"cCl" = (
+"cwk" = (
/obj/machinery/light/small{
dir = 1
},
/obj/machinery/atmospherics/components/unary/vent_scrubber{
dir = 8;
- on = 1;
- scrub_Toxins = 0
+ on = 1;
+ scrub_Toxins = 0
},
/obj/machinery/firealarm{
dir = 4;
- pixel_x = 24
+ pixel_x = 24
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/ai)
-"cCm" = (
+"cwl" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/ai)
+"cwm" = (
/obj/structure/table/reinforced,
/obj/item/weapon/folder/white,
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/ai)
-"cCn" = (
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 4;
- on = 1
- },
+"cwn" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/ai)
-"cCo" = (
+"cwo" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
dir = 4
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/ai)
-"cCp" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/ai)
-"cCq" = (
+"cwp" = (
/obj/structure/chair/office/dark,
/obj/structure/extinguisher_cabinet{
pixel_x = 27;
- pixel_y = 0
+ pixel_y = 0
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/ai)
-"cCr" = (
+"cwq" = (
/obj/structure/grille,
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/AIsatextFS{
name = "AI Satellite Hallway"
})
-"cCs" = (
+"cwr" = (
/obj/structure/grille,
/obj/structure/window/reinforced/fulltile,
/turf/open/floor/plating,
/area/ai_monitored/turret_protected/ai)
-"cCt" = (
+"cws" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plating,
+/area/ai_monitored/turret_protected/ai)
+"cwt" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/obj/machinery/door/firedoor,
/obj/machinery/door/airlock/glass_command{
name = "AI Core";
- req_access_txt = "65"
+ req_access_txt = "65"
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/ai)
-"cCu" = (
-/obj/structure/grille,
-/obj/structure/window/reinforced/fulltile,
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plating,
-/area/ai_monitored/turret_protected/ai)
-"cCv" = (
-/obj/docking_port/stationary{
- dheight = 9;
- dir = 2;
- dwidth = 5;
- height = 24;
- id = "syndicate_se";
- name = "southeast of station";
- turf_type = /turf/open/space;
- width = 18
- },
-/turf/open/space,
-/area/space)
-"cCw" = (
-/turf/open/floor/bluegrid,
-/area/ai_monitored/turret_protected/ai)
-"cCx" = (
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/ai)
-"cCy" = (
+"cwu" = (
/obj/structure/cable{
d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+ d2 = 2;
+ icon_state = "1-2"
},
/obj/machinery/ai_slipper{
uses = 10
@@ -61311,86 +58687,87 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/ai)
-"cCz" = (
+"cwv" = (
/obj/machinery/light{
icon_state = "tube1";
- dir = 8
+ dir = 8
},
/obj/machinery/status_display{
pixel_x = -32
},
/turf/open/floor/bluegrid,
/area/ai_monitored/turret_protected/ai)
-"cCA" = (
+"cww" = (
/obj/structure/cable{
- d1 = 2;
- d2 = 4;
- icon_state = "2-4"
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 6
+ dir = 4
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/ai)
-"cCB" = (
+"cwx" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
- dir = 4
+ dir = 6
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/ai)
-"cCC" = (
+"cwy" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/table_frame,
+/obj/item/weapon/wirerod,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"cwz" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/ai)
+"cwA" = (
/obj/structure/cable{
d1 = 1;
- d2 = 8;
- icon_state = "1-8"
+ d2 = 8;
+ icon_state = "1-8"
},
/obj/structure/cable{
d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+ d2 = 8;
+ icon_state = "2-8"
},
/obj/machinery/holopad,
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 9;
- pixel_y = 0
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/ai)
-"cCD" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 5
- },
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/ai)
-"cCE" = (
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
- dir = 10
+ pixel_y = 0
},
/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/ai)
-"cCF" = (
+"cwB" = (
/obj/machinery/light{
icon_state = "tube1";
- dir = 4
+ dir = 4
},
/obj/machinery/ai_status_display{
pixel_x = 32
},
/turf/open/floor/bluegrid,
/area/ai_monitored/turret_protected/ai)
-"cCG" = (
-/obj/machinery/porta_turret/ai{
- dir = 4
+"cwC" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
},
-/turf/open/floor/bluegrid,
+/turf/open/floor/plasteel/black,
/area/ai_monitored/turret_protected/ai)
-"cCH" = (
+"cwD" = (
/obj/structure/window/reinforced{
dir = 1
},
@@ -61399,25 +58776,12 @@
},
/obj/machinery/turretid{
name = "AI Chamber turret control";
- pixel_x = 5;
- pixel_y = -24
- },
-/turf/open/floor/bluegrid,
-/area/ai_monitored/turret_protected/ai)
-"cCI" = (
-/obj/machinery/door/window{
- dir = 1;
- name = "AI Core Door";
- req_access_txt = "16"
- },
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+ pixel_x = 5;
+ pixel_y = -24
},
/turf/open/floor/bluegrid,
/area/ai_monitored/turret_protected/ai)
-"cCJ" = (
+"cwE" = (
/obj/structure/window/reinforced{
dir = 1
},
@@ -61426,545 +58790,71170 @@
},
/obj/structure/cable{
d2 = 8;
- icon_state = "0-8"
+ icon_state = "0-8"
},
/obj/machinery/power/apc{
cell_type = 5000;
- dir = 2;
- name = "AI Chamber APC";
- pixel_y = -24
+ dir = 2;
+ name = "AI Chamber APC";
+ pixel_y = -24
},
/obj/machinery/flasher{
id = "AI";
- pixel_x = -11;
- pixel_y = -24
+ pixel_x = -11;
+ pixel_y = -24
},
/obj/machinery/camera/motion{
c_tag = "MiniSat AI Chamber North";
- dir = 1;
- network = list("MiniSat")
+ dir = 1;
+ network = list("MiniSat")
},
/turf/open/floor/bluegrid,
/area/ai_monitored/turret_protected/ai)
-"cCK" = (
-/turf/closed/wall,
-/area/ai_monitored/turret_protected/ai)
-"cCL" = (
-/obj/effect/landmark/start{
- name = "AI"
+"cwF" = (
+/obj/structure/chair{
+ dir = 1
},
-/obj/item/device/radio/intercom{
- broadcasting = 0;
- freerange = 1;
- listening = 1;
- name = "Common Channel";
- pixel_x = -27;
- pixel_y = -9
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"cwG" = (
+/obj/structure/table,
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = 2;
+ pixel_y = 3
},
-/obj/item/device/radio/intercom{
- anyai = 1;
- freerange = 1;
- listening = 0;
- name = "Custom Channel";
- pixel_x = 0;
- pixel_y = -31
+/obj/item/weapon/crowbar,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape)
+"cwH" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
},
-/obj/item/device/radio/intercom{
- anyai = 1;
- broadcasting = 0;
- freerange = 1;
- frequency = 1447;
- name = "Private Channel";
- pixel_x = 27;
- pixel_y = -9
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
},
-/obj/machinery/newscaster/security_unit{
- pixel_x = -28;
- pixel_y = -28
+/turf/open/floor/plating,
+/area/maintenance/fpmaint2)
+"cwI" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/escape)
+"cwJ" = (
+/obj/structure/chair{
+ dir = 8
},
-/obj/machinery/requests_console{
- department = "AI";
- departmentType = 5;
- pixel_x = 28;
- pixel_y = -28
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"cwK" = (
+/obj/machinery/computer/atmos_alert,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape)
+"cwL" = (
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"cwM" = (
+/obj/structure/rack,
+/obj/item/weapon/storage/box/teargas{
+ pixel_x = -3;
+ pixel_y = 3
},
-/turf/open/floor/bluegrid,
-/area/ai_monitored/turret_protected/ai)
-"cCM" = (
-/obj/machinery/ai_slipper{
- uses = 10
+/obj/item/weapon/storage/box/handcuffs,
+/obj/item/weapon/storage/box/flashbangs{
+ pixel_x = 3;
+ pixel_y = -3
},
-/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/ai)
-"cCN" = (
-/obj/structure/lattice,
+/turf/open/floor/plasteel/vault{
+ dir = 8
+ },
+/area/ai_monitored/security/armory)
+"cwN" = (
+/obj/machinery/computer/security,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape)
+"cwO" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 0;
+ pixel_y = -30
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"cwP" = (
+/obj/machinery/computer/crew,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape)
+"cwQ" = (
+/obj/machinery/button/flasher{
+ id = "cockpit_flasher";
+ pixel_x = 6;
+ pixel_y = -24
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"cwR" = (
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_x = 0;
+ pixel_y = -29
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"cwS" = (
+/obj/machinery/computer/communications,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape)
+"cwT" = (
/obj/machinery/camera{
- c_tag = "MiniSat External SouthWest";
- dir = 8;
- network = list("MiniSat");
- pixel_x = 0;
- pixel_y = 0;
- start_active = 1
+ c_tag = "Arrivals Escape Pod 2";
+ dir = 8
+ },
+/obj/machinery/light/small,
+/turf/open/floor/plating,
+/area/hallway/secondary/entry)
+"cwU" = (
+/obj/structure/shuttle/engine/propulsion/burst{
+ dir = 4;
+ icon_state = "propulsion";
+ tag = "icon-propulsion (WEST)"
+ },
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/pod_1)
+"cwV" = (
+/obj/docking_port/stationary/random{
+ dir = 8;
+ id = "pod_asteroid1";
+ name = "asteroid"
},
/turf/open/space,
/area/space)
-"cCO" = (
-/obj/effect/landmark{
- name = "tripai"
+"cwW" = (
+/obj/machinery/status_display,
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/escape)
+"cwX" = (
+/obj/machinery/door/airlock/glass{
+ name = "Emergency Shuttle Cockpit";
+ req_access_txt = "19"
},
-/obj/item/device/radio/intercom{
- anyai = 1;
- freerange = 1;
- listening = 0;
- name = "Custom Channel";
- pixel_x = 0;
- pixel_y = 28
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"cwY" = (
+/obj/structure/chair,
+/turf/open/floor/mineral/plastitanium/brig,
+/area/shuttle/escape)
+"cwZ" = (
+/obj/machinery/flasher{
+ id = "cockpit_flasher";
+ pixel_x = 6;
+ pixel_y = 24
},
-/obj/item/device/radio/intercom{
- broadcasting = 0;
- freerange = 1;
- listening = 1;
- name = "Common Channel";
- pixel_x = -27;
- pixel_y = 5
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape)
+"cxa" = (
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape)
+"cxb" = (
+/obj/structure/table,
+/obj/item/weapon/storage/firstaid/fire,
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = 2;
+ pixel_y = 3
},
-/obj/item/device/radio/intercom{
- anyai = 1;
- broadcasting = 0;
- freerange = 1;
- frequency = 1447;
- name = "Private Channel";
- pixel_x = 0;
- pixel_y = -25
+/obj/item/weapon/crowbar,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape)
+"cxc" = (
+/obj/structure/closet/emcloset,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape)
+"cxd" = (
+/obj/machinery/flasher{
+ id = "shuttle_flasher";
+ pixel_x = -24;
+ pixel_y = 6
},
-/turf/open/floor/bluegrid,
-/area/ai_monitored/turret_protected/ai)
-"cCP" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 2;
- icon_state = "1-2"
+/obj/machinery/button/flasher{
+ id = "shuttle_flasher";
+ pixel_x = -24;
+ pixel_y = -6
},
-/obj/structure/showcase{
- density = 0;
- desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze.";
- dir = 8;
- icon = 'icons/mob/robots.dmi';
- icon_state = "robot_old";
- name = "Cyborg Statue";
- pixel_x = 9;
- pixel_y = 2
+/turf/open/floor/mineral/plastitanium/brig,
+/area/shuttle/escape)
+"cxe" = (
+/turf/open/floor/mineral/plastitanium/brig,
+/area/shuttle/escape)
+"cxf" = (
+/obj/machinery/door/airlock/glass{
+ name = "Emergency Shuttle Brig";
+ req_access_txt = "2"
},
-/obj/machinery/atmospherics/components/unary/vent_pump{
- dir = 1;
- on = 1
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"cxg" = (
+/obj/machinery/door/airlock/titanium{
+ name = "Emergency Shuttle Airlock";
+ req_access_txt = "2"
},
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/ai)
-"cCQ" = (
-/obj/structure/showcase{
- density = 0;
- desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze.";
- dir = 4;
- icon = 'icons/mob/robots.dmi';
- icon_state = "robot_old";
- name = "Cyborg Statue";
- pixel_x = -9;
- pixel_y = 2
+/turf/open/floor/mineral/plastitanium/brig,
+/area/shuttle/escape)
+"cxh" = (
+/obj/structure/chair{
+ dir = 1
},
-/obj/machinery/atmospherics/components/unary/vent_scrubber{
- dir = 1;
- on = 1
+/turf/open/floor/mineral/plastitanium/brig,
+/area/shuttle/escape)
+"cxi" = (
+/obj/structure/chair,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape)
+"cxj" = (
+/obj/structure/table,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape)
+"cxk" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
},
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/ai)
-"cCR" = (
-/obj/effect/landmark{
- name = "tripai"
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
},
-/obj/item/device/radio/intercom{
- anyai = 1;
- freerange = 1;
- listening = 0;
- name = "Custom Channel";
- pixel_x = 0;
- pixel_y = 28
+/turf/open/floor/plasteel/showroomfloor,
+/area/security/warden)
+"cxl" = (
+/obj/machinery/computer/shuttle/pod{
+ pixel_x = 0;
+ pixel_y = -32;
+ possible_destinations = "pod_asteroid1";
+ shuttleId = "pod1"
},
-/obj/item/device/radio/intercom{
- broadcasting = 0;
- freerange = 1;
- listening = 1;
- name = "Common Channel";
- pixel_x = 27;
- pixel_y = 5
+/obj/structure/chair{
+ dir = 8
},
-/obj/item/device/radio/intercom{
- anyai = 1;
- broadcasting = 0;
- freerange = 1;
- frequency = 1447;
- name = "Private Channel";
- pixel_x = 0;
- pixel_y = -25
+/obj/machinery/status_display{
+ density = 0;
+ layer = 3;
+ pixel_x = 0;
+ pixel_y = 32
},
-/turf/open/floor/bluegrid,
-/area/ai_monitored/turret_protected/ai)
-"cCS" = (
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/pod_1)
+"cxm" = (
+/turf/closed/wall/mineral/titanium/nodiagonal,
+/area/shuttle/escape)
+"cxn" = (
/obj/structure/lattice,
-/obj/machinery/camera{
- c_tag = "MiniSat External SouthEast";
- dir = 4;
- network = list("MiniSat");
- pixel_x = 0;
- pixel_y = 0;
- start_active = 1
+/obj/effect/landmark{
+ name = "carpspawn"
},
/turf/open/space,
/area/space)
-"cCT" = (
-/obj/docking_port/stationary{
- dheight = 9;
- dir = 2;
- dwidth = 5;
- height = 24;
- id = "syndicate_s";
- name = "south of station";
- turf_type = /turf/open/space;
- width = 18
+"cxo" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = -5;
+ pixel_y = 30
},
-/turf/open/space,
-/area/space)
-"cCU" = (
-/obj/structure/cable{
- d1 = 1;
- d2 = 4;
- icon_state = "1-4"
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"cxp" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 27;
+ pixel_y = 0
},
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/ai)
-"cCV" = (
-/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8";
- pixel_y = 0
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"cxq" = (
+/obj/structure/chair{
+ dir = 8
},
-/turf/closed/wall,
-/area/ai_monitored/turret_protected/ai)
-"cCW" = (
-/obj/machinery/power/smes{
- charge = 5e+006
+/obj/structure/window/reinforced{
+ dir = 4
},
-/obj/structure/cable{
- d2 = 8;
- icon_state = "0-8"
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape)
+"cxr" = (
+/obj/structure/chair{
+ dir = 4
},
-/turf/open/floor/bluegrid,
-/area/ai_monitored/turret_protected/ai)
-"cCX" = (
-/obj/machinery/camera/motion{
- c_tag = "MiniSat AI Chamber South";
- dir = 2;
- network = list("MiniSat")
+/obj/structure/window/reinforced{
+ dir = 8
},
-/turf/open/floor/bluegrid,
-/area/ai_monitored/turret_protected/ai)
-"cCY" = (
-/obj/machinery/power/terminal{
- icon_state = "term";
- dir = 1
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape)
+"cxs" = (
+/obj/structure/chair{
+ dir = 8
},
-/obj/machinery/ai_slipper{
- uses = 10
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape)
+"cxt" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 8;
+ icon_state = "propulsion_l"
},
-/turf/open/floor/bluegrid,
-/area/ai_monitored/turret_protected/ai)
-"cCZ" = (
-/obj/machinery/firealarm{
- dir = 1;
- pixel_y = -24
+/turf/open/floor/plating,
+/area/shuttle/transport)
+"cxu" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/transport)
+"cxv" = (
+/obj/structure/window/shuttle,
+/obj/structure/grille,
+/turf/open/floor/plating,
+/area/shuttle/transport)
+"cxw" = (
+/obj/structure/grille,
+/obj/structure/window/shuttle,
+/turf/open/floor/plating,
+/area/shuttle/transport)
+"cxx" = (
+/obj/item/weapon/storage/pod{
+ pixel_x = 6;
+ pixel_y = -28
},
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/ai)
-"cDa" = (
-/obj/machinery/airalarm{
- dir = 1;
- icon_state = "alarm0";
- pixel_y = -22
+/obj/item/device/radio/intercom{
+ pixel_x = 0;
+ pixel_y = 25
},
-/obj/machinery/holopad,
-/turf/open/floor/plasteel/black,
-/area/ai_monitored/turret_protected/ai)
-"cDb" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/pod_1)
+"cxy" = (
+/obj/structure/shuttle/engine/heater{
+ icon_state = "heater";
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/turf/open/floor/plating,
+/area/shuttle/transport)
+"cxz" = (
+/obj/machinery/computer/shuttle/ferry/request,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/transport)
+"cxA" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/ai_monitored/security/armory)
+"cxB" = (
+/obj/structure/chair,
+/turf/open/floor/pod/dark,
+/area/shuttle/transport)
+"cxC" = (
+/turf/open/floor/pod/light,
+/area/shuttle/transport)
+"cxD" = (
+/obj/structure/shuttle/engine/heater{
+ icon_state = "heater";
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4;
+ pixel_x = 0
+ },
+/turf/open/floor/plating,
+/area/shuttle/transport)
+"cxE" = (
+/obj/machinery/door/airlock/titanium,
+/obj/docking_port/mobile{
+ dir = 8;
+ dwidth = 2;
+ height = 13;
+ id = "ferry";
+ name = "ferry shuttle";
+ port_angle = 0;
+ preferred_direction = 4;
+ roundstart_move = "ferry_away";
+ width = 5
+ },
+/obj/docking_port/stationary{
+ dir = 8;
+ dwidth = 2;
+ height = 13;
+ id = "ferry_home";
+ name = "port bay 2";
+ turf_type = /turf/open/space;
+ width = 5
+ },
+/turf/open/floor/pod/light,
+/area/shuttle/transport)
+"cxF" = (
+/obj/machinery/door/airlock/titanium{
+ name = "Escape Pod Airlock"
+ },
+/obj/docking_port/mobile/pod{
+ dir = 8;
+ id = "pod1";
+ name = "escape pod 1";
+ port_angle = 180
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/pod_1)
+"cxG" = (
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 4;
+ name = "Escape Pod Three";
+ req_access_txt = "0"
+ },
+/turf/open/floor/plating,
+/area/security/main)
+"cxH" = (
+/obj/structure/closet/crate,
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/transport)
+"cxI" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/pod/dark,
+/area/shuttle/transport)
+"cxJ" = (
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 8;
+ name = "Labor Camp Shuttle Airlock";
+ req_access_txt = "2"
+ },
+/turf/open/floor/plating,
+/area/security/processing)
+"cxK" = (
+/obj/machinery/door/airlock/titanium{
+ name = "Emergency Shuttle Airlock"
+ },
+/turf/open/floor/plating,
+/area/shuttle/escape)
+"cxL" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 0;
+ pixel_y = -30
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"cxM" = (
+/obj/machinery/door/airlock/titanium{
+ name = "Emergency Shuttle Cargo"
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"cxN" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 1;
+ name = "Solar Maintenance";
+ req_access = null;
+ req_access_txt = "10; 13"
+ },
+/turf/open/floor/plating,
+/area/maintenance/auxsolarstarboard)
+"cxO" = (
+/obj/machinery/door/airlock/glass{
+ name = "Emergency Shuttle Infirmary"
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/escape)
+"cxP" = (
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 8;
+ name = "Labor Camp Shuttle Airlock"
+ },
+/turf/open/floor/plating,
+/area/security/processing)
+"cxQ" = (
+/turf/open/floor/mineral/titanium/yellow,
+/area/shuttle/escape)
+"cxR" = (
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 27;
+ pixel_y = 0
+ },
+/turf/open/floor/mineral/titanium/yellow,
+/area/shuttle/escape)
+"cxS" = (
+/obj/machinery/sleeper{
+ icon_state = "sleeper-open";
+ dir = 8
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape)
+"cxT" = (
+/obj/structure/table,
+/obj/item/weapon/storage/firstaid/fire,
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = 2;
+ pixel_y = 3
+ },
+/obj/item/weapon/crowbar,
+/obj/structure/extinguisher_cabinet{
+ pixel_x = 27;
+ pixel_y = 0
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/escape)
+"cxU" = (
+/obj/structure/closet,
+/turf/open/floor/mineral/titanium/yellow,
+/area/shuttle/escape)
+"cxV" = (
+/obj/structure/closet/crate,
+/turf/open/floor/mineral/titanium/yellow,
+/area/shuttle/escape)
+"cxW" = (
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 2;
+ name = "External Access";
+ req_access = null;
+ req_access_txt = "13"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fsmaint2)
+"cxX" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/shuttle/engine/heater,
+/turf/open/floor/plating/airless,
+/area/shuttle/escape)
+"cxY" = (
/obj/machinery/camera{
- c_tag = "MiniSat External South";
- dir = 2;
- network = list("MiniSat");
- pixel_x = 0;
- pixel_y = 0;
- start_active = 1
+ c_tag = "Arrivals Escape Pod 1";
+ dir = 8
+ },
+/obj/machinery/light/small,
+/turf/open/floor/plating,
+/area/hallway/secondary/entry)
+"cxZ" = (
+/obj/structure/shuttle/engine/propulsion,
+/turf/open/floor/plating/airless,
+/area/shuttle/escape)
+"cya" = (
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 8;
+ req_access_txt = "13"
+ },
+/turf/open/floor/plating,
+/area/maintenance/fpmaint)
+"cyb" = (
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 1;
+ name = "Escape Pod One"
+ },
+/turf/open/floor/plating,
+/area/hallway/secondary/entry)
+"cyc" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/abandoned)
+"cyd" = (
+/obj/machinery/door/airlock/titanium,
+/obj/docking_port/mobile{
+ dheight = 0;
+ dir = 2;
+ dwidth = 11;
+ height = 22;
+ id = "whiteship";
+ launch_status = 0;
+ name = "NT Medical Ship";
+ port_angle = -90;
+ preferred_direction = 4;
+ roundstart_move = "whiteship_away";
+ timid = null;
+ width = 35
+ },
+/obj/docking_port/stationary{
+ dir = 2;
+ dwidth = 11;
+ height = 22;
+ id = "whiteship_home";
+ name = "SS13 Arrival Docking";
+ turf_type = /turf/open/space;
+ width = 35
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cye" = (
+/obj/machinery/door/airlock/titanium,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cyf" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 8;
+ icon_state = "propulsion_l"
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/abandoned)
+"cyg" = (
+/obj/machinery/door/airlock/command{
+ cyclelinkeddir = 1;
+ name = "Command Tool Storage";
+ req_access = null;
+ req_access_txt = "19"
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/storage/eva)
+"cyh" = (
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 8;
+ name = "Security Escape Airlock";
+ req_access_txt = "2"
+ },
+/turf/open/floor/plating,
+/area/hallway/secondary/exit)
+"cyi" = (
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cyj" = (
+/obj/structure/table,
+/obj/item/weapon/screwdriver,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cyk" = (
+/obj/structure/table,
+/obj/item/device/radio/off,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cyl" = (
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 8;
+ id_tag = null;
+ name = "Port Docking Bay 2";
+ req_access_txt = "0"
+ },
+/turf/open/floor/plating,
+/area/hallway/secondary/entry)
+"cym" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 8;
+ icon_state = "propulsion"
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/abandoned)
+"cyn" = (
+/turf/open/floor/plating,
+/turf/closed/wall/mineral/titanium/interior,
+/area/shuttle/abandoned)
+"cyo" = (
+/obj/structure/shuttle/engine/heater{
+ icon_state = "heater";
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/abandoned)
+"cyp" = (
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 4;
+ name = "Escape Airlock"
+ },
+/turf/open/floor/plating,
+/area/hallway/secondary/exit)
+"cyq" = (
+/obj/machinery/computer/pod{
+ id = "oldship_gun"
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cyr" = (
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 8;
+ name = "Cargo Escape Airlock"
+ },
+/turf/open/floor/plating,
+/area/hallway/secondary/exit)
+"cys" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/supply)
+"cyt" = (
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 1;
+ name = "Port Docking Bay 4";
+ req_access_txt = "0"
+ },
+/turf/open/floor/plating,
+/area/hallway/secondary/entry)
+"cyu" = (
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 1;
+ name = "Port Docking Bay 3";
+ req_access_txt = "0"
+ },
+/turf/open/floor/plating,
+/area/hallway/secondary/entry)
+"cyv" = (
+/turf/open/floor/plating,
+/area/shuttle/abandoned)
+"cyw" = (
+/turf/open/floor/mineral/titanium,
+/turf/closed/wall/mineral/titanium/interior,
+/area/shuttle/abandoned)
+"cyx" = (
+/obj/structure/rack,
+/obj/item/clothing/suit/space/hardsuit/medical,
+/obj/item/clothing/mask/breath,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cyy" = (
+/obj/machinery/mass_driver{
+ dir = 4;
+ icon_state = "mass_driver";
+ id = "oldship_gun"
+ },
+/turf/open/floor/plating,
+/area/shuttle/abandoned)
+"cyz" = (
+/obj/machinery/door/airlock/glass,
+/turf/open/floor/plating,
+/area/shuttle/abandoned)
+"cyA" = (
+/obj/machinery/door/poddoor{
+ id = "oldship_gun";
+ name = "pod bay door"
+ },
+/turf/open/floor/plating,
+/area/shuttle/abandoned)
+"cyB" = (
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/supply)
+"cyC" = (
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 8;
+ req_access_txt = "13"
+ },
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"cyD" = (
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 8;
+ name = "Supply Dock Airlock";
+ req_access_txt = "31"
+ },
+/turf/open/floor/plating,
+/area/quartermaster/storage)
+"cyE" = (
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 8;
+ name = "External Access";
+ req_access = null;
+ req_access_txt = "13"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cyF" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 8;
+ icon_state = "propulsion_r"
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/abandoned)
+"cyG" = (
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 8;
+ name = "Atmospherics External Airlock";
+ req_access_txt = "24"
+ },
+/turf/open/floor/plating,
+/area/atmos)
+"cyH" = (
+/obj/machinery/door/airlock/titanium,
+/turf/open/floor/plating,
+/area/shuttle/abandoned)
+"cyI" = (
+/obj/item/weapon/stock_parts/cell{
+ charge = 100;
+ maxcharge = 15000
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cyJ" = (
+/obj/structure/rack,
+/obj/item/weapon/tank/internals/emergency_oxygen,
+/obj/item/weapon/tank/internals/emergency_oxygen,
+/obj/item/weapon/tank/internals/emergency_oxygen,
+/obj/item/weapon/tank/internals/emergency_oxygen,
+/obj/item/weapon/storage/toolbox/mechanical,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cyK" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 8;
+ name = "Solar Maintenance";
+ req_access = null;
+ req_access_txt = "10; 13"
+ },
+/turf/open/floor/plating,
+/area/maintenance/portsolar)
+"cyL" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cyM" = (
+/obj/machinery/door/airlock/engineering{
+ cyclelinkeddir = 1;
+ name = "Engine Room";
+ req_access_txt = "10"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cyN" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "QMLoad2"
+ },
+/obj/machinery/door/poddoor{
+ id = "QMLoaddoor2";
+ name = "supply dock loading door"
+ },
+/turf/open/floor/plating,
+/area/shuttle/supply)
+"cyO" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cyP" = (
+/obj/item/weapon/shard{
+ icon_state = "medium"
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cyQ" = (
+/obj/machinery/door/airlock/titanium{
+ name = "Supply Shuttle Airlock";
+ req_access_txt = "31"
+ },
+/turf/open/floor/plating,
+/area/shuttle/supply)
+"cyR" = (
+/obj/structure/grille,
+/obj/structure/window/shuttle,
+/turf/open/floor/plating,
+/area/shuttle/abandoned)
+"cyS" = (
+/obj/machinery/button/door{
+ dir = 2;
+ id = "QMLoaddoor2";
+ name = "Loading Doors";
+ pixel_x = 24;
+ pixel_y = 8
+ },
+/obj/machinery/button/door{
+ id = "QMLoaddoor";
+ name = "Loading Doors";
+ pixel_x = 24;
+ pixel_y = -8
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/supply)
+"cyT" = (
+/obj/machinery/door/airlock/titanium{
+ name = "Supply Shuttle Airlock";
+ req_access_txt = "31"
+ },
+/obj/docking_port/mobile/supply{
+ dwidth = 5;
+ width = 12
+ },
+/obj/docking_port/stationary{
+ dir = 8;
+ dwidth = 5;
+ height = 7;
+ id = "supply_home";
+ name = "Cargo Bay";
+ width = 12
+ },
+/turf/open/floor/plating,
+/area/shuttle/supply)
+"cyU" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 1;
+ name = "Solar Maintenance";
+ req_access = null;
+ req_access_txt = "10; 13"
+ },
+/turf/open/floor/plating,
+/area/maintenance/starboardsolar)
+"cyV" = (
+/obj/machinery/door/window,
+/turf/open/floor/mineral/titanium/purple,
+/area/shuttle/abandoned)
+"cyW" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet,
+/obj/structure/window/reinforced,
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/floor/mineral/titanium/purple,
+/area/shuttle/abandoned)
+"cyX" = (
+/obj/structure/table,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cyY" = (
+/obj/structure/table,
+/obj/item/weapon/gun/energy/laser/retro,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cyZ" = (
+/obj/machinery/conveyor{
+ dir = 4;
+ id = "QMLoad"
+ },
+/obj/machinery/door/poddoor{
+ id = "QMLoaddoor";
+ name = "supply dock loading door"
+ },
+/turf/open/floor/plating,
+/area/shuttle/supply)
+"cza" = (
+/obj/machinery/door/airlock/glass,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"czb" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/effect/decal/remains/human,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"czc" = (
+/obj/machinery/computer/shuttle/white_ship,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"czd" = (
+/obj/machinery/portable_atmospherics/canister/oxygen,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"cze" = (
+/obj/structure/table,
+/obj/item/weapon/tank/internals/oxygen,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"czf" = (
+/turf/open/floor/mineral/titanium/blue,
+/turf/closed/wall/mineral/titanium/interior,
+/area/shuttle/supply)
+"czg" = (
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 8;
+ name = "Escape Pod Four";
+ req_access = null;
+ req_access_txt = "0";
+ shuttledocked = 1
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"czh" = (
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 1;
+ name = "Engineering External Access";
+ req_access = null;
+ req_access_txt = "10;13"
+ },
+/obj/structure/fans/tiny,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"czi" = (
+/obj/machinery/door/airlock/titanium,
+/turf/open/floor/plasteel/shuttle/white,
+/area/shuttle/abandoned)
+"czj" = (
+/obj/machinery/door/airlock/glass,
+/turf/open/floor/plasteel/shuttle/white,
+/area/shuttle/abandoned)
+"czk" = (
+/obj/machinery/door/airlock/external{
+ cyclelinkeddir = 8;
+ name = "MiniSat External Access";
+ req_access = null;
+ req_access_txt = "65;13"
+ },
+/turf/open/floor/plating,
+/area/ai_monitored/turret_protected/aisat_interior)
+"czl" = (
+/obj/machinery/door/window/northright,
+/obj/effect/decal/remains/human,
+/turf/open/floor/mineral/titanium/purple,
+/area/shuttle/abandoned)
+"czm" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet,
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/turf/open/floor/mineral/titanium/purple,
+/area/shuttle/abandoned)
+"czn" = (
+/obj/structure/frame/computer{
+ anchored = 1
+ },
+/turf/open/floor/plasteel/shuttle/white,
+/area/shuttle/abandoned)
+"czo" = (
+/turf/open/space,
+/area/shuttle/syndicate)
+"czp" = (
+/obj/structure/window/reinforced{
+ dir = 1
+ },
+/obj/structure/shuttle/engine/heater,
+/turf/open/floor/plating/airless,
+/area/shuttle/supply)
+"czq" = (
+/obj/machinery/porta_turret/syndicate{
+ dir = 5
+ },
+/turf/closed/wall/mineral/plastitanium,
+/area/shuttle/syndicate)
+"czr" = (
+/obj/machinery/portable_atmospherics/scrubber,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"czs" = (
+/obj/structure/shuttle/engine/propulsion{
+ icon_state = "burst_l"
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/supply)
+"czt" = (
+/obj/structure/shuttle/engine/propulsion,
+/turf/open/floor/plating/airless,
+/area/shuttle/supply)
+"czu" = (
+/obj/structure/shuttle/engine/propulsion{
+ icon_state = "burst_r"
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/supply)
+"czv" = (
+/turf/open/space,
+/obj/machinery/porta_turret/syndicate{
+ dir = 6
+ },
+/turf/closed/wall/mineral/plastitanium{
+ dir = 4;
+ icon_state = "diagonalWall3"
+ },
+/area/shuttle/syndicate)
+"czw" = (
+/obj/item/device/multitool,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"czx" = (
+/obj/structure/chair,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"czy" = (
+/obj/structure/frame/computer{
+ anchored = 1
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"czz" = (
+/turf/open/space,
+/obj/machinery/porta_turret/syndicate{
+ dir = 10
+ },
+/turf/closed/wall/mineral/plastitanium{
+ icon_state = "diagonalWall3"
+ },
+/area/shuttle/syndicate)
+"czA" = (
+/obj/item/weapon/scalpel,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"czB" = (
+/obj/structure/table,
+/obj/item/weapon/storage/firstaid/regular{
+ pixel_x = 6;
+ pixel_y = -5
+ },
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"czC" = (
+/obj/machinery/sleeper{
+ icon_state = "sleeper-open";
+ dir = 8
+ },
+/obj/effect/decal/remains/human,
+/turf/open/floor/mineral/titanium,
+/area/shuttle/abandoned)
+"czD" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"czE" = (
+/turf/open/floor/engine,
+/area/engine/engineering)
+"czF" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/obj/machinery/meter,
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"czG" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"czH" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"czI" = (
+/obj/item/weapon/wrench,
+/obj/structure/lattice/catwalk,
+/turf/open/space,
+/area/space/nearstation)
+"czJ" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/on{
+ dir = 1
+ },
+/turf/open/floor/plating/airless,
+/area/maintenance/incinerator)
+"czK" = (
+/turf/closed/wall,
+/area/security/vacantoffice)
+"czL" = (
+/obj/machinery/computer/shuttle/pod{
+ pixel_y = -32;
+ possible_destinations = "pod_asteroid4";
+ shuttleId = "pod4"
+ },
+/obj/structure/chair{
+ dir = 4
+ },
+/obj/machinery/status_display{
+ density = 0;
+ layer = 3;
+ pixel_x = 0;
+ pixel_y = 32
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/pod_4)
+"czM" = (
+/obj/item/device/radio/intercom{
+ pixel_y = 25
+ },
+/obj/item/weapon/storage/pod{
+ pixel_x = 6;
+ pixel_y = -32
+ },
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/mineral/titanium/blue,
+/area/shuttle/pod_4)
+"czN" = (
+/obj/docking_port/stationary/random{
+ dir = 4;
+ id = "pod_asteroid4";
+ name = "asteroid"
+ },
+/turf/open/space,
+/area/space)
+"czO" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"czP" = (
+/obj/structure/chair/stool/bar,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/bar,
+/area/crew_quarters/bar)
+"czQ" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/structure/disposalpipe/segment,
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"czR" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"czS" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/maintenance/asmaint2)
+"czT" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"czU" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"czV" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"czW" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"czX" = (
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"czY" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"czZ" = (
+/obj/structure/chair,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cAa" = (
+/obj/structure/chair,
+/obj/item/weapon/storage/fancy/cigarettes,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cAb" = (
+/obj/structure/closet,
+/obj/structure/disposalpipe/segment{
+ dir = 2;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"cAc" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/maintenance/aft)
+"cAd" = (
+/obj/structure/reagent_dispensers/fueltank,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"cAe" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/reagent_dispensers/fueltank,
+/turf/open/floor/plating,
+/area/maintenance/asmaint)
+"cAf" = (
+/obj/structure/disposaloutlet,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/open/floor/plating/airless,
+/area/space)
+"cAg" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"cAh" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cAi" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cAj" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/turf/closed/wall/r_wall,
+/area/engine/engine_smes)
+"cAk" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4";
+ tag = ""
+ },
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"cAl" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/obj/structure/cable/yellow{
+ icon_state = "1-4";
+ d1 = 1;
+ d2 = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cAm" = (
+/obj/machinery/power/supermatter_shard/crystal,
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cAn" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"cAo" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/effect/turf_decal/stripes/corner{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cAp" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 4;
+ name = "Cooling Loop to Gas";
+ on = 1
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cAq" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 4;
+ initialize_directions = 11
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cAr" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 4;
+ name = "Gas to Mix";
+ on = 0
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cAs" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 8
+ },
+/obj/machinery/meter,
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cAt" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cAu" = (
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/power/emitter{
+ anchored = 1;
+ dir = 4;
+ icon_state = "emitter";
+ state = 2;
+ tag = "icon-emitter (NORTH)"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cAv" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4";
+ tag = "90Curve"
+ },
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"cAw" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8";
+ tag = ""
+ },
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"cAx" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8";
+ tag = ""
+ },
+/turf/open/floor/plating/airless,
+/area/space/nearstation)
+"cAy" = (
+/obj/structure/closet/secure_closet/freezer/kitchen/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cAz" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/plasteel/black,
+/area/chapel/office)
+"cAA" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cAB" = (
+/turf/closed/wall/r_wall,
+/area/maintenance/aft)
+"cAC" = (
+/obj/structure/sink/kitchen{
+ dir = 8;
+ pixel_x = 11
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cAD" = (
+/obj/structure/table,
+/obj/item/weapon/kitchen/knife,
+/obj/item/weapon/storage/box/donkpockets,
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cAE" = (
+/obj/structure/table/glass,
+/obj/item/weapon/reagent_containers/food/condiment/saltshaker{
+ pixel_y = 2
+ },
+/obj/item/weapon/reagent_containers/food/condiment/peppermill{
+ pixel_x = 2
+ },
+/obj/item/weapon/reagent_containers/food/snacks/mint{
+ pixel_y = 9
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cAF" = (
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"cAG" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/machinery/power/apc{
+ dir = 2;
+ name = "Head of Personnel APC";
+ pixel_y = -24
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/crew_quarters/heads)
+"cAH" = (
+/obj/machinery/processor,
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cAI" = (
+/obj/machinery/conveyor_switch/oneway{
+ convdir = -1;
+ id = "garbage";
+ name = "disposal coveyor"
+ },
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"cAJ" = (
+/obj/structure/closet,
+/turf/open/floor/plating,
+/area/maintenance/disposal)
+"cAK" = (
+/obj/machinery/light/small,
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cAL" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/mob/living/simple_animal/hostile/lizard{
+ name = "Wags-His-Tail";
+ real_name = "Wags-His-Tail"
+ },
+/turf/open/floor/plasteel,
+/area/janitor)
+"cAM" = (
+/obj/structure/table/wood,
+/obj/structure/disposalpipe/segment,
+/obj/item/toy/cards/deck/cas,
+/obj/item/toy/cards/deck/cas/black{
+ pixel_x = -2;
+ pixel_y = 6
+ },
+/turf/open/floor/wood,
+/area/library)
+"cAN" = (
+/obj/machinery/door/airlock/maintenance{
+ name = "Security Maintenance";
+ req_access_txt = "1"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/security/main)
+"cAO" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cAP" = (
+/obj/structure/sign/fire,
+/turf/closed/wall/r_wall,
+/area/engine/engineering)
+"cAQ" = (
+/obj/structure/chair,
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cAR" = (
+/obj/machinery/door/window{
+ dir = 1;
+ name = "AI Core Door";
+ req_access_txt = "16"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/bluegrid,
+/area/ai_monitored/turret_protected/ai)
+"cAS" = (
+/obj/effect/landmark/start{
+ name = "AI"
+ },
+/obj/item/device/radio/intercom{
+ broadcasting = 0;
+ freerange = 1;
+ listening = 1;
+ name = "Common Channel";
+ pixel_x = -27;
+ pixel_y = -9
+ },
+/obj/item/device/radio/intercom{
+ anyai = 1;
+ freerange = 1;
+ listening = 0;
+ name = "Custom Channel";
+ pixel_x = 0;
+ pixel_y = -31
+ },
+/obj/item/device/radio/intercom{
+ anyai = 1;
+ broadcasting = 0;
+ freerange = 1;
+ frequency = 1447;
+ name = "Private Channel";
+ pixel_x = 27;
+ pixel_y = -9
+ },
+/obj/machinery/newscaster/security_unit{
+ pixel_x = -28;
+ pixel_y = -28
+ },
+/obj/machinery/requests_console{
+ department = "AI";
+ departmentType = 5;
+ pixel_x = 28;
+ pixel_y = -28
+ },
+/turf/open/floor/bluegrid,
+/area/ai_monitored/turret_protected/ai)
+"cAT" = (
+/obj/machinery/ai_slipper{
+ uses = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/ai)
+"cAU" = (
+/obj/structure/lattice,
+/obj/machinery/camera{
+ c_tag = "MiniSat External SouthWest";
+ dir = 8;
+ network = list("MiniSat");
+ pixel_x = 0;
+ pixel_y = 0;
+ start_active = 1
+ },
+/turf/open/space,
+/area/space)
+"cAV" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/showcase{
+ density = 0;
+ desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze.";
+ dir = 8;
+ icon = 'icons/mob/robots.dmi';
+ icon_state = "robot_old";
+ name = "Cyborg Statue";
+ pixel_x = 9;
+ pixel_y = 2
+ },
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/ai)
+"cAW" = (
+/obj/structure/showcase{
+ density = 0;
+ desc = "An old, deactivated cyborg. Whilst once actively used to guard against intruders, it now simply intimidates them with its cold, steely gaze.";
+ dir = 4;
+ icon = 'icons/mob/robots.dmi';
+ icon_state = "robot_old";
+ name = "Cyborg Statue";
+ pixel_x = -9;
+ pixel_y = 2
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/ai)
+"cAX" = (
+/obj/structure/lattice,
+/obj/machinery/camera{
+ c_tag = "MiniSat External SouthEast";
+ dir = 4;
+ network = list("MiniSat");
+ pixel_x = 0;
+ pixel_y = 0;
+ start_active = 1
+ },
+/turf/open/space,
+/area/space)
+"cAY" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf/closed/wall,
+/area/ai_monitored/turret_protected/ai)
+"cAZ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/ai)
+"cBa" = (
+/obj/machinery/power/smes{
+ charge = 5e+006
+ },
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/bluegrid,
+/area/ai_monitored/turret_protected/ai)
+"cBb" = (
+/obj/machinery/camera/motion{
+ c_tag = "MiniSat AI Chamber South";
+ dir = 2;
+ network = list("MiniSat")
+ },
+/turf/open/floor/bluegrid,
+/area/ai_monitored/turret_protected/ai)
+"cBc" = (
+/obj/machinery/power/terminal{
+ icon_state = "term";
+ dir = 1
+ },
+/obj/machinery/ai_slipper{
+ uses = 10
+ },
+/turf/open/floor/bluegrid,
+/area/ai_monitored/turret_protected/ai)
+"cBd" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/ai)
+"cBe" = (
+/obj/machinery/airalarm{
+ dir = 1;
+ icon_state = "alarm0";
+ pixel_y = -22
+ },
+/obj/machinery/holopad,
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/ai)
+"cBf" = (
+/obj/machinery/camera{
+ c_tag = "MiniSat External South";
+ dir = 2;
+ network = list("MiniSat");
+ pixel_x = 0;
+ pixel_y = 0;
+ start_active = 1
+ },
+/turf/open/space,
+/area/space)
+"cBg" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plating,
+/area/hydroponics)
+"cBh" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/barber,
+/area/crew_quarters/locker)
+"cBi" = (
+/obj/effect/landmark/event_spawn,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/plasteel/floorgrime,
+/area/quartermaster/storage)
+"cBj" = (
+/obj/structure/table,
+/obj/item/weapon/folder/blue,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/ai_upload)
+"cBk" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"cBl" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/hallway/secondary/exit)
+"cBm" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/hallway/primary/starboard)
+"cBn" = (
+/obj/machinery/camera{
+ c_tag = "Locker Room Toilets";
+ dir = 8;
+ network = list("SS13")
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/freezer,
+/area/crew_quarters/locker/locker_toilet)
+"cBo" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/wood,
+/area/crew_quarters/captain)
+"cBp" = (
+/obj/effect/landmark/event_spawn,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"cBq" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/quartermaster/office)
+"cBr" = (
+/obj/effect/landmark/event_spawn,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"cBs" = (
+/obj/structure/table/optable{
+ name = "Robotics Operating Table"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/white,
+/area/assembly/robotics)
+"cBt" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/white,
+/area/toxins/explab)
+"cBu" = (
+/obj/machinery/ai_status_display{
+ pixel_y = 32
+ },
+/obj/effect/landmark/event_spawn,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/plasteel/white,
+/area/crew_quarters/hor)
+"cBv" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/security/checkpoint/supply)
+"cBw" = (
+/obj/machinery/door/firedoor,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/hallway/primary/central)
+"cBx" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/white,
+/area/medical/research{
+ name = "Research Division"
+ })
+"cBy" = (
+/obj/machinery/door/airlock{
+ name = "Custodial Closet";
+ req_access_txt = "26"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/janitor)
+"cBz" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/engine,
+/area/toxins/xenobiology)
+"cBA" = (
+/obj/machinery/button/massdriver{
+ dir = 2;
+ id = "toxinsdriver";
+ pixel_y = 24
+ },
+/obj/effect/landmark/event_spawn,
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/turf/open/floor/plasteel,
+/area/toxins/mixing)
+"cBB" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/quartermaster/miningdock)
+"cBC" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/storage/tech)
+"cBD" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plating,
+/area/maintenance/asmaint)
+"cBE" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/engine/vacuum,
+/area/toxins/mixing)
+"cBF" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
+ dir = 8
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/atmos)
+"cBG" = (
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/white,
+/area/toxins/xenobiology)
+"cBH" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/hallway/primary/aft)
+"cBI" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/security/checkpoint/engineering)
+"cBJ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 9
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/atmos)
+"cBK" = (
+/obj/item/device/radio/intercom{
+ name = "Station Intercom (General)";
+ pixel_y = -35
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/tcommsat/computer)
+"cBL" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"cBM" = (
+/obj/structure/table/reinforced,
+/obj/item/weapon/folder/yellow,
+/obj/item/weapon/paper/monitorkey,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/neutral{
+ dir = 2
+ },
+/area/engine/chiefs_office)
+"cBN" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cBO" = (
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cBP" = (
+/obj/machinery/portable_atmospherics/canister/air,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/engine/air,
+/area/atmos)
+"cBQ" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cBR" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cBS" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/plasteel/black,
+/area/ai_monitored/turret_protected/AIsatextFS{
+ name = "AI Satellite Hallway"
+ })
+"cBT" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/light/small{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"cBU" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/structure/closet/emcloset,
+/turf/open/floor/plating,
+/area/maintenance/asmaint2)
+"cBV" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/security{
+ name = "Security Office";
+ req_access = null;
+ req_access_txt = "1"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/security/main)
+"cBW" = (
+/obj/docking_port/stationary{
+ dheight = 9;
+ dir = 2;
+ dwidth = 5;
+ height = 24;
+ id = "syndicate_southmaint";
+ name = "south maintenance airlock";
+ turf_type = /turf/open/space;
+ width = 18
+ },
+/turf/open/space,
+/area/space)
+"cBX" = (
+/obj/docking_port/stationary{
+ dheight = 9;
+ dir = 2;
+ dwidth = 5;
+ height = 24;
+ id = "syndicate_se";
+ name = "southeast of station";
+ turf_type = /turf/open/space;
+ width = 18
+ },
+/turf/open/space,
+/area/space)
+"cBY" = (
+/obj/docking_port/stationary{
+ dheight = 9;
+ dir = 2;
+ dwidth = 5;
+ height = 24;
+ id = "syndicate_s";
+ name = "south of station";
+ turf_type = /turf/open/space;
+ width = 18
+ },
+/turf/open/space,
+/area/space)
+"cBZ" = (
+/obj/structure/table/wood,
+/obj/item/clothing/under/burial,
+/obj/item/clothing/under/burial,
+/obj/item/clothing/under/burial,
+/obj/item/clothing/under/burial,
+/obj/item/clothing/under/burial,
+/obj/item/clothing/under/burial,
+/turf/open/floor/plasteel/grimy,
+/area/chapel/office)
+"cCa" = (
+/obj/structure/table,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel/bar,
+/area/maintenance/bar)
+"cCb" = (
+/obj/structure/table,
+/obj/item/stack/cable_coil{
+ amount = 5
+ },
+/obj/item/device/flashlight,
+/turf/open/floor/plating,
+/area/construction)
+"cCc" = (
+/obj/structure/rack{
+ dir = 1
+ },
+/obj/item/clothing/suit/hazardvest,
+/turf/open/floor/plating,
+/area/construction)
+"cCd" = (
+/turf/open/floor/plasteel,
+/area/construction)
+"cCe" = (
+/obj/structure/closet/crate,
+/turf/open/floor/plating,
+/area/construction)
+"cCf" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/construction)
+"cCg" = (
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cCh" = (
+/obj/item/weapon/bedsheet/red,
+/mob/living/simple_animal/bot/secbot/beepsky{
+ name = "Officer Beepsky"
+ },
+/turf/open/floor/plating,
+/area/security/processing)
+"cCi" = (
+/turf/closed/wall,
+/area/security/vacantoffice2)
+"cCj" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/security/detectives_office)
+"cCk" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/security/detectives_office)
+"cCl" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/port)
+"cCm" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/turf/open/floor/plating,
+/area/maintenance/port)
+"cCn" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "Detective's Office APC";
+ pixel_x = 24;
+ pixel_y = 0
+ },
+/obj/structure/cable,
+/turf/open/floor/plating,
+/area/maintenance/port)
+"cCo" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plasteel,
+/area/quartermaster/storage)
+"cCp" = (
+/obj/structure/closet/crate/freezer,
+/obj/item/weapon/reagent_containers/blood/empty,
+/obj/item/weapon/reagent_containers/blood/empty,
+/obj/item/weapon/reagent_containers/blood/AMinus,
+/obj/item/weapon/reagent_containers/blood/BMinus{
+ pixel_x = -4;
+ pixel_y = 4
+ },
+/obj/item/weapon/reagent_containers/blood/BPlus{
+ pixel_x = 1;
+ pixel_y = 2
+ },
+/obj/item/weapon/reagent_containers/blood/OMinus,
+/obj/item/weapon/reagent_containers/blood/OPlus{
+ pixel_x = -2;
+ pixel_y = -1
+ },
+/obj/item/weapon/reagent_containers/blood/random,
+/obj/item/weapon/reagent_containers/blood/random,
+/obj/item/weapon/reagent_containers/blood/APlus,
+/obj/item/weapon/reagent_containers/blood/random,
+/turf/open/floor/plasteel,
+/area/medical/sleeper)
+"cCq" = (
+/obj/machinery/deepfryer,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"cCr" = (
+/obj/machinery/deepfryer,
+/turf/open/floor/plasteel/cafeteria,
+/area/crew_quarters/kitchen)
+"cCs" = (
+/obj/structure/mining_shuttle_beacon{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/shuttle/auxillary_base)
+"cCt" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/docking_port/stationary/public_mining_dock{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/shuttle/auxillary_base)
+"cCu" = (
+/obj/machinery/door/airlock/external,
+/turf/open/floor/pod/dark,
+/area/shuttle/transport)
+"cCv" = (
+/turf/open/floor/pod/light,
+/area/space)
+"cCw" = (
+/obj/machinery/door/airlock/titanium,
+/turf/open/floor/pod/light,
+/area/shuttle/transport)
+"cCx" = (
+/obj/machinery/computer/shuttle/ferry/request,
+/turf/open/floor/pod/dark,
+/area/shuttle/transport)
+"cCy" = (
+/obj/structure/shuttle/engine/heater{
+ icon_state = "heater";
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 1;
+ pixel_y = 1
+ },
+/turf/open/floor/plating,
+/area/shuttle/transport)
+"cCz" = (
+/obj/machinery/door/airlock/external,
+/turf/open/floor/pod/light,
+/area/shuttle/transport)
+"cCA" = (
+/turf/open/floor/pod/light,
+/area/space)
+"cCB" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 10;
+ pixel_x = 0;
+ initialize_directions = 10
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"cCC" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"cCD" = (
+/obj/machinery/atmospherics/pipe/simple/yellow/visible,
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 4;
+ name = "Mix to Engine";
+ on = 0
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"cCE" = (
+/obj/machinery/atmospherics/pipe/simple/green/visible,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/atmos)
+"cCF" = (
+/obj/structure/grille,
+/obj/machinery/atmospherics/pipe/simple/cyan/visible,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/atmos)
+"cCG" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 10
+ },
+/turf/open/space,
+/area/space/nearstation)
+"cCH" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/turf/open/space,
+/area/space/nearstation)
+"cCI" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/turf/open/space,
+/area/space/nearstation)
+"cCJ" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/turf/open/space,
+/area/space/nearstation)
+"cCK" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/turf/open/space,
+/area/space/nearstation)
+"cCL" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/yellow/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/turf/open/space,
+/area/space/nearstation)
+"cCM" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/turf/open/space,
+/area/space/nearstation)
+"cCN" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/green/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/turf/open/space,
+/area/space/nearstation)
+"cCO" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/turf/open/space,
+/area/space/nearstation)
+"cCP" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 5
+ },
+/turf/open/space,
+/area/space/nearstation)
+"cCQ" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/turf/open/space,
+/area/space/nearstation)
+"cCR" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 10
+ },
+/turf/open/space,
+/area/space/nearstation)
+"cCS" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/obj/structure/lattice,
+/turf/open/space,
+/area/space/nearstation)
+"cCT" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/closet/firecloset,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cCU" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/obj/structure/lattice,
+/turf/open/space,
+/area/space/nearstation)
+"cCV" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/turf/open/space,
+/area/space/nearstation)
+"cCW" = (
+/obj/machinery/portable_atmospherics/canister/freon,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cCX" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/turf/open/space,
+/area/space/nearstation)
+"cCY" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/landmark/start{
+ name = "Station Engineer"
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cCZ" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/turf/open/space,
+/area/space/nearstation)
+"cDa" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/turf/open/space,
+/area/space/nearstation)
+"cDb" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/turf/open/space,
+/area/space/nearstation)
+"cDc" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/turf/open/space,
+/area/space/nearstation)
+"cDd" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/turf/open/space,
+/area/space/nearstation)
+"cDe" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/closet/radiation,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cDf" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/turf/open/space,
+/area/space/nearstation)
+"cDg" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cDh" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 1
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/structure/table/reinforced,
+/obj/item/weapon/storage/toolbox/mechanical,
+/obj/item/device/flashlight,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/item/weapon/pipe_dispenser,
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cDi" = (
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/table/reinforced,
+/obj/item/clothing/suit/radiation,
+/obj/item/clothing/head/radiation,
+/obj/item/clothing/glasses/meson,
+/obj/item/clothing/glasses/meson,
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cDj" = (
+/obj/structure/cable/yellow{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cDk" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ tag = "icon-intact (EAST)";
+ icon_state = "intact";
+ dir = 4
+ },
+/obj/structure/grille,
+/obj/structure/window/fulltile,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cDl" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/vending/tool,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cDm" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/vending/engivend,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cDn" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/turf/open/space,
+/area/space/nearstation)
+"cDo" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cDp" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cDq" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cDr" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cDs" = (
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cDt" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cDu" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/turf/open/space,
+/area/space/nearstation)
+"cDv" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/components/trinary/filter/flipped{
+ tag = "icon-filter_off_f (EAST)";
+ icon_state = "filter_off_f";
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cDw" = (
+/obj/effect/turf_decal/stripes/line,
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cDx" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "Atmos to Loop";
+ on = 0
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cDy" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cDz" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cDA" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/orange/visible,
+/turf/open/space,
+/area/space/nearstation)
+"cDB" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/effect/landmark/start{
+ name = "Station Engineer"
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cDC" = (
+/obj/item/weapon/wrench,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{
+ dir = 6
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"cDD" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{
+ tag = "icon-manifold (EAST)";
+ name = "scrubbers pipe";
+ icon_state = "manifold";
+ dir = 4
+ },
+/obj/machinery/meter,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"cDE" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1;
+ name = "External Gas to Loop"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"cDF" = (
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1;
+ name = "External Gas to Loop"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"cDG" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cDH" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/item/clothing/mask/gas{
+ pixel_x = 3;
+ pixel_y = 3
+ },
+/obj/item/clothing/mask/gas,
+/obj/item/clothing/mask/gas{
+ pixel_x = -3;
+ pixel_y = -3
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cDI" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 5
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cDJ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cDK" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cDL" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/engine/engineering)
+"cDM" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/engine/engineering)
+"cDN" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/engine/engineering)
+"cDO" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/engine/engineering)
+"cDP" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/engine/engineering)
+"cDQ" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/engine/engineering)
+"cDR" = (
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/turf/closed/wall/r_wall,
+/area/engine/engineering)
+"cDS" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/turf/open/space,
+/area/space)
+"cDT" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/turf/open/space,
+/area/space)
+"cDU" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/turf/open/space,
+/area/space)
+"cDV" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/turf/open/space,
+/area/space)
+"cDW" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/turf/open/space,
+/area/space/nearstation)
+"cDX" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 4
+ },
+/turf/open/space,
+/area/space/nearstation)
+"cDY" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/simple/orange/visible{
+ dir = 9
+ },
+/turf/open/space,
+/area/space/nearstation)
+"cDZ" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/closet/radiation,
+/turf/open/floor/plasteel,
+/area/engine/engineering)
+"cEa" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"cEb" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ dir = 1
+ },
+/obj/machinery/portable_atmospherics/canister/nitrogen,
+/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"cEc" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cEd" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/camera{
+ c_tag = "Engineering Supermatter West";
+ dir = 4;
+ network = list("SS13")
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cEe" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cEf" = (
+/obj/machinery/ai_status_display,
+/turf/closed/wall/r_wall,
+/area/engine/engineering)
+"cEg" = (
+/obj/machinery/status_display,
+/turf/closed/wall/r_wall,
+/area/engine/engineering)
+"cEh" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cEi" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Engineering Supermatter East";
+ dir = 8;
+ network = list("SS13");
+ pixel_x = 0;
+ pixel_y = 0
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cEj" = (
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"cEk" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"cEl" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 6
+ },
+/obj/structure/lattice,
+/turf/open/space,
+/area/space)
+"cEm" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 4
+ },
+/turf/open/space,
+/area/space)
+"cEn" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 4
+ },
+/obj/structure/lattice,
+/turf/open/space,
+/area/space)
+"cEo" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 4
+ },
+/turf/open/space,
+/area/space)
+"cEp" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 4
+ },
+/turf/open/space,
+/area/space)
+"cEq" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 4
+ },
+/turf/open/space,
+/area/space)
+"cEr" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cEs" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "Gas to Cooling Loop";
+ on = 1
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cEt" = (
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "engsm";
+ name = "Radiation Chamber Shutters"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cEu" = (
+/obj/machinery/power/rad_collector{
+ anchored = 1
+ },
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cEv" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cEw" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cEx" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cEy" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ icon_state = "manifold";
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cEz" = (
+/obj/machinery/power/rad_collector{
+ anchored = 1
+ },
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cEA" = (
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "engsm";
+ name = "Radiation Chamber Shutters"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cEB" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8";
+ tag = ""
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 8
+ },
+/obj/machinery/meter,
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cEC" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 8;
+ name = "Mix to Gas";
+ on = 0
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cED" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cEE" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 5
+ },
+/turf/open/space,
+/area/space)
+"cEF" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 4
+ },
+/turf/open/space,
+/area/space)
+"cEG" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 4
+ },
+/turf/open/space,
+/area/space)
+"cEH" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 4
+ },
+/turf/open/space,
+/area/space)
+"cEI" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 4
+ },
+/turf/open/space,
+/area/space)
+"cEJ" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 4
+ },
+/turf/open/space,
+/area/space)
+"cEK" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/closed/wall/r_wall,
+/area/engine/engineering)
+"cEL" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/airalarm{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cEM" = (
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "engsm";
+ name = "Radiation Chamber Shutters"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/item/weapon/tank/internals/plasma,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cEN" = (
+/obj/machinery/power/rad_collector{
+ anchored = 1
+ },
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cEO" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cEP" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cEQ" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cER" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/manifold/general/visible{
+ icon_state = "manifold";
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cES" = (
+/obj/machinery/power/rad_collector{
+ anchored = 1
+ },
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cET" = (
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "engsm";
+ name = "Radiation Chamber Shutters"
+ },
+/obj/effect/decal/cleanable/oil,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cEU" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8";
+ tag = ""
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cEV" = (
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"cEW" = (
+/obj/machinery/atmospherics/components/unary/portables_connector/visible{
+ icon_state = "connector_map";
+ dir = 8
+ },
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"cEX" = (
+/turf/closed/wall/r_wall,
+/area/space)
+"cEY" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 6
+ },
+/obj/structure/lattice,
+/turf/open/space,
+/area/space)
+"cEZ" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 4
+ },
+/obj/structure/lattice,
+/turf/open/space,
+/area/space)
+"cFa" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 4
+ },
+/obj/structure/lattice,
+/turf/open/space,
+/area/space)
+"cFb" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cFc" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/obj/structure/cable/yellow{
+ icon_state = "1-4";
+ d1 = 1;
+ d2 = 4
+ },
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 2;
+ icon_state = "pump_map";
+ name = "Cooling Loop Bypass"
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cFd" = (
+/obj/machinery/power/rad_collector{
+ anchored = 1
+ },
+/obj/structure/cable/yellow{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cFe" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 5
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cFf" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 8;
+ on = 1;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cFg" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 4;
+ on = 1
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cFh" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cFi" = (
+/obj/machinery/power/rad_collector{
+ anchored = 1
+ },
+/obj/structure/cable/yellow{
+ d2 = 4;
+ icon_state = "0-4"
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cFj" = (
+/obj/machinery/door/poddoor/shutters/preopen{
+ id = "engsm";
+ name = "Radiation Chamber Shutters"
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cFk" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/structure/cable/yellow{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8";
+ tag = ""
+ },
+/obj/machinery/atmospherics/components/binary/pump{
+ dir = 1;
+ name = "Mix Bypass"
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cFl" = (
+/turf/closed/wall/r_wall,
+/area/space)
+"cFm" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
+/obj/structure/lattice,
+/turf/open/space,
+/area/space)
+"cFn" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 6
+ },
+/turf/open/space,
+/area/space)
+"cFo" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 10
+ },
+/obj/structure/lattice,
+/turf/open/space,
+/area/space)
+"cFp" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 6
+ },
+/turf/open/space,
+/area/space)
+"cFq" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 10
+ },
+/obj/structure/lattice,
+/turf/open/space,
+/area/space)
+"cFr" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 6
+ },
+/turf/open/space,
+/area/space)
+"cFs" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 10
+ },
+/obj/structure/lattice,
+/turf/open/space,
+/area/space)
+"cFt" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 6
+ },
+/turf/open/space,
+/area/space)
+"cFu" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/obj/machinery/meter,
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cFv" = (
+/obj/machinery/status_display,
+/turf/closed/wall/r_wall,
+/area/engine/engineering)
+"cFw" = (
+/obj/structure/sign/electricshock,
+/turf/closed/wall/r_wall,
+/area/engine/engineering)
+"cFx" = (
+/obj/machinery/ai_status_display,
+/turf/closed/wall/r_wall,
+/area/engine/engineering)
+"cFy" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cFz" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"cFA" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible,
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"cFB" = (
+/turf/closed/wall/r_wall,
+/area/space)
+"cFC" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
+/turf/open/space,
+/area/space)
+"cFD" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
+/turf/open/space,
+/area/space)
+"cFE" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
+/turf/open/space,
+/area/space)
+"cFF" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
+/turf/open/space,
+/area/space)
+"cFG" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
+/turf/open/space,
+/area/space)
+"cFH" = (
+/obj/structure/lattice/catwalk,
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
+/turf/open/space,
+/area/space)
+"cFI" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cFJ" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 8
+ },
+/obj/machinery/meter,
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 5
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cFK" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cFL" = (
+/obj/machinery/atmospherics/components/trinary/filter{
+ dir = 4;
+ filter_type = "co2";
+ on = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cFM" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cFN" = (
+/obj/machinery/atmospherics/components/trinary/filter{
+ dir = 4;
+ filter_type = "o2";
+ on = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 5
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cFO" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/obj/machinery/camera{
+ c_tag = "Engineering Supermatter Center";
+ dir = 2;
+ pixel_x = 23
+ },
+/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"cFP" = (
+/obj/machinery/atmospherics/components/trinary/filter{
+ dir = 4;
+ filter_type = "plasma";
+ on = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 9
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cFQ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cFR" = (
+/obj/machinery/atmospherics/components/trinary/filter{
+ dir = 4;
+ filter_type = "";
+ on = 1
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cFS" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cFT" = (
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 9
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cFU" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"cFV" = (
+/turf/closed/wall/r_wall,
+/area/space)
+"cFW" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
+/obj/structure/lattice,
+/turf/open/space,
+/area/space)
+"cFX" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
+/turf/open/space,
+/area/space)
+"cFY" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
+/obj/structure/lattice,
+/turf/open/space,
+/area/space)
+"cFZ" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
+/turf/open/space,
+/area/space)
+"cGa" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
+/obj/structure/lattice,
+/turf/open/space,
+/area/space)
+"cGb" = (
+/obj/structure/lattice,
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
+/turf/open/space,
+/area/space)
+"cGc" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
+/obj/structure/lattice,
+/turf/open/space,
+/area/space)
+"cGd" = (
+/obj/structure/closet/crate/bin,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cGe" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cGf" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cGg" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cGh" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/effect/turf_decal/stripes/corner,
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cGi" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cGj" = (
+/obj/structure/table,
+/obj/item/weapon/pipe_dispenser,
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"cGk" = (
+/obj/machinery/light,
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"cGl" = (
+/obj/structure/closet/secure_closet/engineering_personal,
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"cGm" = (
+/turf/closed/wall/r_wall,
+/area/space)
+"cGn" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
+/obj/structure/lattice,
+/turf/open/space,
+/area/space)
+"cGo" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
+/obj/structure/lattice,
+/turf/open/space,
+/area/space)
+"cGp" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
+/obj/structure/lattice,
+/turf/open/space,
+/area/space)
+"cGq" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple,
+/obj/structure/lattice,
+/turf/open/space,
+/area/space)
+"cGr" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/closed/wall/r_wall,
+/area/engine/engineering)
+"cGs" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/closed/wall/r_wall,
+/area/engine/engineering)
+"cGt" = (
+/obj/structure/closet/wardrobe/engineering_yellow,
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cGu" = (
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cGv" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cGw" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 5
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cGx" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cGy" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cGz" = (
+/obj/machinery/atmospherics/pipe/manifold/general/visible,
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cGA" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cGB" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cGC" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
+/obj/machinery/meter,
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cGD" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cGE" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/general/visible{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cGF" = (
+/turf/closed/wall/r_wall,
+/area/space)
+"cGG" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/closed/wall/r_wall,
+/area/engine/engineering)
+"cGH" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 10
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cGI" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Laser Room";
+ req_access_txt = "10"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cGJ" = (
+/obj/machinery/door/firedoor,
+/obj/machinery/door/airlock/glass_engineering{
+ name = "Laser Room";
+ req_access_txt = "10"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/engine,
+/area/engine/engineering)
+"cGK" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cGL" = (
+/obj/structure/grille,
+/obj/structure/window/reinforced/fulltile,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 9
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cGM" = (
+/obj/machinery/atmospherics/pipe/simple/general/visible,
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"cGN" = (
+/turf/closed/wall/r_wall,
+/area/space)
+"cGO" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 5
+ },
+/obj/structure/lattice,
+/turf/open/space,
+/area/space)
+"cGP" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 5
+ },
+/obj/structure/lattice,
+/turf/open/space,
+/area/space)
+"cGQ" = (
+/obj/machinery/atmospherics/pipe/heat_exchanging/simple{
+ dir = 5
+ },
+/obj/structure/lattice,
+/turf/open/space,
+/area/space)
+"cGR" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"cGS" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cGT" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"cGU" = (
+/obj/structure/reflector/double{
+ anchored = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"cGV" = (
+/obj/structure/reflector/box{
+ anchored = 1;
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"cGW" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"cGX" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cGY" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"cGZ" = (
+/obj/machinery/atmospherics/components/unary/outlet_injector/on{
+ dir = 1
+ },
+/turf/open/floor/plating/airless,
+/area/engine/engineering)
+"cHa" = (
+/obj/machinery/airalarm{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22
+ },
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"cHb" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cHc" = (
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cHd" = (
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cHe" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cHf" = (
+/obj/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"cHg" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cHh" = (
+/obj/structure/cable{
+ d2 = 8;
+ icon_state = "0-8"
+ },
+/obj/machinery/power/emitter{
+ anchored = 1;
+ dir = 4;
+ icon_state = "emitter";
+ state = 2;
+ tag = "icon-emitter (NORTH)"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cHi" = (
+/obj/structure/reflector/box{
+ anchored = 1;
+ dir = 1
+ },
+/turf/open/floor/plasteel/black,
+/area/engine/engineering)
+"cHj" = (
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/machinery/power/emitter{
+ anchored = 1;
+ dir = 8;
+ icon_state = "emitter";
+ state = 2;
+ tag = "icon-emitter (NORTH)"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cHk" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cHl" = (
+/obj/effect/decal/cleanable/dirt,
+/turf/closed/wall/r_wall,
+/area/engine/engineering)
+"cHm" = (
+/turf/closed/wall/r_wall,
+/area/space)
+"cHn" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/obj/machinery/light,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cHo" = (
+/obj/structure/reflector/single{
+ anchored = 1;
+ dir = 1;
+ icon_state = "reflector";
+ tag = "icon-reflector (NORTH)"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cHp" = (
+/obj/structure/reflector/single{
+ anchored = 1;
+ dir = 4;
+ icon_state = "reflector";
+ tag = "icon-reflector (NORTH)"
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cHq" = (
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cHr" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/machinery/light,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cHs" = (
+/obj/item/weapon/crowbar/large,
+/turf/open/floor/plating,
+/area/engine/engineering)
+"cHt" = (
+/turf/closed/wall/r_wall,
+/area/space)
+"cHu" = (
+/turf/closed/wall/r_wall,
+/area/space)
+"cHv" = (
+/turf/closed/wall/r_wall,
+/area/space)
+"cHw" = (
+/turf/closed/wall/r_wall,
+/area/space)
+"cHx" = (
+/turf/closed/wall/r_wall,
+/area/space)
+"cHy" = (
+/turf/closed/wall/r_wall,
+/area/space)
+"cHz" = (
+/turf/closed/wall/r_wall,
+/area/space)
+"cHA" = (
+/turf/closed/wall/r_wall,
+/area/space)
+"cHB" = (
+/turf/closed/wall/r_wall,
+/area/space)
+"cHC" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 4;
+ name = "4maintenance loot spawner"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cHD" = (
+/obj/effect/decal/cleanable/cobweb,
+/obj/structure/closet,
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cHE" = (
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cHF" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cHG" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cHH" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/machinery/light/small,
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cHI" = (
+/turf/closed/wall,
+/area/maintenance/bar)
+"cHJ" = (
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plasteel/freezer,
+/area/maintenance/bar)
+"cHK" = (
+/obj/machinery/shower{
+ dir = 8
+ },
+/obj/item/weapon/soap,
+/turf/open/floor/plasteel/freezer,
+/area/maintenance/bar)
+"cHL" = (
+/obj/machinery/vending/autodrobe{
+ req_access_txt = "0"
+ },
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"cHM" = (
+/obj/machinery/vending/clothing,
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"cHN" = (
+/obj/machinery/vending/kink,
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"cHO" = (
+/obj/structure/table/wood,
+/obj/machinery/newscaster{
+ pixel_y = 32
+ },
+/obj/item/weapon/reagent_containers/spray/cleaner,
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"cHP" = (
+/obj/structure/table/wood,
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/obj/item/weapon/paper_bin,
+/obj/item/weapon/pen,
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"cHQ" = (
+/obj/machinery/door/airlock{
+ name = "Shower"
+ },
+/turf/open/floor/plasteel/freezer,
+/area/maintenance/bar)
+"cHR" = (
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"cHS" = (
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"cHT" = (
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"cHU" = (
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"cHV" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"cHW" = (
+/obj/structure/table/wood,
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = -30
+ },
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"cHX" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet/red,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 6
+ },
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"cHY" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/maintenance/bar)
+"cHZ" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"cIa" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 1
+ },
+/turf/open/floor/carpet,
+/area/maintenance/bar)
+"cIb" = (
+/obj/structure/chair/stool,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/maintenance/bar)
+"cIc" = (
+/obj/structure/chair/stool,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/carpet,
+/area/maintenance/bar)
+"cId" = (
+/obj/machinery/atmospherics/pipe/manifold4w/scrubbers/hidden,
+/turf/open/floor/carpet,
+/area/maintenance/bar)
+"cIe" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"cIf" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/maintenance/bar)
+"cIg" = (
+/obj/structure/closet/secure_closet/personal/cabinet,
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"cIh" = (
+/obj/machinery/light/small,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 5
+ },
+/obj/machinery/airalarm{
+ dir = 1;
+ icon_state = "alarm0";
+ pixel_y = -22
+ },
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"cIi" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/button/door{
+ id = "MaintDorm2";
+ name = "Dorm Bolt Control";
+ normaldoorcontrol = 1;
+ pixel_x = 10;
+ pixel_y = -25;
+ req_access_txt = "0";
+ specialfunctions = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 1;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"cIj" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock{
+ id_tag = "MaintDorm2";
+ name = "Dorm 2"
+ },
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"cIk" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"cIl" = (
+/obj/structure/chair/stool,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/carpet,
+/area/maintenance/bar)
+"cIm" = (
+/obj/structure/table/wood/poker,
+/obj/item/weapon/coin/iron,
+/obj/item/weapon/coin/iron,
+/obj/item/weapon/coin/iron,
+/turf/open/floor/carpet,
+/area/maintenance/bar)
+"cIn" = (
+/obj/structure/table/wood/poker,
+/obj/item/weapon/storage/pill_bottle/dice,
+/obj/item/weapon/dice/d20,
+/turf/open/floor/carpet,
+/area/maintenance/bar)
+"cIo" = (
+/obj/structure/chair/stool,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/carpet,
+/area/maintenance/bar)
+"cIp" = (
+/turf/open/floor/wood{
+ icon_state = "wood-broken"
+ },
+/area/maintenance/bar)
+"cIq" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/maintenance/bar)
+"cIr" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"cIs" = (
+/obj/structure/chair/stool,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/carpet,
+/area/maintenance/bar)
+"cIt" = (
+/obj/structure/table/wood/poker,
+/obj/effect/landmark/event_spawn,
+/turf/open/floor/carpet,
+/area/maintenance/bar)
+"cIu" = (
+/obj/structure/table/wood/poker,
+/obj/item/weapon/book/manual/daredice,
+/turf/open/floor/carpet,
+/area/maintenance/bar)
+"cIv" = (
+/obj/structure/chair/stool,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/carpet,
+/area/maintenance/bar)
+"cIw" = (
+/obj/machinery/light{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"cIx" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/maintenance/bar)
+"cIy" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/wood{
+ icon_state = "wood-broken7"
+ },
+/area/maintenance/bar)
+"cIz" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/button/door{
+ id = "MaintDorm1";
+ name = "Dorm Bolt Control";
+ normaldoorcontrol = 1;
+ pixel_x = 10;
+ pixel_y = 25;
+ req_access_txt = "0";
+ specialfunctions = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"cIA" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock{
+ id_tag = "MaintDorm1";
+ name = "Dorm 1"
+ },
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"cIB" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"cIC" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/carpet,
+/area/maintenance/bar)
+"cID" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/structure/chair/stool,
+/turf/open/floor/carpet,
+/area/maintenance/bar)
+"cIE" = (
+/obj/structure/chair/stool,
+/turf/open/floor/carpet,
+/area/maintenance/bar)
+"cIF" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/carpet,
+/area/maintenance/bar)
+"cIG" = (
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"cIH" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/maintenance/bar)
+"cII" = (
+/obj/structure/table/wood,
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = -30
+ },
+/obj/effect/landmark{
+ name = "blobstart"
+ },
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"cIJ" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/obj/machinery/airalarm{
+ dir = 1;
+ icon_state = "alarm0";
+ pixel_y = -22
+ },
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"cIK" = (
+/obj/structure/bed,
+/obj/item/weapon/bedsheet/blue,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"cIL" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/maintenance/bar)
+"cIM" = (
+/obj/machinery/airalarm{
+ dir = 1;
+ icon_state = "alarm0";
+ pixel_y = -22
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"cIN" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"cIO" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
+ },
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"cIP" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"cIQ" = (
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"cIR" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/maintenance/bar)
+"cIS" = (
+/obj/machinery/door/airlock{
+ name = "Gaming Room"
+ },
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"cIT" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/maintenance/bar)
+"cIU" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/closed/wall,
+/area/maintenance/bar)
+"cIV" = (
+/obj/structure/closet/secure_closet/freezer/kitchen/maintenance,
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/bar)
+"cIW" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/bar)
+"cIX" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/bar)
+"cIY" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/door/airlock{
+ name = "Kitchen"
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/bar)
+"cIZ" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/bar,
+/area/maintenance/bar)
+"cJa" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/newscaster{
+ pixel_y = 32
+ },
+/turf/open/floor/plasteel/bar,
+/area/maintenance/bar)
+"cJb" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/machinery/firealarm{
+ pixel_y = 24
+ },
+/turf/open/floor/plasteel/bar,
+/area/maintenance/bar)
+"cJc" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 10
+ },
+/obj/machinery/door/window/eastleft{
+ name = "Bar Counter"
+ },
+/turf/open/floor/plasteel/bar,
+/area/maintenance/bar)
+"cJd" = (
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ dir = 4;
+ on = 1;
+ scrub_N2O = 0;
+ scrub_Toxins = 0
+ },
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"cJe" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/machinery/newscaster{
+ pixel_y = 32
+ },
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"cJf" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/bar)
+"cJg" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/machinery/door/airlock/maintenance{
+ req_access_txt = "12"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cJh" = (
+/obj/structure/table,
+/obj/machinery/microwave,
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/bar)
+"cJi" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/obj/effect/landmark{
+ name = "xeno_spawn";
+ pixel_x = -1
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/bar)
+"cJj" = (
+/obj/structure/reagent_dispensers/keg/mead,
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/bar)
+"cJk" = (
+/obj/structure/table,
+/obj/item/device/radio/intercom{
+ freerange = 0;
+ frequency = 1459;
+ name = "Station Intercom (General)";
+ pixel_x = -30
+ },
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/shotglass,
+/turf/open/floor/plasteel/bar,
+/area/maintenance/bar)
+"cJl" = (
+/turf/open/floor/plasteel/bar,
+/area/maintenance/bar)
+"cJm" = (
+/turf/open/floor/plasteel/bar,
+/area/maintenance/bar)
+"cJn" = (
+/obj/structure/chair/stool/bar,
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"cJo" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 8
+ },
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"cJp" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 8;
+ on = 1
+ },
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"cJq" = (
+/obj/item/device/radio/intercom{
+ dir = 4;
+ name = "Station Intercom (General)";
+ pixel_x = 27
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"cJr" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/bar)
+"cJs" = (
+/obj/effect/decal/cleanable/cobweb,
+/obj/structure/closet/crate,
+/obj/effect/spawner/lootdrop/maintenance,
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cJt" = (
+/obj/structure/rack{
+ dir = 8;
+ layer = 2.9
+ },
+/obj/effect/spawner/lootdrop/maintenance{
+ lootcount = 2;
+ name = "2maintenance loot spawner"
+ },
+/obj/machinery/light/small{
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cJu" = (
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/bar)
+"cJv" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk,
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/bar)
+"cJw" = (
+/obj/structure/table,
+/obj/machinery/power/apc{
+ auto_name = 1;
+ dir = 8;
+ name = "Maintenance Bar APC";
+ pixel_x = -25;
+ pixel_y = 1
+ },
+/obj/structure/cable{
+ icon_state = "0-4";
+ d2 = 4
+ },
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass,
+/turf/open/floor/plasteel/bar,
+/area/maintenance/bar)
+"cJx" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 6
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/bar,
+/area/maintenance/bar)
+"cJy" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/bar,
+/area/maintenance/bar)
+"cJz" = (
+/obj/structure/table,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf/open/floor/plasteel/bar,
+/area/maintenance/bar)
+"cJA" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/structure/chair/stool/bar,
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"cJB" = (
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden,
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
},
-/turf/open/space,
-/area/space)
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"cJC" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"cJD" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"cJE" = (
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/obj/machinery/door/airlock/maintenance{
+ name = "Maintenance Bar"
+ },
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"cJF" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/atmospherics/pipe/simple/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_y = 0
+ },
+/turf/open/floor/plating,
+/area/maintenance/bar)
+"cJG" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/manifold/supply/hidden{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8";
+ tag = ""
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cJH" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cJI" = (
+/obj/structure/disposalpipe/segment{
+ dir = 1;
+ icon_state = "pipe-c"
+ },
+/obj/structure/table,
+/obj/item/wallframe/camera,
+/obj/item/wallframe/camera,
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/bar)
+"cJJ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/maintenance/bar)
+"cJK" = (
+/obj/structure/table,
+/obj/machinery/airalarm{
+ dir = 4;
+ icon_state = "alarm0";
+ pixel_x = -22
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/chem_dispenser/drinks{
+ name = "dusty old soda dispenser"
+ },
+/turf/open/floor/plasteel/bar,
+/area/maintenance/bar)
+"cJL" = (
+/obj/machinery/atmospherics/components/unary/vent_pump{
+ dir = 1;
+ on = 1
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plasteel/bar,
+/area/maintenance/bar)
+"cJM" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/machinery/atmospherics/components/unary/vent_scrubber{
+ on = 1
+ },
+/turf/open/floor/plasteel/bar,
+/area/maintenance/bar)
+"cJN" = (
+/obj/structure/table,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/filled/cola,
+/turf/open/floor/plasteel/bar,
+/area/maintenance/bar)
+"cJO" = (
+/obj/structure/chair/stool/bar,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"cJP" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"cJQ" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/wood{
+ icon_state = "wood-broken5"
+ },
+/area/maintenance/bar)
+"cJR" = (
+/obj/structure/disposalpipe/junction{
+ icon_state = "pipe-j1";
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"cJS" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/maintenance/bar)
+"cJT" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/open/floor/plating,
+/area/maintenance/bar)
+"cJU" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/supply/hidden,
+/obj/structure/disposalpipe/junction{
+ icon_state = "pipe-j2";
+ dir = 1
+ },
+/turf/open/floor/plating,
+/area/maintenance/aft)
+"cJV" = (
+/obj/machinery/processor,
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/bar)
+"cJW" = (
+/obj/machinery/light/small,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 5
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/bar)
+"cJX" = (
+/obj/structure/closet/secure_closet/personal/cabinet,
+/obj/item/clothing/glasses/sunglasses/reagent,
+/obj/item/ammo_box/foambox,
+/obj/item/weapon/gun/ballistic/shotgun/toy/unrestricted,
+/obj/item/weapon/lighter,
+/obj/item/clothing/mask/cigarette/cigar/cohiba,
+/obj/item/weapon/storage/box/drinkingglasses,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/floorgrime,
+/area/maintenance/bar)
+"cJY" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/closed/wall,
+/area/maintenance/bar)
+"cJZ" = (
+/obj/structure/table,
+/obj/machinery/chem_dispenser/drinks/beer{
+ name = "dusty old booze dispenser"
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/bar,
+/area/maintenance/bar)
+"cKa" = (
+/obj/machinery/light,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/bar,
+/area/maintenance/bar)
+"cKb" = (
+/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden,
+/turf/open/floor/plasteel/bar,
+/area/maintenance/bar)
+"cKc" = (
+/obj/structure/table,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/plasteel/bar,
+/area/maintenance/bar)
+"cKd" = (
+/obj/structure/chair/stool/bar,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"cKe" = (
+/obj/machinery/firealarm{
+ dir = 1;
+ pixel_y = -24
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"cKf" = (
+/obj/machinery/vending/cigarette,
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"cKg" = (
+/obj/machinery/disposal/bin,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{
+ dir = 9
+ },
+/turf/open/floor/wood,
+/area/maintenance/bar)
+"cKh" = (
+/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,
+/obj/machinery/light/small{
+ dir = 8
+ },
+/turf/open/floor/plating,
+/area/maintenance/bar)
-(
-1,
-1,
-1) = {"
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaadaaeaaeaaeaaeaaeaadaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaagaahaaiaajaakaalaalaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaamaahaahaanaahaahaahaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaoaahaahaahaapaahaaqaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaraadaadaadaasaadaadaadaataaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaauaadaavaahaawaadaataaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaahaahaaxaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaadaadaadaadaadaahaahaaxaayaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaazaahaahaaAaadaahaahaaxaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaazaahaaCaaDaadaahaahaaxaadaadaaEaaFaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaazaahaahaaGaadaaHaaIaaHaadaahaahaahaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaazaahaahaahaaKaahaahaahaaLaahaahaahaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaazaahaahaahaaMaahaahaahaaHaahaahaahaadaaNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaadaadaadaadaadaadaaOaahaahaadaadaadaadaadaadaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaPaaQaaRaaSaaTaadaahaahaahaadaaUaaVaaWaaXaaYaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaZaaQaaQaaQaaQabaaahaahaahaadaahaahaahaaCabbaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaPaaQaaQaaQaaQabcaahaahaahabdaahaahaahaahaahaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaQaaQaaQaaQaaQabeaahaahaahabfaahaahaahaahabgaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabiabjabkablabmabnaadaahaahaahaadaboabpaahaahabgaayaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabqabqabqabqabqabqabqabqabqabqabqaaaabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadabraaQabsaadaadaadaaHabtaaHaadabuaadaahaahaahaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabvabhaaaabhaaaabhaaaabhaaaabhaaaaaaabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadabwabxabyaadaaaaadabzabzabzaadaadaadabAabBabCaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhabDabDabEabFabGabFabGabFabHabDabDaaaabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadabzabzabzaadaaaaarabIabJabKaataaaaadabzabzabzaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhabDabLabMabNabOabPabQabRabSabTabDaaaabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaarabIabJabKabUaaaaaaaaaaaaaaaaaaaaaabVabIabJabKaataaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhabhabDabWabXabYabXabXabXabZabSacaabDabhabhaaaaaaaaaaaaaaaaaaaaaaaaabhaaaaaaaaaaaaaaaabhaaaabhaaaabhaaaaaaaaaaaaaaaaaaabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhabDabDacbaccacdaceacfabQabQabSacgabDabhabhabhabhabhabhabhabhabhabhabhaaaaaaaaaabhaaaabhaaaabhaaaabhaaaaaaaaaaaaaaaaaaabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaachabDaciabQabQabQabQacjabQabQackaclabDaaaabhaaaaaaaaaaaaaaaaaaaaaaaaabhabhaaaaaaabhaaaabhaaaabhaaaabhaaaaaaaaaaaaaaaaaaabqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabDabDacmacjabQabQacnacoacjabQacpacqabDabhacrabhabhabhabhabhabhabhabhabhabhabhabhabhaaaabhaaaabhaaaabhaaaaaaaaaaaaaaaaaaabqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJaaaaaaacsacsacsacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabDactabQabQabQacuacvacwabQabQacxacyabDabDaczabhabhabhabhabhabhabhabhaaaaaaaaaaaaabhabhabhabhabhabhabhabhaaaaaaaaaaaaaaaabqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsacsacsacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsaaaabhaaaacAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacBacCacDacEacFacGabQacHabQabQabQabQabQabQabSabQacIacJaczacKacKacLacKacKacLacLacKacMacNacOacNacOacNacPacPacQacQacQacPacPaaaaaaaaaaaaaaaabqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsaaaabhaaaacAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsabhacRabhacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacSacTacUacVacWacXabQabQacYacZadaabQadbadcaddabQadeadfaczabhaaaaaaaaaaaaaaaaaaabhacOadgadhadhadhadiacPadjadkadladmadnacPaaaaaaaaaabhaaaabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsabhadoabhacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsacLacLacLacLabhabhaaaadpaaaabhabhacsacsacsacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacSadqadradsacWadtaduadtadtadtadvadtadtadtadwadtadtadxaczaczaczaczaczaczaczaczaczaczadyadhadzadAadgacPadBadCadDadEadFacPaaaabhadGabqabqabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsacsacsacsacsabhabhaaaadHaaaadIabhacsacsacsacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsaaaaaaabhaaaabhaaaaaaadpaaaaaaabhaaaabhaaaaaaacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacSadJadKadLacWadMabQadNadtadOadPadQadtadRadSadTadtadUaczadVadWadXadYadZaeaaebaecaczaedadhadzaeeadgacQaefaegaehadDaeiacPaaaabhacNaejacNabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacAaaaaaaabhaaaabhaaaaaaadHaaaaaaabhaaaabhaaaaaaacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsabhaekaekaekaekaekaaaaelaaaaekaekaekaekaekabhacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacBaemaenaeoacWaepabQaeqadtaeraesaetadtaeuaevaeqadtaewaczaexaeyaezaezaezaezaezaeAaczaeBadhadzaeeadgacQaeCaeDaeEadDaeFacPabhabhacNaeGacNabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsabhaeHaeHaeHaeHaeHaaaaeIaaaaeHaeHaeHaeHaeHabhacsaaaaaaaaaaaJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsaaaaeJaeKaeKaeKaeKaeLaeMaeNaeOaeOaeOaeOaePaaaacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeQacBacBacBaeRaeSaeTacWaeUaeVaeWadtaeUaeXadtadtadtaeYaeWadtadtaczaeZafaafbafcafdafeaffafgafhadhadhadzaeeadgacPafiafjafkaflafmacPacOacOacMaejacNacNacMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsaaaafnafoafoafoafoafpafqafrafsafsafsafsaftaaaacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsabhafuafuafuafuafuaaaaeMaaaafuafuafuafuafuabhacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacBafvafwafxafyafzafAafBafCafDafEafFafGafHafIafJafKafLafMafNaczafOafPafQafRafSafTafUafVafWadhadhafXafYacNacPafZacPagaacPagbacPagcagdacNageacNagfaggaggaggaaaaaaaaJaaaaaaaaaaaaaaaaaaaaaaaaaaaacsabhaghaghaghaghaghaaaafqaaaaghaghaghaghaghabhacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsaaaaaaaaaabhaaaaaaaaaaeMaaaaaaaaaabhaaaaaaaaaacAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacBagiagjagkaglagmagnagoagpagpagqagragpagpagpagsagtaguagvagwaczafOafOagxagyagzagAagBagCaczagDagEagFagGacNagHagIagJagKagLagMagJagNagOagPagQagRagSagTagUagVagWaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsaaaaaaaaaabhaaaaaaaaaafqaaaaaaaaaabhaaaaaaaaaacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsabhaekaekaekaekaekaaaaeMaaaaekaekaekaekaekabhacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagXagYagZahaahbahcahdaheahfahgahgahhahiahjahkahkahkadtahlahmaczaczaczahnahoahpahqahrahsaczahtacOahuahvacNahwahxahyahzahAahBahCahDahEacNahFacNagfaggaggaggaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsabhaeHaeHaeHaeHaeHaaaafqaaaaeHaeHaeHaeHaeHabhacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsaaaaeJaeKaeKaeKaeKaeLaeMaeNaeOaeOaeOaeOaePaaaacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacBacBacBahGahHahIahdabDadtahJadtadtadtahKahKahKahKahKahLahMahNahOahPahQahRahSahTahUahVahNahWagJahXahYahZaiaaibahyaicahAaidahCaieacNacMacNacNacNacMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsaaaafnafoafoafoafoafpafqafrafsafsafsafsaftaaaacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsadIafuafuafuafuafuaaaaeMaaaafuafuafuafuafuabhacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJaaaaaaaaaaaaacBacBacBacBahdabDaifaigaihaiiaijahKaikailaimainaioaipaiqairaisaitaiuahSaivahSaiwaixaiyaizaiAaiBahyaizaiCaiDaiEaiFaiGaiHaiIaiJaiKaiLaiMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsabhaghaghaghaghaghaaaafqaaaaghaghaghaghaghabhacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsaaaaaaaaaabhaaaaaaaaaaeMaaaaaaaaaabhaaaaaaaaaacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhabhabhabhabhabDaijaiNaiOaiPaijahKaiQaiRaiSaiTaioaipahNaiUaiVaiWaiXaiYaiZajaajbajcajdajeajfajgajhajhajgajiajjajkajlajmajnacNajoajpaiMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsaaaaaaaaaabhaaaaaaaaaafqaaaaaaaaaabhaaaaaaaaaacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsabhaekaekaekaekaekaaaaeMaaaaekaekaekaekaekabhacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabDaijaiNajqaiPajrahKajsajtaiSajuaioaipaiqajvajwajxajyajzajAajBajCajDajEajFajGajHajIajJajKajLajMajNajOajPajQajRajSajTajUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsabhaeHaeHaeHaeHaeHaaaafqaaaaeHaeHaeHaeHaeHabhacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsaaaaeJaeKaeKaeKaeKaeLaeMaeNaeOaeOaeOaeOaePaaaacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhaaaabhaaaaaaabDajVajWajWajXajYahKajZakaakbakcaioaipahNakdakeakfakgakhakiakjahNahNacMakkaklacMacMacNacNacNacNacNacNacNacNacNakmaknajUabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsaaaafnafoafoafoafoafpafqafrafsafsafsafsaftaaaacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacAakoafuafuafuafuafuaaaaeMaaaafuafuafuafuafuabhacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhakpakpakqakqabDabDadtadtaeUakrahKahKahKahKahKaksaktakuakvakuakuakuakuakuakuakwakxakyakzakAakBakCakDakEakFakGakHakIakJakKakLakmaknajUabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsabhaghaghaghaghaghaaaafqaaaaghaghaghaghaghakoacAaaaaaaaaaaaaaaaaaaaaaaaaabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsaaaaaaabhaaaabhaaaaaaakMaaaaaaabhaaaabhaaaaaaacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhakpakNakOakPakQakRakSakTakUakVakWakXakYakZalaalbalcaldalealdaldaldaldaldaldalfaldaldalgalealhalialjalkallalmalnaloalpalqakLakmaknaiMabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsaaaaaaabhaaaabhaaaaaaafqaaaaaaabhaaaabhaaaaaaacsaaaaaaaaaaaaaaaaaaaaaaaaabhaaaaaaaaaaaaaaaaaaaaaaaJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsacsacsabhabhabhabhalralsalrabhabhabhabhacsacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaltalualualualtaaaabhalvalwalxalyalzalAalBalCalDalEalFalGalHalIalJalGalKalLalJalGalHalMalNalNalNalOalPalQalRalSalTalUalValWalValValValXalYalYakLakmaknajUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsacsacsabhabhabhabhabhafqabhabhabhabhabhacsacsacsabhaaaaaaaaaaaaaaaaaaaaaabhaaaaaaabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhaaaabhaaaaaaabhaaaalralZalraaaaaaabhaaaaaaabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaltamaambamcaltakqakqamdameamfamgamhakCahKamiahKahKamjamkamlammamnamoamlammamnampamqammamramsammamtamuammamvamwamxakCamyamzalYamAalYamBamCalYakLakmaknajUabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhabhaaaaaaabhaaaaaaamDaaaaaaabhaaaaaaabhaaaabhabhabhaaaaaaaaaaaaaaaaaaabhaaaaaaabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhaaaabhaaaaaaabhalralramEalralraaaabhaaaaaaabhaaaaaaaaaaaaaaaaaaaaaaaJamFamFamFamFamFaaaaluamGamHamIamJamKamLamMameamNamOamPakCamQakuamRahKamSamTamUahKamVamTamUahKamVamWamUahKamXamYamZanaakBahKamTanbancakCandaneanfanganfanhanialYakLakmaknajUabhaaaaaaaaaaaaaaaaaaaaaaaJaaaaaaaaaaaaaaaaaaaaaabhabhaaaaaaaaaabhaaaaaaanjaaaaaaabhaaaaaaabhaaaaaaaaaabhabhaaaaaaaaaaaaaaaankanlankabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhaaaabhaaaaaaabhanmannanoanpanmanqanqanqanqanqanqanqanqanqaaaaaaaaaaaaamFanransantamFaaaaltanualtanvaltakqakqakqanwanxanyanzakCanAanBanCahKanDamTanEahKanFamTanGahKanHamTanIahKanJanKanLanaanMahKanNanOanPakCanQanRanQanSanQanTanQanQakLakmaknaiMaiMabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhabhaaaaaaaaaaaaabhaaaanUanVanUaaaabhaaaaaaabhaaaaaaaaaaaaabhabhaaaaaaaaaaaaankanWankabhaaaabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhabhabhaaaaaaaaaabhaaaaaaaaaaaaaaaaaaaaaaaJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanmanXanYanZanmaoaaoaanqaobaocaodanqaoeanqaaaaaaaaaabhanqaofaocaoganqaaaaltaohaohaoialtaaaaaaaojakpakqaokaolakCaomaonaooakCaopaoqaoqaoraoqaoqaoqaoraoqaoqaoqaoraosaotaouaovaowakCakCakCakCakCaoxaoyaoxakKaoxaozaoxakKakLaoAaoBaoCaiMaiMaiMabqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhabhaaaaaaaaaaaaaaaabhaaaanUaoDanUaaaabhabhabhabhaaaabhaaaaaaaaaabhabhaaaaaaaaaankaoEankabhaaaabhaaaabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoFaoFaoFaoFaoFaoFaoFaoFaoFaoFaoFaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanmaoGaoHaoIanmaoJaoKaoLaoMaocaoNanqanqanqamFanqamFamFanqaoOaoPaoOanqaaaaluaohaohaoQaltakqakqakqaoRaoSaoTaoUalvakCakCakCakCaoVaoVaoVaoWaoVaoVaoVaoXaoVaoVaoVaoWaoVaoVaoVaoYaoYaoZapaapaapaapbaoxaoyaoxakKaoxaozaoxakKakLakmapcapdapeapfapeabqaaaaaaaaaaaaaaaaaaaaaaaaaaaabhabhaaaaaaaaaaaaaaaaaaabhanUanUapganUanUabhaaaaaaabhaaaabhaaaaaaaaaaaaabhabhaaaaaaankaoEankabhabhabhabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoFaphapiapiapiapiapiapiapiapjaoFabhaaaaaaaaaaaaaaaaaaaaaaaaabhaaaaaaaaaaaaaaaaaaanmanmapkaplanmapmaocanqaocaocaocaoLaocaocapnaocansaocaocaocaocapoamFaaaaltappaohaohapqapramLapsameamNamOamNaptaoYaoYaoYapuaoYaoYapvaoYaoYaoYaoYaoYaoYaoYapwaoYaoYaoYapxaoYaoYaoYaoYaoYaoYapyakKapzapAapBapCapDapAakKapEapFapGapHapHapIaiMabqaaaaaaaaaaaaaaaaaaaaaaaaabhabhaaaaaaaaaaaaaaaaaaaaaabhapJapKapLapMapJabhaaaaaaabhaaaabhaaaabhaaaaaaaaaabhankankankaoEankankankankankankaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoFapNapOapOapOapOapOapOapOapPaoFabhaaaaaaaaaabhaaaaaaaaaaaaanqanqanqanqanqabhabhanqapQapRapSapTaoKanqanqamFamFanqanqanqanqamFanqamFamFanqapUaocapVanqaaaaltapWapWapWaltakqakqapXapYapZaqaaqbakpaqcaqcaqcaqcaqcaqdaqeaqcaqcaqcaqcaqcaqcaqcaqfaqgaqgaqgaqhaqiaqgaqjaqkaqlaqmapbaqnaqoakLakLakLakLakLakLakLakmaqpaiMaqqaqraiMaaaaaaaaaaaaaaaaaaaaaaaaabhabhaaaaaaaaaaaaaaaaaaaaaaaaabhapJaqsaqtaquapJabhaaaaaaabhaaaabhaaaabhankanlankanlankaqvaoEaoEaoEaoEaoEaoEaqwankabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhaoFapNapOapOapOapOapOapOapOapPaoFaoFaqxaoFaoFabhabqabqanqanqanqaqyaqzaqAanqaaaaaaanqaocapRapmaocaqBanqaqCaqCaqDaqCaqCaqDaqDachachaqEaqEanqaqFaocaqGanqaaaaltaqHaqHaqHaltaaaabhalvakpaqIakpaqJaqKaqKaqKaqLaqKaqKaqKaqMaqNaqNaqNaqOaqNaqNaqPaqQaqRaqSapHaqTapHapHapHapHaqUapHapHapHapHapHaqVaqWaqXaqYaqZaqZaraarbarcardareaiMaaaaaaaaaaaaaaaaaaaaaaaaabhabhaaaaaaaaaaaaabqabqabqaaaabhapJarfargarhapJariariariariarianlanlanlankarjaoEaqwankankaoEankankankankarkankankabhabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhabhaoFapNapOapOapOarlapOapOapOapParmarnaroarpaoFabhanqarqanqarrarsaocartaocanqamFamFanqaruapRapmaruanqanqanqamFamFamFanqanqacharvaqDaqDachanqanqaoLanqanqaaaaaaaaaaaaaaaaaaaaaabhakparwamLakparxaqKaryarzarAarBarAaqKarCaqNarDarEarFarGaqNaoVaoYarHarIarJarKarKarKarKarKarLarMarKarKarKarKarKarNarOarParQarRarSarTaiMarUarVaiMabharWarXarXarYarXarXarZabhabhaaaaaaaaaabhanlasaanlaaaariapJapJasbascapJasdaoEaoEaoEankaseaoEasfankasgaoEaoEashankaoEankasiasjankaoEaskankaaaaaaaaaaaaaaaaaaaaaaaaaaJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhaoFapNapOapOaslasmapOapOapOapPasnasoaspasqaoFabhanqaocanqasrassapTastasuanqaqGaocasvaocapRaswaocaocaocaocaocaocaocaocanqanqanqaqDachaqDachasxasyasxaaaaaaaaaaaaaaaaaaaaaaaaabhakpaszasAakpasBaqKasCasDasEarAarAaqKarCaqNasFarFasGasHasIaoVaoYapaarIakmasJasJasJasJasJasKasLasJasJasJasJasJasJasJasJasMasNaiMasOasMasMasMasMasMasPasQasQasQasQasQasPasMabhaaaaaaaaaabhasRaoEanlaaaariasSasTasUasVaoEaoEaoEankaoEankasWaoEaoEankaoEasXasYasZarkaoEankataatbankaoEatcankaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhaoFapNapOapOapOatdapOapOapOapPaqxateaspatfaoFanqanqarqanqanqanqaoLatgathathatiatjatkatjatlatmatnatoanqaocanqanqanqaocanqatpanqachaqDaqCaqDasxasyasxaaaaaaaaaaaaaaaatqatqatqatqatqatqatqatqatraqKatsattatuarAatvaqKarCatwatxatyatzatAasIaoVaoYatBarIakmasJatCatDatEatFatGatHasJatIatJatKasJatLatJatMasMatNatOatPatQatRatSatTasMasPasQasQasQasQasQasPasMabhabhabhabhanlanlatUanlanlariatVaoEatWaoEaqvaoEankankatXankankatYankankasZatZauaaoEankaoEaubaubaubaubaubaubaubaubaubaucaucaucaucachaucaucaqDaqDaqCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhaoFapNapOapOapOapOapOapOapOapPaqxaudaspaueaoFaufaugauhauiauiauiauiauiauiaujaukaulanqanqanqanqaocanqanqaocaumanqatnaocanqanqanqanqaqCaqCaqCasxaunasxaaaaaaaaaabhabhatqauoaupatqauqaurausatqatraqKarBautarBauuarAaqKauvauwauxarFauyarFasIaoVaoYauzarIakmasJauAauBauCauDauEauFasJauGauHauIasJauJauKauLasMauMauNauOauOauOauOauPauQauRasQasQasQasQasQasPasMasMasMaaaaaaanlaoEaoEaoEasdariauSasZatWaoEauTauUauVarkaoEaoEaoEaoEaoEaoEaoEatZauWaoEauXaoEaubauYauZavaaubavbavcavdaubaqDaqCaqCaqCaqCaqCaqCaqCaqCaqCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJaaaaaaaaaaaaaoFapNapOapOapOapOapOapOapOapPaqxaudaveavfaoFaocaocavgavhaviaviaviaviaviaviavjavkavlachavmanqaocavnaruatnavoanqavpaocaocaocavqamFaqCaqCaqDasxasyasxaaaaaaaaaatqatqatqasyasyatqasyasyasyatqavraqKarBavsavtavuarBaqKarCavvaqNavwavxavyaqNavzaoYapaarIakmasJasJasJasJasJavAavBasJasJavCavDasJasJavEavDasMavFavGavHavIavIavJavKavLavMasQasQasQasQasQavNavOavPavQaaaaaaanlaoEaoEavRaoEariavSaoEavTavUavUavUavUavVavUavWaoEaoEaoEaoEaoEaoEaoEaoEankauUaubavXavYavYaubavZawaawbaubaqCaqCaqCaqCaqCaqCaqCaqCaqCaqCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhabhabhabhabhaoFawcawdawdawdawdawdawdawdaweaqxawfawgawhaoFawiawjawkawlapUawmawnawoawpanqawqavkachawravlamFaocaumanqanqanqanqanqanqanqawsavqamFaqDaqCaqDasxasyasxabqabqabqawtawuawvasyasyatqatqawwatqatqavraqKaqKawxaqKawyaqKaqKawzawAaqNaqNaqNaqNaqNawBaoYawCarIakmasJatCatDawDatFawEawFawGawHawIawJawKawLawMawNawOawPavGawQawRawRawSawTavLavQasQasQasQasQasQavQawUawVavQabhabhankaoEaoEankankariariariariariariariariariankawWawXankankankankankankankankaoEawYaubavYavYawZaxaavXaxbaubaqCaqCaqCaqCaqCaqCaqCaqCaqCaqCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxcaoFaoFaoFaoFaoFaoFaoFaoFaoFaoFaoFaxdaxeaoFaoFaxfanqavgaxgaocaxhaxiaocaocanqawqavkaxjaqDaxjanqaocaxkanqaxlaxmanqavpasuaxnaxoaxoaxoaxpaxpaxpaxqaxraxsaxpaxpaxpaxqaxsaxqaxqaxraxqaxtaxraxuaxvaxwaxxaxxaxyaxxaxzaxxaxxaxAaxBaxxaxxaxxaxxaxCaxDaxEaxEaxFaxGasJauAauCauCaxHauEaxIaxJaxKaxLaxMaxNaxOaxPaxQaxRaxSaxTawQaxUawRawSawTaxVavQasQasQasQasQasQavQaxWawVasMaaaaaaankaxXasgaoEaxYankaxZaqwayaaybaqvankavSaqvankaycaoEankaydaoEankayeayfaygayhayhayhayiayjaykaylaymaynayoaubaucaucachachaucaucaucaucaqDaqDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaypaypaypayqayraysaytayuayvayvayvayvayvayvayvaywayxayyayzayAayBanqayCaxgayDaocayEaocayFanqawqayGaxoaxoaxoaxoayHaxoaulaocayEayIaocaocayJayKayLayMayNayNayNayOayNayPayNayNayQayRaySayTayTayTayTayTayTayUayVayWayXayXayXayXayYayXayXayYayXayZayZayZayZayZazaazbazcazdazeasJasJasJasJasJavAazfazgazhaziazjazkazlazmaznazoazpazqazrazsazsaztawTazuavMasQasQasQasQasQazvazwazxasMaaaaaaankaoEaoEaoEaoEaoEaoEazyavUavUavUavUavUavUavUazzaoEaoEaoEaoEauXaoEaoEazAazBazCazDazEazFazGavYavYavYazHaubaqDaqCaqCaqCaqCaqCaqCaqCaqCaqCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaazIazJazKazLazMazNazOazNazPazQazPazRazSazSazTazUazSazVazWazSazSazXaxoazYaxgazZaocaocaAaaAbanqaAcaAdaAeaAeaAeaAeaAeaAfavkaAgaocanqaufaufavkaAhanqaAiaAjaAkaAkaAlaAkaAmaAkaAkaAnaAoaApaAqaAqaAqaAqaAqaAqaAqaAraAsaAtaAuaAvaAwaAxaAyaAzaAAaABaACaADaAEaAFaAGaAHaoYaAIaiMapdasJatCatDaAJatFaAKaALazgazgazgazhaAMaANaAOaAPawOaAQaARaASaATaAUaAVaAWaAXaAYasQasQasQasQasQaAZasMasMasMankankankaqvankankarkankankatWankankaBaankankarkankatWaxXankankarkankaoEaxXazAaBbatZaubaBcaBdaBeaBfaBgaBdaBhaubaqDaqCaqCaqCaqCaqCaqCaqCaqCaqCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaypaypaypayqayraBiayraBjaBkaBjaBlazQazQaBmaBjaBkaBjaBnaBoaBpaBqanqayCaxganqanqanqanqaBraBraBsaBtaBraBraBraBraBrawqayGaxoaxoaxoaxoaxoaBuaAhaqGaAiaaaabhaaaaBvaaaaBwaaaabhaaaaAoaApaAqaBxaByaBzaBAaBBaAqaAraBCaBDaBEaBEaBFaBGaBHaBHaBHaBIaBJaBJaBKaBLaAGaBMaoYaBNaiMapdasJauAauCauCaBOauEaBPaBQaBRaBSaBTaBUaBVaBVaBWaBVasMaBXaBYaBZaCaaCbaCcasMaAZasQasQasQasQasQaAZankatcaoEaCdaCeankankankatcaoEankatcatWankaCfaoEankaCgaoEankaChaCiankaCjaoEankarkarkazAaCkarkaubaClaBdaCmaCnaCmaBdaCoaubaqDaqDaqDaqCaqCaqCaqCaqCaqCaqCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxcaCpaxcaCqazOaBjaCraCsaCtaCuaBjazOaCqaBjaxcaCvaCwanqaCxaCyaCzaCzaCAaCBaBraCCaCDaCEaCFaCGaCHaCCaBraCIaCJaCKaCLaCLaCLaCLaCLaCMaufaAiabhaCNaCNaCOaCNaCPaCNaCNabhaAoaApaAqaCQaCRaCSaCTaCQaAqaCUaCVaCWaCXaCYaCZaDaaDbaDcaDdaDeaDfaAEaAEaAEaDgaBMaoYaDhaiMapdasJasJasJasJasJaDiavBaBVaBVaBVaBVaBVaBVaDjaDkaDlaBVasMasMasMasMaDmaDnasMaAZasQasQasQasQasQaAZankankaoEaDoaCeankaDpankaoEaoEankaoEatWankaoEaoEankaoEaoEankatWauUankaoEaoEankaDqaoEazAaBbasZaubaubaubaubaubaubaubaubaubaucaucaucaucaucaqDaqCaqCaqCaqCaaaaaaaaaaaaaaJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaBjaBkaBjaBjaBjaBjaBjaBjaBkaBjaaaaxcaDraBqaDsaDtaDuaDsaDsaDsaDvaBraCCaDwaDxaDyaDzaDAaCCaBranqaDBaDCaDCaDCaDCaDCaDCaDDaDCaDEaaaaCNaDFaDGaDHaDIaDJaCNaaaaAoaApaAqaCQaDKaDLaDMaCQaAqasyaDNaAtaDOaDPaDQaDRaDSaDfaDTaDUaAEaAEaDVaAEaDgaBMaoYaBNaiMapdasJatCatDaDWatFaAKavBaBVaDXaDYaDZaDZaBVaDjaEaaDlaBVaEbaEcaEdaEeaEfaDnabhaEgaEhaEhaEhaEhaEhaEiaaaankaoEaEjaEkankankankankankankaElaEmankankankankankankaEnaEoaEpaEqaEqaEqaEraEsaEtaEuaEvaEwaExaEyaEzaEqaEAaEBaECaEDaEDaEDabhabhabhabhabhabhabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJaaaaaaaaaaaaaaaaEEaEEaEFaEEaEGaEGaEGaEGaEEaEFaEEaEEaxcaBlaEHaDsaEIaEJaEKaELaEMaENaBraCCaEOaEPaEQaEPaEPaCCaBraERaESaETaEUaEVaEWaEXaEYaEZaFaaDEabhaCNaFbaFcaFdaFeaFfaCNabhaAoaApaAqaFgaFhaFiaFjaFkaAqasyaFlaAtaFmaFnaFoaAEaFpaFqaFraFsaFtaDgaAGaFuaAGaBMaoYaBNaiMapdasJauAauBauCaFvauEaFwaFxaFyaFzaFAaFAaFBaFCaFDaFEaBVaFFaFGaFHaFIaFJaDnaaaabhaaaabhaaaabhaaaabhaaaankaxXaFKaFLaFMaFNankauTaoEaxXatWaoEankaaaankaCdaFLaFLaFOaFPaFQaFQaFQaFQaFQaFRaFSaFTaFUaFVaFVaFVaFWaFXaFYaFZaGaaGbaGcaGdaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaEEaEEaEEaEEaGeaGfaGgaGhaGiaGjaGkaGlaGfaGmaGnaBjaBlaGoaDsaGpaGqaGraGsaGtaGuaBraGvaEPaEPaEPaEPaEPaEPaGwaGxaESaGxaGyaGxaGxaGxaGxaEZaGxaDEaaaaCNaGzaGAaGAaGBaGCaCNaaaaAoaApaAqaGDaGEaGFaGGaGHaAqasyaGIaAtaAtaFsaGJaGKaGLaGMaAtaAtaAEaAEaAGaGNaAGaBMaoYaBNaiMapdasJasJasJasJasJaGOaGPaGQaGRaGSaGTaGTaGTaGTaGTaGUaBVaGVaGWaGXaEeaEfaDnankankankankankankankankankankankankankaGYankankankankaCdaGZaHaaHbaHcaHbaHdaHeaHfaHgaHhaHiaHiaHiaHiaHjaHkaHlaHjaHjaHjaHjaHjaHjaHjaHmaHnaHoaEDaEDaEDabhabhabhabhabhabhabhabhabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaEGaHpaHpaEEaGfaHqaGfaHqaGfaHqaGfaHqaGfaGmaHraBjaBlaHsaDsaHtaHuaHvaHwaHxaHyaBraHzaEPaEPaEPaEPaEPaHAaBraHBaHCaHDaHEaGxaGxaGxaHFaHGaHHaDEabhaCNaHIaHJaHKaHLaHMaCNabhaAoaHNaAqaHOaHPaGFaHQaHRaAqasyaHSaAGaHTaAEaHUaHVaHWaAEaHXaAGaHYaHZaAGaHVaAGaIaaqQaIbaiMapdapdapdapdapdapEavAavBaBVaIcaIdaBVaIeaBVaIfaBVaIgaBVaIhaIiaIjaIkaIlaImaInaIoaIpaIqaIraIsaIsaIsaIsaItaIuaIsaIsaIvaIwaIxaIyaEqaIzaIAaIBaICaIDaICaIEaIFaHiaIGaIHaHiaIIaIJaIKaHjaILaIMaHjaINaIOaIPaIQaIRaISaITaIUaIVaIWaIXaIYaaaaaaaaaaaaaaaabhaaaaaaaaaaaaaaaaaaaaaaIZaJaaJaaJaaJaaJaaIZaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJbaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaEGaGfaGfaJcaGfaHqaGfaHqaJdaHqaGfaHqaGfaGmaHraBjaBlaJeaDsaDsaJfaJgaJhaJgaDsaBraBraBraBraJiaEPaJjaJkaBraJlaESaGxaGxaGxaJmaGxaGxaEZaJnaDEaaaaCNaCNaJoaJpaJoaCNaCNaaaaAoaApaAqaJqaJraJsaJtaJuaAqasyaJvaAGaJwaAEaJxaHVaJyaAEaJzaAGaDgaDgaAGaJAaAGaJBaJCaJDaiMapEaiMaiMaiMaiMaiMaJEaJFaBVaJGaJHaBVaJIaBVaJJaBVaJKaBVaJLaJMaJNaEeaJOaJPaJQaJRaJSaJSaJTaJUaJSaJVaJWaJXaJYaJZazCazCazCaKaaKbaKcaKdaKeaoEaKfaKfaKfaKgaKhaHiaKiaKjaKkaKlaKmaKnaHjaKoaKpaHjaKqaKraKsaKtaIRaKuaHmaHnaGaaKvaKwaIYaaaaaaaaaaaaaaaabhaaaaaaaaaaaaaaaaaaaIZaKxaKyaKzaKAaKzaKBaKxaIZaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaEGaKCaKCaEEaGfaHqaGfaHqaGfaHqaGfaHqaGfaGmaHraBjaBlazQaKDaKEaKFaKEaKGazQaKHaKIaKJaKKaBraKLaEPaEPaKMaBraKNaESaGxaKOaKPaKQaKRaKSaKTaKUaDEaaaabhaaaaKVaKWaKVaaaabhaaaaAoaApaAqaKXaKYaKZaHQaLaaAqasyarCaAGaLbaAEaHVaHVaHVaLcaLdaAGaaaaaaaLeaLfaLgaLhaLiaLjaLkaLlaLeaaaaaaaLmaLnaLoaLpaBVaLqaJHaJHaJHaLraJHaJHaJHaBVaEeaLsaEeaEeaEeaDnaLtaLuaLuaLvaLwaLxaLuaLyaLzaLzaLAaLBaLCaLzaLDaKfaKfaLEaKgaKfaKfaKfaLFaLGaKgaKhaHiaLHaLIaLJaLKaLLaLMaHjaLNaLOaLPaLQaLRaLSaLTaLUaKuaHmaLVaGaaIWaLWaIYaaaaaaaaaaaaaaaabhaaaaaaaaaaaaaaaaaaaIZaLXaLYaLZaLZaLZaMaaMbaIZaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaEEaEEaEEaEEaMcaGfaGfaGfaGfaGfaGfaMdaGfaGmaMeaBjaBlazQaMfaMgaMhaMgaMiaMgaMgaMgaMjazQaBraMkaMlaMkaBraBraMmaMnaMmaDCaDCaDCaDCaMmaMoaMpaDEaMqaMraMraMsaMtaMuaMraMraMvaAoaMwaAqaMxaAqaMyaMzaMAaAqatqaqMaAGaAGaAGaDgaGKaDgaAGaAGaAGaLeaLeaLeaMBaLiaLiaLiaLiaLiaMCaLeaLeaLeaLmaMDaLoaMEaBVaBVaBVaBVaBVaBVaBVaBVaBVaBVaMFaMGaMHaMIaMJaMKaMLaMMaLuaMNaLwaMOaMPaMQaLzaMRaMSaLBaMTaLzaMUaMVaMWaMXaMYaMZaMZaNaaNbaNcaKgaKhaHiaNdaNeaNfaNgaLLaNhaHjaNiaNjaNkaNlaNmaNnaNoaHjaHjaNpaHnaGaaKvaKwaIYaaaabhabhabhabhabhabhabhaaaaaaaaaaaaaIZaNqaNraNsaNtaLZaMaaNuaIZaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaEEaEEaNvaEEaEGaEGaEGaEGaEEaEFaEEaEEaxcaNwazQaNxaNyaNzaNAaNBaNCayraNDaNEazQaNFaNGaNHaNHaNIaNHaNHaNJaNHaNHaNHaNHaNHaNHaNKaNLaNMaNNaNOaNPaNPaNQaNPaNPaNPaNPaNRaNSaNTaNUaNPaNVaNPaNWaJCaNXaNYaNZaOaaObaLkaLkaLkaLhaLiaLiaOcaLiaLiaOdaOeaOfaOgaOhaOiaOjaLiaLiaOcaOkaOlaOmaOnaOoaOpaOqaOraLiaOsaLiaEeaOtaOuaMGaMGaMGaOvaOwaOxaOyaOzaLuaOAaOBaMQaOCaODaLzaOEaMSaOFaOGaLzaLzaOHaOIaOJaOKaOLaOMaONaOOaOPaKgaKhaHiaOQaOQaORaOSaOQaOQaHjaOTaOUaHjaOVaNoaNoaNoaHjaOWaOXaOYaGaaEDaEDaEDaOZaOZaOZaPaaPaaPaabhabhaaaaaaaaaaIZaIZaIZaIZaIZaIZaPbaPcaIZaIZaIZaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaBjaBkaBjaBjaBjaBjaBjaBjaBkaBjaaaaxcaDraPdaNxaPeaPfaPgaPhaPiayraPjaNEaPkaKDaNGaPlaPmaPnaPoaPpaPqaNHaNHaNHaNHaNHaNHaNHaNLaNHaNGaPraNHaNHaPsaPtaPuaPuaPuaPvaPwaPuaPxaPuaPyaPuaPzaPAaPBaPCaPDaLiaLiaLiaLiaLiaLiaLiaLiaOcaLiaLiaPEaPFaPGaPHaPIaPJaPKaLiaLiaOcaLiaPLaLiaLiaLiaLiaLiaLiaLiaPMaLiaEeaPNaMGaMGaPOaPPaPQaPRaPSaPTaPUaLuaPVaPWaPXaLuaLuaLzaPYaMSaPZaQaaQbaLzaKfaKfaQcaKfaKfaKfaQdaQeaQdaKgaKhaHiaQfaOQaOQaQgaOQaQhaHjaHjaHjaHjaHjaHjaHjaQiaHjaHmaHmaHnaGaaQjaQkaEDaQlaQmaQnaQoaQpaPaabhaaaaaaaaaaaaaIZaQqaQqaQqaJaaQraLZaQsaQtaQuaJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxcaCpaxcaBjazOaBjaQvaQwaQxaQyaBjazOaBjaBjaxcaBlazQaNxaQzaQAaPgaPhaPiayraQBaNEazQaKDaNGaNHaQCaQDaQDaQDaQEaQFaQGaQDaQHaQDaQDaQDaQIaQDaQJaQDaQDaQDaQKaQLaQMaQNaQNaQOaQPaQQaQRaQSaQTaQUaQVaQWaQXaQYaLiaQZaQZaQZaRaaQZaQZaQZaQZaRbaQZaQZaQZaQZaQZaQZaQZaQZaQZaQZaQZaRcaQZaQZaQZaQZaQZaQZaQZaQZaLiaLiaLiaEeaRdaReaReaReaReaReaRfaMKaRgaOzaLuaLuaRhaLuaLuaRiaLzaRjaRkaRlaQaaRmaLzaKfaRnaRoaRpaRqaRpaRpaRraRsaKgaKhaHiaRtaRtaRuaRvaRwaRwaRxaHiaRyaRzaRAaEDaRBaIWaRCaHmaHmaRDaREaEDaRFaEDaRGaRHaRIaRJaRKaPaaPaaPaaPaaPaaPaaIZaRLaRMaRMaRNaLZaLZaLZaLZaQsaIZaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaROaROaROaRPayraysayraBjaBkaBjaBlazQazQaBmaBjaBkaBjaRQaRRaRSazQaNxaRTaRUaNAaRVaNCayraRWaNEazQaRXaRXaRXaRYaRZaRZaRZaRZaRZaRZaSaaSbaRZaScaRZaRZaRZaSdaSeaSfaSeaSgaShaSiaNHaNHaSjaSkaSlaNHaSmaSnaNHaSoaSoaLiaSpaObaLeaLeaLeaLeaLeaLeaLeaLeaSqaSraSsaStaSsaSsaSsaSuaSsaSvaSsaSwaSqaLeaLeaLeaLeaLeaLeaLeaLeaLhaLiaLiaLuaSxaSyaSzaSzaSzaSzaSzaMKaSAaSBaLuaSCaSDaSEaLzaLzaLzaLzaSFaLBaLzaLzaLzaLzaRpaSGaSHaSHaSHaSHaSIaRpaKgaKhaHiaSJaOQaRuaRvaOQaOQaSKaHiaSLaSMaSNaEDaHmaKvaSOaSPaSPaSQaSRaSSaSTaEDaSUaSVaSWaSXaSXaSYaSZaSZaTaaSZaTbaTcaRMaTdaTdaJaaTeaTfaTgaLZaQsaJaaaaaaaaaaaaaaaaaaaaaaaaJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaThaTiaTjaTkaTlazNazOazNaTmazQaTnaRSazQazQaToaTnazQaTmaRSazQazQazQaTpaTqaTraTsaTtaTuaTuaTvaTwazQaRXaTxaRXaTyaRZaTzaTAaTBaTCaTDaTAaTEaTFaTGaTHaTIaTJaSdaTKaTLaTMaSgaTNaSiaSiaTOaSiaSiaSoaSoaTPaTQaSoaSoaSoaTRaLiaObaLeaaaaaaaaaaaaaaaaaaaaaaSqaTSaTTaTUaTVaTWaTXaTYaTZaUaaUbaUcaSqaaaaaaaaaaaaaaaaaaaaaaLeaLhaLiaUdaUeaUfaSzaUgaSzaSzaSzaSyaMKaSAaUhaUiaSzaUjaUkaLzaUlaUmaUnaUoaUpaUqaUraUsaLzaRpaUtaUuaUuaUuaUuaUvaRpaKgaUwaHiaUxaUxaRuaRvaUyaUyaUzaHiaHiaUAaHiaEDaUBaIWaRCaUCaUDaRDaREaEDaEDaEDaPaaUEaUFaPaaPaaPaaPaaPaaPaaPaaUGaIZaIZaIZaIZaUHaTgaTgaTgaLZaQsaIZaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJaaaaaaaROaROaROaRPayraUIaytaUJaUKaUKaUKaUKaUKaUKaUKaUKaUJaUKaULazQazQaKDazQaUMaUNazQaUOazQaUPaUQaURaRXaUSaRXaTyaRZaUTaTAaTAaTAaTAaTAaTEaUUaTAaTAaTAaTJaSdaUVaTLaTLaSgaTNaSiaUWaUXaUXaUYaSoaUZaVaaVbaVcaVdaVeaLiaLiaObaLeaaaaaaaaaaaaaSqaSqaSqaSqaVfaVgaVhaViaVjaVkaVlaVmaVnaVoaVpaSqaSqaSqaSqaaaaaaaaaaaaaLeaLhaLiaLiaVqaSzaVraVsaVtaVuaVvaVwaVxaSAaUhaVyaSzaVzaSzaVAaVBaVCaVDaVEaVFaVGaVHaVBaVIaVJaVKaUuaVLaVMaUuaVNaRpaKgaKhaHiaOQaOQaRuaRvaOQaOQaOQaVOaVPaOQaVQaEDaNpaVRaVSaUCaUCaVTaVUaVVaEDaVWaVXaSVaSWaSXaSXaVYaSZaSZaSZaSZaVZaWaaLZaWbaLZaLZaLZaLZaLZaLZaWcaIZaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaxcaxcaxcaxcaBjaBjaBjaBjaBjaBjaBjaBjaxcaxcayraKDaWdaWeaWeaWfaWeaWeaWeaWeaWgaWeaWhaRXaUSaWiaWjaRZaWkaTAaWlaWmaWnaWoaWpaWqaWraTAaTAaWsaSdaWtaWuaWvaSgaTNaSiaWwaWxaWyaWzaSoaWAaWBaVbaWCaWDaVeaLiaLiaObaLeaLeaLmaWEaSqaSqaWFaWGaWHaWIaWJaWKaWLaWMaWKaWNaWKaWOaWPaWQaWRaWSaWTaSqaSqaWEaLmaLeaLeaLhaLiaLiaLuaWUaSzaWVaSzaWWaSzaSyaSzaSAaUhaWXaWYaSzaWZaLzaVBaVBaXaaXbaXcaXdaXeaVBaXfaXgaXhaUuaXiaXjaUuaXkaXlaKgaKhaHiaXmaXmaRuaRvaXnaOQaOQaXoaOQaXpaXqaEDaXraXsaXtaUCaUCaXuaXvaHmaEDaXwaSXaSVaSWaSXaRKaPaaPaaPaaPaaPaaPaaIZaTfaLZaXxaXyaLZaXxaXyaLZaXzaIZaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaXAaXBaXBaXCaXBaXBaXBaXDaXBaXBaXBaaaaBjaCraBpaXEaWeaXFaXGaXHaXIaXHaXJaXKaXHaWhaUSaUSaXLaXMaRZaXNaXOaXPaXQaXRaXSaXTaXUaXVaXWaXXaTJaSdaSdaSdaSdaSgaTNaSiaSiaSiaSiaSiaSoaXYaXZaYaaWCaYbaVeaLiaLiaObaLkaLkaYcaYdaYeaSqaYfaYgaYhaYiaYjaYiaYkaYlaYmaYnaYoaYpaYqaYoaYraYsaYtaSqaYuaYdaYvaYwaLkaLhaLiaLiaVqaSzaSzaSyaSzaYxaSzaYyaSzaSAaUhaVyaSzaSzaSzaYzaVBaVBaYAaYBaYCaXbaXeaYDaLzaYEaXhaYFaUuaUuaUuaXkaYGaKgaYHaHiaHiaHiaRuaRvaYIaYJaOQaYKaYLaNfaYMaEDaHmaVRaVSaUCaUCaYNaVUaYOaEDaYPaSXaSVaSWaSXaRKaPaaaaabhabhabhaaaaJaaTfaLZaXxaXyaLZaXxaXyaLZaXzaJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaXAaYQaYRaYSaYTaYTaYTaYTaYTaYTaYTaXCaYUaBjaBjaBlazQaWeaYVaYWaYXaXFaYYaYZaXKaXHaWhaZaaZbaZcaRXaRZaZdaZeaZfaZgaZhaZhaZiaZhaZhaZhaZjaZkaRZaZlaZmaZnaZoaZpaZqaZraZsaZtaZuaZuaZuaZuaZuaZuaZuaZuaLiaLiaLiaLiaLiaZvaZwaZxaZyaZzaZAaZBaZCaZDaZEaZFaZGaZHaZIaZJaZKaZLaZMaZBaZNaZOaZPaZQaZRaZSaZTaZUaZVaLiaLiaLuaZWaSyaZXaSyaSzaVraZYaVtaSAaUhaVyaVyaZZbaaaLzaVBaVBaVBbabbacbacaXebadaLzaRpaXhaUuaUuaUuaUuaXkaRpaKgbaebafbagbahbaibajbakbakbalaRuaRuaRuaRubamaUCaUCaUCaUCaUCbanbaobapbaqbarbasbatbauaRJbavaPaabhabhaaaabhabhaJaaTfaLZaXxaXyaLZaXxaXyaLZaXzaJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabawaYRaYRaYRaYRaYRaYRaYRaYRaYRaYRbaxbayazObazazQazQaWebaAbaBbaCbaDbaDbaEbaFbaGaWhbaHaUSaZcbaIbaIbaIbaJbaKbaIbaLbaMbaNbaObaPbaPbaQbaRaRZbaSbaTbaUbaVbaWbaXbaUbaYbaZbaZbbabbbbbcbbdbbebbfaZuaLiaLibbgbbhbbibbjbbkbblaSqbbmbbnbbobbpbbqbbrbbrbbsbbtbbubbvbbwbbxbbybbobbzbbmaSqbblbbkbbAbbBbbhbbCaLiaLiaVqaSzaSzaSyaSzaSzaSzbbDaSzbbEaSzbbFbbGaSzaSzbbHbbIbbJaVBaVBbbKaVBbbLbbMaLzbbNbbOaUubbPbbPbbQbbObbRbbSbbTbbUbbUbbVbbWbbXaRuaRubbYaRuaRuaRuaRubambbZbcabcabcabcabcabcbbccbcdbcebcfbcgbchaSXbciaPaaaaabhabhabhaaaaJaaTfaLZaXxaXyaLZaXxaXyaLZaXzaJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaXAaYQbcjbcjbckbckbckbckbckbckbckaXCaBjaBjaBjaBlbclbcmbcnbcobcpbcpbcpbcpbcqaXFaWhbcrbcsaZcbaIbctbcubcvbcwbaIbcxbcybczaRZbcAbcBbcCbcDaRZbcEbcFbcGbcHbcGbcIbcJbcKaZubcLbcMbcMbcNbcObcPbcQaZuaOcaOcbcRbcSbcSbcSbcSbcSbcSbcTbcUbcVbbqbbsbcWbcXbcXbcYbcXbcXbcZbbubbxbdabdbbdcbdabdabdabdabdabdabddaOcaOcaLubdebdfbdgbdhaSzaSzaSzbdibdjbdkbdlbdmbdnaSzaLzaLzaLzbdobdpbdpbdpaLzaLzaLzbdqaUuaUubdrbdsbdtbdubdsaKgbdvbdwbdxaHibdybdzbdAaYJaOQbdBaXoaYJbdCaEDbdDaHmbdEaUCaUCbdEaHmbdFaEDbdGbdHbdIaSWaSXaRKaPaaPaaPaaPaaPaaPaaIZaTfaLZaXxaXyaLZaXxaXyaLZaXzaIZaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaXAaXBaXBaXCaXBaXBaXBaXDaXBaXBaXBaaaaBjbdJaRSbdKaWeaXHaYWaXHaXFbdLaXHbdMaXHaWhbdNbdObdPbaIbaIbaIbdQbdRbaIbcybdSbcyaRZbcAbcBbcCbcDaRZbcEbcFbdTbdUbcGbdVbcJbcKaZubdWbcMbcMbdXbdYbcMbdZbeaaLiaLibbgbcSbebbecbedbeebefbegbehbeibejbekbcXbcXbelbembelbcXbcXbenbeobepbeqberbesbetbeubevbewbdabbCaLiaLiaLuaLuaLuaLuaLubexaVqbexbeyaLuaLuaLuaLuaLuaLuaLzbezbezbezbezbezbezbeAbezaLzbdsbeBbeBbdsbdwbdwbdwbdwaKgbdvbdwbdxaHiaHiaHibeCaHibeCaHibeCaHiaHiaEDaEDbeDbeDbeDbeDbeDbeDaEDaEDbeEaSXbeFaSWaSXaSXbeGaSZaSZaSZaSZaVZbeHaLZbeIaLZaLZaLZaLZaLZaLZaWcaIZaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhabhabhabhaxcaxcaBjaBjaBjaBjaBjaBjaBjaBjaxcaxcayrazQazQaWeaWeaWfaWeaWeaWeaWeaWgaWeaWhbeJbeKbeLbaIbctbeMbdQbeNbaIbeObePbeOaRZbcAbcBbcCbcDaRZbcEbcFbcGbeQbeRbeSbcJbcKbeTbcPbeUbeVbeWbeXbcMbdZbeYaLiaLibbgbeZbfabefbfbbfcbfcbfdbfebffbejbfgbcXbcXbelbfhbelbcXbcXbfibeobfjbfkbflbfmbfnbfobewbfpbdabbCbfqbfraJCbfsbdwbdwbdwbdwbdwbdwbdwbdwbftbdwbdwbdwbdwbfubdwbdwbdwbdwbdwbdwbdwbdwbfsbdwbdwbdwbdwbdwbdwbdwbfvbfwbfxbfybdwbfzbdwbdwbdwbdwbdwbdwbdwbdwbdwbfubfAbdwbdwbdwbdwbdwbdwbfsbfBaVXaSXbfCbfDbfEbfFaPaaPaaPaaPaaPaaUGaIZaIZaIZbfGaIZaPcaJabfHaJaaJaaIZaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaBjayuayvayvayvayvayvayvayvayvayuayvbfIazSazSbfJbfKbfLbfMbfMbfMbfNbfObfPaRXbfQbfRbfSbaIbaIbaIbfTbfUbaIaRZaRZaRZaRZbcAbcBbfVbfWaRZbcEbcFbcGbfXbfYbfZbgabgbbgcbgdbgdbgdbgebgfbcPbggaZubghaPLbbgbgibgjbefbgkbglbgmbgnbgobgpbejbgqbelbcXbgrbgsbgrbcXbelbcZbeobgtbfkbflbfmbgubfobewbewbdabgvaLiaLiaJCbfsbdwbdwbdwbdwbdwbdwbdwbdwbdwbgwbdwbdwbdwbdwbdwbgxbbUbbUbbUbbUbgybdwbfsbdwbdwbdwbdwbdwbdwbgzbgAbgBbgCbgDbgDbgDbgEbgDbgDbgDbgDbgDbgDbgDbgDbgDbgDbgDbgDbgDbgDbgDbgFbgGbgHbgIbgIbgJaSWbgKaSXbgLaSZaSZbgMaSZbgNbeHbgObgObgObgPaIZaQtaQsaQsbgQaJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhaBjazPazQazPaBpazQazQbgRazPazQazPaBpazQazQazQbgSbgTbgSbgSbgSbgSbgUbgVaRXaRXaRXbgWaZcbaIbctbgXbgYbeNbaIbgZbhabgZaRZaRZaRZbhbbhcaRZbcEbcFbhdbhebhfbhgbcJaRXaZuaZuaZuaZuaZuaZuaZubhhaZubhiaLibbgbgibhjbefbgkbhkbhlbgnbgobefbejbhmbhnbcXbhobhpbhqbcXbhrbhsbeobhtbhubhvbhwbhxbhybewbhzbdabhAbhBbhCaJCbfsbdwbdwbhDbdwbhEbhFbhFbhFbhFbhGbhFbhFbhHbdwbdwbdwbdwbdwbhIbhJbhKbhLbfsbdwbdwbdwbdwbdwbhMbhNbhObhPbhQbdwbdwbdwbdwbdwbhRbhSbdwbdwbdwbdwbdwbdwbdwbdwbdwbdwbdwbdwbdwbfsbhTbhUbhVbhWaSWaSXaRKaPaaPaaPaaPaaPaaPaaIZbgObgObgObgOaIZaQsaQsaQsbhXaIZaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaayraBjbhYaBjaBlazQazQaBmaBjbhZaBjaBnbiabibbibbgSbicbidbiebifbigbgUbihbiibijbijbikbilbaIbaIbaIbimbinbaIaRXaRXaRXaRXbiobipbiqbirbipbisbcFbitbiubcGbcIbcJbivbcJbiwbixbixbixbixbiybizbiAbiBaLibbgbcSbefbiCbiDbiEbiFbiGbgobiHbiIbbrbiJbiKbiLbiLbiLbiMbiNbbwbiObiPbiQbiRbiSbiTbiUbiVbiWbdabbCaLiaLibiXbiXbiXbiXbiXbiXbiXbiYbiZbiZbiZbjabjbbiYbjcbjcbjcbjcbjcbjdbjdbjdbjebjdbjdbjdbjdbjfbdwbhRbjgbjhbjibjjbdwbdwbdwbjkbjkbjlbjlbjlbjlbjlbjmbjnbjnbjnbjobjnbjpbjqbjnbjnbjrbjsbjsbjsbjsbjtbjubjvbjwaPaabhaaaaaaaaaaaaaIZbjxbjxbjybjyaIZaQtaQsaQsbgQaJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhaCpaxcaCqazOaBjaCraCsbjzbjAaBjazOaCqaBjaxcaCpayrbgSbjBbjCbjCbjCbjDbjEbjFbjGbipbipbjHbjIbaIbctbjJbimbjKbaIbjLbjLaUSbjMbjNbjObjPbjQbjQbjRbjSbjTbcHbjUbjVbcJaUSbjWbjXbiAbjYbjZbkabkbbkcbkdbkebkfbkgbcSbkhbcVbkibkjbkkbklbgobkmbcSabhbknbkobkobkobkobkobkpabhbdabkqbkrbksbktbewbkubewbkvbdabbCaLibkwbiXbkxbkybkzbkAbkBbiXbkCbkDbkDbkDbkEbkFbkFbkGbkHbkIbkJbjcbkKbkLbkMbkNbkLbkObkPbjdbjhbkQbjhbjhbjhbkRbjjbkSbkTbkSbkUbkUbjlbkVbkWbkXbjlbkYbkZbkYbjlblablbblabjsblcbldblcbjsbleblfbjsblgblhaPaaPaaPaabhabhaaaaaaaaaaIZaIZbliblibliblibliblibliaIZaIZaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJaaaaaaaaaabhabhabhabhaBjbljaBjaBjaBjaBjaBjaBjblkaBjabhabhabhaaabgSbllbgSblmbjCblnblobgSaUSaWiblpblqblrblsblsblsblsblsblsbltblublvblwblxbcJbcJbcJbcJbcJbcJbcJblyblzbcJbcJbcJblAblBblCblDblEblFblEblGblHbiBaLiblIbcSblJbcVbcVbcVbcVbklbgoblKbcSabhbknbkoblLblMblNbkobkpabhbdablObfkblPblQbewbiUbewbewbdabbCaLiaLibiXblRblSblTblTblUblVbkFblWbkFbkFbkEbkFbkFbkGblXblYblZbjcbmabkLbmabmbbmabmcbkLbjdbmdbmdbmebmfbjhbmgbjjbmhbmibmjbmkbmkbjlbmlbmmbmnbmobmpbmqbmrbjlbmsbmtbmubjsbmvbmwbmvbmxbmybmybjsbmzblhaaaabhaaaabhaaaaaaaaaabhaaaaIZbmAbmAbmAbmAbmAbmAbmAaIZaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmBbmBaaaaaaaaaaaaaaaaaabmBbmCbmBbmBbmBbmBbmBbmBbmDbmBaaaabhabhaaabgSbmEbmFbmGbmHbmHbmIbmJbmKbmLaRXbmMbmNbmObmObmObmPbmPbmPbmPbmPbmPbmQbmRbcJbmSbmTbmUbmVbmWbmXbmYbmZbcJbnabnbbncbiAbiAbndbnebnfbngbnhbnibnjbnkbbgbnlbnmbnnbnobnpbcVbnqbgobcSbcSabhbknbkoblMbkoblMbkobkpabhbdabdabnrbflbnsbewbntbnubnvbdabbCaLiaLibiXbnwblSbnxbnybnzbnAbkFbnBbnCbnDbnEbnFbnGbkGbnHbnIbnJbjcbmabkLbmabmbbmabmcbnKbjdbnLbnMbnNbnObjhbkRbjjbnPbnQbnQbnRbnSbnTbnUbnVbnWbmnbmnbmnbnXbjlbnYbnZboabjsbobbmybmybocbodboebjsbmzblhbofbofbofbofabhabhabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabogbmBbmBaaaaaaaaaaaabmBbmBbohbohboibojbohbohbohbohbmBaaaabhabhaaabgSbokbgSbolbombombonbgSboobooaRXbopboqbopbopbopboqbopaRXaRXbcJbcJblzborbcJbmWbmWbmWbmWbmWbmWbosbotboubovbowboxboybozboAbozboBboCboDblHbiBboEboFboGboHboIboJboKbcVbklbgobcSabhabhboLboMblNboNblLboOboPabhabhbdaboQboRbdabdabdabdaboSbdaboTaLiaLibiXboUboVboWblTblUboXbkFboYboZbpabpbbpcbpdbjcbpebpfbpgbjcbmabkLbmabmbbmabmcbkLbjdbjhbjhbjhbjhbjhbkRbjjbphbpibpjbpkbplbpmbpnbpobppbppbpqbmnbprbjlbpsbnZbptbjsbpubpvbpwbpxbpybpzbjsbmzbpAbpBbpCbpDbpEaaaaaaabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabpFbpGbpHbmBaaaaaabmBbmBbmBbohbohbohbohbohbohbohbpIbmBbmBbmBabhaaabgSbpJbmFbpKbombpLbpMbgSaaaaaaaaabpNbpNbpNbpNbpNbpNbpNaaaaaabpObpPbpQbpRbpSbpTbmWbmWbmWbpUbmWbmWbpVbpWbpXbnebpYbpZbqabqbblHbqcbiAbiAbiAbqdbqeaOcbnlbqfbqgbqgbqgbqgbqhbqibqjabhaaabknbqkbkobkobkobqlbkpaaaabhbqmbqnbqobqpbqqbqrbqmbqsbqmbqtaLibqubiXbqvbqwbqxbqybqzbiXbqAboYboZbqBbqCbkFbqDbjcbqEbqFbqGbjcbqHbqIbqJbqKbqLbqMbqLbqNbqObqPbqObqObqObqQbjjbqRbmibqSbqTbqUbqVbqWbqXbqYbqYbqZbrabrbbjlbrcbrdbrebjsbrfbrgbrhbribmybrjbjsbrkbrlbrmbrnbrnbrnbrnbrnbrnbroaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabpFbpGbrpbpHbmBbmBbmBbrqbmBbrrbohbohbohbohbohbohbohbrsbrtbruabhaaabgSbrvbmFbmFbmFbgSbgSbgSaaaaaaaaabpNbrwbrwbrwbrwbrwbpNaaaaaabpObrxbrybrzbrAbrAbrAbrAbrAbrAbrAbrAbrAbrBbrCbrDbrEbrFbrGblHbrHblEbrIblEbrJbiBbrKbrLbnlbnlbqjbrMbrNbrObrPbrQbqjaaaaaabknbrRbrSbrTbrSbrUbkpaaaaaabqmbrVbrWbrXbqmbrYbqmbqsbqmbqtaLibrZbiXbsabqwbsbblTbscbiXbsdbsebsfbsgbshbkFbsibjcbkGbsjbskbjcbjdbslbjdbsmbsnbsobspbspbspbspbspbspbspbsqbsrbssbpibpjbstbsubsvbswbsxbsxbsxbpqbmnbsybszbsAbsBbsCbsDbsEbsFbsGbsHbsIbsJbjsbsKbsLbsMbsNbsNbsNbsNbsNbsOblhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabpFbpGbrpbrpbmBbmBbrqbohbmBbrrbohbohbohbohbohbrqbmBbmBbmBbmBbmBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabpNbrwbrwbrwbrwbrwbpNbsPbpObpObsQbrybmYbmWbsRbsRbsRbsRbmWbmWbmWbmWbsSbsTbsUbsVbsWbsXbsYbsZbtablEblEbrJbtbbtcbtdbtebtfbtgbthbtibtjbtkbtlbqjabhaaabknbtmbtnbtnbtnbtobkpaaaabhbqmbtpbtqbtrbqmbtsbqmbqsbqmbttaLibrZbiXbtubqwbtvbtwbtxbiXbtyboYbkEbsgbtzbtAbsdbsdbtBbtCbtDbtEbtFbtGbtHbtIbtJbtKbtLbtMbtNbtObtPbtQbtRbkRbtSbtTbtUbtVbtWbtXbjlbtYbsxbsxbtZbpqbmnbuabubbucbudbuebsDbufbugbuhbuibmybujbukbulbjsbumbumbumbumbumbumbmzblhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabunbmBbpHbrpbuobohbupbohbmBbrqbuqbohbohbohbrqbmBbrqburburbrqbmBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabpNbrwbrwbrwbrwbrwbusbutbuubutbuvbuwbuxbuybuzbmWbmWbmWbmWbmWbuAbcJbcJbuBblEbuCbuDbuEblHbuFblEbuGblEbuHbqtbrKbuIbuJbuKbuLbuMbuNbuObtkbuPbqjaaaaaabknbuQbuRbuSbuRbuTbkpaaaaaabuUbuVbuWbuUbuUbuUbuUbuXbuUbuYaOcbuZbiXbiXbvabvbbvcbiXbiXbvdbvebvfbkFbkFbkFbkFbkFbvgbvhbvibvibvibvjbvibvkbtJbtKbvlbvmbvnbvobvpbvqbtRbvrbvsbvtbvubvubvvbvwbjlbvxbmnbmnbvybpqbmnbvzbvAbvBbnZbvCbsDbsDbvDbvEbvFbvDbsDbjsbjsbjsbvGbvHbvIbvJbvKbumbvLblhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmBbmBbmBbmBbohbohbohbrqbmBbmBbmBbmDbmBbmBbrqbohbvMbvMbvNbmBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabpNbrwbrwbrwbrwbrwbvObvPbvQbvRbvSbmWbmYbmWbsRbsRbvTbsRbmWbmWbvUbvVbcJbvWblEbuCbuDblEbvXblEblEbvYblEbuHbqtbvZaLibuJbwabwbbwcbwdbwdbwebwfbqjabhabhbwgbwhbwibwjbwkbwlbwmabhabhbwnbwobwpbwqbwrbwsbwtbwubuUbwvaLibwwbwxbwybwzbwAbwBbwCbwDbwEbwFbwGbwHbwHbwHbwHbwHbwIbwJbwHbwHbwHbwKbnGbwLbwMbtKbwNbwObwPbwPbwQbtQbtRbkRbjjbwRbwSbwTbwUbwUbjlbwVbwWbwXbszbwYbmnbwZbszbxabxbbxcbxdbxebxfbxgbxhbxibxjbxkbxlbxmbxnbxobxobxobxpbxqbxrblhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmBbmBbmBbrqbohbmBbohbohbohbohbohbohbohbohbrqbmBbohbohbohbohbohbxsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabpNbrwbrwbrwbrwbxtbpNbsPbpObpObxubmWbmYbmWbmWbmWbmWbmWbmWbmWbvUbxvbcJbxwbxxboAbxybozbxzbozbxAblEbxBbrJbxCbvZaLibuJbuKbqjbxDbxEbxFbxGbxHbqjaaaaaaabhbknbxIbxJbxIbkpabhaaaaaabwnbxKbxLbxMbxNbxObxObxPbxQbxRbxSaPBbxTbxUbxVbxWbxXbxYbxZbxYbxYbyabybbycbydbydbydbyebkFbkFbkFbyfbygbygbyhbtKbtKbtKbyibyjbykbvpbtQbtRbjibjjbylbylbylbylbylbjlbszbszbszbszbymbynbymbszbyobypbyqbyrbyrbyrbysbytbyubyvbywbyxbyybyzbyAbyBbyCbyDbyEbyFbyGbofbyHbyHbofabhabhabhabhabhabhabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmBbmBbmBbmBbmBbmBbmBbmBbmBbmBbmBaaabmBbmBbrqbohbohbohbmBbohbohbmBbmBbmBbyIbmBbohbohbmBbohbohbohbohbohbxsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabpNbrwbrwbrwbrwbrwbyJbvPbvQbvRbrxbyKbosbyLbpTbmWbyKbmWbmWbmWbvUbyMbcJbyNblEbuCbyObuFbyPbyQblEblEbyRbrJbxCbvZbbgbuJbySbqjbyTbyUbyVbyWbrQbqjaaaaaaabhbyXbyYbtnbyZbzaabhaaaaaabwnbzbbzcbzdbzebzfbzgbzhbuUbziaLiaLibsdbsdbzjbzkbvgbzlbzmbznbzobzobznbzmbznbzmbznbzmbznbzmbjbbjbbygbzpbwPbzqbzrbtKbyibzsbztbzubzvbtRbzwbzxbzybzzbzAbyrbyrbzBbyrbyrbzCbzDbzEbzFbzGbyrbzHbzIbzJbzKbzKbzKbzLbzLbzLbzLbzLbzMbzNbzObzPbzObzQbzObumbzRbzSbzTbzUbzVbofabhaaaaaaaaaaaaaaaaaaabhaaaabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmBbrqbohbohbohbohbohbohbohbrqbmBbmBbmBbrqbohbohbohbohbxsbohbohbmBbzWbzXbohbmBbohbohbxsbohbohbohbzYbzZbxsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabpNbrwbrwbrwbrwbrwbAabAbbAcbAbbAdbAebAdbAdbAdbAdbAdbAfbAgbmWbvUbAhbcJbAibAjbAkbAlbAmbAnbAobAobAobAnbAnbApbvZaMCbAqbuKbqjbArbAsbAtbAubAvbqjaaaaaaabhbAwbAxbwjbAybAzabhaaaaaabwnbAAbABbACbADbzfbzgbzhbuUbAEaLiaLibAFbAGbAHbzkbAIbAJbzmbAKbALbAMbANbAObAPbAQbARbAQbASbzmbkFbkFbygbATbwPbAUbAVbAWbAXbAYbAZbAZbBabBbbBcbBdbBebBfbBgbBhbBibBhbBhbBjbBhbBhbBkbBlbBhbBhbBmbBnbBobzKbBpbBqbBrbBsbBtbBubzLbBvbBwbBxbBybBzbBwbBAbumbzRblhbBBbBCbBDbofaaaaaaaaaaaaaaaaaaaaaabhbBEabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmDbohbohbohbohbohbohbohbohbohbmDbohbmDbohbohbohbohbohbBFbohbohbmBbohbohbohbmBbohbohbBGbohbohbohbBHbBIbxsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabpNbrwbrwbrwbrwbrwbpNbsPbpObpObpObcJbpObpObpObBJbBJbBJbBJbBKbBLbBLbBJbBJbBMbBNbBObBMbAnbBPbBQbBRbBSbAnbxCbvZaObaLmaLmbqjbqjbqjbqjbqjbBTbqjaLeaLeaLebBUbBVbxJbBWbBXaLeaLeaLebuUbuUbuUbuUbuUbuUbuUbuUbuUbAEaLibBYbzmbzmbBZbCabzmbzmbzmbCbbALbCcbALbCdbCebCfbCgbChbCibCdbkFbkFbygbCjbCkbClbCmbCnbCobCpbCmbCmbCqbCrbCsbCtbCubCubCubCubCvbCubCubCubCwbCwbCxbCybCzbCzbvBbCAbvCbzKbCBbCCbCDbCEbCFbCGbCHbumbumbCIbCIbCIbumbCJbumbzRblhbCKbBCbCLbofabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmBbrqbohbohbohbohbohbohbCMbrqbmBbmBbmBbrqbohbohbohbohbxsbohbohbmBbohbCNbohbmBbohbohbxsbohbohbohbzYbzYbxsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabpNbCObrwbrwbrwbCObpNaaaaaaaaaaaaabhaaaaaaaaaaaabBJbCPbCQbCRbCSbCTbCUbBLbCVbCWbCXbCYbAobCZbDabDbbDcbAnbxCbvZaLiaLiaLibDdaOraOqaOcbDebDfbDgaZUaZUaZUbDhbDibDjbDkbDlaLiaLiaLiaLiaOraLiaOcaLiaLiaLibDdaLibAEaLibDmbzmbDnbDobDpbDqbDrbzmbDsbALbDtbALbCdbCebCebDubDvbDwbCdbkFbDxbygbwPbDybDzbDAbDBbDCbDDbDEbDFbtRbtRbjibDGbCubDHbDIbDJbDKbDLbDMbCubDNbDObDPbDQbDRbCzbvBbCAbDSbDTbDUbDVbDWbDXbDYbDZbCHbEabEabEabEabEabEabEabumbzRblhbEbbzVbzVbofabhabhabhabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJbaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmBbmBbmBbmBbmBbmBbmBbmBbmBbmBbmBaaabmBbmBbrqbohbohbohbmBbohbohbmBbohbEcbEdbmBbohbohbmBbohbohbohbohbohbxsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabpNbpNbEebEebEebpNbpNaaaaaaaaaaaaabhaaaaaaaaaaaabBLbEfbEgbEhbEibEjbEkbElbEmbEnbEobEpbEqbErbDbbEsbEtbAnbxCbEuaLiaLiaLiaLiaLiaLibEvaLibvZaLiaLiaLiaLiaLibEwbExbEyaLiaLiaLiaLiaLiaLiaLiaOcaLiaLiaLiaLiaPLbAEbEzaLibzmbEAbEBbECbEDbDrbzmbEEbALbAMbEFbzmbEGbEHbEIbEJbEKbzmbkFbkFbygbygbygbygbygbtRbtRbtRbtRbtRbtRbELbkRbEMbCubENbEObEPbEQbERbESbCubETbEUbEVbEWbEXbCzbvBbEYbEZbFabFbbFcbFcbFdbFebFfbCHbEabEabFgbFhbEabEabEabumbzRblhbCKbBCbFibofabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmBbmBbmBbrqbFjbmBbohbohbmBbyIbmBbmBbmBbohbohbmBbzYbohbohbohbohbxsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabFkbFlbFlbFlbFmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabBJbFnbFobFpbFqbFrbFsbFtbFubFvbFwbFubFxbFybFzbFAbFBbAnbFCbFDboFboFboFbFEboFboFbFFboFbFGaLibFHbFIaLiaOkbFJbFKbFLbFMbFNbFOaZUaZUbFPaZUbFQbFRaZUbFSbFTbFUbFVaLiaLibzmbFWbFXbFYbznbznbzmbznbFZbznbzmbzmbzmbzmbzmbzmbzmbzmbkFbkFbkFbGabGbbzlbGcbGdbGebGfbGgbGhbGdbGibsqbGjbCubGkbGlbGmbGnbGobGpbCubGqbGrbGsbGtbGubCzbvBbGvbGwbzLbGxbGybGzbGAbGBbGCbCHbEabEabEabGDbEabEabEabumbzRbzSbGEbBCbBDbofaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmBbmBbmBbmBbohbohbohbohbohbohbohbohbohbmBbzYbohbohbohbohbmBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabBJbBJbBLbBLbBLbBLbBJbBJbGFbCWbCXbGGbAnbAnbAnbAnbAnbAnbGHbGIaLmaLmaLmaLmbGJbGJbGJbGJbGJbGJbGJbGJbGJbGJbGKaJCbGLbGMbGMbGMbGMbGMbGNbGMbGMbGMbGMbGObGPbGOaLnaMDbGQbzmbGRbGSbGTbGUbGVbzmbGWbALbGXbGYbGZbHabHbbHcbHdbHebGYbHfbkFbkFbkFbkFbkFbvgbHgbHhbHibHhbHjbGdbHkbkRbHlbHlbHlbHlbHlbHlbHlbHlbHlbHmbHmbHmbHmbHmbHmbHnbHobHpbzLbzLbzLbzLbzLbzLbzLbCHbumbumbumbumbumbumbumbumbzRblhbHqbHrbofbofabhabhabhabqabqabqabqabqabqabqabqabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabogbmBbpHbrpbuobohbohbohbohbohbohbupbohbHsbmBbzYbohbHtbohbrqbmBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabHuaaaaaaaaaabhaaaaaabBMbHvbHwbHxbHybHybHzbHAbHBbHCbHDbHEbGIaaaaaaabhaaabGJbHFbHGbHHbHIbHJbHKbHLbHMbGJbHNbHObHPbGMbHQbHRbHSbHTbHUbHVbHWbHXbHYbHZbIabGObGObGObGObzmbIbbIcbIdbIebIfbIgbIhbIibIjbIkbIibIibIibIlbALbImbInbIobydbydbIpbIqbIrbIsbHgbItbIubIvbIwbGdbHkbkRbHlbIxbIxbIxbIybIxbIxbIxbHlbIzbIzbIAbIzbIzbHmbIBbICbIDbIEbIFbIGbIHbIIbIJbIKbILbIMbINbIObIPbIQbIRbISbISbITbIUbIFbIFbofabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhabhabhabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabpFbpGbrpbrpbmBbmBbmBbmBbmDbmBbmBbxsbxsbxsbmBbmBbrqbIVbrqbmBbmBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaltaltalualtaltaaaabhaaabBMbBMbIWbIXbIYbFubIZbJabJbbJbbJcbJdbJebJfabhbJgbJhbJibJjbJkbHMbJlbHMbJmbHMbHMbHMbGJbJnbJobJpbGMbJqbJrbJsbJtbJubJvbJwbGMbGMbJxbJybJzbJAbJBbJCbJDbJEbJFbJGbJHbJIbJJbJKbJLbJMbJNbJObJPbALbALbALbJQbsdbsdbsdbsdbsdbJRbJSbzkbHgbJTbJUbHhbJVbGdbHkbkRbHlbIxbIxbIxbIxbIxbIxbIxbHlbJWbJXbJYbJZbKabKbbKcbKdbIDbKebKfbKgbKgbKgbKgbKgbKgbKhbKibKjbIPbofbKkbKlbKmbKmbKnbKobKfabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhabhbKpbKqbKpabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabpFbpGbrpbpHbmBbmBbmBbmBbohbohbohbKrbohbohbohbohbrqbmBbmBbmBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaltbKsbKtbKsaltbKubKubKubBMbKvbKwbCWbKxbKwbKybBMbGIbKzbGIbGIbKAbKBaaabKCbKDbKEbKFbHMbHMbKGbHMbKHbKIbKJbHMbGJbJnbJobKKbGMbKLbKMbKNbKObKPbKQbKRbGMbELbKSbKTbKUbKTbKVbKWbJNbKXbKYbKZbALbAMbzmbLabLbbLcbzmbLdbALbALbALbALbLebsdbLfbLgbLhbLibLjbLkbLlbLmbLnbHhbLobLpbLqbLrbLsbHlbIxbIxbLtbIxbIxbIxbIxbHlbLubLvbLvbLwbLxbLybLzbLAbIDbLBbLCbKgbKgbKgbKgbLDbLEbLEbLEbLEbLFbLGbLHbLIbLJbLKbLLbLMbKfabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhabhbKqbKpbLNbKpbKqabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabpFbpGbpHbmBaaaaaabmBbmBbrqbLObohbohbohbohbohbohburbmBbmBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaluaohbLPaohalubKubLQbLRbBMbLSbKwbLTbKwbLUbKybBMbLVbLWbLXbGIbKAbKBabhbKCbLYbLZbMabMbbMcbMbbMbbMdbMebMfbMfbMgbMhbMibMjbGMbGMbGMbGMbGMbMkbMlbGMbGMbMmbMnbMobMpbMqbMrbMsbzmbMtbMubMvbMwbMxbzmbMybMzbMAbzmbMBbMCbMDbMEbMFbMGbsdbMHbMIbvibMJbvibMKbMLbMMbMNbMObMPbMQbGdbHkbkRbHlbHlbMRbIxbIxbMSbMRbHlbHlbMTbMUbMVbMVbMWbHmbMXbMYbIDbMZbKfbKgbKgbNabNbbNcbKgbKgbNdbNebNfbNgbNhbNibNjbNkbNlbNmbKfabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhabhbNnbKqbNobNpbNqbKqbNnabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabunbmBbmBaaaaaaaaaaaabmBbmBbmBbrqbohbNrbohbohbrqbmBbmBaaaaaaaaaaaaaaaaaaaaJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaltaohaohaohbNsbNtbKwbKwbNubLSbKwbNvbKwbKwbKybBMbNwbLXbNxbGIbKAbKBaaabKCbNybNzbNAbHMbHMbNBbHMbNCbNDbNEbNFbGJbNGbNHbNIbNJbNKbNKbNKbNKbNLbNMbNKbNKbNNbNObNPbNQbNRbNSbNTbIgbIgbIgbIgbIgbIgbIgbIgbIgbIgbNUbNUbNUbNUbNUbNUbNVbNWbsdbsdbsdbsdbNXbNYboYbGdbGdbGdbGdbGdbGdbHkbkRbHlbNZbOabObbOcbOdbOebNZbOfbMTbMUbMVbMVbMWbHmbOgbOhbIDbOibIFbOjbOkbOlbOmbOnbOobKgbOpbOqbIPbOrbOsbOtbIFbOubOvbOvbIFabhabhabhabhabhabhabhabhabhabhabhabhabhabhabhabhabhabhabhabhabhabhbKqbKqbOwbOxbOxbOxbOybKqbKqabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabmBbmBaaaaaaaaaaaaaaaaaaaaabmBbmBbmBbmBbmBbmBbmBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalubLPbLPbLPalubKubOzbOAbOBbOCbKwbODbOEbOFbOGbBMbGIbGIbGIbGIbKAbOHabhbOIbJhbOJbJjbOKbHMbOLbHMbHMbHMbOMbONbOObOPbOQbORbOSbOTbOTbOTbOTbOUbOTbOVbOWbOXbOYbOZbPabPbbPcbPdbqObPebqObqObqObqObqObqObqObqObqObqObqObqObqObPfbPgbsdbMHbPhbLjbPibLjbLkbPjbPkbPlbPlbPmbPnbOYbOZbPobHlbPpbPqbPrbPsbPtbPubPvbOfbOfbOfbOfbOfbOfbPwbPxbPybPzbPAbIFbIPbIPbIPbIPbIPbIPbPBbKgbKgbIPbofbKkblhbIFbPCbPDbPEbPFaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabPGbPHbPGbOxbPIbOxbPJbPKbKpabhabhabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaltappbPLbPMaltbKubKubKubBMbBMbKubKubKubBMbBMbBMbPNbGIaaabPObPPbKBaaaaaaabhaaabGJbPQbPRbPSbHMbPTbPUbPVbPWbGJbPXbPYbPZbQabQbbQcbQdbQebQfbQbbQbbQbbQbbQbbQgbQhbQbbQbbQibQbbQjbQbbQbbQbbQbbQbbGObGObGObGObGObGObGObGObQkbHkbsdbQlbQmbQnbQobvibQpbQqbQrbQsbQsbQtbQsbQsbQubQvbHlbQwbQxbQybQxbQxbQxbQzbQAbQBbQCbQDbQEbQFbQGbQHbMYbIDbQIabhbQJbQKbQLbQMbQNbQMbQObQPbQQbIPbQRbzRbQSbIFbIFbIFbIFbIFabhabhabhabhabhabhabhabhabhabhabhabhabhabhabhabhabhabhabhabhabhabhbKqbKqbQTbOxbOxbOxbQUbKqbKqabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaltaltbQValtaltaqCaqCaqCaqDachaqDaqCaqDachaqDbPObLXbPOabhbPObKAbKBabhabhabhabhbGJbGJbGJbGJbGJbGJbGJbGJbGJbGJbQWbPYbQXbQYbQbbQcbQdbQebQfbQZbQZbRabRbbRcbRdbRebRfbRgbRhbRibRjbRkbRlbRmbRnbRobRpbRqbRqbRqbRqbRqbRrbGObQkbRsbRtbRtbRtbRtbRtbRubRvbRwbRtbRtbRtbRtbRtbRtbRsbRxbRybRzbRAbRBbRAbRCbRAbRDbREbRFbREbREbREbREbRGbRHbRIbIDbQIabhbQJbRJbRKbRLbRMbRNbRObRPbRQbIPbRRbzRbpAbofbRSbRTbofabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJaaaaaaaaaaaaaaaaaaaaaaaaabhabhbNnbKqbRUbRVbRWbRXbNnabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaqCaqCaqCbGIbGIbGIbGIbPObPObPObGIbGIbGIbGIbGIbGIbGIbKAbKBaaaaaaaaaabhbRYbRZbRZbSabSbbScbScbSdbSdbRYbJnbPYbQXbSebQbbSfbSgbSgbShbSibQZbSjbSkbSlbSmbSnbSobSpbSqbSrbSlbSsbSlbStbSubSvaqDbSwbSwbSwbSwbSwbSxbGObQkbSybSzbSAbSBbSCbRtbSDbSEbSFbRtbSGbSHbSIbSHbSGbSybSJbSKbSLbSMbSLbSNbSObSLbSPbSLbSQbSLbSRbSLbSLbSSbSTbSUbSVbQIabhbQJbRJbSWbQMbSXbQMbSYbSZbTabIPbzVbzRbpAbofbzVbzVbofaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhabhbKqbKpbTbbKpbRXabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabTcbGIbGIbGIbNxbTdbGIbTebLXbTfbNwbGIbTgbPNbThbTibLXbKAbKBaaaaaaaaaabhbRYbTjbSabSabSabTkbScbScbTlbRYbTmbPYbTnbTobTpbTqbTrbTsbTtbTubTvbTrbTrbTrbTwbTxbTybTzbTAbTBbRnbTCbTDbTEbTFbTGbRpbTHbTIbTJbTKbSwbSxbTLbQkbRsbTMbSGbSGbTNbRtbTObTPbTQbRtbSHbSGbSHbTRbTSbTTbkRbHlbTUbTVbTWbTVbTXbTYbTZbQxbUabUbbUcbUdbUebOfbUfbUgbUfbUhbUhbIPbIPbIPbIPbIPbIPbIFbIFbIFbIPbzVbzRbUibzVbzVbUjbofabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhabhbKpbKqbKpabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaqDaqCaqCaqCbTcbUkbUlbUmbUnbUobUpbUqbLXbLXbUrbGIbLXbLXbLXbLXbLXbPPbKBaaaabhbUsbUtbUubUvbUvbUwbUvbUxbUybUzbUzbUAbUBbPYbJobUCbUDbUEbUFbUGbUHbUIbUJbUGbUKbUGbULbUMbUNbRgbUObUPbUQbURbUSbUTbUUbUVaqDbUWbUXbTKbUYbSwbSxbTLbQkbRsbUZbVabSGbVbbRtbVcbVdbVebRtbSGbSGbVfbSGbSGbRsbQkbHlbOfbOfbOfbOfbPwbVgbVhbVibPwbOfbOfbOfbOfbOfbVjbVkbVlbVmbVnbVobVpbVqbVpbVrbUhbVsbVlbVtbVubVvbzRbpAbofbofbofbofaucabhabhabhabqabqabqabqabqabqabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhabhabhabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaqDaqCaqCbGIbGIbGIbGIbGIbVwbLXbGIbVxbUobVybUobUpbUobUobUobUobUobVzbKBaaaabhbVAbVBbVCbVDbVEbVEbVEbVEbVEbVEbVFbVGbVHbVIbJobQYbVJbVKbVLbSlbVMbVNbVObVPbVQbVRbVSbVTbVTbVUbVVbRnbVWbVXbVYbVZbWabWbbWcbTHbWdbTKbTKbSwbSxbTLbQkbRsbWebWfbWgbRubRtbRtbWhbRtbRtbWibWibWjbWibWibRsbQkbHlbWkbWlbWlbWmbWnbQxbWobWpbWqbWrbIxbIxbIxbOfbWsbVlbVkbWtbWubVobWvbWwbWxbWybUfbVlbWzbVlbVubHqbWAbWBbofaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhabhaqDaqDaqDbGIbWCbWCbWDbGIbWEbWFbWFbWFbWFbWFbWFbWFbWFbWFbWFbWGbLXbKAbOHbGIbGIbOHbWHbRYbWIbSabSabSabWJbWKbWLbWMbRYbWNbWObJobQYbWPbWQbWRbSlbSlbWSbQZbWTbWUbWVbWWbSlbSlbRgbWXbWYbWZbXabXbbXcbXbbXdaqDbSwbSwbSwbSwbSwbSxbGObQkbRsbSGbXebXfbXgbXhbXibXjbXkbXlbSGbSGbSGbSGbXmbRsbQkbHlbIxbXnbIxbXobXpbQxbXqbQxbXrbXsbIxbXnbIxbOfbXtbVlbVlbVkbXubXvbXwbXxbXybXzbUhbXAbVlbXBbVubUhbXCbXDbofaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaqDaqCaqCbGIbUnbUobUobUobXEbWFbXFbXGbWFbXHbXIbXJbXKbXLbWFbXMbJbbXNbXObXPbJbbXQbWHbRYbRYbRYbRYbRYbRYbRYbRYbRYbRYbXRbXSbJobXTbQbbXUbXVbVObXWbVObQZbSlbSlbSlbWWbXXbXYbXYbXZbYabYbbTCbYcbYdbYebTGbRpbTHbYfbYgbYgbSwbSxbGObQkbYhbYibYibYibYjbYkbSGbYlbXfbYmbXfbXfbXfbXfbYnbRsbQkbHlbIxbIxbIxbYobYpbWpbYqbQxbYrbYsbWlbWlbYtbOfbYubYvbVlbVkbYwbVobWxbYxbXvbYybUhbYzbYzbYzbVubYAbXCbXDbofabhabhabhabhabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaqDaqCaqCbGIbWEbGIbGIbGIbWFbWFbYBbWFbWFbYCbYCbYCbYCbYDbYEbYFbYGbYHbYIbYIbYIbYIbYJbYKbYKbYKbYLbYKbYMbYNbYNbYObGIbWNbYPbJobYQbYRbYSbYTbXYbXYbYUbYVbXYbXYbYWbYXbYYbSlbYZbZabZbbZcbSlbZdbZebZfbUVaqDbUWbZgbZhbZibSwbSxbTLbZjbZkbZkbZkbZlbRsbZmbSGbZnbZobZpbZqbZrbZrbZrbZsbRsbQkbHlbOfbOfbOfbOfbZtbZubXqbZvbZtbOfbOfbOfbOfbOfbZwbZxbVkbVlbZybZzbZzbZzbZzbZAbUfbYzbYzbZBbVubZCbXCbXDbofbofbofaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaqDaqCaqCbGIbWEbZDbZEbThbWFbZFbZGbZHbZIbZJbZKbZLbZLbZMbZJbZNbZObZPbZPbZPbZPbZPbZPbZPbZPbZQbZQbZQbZQbZQbZRbZSbGIbWNbYPbJobYQbZTbZUbZVbZWbVTbZXbZYbVTbVTbZZcaacabcaccadcaecafcagbSlbZdcahcaibWbbWcbTHcajbYgbYgbSwbSxbTLcakbGObGObGObkRbRscalbSGbSGcamcancaocapbZrcapcaqbRsbQkbHlbWkbWlbWlcarbWnbQxcasbWpcatcaubIxbIxbIxbOfcavcawcaxbVkcaybVkbVlbVlcazcaAbUhbYzbYzbYzbVubZCbXCbXDbzVbzVbofabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaqDaqCaqCbPObWEbLXbLXbLXbWFcaBcaCcaDcaEcaFcaGcaHcaIcaGcaJcaKbZObZPcaLcaMcaNcaOcaPcaQcaLcaRcaScaTcaUbZQbZQbZSbGIcaVbYPbJocaWcaXcaYcaYcaZcbacbacbacbacbacbbcbcbQZbQZbQZcbdbSlbZbbSlbZdbZecbebUVaqDbSwbSwbSwbSwbSwbSxbTLcakcbfbELbELbkRbSycbgcbhcbicbjcbkcblcbmbZrcbmcbnbRsbQkbHlbIxcbobIxcbpbXpbQxbXqbQxbXrcbqbIxcbobIxbOfcbrcbscbtcbucbvcbwcbxcbxcbycbzbUfcbAbZzcbBbVubYzbXCcbCbofbzVbofbofbofabqabqabhabhabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhabhaqDaqDaqDbGIcbDbLXbLXbLXbWFbWFbWFbWFbWFcbEcaGcbFcbGcaGcbHcaKbZObZPcaLcbIcbJcbKcbLcbMcaLcbNcbOcbPcbQcbRbZQbZSbGIbWNbYPbJocbScbTbQbcbUcbVcbacbWcbXcbYcbacbZbWWccabQZccbcagbSlcaecccccdbYdccebTGbRpbTHccfccgcchbSwbSxbGOcakbGOcciccjbkRbRscckcclccmccnccocclccpbZrccpbTRbTTbQkbHlbIxbIxbIxccqccrbWpbYqbQxbYrccsbWlbWlbYtbHlbVucctccuccvbVubVuccwccxccycczccAccBccCccDbYzbYzbXCbXDbofccEbofccFbofabhabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaqDaqCaqCbGIccGbGIbGIbLXbWFcaBccHccIccJccKccLccMccNccObYCcaKbZObZPccPccQccRcbKccSccPccPcbNccTccUccVccWbZQbZSbGIbWNbYPccXccYccYccZcdacdbcdccddcdecdfcbabSlbWWcdgcdhccbcdibSlcaecccbZdbZecdjbUVaqDbUWcdkcdlcdmbSwbSxbGOcakbGObMqbMqbkRbRsbRtcdncdobRtcdpbRtbRtbRtbRtbRtbRsbQkbHlbOfbOfbOfbOfbZtcdqbXqcdrbZtbOfbOfbOfbOfbHlbXvcdsbXvcdtbXvbVuccwccxcducdvcdwcdxbVkcdybVubYzbXCbXDbofbzVbzVbzVbyHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhabhabhabhabhabhabhaaaaaaaaaaaaaaaaaaaaaaqDaqCaqCbGIbWEcdzbLXbLXbWFbZFcdAcdBbZIcdCcdDcdEcdFcdGbYCcaKbZObZPccPccPcdHcdIcdJccPcdKcdLcdMcdNcdOcdPbZQbZSbGIcdQcdRcdSccYcdTcdUcdVcdWcdXcdYcdZceacbacebcecccabQZccbcedbSlceecccbZdcefcegbWbbWcbTHcehccgccgbSwbSxbTLcakceibGOcejbkRcekbYibYicelbRtcemcenceobGOcepceqbHkbQkbHlbWkbWlbWlcerbWnbQxcasbWpcescetbIxbIxbIxbHlceubXvbXvbXvbXvbVucevcevcewcexbUhbUhbVkbUhbVubUhbXCbXDbofceycezceAbyHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsacsacsacsacsacsacsacsacsacAacsacsacsacsacsaaaaaaaaaaqDaqCaqCbGIbWEbWFbWFbWFbWFbWFbWFbWFbWFbWFbWFceBceCcaKbWFcaKbZObZPceDceEceFceGceHceIceJceKceLceMceNceObZQcePceQceRceSceTccYceUceVceWceXceYceZcfacfbcfcbTBcfdbQZbQZbQZcfebSlcffcfgbZdbZebSlbUVaqDbSwbSwbSwbSwbSwcfhcficfjcfkbGOcflcfmcfnbZkcfocfpbGOcfqcfrcfsbGOcftbQsbQucfubHlbIxbXnbIxcfvbXpbQxbXqbQxbXrcfwbIxbXnbIxbHlcfxbXvcfycfzcfAcfBcfCcfDcfEcfFbUhbVkbVkcfGbVubHqcfHcfIbofcfJcfKbzVbyHaaaaaaaaaaaaaaaaaaaaJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsaaaabhaaaabhaaaabhaaaadIaaaabhaaaabhaaaacsabhabhabhaqDaqDaqDbGIbWEbWFcfLcfMcfNcfOcfPcfQcfRcfSbYCcfTcfUcfVbWFcfWbZObZPcfXccPcaLcaLcaLccPcfYcfZcgacgbcgccgdbZQbGIbGIcgecgfcggccYccYcghcgicgjcgkcgkcgkcgkcbabSlcglcgmcgncgocgpcgqcgrcgsccdbYdcgtbTGbRpbTHcgucgvcgvbSwaqDbTLbELcgwbGObGOcgxbDGbGOcgycgzbGObGOcgAbGObGOcgzcgBbLrcgCbHlbIxbIxbLtcgDcgEbWpcgFbQxbYrcgGbWlbWlbYtbHlbXvbXvcgHbXvbXvbVucevcevcgIcgJbUhcgKcgLcgLbVubzUcfHbXDbofbofbofbzVbofabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsaaacgMcgNcgOaaacgMcgNcgOaaacgMcgNcgOaaaacsaaaaaaaaacgPcgPcgPcgPcgQbWFcgRcgScgTbWFcgUcgVcgVcgWcgXcdEcdFcgYbWFcgZbZObZPccPchachbcaLchcccPccPcbNchdcbQchechfchgchhchichjchkchlchmchnchochpchqchrchschtchuchvchwchxchybVTchzchAbXXchBbYcbVWbZechCbUVaqDbUWchDchEchFbSwaqDbGObGOchGchHchIcgxchJbGOcgychKchLchMchNchOchLchPchQblhchRbHlbHlbHlbHlbHlbHlbQxchSchTbHlbHlbHlbHlbHlbHlbVubVubVubVubVubVuchUchUchVchWbVubVubVubVubVubofchXbXDbofchYchZbzVbofabhabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsabhcgMciacgOaaacgMciacgOaaacgMciacgOabhabhaaaaaaaaacgPcibcicbLXbWEbWFcidciecifbWFcigcihciicijcikcilcimcinciocipciqbZPcaLcirciscaLcitciucaLcbNcivciwcixciycizciAciBciCciDciEciFciGciHciIciJciKciLcgiciMchvciNbSlcglbXXciOciPciQciRciSbRmciTciUbWbbWcbTHciVcgvcgvbSwaqDbGObELciWciXciYciZcjabGOcjbcjccjdchQcjechQcgBcjfcjgblhcjhbHlcjicjjcjjcjkcjlbQxchScjmbHlabhabhabhabhbofcjnbRTcjocjpcjpbVucjqcjqchVcjrbVucjsbzVbzVbzVbHqchXcbCbofcjtbzVbzVbofbofbofabqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsaaacgMciacgOabhcgMciacgOabhcgMciacgOaaaabhabhabhabhcgPcjucjvcjvcjwbWFcjxcjycjzcjAcjBcjCcjDcjEcjFcjGcjHcjIcjAcjJcjKbZPcaLcjLcjMcjNcjOcjPcaLcjQcjRcjScjTcjUbZQcjVcjWcjXcjYcjZckackbckcckdckeckfckgckhckickjckkbSlcglcklckmbSlbSlcklcklcklbZecknckoaqDbSwbSwbSwbSwbSwaqDbGOcflckpckqckrckscktbGObGOckuckvckwbHkckxckybGObGOblhcjhbHlckzckAckAckBckCckDckEckFbHlabhaaaaaaabhbofbzVckGbBCckHckIbVuckJckJckKcjrbVubofbofckLckMbHqchXbXDbzVbzVbzVckNbpCckObpEabqabqabhabhabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhabhcgMciacgOaaacgMciacgOaaacgMciacgOabhabhaaaaaaaaacgPckPbTibTdbWEbWFckQckRckSbZIckTckUckVckWckXckYckZclabWFcfWbZObZPbZPbZPbZPbZPbZPbZPbZPbZQbZQbZQbZQbZQbZQbGIclbbGIchvclcclcclccldcleclfclcclgclhclichvbSlbURcljcklcgpbVRbSlbStbYYcklbZecklbQbaqDaqDaqDaqDaqDaqDaqDclkclkcllclmclnclkclkclkcloclpclqckwclrckwckwbGOclsbDGcjhbHlbHlcltcltbHlbHlcltclucltbHlaaaaaaaaaaaabofbofchXclvbofbofbVubVubVuclwclxbVubHqbofceAbzVclychXcfIbofbofclzbofbofbofbofabqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsacsacsabhaaacgMciacgOaaacgMciacgOaaacgMciacgOaaaabhaaaaaaclAclBclBclBclBclCbWFbWFbWFbWFbWFbWFbWFbWFbWFbWFbWFbWFbWFbWFclDclEclFclGclHclIclIclIclIclIclIclIclIclIclJclJclIclKclLchvclMclNclOclPclQclRclcclSclTclUchvclVclWbVYclXclYclZcmaclXcmbclXcmccklbQbbQbbQbaqCaqCaqDaqDclkclkcmdcmecmfcmgcmhcmiclkcmjbELcmkcmlcmmcmncmobPnbPncmpcmqbofaaaaaaaaaaaaaaaabhcmrabhaaaaaaaaaaaaaaabofcmscmtcmucmucmvcmwcmxcmycmzcmAbofbofbofbofcmBbofchXbXDbofcmCcmDbzVbofaaaabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsaaaabhaaaaaaaaacmEaaaaaaaaacmEaaaaaaaaacmEaaaaaaabhclAclAclAcmFcmGcmHcmIcmJbLXbUncmKcmLcmKcmKcmKcmKcmKcmKcmKcmKcmKcmKcmKcmMbYNcmNcmOchvchvchvchvchvchvchvchvchvchvchvchvchvchvchvclccmPclPcmQcmRcmScmTcmUcmVcmWchvclVcmXcmYcmZcnacnbcnccndbSlcnecnfcngcnhcnicnjaqCaqCaqDcnkcnlcnmcnncnocnpcnqcnrcnsclkbELbELckwckwbDGckwchQbELbELbDGcntbofbofbyHbyHbofbofbyHcnubyHbofbofbyHbyHbyHbofcnvcnwbrncnxcnycnzcnzcnzcnAcnBcnCcnDcnEcnFcnFcnFcnGcnHbofchZbzVcnIbofaaaabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsabhcnJcnKcnKcnLcnMcnMcnMcnMcnMcnMcnMcnMcnMcnMcnMcnNcnOcnPcnQcnRcnScnTcnUcnVcmKbXEbWGbGIbPObPObPObPObPObPObPObPObPObGIbGIcnWcnXcnYcnZchvcoacoacobchvcoccodcoecofcogcohcoicojcokcolclccomconcoocopcoqcorcoscotcouchvbQbcovbRgcowcoxcoybRgcowbRgcozbRgcoAbQbbQbbQbaqDaqDaqDbSxclkcoBcoCcoDcoEcoFcoGcoHclkcoIbELchQchQcoJckwchQbELcoKbDGcoLbYIbYIbYIbYIbYIcoMbYIcoNcoOcoOcoOcoOcoOcoOcoPcoQbpAbofcoRcoSbofbofbyHbyHbofbofcoTcfHcoUbrncoVcoWcoXbofbofbofbofbofaaaabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsaaaabhaaaaaaaaacoYaaaaaaaaacoYaaaaaaaaacoYaaaaaaabhclAclAclAcoZcpacpbclBbLXbLXbLXbLXbGIaaaaaaabhaaaaaaabhaaaaaaabhaaabGIbTdbGIcpccpdchvcpecpfcpgcphcpicpjcpkcplcpkcpmcpncpocppcpjclccpqclPcprcpscptclccpucpvcpwchvaqDcpxaqDbSxcpycpxaqDbSxaqDcpzaqDcpzaqDaqDaqCaqCaqCaqDbSxclkcpAcpBcnocpCcpDcpEcpFcpGcpHcpIcpJchQbHkchQcpKcgBcjfcpLcpMcpMcpMcpMcpMcpMcpMcpNcpOcpMcpMcpMcpMcpMcpMcpPcpQcpRbofcpScfHbofaaaaaaaaaaaabofbzVcfHcpTcpUcpUcpVcpWcpUaaaabhabhabhabhabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsacsacsabhaaacgMcpXcgOaaacgMcpXcgOaaacgMcpXcgOaaaabhaaaaaaclAclBclBclBclBbWDbPNbLXbLXbGIbGIbPOcpYcpYcpYcpYcpYcpYcpYabhbGIbGIbGIcpZcqachvcqbcpgcpgcphcqccpkcqdcqecqfcqgcpkcpkcpkcpkclccqhcqicqicqjcqkclccqlcqmcqnchvbSwcqobUWcqobSwcqobUWcqobSwcqpbUWcqqbSwaqCaqCaqCaqCaqCbSxcqrcqscnqcqtcnqcqucqvcqwclkcqxckwckwckwcqyckwckwckwbGObGIbGIbGIbPObPObPObGIbGIbPObPObPObGIbGIbPObPObPObGIcqzbofbofcqAcfHbofbofbyHbyHbofbofbzVcfHcqBcpUcqCcqDcqEcpUaaaaaaabhabhaaaabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhabhcgMcpXcgOaaacgMcpXcgOaaacgMcpXcgOabhabhabhaaaaaaaaaaaaabqbGIbGIbGIcqFbLXbGIcqFbNxcpYcqGcqHcqIcqHcqJcpYaaabGIbTibLXcqKcqachvcqLcqLcqMchvcqNcqOcqPcpkcqQcqgcqRcqScqTcqTclccqUcqVcqVcqWcqXcqYcqZcracrbchvbSwcrccrdcrebSwcrfcrgcrhbSwcricrjcrkbSwaqCaqCaqCaqCaqCbSxclkcrlcrmcrncrocrpcrqcrrclkcrscrtcrucrvcrwcrxchQchQbELcrybLXbPOaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhaaabofcrzbHqbofcrAcrBcrCcmwcrCcrCcrCcrCcrDcrEcrFcpUcrGcrHcrIcpUabhaaaaaaaaaaaaabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJbaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsaaacgMcpXcgOabhcgMcpXcgOabhcgMcpXcgOaaaabhabhabhaaaaaaaaaabqbUkbUlbUmbLXbLXcrJbLXcrKcpYcrLcrMcrNcrOcrPcpYaaabGIbThbLXcqKcqachvcqLcqLcqMchvcrQcojcrRcrScrTcrUcrRcojcrRcrRcojcrVcrWcrXcqccrYcrZcsacsbcscchvbSwcsdcsecsdbSwcsfcsgcsfbSwcshcsicsjbSwaqDaqDaqDaqDaqDbSxclkclkclkcskcslcsmcsncsocslcrscspchQcsqcsrcsscjgchQcstbGIbLXbPOaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhaaabofcsucmDbofcsvcswcswcsxcswbrnbrnbrncsycsycszcpUcsAcsBcsCcpUabhaaaabhaaaaaaabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsabhcgMcpXcgOaaacgMcpXcgOaaacgMcpXcgOabhabhaaaabhabhaaaaaaabqbGIbGIbGIbGIbLXbGIbGIbGIcpYcsDcsEcsFcsGcsDcpYabhbGIchvcsHcsIcsJchvcqLcqMcqMchvcsKcsLcsMcsNcqQcsOcsPcsQcsPcsPcsRcsScsTcsTcsUcsTcsTcsVcsWcsXchvbSwcsdcsYcsdbSwcsfcsZcsfbSwcsjctacsjbSwaqDaqDaqCaqCaqCcfhbRraqCaqCctbcslctcctdctecslbELctfctgbLrcthcticgBctjctkbGIcrybPOaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhaaabofctlbzVbofbofbofbofbofbzVbofabhaaaaaaaaaabhctmctmctnctmctmabhabhabhabhabhabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacAaaacgMctocgOaaacgMctocgOaaacgMctocgOaaaacsaaaaaaabhabhaaaaaaaaaaaaaaabPObLXbPOaaaaaacpYctpctqctrctscttcpYcpYcpYchvctucsIctvchvchvchvchvchvctwctxcpkcpkcqQcsbcpkcplctyctzctAcpkcpkcpkcpkctBcpkcqQcqgctCchvbSwbSwbSwbSwbSwbSwbSwbSwbSwbSwbSwbSwbSwaqDaqCaqCaqCaqCaqCbSxaqCaqCctDcslcsmctEcsocslbGOctFcjfctGctHcjfctIbGObGObGIabqabqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhabhbofctJbzVbzVbzVbzVbzVbzVbzVbofabhaaaaaaaaaabhaaactmctKctmaaaabhaaaabhaaaaaaabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsaaaabhaaaabhaaaabhaaaabhaaaabhaaaabhaaaacsaaaaaaaaaabhabhaaaaaaaaaaaabPObLXbPOaaaaaacpYctLctMctNctOctPctQctRctSctQctTctUctVctWctXctYctZcuacubcuccudcuecufcugcqnchvcuhchvcuhchvcqncuicpkcpkcujcqQcqgcukchvchvchvchvchvcojcojcojcojchvaaaaaaaaaaaaaqCaqCaqCaqCaqCaqCbSxaqCaqCctDcslculcumcuncuoaqDbGOckucupbTLbTLbGObGOaaaabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhabhbofcuqcurcuscjscutbQRbRRbofbofabhaaaaaaaaaabhaaactmcuuctmaaaabhaaaabhaaaaaaabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsacsacsacsacsacAacsacsacsacsacsacsacsacsacsaaaaaaaaaaaaabhabhaaaaaaabhbPObLXbPOabhabhcpYcuvcuwcuxcuycuzcuAcuBcuCcuDcuEcuFcuGcuHcuHcuHcuIcuHcuJcuKcuLcuMcuNcuOchvcuPcuQcuRcuQcuSchvcuTcpkcuUcuVcqQcuWcuNcuNcuNcuXcuYchvcuZcojcvacvbcvbcvbaaaaaaaaaaqCaqCaqCaqCaqCaqCbSxaqCaqCctDcslcslcvccslcslaaaaqDaaacvdaqCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabofbofbofccEbofcqzbofbyHbyHbofbofaaaabhaaaaaaaaaabhaaaaaacveaaaaaaabhaaaabhaaaaaaabhaaaaaaaaaaaJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhabhaaaaaabPObLXbPOaaaaaacpYcvfcvgcvhcvicvjcpYcvkcvlcpYcvmcvncvocplcpkcvpcrRcvqcqccvrcvscvtcvtcvtcvucvvcvwcvxcvycvzcvucvAcvActAcqdcvBcvCcqecqecqfcsbcvDcvEcpgcvFcvGcvHcvIcvJcvKaaaaaaaqCaqCaqCaqCaqCaqCbSxaqCaqCctDbTccslcvLcslcvMaqDaqDaaacvNaqCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabofcvOcvPcvPbofcvQabhaaaaaaabhaaaaaaabhaaaaaaaaaabhaaaaaacveaaaaaaabhaaaabhaaaaaaabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhabhbGIbGIcvRbGIbGIaaacpYcvScvTcvUcpYcpYcpYcpYcpYchvcvVcpkcvocpkcpkcvWcrRcvXcqccvYcvZcwacwbcwcchvcwdcwecwfcwgcwhchvcwicwjcwjcvZcvYcqccwkcwlcqQcsbcwmchvcwncojcvacvbcvbcvbaaaaaaaaaaqCaqCaqCaqCcwoaqCbSxaqCaqCcwpbTccwqcwrcwqbTcaqDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyHbyHbyHcvPcvPcwsbofaaaabhaaaaaaabhaaaacsacsacsacAabhabhabhabhcveabhabhabhabhabhacAacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhbGIbTdbLXcwtbGIabhcpYcpYcpYcpYcpYabhaaaaaaabhchvcwucpkcwvcwwcwwcwxcojcojcwychvcwzcwAcwAcwAchvcwBcwCcwDcwEcwFchvcwAcwAcwAcwzchvcwycojcojcqQcsbchvchvcojcojcojcojchvaaaaaaaaaaaaaqCaqCaqCaqCaqCaqCbSxaqCaqCaqDbTcaaaaaaaaabTcaqDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyHbzVcwGcvPcvPcwHbofaaaabhaaaaaaabhaaaacsaaaaaaabhaaaabhaaaaaacwIaaaaaaabhaaaabhaaaaaaacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabPObUrcwJcwKbGIabhaaaaaaabhaaaaaaabhaaaaaaabhchvcwLcwMcqccwNcwOcwPcojcwQcwRchvcwScwTcwUcwTcwVcwWcwXcwYcwZcwFcwVcwTcwTcwTcxachvcxbcxcchvcqQcxdcxecxfcxgcxhcwVaaaabhabhabhabhabhaqCaqCaqCaqCaqCaqCbSxaqCaqCaqCbTcbTcbTcbTcbTcaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyHcwGbyHbyHbyHbyHbofaaaabhaaaaaaabhaaaacsabhcxicxicxicxicxiaaacxjaaacxicxicxicxicxiabhacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabPOcxkcxlbNwbGIcojcxmcxmcxmcxmcxmcxmcxmcxmcojchvcxncxocxpcxqcxnchvchvchvcxrchvchvcwVcwVcwVcwVcxscxtcxucxvcxwcwVcwVcwVcwVchvchvcxrchvchvcxxcxycxzcxAcpkcxBcwVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacxCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabqabqabqaaaaaaaaaaaaaaaaaaaaaaaaabhaaaacsaaacxDcxEcxEcxEcxEcxFcxjcxGcxHcxHcxHcxHcxIaaaacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabPObPObPObPObGIabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaachvcxJcxKcxLaqCachcxMcwVcwVcwVcwVcxNcwVcwVcwVcwVcxMachaqCcxOcxPcxQchvcxRchvchvcxScxTcxUcwVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacxCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhaaaacsadIcxVcxVcxVcxVcxVaaacxjaaacxVcxVcxVcxVcxVabhacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaachvcxWcxXcxXaqCcxYcxZcxZcxZcxZcxZcyacxZcxZcxZcxZcxZcybaqCcxXcyccxWchvcydcyechvcojcojcyfcojabhabhabhabhabhabhabhabhabhabhabhabhcxCabhabhabhabhabhabhabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhaaaacsaaaaaaaaaabhaaaaaaaaacxjaaaaaaaaaabhaaaaaaaaaacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaachvcygcyhcyiaqDcyjachcykaqCaqCaqCaqCcykaqCaqCcykachcyjaqCcylcymcynchvcyocypcojabhaaacyqaaaabhaaaaaaaaaabhaaaaaaaaaabhaaaaaaaaacxCaaaaaaaaacyrcyrcyrcyrcyraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsabhcxicxicxicxicxiaaacxjaaacxicxicxicxicxiabhacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaachvcxWcxXcysaqCcytcyuaqCaqCaqCaqCaqCcyvaqCaqCaqCcywcyxaqCcxXcxXcxWchvabqabqabqabhaaaaaacyycyzcyAcyAcyAcyzcyAcyAcyAcyzcyAcyAcyAcyBcyAcyAcyAcyCcyDcyEcyFcyraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsaaacxDcxEcxEcxEcxEcxFcxjcxGcxHcxHcxHcxHcxIaaaacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaachvcyGcyHcxXaqCcyjachaqCaqCaqDaqDaqDaqDaqDaqCaqCachcyjcyIcxXcyJcyKchvaaaaaaabqabhaaaaaaaaaabhaaaaaaaaaabhaaaaaaaaaabhaaaaaaaaacxCabqcyrcyrcyrcyLcyMcyLcyraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsabhcxVcxVcxVcxVcxVaaacxjaaacxVcxVcxVcxVcxVabhacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaachvchvcyNcxXaqCcyjachcykaqDaqDcyOcyPcyQaqDcyRaqCachcyjaqCcxXcyNchvchvaaaaaaabqabhabhabhabhabhabhabhabhabhabhabhabhabhabhabhabhcxCabqcyScyTcyUcyFcyVcyFcyraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacAaaaaaaaaaabhaaaaaaaaacyWaaaaaaaaaabhaaaaaaaaaacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhcqnchvcyXcxXaqCcytcyuaqCaqCaqDcyYcyZczaaqDaqCaqCcywcyxaqCcxXczbchvcqnaaaaaaabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqabqczcabqcyrczdczeczfcyVczgczeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsabhcxicxicxicxicxiaaacveaaacxicxicxicxicxiabhacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaachvchvcyNcxXaqCcyjachaqCczhaqDcziczjczkaqDaqDcykachcyjaqCcxXcyNchvchvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacxCabqczlczlczlczlczmcznczoczpabhabhabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsaaacxDcxEcxEcxEcxEczqczrczqcxHcxHcxHcxHcxIaaaacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaachvcyJcyKcxXaqCcyjachaqCaqCaqDaqDaqDaqDaqDaqCaqCachcyjaqCcxXcyGcyHchvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacxCaaaaaaczlczlczscztczuczlczlczlczlczlabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsabhcxVcxVcxVcxVcxVaaacveaaacxVcxVcxVcxVcxVabhacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaachvcxWcxXczvaqCcytcyuaqCaqCaqCaqDaqCaqCaqCaqCaqCcywcyxaqCcxXcxXcxWchvaaaaaaaaaaaJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacxCaaaaaaczlczwczxczyczzczAczBczCczDczlabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsaaaaaaabhaaaabhaaaaaacveaaaaaaabhaaaabhaaaaaaacsaaaaaaaaaaaaaaJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJaaaaaaaaaaaaaaachvczEcyhcyiaqDcyjachcykaqCaqCcykaqCaqCaqCaqCcykachcyjaqCcylcymczFchvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacxCaaaaaaczlczGczHczIczJczKczLczMczNczlabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJaaaaaaaaaaaaacsacsacsacsacsabhabhaaacveaaaabhabhacsacsacsacAacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaachvczOcxXcxXaqCcyjachachczPachachczPachachczPachachcyjaqCcxXcxXczOchvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhczQczRabhczlczSczTczUczVczWczXczYczZczlabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsabhcAaabhacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaachvczOcxXcAbaqCcAccxZcxZcAdcxZcxZcAdcxZcxZcAdcxZcxZcAeaqCcAfcxXczOchvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhcAgcAhcAgcAgcAicAjcAkcAlcAmcAncAncAncAnabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsaaaabhaaaacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacAochvchvchvcxXaqDaqDaqDaqDaqCaqCaqCaqCaqCaqDaqDaqDaqDcxXchvchvchvcAoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacAgcAgcApcAqcAgcArcArcAscAtcArcAncAucAucAncAnaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacsacsacsacsacsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhaaaczOchvchvcojcojcojcojcojcojcojcojcojcojcojcojcojchvchvczOabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacAgcAvcAwcAxcAycArcAzcAAcABcArcACcADcADcAEcAnaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhaaaaaaczOczOczOczOclUczOczOczOczOczOczOczOclUczOczOczOczOaaaaaaabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacAgcAFcAGcAHcAIcAJcAKcALcAMcAJcANcAOcAPcAQcAnaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhabhabhaaaaaaaaaaaaabhabhabhabhaaaaaaaaaaaaaaaabhaaaaaJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacAgcARcAScATcAUcAVcAWcAXcAYcAZcBacBbcBccBdcAnaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhaaaaaaaaaaaaaaaaaaaaaabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacAgcAgcBecAGcBfcArcBgcBhcBicArcBjcBkcBlcAncAnaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhaaaaaaaaaaaaaaaaaaaaaabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhcBmcBncBocBncBmcBmcBpcBqcBmcBncBrcBncBmabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacBsaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJaaaaaaaaaaaaabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacBmcBtcBucBncBvcBwcBxcBycBvcBncBzcBAcBmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhcBmcBBcBucBncBvcBwcBxcBycBvcBncBzcBCcBmabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacBDcBmcBmcBucBncBEcBwcBFcBGcBHcBncBzcBmcBmcBIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhabhcBmcBJcBncBKcBwcBxcBycBvcBncBLcBmabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhcBmcBMcBNcBOcBPcBQcBycBRcBScBTcBmabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhcBmcBUcBncBVcBWcBXcBycBYcBncBUcBmabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhabhcBmcBUcBncBEcBZcCacBycBHcBncBUcBmabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhcBmcBmcBUcBncBvcBwcBxcBycBvcBncBUcBmcBmabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhcBmcBUcBUcBncBvcBwcCbcBycBvcBncBUcBUcBmabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacBmcBUcCccCccCdcCccCecCfcCgcCccCccBUcBmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacBmcBUcCccCccChcCicCjcCkcClcCccCccBUcBmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacBmcBUcCccCccCmcCncCocCpcCqcCccCccBUcBmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacBmcCrcCccCccCscCscCtcCucCscCccCccCrcBmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacCvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacBmcCrcCccCwcCwcCxcCycCpcCwcCwcCccCrcBmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacCccCccCccCzcCAcCBcCCcCDcCEcCFcCccCccCcaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacCccCccCccCGcCjcCHcCIcCJcCpcCGcCccCccCcaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhcCccCccCccCwcCycCKcCLcCKcCMcCwcCccCccCcabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacCNcCccCccCOcCxcCPcCKcCKcCKcCQcCxcCRcCccCccCSaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacCTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhcCccCccCccCGcCUcCVcCWcCKcCxcCGcCccCccCcabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacCccCccCccCzcCxcCXcCYcCwcCxcCFcCccCccCcaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacCccCccCccCwcCxcCZcDacCxcCxcCwcCccCccCcaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacCccCccCccCccCccCccCccCccCccCccCccCccCcaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacCccCccCccCccCccCccCccCccCccCccCcaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhcCccCccCccCccCccCccCccCccCcabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhabhaaaaaacDbaaaaaaabhabhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
+(1,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(2,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(3,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(4,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(5,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(6,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(7,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(8,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(9,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(10,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(11,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(12,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(13,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(14,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(15,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cyc
+cyc
+cye
+cyc
+cyc
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(16,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cyc
+cyw
+cyi
+cyw
+cyc
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(17,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cyc
+cyi
+cyi
+cyi
+cyc
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(18,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cyc
+cyi
+cyi
+cyi
+cyc
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(19,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cyc
+cyi
+cyi
+cyi
+cyc
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(20,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cyc
+cyi
+cyi
+cyi
+cyc
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(21,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cyc
+cyi
+cyi
+cyi
+cyc
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(22,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cyc
+cyi
+cyi
+cyi
+cyc
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(23,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cyc
+cyi
+cyi
+czd
+cyc
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(24,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cyc
+cyw
+cyi
+cyw
+cyc
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(25,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cyc
+cyc
+cye
+cyc
+cyc
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(26,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cyc
+cyi
+cyc
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(27,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aae
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cyc
+cyc
+cye
+cyc
+cyc
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(28,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cyc
+cyc
+cyw
+cyi
+cyw
+cyc
+cyc
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(29,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cpe
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cwV
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aae
+cyc
+cyf
+cym
+cym
+cym
+cyF
+aaa
+cyc
+cyw
+cyi
+cyi
+cyi
+cyw
+cyc
+aaa
+cyf
+cym
+cym
+cym
+cyF
+cyc
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(30,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aae
+aaf
+aaa
+aqH
+apK
+aqH
+aaa
+aaa
+aae
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aqF
+apH
+aqF
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cyc
+cyc
+cyo
+cyo
+cyo
+cyc
+cyc
+cyc
+cyi
+cyi
+cyi
+cyi
+cyi
+cyc
+cyc
+cyc
+cyo
+cyo
+cyo
+cyc
+cyc
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(31,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aqH
+cpK
+aqH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aqF
+cxl
+aqF
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cyc
+cyn
+cyv
+cyv
+cyn
+cyc
+cyw
+cyi
+cyi
+cyi
+cyi
+cyi
+cyw
+cyc
+cyn
+cyv
+cyv
+cyn
+cyc
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(32,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aqH
+cpL
+aqH
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aqF
+cxx
+aqF
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cyc
+cyn
+cyv
+cyv
+cyc
+cyi
+cyi
+cyi
+cyi
+cyi
+cyi
+czr
+cyc
+cyv
+cyv
+cyn
+cyc
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(33,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+ckq
+cqq
+ckq
+aaa
+aaa
+aaa
+aCS
+aCV
+aCV
+aCV
+aCS
+aaa
+aaa
+aaa
+cwU
+cxF
+cwU
+aaa
+aaa
+aaa
+cxt
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+cyc
+cyc
+cyH
+cyc
+cyc
+cyc
+cyR
+cza
+cyR
+cyc
+cyc
+cyc
+cyH
+cyc
+cyc
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(34,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaf
+aaf
+aaf
+aaa
+aaf
+arB
+asE
+cyb
+asE
+arB
+aaa
+aaa
+aCS
+aFC
+aEr
+aIG
+aCS
+aaa
+aaa
+arB
+asE
+cyb
+asE
+arB
+aaa
+cxt
+cxD
+cxt
+aaa
+aaf
+aaa
+aaa
+aaa
+aaf
+aaf
+aaa
+aaa
+aaa
+cyc
+cyc
+cyi
+cyi
+cyi
+cyi
+cyi
+cyi
+cyi
+cyi
+cyi
+cyi
+cyi
+cyc
+cyc
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(35,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+apJ
+apJ
+apJ
+apJ
+apJ
+apJ
+apJ
+apJ
+apJ
+apJ
+apJ
+auO
+auP
+cwT
+aAC
+aaa
+aaa
+aCS
+aFC
+aEr
+aIG
+aCS
+aaa
+aaa
+aAC
+auO
+auP
+cxY
+arB
+aaa
+cxy
+cxC
+cCy
+aaa
+aaf
+aaa
+aaf
+aaa
+aAC
+aaf
+aaa
+aaa
+cyc
+cyc
+cyw
+cyI
+cyi
+cyi
+cyi
+cyi
+cyi
+cyi
+cyi
+cyi
+cyi
+cyi
+cyc
+cyc
+cyc
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(36,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+amO
+aac
+aac
+aac
+aac
+czq
+aac
+aac
+aac
+clO
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+apJ
+apN
+arC
+arC
+arC
+arC
+arC
+arC
+arC
+aEp
+apJ
+avP
+cyb
+asE
+arB
+aaa
+aCS
+aCS
+aCS
+aHs
+aCS
+aCS
+aCS
+aaa
+arB
+asE
+cyb
+avP
+arB
+aaa
+cxu
+cxC
+cxu
+aaa
+arB
+awW
+awW
+asE
+arB
+aaf
+aaa
+cyc
+cyc
+cyw
+cyi
+cyi
+cyi
+cyi
+cyc
+cyc
+cyc
+cyc
+cyc
+cyc
+cyi
+cyi
+cyc
+cyc
+cyc
+cyc
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(37,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+amO
+aac
+aac
+aac
+aac
+aac
+aac
+cmM
+cnV
+cmM
+cmP
+con
+coU
+cpr
+cpH
+cqI
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+apJ
+aqI
+arD
+arD
+arD
+arD
+arD
+arD
+arD
+auN
+apJ
+awY
+ayk
+awW
+aAD
+awW
+aCS
+aEo
+aEr
+aEr
+aEr
+aKg
+aCS
+awW
+awW
+awW
+aQG
+aRX
+arB
+cxu
+cxu
+cCw
+cxu
+cxu
+arB
+awY
+ayk
+awW
+aAD
+awW
+cyc
+cyc
+cyc
+cyc
+cyc
+cyc
+cyw
+cyi
+cyc
+cyV
+cyi
+cyi
+cyi
+czi
+cyi
+cyi
+cye
+cyi
+cyw
+cyc
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(38,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aac
+cmT
+cmT
+cmT
+cmT
+cmT
+aac
+cmP
+cmP
+cmP
+cmP
+coP
+cmP
+cpF
+cpH
+crg
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+apJ
+aqI
+arD
+arD
+arD
+arD
+arD
+arD
+arD
+auN
+apJ
+awZ
+ayl
+azy
+auP
+azy
+aCU
+aEr
+aFE
+aFE
+aFE
+aEr
+aLs
+azy
+auP
+azy
+ayl
+aRY
+awW
+cxw
+cxB
+cxC
+cxI
+cxw
+awW
+awZ
+ayl
+beK
+auP
+cyt
+cyd
+cyi
+cyi
+cyx
+cyx
+cyw
+cyc
+cyi
+cyc
+cyW
+cyi
+cze
+czm
+cyc
+cyi
+cyi
+cyc
+cyi
+czB
+cyc
+cyc
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(39,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aac
+aTp
+aTp
+aTp
+aTp
+aTp
+aac
+cmO
+cmP
+cmP
+cmP
+coI
+coV
+cpw
+cpH
+crf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+apJ
+aqI
+arD
+arD
+arD
+atk
+arD
+arD
+arD
+auN
+apJ
+awZ
+ayk
+awW
+awW
+awW
+aCS
+aEq
+aEr
+aEr
+aEr
+aEr
+aCS
+awW
+awW
+awW
+awV
+aRY
+awW
+cxu
+cxB
+cxC
+cxI
+cxu
+awW
+awZ
+ayk
+awW
+awW
+awW
+cyc
+cyi
+cyi
+cyi
+cyi
+cyJ
+cyc
+cyi
+czi
+cyi
+cyi
+cyi
+czl
+cyc
+cyi
+cyi
+cyc
+cyi
+cyi
+cyw
+cyc
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(40,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+amO
+aac
+aac
+aac
+clO
+aaa
+aaa
+aac
+aTp
+cnh
+aTp
+aTp
+aTp
+aac
+cnz
+cmP
+cmP
+cmP
+coQ
+aac
+aac
+aac
+czv
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+apJ
+aqI
+arD
+arD
+asG
+atl
+awX
+arD
+arD
+auN
+apJ
+awZ
+cqr
+azz
+aAF
+awW
+aCV
+aEt
+aFE
+aFE
+aFE
+aEr
+aCV
+awW
+aOf
+azz
+aPu
+aRY
+awW
+cxu
+cxC
+cxC
+cxC
+cxu
+awW
+awZ
+aym
+azz
+aAF
+awW
+cyc
+cyk
+cyi
+cyi
+cyi
+cyi
+cyc
+cyi
+cyc
+cyc
+cyc
+cyc
+cyc
+cyc
+cyi
+cyI
+cyR
+czA
+cyi
+cyi
+cyc
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(41,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aac
+aDu
+bwP
+bBM
+aac
+czo
+aaa
+aac
+cns
+cnu
+cnI
+aTp
+aTp
+aac
+cmS
+cmP
+cmP
+cmP
+cod
+aac
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+apJ
+aqI
+arD
+arD
+arD
+cCs
+arD
+arD
+arD
+auN
+apJ
+awZ
+aIK
+ayl
+aAE
+awW
+aCV
+aEs
+aEr
+aHt
+aEr
+aEr
+aCV
+awW
+aOe
+ayl
+ayl
+aRY
+awW
+cCu
+cxC
+cCx
+cxC
+cCz
+awW
+awZ
+ayl
+ayl
+aAE
+awW
+cyc
+cyj
+cyi
+cyi
+cyi
+cyi
+cye
+cyi
+cyi
+cyi
+cyi
+cyi
+cyi
+cyi
+cyi
+cyi
+cyR
+cyi
+cyi
+czC
+cyc
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(42,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+amP
+aTp
+aTp
+aTp
+aac
+aac
+aac
+aac
+aac
+aac
+aac
+coe
+cog
+aac
+aac
+cnT
+col
+com
+aac
+aac
+aac
+clO
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+apJ
+aqI
+arD
+arD
+arD
+arD
+arD
+arD
+arD
+auN
+apJ
+awZ
+aIK
+ayl
+aAH
+awW
+aCV
+aEv
+aFE
+aFE
+aFE
+aEr
+aCV
+awW
+aOh
+ayl
+ayl
+aRY
+awW
+cxu
+cxC
+cxC
+cxC
+cxu
+awW
+awZ
+ayl
+ayl
+bgi
+awW
+cyc
+cyi
+cyi
+cyi
+cyi
+cyi
+cyc
+cyw
+cyi
+cyi
+cyi
+cyi
+cyi
+cyi
+cyi
+czw
+cyR
+cyi
+cyi
+cyi
+cyc
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(43,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+amP
+aDJ
+aTp
+aTp
+aac
+cmH
+aTp
+aTp
+aTp
+aTp
+coh
+aTp
+aTp
+coj
+aTp
+aTp
+aTp
+aTp
+aTp
+coh
+cpH
+cqI
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+apJ
+aqI
+arD
+arD
+arD
+arD
+arD
+arD
+arD
+auN
+apJ
+awZ
+cry
+azA
+aAG
+awW
+aCV
+aEu
+aEr
+aEr
+aEr
+aEr
+aCV
+awW
+aOg
+azA
+aQH
+aRY
+awW
+cxu
+cxB
+cxC
+cxI
+cxu
+awW
+awZ
+ayn
+azA
+bgh
+awW
+cyc
+cyi
+cyi
+cyi
+cyi
+cyw
+cyc
+cyc
+cyc
+cyR
+czj
+cyR
+cyc
+cyc
+cyc
+cyc
+cyc
+cyi
+cyi
+cyi
+cyc
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(44,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+amP
+biZ
+apT
+aTp
+cma
+aTp
+aTp
+aTp
+aTp
+aTp
+cdP
+aTp
+aTp
+aTp
+aTp
+aTp
+aTp
+aTp
+aTp
+coY
+cpH
+crg
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+apJ
+aqN
+asD
+asD
+asD
+cCt
+asD
+asD
+asD
+aFD
+apJ
+awZ
+crz
+awW
+awW
+awW
+aCS
+aEw
+aFE
+aFE
+aFE
+aKh
+aCS
+awW
+awW
+awW
+awV
+aRY
+awW
+cxw
+cxB
+cxC
+cxI
+cxw
+awW
+awZ
+ayk
+awW
+awW
+awW
+cyc
+cyi
+cyi
+cyi
+cyw
+cyc
+cyw
+cyi
+cyi
+cyi
+cyi
+cyi
+cyi
+cyX
+cyX
+cyX
+cyc
+cyi
+cyi
+cyw
+cyc
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(45,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+amP
+aXH
+aTp
+clK
+aac
+cmJ
+cmm
+cmm
+cmm
+cmm
+coh
+aTp
+aTp
+aTp
+aTp
+aTp
+aTp
+aTp
+aTp
+coh
+cpH
+crf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+apJ
+apJ
+apJ
+apJ
+ajZ
+atp
+asF
+asF
+asF
+asF
+apJ
+axh
+aIK
+azy
+auP
+azy
+aCU
+aEr
+aEr
+aEr
+aEr
+aEr
+aCU
+azy
+auP
+azy
+ayl
+aRY
+awW
+cxu
+cxw
+cxE
+cxw
+cxu
+awW
+awZ
+ayl
+beL
+auP
+cyu
+cye
+cyi
+cyq
+cyi
+cyc
+cyw
+cyi
+cyi
+cyi
+cyi
+cyi
+cyi
+cyi
+cyi
+cyi
+cyi
+cyw
+cyw
+czy
+cyc
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(46,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+amP
+buA
+aTp
+aTp
+aac
+aac
+aac
+cmp
+aac
+aac
+aac
+cof
+coh
+aac
+aac
+aac
+coN
+coR
+aac
+aac
+aac
+cmE
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+apJ
+asH
+atI
+arE
+ayq
+ayq
+auc
+avp
+axI
+ayp
+awW
+aAD
+awW
+aCS
+aEy
+aEy
+aEy
+aEy
+aEy
+aCS
+awW
+awW
+awW
+aQG
+aRX
+arB
+aaa
+aWa
+aXI
+awW
+aaa
+arB
+awY
+ayk
+awW
+aAD
+awW
+cyc
+cyc
+cyc
+cyz
+cyc
+czy
+cyO
+cyi
+cyi
+cyi
+cyi
+cyi
+cyi
+cyi
+cyi
+czx
+czn
+cyc
+cyc
+cyc
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(47,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aac
+buA
+aTp
+clL
+aac
+cmE
+aaa
+aaa
+aaa
+aac
+aTp
+aTp
+aTp
+aac
+coo
+aTp
+aTp
+aTp
+coW
+cpf
+aac
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+asF
+asI
+auQ
+auQ
+auQ
+aCX
+aub
+aLu
+axH
+ayo
+azB
+awW
+aaa
+aCS
+aEx
+aFF
+aFF
+aFF
+aKi
+aCS
+aaa
+awW
+aPt
+aPu
+aRY
+arB
+awW
+awW
+auP
+awW
+awW
+arB
+awZ
+aym
+azB
+awW
+aaf
+aaa
+aaa
+cyc
+cyy
+cyc
+czy
+cyO
+cyi
+cyi
+cyX
+czb
+cyX
+cyi
+cyi
+cyi
+cyi
+cyw
+cyc
+cyc
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aae
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(48,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bJS
+aac
+aac
+aac
+cmE
+aaa
+aaa
+aaa
+aaa
+bxh
+aTp
+aTp
+aTp
+aac
+coE
+aTp
+aTp
+aTp
+coX
+aac
+aac
+aac
+czz
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+apJ
+asJ
+avQ
+axc
+aCT
+atb
+aIH
+apJ
+clB
+aIK
+azC
+arB
+arB
+arB
+awW
+awW
+awW
+awW
+awW
+arB
+arB
+arB
+aPv
+ayl
+aRZ
+asE
+aAF
+awW
+cyl
+awW
+baF
+asE
+bbb
+ayl
+beN
+arB
+aaf
+aaf
+aaf
+cyc
+cyA
+cyc
+cyw
+cyP
+cyi
+cyi
+cyY
+czc
+cyX
+cyi
+cyi
+cyi
+cyw
+cyc
+cyc
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(49,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cni
+aTp
+aTp
+aTp
+aac
+coD
+aTp
+aTp
+aTp
+aTp
+aTp
+bsB
+cpH
+cqI
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+apJ
+apJ
+apJ
+apJ
+apJ
+apJ
+apJ
+apJ
+axG
+aIK
+aym
+aAI
+aBH
+azz
+azz
+azz
+azz
+azz
+azz
+aLv
+aBH
+azz
+aPu
+ayl
+ayl
+aNh
+aym
+azz
+ayl
+azz
+aPu
+ayl
+aIK
+ayl
+beM
+aAC
+aaf
+aaf
+aaf
+aaf
+aaf
+cyc
+cyc
+cyc
+cyR
+cyR
+cyR
+cyR
+cyR
+cyR
+cyR
+cyc
+cyc
+cyc
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(50,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bJS
+aac
+aac
+aac
+aac
+coG
+cnh
+aTp
+aTp
+aTp
+aTp
+cut
+cpH
+crg
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaf
+aaf
+alU
+atJ
+amC
+aKf
+bEJ
+axb
+ayr
+azD
+aAJ
+azD
+aCp
+aEz
+aFG
+aHu
+ayl
+ayl
+ayl
+aNb
+ayl
+ayl
+ayl
+ayl
+aTr
+aUM
+ayl
+ayl
+aWc
+baG
+ayl
+aIK
+ayl
+beM
+asE
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(51,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cnW
+aac
+coF
+coO
+aTp
+cok
+cok
+aTp
+coi
+cpH
+crf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aae
+aaa
+aaa
+aaa
+aag
+alU
+alU
+alU
+aCW
+amC
+aud
+alU
+alU
+atO
+alU
+alU
+aBI
+aBI
+aBI
+aBI
+aBI
+aNh
+aKj
+aLw
+aLw
+aLw
+aLw
+aQI
+aNh
+czK
+czK
+czK
+czK
+aXX
+czK
+czK
+bbc
+beO
+beO
+beO
+beO
+beO
+beO
+beO
+beO
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(52,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bJS
+aac
+aac
+aac
+aac
+cmp
+aac
+aac
+aac
+cmE
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aqJ
+amC
+aqJ
+ase
+avq
+aum
+avq
+axJ
+cwH
+axJ
+aAj
+aBK
+aCL
+aEG
+aFI
+aBI
+aIM
+aKk
+aLy
+aNd
+aOj
+aPx
+aQJ
+ayl
+czK
+aUO
+aUy
+aWm
+aWf
+aUQ
+czK
+bhN
+bcl
+beQ
+bgk
+bhI
+bjb
+bkz
+blS
+bnv
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(53,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+alU
+alU
+alU
+alU
+asc
+atn
+aLt
+aue
+aue
+aue
+aue
+aAe
+aBJ
+aCs
+aEE
+aFH
+aGZ
+aIJ
+aJX
+aLi
+aMO
+aNR
+aOY
+aQl
+bcD
+aTs
+aUN
+baH
+aWi
+aXY
+baH
+aTs
+bbd
+beO
+beP
+bgj
+beO
+bja
+beO
+bja
+bja
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aae
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(54,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+alU
+apL
+aqK
+alU
+asc
+atq
+aon
+amC
+axe
+ays
+alU
+aAM
+aBI
+aCY
+aEI
+aFK
+aHy
+aIM
+aKk
+aLz
+aNe
+aNe
+aLz
+aQo
+aSb
+czK
+aUQ
+aUA
+aWr
+aXZ
+aUQ
+czK
+bbe
+beO
+beS
+bgj
+bhJ
+bjd
+bkB
+cAI
+bja
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaS
+aaS
+aaS
+aaS
+aaS
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cBW
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(55,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+alU
+alU
+apM
+aqL
+alU
+asc
+atq
+auX
+avS
+amC
+amC
+alU
+aAM
+aBI
+aDc
+aEH
+bxM
+aHa
+aIL
+aJY
+aLj
+aMP
+aMP
+aPa
+aQn
+ayl
+czK
+aUP
+aUO
+aXL
+aXZ
+aUO
+czK
+bbe
+beO
+beR
+bgj
+bgj
+bjc
+cAF
+cAF
+bja
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaS
+aaa
+aaf
+aaa
+aaS
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(56,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaS
+aaS
+aaS
+aaS
+aaS
+aaS
+aaS
+aaS
+aaS
+aaS
+aaS
+aaS
+aba
+aaS
+aaS
+aaf
+aaf
+aaf
+aaa
+aaa
+aaa
+alU
+aoS
+amC
+aom
+ank
+asc
+atq
+auZ
+bsU
+axf
+amC
+alU
+auT
+aBI
+aDf
+aEK
+aFM
+aHy
+ayl
+aKk
+aLA
+aNf
+aNf
+aLA
+aQD
+aSd
+czK
+aUQ
+aUW
+aXL
+aXZ
+baJ
+czK
+bbe
+beO
+beU
+bgl
+bhL
+bjc
+cAF
+blV
+beO
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaS
+aaf
+chJ
+aaf
+aaS
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(57,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abY
+aaa
+aaf
+aaa
+aaf
+aaa
+aaf
+aaa
+acy
+aaa
+aaf
+aaa
+aiS
+aaa
+aaS
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+alU
+aoR
+apO
+aqM
+arF
+asc
+atq
+auY
+amC
+amC
+ayt
+alU
+aAw
+aBl
+aCZ
+aEJ
+aFL
+aBI
+aIO
+aKk
+asE
+asE
+asE
+asE
+aQD
+ayl
+czK
+aUl
+aUR
+aWs
+aXZ
+aUQ
+czK
+bbf
+beT
+beT
+bdQ
+beZ
+bje
+bkC
+cAJ
+beO
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaS
+aaS
+aaS
+aaS
+aaS
+aaf
+aaf
+aaa
+chI
+aaa
+aaf
+aaf
+aaS
+aaS
+aba
+aaS
+aaS
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(58,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abY
+aaa
+acV
+adv
+adZ
+aaa
+acV
+adv
+adZ
+aaa
+acV
+adv
+adZ
+aaa
+aaS
+aaf
+aaf
+aaf
+aaa
+aaa
+aaa
+alU
+aoT
+amC
+aqO
+arG
+asc
+atq
+ava
+amC
+axg
+ayu
+azF
+azF
+azF
+azF
+azF
+azF
+azF
+aIQ
+aKk
+aLC
+aNg
+aOk
+aPy
+aRd
+aRM
+aTt
+aUm
+aUm
+aWt
+aYd
+aZn
+aTt
+bbg
+bdG
+bdu
+bdT
+beO
+bjf
+beO
+beO
+beO
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aae
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaS
+aaa
+aaa
+aaf
+aaa
+aaf
+aaa
+aaa
+chI
+aaa
+aaa
+aaf
+aaa
+aaf
+aaa
+aaa
+aaS
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(59,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aae
+aaa
+aaa
+abY
+aaf
+acV
+adu
+adZ
+aaa
+acV
+adu
+adZ
+aaa
+acV
+adu
+adZ
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+alU
+alU
+alU
+alU
+arG
+ash
+atq
+alU
+alU
+alU
+alU
+azF
+aAP
+aAP
+aAP
+aEF
+aFN
+azF
+aIP
+aKl
+aLB
+aLB
+aLB
+aLB
+aQK
+aSe
+czK
+aUQ
+aUQ
+aXN
+aUO
+aUQ
+czK
+bcI
+aPz
+bdt
+bdR
+aSg
+aYf
+bkD
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaS
+aaf
+cca
+cca
+cca
+cca
+cca
+aaa
+chK
+aaa
+cca
+cca
+cca
+cca
+cca
+aaf
+aaS
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aae
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(60,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abY
+aaa
+acV
+adu
+adZ
+aaf
+acV
+adu
+adZ
+aaf
+acV
+adu
+adZ
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+ali
+aoX
+arI
+asi
+atr
+atN
+atN
+atN
+ayi
+azq
+aAK
+aBv
+aDa
+aAQ
+aAQ
+azF
+aIR
+ayl
+ayl
+aNi
+ayl
+ayl
+ayl
+aSf
+aTq
+aTq
+aTq
+aTq
+aTq
+aTq
+aTq
+aPz
+aPz
+bdB
+aWv
+aTu
+bjg
+bkD
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaS
+aaa
+ccc
+ccX
+ccX
+ccX
+ccX
+cgz
+chL
+ciP
+cjH
+cjH
+cjH
+cjH
+cnl
+aaa
+aaS
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(61,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+acV
+adu
+adZ
+aaa
+acV
+adu
+adZ
+aaa
+acV
+adu
+adZ
+aaf
+aaf
+aaf
+aaf
+aaf
+aaa
+aaa
+aaa
+aaf
+aaa
+ali
+amC
+arH
+atP
+auV
+auV
+auV
+axK
+ayh
+azi
+aAx
+aBm
+aAQ
+aAQ
+aAQ
+azF
+azF
+azF
+aLD
+aNh
+aNh
+aPz
+aPz
+aPz
+aPz
+aSg
+aWj
+aXP
+aZr
+baL
+bbI
+bcK
+aPz
+bdB
+aWv
+bfh
+aPz
+aPz
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaS
+aaf
+ccb
+ccb
+ccb
+ccb
+ccb
+aaa
+chL
+aaa
+ccb
+ccb
+ccb
+ccb
+ccb
+aaf
+aaS
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(62,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaS
+aaS
+aaS
+aaf
+aaa
+acV
+adu
+adZ
+aaa
+acV
+adu
+adZ
+aaa
+acV
+adu
+adZ
+aaa
+aaf
+aaa
+ajV
+alR
+alR
+alR
+alR
+alU
+alU
+alU
+aqP
+arJ
+alU
+avb
+aaH
+bOi
+atO
+asK
+azF
+aAT
+aBw
+aDg
+aAQ
+aAQ
+aHz
+aIS
+aKn
+aLF
+aLF
+aLF
+aPz
+aQL
+aSg
+aSg
+aSg
+aWl
+aSg
+aZs
+baN
+bbK
+bcM
+bdH
+bdD
+bea
+bfq
+bji
+bkF
+cys
+cys
+cys
+cys
+cys
+cys
+cys
+cys
+cys
+cys
+cys
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaS
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+chL
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aba
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(63,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaS
+aaa
+aaf
+aaa
+aaa
+aaa
+adw
+aaa
+aaa
+aaa
+adw
+aaa
+aaa
+aaa
+adw
+aaa
+aaa
+ajV
+ajV
+ajV
+alQ
+amy
+ang
+alR
+aoj
+amC
+apP
+amC
+arH
+alU
+aaH
+bNb
+apQ
+atO
+asK
+azF
+aAS
+aFP
+aAQ
+aAQ
+aAQ
+aAQ
+aAQ
+aKm
+aLE
+aNj
+aLE
+aPz
+aPz
+aPz
+aTu
+aUS
+aWk
+aWk
+aWk
+baM
+bbJ
+bcL
+aWk
+bdC
+bdZ
+bhO
+bjh
+bkE
+cys
+cyB
+cyB
+cyB
+cyB
+cyB
+cyB
+cyB
+cyB
+czf
+cys
+czs
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaS
+aaf
+cca
+cca
+cca
+cca
+cca
+aaa
+chL
+aaa
+cca
+cca
+cca
+cca
+cca
+aaf
+aaS
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(64,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaS
+aaf
+abs
+abZ
+abZ
+acW
+ady
+ady
+ady
+ady
+ady
+ady
+ady
+ady
+ady
+ady
+ajq
+ajW
+akB
+alh
+alT
+amA
+ani
+anI
+aol
+aol
+aol
+aol
+arL
+alU
+avU
+avb
+bOi
+atO
+asK
+azF
+aAU
+aBG
+aAQ
+aAQ
+aAQ
+aBM
+aAQ
+aKn
+aLE
+aNl
+aOm
+aPB
+aQM
+aQM
+aTv
+aUT
+aPz
+aXQ
+aXQ
+aXQ
+aXQ
+aXQ
+aXQ
+aXQ
+aXQ
+bhQ
+bjj
+bkF
+cys
+cyB
+cyB
+cyB
+cyB
+cyB
+cyB
+cyB
+cyB
+cyB
+czp
+czt
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaS
+aaa
+ccc
+ccX
+ccX
+ccX
+ccX
+cgz
+chL
+ciP
+cjH
+cjH
+cjH
+cjH
+cnl
+aaa
+aaS
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(65,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaS
+aaa
+aaf
+aaa
+aaa
+aaa
+adx
+aaa
+aaa
+aaa
+adx
+aaa
+aaa
+aaa
+adx
+aaa
+aaa
+ajV
+ajV
+ajV
+alS
+amz
+anh
+anH
+aok
+anJ
+anJ
+aFJ
+arK
+alU
+alU
+ali
+alU
+atO
+asK
+azF
+aAP
+aAP
+aAP
+aAQ
+aFO
+aHA
+aIT
+azF
+aLG
+aNk
+aOl
+aPA
+aPA
+aPA
+aPA
+aPA
+aPA
+aXQ
+aZt
+aXQ
+aZt
+aXQ
+aZt
+aXQ
+aZt
+bhQ
+bjj
+bkF
+cys
+cyB
+cyB
+cyB
+cyB
+cyB
+cyB
+cyB
+cyB
+cyB
+czp
+czt
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaS
+acy
+ccb
+ccb
+ccb
+ccb
+ccb
+aaa
+chL
+aaa
+ccb
+ccb
+ccb
+ccb
+ccb
+aaf
+aaS
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(66,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaS
+aba
+aaS
+aaf
+aaa
+acV
+adz
+adZ
+aaa
+acV
+adz
+adZ
+aaa
+acV
+adz
+adZ
+aaa
+aaf
+aaa
+ajV
+alR
+alR
+alR
+alR
+aom
+amC
+apP
+amC
+arN
+amC
+amC
+amC
+amC
+axi
+asK
+azF
+azF
+azF
+azF
+aEL
+azF
+azF
+azF
+azF
+aLE
+aNn
+aOl
+aPA
+aQO
+aSh
+aTw
+aUU
+aWn
+aXQ
+aZv
+aXQ
+bbL
+aXQ
+bdJ
+aXQ
+bgr
+bhQ
+bjj
+bkF
+cys
+cyB
+cyB
+cyB
+cyB
+cyB
+cyB
+cyB
+cyB
+cyB
+czp
+czt
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aba
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+chL
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaS
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(67,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+acV
+adz
+adZ
+aaa
+acV
+adz
+adZ
+aaa
+acV
+adz
+adZ
+aaf
+aaf
+aaa
+aaa
+alU
+alF
+anj
+anJ
+anl
+aoU
+alU
+amC
+arM
+alU
+atT
+asO
+avV
+atO
+ayw
+atN
+aAV
+alU
+aDh
+aDo
+aFQ
+aHe
+aIN
+aKp
+aLE
+aNm
+aOl
+aPA
+aQN
+aQN
+aQN
+aUn
+aTy
+aWy
+aYe
+aZw
+aZw
+bbq
+bct
+bfa
+bfa
+bhQ
+bjk
+bkE
+cys
+cyB
+cyB
+cyB
+cyB
+cyS
+cyB
+cyB
+cyB
+czf
+cys
+czu
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaS
+aaf
+cca
+cca
+cca
+cca
+cca
+aaa
+chL
+aaa
+cca
+cca
+cca
+cca
+cca
+aaf
+aaS
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(68,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaS
+aaa
+acV
+adz
+adZ
+aaf
+acV
+adz
+adZ
+aaf
+acV
+adz
+adZ
+aaa
+aaf
+aaf
+aaf
+alU
+alF
+anl
+amC
+alU
+alU
+alU
+amC
+alU
+alU
+apP
+alU
+alU
+atP
+auV
+axK
+aAN
+aBL
+aDd
+aDd
+aFR
+aDd
+aDd
+aJZ
+aLk
+aNo
+aOo
+aPA
+aQQ
+aQN
+aSV
+aUo
+aUX
+aXp
+baO
+aZo
+baw
+bcO
+baw
+cBn
+bgs
+bhQ
+bjk
+bkF
+cys
+cys
+cys
+cyN
+cyQ
+cys
+cyT
+cyZ
+cys
+cys
+cys
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaS
+aaa
+ccc
+ccX
+ccX
+ccX
+ccX
+cgz
+chL
+ciP
+cjH
+cjH
+cjH
+cjH
+cnl
+aaa
+aaS
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(69,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaS
+aaf
+acV
+adz
+adZ
+aaa
+acV
+adz
+adZ
+aaa
+acV
+adz
+adZ
+aaf
+aaf
+aaa
+aaa
+alU
+alU
+ank
+alU
+alU
+aoV
+alU
+amC
+amC
+amC
+arN
+alU
+avW
+amC
+ayx
+atO
+aAL
+aBQ
+aDb
+aDo
+aFY
+aDo
+aDo
+aKp
+aLE
+aLE
+aOn
+aPA
+aQP
+aQN
+aTx
+aUV
+aWo
+aXQ
+aXQ
+aXQ
+aXQ
+aXQ
+aXQ
+aXQ
+aXQ
+bhQ
+bjk
+aPz
+aaa
+aoV
+boI
+bqi
+brJ
+boI
+brJ
+bvS
+boI
+aoV
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaS
+aaf
+ccb
+ccb
+ccb
+ccb
+ccb
+aaa
+chL
+aaa
+ccb
+ccb
+ccb
+ccb
+ccb
+aaf
+aaS
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(70,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaS
+aaa
+acV
+adA
+adZ
+aaa
+acV
+adA
+adZ
+aaa
+acV
+adA
+adZ
+aaa
+aaS
+aaa
+aaa
+alU
+amD
+anm
+amC
+ali
+aoV
+ali
+amC
+alU
+asO
+atL
+alU
+avX
+axf
+amC
+atO
+aAY
+aBQ
+aDl
+bxk
+aFS
+aDo
+aIX
+aBQ
+aLE
+aLE
+aOp
+aPA
+aQR
+aQN
+aTA
+aUq
+aWq
+aXs
+aYH
+aZx
+bbO
+aPA
+bdM
+aPz
+bgt
+bhS
+bjk
+aPz
+aoV
+aoV
+blW
+bqj
+brK
+blW
+brK
+bvT
+blW
+aoV
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaS
+aaa
+aaa
+aaf
+aaa
+aaf
+aaa
+aaa
+chL
+aaa
+aaa
+aaf
+aaa
+aaf
+aaa
+aaa
+aaS
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(71,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaS
+aaa
+aaf
+aaa
+aaf
+aaa
+aaf
+aaa
+aaf
+aaa
+aaf
+aaa
+aaf
+aaa
+aaS
+aaf
+aaf
+alU
+amC
+amC
+amC
+ali
+apQ
+ali
+amC
+alU
+alU
+alU
+alU
+alU
+axj
+alU
+atO
+aAY
+aBQ
+aDk
+aDo
+aDo
+aDo
+aIW
+aBQ
+aLE
+aLE
+aOl
+aPC
+aQN
+aQN
+aTz
+aUp
+aWq
+aXr
+aZx
+cBh
+bbN
+aPA
+bdL
+aPz
+bgt
+bhR
+bjk
+aZE
+blW
+blW
+blW
+bqi
+cyD
+blW
+cyD
+bvS
+blW
+aoV
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaS
+aaS
+aaS
+aaf
+aaf
+aaf
+aaf
+aaf
+chM
+aaf
+aaf
+aaf
+aaf
+aaf
+aaS
+aaS
+aaS
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(72,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaS
+aaS
+aaS
+aaS
+aaS
+aba
+aaS
+aaS
+aaS
+aaS
+aaS
+aaS
+aaS
+aaS
+aaS
+aaa
+aaa
+alU
+amE
+ann
+amC
+alU
+aoV
+ali
+amC
+alU
+arN
+atU
+alU
+atU
+amC
+atJ
+atO
+aAY
+aBQ
+aDn
+aDo
+aDo
+aHD
+aIZ
+aBQ
+aLE
+aLE
+aOq
+aPD
+aQT
+aQT
+aTC
+aUs
+aUY
+aXv
+aYS
+aZx
+bbO
+aPA
+bdM
+aPz
+aSg
+bhT
+bjk
+aZE
+blY
+bnw
+boJ
+bql
+brL
+btr
+bnw
+bvV
+blW
+aoV
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaf
+aaa
+aaa
+cfx
+chO
+cfx
+aaa
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(73,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+alU
+alU
+alU
+ank
+alU
+aoV
+alU
+amC
+amC
+amC
+amC
+alU
+aqO
+amC
+atJ
+atO
+aAY
+aBQ
+aDm
+aDo
+aDo
+aDo
+aIY
+aBQ
+aLE
+aLE
+aOl
+aPA
+aQS
+aSj
+aTB
+aUr
+aWq
+aXt
+aPA
+aPA
+aPA
+aPA
+aPA
+aPz
+bel
+bfI
+bgq
+bhY
+bkj
+bqm
+bqm
+bps
+bjr
+bjr
+buB
+bvU
+aZE
+apQ
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaf
+aaa
+aaa
+cfx
+chN
+cfx
+aaa
+aaa
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(74,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+alU
+amF
+alU
+amC
+alU
+apQ
+alU
+alU
+alU
+alU
+amC
+alU
+atM
+axl
+auV
+azG
+aAY
+aBQ
+aDp
+aDo
+aFU
+aDo
+aJb
+aKp
+aLE
+aLE
+aOl
+aPE
+aQV
+aQN
+aSi
+aUu
+aWq
+aXw
+aZB
+aZB
+aZB
+aZB
+aPA
+bfc
+bew
+bfM
+bjl
+bkG
+bkp
+bmj
+bjt
+cCo
+bjt
+bjt
+biq
+bvV
+blW
+aoV
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaf
+aaa
+cfx
+cfx
+cyK
+cfx
+cfx
+aaa
+aaa
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(75,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+alU
+alU
+alU
+amC
+alU
+apQ
+aaH
+alU
+arO
+alU
+amC
+avc
+atO
+axk
+ayy
+ayy
+aAO
+aBN
+aDe
+aDe
+aFT
+aDe
+aIU
+aKa
+aLH
+aLE
+aOl
+aPA
+aQU
+aQN
+aQN
+aUt
+aWq
+aXw
+aZA
+aZA
+aZA
+aZA
+aPA
+aWv
+aYb
+aZE
+aZE
+aZE
+bkn
+bmh
+bjr
+bmb
+bjr
+bjr
+buC
+bvV
+blW
+aoV
+aaa
+aaa
+aaa
+aoV
+aoV
+aoV
+aoV
+aoV
+aoV
+aoV
+aoV
+aoV
+aaa
+apQ
+apQ
+apQ
+apQ
+apQ
+apQ
+apQ
+apQ
+apQ
+apQ
+apQ
+apQ
+cAB
+cAB
+cAB
+cAB
+cfw
+cgA
+chP
+ciQ
+cfw
+aaa
+aaa
+aaa
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(76,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ali
+anK
+ali
+aaH
+atR
+alU
+alU
+alU
+atW
+atW
+atO
+axn
+alU
+aoX
+atJ
+aBQ
+aDq
+aDo
+aFZ
+aHE
+aJc
+aKs
+aLK
+aLK
+aOr
+aPA
+aQX
+aQN
+aQN
+aUv
+aWp
+aXA
+aYX
+aYX
+aYX
+bbs
+bcw
+bfd
+bgw
+aZE
+bjn
+bjr
+bkt
+bmh
+boK
+bpz
+boK
+bjr
+bkt
+bvV
+blW
+aoV
+aaa
+aaa
+aaa
+aoV
+akD
+akD
+ajX
+akD
+ajX
+akD
+akD
+aoV
+aaa
+aoV
+aoV
+apQ
+aoV
+aoV
+aoV
+aoV
+apQ
+aoV
+aoV
+aoV
+apQ
+cAB
+cJs
+cdW
+cdb
+cfw
+cgC
+chR
+ciS
+cfw
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(77,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+alU
+amC
+alU
+aaH
+apQ
+apQ
+aaH
+alU
+ali
+ali
+atO
+axm
+ayz
+ayz
+ayz
+aBR
+aBR
+aBR
+aBR
+aBR
+aBR
+aBR
+aLJ
+aLE
+aOl
+aPA
+aQW
+aQW
+aTD
+aQW
+aUZ
+aXx
+aYU
+aYU
+aYU
+bbr
+bcu
+bfe
+bgx
+aZE
+bjm
+bjr
+bjr
+bmh
+boK
+bjr
+boK
+bjr
+bjr
+bvV
+bxu
+aoV
+aoV
+aoV
+aoV
+aoV
+akD
+bGg
+amI
+amI
+bHx
+anM
+akD
+aoV
+aaa
+aoV
+aoV
+apQ
+aoV
+aoV
+aoV
+aoV
+apQ
+aoV
+aoV
+aoV
+apQ
+cAB
+cJt
+cdY
+bSs
+cfw
+cgB
+chQ
+ciR
+cfw
+aag
+aag
+aag
+aaa
+aaa
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(78,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ali
+aKY
+ali
+asC
+apQ
+aaH
+apQ
+aoV
+aoV
+apQ
+avY
+axo
+ayB
+aaa
+aaf
+aaa
+aaf
+aaa
+aaf
+aaa
+aaa
+aKu
+aLM
+aLF
+aOs
+aPG
+aPG
+aPG
+aPG
+aPG
+aPA
+aPA
+aPA
+aPA
+aPA
+aPA
+aPA
+aWv
+bgx
+aZE
+bjp
+bjr
+bjr
+bmh
+boK
+bjr
+cBp
+bjr
+buB
+bvV
+bxu
+bxu
+bxx
+bxu
+bxu
+bDi
+ajX
+bGh
+bHx
+amI
+bHx
+bLt
+bMF
+aoV
+aaa
+aoV
+bCq
+bCq
+bCq
+bCq
+bCq
+bLv
+bCq
+bCq
+bCq
+bCq
+bCq
+cAB
+bHE
+cdY
+ciT
+cfw
+cgE
+chS
+cfw
+cfw
+bCq
+bXv
+bCq
+aaa
+aaa
+aaa
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(79,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aae
+aaa
+aaf
+ali
+amC
+ali
+asC
+aaH
+apQ
+aoV
+aoV
+aoV
+aoV
+avY
+axo
+ayA
+aaf
+aBa
+aBa
+aBa
+aBa
+aBa
+aBa
+aaf
+aKt
+aLL
+bDe
+aOl
+aPF
+aQY
+aSk
+aTE
+aPG
+aWu
+aYa
+aZD
+aZD
+aZD
+aZD
+aZD
+bff
+bfk
+aZE
+bjo
+bjr
+bjr
+bmh
+boK
+bjr
+boK
+bjr
+bjr
+bub
+bxu
+bvF
+bzP
+bAS
+bxu
+aoV
+akD
+bGg
+amI
+amI
+bHx
+bLs
+akD
+aoV
+bVw
+bVw
+bCq
+bSo
+cAh
+cqy
+cqy
+cqy
+bXw
+bYt
+cqy
+cqy
+cqy
+cJg
+cqy
+cJH
+cqy
+cyL
+cgD
+cgH
+bHE
+cjI
+bCq
+clA
+bCq
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(80,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ali
+ali
+alU
+alU
+amC
+alU
+alU
+alU
+aaH
+apQ
+aoV
+apQ
+apQ
+avY
+axo
+ayA
+aaa
+aBa
+aBT
+aDs
+aEN
+aGb
+aBa
+aaa
+aKt
+aLN
+aLE
+aOl
+aPH
+aRa
+aRa
+aTG
+aPG
+aWw
+aYc
+aZF
+aZF
+aZF
+aZF
+aZF
+aZF
+bgy
+aZE
+bjr
+bjr
+ama
+bmh
+bjr
+bjr
+bjr
+bjr
+bjr
+bvX
+bxu
+byA
+bzR
+byd
+bxx
+aoV
+akD
+akD
+ajX
+bJc
+ajX
+akD
+akD
+aoV
+bCq
+bXv
+bCq
+bSo
+bUs
+bCq
+bVD
+bHE
+bHE
+bCq
+bZj
+bRg
+bRg
+bRg
+bRg
+bRg
+bRg
+bRg
+bHE
+cgH
+bHE
+bLu
+bCq
+cyE
+bCq
+aaa
+aaa
+aaf
+aaa
+bCq
+bCq
+bLv
+bLv
+bLv
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(81,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ali
+alV
+amG
+ano
+amC
+aon
+aoW
+alU
+aqQ
+aqQ
+aqQ
+aqQ
+aqQ
+avZ
+axp
+ayC
+azH
+aBb
+aBS
+aDr
+aEM
+aGa
+aHF
+aJd
+aKv
+aLN
+aLE
+aOl
+aPF
+aQZ
+aRa
+aTF
+aPG
+aSX
+aWC
+baS
+aZI
+baS
+baS
+bdS
+bdU
+ckQ
+aZE
+bjq
+bjr
+bjr
+bmh
+bjr
+bjr
+bjr
+bjr
+bjr
+bjr
+bxw
+byz
+bzQ
+byc
+bxx
+aoV
+aoV
+bGi
+bGi
+bJb
+bGi
+bGi
+aoV
+aoV
+bCq
+clA
+bCq
+cjI
+bUs
+bCq
+bVC
+bHE
+bHE
+bCq
+bHE
+bRg
+cIV
+cJh
+cda
+cgF
+cJV
+bRg
+cAh
+chT
+bHE
+bHE
+ckv
+bHE
+bCq
+bLv
+bLv
+bLv
+bLv
+bCq
+ciT
+cqK
+crl
+bLv
+aaa
+aaa
+aaa
+aae
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(82,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ali
+aKY
+amC
+anp
+amC
+amC
+amC
+ank
+aqR
+aqR
+aGh
+aqR
+aqR
+awb
+axo
+ayA
+aaa
+aBa
+aBV
+alu
+aEM
+aGd
+aHG
+aJe
+aKw
+aLP
+aMR
+aNU
+aPJ
+aPJ
+aPJ
+aPJ
+aPJ
+aVC
+aXJ
+bgA
+aZp
+baY
+bcJ
+bcF
+bfg
+bgA
+bhW
+bjt
+biq
+bjr
+bmh
+bjr
+bqn
+brN
+brN
+brN
+brN
+bxx
+byC
+bzT
+byl
+bxx
+apQ
+apQ
+bGi
+bHz
+byE
+bKk
+bGi
+aoV
+bCq
+bCq
+cyE
+bCq
+bCq
+bUs
+bCq
+ceY
+bHE
+bHE
+bHE
+bHE
+bRg
+cIW
+cJi
+cJu
+cpY
+cJW
+bRg
+cAi
+bQa
+bHE
+bHE
+bHE
+bHE
+bHE
+bHE
+bHE
+bHE
+bHE
+cpR
+bHE
+cAQ
+crm
+bLv
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(83,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ali
+alW
+amH
+ano
+anL
+aoo
+aoX
+alU
+aqQ
+aqQ
+aqQ
+aqQ
+aqQ
+awa
+axq
+ayD
+azI
+aBc
+aBU
+aDt
+aEO
+aGc
+aHF
+aJd
+aKb
+aLN
+aMQ
+aNT
+aPI
+aRb
+aRb
+aRb
+aRb
+aWx
+aXE
+baS
+baS
+bbP
+bcR
+bcE
+baS
+bex
+bhY
+bgu
+bic
+bku
+bmh
+bjr
+aZE
+brM
+bts
+buD
+bvY
+bxx
+byB
+bwS
+byg
+bxx
+aoV
+aoV
+bGi
+bHy
+byE
+bKj
+bGi
+aoV
+bCq
+bJf
+cAh
+cHF
+cqy
+chT
+bRg
+bRg
+bRg
+bRg
+bRg
+bRg
+bRg
+cIX
+cJj
+cJv
+cJI
+cJX
+bRg
+cgG
+bCq
+bCq
+bCq
+bCq
+bTz
+bCq
+bLv
+bLv
+bLv
+bLv
+bCq
+cqv
+cqL
+bJe
+bLv
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(84,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ali
+ali
+alU
+alU
+ali
+alU
+alU
+alU
+aaa
+aaa
+aaa
+aaa
+aag
+avY
+axo
+ayA
+aaa
+aBa
+aBW
+aDv
+aEP
+aGe
+aBa
+aaa
+aKt
+aLN
+aMS
+aOt
+aPK
+aPK
+aPK
+aPK
+aPK
+aWA
+aXM
+bfi
+cBi
+bbS
+bcS
+bbt
+bfi
+beD
+aZE
+aZE
+biA
+bmg
+bmH
+bkJ
+aZE
+aZE
+aZE
+aZE
+aZE
+bxu
+byD
+bwU
+byn
+bxu
+aoV
+bxy
+bxy
+bxy
+bJd
+bKm
+bxy
+apQ
+bCq
+ciT
+bUs
+bHE
+cHI
+bRg
+bRg
+cHW
+cIg
+bRg
+bYy
+cII
+bRg
+cIY
+bRg
+bRg
+cJJ
+cJY
+bRg
+cgH
+bLv
+aaa
+bCq
+ckv
+bHE
+bCq
+aaa
+aaa
+aaf
+aaa
+bCq
+bCq
+bCq
+bCq
+bCq
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(85,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+avY
+axo
+ayA
+aaf
+aBa
+aBa
+aBa
+aBa
+aBa
+aBa
+aaf
+aKt
+aLN
+aMS
+aOi
+aLE
+aPK
+aSl
+aTH
+aPK
+aWz
+aWC
+aZE
+aZE
+aZE
+bcT
+aZE
+aZE
+aZE
+aZE
+bju
+biv
+bmf
+bmt
+boN
+bqo
+brO
+btt
+buE
+bvZ
+bxu
+bxx
+bwT
+bym
+bxu
+bxy
+bxy
+bGj
+bHA
+bHA
+bKl
+bxy
+aaH
+bCq
+bCq
+bPX
+bCq
+bRg
+cHJ
+cHQ
+bVG
+cIh
+bRg
+cIy
+cIJ
+bRg
+cIZ
+cJk
+cJw
+cJK
+cJZ
+bRg
+cgH
+bLv
+aaa
+bLv
+bJf
+ccd
+bCq
+aaa
+aaa
+aaf
+aaa
+aaa
+aaf
+aaf
+cig
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(86,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+akD
+akD
+ajX
+akD
+akD
+ajX
+akD
+akD
+akD
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+avY
+axs
+ayF
+aaa
+aaf
+aaa
+aaf
+aaa
+aaf
+aaa
+aaa
+aKx
+aLN
+aMS
+aOi
+aLE
+aRc
+aSm
+aTJ
+aPK
+cCl
+aYh
+cCm
+cCm
+cCm
+cCn
+aPz
+bdW
+aSg
+aZE
+bgz
+biT
+boU
+bmP
+buF
+bbR
+bbR
+btu
+bbR
+bOL
+bxy
+byF
+bwW
+bGm
+bCo
+bDk
+bEK
+byE
+byE
+byE
+byE
+bGi
+apQ
+bLv
+cHC
+cHE
+cHG
+bRg
+cHK
+bRg
+cHX
+cIi
+bRg
+cIz
+cIK
+bRg
+cJa
+cJl
+cJx
+cJL
+cKa
+bRg
+cgH
+bLv
+aaf
+cAj
+cjJ
+cjJ
+cjJ
+cjJ
+cjJ
+cjJ
+cjJ
+cjJ
+cjJ
+aaa
+crn
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(87,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aae
+aaa
+aaa
+aaa
+aaa
+aaa
+ajX
+akC
+alj
+alY
+amI
+amI
+anM
+aop
+aoY
+aaa
+aaa
+aaa
+aaf
+arP
+avd
+avZ
+axr
+ayE
+ayE
+ayE
+ayE
+ayE
+ayE
+ayE
+ayE
+ayE
+ayE
+aLl
+aMT
+aOu
+aPL
+aPK
+aSm
+aTI
+aPK
+aWB
+cCj
+apd
+apd
+bbU
+cCk
+apd
+aZE
+bgB
+bhX
+bgv
+biF
+bkw
+bnE
+bny
+btv
+btv
+bjv
+btv
+buc
+bxz
+bBa
+bwV
+byy
+bBa
+bAb
+bzY
+bBa
+bEQ
+bGM
+bKn
+bGi
+aoV
+bLv
+bHE
+bHE
+bUs
+bRg
+bRg
+bRg
+cHY
+cIj
+bRg
+cIA
+cIL
+bRg
+cJb
+cJm
+cJy
+cJM
+cKb
+bRg
+cgH
+bLv
+aaa
+cjJ
+ckw
+clC
+cmy
+cnm
+cnL
+cov
+cpj
+cpS
+cjJ
+aaa
+crn
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(88,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ajX
+akF
+alm
+akD
+amI
+amI
+amI
+aop
+aoY
+aaa
+aaa
+aaa
+aaf
+arP
+ave
+awa
+axu
+ayH
+ayH
+ayH
+ayH
+ayH
+ayH
+aFV
+ayH
+ayH
+aKy
+aLn
+aMU
+aOw
+aPN
+aPK
+aSn
+aTK
+aPK
+apd
+cCj
+asW
+baW
+bLE
+bLG
+apd
+bfj
+bgC
+bia
+aZK
+bjs
+bkx
+bmQ
+bnA
+bpB
+bpB
+brR
+bsV
+bwc
+bxA
+bvI
+bwX
+byG
+bvI
+bAm
+bBG
+bDo
+byE
+byE
+bKp
+bGi
+apQ
+bLv
+ccZ
+bHE
+cHH
+bRg
+cHL
+cHR
+cHZ
+cIk
+cIr
+cIB
+bcU
+bRg
+cJc
+cCa
+cJz
+cJN
+cKc
+bRg
+cgH
+bLv
+aaa
+cjJ
+cky
+clE
+cmA
+cno
+cnN
+cox
+cpl
+cpU
+cjJ
+aaf
+crn
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(89,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+adB
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ajX
+akE
+all
+alZ
+amJ
+anr
+amI
+aop
+aoY
+aaa
+aaa
+arP
+arP
+arP
+cya
+avZ
+axt
+ayG
+ayG
+ayG
+ayG
+ayG
+ayG
+ayG
+ayG
+ayG
+ayG
+aLm
+aMS
+aOv
+aPM
+aPQ
+aPQ
+aPQ
+aPQ
+apd
+aYi
+aqW
+aqW
+bbQ
+bLG
+apd
+aZH
+aZK
+bhZ
+aZK
+bkM
+bfQ
+bnG
+bnz
+bpA
+bbR
+bkM
+bqs
+bud
+bxy
+bvG
+bAZ
+bGm
+bzF
+bAc
+bGm
+byE
+cBB
+byE
+bKo
+bxy
+aaH
+bCq
+bJe
+cqK
+bUs
+bRg
+cHM
+cHS
+cIa
+cIl
+cIs
+cIC
+cIM
+bRg
+bdV
+cJn
+cJA
+cJO
+cKd
+bRg
+cgH
+bLv
+aaf
+cjJ
+ckx
+clD
+cmz
+cnn
+cnM
+cow
+cpk
+cpT
+cjJ
+aaa
+crn
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(90,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abc
+abc
+abc
+afu
+abc
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+akD
+akD
+alo
+akD
+akD
+akD
+anO
+akD
+akD
+aaa
+aaa
+arP
+asQ
+aqR
+aqR
+avZ
+axt
+ayG
+azK
+aBe
+aBe
+aDj
+aER
+aFX
+aHj
+aJa
+aKc
+aLp
+aMV
+aOy
+aLE
+aPQ
+aRV
+aSW
+aVa
+apd
+aWE
+aqW
+aqW
+bcG
+bLG
+apd
+aZH
+bgD
+bfN
+bgE
+bjv
+bkH
+bfm
+boS
+bfm
+bNK
+bkN
+bml
+bwe
+bwe
+bwd
+bwY
+byJ
+bwe
+bAc
+bBI
+bGn
+bGn
+bGn
+bKq
+bxy
+apQ
+bCq
+bCq
+bCq
+bPX
+bRg
+cHN
+cHT
+cIb
+cIm
+cIt
+cID
+cIN
+cjn
+bSu
+cJo
+cJB
+cJP
+cKe
+bRg
+cgH
+bLv
+aaa
+cjJ
+cky
+clG
+cmB
+cnq
+cnP
+coz
+cpn
+cjJ
+cjJ
+aaa
+crn
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(91,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abc
+aea
+aeH
+aft
+abc
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aiU
+aln
+aiU
+aaa
+aiU
+anN
+aiU
+aaa
+aaa
+aaa
+arP
+asP
+aqR
+aqR
+awb
+axt
+ayG
+azJ
+aBd
+aBX
+aDi
+aEQ
+aFW
+aHh
+aIV
+ayG
+aLN
+aMS
+aOx
+aPc
+aRe
+aRT
+aSt
+aWF
+apd
+aWG
+aZa
+baX
+bcH
+bdE
+apd
+aZH
+bnL
+bbR
+boU
+bkM
+bfm
+bnI
+boR
+bqs
+bbR
+bkM
+bNM
+bwd
+bxB
+bvL
+byI
+byH
+bwe
+bAn
+bBH
+bxy
+bxy
+bxy
+bxy
+bxy
+bLv
+bCq
+cHD
+bHE
+bUs
+bRg
+cHO
+cHU
+cIc
+cIn
+cIu
+cIE
+cIO
+cIS
+cJd
+cJp
+cJC
+cJQ
+cKf
+bRg
+cgH
+bLv
+aaa
+cjJ
+ckz
+clF
+cmy
+cnp
+cnO
+coy
+cpm
+cjJ
+aaf
+aaf
+crn
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abY
+abY
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(92,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abc
+abu
+abu
+abu
+abc
+abc
+aec
+aeJ
+afw
+abc
+abc
+aaf
+aaa
+aaf
+aaf
+aaf
+aaf
+aiU
+alp
+aiU
+aaa
+aiU
+alp
+aiU
+aaf
+aaf
+aaf
+arP
+arP
+arP
+arP
+avZ
+axt
+ayG
+azM
+aBg
+aBZ
+aDx
+aET
+aET
+bCx
+aHJ
+aKd
+aLq
+aMY
+aOA
+aPO
+aRf
+aSc
+aSc
+aUw
+apd
+aXK
+avr
+aZJ
+bbT
+bSy
+apd
+aZH
+beF
+bfl
+bmi
+bjw
+bmk
+bbR
+boT
+bbR
+bbR
+buI
+bbR
+bwd
+bxD
+byL
+byK
+byT
+bwe
+bAx
+bTE
+bCq
+bHD
+bJe
+bCq
+bLu
+bHE
+bCq
+bLu
+bHE
+bUs
+bRg
+cHP
+bUt
+cId
+cIo
+cIv
+cIF
+cIP
+cIT
+cJe
+cJq
+cJD
+cJR
+cKg
+bRg
+cgH
+bLv
+aaf
+cjJ
+cjJ
+cjJ
+cjJ
+cjJ
+cnR
+coB
+cjJ
+cjJ
+aaa
+aaa
+crn
+aaf
+abY
+abY
+abY
+abY
+abY
+abY
+abY
+abY
+abY
+aaa
+aaf
+cEX
+abY
+abY
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(93,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aae
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abb
+abt
+aca
+acz
+acX
+adC
+aeb
+aeI
+afv
+agf
+abc
+aaf
+aaa
+aaa
+aiT
+aiT
+aiV
+akG
+cxJ
+aiU
+amK
+aiU
+cxP
+aoq
+aiV
+aiT
+aiT
+arP
+asR
+aqR
+arP
+awc
+axt
+ayG
+azL
+aBf
+aBY
+aDw
+aES
+aJh
+aHv
+aJh
+aKA
+aLN
+aMS
+aOz
+aLE
+aPQ
+aSa
+aSr
+aSr
+apd
+aYZ
+bLE
+aqW
+aqW
+bLE
+apd
+beA
+bqp
+bbR
+aqU
+bLF
+aZK
+bnJ
+bbR
+bqt
+cBq
+bbR
+bbR
+bwd
+bxC
+byK
+cBv
+byO
+bwe
+bAo
+bTE
+bGo
+bHC
+bHE
+bCq
+bCq
+bLv
+bCq
+ceY
+bHE
+bUs
+bRg
+bRg
+cHV
+cIe
+cIp
+cIw
+cIG
+cIQ
+bRg
+bRg
+bRg
+cJE
+cJS
+bRg
+bRg
+cgH
+bCq
+aaa
+aaf
+aaa
+aaa
+aaf
+cjJ
+cnQ
+coA
+cpo
+cjJ
+aaa
+aaa
+crn
+aaf
+abY
+cEX
+cEX
+cEX
+cEX
+cEX
+cEX
+cEX
+abY
+aaa
+aaf
+cEX
+cEX
+abY
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(94,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abe
+abw
+acc
+acB
+acZ
+adE
+aee
+aeL
+afy
+agh
+abc
+aaf
+aaa
+aaf
+aiT
+ajs
+akb
+akI
+akI
+amc
+aiT
+ant
+akI
+aos
+aiT
+apR
+cCh
+arP
+asT
+aqR
+avf
+awb
+axt
+ayG
+azN
+aBe
+aBe
+aDy
+aEU
+aGf
+aHL
+aJi
+aKB
+aLT
+aNp
+aOC
+aPQ
+aPQ
+aTL
+aTP
+aWD
+apd
+aYj
+aZL
+baU
+baU
+bcV
+apf
+bfn
+beW
+bfR
+bKF
+bNH
+aZK
+bbR
+bbR
+bbR
+bbR
+bty
+buJ
+bwe
+bxE
+byM
+bAd
+bBf
+bwe
+bAJ
+bCe
+bCq
+bHE
+bJf
+bCq
+aoV
+apQ
+bCq
+bSs
+bHE
+bUs
+bQa
+bTB
+bUv
+cIf
+cIq
+cIx
+cIH
+cIR
+cIU
+cJf
+cJr
+cJF
+cJT
+cKh
+car
+cgH
+bCq
+bCq
+bCq
+bCq
+bCq
+bCq
+cjJ
+cnS
+coC
+cpp
+cjJ
+aaf
+aaf
+cig
+aaf
+aaT
+aaT
+aaT
+aaT
+aaT
+aaT
+aaT
+aaT
+aaT
+aaf
+aaf
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(95,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abd
+abv
+acb
+acA
+acI
+adD
+aed
+aeK
+afx
+agg
+abc
+aaf
+aaa
+aaa
+aiU
+ajr
+aka
+akH
+alq
+amb
+aiU
+ans
+alq
+aor
+apb
+alp
+aqS
+arP
+asS
+aqR
+arP
+awd
+axv
+ayG
+ayG
+ayG
+ayG
+ayG
+ayG
+ayG
+ayG
+ayG
+ayG
+aHP
+aNc
+aOB
+aPQ
+aPQ
+aSs
+aSs
+aSs
+apd
+apd
+apd
+baV
+bON
+apd
+apd
+aZK
+beV
+bfm
+bKP
+bfm
+aZK
+bnK
+bnK
+bqu
+bqu
+bnK
+bnK
+bwe
+bwe
+bwe
+bwe
+bwe
+bwe
+bAI
+bCd
+bCq
+bCq
+bCq
+bCq
+bLv
+bLv
+bCq
+bHE
+bHE
+bUs
+bHE
+bTE
+bUu
+bVH
+bVH
+bVH
+bVH
+bVH
+bVH
+bVH
+bVH
+cJG
+cJU
+bVH
+caq
+cbw
+ccu
+ciT
+bCq
+bSs
+ceY
+ccw
+ccw
+cnR
+cgT
+cjJ
+ccw
+ccw
+ccw
+ccw
+aaa
+aaf
+aaa
+aaa
+aaf
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(96,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaH
+aai
+aai
+abg
+aby
+aby
+aby
+aby
+aby
+aeg
+aeN
+afA
+afA
+afA
+aaf
+aaa
+aaa
+aiU
+aju
+akd
+akK
+als
+ame
+amM
+anv
+als
+aou
+aiT
+aiT
+aiT
+arP
+arP
+arP
+arP
+awf
+axx
+ayJ
+ayJ
+aBi
+aqR
+aqR
+aqR
+aqR
+aqR
+aqR
+arP
+aLI
+aNr
+bBo
+aJq
+aRh
+aJq
+aJq
+aJq
+aJq
+aJq
+aLY
+aJq
+aJq
+bcW
+bbV
+bfo
+bkS
+bfo
+bgn
+bfo
+bmn
+bfo
+boW
+bmE
+bmE
+btz
+btz
+bwf
+btz
+btz
+btz
+bBh
+bCr
+bAK
+bCn
+bGq
+bGq
+bGq
+bGq
+bLw
+bGq
+bGq
+bGq
+bLw
+bGq
+bGq
+bTD
+bUx
+bVI
+bVI
+bVI
+bVI
+bVI
+bVI
+bVI
+bVI
+bVI
+bVI
+bVI
+bTA
+bEP
+cdi
+bCq
+bCq
+bHE
+bHE
+cmD
+cnr
+cnU
+chD
+cpq
+cpV
+cqw
+cqO
+crp
+aaa
+aaf
+aaa
+aaa
+aaf
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaT
+abY
+abY
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(97,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaf
+aai
+aai
+aai
+aaU
+abf
+abx
+acd
+acC
+ada
+adF
+aef
+aeM
+afz
+aai
+aai
+aai
+aai
+aai
+aai
+ajt
+akc
+akJ
+alr
+amd
+amL
+anu
+alq
+aot
+apc
+apS
+aqT
+arQ
+arQ
+atX
+atX
+awe
+axw
+ayI
+azO
+aBh
+akL
+aDz
+aEV
+aGg
+aHx
+aqZ
+apg
+aLx
+aNq
+aOD
+aPe
+aJq
+aJq
+aJq
+aJq
+aJq
+aJq
+aLY
+aJq
+aJq
+bHt
+aJq
+aJq
+beX
+aJq
+bgm
+bjx
+bmm
+bnM
+boV
+bnM
+brT
+brT
+brT
+brT
+brT
+brT
+bAe
+bBg
+bCq
+bCq
+bDt
+bGp
+bGp
+bGp
+bES
+bGp
+bGp
+bGp
+bGp
+bGp
+bGp
+bES
+bTC
+bUw
+bVI
+bWB
+bWB
+bYz
+bYz
+cag
+cbl
+bYz
+bWB
+bWB
+bVI
+cax
+cbx
+cdh
+ciU
+cjK
+ckA
+ckA
+cmC
+cmC
+cfJ
+chB
+cpW
+cgR
+cgR
+cqN
+cro
+cEl
+cEE
+cEl
+cFm
+cFC
+cFm
+cFm
+cFC
+cGO
+aaa
+aaa
+aaT
+cEX
+abY
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(98,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aah
+aai
+aai
+aai
+aai
+aaI
+aaM
+aat
+aat
+aat
+ace
+aat
+aat
+adH
+aei
+aeO
+afJ
+acd
+agL
+agK
+agK
+aiB
+aai
+ajw
+akf
+aiX
+aiX
+aiX
+aiX
+aiV
+anP
+aiT
+cCi
+cCi
+cCi
+cCi
+cCi
+cCi
+cCi
+awg
+axy
+ayL
+azQ
+aBk
+ayL
+ayL
+ayL
+ayW
+ayW
+ayW
+ayW
+aLW
+aNs
+aJq
+aLX
+aLX
+aLX
+aLX
+aLX
+aJq
+aYl
+aZN
+aYl
+aYl
+aYl
+aYl
+aYl
+bgG
+bid
+aYl
+bBi
+aLY
+bnN
+boY
+bqw
+aJq
+aJq
+aYl
+aKF
+aLX
+aJq
+aJq
+bBi
+aJw
+aoV
+apQ
+aoV
+apQ
+aoV
+apQ
+aoV
+apQ
+aoV
+aoV
+aoV
+aoV
+bCq
+bTF
+bUw
+bVI
+bWD
+bXA
+bYB
+bYz
+cai
+bYz
+ccg
+cdd
+cea
+bVI
+caz
+cby
+cdj
+cdv
+cem
+cem
+cem
+cfe
+cfD
+cgv
+chE
+ciN
+ciN
+cji
+cDZ
+crr
+cEm
+cEF
+cEm
+cFn
+cFD
+cFC
+cFC
+cFD
+csb
+aaf
+aaf
+aaT
+cEX
+abY
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(99,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaf
+aai
+aan
+aaw
+aaB
+aat
+aaJ
+aat
+abh
+aat
+acd
+abK
+acY
+adG
+aeh
+aeO
+afI
+agl
+agH
+ags
+ags
+aho
+acd
+ajv
+ake
+agj
+afL
+aez
+ahU
+aiX
+anz
+aov
+cCi
+air
+aqY
+arU
+apU
+apU
+cCi
+awg
+axy
+ayK
+azP
+aBj
+aBO
+aDC
+ayL
+aGo
+aHN
+aJj
+ayW
+aLV
+aJq
+aOE
+aJn
+aJn
+aJn
+aJn
+aJs
+aJq
+aYk
+aZM
+aZM
+bbW
+bcX
+bcX
+aZM
+aZM
+aZM
+bjz
+bkT
+bjz
+bjz
+boX
+bqv
+bqv
+bqv
+bqv
+bwg
+aJw
+aJq
+aJq
+bBi
+aJw
+aoV
+bEU
+bGr
+bGr
+bGr
+bKr
+aaa
+aaf
+aaa
+aoV
+apQ
+apQ
+bCq
+bTE
+bUw
+bVI
+bWC
+bXz
+bYA
+bZn
+cah
+bWB
+ccf
+cdc
+cdZ
+bVI
+cay
+ccw
+ccw
+ccw
+ccw
+ccw
+ccw
+ccw
+ccw
+cfL
+coH
+cBO
+cgR
+cDB
+cqP
+crq
+cEn
+cEF
+cEn
+cFo
+cFD
+cFm
+cFm
+cFD
+cGO
+aaa
+aaa
+aaT
+cEX
+abY
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(100,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aak
+aap
+aay
+aaD
+aat
+aat
+aat
+aat
+abA
+acd
+acd
+acd
+acd
+aek
+aeU
+afI
+acd
+agI
+ahq
+ahV
+aho
+acd
+ajy
+akh
+afK
+ajc
+afM
+afN
+aiX
+anz
+aov
+cCi
+aqX
+arR
+asj
+asU
+ats
+atY
+auo
+axy
+ayN
+azP
+aAW
+aCa
+aDB
+aDI
+azW
+azW
+azW
+ayW
+aLX
+aJq
+aOE
+aJn
+aaa
+aaa
+aJn
+aJs
+aJq
+aYn
+aZM
+aZu
+bbY
+bcY
+bdX
+bbX
+bgH
+bie
+bjB
+bkW
+bmp
+bjz
+bpa
+bqy
+cBr
+bqy
+buK
+bqy
+aJw
+aJq
+aJq
+bBi
+aJw
+apQ
+bEW
+bGt
+bHG
+bJh
+bEW
+aaf
+aaf
+aaa
+aoV
+bKv
+bLB
+bES
+bMj
+bUw
+bVI
+bWF
+bXC
+bXC
+bZp
+cak
+bWB
+bWB
+bWB
+cec
+bVI
+cay
+ccw
+chY
+ciX
+cjM
+ckB
+ckB
+ckB
+ccw
+cnY
+coH
+cgR
+cgR
+cqx
+cqR
+crp
+cEm
+cEF
+cEm
+cFn
+cFD
+cFC
+cFC
+cFD
+csb
+aaf
+aaf
+aaT
+cEX
+abY
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(101,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaf
+aaj
+aao
+aax
+aaC
+aat
+aat
+adO
+aat
+abz
+acd
+acE
+add
+adF
+aej
+aeQ
+afD
+acd
+agJ
+ahp
+ahp
+aiC
+adF
+ajx
+akg
+agj
+adL
+ahr
+aih
+aiX
+anz
+aov
+ape
+arT
+aqV
+arS
+apU
+atu
+cCi
+awg
+axy
+ayM
+azs
+aAR
+aBP
+aDA
+aEW
+aGi
+aHB
+aEZ
+aBt
+aJs
+aJq
+aOE
+aJn
+aaa
+aaa
+aJw
+aVb
+aWH
+aYm
+aZM
+aZq
+bbX
+bbX
+bbX
+bfp
+aZP
+aZP
+bjA
+cAG
+bmo
+bmr
+boZ
+bqx
+brU
+bmr
+bmr
+bmr
+bmr
+byN
+aJq
+bBj
+aJw
+aoV
+bEV
+bGs
+cBC
+bJg
+bKs
+aaa
+aaf
+aaf
+apQ
+bJQ
+bLg
+cCg
+cCg
+bNg
+bVI
+bWE
+bXB
+bYC
+bZo
+caj
+bWB
+cch
+cde
+ceb
+bVI
+cay
+ccw
+chY
+cCW
+ciW
+ckB
+ckB
+ckC
+ccw
+cnX
+coH
+cps
+cpX
+cqz
+cqQ
+ccw
+cEp
+cEF
+cEn
+cFo
+cFD
+cFm
+cFm
+cFD
+cGO
+aaa
+aaa
+aaT
+cEX
+abY
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(102,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aal
+aar
+aay
+aaF
+aat
+aaO
+aaW
+aat
+abB
+acf
+abM
+acG
+adI
+aem
+aeO
+afG
+acd
+agK
+agK
+ail
+aiE
+aiW
+ajA
+akj
+agj
+agj
+agj
+aiX
+aiX
+anQ
+aov
+cCi
+apU
+arT
+arT
+asn
+atK
+auq
+avs
+axz
+ayP
+azU
+aBo
+aCg
+azW
+aEX
+aEZ
+aEZ
+aEZ
+aEX
+aJs
+aJq
+bJx
+aJn
+aaa
+aaa
+aTQ
+aVd
+aWJ
+aYp
+aZM
+aZz
+baI
+bda
+bda
+bca
+bgJ
+aZP
+bjD
+bkY
+bmo
+bnP
+bpc
+bqA
+brW
+btB
+buM
+bwi
+bmr
+aMm
+aJq
+bBi
+bCs
+bCs
+bEY
+bGu
+bHI
+bJi
+bEY
+bCs
+bCs
+bNI
+bNI
+bRn
+cce
+bNI
+bNI
+bUz
+bVI
+bWG
+bXD
+bYz
+bYz
+cam
+bYz
+bYz
+cdf
+ced
+bVI
+cay
+ccw
+ciZ
+ciZ
+ciZ
+ckC
+ckC
+ckC
+ccw
+coa
+coJ
+clJ
+clJ
+cig
+cig
+ccw
+cEm
+cEF
+cEm
+cFn
+cFD
+cFC
+cFC
+cFD
+csb
+aaf
+aaf
+aaT
+cEX
+abY
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(103,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaf
+aaj
+aaq
+aay
+aaE
+aaJ
+aaN
+aaV
+aat
+aat
+acd
+abL
+adb
+acd
+ael
+aeO
+afF
+agj
+agj
+agj
+agj
+agj
+agj
+ajz
+aki
+akM
+alv
+amf
+amQ
+anw
+anz
+aov
+cCi
+arT
+arT
+asl
+arT
+apU
+cCi
+awg
+axy
+ayv
+azE
+aBn
+aCb
+aDD
+aEY
+aGj
+aHC
+aEZ
+aBt
+aJs
+aJq
+aOE
+aJn
+aaa
+aaa
+aPR
+aVc
+aWI
+aYo
+aZM
+aZy
+bay
+bcZ
+bdY
+bdF
+bgI
+aZP
+bjC
+bkX
+bmo
+bnO
+bpb
+bqz
+bqq
+brS
+bsY
+bue
+bmr
+aMn
+aJq
+bBi
+bCs
+bDv
+bEX
+bFa
+bHH
+bFa
+bKt
+bLx
+bCs
+cCe
+bRl
+apV
+bLC
+cCf
+bNI
+bUz
+bVI
+bWB
+bWB
+bYz
+bZq
+cal
+cbm
+bYz
+bWB
+bWB
+bVI
+cay
+ccw
+ccw
+ciY
+ciY
+ccw
+ccw
+ccw
+ccw
+cnZ
+coH
+cpt
+cpZ
+cig
+cqS
+ccw
+cEp
+cEF
+cEn
+cFo
+cFD
+cFm
+cFm
+cFD
+cGO
+aaa
+aaa
+aaT
+cEX
+abY
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(104,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aae
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aal
+aat
+aay
+aat
+aat
+aaJ
+aat
+aat
+abD
+acd
+acd
+acd
+acd
+aen
+aeO
+afH
+agj
+agM
+ahu
+ahW
+aiD
+agj
+auj
+akl
+akO
+alx
+alx
+amR
+anw
+anz
+aox
+cCi
+cCi
+cCi
+cCi
+cCi
+cCi
+cCi
+awg
+axy
+ayQ
+azE
+aBq
+aBr
+aDE
+aFc
+azW
+azW
+aJf
+ayW
+aJr
+aJq
+aOE
+aJn
+aaa
+aPR
+aPR
+aPR
+aWL
+aPR
+aZM
+bbX
+bay
+bbM
+bcN
+bdK
+bgL
+aZP
+aZP
+aZP
+bmo
+bnR
+bpe
+bqB
+bqq
+btD
+buO
+bwk
+bmr
+aLY
+cBw
+bBk
+bCs
+bDx
+bFa
+bFa
+bHJ
+bFa
+bFa
+bLz
+bCs
+cCe
+bNJ
+apV
+cjL
+bNJ
+bNI
+bUz
+bVJ
+bWI
+bXF
+bXF
+bZs
+cao
+cbo
+bXF
+bXF
+cef
+bVJ
+cay
+ccw
+cib
+cjb
+ckH
+ckE
+clH
+cmG
+cnt
+cob
+coL
+cDo
+cgR
+cqA
+cqT
+czh
+cEm
+crU
+csb
+cFn
+cFD
+cFC
+cFC
+cFD
+csb
+aaf
+aaf
+aaT
+aaT
+aaT
+aaf
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(105,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaf
+aaj
+aas
+aaz
+aat
+aat
+aat
+aat
+aat
+abC
+acd
+acH
+adc
+acd
+aeo
+aeS
+afH
+agj
+agN
+aht
+ain
+aid
+agj
+aiZ
+akk
+akN
+alw
+amg
+amR
+anw
+anR
+aow
+apg
+aqZ
+aqZ
+aqZ
+apW
+aqZ
+avh
+awh
+axz
+ayO
+azE
+aBp
+aCc
+aDF
+ayL
+aGq
+aHO
+aJl
+ayW
+aJq
+aJq
+aOE
+aJn
+aaa
+aPR
+aTR
+aVe
+aWK
+aYq
+aZO
+aZC
+baK
+bbC
+bbC
+bdI
+bgK
+bgK
+bjE
+bgK
+bmq
+bnQ
+bpd
+bpd
+bqr
+btC
+buN
+bwj
+bmr
+byP
+aJq
+bBi
+bCs
+bDw
+bEZ
+bGv
+bHH
+bJj
+bKu
+bLy
+bCs
+bNJ
+bNJ
+bKx
+cjL
+bNJ
+bNI
+bUA
+bVJ
+bWH
+bXE
+bYD
+bZr
+can
+cbn
+cci
+cdg
+cee
+bVJ
+cay
+ccw
+cia
+cja
+cgR
+ckD
+cig
+cmF
+cfG
+cgw
+coK
+cpu
+clJ
+ccw
+ccw
+ccw
+crK
+cEK
+csa
+csj
+csa
+csa
+cGr
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(106,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aab
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aam
+aav
+aav
+aav
+aaL
+aaQ
+aaY
+aav
+abE
+acg
+acJ
+ade
+adJ
+aep
+aeT
+afH
+agj
+ahs
+ahP
+ahP
+aiF
+agj
+aja
+ajG
+akQ
+agj
+agj
+amS
+anx
+anz
+aov
+aph
+aph
+aph
+arW
+aso
+auf
+avi
+awi
+axy
+ayS
+azS
+aBs
+aCi
+aDI
+ayL
+ayW
+ayW
+ayW
+ayW
+aJq
+aJq
+aOE
+aJn
+aaa
+aPR
+aTT
+aVg
+aWN
+aYs
+aZQ
+bbi
+bde
+bcd
+bcd
+bcd
+bcd
+bcd
+bcd
+bcd
+bms
+bnS
+bpf
+bqC
+brZ
+btE
+bnS
+bwl
+bxG
+byR
+brT
+bBl
+bCs
+bDz
+bFa
+bFa
+bHH
+bFa
+bFa
+bFa
+bCs
+bNL
+bNJ
+apV
+cjL
+bNJ
+bNI
+bUz
+bVJ
+bOo
+bOD
+bQb
+bZv
+bSd
+bXG
+bOC
+bWt
+cBK
+bVJ
+cay
+ccw
+cid
+cgR
+cen
+ckG
+clJ
+cmF
+cgR
+cgI
+chF
+ciO
+cqc
+cqc
+cqc
+cEd
+cEr
+cEL
+cFb
+cFu
+cFI
+cGd
+cGs
+cGr
+aaa
+aaf
+aaa
+aaf
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(107,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaf
+aai
+aau
+aaA
+aaG
+aaK
+aaP
+aaX
+aat
+aat
+acd
+acD
+acY
+adG
+aeq
+aeV
+acd
+agj
+ahm
+ahD
+aiw
+aiO
+agj
+ajD
+akm
+akP
+aly
+amh
+amR
+anw
+anz
+aov
+aph
+aob
+ara
+arV
+apZ
+aph
+aph
+awg
+axA
+ayR
+azR
+aBr
+azW
+afO
+azW
+agm
+aBt
+aaa
+aJn
+aLY
+aLY
+aOF
+aPR
+aPR
+aPR
+aTS
+aVf
+aWM
+aYr
+aZP
+bbh
+bcc
+bdd
+bbX
+bfr
+bgM
+bif
+aZM
+aZM
+bmr
+bmr
+bmr
+bmr
+bmr
+bmr
+bmr
+bmr
+bmr
+byQ
+aJq
+aJq
+bCs
+bDy
+bFb
+bGw
+bER
+bJk
+bFa
+bLA
+bCs
+cCd
+bQc
+bKA
+cjL
+bSv
+bNI
+bUB
+bVJ
+bOl
+bOC
+bPQ
+bQK
+bYF
+bTI
+bUy
+bWs
+ceg
+bVJ
+cay
+ccw
+cic
+cBO
+cjN
+cgR
+ceu
+clQ
+cgR
+cgx
+coM
+cpv
+cqb
+cqb
+cqb
+cqb
+cEs
+cqb
+cqb
+cAp
+cqb
+cAo
+cGt
+cgx
+ccw
+ccw
+ccw
+ccw
+ccw
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(108,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aai
+aai
+aai
+aai
+aai
+aai
+aai
+abj
+abG
+acd
+acd
+acd
+acd
+aeP
+afC
+agk
+agF
+agP
+agP
+agP
+agP
+aiz
+ajg
+akl
+akR
+alx
+alx
+amR
+anw
+anz
+aov
+aph
+aoc
+ata
+arY
+ata
+auh
+aph
+awg
+axA
+ayT
+azR
+azW
+azW
+aBt
+azW
+aio
+aBt
+aaa
+aJn
+aJq
+aJq
+aOE
+aPT
+aRj
+aSv
+aTV
+aVi
+aWP
+aYu
+aYt
+bbk
+bbk
+bbk
+bbk
+bfs
+aZM
+aZM
+aZM
+aaf
+aaf
+aaa
+aaf
+aaa
+aaf
+aaa
+aaa
+aaa
+aJn
+aXf
+aJq
+byV
+bCs
+bAM
+bFa
+bGy
+bFc
+bJm
+bFa
+bHO
+bCs
+cCd
+cCd
+aYg
+cjL
+cCc
+bNI
+bEP
+bVJ
+bVJ
+bOM
+bQd
+bQP
+bSt
+bUc
+bVb
+bWv
+cei
+bVJ
+caB
+ccw
+cif
+cgR
+cjP
+ckF
+ceZ
+ckF
+ckF
+cgK
+cDg
+cDp
+cqe
+cqB
+cqB
+cEe
+csP
+cAl
+cFc
+cAq
+cFJ
+cDq
+cGu
+cGH
+cGR
+cHa
+cEj
+ciZ
+ccw
+aaa
+abY
+cEX
+abY
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(109,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaa
+aaf
+aai
+abi
+abF
+ach
+acK
+adf
+acd
+aer
+afB
+agi
+agD
+agO
+agO
+agO
+agO
+aiy
+ajb
+ajF
+akN
+alw
+ami
+amR
+anw
+anz
+aov
+api
+ata
+arb
+arX
+atc
+aug
+aph
+awg
+axA
+azW
+ayU
+azW
+aCj
+ayW
+ayW
+ayW
+ayW
+aJn
+aJn
+aJq
+aJq
+aOE
+aPS
+aRi
+aSu
+aTU
+cpC
+aWO
+aYt
+aYx
+bbj
+bce
+bdf
+beb
+aYv
+aaf
+aaf
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aoV
+aaa
+aJn
+aXf
+aJq
+byU
+bCs
+bAL
+bFa
+bGx
+bET
+bJl
+bHh
+bHN
+bCs
+cjo
+cCd
+bSx
+cjL
+cCb
+bNI
+bEP
+bVL
+bVJ
+bVJ
+bVJ
+bVJ
+bVJ
+bVJ
+bUC
+bWu
+bVJ
+bVJ
+caB
+ccw
+cie
+cdT
+cCY
+cnA
+cev
+cfg
+cgU
+cgJ
+chG
+cDq
+cqd
+cDC
+cqU
+cEf
+cEt
+cEM
+csA
+cEg
+cFK
+cGe
+cGv
+cGI
+cGS
+cHb
+cHg
+cHn
+ccw
+aaf
+aaT
+cEX
+aaT
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(110,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaR
+aaZ
+aaZ
+aaZ
+aaZ
+aaZ
+aaZ
+aaZ
+aaZ
+aaZ
+aaZ
+agn
+agR
+agn
+agR
+agn
+ajc
+ajI
+ako
+akQ
+agj
+agj
+amS
+any
+anz
+aov
+aph
+aqb
+are
+arZ
+ata
+aui
+aph
+awg
+axA
+ayX
+azY
+azW
+azW
+afP
+aFb
+aEZ
+cyg
+aJp
+aKE
+aMa
+aNw
+aOE
+aPU
+aRl
+aSx
+aTX
+aVi
+aWR
+aYv
+aZS
+aZR
+aZR
+bbm
+bec
+bfu
+bgO
+bgO
+bgO
+bmu
+bgO
+bgO
+bgO
+bgO
+bsb
+aaf
+aaf
+aaf
+aJn
+aXf
+aJq
+aJq
+bCs
+bFa
+bFa
+bFa
+bET
+bJn
+bHi
+bHQ
+bCs
+cjo
+bJu
+bSx
+cmX
+bSz
+bNI
+bUD
+bVM
+bVM
+bVM
+bVM
+bVM
+cat
+bCq
+bVd
+bWK
+bYp
+bCq
+cay
+ccw
+cih
+cje
+cgR
+ckJ
+clJ
+cmL
+cgR
+ccw
+cDh
+cpy
+cDv
+cDD
+cqU
+ccw
+cEu
+cEu
+cEu
+ccw
+cFL
+cGf
+cGw
+cqY
+ciZ
+cHc
+cHh
+cHh
+ccw
+aaa
+abY
+cEX
+abY
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(111,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaf
+aaf
+aaT
+aaf
+aaZ
+abm
+cpg
+acv
+adi
+adi
+aaZ
+aeW
+agQ
+ahv
+ahQ
+aiI
+aiH
+ajB
+akm
+akP
+aly
+amj
+amR
+anw
+anz
+aov
+aph
+aph
+ard
+ard
+ard
+aph
+aph
+awj
+axA
+ayW
+ayW
+aBt
+aBt
+ayW
+ayW
+ayW
+ayW
+aJo
+aJq
+aLZ
+aNv
+aOE
+aPS
+aRk
+aSw
+aTW
+aVj
+aWQ
+aYv
+aZR
+aZR
+aZR
+aZR
+aZR
+bft
+bgN
+bgN
+bgN
+bmv
+bkI
+bnT
+bpg
+bqD
+bsa
+bgO
+buP
+bwm
+bxH
+byS
+aJq
+aMh
+bCs
+bCs
+bCs
+bCs
+bFe
+bCs
+bLD
+bCs
+bCs
+bNI
+bNI
+bKU
+cnB
+bNI
+bNI
+bCq
+bCq
+bCq
+bCq
+bCq
+bCq
+cas
+bCq
+bVc
+bWJ
+bYn
+bZB
+caC
+ccw
+cig
+cjd
+cgR
+ckI
+cig
+cmK
+cBO
+ccw
+chV
+cDq
+cqf
+cqD
+ccw
+crs
+cEv
+cEv
+cFe
+ccw
+cFM
+czE
+cGx
+ccw
+cGT
+cEj
+cEj
+ciZ
+ccw
+aaf
+aaT
+cEX
+abY
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(112,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaf
+aaf
+aaT
+aaa
+aaZ
+abH
+acl
+ajC
+acL
+adi
+aaZ
+agp
+agT
+ahx
+ahS
+aiK
+ajc
+ajI
+akl
+akT
+aww
+alx
+amR
+anw
+anz
+aov
+apk
+anw
+anw
+anw
+anw
+aVh
+avj
+awl
+axC
+ayY
+azZ
+azZ
+azZ
+azZ
+azZ
+aGt
+aHQ
+aJr
+aJq
+aMc
+aNy
+aOE
+aPS
+aRn
+aSz
+aTY
+aVl
+aWT
+aYx
+aZR
+bbm
+bbm
+bdh
+bee
+bfv
+bgN
+bih
+big
+bii
+bgN
+bnV
+bph
+bqF
+bsd
+btG
+buQ
+bwn
+bxI
+bwa
+bAg
+bBq
+bCu
+bAO
+bFd
+bFd
+bFj
+bJp
+bHk
+bHR
+bIe
+bFd
+bJz
+bRp
+cav
+bSA
+bTJ
+bSA
+bSA
+bWL
+bSA
+bSA
+bZx
+bSR
+bUl
+bVf
+bXm
+bYE
+bCq
+ceW
+ccw
+cij
+cjf
+cgR
+ckK
+clJ
+cmL
+cgR
+cgL
+chX
+cDq
+cqh
+cqF
+cra
+crI
+cEw
+cEw
+cEw
+cFw
+cFN
+csH
+csR
+cqY
+cGU
+cEj
+cEj
+cHo
+ccw
+aaa
+abY
+cEX
+abY
+aaa
+aaa
+aae
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(113,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaf
+aaf
+abY
+aaa
+aaZ
+abn
+ack
+adk
+adK
+cqG
+aeX
+ago
+agS
+ahw
+ahR
+aiJ
+ajc
+ajI
+akk
+akS
+alw
+amk
+amR
+anw
+anS
+aoy
+apj
+anz
+anz
+anz
+anz
+anz
+anz
+awk
+axB
+anz
+anz
+anz
+anz
+anz
+anz
+apj
+aHP
+aJq
+aJq
+aMb
+aNx
+aOE
+aPS
+aRm
+aSy
+aTX
+aVk
+aWS
+aYw
+aZT
+cBj
+bcf
+bdg
+bed
+bfv
+bgN
+big
+bgN
+bkZ
+bgN
+bnU
+bph
+bqE
+bsc
+btF
+bph
+bsc
+btF
+bvW
+bAf
+bBp
+aHP
+bAN
+bQg
+bQg
+bFh
+bGN
+bHj
+bNN
+bNN
+bNN
+bNN
+bNN
+cau
+cBH
+bMG
+bLZ
+bLZ
+bLZ
+bLZ
+bLZ
+bQQ
+bSw
+cbr
+bVe
+bXk
+bYq
+ccw
+ccw
+ccw
+cdk
+cja
+cgR
+ckK
+clJ
+cmL
+cnv
+clJ
+chX
+cDq
+cqg
+cqE
+cqZ
+crt
+czE
+cAm
+czE
+cqY
+cFO
+csC
+csQ
+cqY
+cGV
+cEj
+cGV
+ccw
+ccw
+aaa
+abY
+cEX
+abY
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(114,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaf
+aaf
+aaT
+aaa
+aaZ
+abJ
+ack
+acM
+adQ
+cwM
+aeZ
+agr
+agU
+ahy
+ahX
+aiL
+ajc
+ajI
+akq
+akQ
+agj
+agj
+amS
+anx
+anz
+aoz
+apm
+aqd
+anA
+asa
+atd
+anA
+avk
+awk
+axE
+ayZ
+aAa
+aBu
+aAa
+aAa
+aAa
+aGu
+aHR
+aJt
+aJq
+aMe
+aNA
+aOE
+aPV
+aRp
+aSB
+aTZ
+aVn
+aWV
+aYz
+aZR
+bbm
+bbm
+bdh
+bef
+bfv
+bgN
+bii
+big
+bih
+bgN
+bnV
+bph
+bqF
+bsf
+btG
+buS
+bwp
+bxK
+bwh
+bAh
+bBs
+bzG
+bAP
+bCp
+bDp
+bFq
+bGO
+bHl
+bHS
+bLI
+bLI
+bOR
+bQg
+bQg
+bQg
+bQg
+bQg
+bQg
+bQg
+bQg
+bYI
+bDG
+bHP
+cbt
+bVh
+bXo
+bYM
+cfb
+cfF
+cfb
+cfb
+cfb
+cfb
+cfb
+cig
+cmN
+cgR
+cgL
+chX
+cDq
+cqj
+cqF
+crb
+cru
+cEx
+cEx
+cEx
+cAP
+cFP
+csI
+cAt
+cqY
+cEj
+cEj
+cEj
+cHp
+ccw
+aaf
+abY
+cEX
+abY
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(115,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaf
+aaf
+aaT
+aaa
+aaZ
+abI
+ack
+coS
+aet
+cxA
+aeY
+agt
+agt
+ahz
+aie
+aiN
+ajc
+ajI
+akp
+akU
+alz
+aml
+amT
+anw
+anz
+aoz
+apl
+aqc
+aqc
+aqc
+aqc
+aqc
+aqc
+awm
+axD
+ahn
+ahn
+ahn
+ahn
+ahn
+ahn
+ahn
+ahn
+aJs
+aJq
+aMd
+aNz
+aOE
+aPS
+aRo
+aSA
+aTX
+aVm
+aWU
+aYy
+aZR
+aZR
+aZR
+aZR
+aZR
+bfw
+bgN
+bgN
+bgN
+bjy
+bmw
+bnW
+bpi
+bqG
+bse
+bij
+buR
+bwo
+bxJ
+bwb
+aJq
+bBr
+bCv
+bCv
+bCv
+bCv
+bCv
+bJq
+bKw
+bLH
+bRq
+bNO
+bOQ
+bQf
+bRq
+bRq
+bTK
+bUE
+bUE
+bWM
+bXJ
+bYH
+bYH
+bYH
+bYH
+bVg
+bXn
+bYG
+cfb
+cfE
+cgM
+cik
+cjg
+cjU
+ckL
+clM
+cfz
+cgR
+ccw
+cii
+cDq
+cqi
+ccw
+cAP
+crv
+cEy
+cEy
+cFh
+ccw
+cFQ
+czE
+cGx
+ccw
+cGT
+cEj
+cEj
+ciZ
+ccw
+aaf
+aaS
+cEX
+abY
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cBY
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(116,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aae
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaf
+aaf
+abY
+aaa
+aaZ
+abQ
+ack
+adj
+arc
+blT
+agq
+cml
+agV
+cxk
+aig
+aiM
+ajc
+ajI
+akp
+akV
+alB
+amn
+amV
+anw
+anz
+aoz
+aod
+aqf
+ahT
+ahT
+ahT
+ahT
+ahT
+awn
+axF
+anF
+anF
+anF
+anF
+anF
+anF
+anF
+aoa
+aJu
+aKF
+aMf
+aNB
+aOE
+aPW
+aRr
+aSD
+ceh
+aVp
+aWX
+aYB
+aZU
+aZR
+aZR
+bbm
+beh
+bfx
+bij
+bij
+bij
+bgR
+bij
+bij
+bij
+bij
+bsg
+aaf
+aaf
+aaf
+aJn
+aJq
+aJq
+bBu
+bCv
+bAT
+bDL
+bDq
+bCv
+bJs
+bKy
+bLK
+bLK
+bLK
+bOT
+bQi
+bRs
+bSC
+bLK
+bUG
+bVO
+bWO
+bXK
+bYH
+bZz
+caw
+bYH
+bVo
+bXq
+bZe
+cfb
+cfH
+cgO
+cim
+cgO
+ceo
+ceq
+cfa
+cmQ
+cgR
+ccw
+cDi
+cDr
+cDw
+cDE
+cEa
+ccw
+cEz
+cEz
+cEz
+ccw
+cFR
+cGf
+cGz
+cqY
+ciZ
+cHd
+cHj
+cHd
+ccw
+aaa
+abY
+cEX
+abY
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(117,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaf
+aaf
+abY
+aaa
+aaZ
+abN
+ack
+bkA
+acF
+aes
+avB
+amN
+agt
+awN
+aHp
+aIF
+ajc
+ajI
+akp
+akQ
+alA
+amm
+amU
+anw
+anT
+aoA
+apn
+aqe
+arf
+arf
+arf
+arf
+arf
+arf
+arf
+arf
+arf
+arf
+arf
+arf
+arf
+anF
+ahn
+aJn
+aJn
+aJq
+aJq
+aOE
+aPS
+aRq
+aSC
+aUa
+aVo
+aWW
+aYA
+aYz
+bbn
+bcg
+aZU
+beg
+aYB
+aaf
+aaf
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aoV
+aaa
+aJn
+aJq
+aJq
+bBt
+bCv
+bDH
+bFf
+bGB
+bCv
+bJs
+bKy
+bLJ
+bLJ
+bNP
+bOS
+bQh
+bRr
+bSB
+bTL
+bUF
+bVN
+bWN
+bLK
+bYJ
+bRi
+bZy
+cbu
+bVm
+bXp
+bYO
+cfc
+cgO
+ccj
+cBM
+cdU
+ceo
+ceq
+clQ
+cmQ
+cgR
+clJ
+chX
+cpD
+cDw
+cDF
+cEa
+cEg
+cEA
+cET
+cFj
+cEf
+cFS
+cGg
+cGA
+cGI
+cGS
+cHe
+cHe
+cHr
+ccw
+aaf
+aaT
+cEX
+aaT
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(118,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaf
+aaf
+aaT
+aaf
+aaZ
+aci
+acm
+cpA
+adg
+aeu
+alt
+agu
+agX
+ahB
+aij
+agn
+aje
+ajJ
+akr
+akX
+alC
+alC
+amX
+anz
+anz
+aoB
+aod
+aqe
+arf
+aqa
+atf
+arf
+aqa
+atf
+arf
+aqa
+atf
+arf
+aqa
+atf
+arf
+anF
+ahn
+aaa
+aJn
+aJq
+aJq
+aOE
+aPX
+aRs
+aSE
+aUc
+aVm
+aWY
+aYC
+aYA
+bbp
+bbp
+bbp
+bbp
+bfz
+aZV
+aZV
+aZV
+aaf
+aaf
+aaa
+aaf
+aaa
+aaf
+aaa
+aaa
+aaa
+aJn
+aJq
+aJq
+aXf
+bCv
+bDK
+bFi
+bGE
+bCv
+bJs
+bKy
+bLM
+bLM
+bNQ
+bOV
+bQk
+bRt
+bSD
+bTM
+bUH
+bVQ
+bWN
+bXM
+bYL
+cew
+bTh
+cdt
+bVq
+bXI
+bZg
+bZD
+cbq
+ccl
+cdm
+cio
+cjY
+ckP
+ckH
+cja
+cgR
+clJ
+cDj
+cDs
+cql
+cDG
+cDG
+cEh
+cEB
+cEU
+cFk
+cAs
+cFT
+cDq
+cGx
+cGK
+cGY
+cEk
+cEj
+cHs
+ccw
+aaf
+abY
+cEX
+abY
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(119,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaf
+aaf
+aaa
+adR
+abo
+aaZ
+aaZ
+aaZ
+acT
+adl
+aaZ
+aaZ
+agn
+agW
+ahE
+aii
+agn
+ajd
+ajI
+ahY
+akW
+aiG
+amo
+amW
+anz
+anz
+aoz
+aod
+aqe
+arf
+apY
+ate
+arf
+apY
+ath
+arf
+apY
+ath
+arf
+apY
+ate
+arf
+anF
+ahn
+aaa
+aJn
+aLY
+aLY
+aOG
+aPR
+aPR
+aPR
+aUb
+aVq
+aWM
+aYr
+aZV
+bbo
+bch
+bdi
+bei
+bfy
+bgS
+bik
+aZV
+aZV
+bmx
+bmx
+bmx
+bqH
+bsh
+bsh
+bsh
+bsh
+bqH
+aJq
+aJq
+aXf
+bCv
+bDJ
+bCt
+bGD
+bCv
+bJs
+bKy
+bLL
+bLL
+bNQ
+bOU
+bQj
+bOd
+bOd
+bRx
+bTP
+bVP
+bWP
+bXL
+bYK
+bRj
+bTg
+bUm
+bVp
+bXH
+bZf
+bZC
+cbp
+cck
+cin
+cjj
+cjX
+ckO
+clP
+cgR
+cny
+ccw
+cip
+cnx
+cDx
+cqb
+cqb
+cqb
+cEC
+cqb
+cqb
+cAr
+cqb
+cGh
+cGC
+cey
+ccw
+ccw
+cHl
+ccw
+ccw
+aaf
+abY
+aaT
+abY
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(120,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaa
+abp
+abP
+aco
+acO
+abl
+abO
+abO
+afc
+afQ
+agw
+agY
+ahA
+ahZ
+adR
+aiQ
+ajI
+akt
+akQ
+agj
+agj
+aiX
+anB
+anz
+aoD
+aod
+aqe
+arf
+aqn
+ath
+arf
+auw
+ath
+arf
+ayV
+ath
+arf
+aCd
+ath
+arf
+anF
+ahn
+aJw
+aJw
+aMh
+aJq
+aOE
+aJn
+aaa
+aPR
+aUe
+aVs
+aXa
+aYD
+aZX
+baf
+bdk
+bdk
+bek
+bfB
+bgU
+bdk
+bjF
+blc
+bmz
+bnY
+bpk
+bqJ
+bsj
+btI
+btd
+bwr
+bqH
+aMm
+aJq
+bBv
+cBy
+bDM
+bCw
+bDr
+bCy
+bGP
+bHn
+bLN
+bLN
+bNS
+bOX
+bQm
+bRv
+bOd
+bTN
+bTP
+bRA
+bWQ
+bWQ
+bYN
+bRm
+bTj
+caA
+cer
+ccs
+bZu
+cfb
+cfb
+cgS
+ciq
+cfb
+cfb
+ckR
+clR
+cgR
+cgR
+clJ
+cir
+cDt
+cDy
+cqC
+crc
+cEi
+cED
+crc
+crc
+cFy
+cBR
+cGi
+cGD
+cGL
+aag
+aag
+aaf
+aaf
+aaf
+aaf
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(121,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+abo
+abO
+abO
+abO
+abO
+abO
+abO
+afb
+abo
+afg
+ahb
+ahG
+aik
+cBV
+ajf
+ajK
+aks
+akY
+alx
+amp
+aiX
+anA
+anz
+aoC
+aod
+aqe
+arf
+asd
+atg
+arf
+asd
+awo
+arf
+asd
+aAb
+arf
+asd
+aDK
+arf
+aoa
+ahn
+aJv
+aKG
+aMg
+bHt
+aOE
+aJn
+aaa
+aPR
+aUd
+aVr
+aWZ
+aYq
+aZW
+aZG
+bej
+bej
+bdj
+bfA
+bgT
+bil
+bej
+blb
+bmy
+bnX
+bpj
+bqI
+bsi
+btH
+btc
+bwq
+bqH
+aJq
+aJq
+aXf
+bCv
+bAU
+cAL
+bFg
+bFs
+bJt
+bKy
+bLK
+bMK
+bNR
+bOW
+bQl
+bRu
+bSE
+bRx
+bUI
+bVR
+bWQ
+bOO
+bQe
+bRk
+bTi
+caA
+bVr
+bXN
+bZt
+bZE
+cbs
+cCT
+cdn
+cej
+cep
+ces
+clN
+ccm
+ckF
+cDe
+cDk
+coc
+cqa
+cig
+ccw
+ccw
+czF
+cEj
+cEj
+cFz
+cFU
+cGj
+cGE
+cGM
+cGZ
+aag
+aaa
+aaf
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(122,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+abp
+abO
+acq
+acq
+acq
+acq
+aew
+afe
+afS
+agy
+aha
+ahC
+aia
+aiP
+aiR
+ajB
+akv
+ala
+akz
+alf
+aiX
+anA
+anz
+aoF
+apo
+aqh
+arh
+asg
+atj
+aul
+auR
+atj
+aul
+azc
+atj
+aAX
+azc
+atj
+aFe
+aul
+aHT
+aJy
+aJy
+aMj
+aJq
+aOE
+aJn
+aaa
+aPR
+aPR
+aPR
+aXc
+aPR
+aZV
+baq
+baQ
+baQ
+bcQ
+bfC
+bgV
+bim
+bjG
+aZV
+bmB
+bnZ
+bpl
+bqH
+bsl
+btK
+buW
+bwt
+bqH
+aLY
+aLY
+bBx
+bCv
+apG
+bFk
+bDs
+bCv
+bJs
+bHo
+bLK
+bMK
+bMK
+bOY
+bQn
+bRx
+bMK
+bMK
+bUJ
+bVS
+bWQ
+bXP
+cBI
+bRS
+bTH
+caA
+bWh
+cdt
+bZA
+cfh
+cfM
+cco
+cdp
+cel
+cyM
+ckT
+cgU
+cco
+cgU
+cgU
+cis
+cjN
+cDz
+cDH
+clJ
+cEj
+crM
+crV
+crV
+cFA
+cEj
+cGk
+ccw
+aag
+aag
+aag
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(123,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaf
+aaf
+abo
+abO
+acp
+acP
+acP
+acP
+aev
+afd
+afR
+agx
+agZ
+ahI
+aim
+adR
+aiG
+ajL
+aku
+akZ
+alE
+amq
+aiX
+anA
+anz
+aoE
+aod
+aqg
+arg
+asf
+ati
+auk
+aux
+avt
+axL
+bbl
+azT
+auk
+auk
+aDG
+aFd
+auk
+aHH
+aJg
+aKo
+aLO
+aJq
+aOE
+aJn
+aaa
+aaa
+aPR
+aVt
+aXb
+aYo
+aZV
+bao
+baP
+bbZ
+bcP
+cBo
+bbw
+bbw
+bbw
+aZV
+bmA
+bmx
+bmx
+bqH
+bsk
+btJ
+buV
+bws
+bqH
+aJq
+aJq
+byW
+bCv
+bAV
+bCv
+bCv
+bCv
+bJs
+bKz
+bLK
+bML
+bNT
+bOV
+bQj
+bRw
+bSF
+bOd
+bTP
+bRA
+bWQ
+bXO
+bQq
+bRo
+bTG
+caA
+bVK
+bYb
+bZw
+cap
+ctR
+ccn
+cdo
+cek
+ccw
+cet
+cfd
+cfB
+cfI
+cgQ
+cjS
+cjN
+cqm
+cgR
+crd
+cEk
+crL
+cEW
+cse
+cse
+csu
+cGl
+ccw
+aaa
+aaa
+aaf
+aaa
+aaf
+cEX
+abY
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(124,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+abp
+abR
+abP
+abP
+abP
+abP
+abp
+abp
+abp
+agA
+afU
+ahF
+aip
+adR
+aiX
+ajN
+akx
+aiX
+aiX
+aiX
+aiX
+anC
+anU
+anC
+aod
+aqe
+arf
+arf
+arf
+arf
+auU
+avG
+awr
+awr
+azV
+aAh
+aAh
+aFg
+aFh
+aAh
+aAh
+aAh
+aAh
+aLR
+aJq
+aOE
+aJn
+aaa
+aaa
+aTQ
+aVd
+aXe
+aYp
+aZV
+bbv
+bcm
+bcm
+bem
+bfD
+bgW
+bfD
+bjI
+aZV
+bmC
+boa
+bpm
+bqH
+bsn
+btL
+buY
+buY
+bqH
+aJq
+aJq
+aXf
+bCv
+bDP
+bCv
+bAw
+bHV
+bJw
+bKC
+bLK
+bMN
+bNV
+bOV
+bQo
+bRz
+bSH
+bOd
+bTP
+bRA
+bWQ
+bWQ
+bWQ
+bWQ
+caD
+bWQ
+ccw
+ccw
+cey
+ccw
+ccw
+ccw
+ccw
+ccw
+ccw
+ccw
+ccw
+ccw
+ccw
+ccw
+cDl
+cjN
+cjh
+cDI
+ccw
+ccw
+ccw
+ccw
+ccw
+cqY
+cqY
+cqY
+ccw
+aaf
+aaf
+aaf
+aaf
+aaf
+cEX
+abY
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(125,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaf
+aaf
+aaf
+abq
+abq
+abq
+abr
+abr
+abq
+abq
+aff
+afT
+agz
+ahb
+ahF
+clI
+abp
+ajh
+ajM
+akw
+alb
+alG
+amr
+amY
+amY
+ajp
+aoG
+aod
+aqe
+arf
+aqo
+asp
+arf
+auS
+avv
+awu
+awr
+aAd
+aAh
+aCm
+aDL
+aFf
+aGk
+aHU
+aJz
+aAh
+aLQ
+aJq
+aOE
+aJn
+aaa
+aaa
+aJw
+aVu
+aXd
+aYE
+aZV
+bbu
+bbw
+bbw
+bbw
+bbw
+bbw
+bbw
+bjH
+aZV
+bmx
+bmx
+bmx
+bqH
+bsm
+btL
+buX
+buX
+bqH
+aJq
+aJq
+bBy
+bzs
+bDO
+bFl
+bGH
+bHU
+bJv
+bKB
+bLK
+bMM
+bOd
+bOV
+bQj
+bRy
+bSG
+bOd
+bUK
+bVT
+bWR
+bXQ
+bOd
+bZF
+bPc
+bOd
+ccv
+cdw
+cex
+bOd
+cfN
+cfN
+bLK
+apQ
+bOh
+bOh
+bOh
+bOh
+bOh
+ccw
+cDm
+cjP
+ckF
+cDJ
+ckF
+cpE
+cjR
+crW
+csg
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cEX
+cEX
+cEX
+abY
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(126,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+abq
+abT
+acs
+acR
+ado
+adN
+aex
+afh
+afV
+agB
+ahd
+ahI
+clS
+abp
+ajj
+ajP
+aky
+alc
+alI
+ams
+amZ
+amZ
+anW
+aoH
+aod
+aqe
+arf
+asm
+blU
+atQ
+avg
+awp
+axN
+awr
+aAg
+aAh
+aDO
+aDQ
+aFi
+aGl
+aBy
+aBy
+aAh
+aMn
+aJq
+aOE
+aJn
+aaa
+aaa
+aJn
+aVv
+aXg
+aYF
+aZV
+bbw
+bcn
+bbw
+ben
+bfE
+bgX
+bbw
+bjJ
+bld
+bmD
+bmD
+bmD
+bqK
+bso
+btN
+buZ
+buZ
+bqH
+byN
+aJq
+bBA
+bCz
+bDQ
+bFn
+bGJ
+bHX
+bJy
+bKE
+bLP
+bMP
+bIG
+bJB
+bKV
+bRB
+bSI
+bSI
+bUM
+bVV
+bWS
+bSI
+bSI
+bZG
+caE
+cbA
+ccy
+bOd
+bOd
+bQu
+cfO
+cgW
+cit
+cph
+ckb
+ckV
+clU
+clU
+bOh
+ccw
+coZ
+cgU
+cgU
+cDK
+crw
+cjO
+ccw
+crX
+cfK
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abY
+abY
+abY
+abY
+aaa
+aaa
+aae
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(127,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaf
+aaf
+aaf
+abr
+abS
+acr
+acQ
+adn
+adM
+abq
+afg
+afU
+afU
+ahc
+ahH
+aiq
+abp
+aji
+ajO
+akw
+ajn
+alH
+amr
+amY
+amY
+anV
+ajo
+aod
+aqe
+arf
+ari
+asu
+aun
+auW
+avR
+axM
+awu
+aAf
+aAh
+aCn
+aDM
+aGx
+aAh
+aAh
+aBy
+aAh
+aMm
+aJq
+aOE
+aJn
+aJn
+aJn
+aJn
+aJs
+aXf
+aYk
+aZV
+aZV
+aZV
+aZV
+aZV
+aZV
+aZV
+aZV
+aZV
+aZV
+bmx
+bmx
+bmx
+bqH
+bqH
+btM
+bqH
+bqH
+bqH
+aJq
+bHt
+bBz
+bzs
+bzs
+bFm
+bGI
+bHW
+cBD
+bKD
+bLO
+bMO
+bIF
+bOZ
+bQp
+bRA
+bOd
+bTO
+bUL
+bVU
+bMK
+bXR
+bYQ
+bXR
+bMK
+cbz
+ccx
+cbA
+cbA
+cfi
+bRH
+cgV
+bMQ
+apQ
+bQA
+ckU
+clT
+cmU
+bOh
+ccw
+cpa
+cjc
+cqo
+cDL
+cjk
+cjm
+ccw
+ccw
+cig
+aag
+aag
+aag
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(128,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aae
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+abr
+abV
+acu
+acS
+adp
+adP
+aey
+afj
+afX
+agC
+ahf
+ahK
+ait
+abp
+ajl
+ajR
+akw
+ald
+alJ
+amt
+ajp
+ajp
+anY
+ajo
+apq
+aqe
+arf
+arf
+arf
+arf
+avm
+aws
+axP
+azb
+aAi
+aAh
+aCn
+aDM
+aGx
+aGm
+aHV
+aBy
+aAh
+aJq
+aJq
+aJq
+aJr
+aJr
+aJr
+aJr
+aJr
+aXh
+aYG
+aZY
+aYG
+aYG
+bdn
+bep
+aYG
+aYG
+aYG
+aYG
+ble
+bmE
+bmE
+bpn
+bqL
+bsp
+btO
+bva
+bwu
+bwu
+bwu
+bwu
+bBB
+aJv
+bzs
+bFp
+bGJ
+bHZ
+bJA
+bKG
+bLK
+bMR
+bIH
+bJF
+bQr
+bRA
+bOd
+bTP
+bOd
+bVX
+bMK
+bMK
+bYR
+bMK
+bMK
+cbC
+bRA
+bTO
+cez
+cez
+cfQ
+cgY
+ciu
+bVu
+ckb
+ckW
+clU
+clU
+bOh
+ccw
+ccw
+cpI
+ccw
+cDL
+cjl
+cjQ
+cjV
+cig
+aaf
+aaf
+aaf
+aaf
+aag
+aaa
+aaa
+aae
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(129,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+abr
+abU
+act
+acu
+acu
+ato
+abq
+afi
+afW
+afW
+ahe
+ahJ
+ais
+abp
+ajk
+ajQ
+akw
+ajn
+alH
+amr
+amY
+amY
+anX
+ajo
+app
+aqi
+arf
+ask
+atm
+arf
+avl
+awq
+axO
+aza
+aAh
+aAh
+aAh
+aDS
+aGx
+aAh
+aAh
+aDN
+aAh
+aMo
+aNC
+aJq
+aJq
+aJq
+aJq
+aJq
+aJq
+aJq
+aJq
+aLY
+aJq
+bco
+aJq
+beo
+aJq
+aJq
+aJq
+aJq
+aJq
+aJq
+aJq
+aJq
+aLY
+aJq
+bAk
+aJq
+aJq
+aJq
+aJq
+bAj
+aJq
+aKG
+bzs
+bFo
+bDu
+bFt
+bGQ
+bHp
+bLK
+bMQ
+bNY
+bPa
+bMQ
+bRC
+bMQ
+bTP
+bUN
+bVW
+bMK
+bXS
+bXS
+bXS
+bMK
+cbB
+alk
+alX
+aoZ
+bQt
+apa
+cgX
+apF
+apI
+bOh
+bOh
+bOh
+bOh
+bOh
+cig
+cpb
+ciZ
+cqp
+cDN
+cjT
+cgR
+crP
+cig
+aaa
+aaa
+aaa
+aaf
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(130,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+abq
+abW
+abk
+acj
+acn
+adh
+adm
+afk
+afZ
+agE
+ahh
+ahM
+aiv
+abp
+aiY
+ajE
+ajH
+akn
+ale
+alD
+ana
+ana
+amu
+ajo
+aps
+aqk
+arf
+asm
+aHw
+aup
+avn
+awv
+axX
+aze
+aAh
+aBz
+aBz
+aDU
+aGx
+aGn
+aHW
+aBy
+aAh
+aJq
+aJq
+aJq
+aJq
+aRt
+aJq
+aJq
+aJq
+aJq
+aJq
+aLY
+aJq
+bcp
+aJq
+beq
+aJq
+bgY
+aJq
+aJq
+aJq
+bAi
+bmS
+bmS
+bpC
+bqN
+aNr
+aJq
+aJq
+bxL
+byX
+aJq
+aJq
+bCA
+bzs
+bCC
+bDA
+bFx
+bGW
+bKI
+bLQ
+bMT
+bOb
+bPd
+cBF
+bRD
+bSK
+bTR
+bUP
+bVZ
+bWT
+bWa
+bYS
+bZH
+caF
+bQt
+cBJ
+cdy
+bOd
+bRy
+cfR
+cha
+civ
+cph
+ckb
+ckY
+clW
+clW
+bOh
+cig
+cig
+czg
+cig
+cDN
+crh
+crA
+crR
+crY
+csi
+aaa
+aaa
+aaf
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(131,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+abq
+abq
+abq
+abq
+abq
+abq
+abq
+afg
+afY
+afY
+ahg
+ahL
+aiu
+abp
+ajm
+ajS
+ajn
+ajT
+akA
+amr
+amY
+amY
+anV
+ajo
+apr
+aqj
+arf
+ark
+asL
+aun
+avu
+awt
+axV
+azd
+azX
+aAZ
+aCe
+aDT
+aGx
+aAh
+aAh
+aBy
+aAh
+aCr
+aCr
+aCr
+aJC
+bYP
+aQg
+aJC
+aQg
+aJC
+aQg
+aJC
+aJC
+aHP
+aHP
+aHP
+bfF
+bfF
+bfF
+bfF
+bfF
+bfF
+bfF
+bfF
+bfF
+bqM
+brV
+bof
+bwv
+bvj
+bvj
+bvj
+bvj
+bvj
+bvj
+bCB
+bCP
+bvj
+bvd
+bKH
+bLK
+bMS
+bOa
+bPc
+bQs
+bMZ
+bSJ
+bTQ
+bUO
+bVY
+bOd
+bOd
+bOd
+bOd
+bOd
+cbD
+bTO
+cdx
+bOd
+bOd
+cfP
+cgZ
+bMQ
+apQ
+bQA
+ckX
+clV
+cmV
+bOh
+cig
+cpc
+cpJ
+cpc
+cDN
+cqY
+cqY
+cqY
+cig
+aaa
+csl
+aaa
+aaf
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(132,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+abo
+aeB
+afm
+agb
+agG
+ahi
+ahN
+aix
+abp
+ajp
+ajU
+ajn
+ajn
+ajn
+amr
+ajp
+ajp
+ajp
+ajo
+apt
+aqm
+arj
+arj
+arj
+arj
+avx
+awz
+axR
+avx
+aAh
+aBA
+aBA
+aDP
+aBx
+aGp
+aHX
+aBy
+aAh
+aMq
+adq
+aQb
+aPZ
+aRu
+aQc
+aUf
+aQc
+aXi
+aQc
+baa
+aJC
+bcq
+bcq
+bcq
+bfF
+bha
+bio
+bgF
+blf
+bmF
+bob
+bnB
+bfF
+bqR
+brX
+bof
+bwx
+bvj
+bwB
+bxa
+byZ
+bzI
+bAX
+bCF
+bDB
+bFB
+bvd
+bKJ
+bLR
+bMV
+bOd
+bMZ
+bQv
+bRF
+bSM
+bTS
+bUQ
+agd
+bUO
+bVZ
+bVZ
+bZI
+caH
+cbF
+ccz
+cdA
+cez
+bOe
+cfQ
+chb
+ciu
+bVu
+ckb
+ckZ
+clW
+clW
+bOh
+cig
+cpd
+czM
+cpd
+cDN
+aaa
+aaa
+aaa
+aaf
+aaf
+cso
+aaf
+aaf
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(133,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaf
+abo
+aeA
+afl
+aga
+abp
+ahj
+abp
+cAN
+abp
+ajo
+ajo
+ajo
+ajo
+ajo
+ajo
+ajo
+ajo
+aoa
+ajo
+apt
+aql
+apv
+arl
+asM
+atV
+avw
+awy
+axQ
+azj
+arj
+aAh
+aAh
+aAh
+aAh
+aAh
+aAh
+aAh
+aAh
+aMp
+aMr
+aOH
+aPY
+aQc
+aRx
+aQc
+aQc
+aPY
+aQc
+aZZ
+aJC
+aYV
+aYV
+aYV
+bfF
+bgZ
+bin
+bin
+bjK
+bkK
+bkK
+bkK
+bpD
+bqO
+bLX
+btf
+bui
+bvi
+bww
+bwZ
+byY
+bzH
+bAW
+bCE
+bFv
+bFz
+bvd
+bKH
+bLK
+bMU
+bOc
+bPe
+bQu
+bRE
+bSL
+bPe
+bOd
+cCB
+cCC
+bXT
+bXT
+bXT
+caG
+cbE
+bTU
+cdz
+cez
+bUL
+cfS
+bOd
+bMQ
+apQ
+bOh
+bOh
+bOh
+bOh
+bOh
+ccw
+cpd
+czL
+cpd
+cDL
+aaf
+aaa
+aaa
+aaf
+aaa
+csn
+aaa
+aaf
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(134,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+acw
+abp
+abp
+adR
+abp
+cxG
+abp
+adR
+ahl
+ahO
+aic
+ahT
+ahT
+ahT
+ahT
+ahT
+ahT
+ahT
+alL
+ahT
+anb
+ahT
+anZ
+apu
+ahn
+asb
+asV
+aus
+aus
+awA
+axT
+azl
+aAl
+arj
+aCq
+aDR
+aFl
+aGD
+aHZ
+aCr
+aKJ
+aMr
+aMr
+aOH
+aQc
+aQd
+aQa
+aRv
+aPY
+aVw
+aPY
+bac
+aJC
+aYV
+aYV
+aYV
+bfF
+bhc
+bip
+bgP
+bjL
+bkL
+bmT
+bnD
+bpM
+bqT
+bFD
+bJG
+bJG
+bvl
+bwE
+bxc
+bzb
+bzK
+bBb
+cpG
+bDC
+bId
+bvd
+bKH
+bLK
+bMX
+bOd
+bPg
+bQx
+bRH
+bSO
+bTU
+bUS
+bUS
+cCD
+bXU
+bUS
+bUS
+bUS
+bXU
+bRF
+bMW
+cez
+cez
+cfQ
+chd
+ciw
+cpP
+ckc
+clb
+clY
+clZ
+bOh
+aaa
+cpd
+cpM
+cpd
+cDS
+aaf
+aaa
+aaa
+aaf
+aaa
+csn
+aaa
+aaf
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(135,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aag
+acU
+adr
+acU
+aeC
+afn
+agc
+abp
+ahk
+aoJ
+aib
+aif
+aif
+aif
+aif
+aif
+aif
+aif
+alK
+alM
+bkV
+anc
+anD
+aoI
+apX
+arn
+asN
+aur
+avy
+avy
+axS
+azk
+aAk
+arj
+aCf
+aDY
+aFj
+aGr
+aHI
+aJk
+aMr
+aMr
+aNt
+aOH
+aQc
+aQc
+aSq
+aQc
+aQc
+aPY
+aQc
+bab
+aJC
+aYV
+aYV
+ber
+bfF
+bhb
+bip
+bjO
+bip
+bmG
+bip
+bnC
+bpF
+bqS
+brY
+bwz
+bwy
+bvj
+bza
+bxb
+bvh
+bCD
+bAY
+bCH
+bDR
+bIc
+bvd
+bKH
+bLK
+bMW
+bOe
+bPf
+bQw
+bRG
+bSN
+bTT
+bUR
+bWb
+cCE
+bTT
+bUR
+bZJ
+bUR
+bTT
+bUR
+cdB
+bUR
+bUR
+cfT
+chc
+bMQ
+apQ
+bQA
+cla
+cBP
+cmW
+bOh
+aaa
+aaa
+czN
+aaa
+cDS
+aaf
+aaa
+aaa
+aaf
+aaa
+csn
+aaa
+aaf
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(136,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aag
+aag
+aag
+aaa
+aaa
+aag
+abp
+abp
+abp
+abp
+afo
+abp
+abp
+ahn
+ahn
+aiA
+aiA
+aiA
+ahn
+aiA
+aiA
+aiA
+ahn
+and
+anF
+aod
+ahn
+apx
+ahn
+arj
+asr
+asN
+aut
+avz
+aXF
+axU
+azn
+aAn
+arj
+aCh
+aEc
+aFk
+aGw
+aHK
+aCr
+aKr
+aMr
+bHF
+aOH
+aQc
+aQc
+aSo
+clX
+aVx
+aQc
+aQc
+aQc
+bbx
+aYV
+aYV
+aYV
+bfF
+bhd
+bis
+bjR
+bis
+bmI
+bod
+bpt
+bfF
+bqV
+bEe
+bBL
+bwA
+bvj
+bAl
+bAl
+bvh
+bzS
+bBc
+bCJ
+buk
+cCp
+bvd
+bKH
+bLK
+bMZ
+bOg
+bPi
+bQz
+bRJ
+bSO
+bTV
+bUT
+bWc
+bWU
+bXV
+bYT
+bZK
+bOd
+cbG
+ccA
+cdC
+ceB
+cez
+cez
+chf
+cix
+cpP
+ckd
+clc
+clZ
+clZ
+bOh
+aaa
+aaa
+aaa
+aaa
+cDS
+aaf
+aaa
+aaa
+aaf
+aaf
+cso
+aaf
+aaf
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(137,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaf
+aaf
+aaf
+aaf
+abp
+aeD
+afp
+aeD
+abp
+aaa
+aaa
+aaa
+aaf
+aaf
+aaf
+aaa
+aaf
+aaf
+ahn
+ahn
+anE
+aod
+aoK
+apw
+aqp
+arj
+asq
+asN
+aut
+avz
+avz
+axU
+azm
+aAm
+arj
+aCr
+aEb
+aCr
+aGv
+aCr
+aCr
+aKq
+aLS
+aNF
+aOH
+aQc
+aQc
+aSH
+aQc
+aQc
+aRx
+aQc
+aQc
+aQg
+aYV
+aYV
+bes
+bfF
+bfF
+bir
+bjQ
+blh
+bfF
+bfF
+bfF
+bfF
+bqU
+bsq
+bvj
+bvj
+bvj
+bvj
+bvj
+bvj
+bvj
+bvd
+bFu
+bvj
+bvj
+bvd
+bKH
+bLK
+bMY
+bOf
+bPh
+bQy
+bRI
+bSP
+bPh
+bQy
+bRI
+cCF
+bPh
+bQy
+bRI
+bQy
+bPh
+bQy
+bRI
+ceA
+bLK
+bLK
+che
+bLK
+apQ
+bOh
+bOh
+bOh
+bOh
+bOh
+aaa
+aaa
+aaa
+aaa
+cDS
+aaf
+aaa
+aaa
+aaf
+aaa
+csn
+aaa
+aaf
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(138,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+adR
+aeE
+afr
+aeE
+adR
+aaa
+aaa
+aaa
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaf
+ahn
+anG
+aoe
+aoL
+apy
+aqq
+arj
+ast
+asN
+auv
+avA
+avA
+axW
+azo
+aAp
+aBC
+aCt
+aEA
+aCt
+aGz
+aIb
+aCr
+aKN
+aMv
+aNH
+aOJ
+aQc
+aPY
+aSG
+aPY
+aUg
+bFC
+aRw
+aQc
+bbx
+aYV
+aYV
+bet
+bfH
+bhf
+bhh
+bhh
+bhh
+bmJ
+bof
+bpu
+bqP
+bsy
+bEe
+bvh
+bwC
+bxN
+bze
+bAp
+bvh
+bCG
+bBd
+bFw
+bDD
+bFJ
+bvd
+bKH
+bzs
+bRK
+apQ
+bRK
+apQ
+bVv
+apQ
+bRK
+apQ
+bVv
+cCG
+cCH
+cCI
+cCJ
+cCI
+cCH
+cCI
+cCJ
+cCI
+cCP
+bLK
+chg
+bLK
+apQ
+aoV
+aoV
+apQ
+apQ
+apQ
+aoV
+aoV
+aoV
+aoV
+cCQ
+aoV
+aaa
+aaa
+aaf
+aaa
+csn
+aaa
+aaf
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(139,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aeE
+afq
+aeE
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ahn
+anE
+ahn
+ahn
+ahn
+ahn
+arj
+ass
+asX
+auu
+att
+att
+att
+azf
+aAo
+aBB
+aBB
+aBB
+aBB
+aGy
+aIa
+aBB
+aKM
+aMu
+aNG
+aKM
+aKM
+aKM
+aSp
+aQc
+aQc
+aSq
+aQc
+bad
+bby
+aYV
+aYV
+bet
+bfG
+bhe
+bit
+bjS
+bli
+bli
+boe
+bli
+bpN
+bqX
+bEe
+btg
+bDR
+bDR
+bDR
+bDR
+bzc
+bDR
+bDZ
+bCK
+bFy
+bFF
+bvd
+bKH
+bzs
+bNa
+bOh
+bPj
+bQA
+bPj
+bOh
+bPj
+bQA
+bPj
+bOh
+bPj
+bQA
+bPj
+bOh
+bPj
+bQA
+bPj
+bOh
+cCQ
+bLK
+cyG
+bLK
+aoV
+aoV
+aoV
+apQ
+apQ
+aoV
+aoV
+aoV
+aoV
+aoV
+cCQ
+aoV
+aaa
+aaa
+aaf
+aaa
+csn
+aaa
+aaf
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(140,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aeE
+afs
+aeE
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aag
+aag
+aaa
+aaa
+aaf
+arj
+arj
+asZ
+aua
+aua
+awB
+axY
+azh
+arj
+arj
+apQ
+aoV
+alP
+aGI
+aId
+aJD
+aKP
+aMx
+aNJ
+aQe
+aOL
+aOL
+aOL
+aOL
+aOL
+aOL
+aXO
+aZb
+aJC
+aYV
+aYV
+bet
+bfG
+bhe
+bhh
+bjU
+blk
+blk
+boh
+biu
+bpO
+bqY
+bss
+btg
+buk
+bvm
+bDT
+buk
+bvh
+bzU
+bBe
+bCS
+bDE
+bFK
+bvd
+bKH
+bzs
+bNa
+bOh
+bPl
+bQB
+bRL
+bOh
+bTX
+bUV
+bWd
+bOh
+bXX
+bYV
+bZL
+bOh
+cbI
+ccC
+cdD
+bOh
+cCG
+cCS
+cCS
+cCI
+cCI
+cCI
+cCI
+cCI
+cCI
+cCI
+cCI
+cCI
+cCI
+cCI
+cDY
+apQ
+aaf
+aaf
+aaf
+aaf
+cso
+aaf
+aaf
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(141,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aqG
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aqr
+arm
+arm
+asY
+atZ
+auB
+auB
+atZ
+azg
+azp
+azp
+aCu
+apQ
+alP
+aGH
+aIc
+aJC
+aKO
+aMw
+aNI
+aMw
+aOK
+acN
+acN
+acN
+acN
+acN
+aQc
+bae
+aJC
+bcr
+aYV
+bet
+bfG
+bhe
+bhh
+bjV
+blj
+bmK
+bog
+bog
+bhh
+bsx
+bsr
+bvh
+bwD
+bDR
+bDR
+bAq
+bvj
+bCQ
+bDW
+bCP
+bvj
+bvj
+bJC
+bKH
+bzs
+bNa
+bOh
+bPk
+bPm
+bPm
+bOh
+bTW
+bUU
+bTW
+bOh
+bXW
+bYU
+bXW
+bOh
+cbH
+ccB
+cbH
+bOh
+apQ
+aoV
+aoV
+apQ
+aoV
+aoV
+aoV
+apQ
+aoV
+aoV
+aoV
+aoV
+aoV
+aoV
+apQ
+aoV
+aaa
+aaa
+aaf
+aaa
+csn
+aaa
+aaf
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(142,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aqs
+aro
+aro
+aro
+aro
+aro
+aro
+aro
+aro
+aro
+aro
+aCv
+aoV
+alP
+aGK
+aIe
+aJC
+aJC
+aJC
+aJC
+aJC
+aJC
+aXj
+aVy
+aSY
+aVy
+aVy
+aYI
+bah
+aJC
+aYV
+bdo
+beu
+bvk
+biu
+biu
+bjT
+blm
+bmL
+boi
+bpw
+bhh
+bsx
+btX
+bvj
+bwG
+bxR
+bxR
+bvj
+bvj
+bzW
+bDZ
+bCT
+bGR
+bIj
+bJC
+bKH
+bzs
+bNa
+bOh
+bPm
+bQC
+bPm
+bOh
+bTW
+bUW
+bTW
+bOh
+bXY
+bYW
+bXW
+bOh
+cbH
+ccD
+cbH
+bOh
+apQ
+apQ
+apQ
+apQ
+apQ
+aoV
+aoV
+apQ
+aoV
+aoV
+aoV
+aoV
+aoV
+csz
+apQ
+aoV
+aaa
+aaa
+aaf
+aaa
+csn
+aaa
+aaf
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(143,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aae
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aqs
+aro
+aro
+aro
+aro
+aro
+aro
+aro
+aro
+aro
+aro
+aCv
+apQ
+alP
+aGJ
+aIe
+aJE
+aKQ
+aLU
+aNu
+aJC
+aPw
+aQc
+aQc
+aSZ
+aQc
+aVy
+czP
+bag
+aJC
+aYV
+aYV
+bet
+bfJ
+bhh
+bhh
+bgQ
+bll
+bhh
+bhh
+bpv
+bhh
+bsx
+btV
+bvh
+bwF
+bxQ
+bxQ
+bAr
+bvj
+bzV
+bDZ
+bzf
+bDR
+bIi
+bJC
+bKH
+bzs
+bNa
+bOh
+bOh
+bOh
+bOh
+bOh
+bOh
+bOh
+bOh
+bOh
+bOh
+bOh
+bOh
+bOh
+bOh
+bOh
+bOh
+bOh
+apQ
+apQ
+ciC
+bVu
+bVu
+bVu
+bVu
+bVu
+caJ
+aoV
+aoV
+aoV
+aoV
+aoV
+apQ
+aoV
+aaa
+aaa
+aaf
+aaa
+csn
+aaa
+aaf
+aag
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+ctZ
+ctZ
+ctZ
+ctZ
+ctZ
+aaf
+aaa
+aaf
+cvF
+aaf
+aaa
+aaa
+aaf
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+cAU
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(144,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aqt
+aro
+aro
+aro
+aro
+aro
+aro
+aro
+aro
+aro
+aro
+aCv
+aoV
+alP
+aGA
+aHS
+aJx
+aJx
+aMi
+aNE
+aOO
+aQi
+aRz
+aSF
+aQc
+aQc
+aXl
+aQc
+bai
+aJC
+aYV
+aYV
+bet
+bfH
+bhh
+bhh
+bhg
+bln
+bmM
+boj
+bof
+bhh
+bsx
+btV
+bvj
+bwI
+bxT
+bxQ
+bAt
+bvj
+bCM
+bDZ
+bDR
+bDR
+bIl
+bJC
+bKH
+bzs
+bUr
+bVu
+bVu
+bVu
+bVu
+bVu
+bVu
+bVu
+bVu
+bVu
+bVu
+bVu
+bVu
+caJ
+apQ
+apQ
+apQ
+apQ
+apQ
+cfj
+cfU
+cfj
+cfj
+ckf
+cfj
+cfj
+bUr
+bVu
+bVu
+bVu
+bVu
+bVu
+apQ
+bVu
+csw
+csw
+csw
+csw
+csM
+csw
+csw
+ctd
+csw
+csw
+csw
+csw
+ctO
+ctZ
+ctZ
+cuo
+cuA
+cuM
+ctZ
+cvk
+cvk
+cvk
+cvk
+aaf
+aaf
+aaf
+aaf
+cvk
+cvk
+cvk
+cvk
+cvk
+cvk
+cvk
+cva
+cva
+cva
+cva
+cva
+cva
+cva
+cva
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(145,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aae
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aqs
+aro
+aro
+aro
+aro
+aro
+aro
+aro
+aro
+aro
+aro
+aCv
+apQ
+alP
+aGL
+aHM
+aJm
+aKz
+aKR
+aND
+aJC
+aPP
+aRg
+aQc
+aTa
+aQc
+aXk
+aQc
+aQc
+aJC
+aYV
+aYV
+bev
+bfK
+bhi
+bhi
+bhi
+bfK
+bfK
+bfK
+bof
+bhh
+bsx
+btV
+bvh
+bwH
+bxS
+bzh
+bAs
+bvj
+bCL
+bxO
+bDR
+bDR
+bIk
+bJC
+bKH
+bzs
+bzs
+bzs
+bPn
+bPn
+bPn
+bzs
+bzs
+bPn
+bPn
+bPn
+bzs
+bzs
+bPn
+caI
+bPn
+bzs
+bzs
+bzs
+cfj
+cfj
+cjp
+chh
+ciy
+cke
+clg
+cfj
+aoV
+aoV
+aoV
+aoV
+aoV
+aoV
+aoV
+aoV
+aaa
+aaa
+aaf
+aaa
+csn
+aag
+aag
+aag
+aag
+aaa
+aaa
+aaa
+ctN
+ctY
+cuh
+cun
+cuz
+cuL
+cuY
+cvj
+cvs
+cvD
+cvk
+cvk
+cvk
+cvk
+cvk
+cvk
+cvX
+cvX
+cvX
+cvX
+cwq
+cwq
+cva
+cva
+cva
+cva
+cva
+cva
+cva
+cva
+cva
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(146,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aqs
+aro
+aro
+aro
+aro
+aro
+aro
+aro
+aro
+aro
+aro
+aCv
+aoV
+alP
+aGL
+aIe
+aJC
+aKS
+aMC
+aJC
+aJC
+aJI
+aJI
+aSI
+aJI
+aVA
+aJI
+aYK
+aJI
+aJI
+bcs
+aYV
+aYV
+bfK
+bhk
+bix
+bjX
+blp
+bmO
+bhi
+bpy
+bwz
+brg
+btZ
+bvj
+bwI
+bxV
+bzj
+bAv
+bvj
+bCO
+bDR
+bDR
+bDR
+bIn
+bJC
+bKL
+bLT
+bLT
+bLT
+bLT
+bLT
+bLT
+bLT
+bLT
+bUY
+bWe
+bWe
+bWe
+bWe
+bWe
+cdE
+bAw
+bzs
+bAw
+caK
+cfj
+ciB
+ckh
+chj
+ciA
+cjr
+clh
+cfj
+aoV
+aoV
+aoV
+aoV
+aoV
+aoV
+aoV
+aoV
+aaa
+aaa
+aaf
+aaa
+csn
+csD
+cta
+csD
+cua
+aaa
+aaa
+aaa
+aaf
+ctZ
+cui
+cuq
+cuC
+cuO
+cuz
+cvm
+cvt
+cvt
+cvt
+cvL
+cvQ
+cvX
+cvX
+cvX
+cvX
+cva
+cva
+cva
+cva
+cva
+cva
+cva
+cva
+cvx
+cva
+cva
+cva
+cva
+cva
+cva
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(147,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aqu
+arm
+arm
+arm
+auy
+auB
+auB
+axZ
+azp
+azp
+azp
+aCw
+apQ
+alP
+aGL
+aIg
+aJH
+aKR
+aMB
+aJC
+aOP
+aJI
+aRA
+aVz
+aVz
+aVz
+aVz
+aYJ
+aJI
+bbz
+aYV
+aYV
+aYV
+bfK
+bhj
+biw
+bhs
+bjM
+bmN
+bok
+bpx
+bpP
+brf
+bhh
+bvh
+bwJ
+bxU
+bzi
+bAu
+bvj
+bCN
+bEa
+bFA
+bGS
+bIm
+bJD
+bKK
+bLS
+bNc
+bOj
+bNc
+bNc
+bNc
+bNc
+bTY
+bUX
+bzs
+bWV
+bzs
+bzs
+bZM
+cbJ
+ceC
+cfV
+cfW
+cfX
+chk
+chl
+ciz
+chi
+ciz
+cjq
+ckg
+cmb
+cpO
+cpQ
+cpQ
+cpQ
+cpQ
+czJ
+apQ
+aoV
+aaa
+aaa
+aaf
+aaa
+csn
+csD
+csX
+ctg
+cua
+cua
+cua
+cua
+cua
+ctZ
+ctZ
+cup
+cuB
+cuN
+cuZ
+cvj
+cvj
+cvj
+cvj
+cvj
+cvP
+cvj
+cvj
+cvj
+cvj
+cva
+cva
+cva
+cva
+cvp
+cwv
+cvr
+cvp
+cvl
+cvr
+cwv
+cvp
+cva
+cva
+cva
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(148,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaf
+arj
+arj
+arj
+auA
+avD
+awC
+ayb
+arj
+alP
+alP
+aoV
+aoV
+alP
+aGL
+aIi
+aJI
+aJI
+aJI
+aJI
+aJI
+aJI
+aRC
+aSK
+aVz
+aVz
+aVz
+aYL
+aJI
+bbz
+aYV
+bdq
+aYV
+bfK
+bhl
+biy
+bjY
+bjN
+bkO
+bmU
+bnH
+bqQ
+bsx
+bhh
+bvj
+bvj
+bxR
+bxR
+bvj
+bvj
+bCQ
+bEd
+bof
+bof
+bof
+bJE
+bof
+bof
+bNd
+bIJ
+bPo
+bQE
+bRM
+bOr
+bTZ
+bUX
+bzs
+bAw
+bBR
+bHZ
+bzs
+bzs
+bzs
+ccF
+cdG
+ceE
+cfl
+cfZ
+cki
+cld
+cjt
+cjr
+csq
+cmd
+cmd
+cmd
+cmd
+cmd
+bVw
+bVw
+bVw
+bVw
+aaa
+aaa
+aaf
+csD
+csO
+csD
+czk
+cti
+cua
+cua
+ctw
+ctH
+ctQ
+cuc
+cuj
+cuj
+cuE
+cuQ
+cuj
+cvk
+cvw
+cvw
+cvG
+cvM
+cvS
+cvZ
+cvG
+cvw
+cvw
+cvf
+cwh
+cwm
+cwr
+cvp
+cwx
+cwj
+cwu
+cAV
+cAZ
+cvl
+cvl
+cva
+cva
+cva
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(149,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+arj
+auz
+avC
+avC
+aya
+arj
+arA
+alP
+alP
+alP
+alP
+aGN
+aIh
+aJI
+aKT
+aMD
+aNM
+aOI
+aJI
+aRy
+aSJ
+aTM
+aVB
+aVz
+aVz
+baj
+bbz
+aYV
+bdp
+aYV
+bfK
+bfK
+bfK
+bfK
+bfK
+bfK
+bfK
+bnF
+bqQ
+bsx
+bhh
+bfJ
+bhh
+bhh
+bhh
+bhh
+bhh
+bzX
+bBm
+bof
+bGT
+bIo
+bof
+bIo
+bLU
+bNd
+bII
+bOr
+bQD
+bLY
+bMa
+bTZ
+bUX
+bzs
+bAw
+bXZ
+bHZ
+bZN
+caK
+bzs
+ccE
+cdF
+ceD
+cfk
+cfY
+cjr
+ckj
+cjs
+cle
+cli
+cmc
+cmY
+cmc
+cop
+cmd
+cmd
+cqs
+aaa
+bVw
+aaa
+aaa
+aaf
+csD
+csN
+csV
+ctb
+cth
+cua
+ctr
+ctu
+ctG
+ctP
+cub
+cuj
+cur
+cuD
+cuP
+cvc
+cvk
+cvu
+cvu
+cvu
+cvu
+cvR
+cvY
+cwb
+cvu
+cvu
+cva
+cwg
+cwl
+cwr
+cvl
+cww
+cwD
+cvv
+cvv
+cAY
+cBb
+cBd
+cva
+cva
+cva
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(150,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaf
+arj
+auB
+auB
+arj
+arj
+arj
+anf
+anf
+anf
+awD
+alP
+aGB
+aIf
+aJA
+aKC
+aKC
+aKC
+aON
+aQk
+aRD
+aSM
+aVG
+aVE
+aXm
+aVz
+bak
+bbz
+aYV
+bdp
+aYV
+bfL
+bhn
+biz
+biz
+biz
+bmR
+bfL
+bol
+bqQ
+bsx
+bst
+bfJ
+bhh
+bhh
+bwK
+bhh
+bhh
+bhh
+btV
+bof
+bGV
+bIp
+bof
+bKM
+bLW
+bNd
+bOn
+bOr
+bOr
+bRO
+bSQ
+bTZ
+bUZ
+bPv
+bPv
+bPv
+bPv
+bPv
+caM
+cbL
+cbL
+cdI
+ceG
+cfj
+cgb
+chn
+ciE
+cjv
+clj
+ckk
+cmf
+cna
+cnC
+cor
+ciM
+cpN
+cqt
+aaa
+bVw
+aaa
+aaa
+aaf
+csD
+csU
+csW
+ctc
+ctc
+cto
+ctt
+cty
+ctJ
+ctT
+cue
+cul
+cuu
+cuG
+cuS
+cve
+cvo
+cvz
+cvz
+cvI
+cvz
+cvT
+cBS
+cwc
+cvz
+cwd
+cwf
+cwj
+cwo
+cwt
+cwu
+cwA
+cAR
+cAS
+cvv
+cBa
+cBc
+cBe
+cva
+cva
+cva
+cBf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(151,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaf
+aaa
+aaa
+alP
+ayf
+aBD
+aCx
+aDV
+alP
+aGL
+aHY
+aQj
+aQj
+aMk
+aNK
+aOM
+aQj
+aRB
+aSL
+aTN
+aVD
+cCq
+cAg
+bak
+bbz
+aYV
+bdp
+cBm
+bfL
+bhm
+bhm
+bhm
+bhm
+bkP
+bmV
+boc
+bqW
+brh
+bua
+bua
+bua
+bua
+bua
+bua
+bhh
+bhh
+btV
+bof
+bGU
+bqQ
+bof
+bCR
+bLV
+bNd
+bOm
+bPp
+bQF
+bRN
+bSS
+bUa
+bNc
+bNc
+bOj
+bNc
+bNc
+bZO
+caL
+cbK
+ccG
+cdH
+ceF
+cfj
+cga
+chm
+ciD
+cju
+clf
+csr
+cme
+cmZ
+cme
+coq
+cmd
+cmd
+cqs
+aaa
+bVw
+aaa
+aaa
+aaf
+csD
+ctb
+csV
+ctb
+ctj
+ctk
+cts
+ctx
+ctI
+ctS
+cud
+cuk
+cus
+cuF
+cuR
+cvd
+cvn
+cvy
+cvy
+cvH
+cvy
+cvy
+cvy
+cvy
+cvy
+cvy
+cwe
+cwi
+cwn
+cws
+cwn
+cwz
+cwE
+cvv
+cvv
+cvv
+cvp
+cvl
+cva
+cva
+cva
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(152,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaf
+aaa
+aaa
+alP
+aAq
+aAq
+aCy
+aCG
+alP
+aGL
+avI
+aJK
+aKV
+aMl
+aMF
+aMF
+aJI
+aRG
+aSO
+aTO
+aVG
+cCq
+aVz
+bak
+bbz
+aYV
+bdp
+bdc
+bfL
+beY
+biz
+biz
+biz
+bkR
+bfL
+boo
+bqQ
+bhg
+bua
+bvn
+bwL
+bxX
+bsL
+bua
+bBJ
+bhh
+bBn
+bof
+bDF
+bIr
+bof
+bKN
+bHT
+bNd
+bNd
+bNd
+bNd
+bNd
+bSU
+bUb
+bVa
+bWf
+bWX
+bOP
+bNd
+bTZ
+bUX
+bzs
+bzs
+bzs
+bzs
+cfj
+cfj
+cfj
+cfj
+cjx
+cfj
+cfj
+cmd
+cmd
+cmd
+cos
+cmd
+czI
+bVw
+bVw
+bVw
+aaa
+aaa
+aaf
+csD
+csD
+csD
+csD
+cti
+ctq
+cua
+ctA
+cuy
+ctV
+cug
+cuj
+cuj
+cuE
+cuU
+cuj
+cvk
+cvw
+cvw
+cvJ
+cvw
+cvV
+cwa
+cvJ
+cvw
+cvw
+cvb
+cwk
+cwp
+cwr
+cvp
+cwC
+cwn
+cAT
+cAW
+cvl
+cvl
+cvl
+cva
+cva
+cva
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(153,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaS
+aba
+aaS
+aaS
+aaS
+aaS
+aaS
+aaS
+aaS
+aaS
+aaS
+aaS
+aaS
+aaS
+aaS
+aaa
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+alO
+alO
+alO
+alP
+alP
+alP
+alP
+alP
+alP
+alP
+aDW
+aFn
+aGP
+avI
+aJI
+aJI
+aJI
+aNO
+aOT
+aJI
+aRF
+aSN
+aVF
+aVF
+aVF
+aYM
+aJI
+bbA
+aYV
+bdr
+bdb
+bdN
+blr
+bho
+bho
+bho
+bkQ
+bmW
+bom
+bIq
+bri
+bsu
+bsL
+bsL
+bvo
+bzl
+bua
+bzd
+bhh
+btT
+bCU
+bCR
+bqQ
+bGX
+bCR
+bqQ
+bRN
+bIK
+bPq
+bLd
+bNd
+bST
+bOr
+bOr
+bOr
+bWW
+bYa
+bYX
+bTZ
+caN
+cbM
+cbM
+cdJ
+bzs
+cfm
+cgc
+bAw
+ciF
+cjw
+ckl
+clk
+clk
+bAw
+bzs
+apQ
+aaa
+apQ
+apQ
+apQ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+ctp
+cua
+ctz
+ctK
+ctU
+cuf
+cuf
+cuv
+cuH
+cuT
+cvg
+cvj
+cvj
+cvj
+cvj
+cvj
+cvU
+cvj
+cvj
+cvj
+cvj
+cva
+cva
+cva
+cva
+cvp
+cwB
+cvr
+cvp
+cvl
+cvr
+cwB
+cvp
+cva
+cva
+cva
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(154,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaS
+aaa
+aaf
+aaa
+aaf
+aaa
+aaf
+aaa
+aaf
+aaa
+aaf
+aaa
+aaf
+aaa
+aaS
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+alO
+arp
+alO
+anf
+anf
+anf
+awD
+anf
+aoP
+alP
+aBE
+alP
+aDX
+alP
+aGR
+avI
+aJL
+aKX
+aJI
+aJI
+aJI
+aJI
+aRH
+aVz
+aVz
+aVH
+aXn
+aYN
+aJI
+bbz
+aYV
+aYV
+bey
+bfL
+bhm
+biz
+biz
+biz
+bla
+bmY
+boq
+boq
+brj
+bpE
+btk
+bum
+bvq
+bzn
+bua
+bBL
+bhh
+bBC
+bCV
+bDN
+bFM
+btR
+bDN
+bIa
+bIf
+bIL
+bOq
+bLf
+bRP
+bSW
+bMH
+bNi
+bOr
+bWZ
+bYd
+bYY
+bZP
+caO
+cbN
+ccI
+cdL
+ceI
+cfo
+bAw
+bAw
+bAw
+cjz
+ceJ
+clm
+cmg
+cnc
+cnD
+bzs
+apQ
+apQ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+cua
+ctF
+ctM
+ctX
+cuf
+cum
+cuw
+cuJ
+cuW
+cvi
+cvq
+cvC
+cvC
+cvC
+cvN
+cvW
+cvX
+cvX
+cvX
+cvX
+cva
+cva
+cva
+cva
+cva
+cva
+cva
+cva
+cvA
+cva
+cva
+cva
+cva
+cva
+cva
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(155,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaS
+aaa
+ads
+adS
+aeG
+aaa
+ads
+adS
+aeG
+aaa
+ads
+adS
+aeG
+aaa
+aaS
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+cxW
+anf
+aqv
+anf
+anf
+anf
+aEl
+anf
+alP
+alP
+alP
+alP
+alP
+alP
+aGQ
+aIk
+aIp
+aKW
+aMG
+aIp
+aIp
+aJI
+aJI
+aSP
+aUh
+aJI
+aJI
+aJI
+aJI
+aJI
+bcq
+bcq
+bcq
+bfL
+bhp
+biB
+biB
+biB
+bkU
+bmX
+bpE
+bpE
+bpE
+bpE
+bti
+bul
+bvp
+bzm
+bua
+bBK
+bwz
+bBw
+bJG
+bDI
+bFL
+bli
+bKO
+bHY
+bNf
+bOp
+bPr
+bQH
+bNd
+bSV
+bSQ
+bNh
+bWg
+bWY
+bYc
+bNd
+bNd
+bzs
+bzs
+ccH
+cdK
+ceH
+cfn
+cgd
+ceJ
+ccM
+cjy
+ceJ
+cll
+ccM
+cnb
+bHd
+ceI
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+cua
+ctE
+ctL
+ctW
+cuf
+cum
+cuw
+cuI
+cuV
+cvh
+cvj
+cvB
+cvE
+cvk
+cvk
+cvk
+cvk
+cvk
+cvk
+cvX
+cvX
+cvX
+cvX
+cwq
+cwq
+cva
+cva
+cva
+cva
+cva
+cva
+cva
+cva
+cva
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(156,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aae
+aaa
+aaa
+aaa
+aaS
+aaf
+ads
+adT
+aeG
+aaa
+ads
+adT
+aeG
+aaa
+ads
+adT
+aeG
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+alO
+alO
+alO
+anf
+auC
+alP
+anf
+anf
+alP
+arA
+anf
+alP
+atw
+alP
+aGS
+aIm
+aIp
+aKH
+aMI
+aIp
+aOV
+aOX
+aOX
+aSR
+aUi
+aVJ
+aOX
+aYP
+bal
+bam
+aYV
+aYV
+aYV
+bfL
+bhq
+bhm
+bkb
+bhm
+bla
+bmZ
+bpH
+bra
+bsK
+bpE
+bpE
+buq
+bvt
+bye
+bon
+bBN
+bEi
+bEi
+bEi
+bDU
+bFO
+bBN
+bKR
+bMc
+bNd
+bNd
+bNd
+bNd
+bNd
+bSX
+bMI
+bNk
+bNU
+bXb
+bWi
+bYZ
+bZR
+caQ
+bzs
+ccK
+ccM
+ceJ
+ceJ
+cgf
+ceJ
+ccM
+ccM
+ceJ
+clo
+cmi
+cbQ
+cnF
+cot
+csc
+csm
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+cua
+cua
+cua
+cua
+cuf
+cuf
+cux
+cuK
+cuX
+cuf
+cvk
+cvk
+cvk
+cvk
+aaf
+aaf
+aaf
+aaf
+cvk
+cvk
+cvk
+cvk
+cvk
+cvk
+cvk
+cva
+cva
+cva
+cva
+cva
+cva
+cva
+cva
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(157,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaS
+aaa
+ads
+adT
+aeG
+aaf
+ads
+adT
+aeG
+aaf
+ads
+adT
+aeG
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+alO
+aqy
+anf
+alP
+awE
+anf
+apE
+anf
+anf
+alP
+anf
+alP
+aCE
+aIj
+aJB
+aKD
+aMs
+aNL
+aOQ
+aQf
+aRE
+aSQ
+aVI
+aVI
+aVI
+aYO
+aRJ
+bbB
+aYV
+aYV
+aYV
+bfL
+bfL
+bfL
+bfL
+bfL
+blg
+bmZ
+bpG
+bqZ
+brk
+bsv
+bsv
+bun
+bvr
+bzo
+bon
+aFa
+bCY
+bEh
+bCW
+bDS
+bFN
+bBN
+bKQ
+bMb
+bNd
+bOr
+bOt
+bOr
+bRQ
+bOr
+bSQ
+bNj
+bNs
+bXa
+bYa
+bNd
+bZQ
+caP
+cbO
+ccJ
+cdM
+bLS
+cfp
+cge
+cbK
+ciG
+bLS
+ckm
+cln
+cmh
+cnd
+cnE
+bPn
+aoV
+aoV
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+cuf
+cuf
+cuf
+cuf
+cuf
+aaf
+aaa
+aaf
+cvK
+aaf
+aaa
+aaa
+aaf
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+cAX
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(158,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+ads
+adT
+aeG
+aaa
+ads
+adT
+aeG
+aaa
+ads
+adT
+aeG
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+apC
+apC
+apC
+apC
+apC
+apC
+alP
+anf
+alP
+alP
+alP
+alP
+awD
+ayf
+aGC
+aIl
+aIq
+aKK
+aMy
+aIp
+aOX
+aQm
+aRJ
+aRJ
+aRJ
+aVK
+aRJ
+aRJ
+aRJ
+bbB
+aYV
+aYV
+aYV
+bfO
+bfS
+biC
+bkd
+bfS
+bKH
+bmZ
+bpJ
+brc
+bsL
+bug
+btl
+but
+bvw
+bzq
+bon
+bBP
+bCZ
+bEk
+bFG
+bCY
+bFP
+bBN
+bKQ
+bMb
+bNd
+bOt
+bOr
+bOr
+bRQ
+bOr
+bSQ
+bWj
+bWk
+bXc
+bYe
+bNd
+bZS
+caR
+bzs
+ccL
+ccM
+ceL
+ceJ
+cgh
+ceJ
+ceJ
+ccM
+ceJ
+cAe
+cmj
+cne
+bHd
+bPn
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(159,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaS
+aaS
+aaS
+aaf
+aaa
+ads
+adT
+aeG
+aaa
+ads
+adT
+aeG
+aaa
+ads
+adT
+aeG
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+amw
+aof
+aof
+aof
+aof
+arq
+asv
+atv
+auD
+apC
+awF
+anf
+alP
+arA
+anf
+aCz
+asw
+aCJ
+aGT
+aIn
+aIp
+aKI
+aMt
+aIp
+aOW
+aQm
+aRJ
+aSS
+aUj
+aRJ
+aRJ
+aYQ
+cBg
+bam
+aYV
+aYV
+aYV
+aYV
+bhr
+biC
+bkc
+bfS
+blo
+bmZ
+bpI
+brb
+bsL
+buf
+bvs
+bur
+bvp
+bzp
+bon
+bBO
+bCY
+bEj
+bCY
+bGZ
+bFE
+bBN
+bKS
+bMd
+bNd
+bOs
+bOt
+bQJ
+bRR
+bOr
+bSQ
+bWj
+bWj
+bWj
+bWj
+bNd
+bzs
+bzs
+bzs
+ccH
+bFr
+ceK
+ceJ
+cgg
+ccM
+ccM
+cjA
+ceJ
+ccM
+cdN
+bFr
+cnG
+bzs
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(160,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaS
+aaa
+aaf
+aaa
+aaa
+aaa
+adV
+aaa
+aaa
+aaa
+adV
+aaa
+aaa
+aaa
+adV
+aaa
+aaa
+aaf
+aaa
+aaa
+amw
+amw
+amw
+aoh
+aoN
+apA
+aof
+ars
+anf
+arx
+anf
+apC
+aoQ
+cqM
+asw
+asw
+asw
+aCA
+anf
+aFp
+aGW
+anf
+aIp
+aKI
+aMA
+aIp
+aOX
+aQm
+aRJ
+aST
+aUk
+aRJ
+aRJ
+aYQ
+bam
+aYV
+aYV
+aYV
+aYV
+beE
+bfS
+biE
+bkf
+bfS
+bKH
+bmZ
+bpL
+bre
+bsN
+bre
+bvv
+bur
+bvp
+bzr
+bon
+bBQ
+bDa
+bEl
+bFH
+bHb
+bIw
+bBN
+bKT
+bMb
+bNd
+bOt
+bPu
+bOr
+bRQ
+bOr
+bSQ
+bWj
+bWk
+bXc
+bYe
+bNd
+bZU
+caS
+cbN
+ccN
+bHd
+bzs
+bzs
+bKT
+bAw
+bAw
+bFr
+ceJ
+ccM
+ccM
+cng
+bzs
+bzs
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(161,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaS
+aaf
+abX
+acx
+acx
+adt
+adU
+adU
+adU
+adU
+adU
+adU
+adU
+adU
+adU
+adU
+adU
+adU
+alg
+alN
+amv
+ane
+cxN
+aog
+aoM
+apz
+aqw
+arr
+asw
+asw
+auE
+apC
+awG
+auF
+alP
+alP
+alP
+alP
+alP
+aFo
+aGV
+aIp
+aIp
+aKL
+aMz
+aNQ
+aOX
+aQm
+aRJ
+aRJ
+aRJ
+aRJ
+aRJ
+aYR
+ban
+aYV
+aYV
+aYV
+bez
+bfP
+bfS
+biD
+bke
+bfS
+bKH
+bmZ
+bpK
+brd
+bpK
+bpK
+bvu
+bux
+bvy
+bon
+bon
+bBN
+bBN
+bBN
+bBN
+bHa
+bBN
+bBN
+bKB
+bMb
+bNd
+bOr
+bPt
+bOr
+bRQ
+bSY
+bMJ
+bNl
+bNW
+bXd
+bPu
+bNd
+bZT
+bMb
+bFr
+ccM
+cdN
+bzs
+cfq
+bKT
+bAw
+ciH
+bHd
+bzs
+bAw
+cmk
+cnf
+bzs
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(162,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaS
+aaa
+aaf
+aaa
+aaa
+aaa
+adX
+aaa
+aaa
+aaa
+adX
+aaa
+aaa
+aaa
+adX
+aaa
+aaa
+aaf
+aaa
+aaa
+amw
+amw
+amw
+aoi
+aoO
+apB
+aqx
+art
+anf
+anf
+auF
+apC
+awH
+auF
+alP
+aAr
+anf
+alP
+aoV
+aFq
+aGX
+aIp
+aJO
+aKU
+aME
+aNN
+aOR
+aQh
+aRI
+aSU
+aXo
+aXo
+aXo
+aYO
+bap
+aYV
+aYV
+bci
+beB
+bfS
+bfS
+bfS
+bfS
+bfS
+bKH
+bmZ
+bon
+bon
+bon
+bon
+bon
+buG
+bvA
+bon
+bAw
+bzg
+bLS
+bLS
+bLS
+cbQ
+bLS
+bLS
+bKE
+caU
+bNc
+bOj
+bPw
+bNc
+bNc
+bNc
+bNc
+bNc
+bNc
+bNc
+bPw
+bNc
+bLS
+caU
+cbQ
+bhG
+bhG
+bhG
+cbK
+cgj
+cbK
+cbK
+chp
+bCq
+clp
+bCq
+bCq
+bCq
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(163,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaS
+aba
+aaS
+acy
+aaa
+ads
+adW
+aeG
+aaa
+ads
+adW
+aeG
+aaa
+ads
+adW
+aeG
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+amw
+aof
+aof
+aof
+aof
+anf
+aoP
+atw
+auF
+apC
+aoP
+auF
+azr
+anf
+anf
+alP
+alP
+aFo
+aGV
+aIp
+aJN
+aLd
+aMN
+aNQ
+aOZ
+aOX
+aOX
+aOX
+aUz
+aVM
+aOX
+aYT
+bam
+aYV
+baR
+bcb
+bdl
+bdO
+bPv
+bgo
+bPv
+bPv
+blq
+bna
+bPv
+bpQ
+bPv
+bdO
+btm
+buy
+bvz
+bdO
+bPv
+bna
+bPv
+bPv
+bPv
+bDV
+bPv
+bPv
+bHq
+bMe
+bIg
+bIM
+bPv
+bLT
+bLT
+bLT
+bLT
+bLT
+bLT
+bLT
+bLT
+bLT
+bLT
+caT
+cbP
+ccO
+cdO
+cdO
+cdO
+cnH
+czH
+czT
+czY
+bCq
+bHE
+bHE
+clp
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(164,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+ads
+adW
+aeG
+aaa
+ads
+adW
+aeG
+aaa
+ads
+adW
+aeG
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+apC
+aqy
+anf
+anf
+aty
+auF
+apC
+alP
+auF
+alP
+alP
+alP
+alP
+ayf
+aFm
+aGF
+aIq
+aIq
+aIq
+aIq
+aIq
+aIq
+aIq
+aIq
+aIq
+aIq
+aIq
+aIq
+aXS
+aIq
+aIq
+baZ
+bck
+bdm
+bdP
+bdP
+bdP
+bdP
+bdP
+bdP
+bnc
+boC
+bpV
+bdP
+bdP
+bto
+buL
+bvB
+cbK
+bxg
+bzk
+bDb
+bDb
+bDb
+bDb
+bDb
+bDb
+bDb
+bDb
+bIs
+bIN
+bDb
+bDb
+bDb
+bDb
+bDb
+bDb
+bDb
+bDb
+bDb
+bDb
+bDb
+bDb
+bDb
+bDb
+bDb
+bDb
+bDb
+bky
+bky
+bUw
+czY
+bCq
+bLv
+bLv
+bLv
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(165,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaS
+aaa
+ads
+adW
+aeG
+aaf
+ads
+adW
+aeG
+aaf
+ads
+adW
+aeG
+aaa
+aaf
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+apC
+anf
+anf
+alP
+atx
+auF
+apC
+auD
+auF
+alP
+aAs
+anf
+alP
+aCG
+aFr
+aGE
+aIo
+aIo
+aIo
+aIo
+aIo
+aIo
+aIo
+aRK
+aIo
+aIo
+aUx
+aVL
+aXR
+aZc
+aZc
+baT
+bcj
+beC
+aYV
+bfT
+biG
+bkg
+blu
+bnb
+bop
+bor
+bpS
+bsO
+buh
+btn
+buH
+byf
+byf
+byf
+byf
+bDb
+bEm
+bEm
+bEm
+bDb
+bJH
+bKW
+bMg
+bIh
+bOx
+bPx
+bJN
+bRT
+bEm
+bEm
+bJN
+bRT
+bEm
+bEm
+bJN
+bRT
+bEm
+bEm
+bDb
+cfr
+cho
+bDb
+aaa
+bky
+bUw
+czY
+bLv
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(166,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaS
+aaf
+ads
+adW
+aeG
+aaa
+ads
+adW
+aeG
+aaa
+ads
+adW
+aeG
+aaf
+aaf
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+apC
+anf
+alP
+alP
+apE
+auG
+apC
+aoP
+auF
+apE
+anf
+anf
+alP
+aCG
+aFt
+aFu
+aFu
+aFu
+aFu
+aFu
+aFu
+aFu
+aFu
+aFu
+aFu
+aFu
+aFu
+aVO
+bdp
+aYV
+aYV
+bba
+aXq
+aYV
+aYV
+bht
+biI
+bkh
+blw
+biI
+blw
+boE
+bpY
+bsQ
+buh
+btx
+buU
+byf
+bzu
+bAz
+bBT
+bDb
+bEm
+bEm
+bEm
+bIx
+bJJ
+bKY
+bMi
+bNo
+bIP
+bPA
+bJN
+bRU
+bSZ
+bEm
+bJN
+bRU
+bXe
+bEm
+bJN
+bRU
+bSZ
+bEm
+bDb
+cgi
+chq
+ccQ
+aoV
+bZi
+bUw
+czY
+bLv
+aaa
+aoV
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(167,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaS
+aaa
+ads
+adY
+aeG
+aaa
+ads
+adY
+aeG
+aaa
+ads
+adY
+aeG
+aaa
+aaS
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+apC
+anf
+anf
+asx
+anf
+auF
+alP
+alP
+auF
+alP
+alP
+alP
+aCB
+aEB
+aFs
+bbE
+aIr
+bav
+aLf
+aIt
+aNS
+aPb
+aQp
+aRN
+aIt
+aUB
+aFu
+aVN
+bdp
+bar
+bar
+aYV
+aXq
+aYV
+aYV
+bfT
+biH
+bkh
+blv
+bls
+blv
+boD
+bpY
+bsP
+buh
+btw
+buT
+byf
+bzt
+bAy
+bBS
+bDb
+bEm
+bEm
+cBz
+bEm
+bJI
+bKX
+bMh
+bIt
+bOx
+bPz
+bJN
+bRU
+bEm
+bEm
+bJN
+bRU
+bEm
+bEm
+bJN
+bRU
+bEm
+cBz
+bDb
+cgi
+chq
+ccQ
+aaa
+bZi
+bUw
+czY
+bLv
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(168,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaS
+aaa
+aaf
+aaa
+aaf
+aaa
+aaf
+aaa
+aaf
+aaa
+aaf
+aaa
+aiS
+aaa
+aaS
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+apC
+alP
+alP
+alP
+anf
+auH
+avF
+awI
+ayc
+asw
+aAu
+asw
+aCD
+aEa
+aFv
+aGG
+aIu
+aJQ
+bCI
+aIt
+aIt
+aPb
+aIt
+aRN
+aIt
+aUB
+aFu
+aVZ
+aXT
+aFu
+aFu
+bcv
+aXq
+aYV
+bfU
+bhu
+biJ
+bhM
+bjW
+blx
+bne
+boL
+bqb
+bsR
+buh
+buo
+bxd
+byf
+bzw
+bAB
+bBV
+bDb
+bEn
+bEm
+bEm
+bEm
+bJL
+bLa
+bMi
+bNo
+bPy
+bPA
+bJN
+bRW
+bTb
+bUe
+bJN
+bWl
+bXf
+bYg
+bJN
+bZV
+caV
+cbS
+bDb
+cgl
+chs
+bDb
+aaa
+bky
+bUw
+czY
+bCq
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(169,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaS
+aaS
+aaS
+aaS
+aaS
+aaS
+aaS
+aaS
+aaS
+aaS
+aaS
+aaS
+aba
+aaS
+aaS
+aaf
+aaa
+aaa
+aaf
+aaf
+aaf
+aaf
+alO
+aqz
+aru
+alP
+anf
+anf
+avE
+anf
+anf
+awD
+aAt
+aty
+aCC
+aDZ
+aFu
+aFu
+aIs
+aJP
+aLg
+aMH
+aIt
+aYW
+aYW
+aYW
+aYW
+aYW
+aYW
+aVY
+aYY
+bas
+aFu
+aYV
+cBk
+aYV
+bfU
+bhu
+biJ
+bhK
+bjP
+blt
+bnd
+boG
+bqa
+bsR
+buh
+buo
+bvb
+byh
+bzv
+bAA
+bBU
+bDb
+bEm
+bEm
+bEm
+bIy
+bJK
+bKZ
+bMi
+bIu
+bIO
+bPB
+bLe
+bRV
+bTa
+bUd
+bVi
+bRV
+bTa
+bYf
+bVi
+bRV
+bTa
+cbR
+bDb
+cgk
+chr
+bDb
+aaa
+bky
+cBN
+czY
+bCq
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(170,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+alO
+anf
+anf
+asy
+anf
+anf
+alP
+alP
+anf
+alP
+alP
+alP
+aCE
+aDZ
+aFu
+aHc
+aIw
+aJS
+cAM
+aMJ
+aNP
+aOS
+aOS
+aOS
+aOS
+aOS
+aOS
+aWb
+aXU
+bau
+aFu
+aYV
+aXq
+aYV
+bfV
+bfV
+bfV
+bkl
+blA
+blD
+bot
+bfV
+bfV
+bfV
+bfV
+btA
+bxd
+byf
+bzy
+bAD
+bBX
+bDb
+bEm
+bEm
+bEm
+bIx
+bJM
+bLc
+bMi
+bNo
+bOx
+bPD
+bQM
+bMi
+bMi
+bRZ
+bVj
+bMi
+bMi
+bRZ
+bZa
+bMi
+bMi
+bRZ
+bMi
+bMi
+chu
+ccQ
+aaf
+bZi
+bUw
+cAa
+bLv
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(171,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaa
+aaa
+aaa
+aaf
+aaf
+alO
+aqA
+anf
+alP
+anf
+anf
+alP
+awJ
+anf
+alP
+aAv
+anf
+aCE
+aDZ
+aFu
+aHb
+aIv
+aJR
+aJR
+aIt
+aIt
+aPd
+aIt
+aRO
+aIt
+aUC
+aVP
+aXu
+aYW
+bat
+bbD
+aYV
+aXq
+beE
+bfV
+bhv
+biK
+bkk
+blz
+bly
+bos
+bpR
+bqc
+bsS
+box
+buo
+bxd
+byf
+bzx
+bAC
+bBW
+bDb
+bEm
+bEm
+bEm
+bDb
+bJH
+bLb
+bMk
+bNn
+bIQ
+bPC
+bQL
+cBG
+bTc
+bUf
+bTc
+bRX
+bTc
+bUf
+bTc
+bRX
+bTc
+cbT
+ccP
+ccP
+cht
+ckn
+csk
+czQ
+czU
+czZ
+bLv
+aoV
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(172,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaa
+aaa
+aaa
+alP
+alP
+alP
+alP
+alP
+anf
+anf
+alP
+anf
+anf
+apE
+anf
+anf
+aCE
+aDZ
+aFu
+aHd
+aIx
+aJF
+aLh
+aIt
+aNV
+aPd
+aIt
+aRO
+aIt
+aIt
+aVQ
+aXu
+aYW
+aVQ
+aFu
+aYV
+aXq
+bds
+bfV
+bhx
+biM
+bkm
+blC
+blG
+bou
+bou
+biL
+cBs
+box
+buo
+bvc
+byf
+byf
+byf
+byf
+bDb
+bDb
+bDb
+bDb
+bDb
+bJN
+bJN
+bMm
+bNp
+bOx
+bMi
+bQN
+bRZ
+bMi
+bMi
+bVk
+bRZ
+bMi
+bMi
+bZb
+bRZ
+bMi
+bMi
+cfy
+cgn
+cjB
+ccQ
+aaf
+bZi
+czV
+czY
+bLv
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(173,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aae
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaa
+aaa
+alO
+apD
+aEl
+anf
+arx
+anf
+anf
+alP
+alP
+atB
+alP
+alP
+alP
+aCF
+aDZ
+aFw
+aFw
+aFw
+aFw
+aFw
+aFw
+aFw
+aPf
+aQq
+aRP
+aIt
+aIt
+aIt
+aWd
+aXV
+aIt
+bbD
+aYV
+aXq
+aYV
+bfV
+bhw
+biL
+bhP
+blB
+blF
+bou
+bou
+biL
+bsT
+box
+btP
+bxd
+byi
+bzz
+bAE
+bBY
+bDc
+bEo
+bFI
+bHe
+bIz
+bIz
+bJN
+bMl
+bIv
+bIR
+bPE
+bLe
+bRY
+bTd
+bUg
+bVi
+bWm
+bTd
+bUg
+bVi
+bZW
+bTd
+bUg
+bDb
+bDb
+bDb
+bDb
+aaa
+bky
+czV
+czY
+bCq
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(174,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaa
+alP
+anf
+anf
+arw
+asA
+asA
+anf
+alP
+awL
+anf
+anf
+apE
+aBF
+aCH
+aED
+aFy
+aGO
+aIB
+aJJ
+aKZ
+aMW
+aFw
+aFu
+aFu
+aFu
+aTc
+aUD
+aVS
+aYW
+aYW
+bax
+aFu
+aYV
+aXq
+aYV
+bfV
+bfV
+biO
+biL
+blB
+blF
+bou
+bpT
+bqd
+box
+box
+btS
+bxd
+byi
+bwN
+bAG
+bCa
+bDc
+bEo
+bIC
+bEc
+bIB
+bIB
+bJN
+bMo
+bNp
+bOx
+bPH
+bJN
+bSa
+bTe
+bUh
+bJN
+bWn
+bXg
+bYh
+bJN
+bZX
+caW
+cbU
+bDb
+aaf
+aaf
+aaa
+aaa
+bky
+czV
+czY
+bCq
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bZi
+bZi
+bZi
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(175,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+alO
+aoQ
+anf
+arv
+asz
+atA
+anf
+alP
+awK
+anf
+awD
+apE
+anf
+aCk
+aEC
+aFx
+aGM
+aIy
+aJG
+cAz
+aMK
+aFw
+aPg
+aQr
+aFu
+aTb
+aIt
+aVR
+aYW
+aYW
+aUD
+bbD
+aYV
+aXq
+aYV
+bfW
+bhy
+biN
+biL
+bni
+blM
+bni
+bni
+bni
+brl
+buj
+btQ
+bve
+byj
+bwM
+bAF
+bBZ
+bDc
+bEp
+bCX
+bEc
+bIA
+bIA
+bJN
+bMn
+bNp
+bOz
+bPG
+bJN
+bEm
+bEm
+bRU
+bJN
+bEm
+bEm
+bRU
+bJN
+bEm
+bEm
+bRU
+bDb
+aaf
+aaa
+aaa
+aaa
+bZi
+czV
+czY
+bLv
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bZi
+btp
+cqu
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(176,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+alP
+alP
+alP
+aqB
+arx
+anf
+anf
+anf
+alP
+awM
+ayg
+ayg
+ayg
+ayg
+aCl
+aEe
+aFw
+aFw
+aFw
+aLo
+aLb
+aFw
+aFw
+aPi
+aQt
+aRQ
+aIt
+aUF
+aLg
+aYW
+aYW
+aVQ
+aFu
+aYV
+aXq
+aYV
+bfX
+bhz
+biQ
+biL
+biL
+blN
+biL
+biL
+biL
+biL
+bsw
+btU
+bxe
+bvC
+bzD
+bxv
+bCc
+bDc
+bEo
+bDj
+bDY
+bIA
+bIA
+bJN
+bMq
+bNp
+bOx
+bPJ
+bJN
+bEm
+bSZ
+bRU
+bJN
+bEm
+bXe
+bRU
+bJN
+bEm
+bSZ
+bRU
+bDb
+aaf
+aaa
+aaa
+aoV
+bZi
+czV
+czY
+bLv
+apQ
+aaf
+aaf
+aaf
+aaf
+bky
+bky
+bZi
+cqu
+bZi
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(177,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+alP
+aoP
+alP
+alP
+apE
+alP
+atB
+alP
+alP
+awx
+aye
+ayd
+aAc
+ayd
+aCI
+aEd
+aFw
+aHf
+aIz
+aJM
+aLa
+cBZ
+aFw
+aPh
+aQs
+aFu
+aTd
+aUE
+aVT
+aYW
+aYW
+aZd
+aFu
+aYV
+aXq
+aYV
+bfX
+bhy
+biP
+bko
+blE
+bnj
+bov
+bpU
+brq
+bsW
+buj
+bvE
+bxd
+byk
+bzC
+bAH
+bCb
+bDc
+bEo
+bDf
+bEb
+bGY
+bGY
+bJN
+bMp
+bNp
+bOx
+bPI
+bJN
+bEm
+bEm
+bUi
+bJN
+bEm
+bEm
+bUi
+bJN
+bEm
+bEm
+bUi
+bDb
+aaf
+aaf
+aaa
+aaa
+bZi
+czV
+czY
+bLv
+aaa
+aaa
+aaa
+aaf
+aaf
+bky
+cwy
+cmn
+cmn
+bZi
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(178,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaf
+aaf
+alP
+alP
+alP
+alP
+alP
+anf
+anf
+anf
+anf
+anf
+anf
+aty
+anf
+awx
+avI
+asA
+apE
+arx
+aCo
+aEf
+aFw
+aGU
+aIC
+aJU
+aLe
+aMX
+aFw
+aCR
+aCR
+aCR
+aCR
+aCR
+aCR
+aWe
+aWe
+aCR
+aCR
+bcs
+aXq
+aYV
+bfX
+bfV
+bfV
+bfV
+bfV
+bfV
+box
+bpW
+brs
+box
+box
+buo
+bxd
+byk
+byk
+byk
+byk
+bDc
+bDc
+bJR
+bEg
+bDc
+bDc
+bLe
+bMr
+bNr
+bIT
+bJN
+bJN
+bJN
+bJN
+bJN
+bJN
+bJN
+bJN
+bDb
+bDb
+bDb
+bDb
+bDb
+bDb
+bky
+bky
+bky
+bky
+bky
+czX
+cAc
+bCq
+bky
+bky
+bky
+bky
+bky
+bky
+cmn
+cmn
+cmn
+bZi
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(179,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+alO
+amx
+anf
+anf
+anf
+anf
+alP
+alP
+alP
+asB
+asB
+asB
+avo
+awx
+avH
+asB
+asB
+asB
+aCK
+aEf
+aFw
+aHg
+aIA
+aJT
+aLc
+aMX
+aFw
+aPj
+aFz
+aRR
+aTe
+aUG
+aFz
+aRS
+aXW
+baz
+aCR
+bcx
+aXq
+aYV
+bfY
+bhA
+biR
+bkq
+bjZ
+bvx
+boz
+boM
+bzE
+bsX
+bsz
+btW
+bxf
+bzE
+bzE
+bzE
+bzE
+bDd
+bEq
+bDl
+bEf
+bFQ
+bHc
+bHK
+bIb
+bID
+bOA
+bPK
+bQO
+bSb
+bOu
+bUj
+bVl
+bWo
+bXh
+bQZ
+bTl
+bZY
+caX
+bTl
+bQZ
+cdQ
+btp
+bky
+czG
+czR
+czW
+cAb
+cko
+clq
+cmq
+ciI
+cnJ
+cri
+bYr
+cmn
+cBT
+cBU
+bZi
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(180,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+alP
+alP
+alP
+alP
+alP
+anf
+alP
+aqD
+arz
+asB
+atD
+auJ
+asB
+awQ
+avK
+azt
+aAy
+asB
+aCN
+aEf
+aFw
+aGY
+aII
+aJW
+aMX
+aMX
+aNW
+aPl
+aQv
+aPl
+aTg
+aUI
+aTg
+aRS
+aZf
+aFz
+bbF
+aYV
+aXq
+aYV
+bfX
+bhB
+bgp
+bhU
+bhU
+blX
+bow
+boO
+bhU
+bsZ
+cdX
+ceX
+bvg
+bvD
+bvD
+cBx
+bzB
+bAa
+bBE
+bDm
+bEr
+bFR
+bHf
+bHM
+bFR
+bIE
+bJr
+bJO
+bWr
+bQX
+bQX
+bUk
+bVn
+bWq
+bXj
+bYj
+bZc
+bTl
+bTl
+bTl
+bQZ
+bNB
+ceM
+ccU
+cgo
+czS
+blO
+cAd
+bky
+bDh
+cBL
+btp
+btp
+cvO
+bky
+bky
+bky
+bky
+bky
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(181,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+alP
+anf
+alP
+aqC
+ary
+asB
+atC
+auI
+auI
+awP
+avJ
+awO
+awO
+asB
+aCM
+aEg
+aFw
+aHi
+aHi
+aJV
+aFw
+aFw
+aFw
+aPk
+aQu
+aPk
+aTf
+aUH
+aTf
+aRS
+aZf
+baA
+bbF
+aYV
+aXq
+aYV
+bfZ
+bhA
+biS
+bkr
+blH
+bnm
+boy
+bpX
+brt
+brm
+bsA
+bvH
+bvf
+brt
+bwO
+bxF
+bzA
+bzZ
+bBD
+bBD
+bBD
+bBD
+bBD
+bHL
+bBD
+bBD
+bJo
+bPK
+bQX
+bWr
+bQX
+bQX
+bWr
+bWp
+bXi
+bYi
+bTl
+bTl
+caY
+cbV
+bQZ
+blQ
+brG
+cfs
+cgm
+bns
+bky
+bky
+bky
+bky
+bky
+bky
+btp
+csy
+cko
+cAf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(182,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+alP
+anf
+alP
+alP
+alP
+asB
+atE
+auI
+auI
+awT
+avM
+azv
+aAA
+asB
+aCE
+aEi
+aFw
+aHl
+aID
+aID
+aFw
+aMM
+aFz
+aFz
+aQw
+aRS
+aRS
+aRS
+aRS
+aRS
+aZf
+aRS
+bbF
+aYV
+aXq
+aYV
+bga
+bgc
+bgc
+bgc
+bgc
+bgc
+boB
+boB
+boB
+btb
+buo
+bvJ
+bvJ
+bvJ
+bwQ
+bxW
+bvK
+bvK
+bEt
+bDn
+bEz
+bFS
+bJT
+bLh
+bMs
+bMs
+bMs
+bPN
+bQS
+bSf
+bWr
+bWr
+bQX
+bWr
+bXl
+caZ
+cba
+bTl
+cbc
+bTl
+bQZ
+cdR
+ceO
+bky
+cgm
+chw
+ciK
+cjC
+ckp
+cls
+cmr
+bky
+btp
+cmo
+bky
+aaf
+aaf
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aae
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(183,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaf
+alP
+anf
+apE
+anf
+anf
+asB
+asB
+asB
+avL
+awR
+auI
+azu
+aAz
+asB
+aCO
+aEh
+aFz
+aHk
+aFz
+aFz
+aTe
+aML
+aFz
+aFz
+aQw
+cdl
+aRS
+aRS
+aRS
+aRS
+aZf
+aRS
+bbF
+aYV
+aXq
+aYV
+bfX
+bhC
+biU
+bks
+blI
+bnn
+boA
+bpZ
+boB
+bta
+buo
+bvJ
+bCk
+byo
+aDH
+bxP
+bCf
+bvK
+bEs
+bGc
+bHm
+bGc
+bEs
+bEs
+aaf
+aaf
+aaf
+bPN
+bQR
+bSe
+bMf
+bNe
+bNm
+bNX
+bTf
+bQZ
+bTl
+bTl
+cbb
+bTl
+bQZ
+cdR
+ceN
+bky
+cgp
+chv
+ciJ
+cbf
+cbf
+clr
+bnt
+bky
+btp
+cou
+bZi
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(184,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+alP
+aoQ
+alP
+aqE
+arA
+asB
+atG
+auL
+avN
+axa
+auI
+azw
+aAA
+asB
+aCQ
+aEk
+aFB
+aHn
+aFB
+csT
+aFB
+aLr
+aFB
+aPn
+aQy
+aPn
+aTi
+aUK
+aVU
+aWg
+aZf
+baA
+bbF
+aYV
+aXq
+aYV
+bfX
+bhD
+biV
+biW
+blK
+bnp
+bng
+boQ
+brx
+bro
+buo
+bvJ
+bxj
+byq
+bwR
+bxY
+bCh
+bvK
+bEv
+bFU
+bFU
+bFU
+bJV
+bEC
+bMu
+bMu
+bMu
+bEC
+bQU
+bQU
+bTl
+bQU
+bXr
+bWr
+bOw
+bQZ
+bQZ
+bQZ
+cka
+bQZ
+bQZ
+bQZ
+bQZ
+bQZ
+cgr
+chx
+bky
+bky
+bky
+clt
+bnt
+bky
+btp
+bMB
+bZi
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(185,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+alP
+alP
+alP
+alP
+alP
+asB
+atF
+auK
+auJ
+awS
+auI
+awO
+awO
+asB
+aCP
+aEj
+aFA
+aHm
+aEj
+aEj
+aEj
+aEj
+aEj
+aPm
+aQx
+aPm
+aTh
+aUJ
+aTh
+aXz
+aZg
+aFz
+bbF
+aYV
+bdv
+aYV
+bgb
+bhC
+biU
+biW
+blJ
+bno
+bnf
+boP
+bqf
+brn
+bsC
+bvK
+bxi
+byp
+bzJ
+bxY
+bCg
+bvK
+bEu
+bFU
+bFU
+bFU
+bJU
+bEC
+bMt
+bNt
+bNt
+bEC
+bQT
+bSg
+bTk
+bSh
+bXr
+bQX
+bOv
+bYk
+bYk
+bZZ
+cjW
+bZZ
+ccR
+cdS
+ceP
+bQZ
+cgq
+chx
+bky
+aoV
+bky
+cgr
+cms
+bky
+btp
+bNA
+bky
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(186,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aae
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaa
+aaa
+asB
+atH
+auM
+avO
+awU
+ayj
+azx
+aAB
+asB
+aCR
+aEm
+aCR
+aPl
+aQv
+aPl
+aQv
+aCR
+aNY
+aCR
+aQA
+aCR
+aTj
+aFz
+aVV
+aXB
+aZh
+baB
+aCR
+bcq
+bdx
+bcq
+bgc
+bgc
+biX
+bhV
+bka
+blZ
+bnk
+bpo
+bqk
+brp
+bsD
+bvK
+bxl
+bys
+bzM
+bya
+bCj
+bvK
+bEx
+bFU
+bFU
+bGl
+bJX
+bEC
+bMw
+cBE
+bOE
+bEC
+bQV
+bSi
+bTm
+bUn
+bXr
+bQX
+bOv
+bYm
+bYm
+bZZ
+ckN
+bZZ
+ccR
+cdS
+ceP
+bQZ
+cgt
+chx
+bZi
+aoV
+bZi
+clt
+bnt
+btp
+btp
+bky
+bky
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(187,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+asB
+asB
+asB
+asB
+asB
+asB
+asB
+asB
+asB
+aCR
+bfb
+aCR
+aHo
+aIE
+aKe
+aIE
+aCR
+aNX
+aPo
+aQz
+aCR
+aCR
+aCR
+aCR
+aXy
+aZe
+aCR
+aCR
+bcy
+bdw
+beG
+bgc
+bhE
+biW
+bkv
+blL
+biW
+bnh
+biW
+brx
+bte
+bup
+bvK
+cBu
+byr
+bzL
+bxZ
+bCi
+bvK
+bEw
+bFU
+bFU
+bGk
+bJW
+bEC
+bMv
+bNu
+bMv
+bEC
+bQT
+bSh
+coT
+bTl
+bXr
+bNZ
+bOy
+bZd
+bYl
+caa
+ckM
+cbW
+ccS
+ccS
+ceQ
+cft
+cgs
+chy
+bZi
+aoV
+bZi
+clt
+bns
+bky
+bky
+bky
+aaa
+aaa
+aaS
+aaS
+aaS
+aaS
+aaS
+aaS
+aaS
+aaS
+aaS
+aba
+aaS
+aaS
+aaS
+aaS
+aaS
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(188,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+atS
+apQ
+aoV
+aoV
+atS
+apQ
+apQ
+apQ
+atS
+aCR
+aEn
+aCR
+aHq
+aHq
+aHq
+aHq
+aCR
+aCR
+aCR
+aCR
+aCR
+aTl
+aUL
+aVW
+aXD
+aZj
+baD
+bbG
+aTk
+bdy
+beI
+bgc
+bhF
+biW
+bib
+bki
+bma
+bnl
+bpq
+boB
+bth
+bus
+bvK
+bxm
+byu
+bzN
+byb
+aGs
+bvK
+bBF
+bFU
+bEL
+bGz
+bJZ
+bEC
+bMx
+bNw
+bOF
+bEC
+bQW
+bSj
+bTn
+bUo
+bNq
+bOk
+bOB
+bPs
+bYo
+cab
+cbd
+cbX
+ccT
+bSc
+bSc
+cfu
+cgu
+chA
+bky
+aoV
+bky
+clt
+bns
+aaf
+aaf
+aaf
+aaf
+aaf
+aaS
+aaa
+aaf
+aaa
+acy
+aaa
+aaf
+aaa
+aaf
+aaa
+aaf
+aaa
+aaf
+aaa
+aaS
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(189,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+atS
+aoV
+aoV
+aoV
+atS
+aoV
+aoV
+apQ
+atS
+aaf
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aMZ
+aNZ
+aPp
+aQB
+aNa
+aTk
+aPq
+aPq
+aXC
+aZi
+baC
+aPq
+aPq
+bdy
+beH
+bgc
+bgc
+bgc
+bgc
+bgc
+bgc
+bgc
+bpp
+bgc
+brr
+bsE
+bvK
+bvK
+byt
+byt
+byt
+byt
+byt
+bEy
+bFU
+bFT
+bFU
+bJY
+bEC
+bMv
+bNv
+bMv
+bEC
+bPN
+bPK
+bPN
+bPN
+bPK
+bPN
+bPK
+bPb
+bQG
+bPN
+bPN
+bPN
+bQZ
+bQZ
+bQZ
+bQZ
+bky
+chz
+bky
+bky
+bky
+clt
+bns
+aaa
+aaa
+aaa
+aaa
+aaa
+aaS
+aaa
+crj
+crB
+crS
+aaa
+crj
+crB
+crS
+aaa
+crj
+crB
+crS
+aaa
+aaS
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(190,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+atS
+aoV
+aoV
+aoV
+aaH
+aoV
+aoV
+apQ
+atS
+aaf
+aaa
+aaf
+aaa
+aaa
+aaa
+aaf
+aMZ
+aOb
+aPr
+aQC
+aRU
+aQC
+aQC
+aQC
+czO
+aZl
+baE
+bbH
+bcA
+bdz
+beJ
+bge
+bhH
+biY
+biY
+biY
+bmd
+bnr
+bpr
+bgc
+btj
+buu
+bvM
+bxo
+bqe
+bzO
+bzO
+bzO
+bqe
+bEB
+bFW
+bFT
+bFU
+bFU
+bLi
+bMz
+bNy
+bOH
+bEs
+bQY
+bQX
+bTo
+bUp
+bUp
+bUp
+bXs
+bPL
+bQI
+bPN
+bWr
+cbZ
+bQZ
+cmo
+bky
+bDh
+bky
+chC
+ciL
+btp
+btp
+clv
+cmt
+aaa
+aaa
+aaa
+aaa
+aaa
+aba
+aaf
+crj
+crC
+crS
+aaa
+crj
+crC
+crS
+aaa
+crj
+crC
+crS
+aaf
+aaS
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(191,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+avT
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+atS
+aoV
+aoV
+aoV
+aaH
+aoV
+aoV
+aoV
+atS
+aaf
+aaa
+aaf
+aaa
+aaa
+aaa
+aaf
+aMZ
+aOa
+aVX
+aTm
+aRL
+aTm
+aTm
+aTm
+aWh
+aZk
+aTm
+aTm
+bcz
+aTm
+aTm
+bgd
+bhG
+bhG
+bhG
+blO
+bmc
+bnq
+bgc
+bgc
+bru
+bsF
+btY
+bxn
+bqe
+bzO
+bzO
+bzO
+bqe
+bEA
+bFV
+bFT
+bGA
+bHg
+bFU
+bMy
+bNx
+bOG
+bEs
+bQX
+bSk
+bQX
+bUp
+bUp
+bUp
+bXr
+bPF
+bWr
+bWr
+bWr
+cbY
+bQZ
+btp
+bky
+bky
+bky
+ccp
+cbf
+cbf
+cbf
+clu
+cmt
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+crj
+crC
+crS
+aaf
+crj
+crC
+crS
+aaf
+crj
+crC
+crS
+aaa
+aaS
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(192,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaH
+aoV
+aoV
+aoV
+atS
+aoV
+aoV
+aoV
+atS
+aaf
+aaa
+aaf
+aaa
+aaa
+aaa
+aaf
+aNa
+aOd
+aOU
+aPq
+aNa
+aPq
+aPq
+aPq
+aOU
+aPq
+aPq
+aPq
+bcC
+cBl
+aPq
+bgg
+aNa
+aaa
+bky
+bqh
+bme
+bnx
+bqe
+brA
+brw
+buw
+bvO
+bxq
+byv
+bzO
+bAR
+bzO
+bqe
+bED
+bFX
+bFT
+bGF
+bKa
+bFU
+bMA
+bNz
+bOI
+bEs
+bRa
+bQX
+bTp
+bUp
+bVs
+bUp
+bXt
+bPM
+bZh
+bPN
+cbe
+cbY
+bQZ
+btp
+ceS
+cae
+bky
+ccq
+cdq
+cjE
+ckr
+clw
+cmu
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+crj
+crC
+crS
+aaa
+crj
+crC
+crS
+aaa
+crj
+crC
+crS
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(193,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+atS
+aoV
+aoV
+aoV
+atS
+aoV
+aoV
+aoV
+apQ
+aaf
+aaa
+aaf
+aaa
+aaa
+aaa
+aaf
+aNa
+aOc
+aPs
+aPq
+aNa
+aPq
+aPs
+aPs
+aXG
+aZm
+aPs
+aPq
+bcB
+aPq
+aPs
+bgf
+aNa
+aaf
+bky
+blP
+bns
+boF
+bqe
+brz
+brv
+cBt
+bvN
+bxp
+byv
+bzO
+bAQ
+bCl
+bqe
+bEC
+bEC
+bEM
+bGC
+bEC
+bEC
+bEC
+bEC
+bEC
+bEC
+bQZ
+bQZ
+bQZ
+bQZ
+bQZ
+bQZ
+bQZ
+bUp
+bQZ
+bQZ
+bQZ
+bQZ
+bQZ
+btp
+ceR
+btp
+cbv
+ccq
+bns
+cjD
+cjD
+cjD
+cjD
+cnj
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+crj
+crC
+crS
+aaa
+crj
+crC
+crS
+aaa
+crj
+crC
+crS
+aaa
+aaf
+aaS
+aaS
+aaS
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(194,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aae
+aaa
+atS
+aoV
+aoV
+aoV
+atS
+aoV
+aoV
+aoV
+aoV
+aaf
+aaa
+aaf
+aaf
+aaf
+aaf
+aaf
+aNa
+aNa
+aNa
+aQF
+aNa
+aTn
+aNa
+aNa
+aNa
+aNa
+aNa
+cyp
+aNa
+bdA
+aNa
+aNa
+aNa
+aaa
+bky
+blR
+bns
+boF
+bqe
+brC
+brv
+buv
+bvO
+bxr
+byv
+bzO
+bzO
+bzO
+bqe
+bEF
+bky
+bEO
+bGK
+bKc
+bky
+bMB
+bNA
+btp
+btp
+bRb
+bDh
+bPN
+bUq
+bVt
+bVt
+bUp
+bUp
+bUp
+bPN
+bDh
+bqg
+bky
+bDh
+bDh
+ckS
+bky
+ccq
+cds
+cjD
+ckt
+cly
+cmw
+cnj
+cnj
+cnj
+aaa
+aaa
+aaf
+aaa
+aaa
+crD
+aaa
+aaa
+aaa
+crD
+aaa
+aaa
+aaa
+csZ
+aaa
+aaa
+aaa
+aaf
+aaa
+aaS
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(195,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+apQ
+aoV
+aoV
+aoV
+atS
+aoV
+aoV
+aoV
+aoV
+aaf
+aaa
+aaf
+aaa
+aaa
+aaa
+aaf
+aaf
+aaf
+aNa
+aQE
+aNa
+aQE
+aNa
+aaa
+aaf
+aaa
+aNa
+aQE
+aNa
+aQE
+aNa
+aaf
+aaf
+aaf
+bky
+cyC
+bns
+boF
+bqe
+brB
+brv
+bsG
+bvP
+bxn
+bqe
+bzO
+bzO
+bzO
+bqe
+bEE
+bFY
+bEN
+bGG
+bKb
+bFY
+buz
+buz
+buz
+buz
+buz
+bSl
+bTq
+bTq
+bTq
+bTq
+bTq
+bTq
+bTq
+bTq
+cbf
+cbf
+ccU
+ccU
+ccU
+ccU
+ccU
+ccr
+cdr
+cjF
+cks
+clx
+cmv
+cnk
+cnK
+cyU
+cpi
+cpi
+cpi
+cqJ
+crk
+crk
+crk
+crk
+crk
+crk
+crk
+csE
+cpi
+csY
+cpi
+cpi
+cpi
+ctB
+aaf
+aaS
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(196,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+apQ
+aoV
+aoV
+aoV
+apQ
+aoV
+aoV
+aoV
+aoV
+aaf
+aaa
+aaf
+aaa
+aaa
+aaa
+aaf
+aaf
+aaa
+aNa
+aQE
+aNa
+aQE
+aNa
+aaf
+aaf
+aaf
+aNa
+aQE
+aNa
+aQE
+aNa
+aaa
+aaf
+aaa
+aaf
+aaa
+bns
+boF
+bqe
+brD
+brP
+bsI
+bvO
+bxs
+byw
+bzO
+bzO
+bzO
+bqe
+bEG
+bGa
+bHs
+bGL
+bKd
+bhG
+bMC
+blO
+blO
+bPO
+blO
+bSm
+bTr
+bTr
+bTr
+bTr
+bXu
+bTr
+bTr
+bTr
+cbg
+bTr
+bTr
+bXu
+bTr
+cbg
+bTr
+cct
+cdu
+cjG
+cku
+clz
+cmx
+cnj
+cnj
+cnj
+aaa
+aaa
+aaf
+aaa
+aaa
+crF
+aaa
+aaa
+aaa
+crF
+aaa
+aaa
+aaa
+csZ
+aaa
+aaa
+aaa
+aaf
+aaa
+aaS
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(197,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aoV
+aoV
+aoV
+aoV
+apQ
+aoV
+aoV
+aoV
+aoV
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aNa
+aeR
+aNa
+aQE
+aNa
+aaf
+aaa
+aaf
+aNa
+aQE
+aNa
+afE
+aNa
+aaa
+aaa
+aaa
+aaf
+aaa
+bns
+boF
+bqe
+bqe
+bry
+bsH
+bqe
+bqe
+bqe
+bqe
+bqe
+bqe
+bqe
+bEG
+bFZ
+bHr
+bIS
+bEs
+bEs
+bEs
+bky
+bky
+btp
+bky
+bky
+bky
+bky
+bky
+btp
+bky
+bky
+bky
+bky
+bky
+bky
+bky
+bky
+btp
+bky
+bky
+bky
+bky
+cjD
+cjD
+cjD
+cjD
+cnj
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+crj
+crE
+crS
+aaa
+crj
+crE
+crS
+aaa
+crj
+crE
+crS
+aaa
+aaf
+aaS
+aaS
+aaS
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(198,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aNa
+aQE
+aNa
+aQE
+aNa
+aaf
+aaf
+aaf
+aNa
+aQE
+aNa
+aQE
+aNa
+aaa
+aaa
+aaa
+aaf
+aaf
+bns
+boH
+biY
+brF
+brQ
+bsM
+buz
+buz
+buz
+buz
+buz
+buz
+buz
+bEI
+bFZ
+bHu
+bIV
+bKf
+bLk
+bEs
+bNC
+btp
+btp
+bky
+aaa
+aaa
+aaf
+bky
+btp
+btp
+bYr
+btp
+cad
+cbi
+bky
+ccW
+cdV
+btp
+bky
+cgy
+ccV
+bky
+aaa
+aaa
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+crj
+crE
+crS
+aaa
+crj
+crE
+crS
+aaa
+crj
+crE
+crS
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(199,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aNa
+cyh
+aRW
+aTo
+aNa
+aaa
+aaf
+aaa
+aNa
+aTo
+aRW
+cyr
+aNa
+aaa
+aaa
+aaf
+aaf
+aaf
+bnu
+bhG
+bhG
+bhG
+bhG
+bsJ
+brE
+bhG
+bhG
+bhG
+bhG
+brE
+bhG
+bEH
+bGb
+cBA
+bIU
+bKe
+bLj
+bEs
+bNB
+btp
+bPP
+bky
+aaa
+aaa
+aaf
+bky
+bky
+bky
+bky
+btp
+cac
+cbh
+bky
+ccV
+btp
+btp
+cfv
+cBL
+btp
+bky
+aaf
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+crj
+crE
+crS
+aaf
+crj
+crE
+crS
+aaf
+crj
+crE
+crS
+aaa
+aaS
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aae
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(200,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cwI
+cwI
+cwI
+cxg
+cwI
+afa
+cwI
+crx
+crx
+crx
+cwI
+cxK
+cwI
+cxK
+cwI
+cwI
+cwI
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bky
+btq
+brH
+bvQ
+bxt
+bvQ
+bCm
+bDh
+bEs
+bGd
+bHv
+bIW
+bKe
+bLm
+bEs
+bky
+bky
+bky
+bky
+aaa
+aaa
+aaf
+aaa
+aaf
+bky
+bYs
+btp
+cae
+btp
+btp
+btp
+btp
+ceT
+bky
+btp
+chH
+bky
+aaf
+aaf
+aaa
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+crj
+crE
+crS
+aaa
+crj
+crE
+crS
+aaa
+crj
+crE
+crS
+aaf
+aaS
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(201,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cwI
+cwI
+cwI
+cwI
+cwY
+cxd
+cxe
+cwI
+cwL
+anq
+anq
+anq
+anq
+anq
+cwL
+cwI
+cxQ
+cxQ
+cxU
+cwI
+cwI
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bZi
+bqg
+brG
+brG
+btp
+brG
+brG
+bDg
+bEs
+bGc
+bGc
+bGc
+bEs
+bLl
+bEs
+aaf
+aaa
+aaf
+atS
+aaa
+aaa
+aaf
+aaa
+aaf
+bky
+bky
+bZi
+bZi
+bZi
+bky
+bky
+bky
+blP
+bky
+bky
+bky
+bky
+aaf
+aaf
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aba
+aaa
+crj
+crG
+crS
+aaa
+crj
+crG
+crS
+aaa
+crj
+crG
+crS
+aaa
+aaS
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(202,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aae
+aaa
+aaa
+aaa
+cwI
+crO
+cwK
+cwP
+cwI
+cwY
+cxe
+cxh
+cwI
+cxo
+cwL
+cwL
+cwL
+cwL
+cwL
+cxL
+cwI
+cxQ
+cxQ
+cxU
+cxX
+cxZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bZi
+btp
+brI
+bvR
+btp
+byx
+brI
+bky
+bky
+aaf
+aaf
+aaf
+aaf
+aaa
+aaf
+aaf
+aaa
+aaa
+aaf
+aaa
+aaa
+aaf
+aaa
+aaa
+aag
+aaf
+aaa
+aaa
+aaa
+aaf
+aaf
+bky
+ceU
+bky
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaS
+aaa
+aaf
+aaa
+aaf
+aaa
+aaf
+aaa
+aaf
+aaa
+aaf
+aaa
+aaf
+aaa
+aba
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(203,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+crx
+crN
+cwJ
+cwO
+cwI
+cwY
+cxe
+cxh
+cwI
+cwL
+cxq
+cxq
+cxq
+cxq
+cxq
+cwL
+cxM
+cxQ
+cxQ
+cxV
+cxX
+cxZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+bky
+bky
+bky
+bky
+bky
+bky
+bky
+bky
+aaf
+aaa
+aaa
+aaa
+aaf
+aaa
+aaf
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaf
+aaa
+aaa
+aag
+aaf
+aaa
+aaa
+aaa
+aaa
+aaf
+bky
+cyC
+bky
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaf
+aaS
+aaS
+aaS
+aaS
+aaS
+aaS
+aaS
+aaS
+aaS
+aaS
+aaS
+aaS
+aaS
+aaS
+aaS
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(204,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+crx
+cwF
+cwL
+cwR
+cwI
+crx
+cxf
+crx
+cxm
+cwL
+cxr
+cxr
+cxr
+cxr
+cxr
+cwL
+cwI
+cxR
+cxQ
+cxV
+cxX
+cxZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaa
+aaf
+aaf
+aaf
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaf
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaf
+aag
+aag
+aag
+aaf
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(205,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+crx
+crQ
+cwL
+cwQ
+cwI
+cwZ
+cwL
+cxi
+cxj
+cwL
+cwL
+cwL
+cwL
+cwL
+cwL
+cwL
+cwW
+cwI
+cwI
+cwI
+cxX
+cxZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaf
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(206,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+crx
+cwF
+cwL
+cwL
+cwX
+cwL
+cwL
+anq
+cxj
+cwL
+cxq
+cxq
+cxq
+cxq
+cxq
+cwL
+crx
+cxc
+cxa
+cxc
+cxX
+cxZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaf
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(207,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+crx
+cwG
+amB
+amB
+cwW
+cxa
+cwL
+cxj
+cxj
+cwL
+cxr
+cxr
+cxr
+cxr
+cxr
+cwL
+cxO
+cxa
+cxa
+cxa
+cxX
+cxZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaf
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aae
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(208,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cwI
+crO
+cwN
+cwS
+cwI
+cxc
+cwL
+cwL
+cwL
+cwL
+cwL
+cwL
+cwL
+cwL
+cwL
+cwL
+crx
+cxa
+cxa
+cxa
+cxX
+cxZ
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaf
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aae
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aae
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(209,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cwI
+cwI
+cwI
+cwI
+cxb
+cxa
+cxa
+cxa
+cxp
+cxs
+cxs
+cxs
+cxs
+cxs
+cxp
+crx
+cxS
+cxT
+cxS
+cwI
+cwI
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaf
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(210,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cwI
+crx
+cwI
+crx
+cwI
+cwI
+cwI
+crx
+crx
+crx
+cwI
+cwI
+cwI
+crx
+cwI
+crx
+cwI
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaf
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(211,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaf
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(212,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cxn
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(213,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(214,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aag
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaf
+aae
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(215,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(216,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(217,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(218,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aae
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(219,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(220,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(221,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+cBX
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(222,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(223,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaa
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(224,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+bGf
+bLo
+bGf
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(225,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+bIX
+bGf
+bLn
+bGf
+bIX
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(226,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+bGf
+bGf
+bKh
+bLo
+bMD
+bGf
+bGf
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(227,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+bGe
+bGe
+bIY
+bKg
+bKg
+bKg
+bND
+bGe
+bGe
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(228,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaf
+bGf
+bHw
+bJa
+bKg
+bLp
+bKg
+bNF
+bOJ
+bGf
+aaf
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(229,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+bGe
+bGe
+bIZ
+bKg
+bKg
+bKg
+bNE
+bGe
+bGe
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(230,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+bGf
+bGf
+bKi
+bLr
+bME
+bNG
+bNG
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(231,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+bIX
+bGf
+bLq
+bGf
+bIX
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(232,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+bGf
+bGe
+bGf
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(233,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaf
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aae
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(234,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaf
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(235,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(236,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaf
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(237,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(238,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(239,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(240,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aHr
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(241,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aHr
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(242,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aHr
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(243,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(244,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(245,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(246,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(247,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aHr
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aHr
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(248,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aHr
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(249,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(250,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(251,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(252,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(253,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(254,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+"}
+(255,1,1) = {"
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
+aaa
"}
diff --git a/_maps/map_files/generic/lavaland.dmm b/_maps/map_files/generic/lavaland.dmm
index c7e02ab05aa..d6e9f7e63bc 100644
--- a/_maps/map_files/generic/lavaland.dmm
+++ b/_maps/map_files/generic/lavaland.dmm
@@ -720,7 +720,7 @@
icon_state = "1-4"
},
/mob/living/simple_animal/bot/secbot/beepsky{
- desc = "Powered by tears and swet of laborer.";
+ desc = "Powered by the tears and sweat of laborers.";
name = "Prison Ofitser"
},
/turf/open/floor/plasteel{
@@ -1297,25 +1297,25 @@
id = "mining_internal"
},
/obj/structure/plasticflaps,
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
/obj/effect/turf_decal/stripes/line{
dir = 9
},
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
+ },
/area/mine/production)
"cG" = (
/obj/machinery/conveyor{
dir = 8;
id = "mining_internal"
},
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
/turf/open/floor/plating{
tag = "icon-warnplate (NORTH)";
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
/area/mine/production)
"cH" = (
/obj/machinery/light/small,
@@ -1333,13 +1333,13 @@
/obj/machinery/light/small{
dir = 4
},
+/obj/effect/turf_decal/stripes/corner{
+ dir = 4
+ },
/turf/open/floor/plating{
tag = "icon-warnplatecorner (EAST)";
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/obj/effect/turf_decal/stripes/corner{
- dir = 4
- },
/area/mine/production)
"cJ" = (
/obj/machinery/airalarm{
@@ -2151,10 +2151,10 @@
frequency = 1439;
pixel_y = 23
},
+/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/obj/effect/turf_decal/bot,
/area/mine/production)
"eu" = (
/obj/structure/extinguisher_cabinet{
@@ -2173,16 +2173,16 @@
/area/mine/production)
"ev" = (
/obj/structure/ore_box,
+/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/obj/effect/turf_decal/bot,
/area/mine/production)
"ew" = (
+/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/obj/effect/turf_decal/bot,
/area/mine/production)
"ex" = (
/obj/structure/cable{
@@ -2318,10 +2318,10 @@
/obj/machinery/light/small{
dir = 4
},
+/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/obj/effect/turf_decal/delivery,
/area/mine/production)
"eM" = (
/obj/structure/cable{
@@ -2451,10 +2451,10 @@
icon_state = "crateopen";
opened = 1
},
+/obj/effect/turf_decal/bot,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/obj/effect/turf_decal/bot,
/area/mine/production)
"eX" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
@@ -2488,12 +2488,12 @@
input_dir = 1;
output_dir = 2
},
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
/obj/effect/turf_decal/stripes/line{
dir = 9
},
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
+ },
/area/mine/production)
"fa" = (
/obj/machinery/door/airlock/maintenance{
@@ -2572,13 +2572,13 @@
dir = 2;
id = "mining_internal"
},
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
/turf/open/floor/plating{
tag = "icon-warnplate (WEST)";
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
/area/mine/production)
"fj" = (
/turf/open/floor/plasteel{
@@ -2678,12 +2678,12 @@
dir = 1;
output_dir = 2
},
-/turf/open/floor/plating{
- baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
- },
/obj/effect/turf_decal/stripes/line{
dir = 9
},
+/turf/open/floor/plating{
+ baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
+ },
/area/mine/production)
"fv" = (
/obj/machinery/atmospherics/components/unary/vent_pump{
@@ -2765,10 +2765,10 @@
},
/area/mine/laborcamp)
"fF" = (
+/obj/effect/turf_decal/delivery,
/turf/open/floor/plasteel{
baseturf = /turf/open/floor/plating/lava/smooth/lava_land_surface
},
-/obj/effect/turf_decal/delivery,
/area/mine/laborcamp)
"fG" = (
/obj/machinery/mineral/processing_unit{
@@ -12288,7 +12288,7 @@ fK
fK
fK
dq
-fP
+dq
fL
fK
dq
diff --git a/_maps/map_files/generic/z2.dmm b/_maps/map_files/generic/z2.dmm
index d8308728c0b..d1e2981c1f7 100644
--- a/_maps/map_files/generic/z2.dmm
+++ b/_maps/map_files/generic/z2.dmm
@@ -441,7 +441,7 @@
/obj/item/weapon/surgicaldrill,
/turf/open/floor/holofloor{
tag = "icon-white_warn (NORTHWEST)";
- icon_state = "white_warn";
+ icon_state = "white";
dir = 9
},
/area/holodeck/rec_center/medical)
@@ -450,7 +450,7 @@
/obj/item/weapon/hemostat,
/turf/open/floor/holofloor{
tag = "icon-white_warn (NORTH)";
- icon_state = "white_warn";
+ icon_state = "white";
dir = 1
},
/area/holodeck/rec_center/medical)
@@ -462,7 +462,7 @@
/obj/item/weapon/circular_saw,
/turf/open/floor/holofloor{
tag = "icon-white_warn (NORTH)";
- icon_state = "white_warn";
+ icon_state = "white";
dir = 1
},
/area/holodeck/rec_center/medical)
@@ -471,7 +471,7 @@
/obj/item/weapon/retractor,
/turf/open/floor/holofloor{
tag = "icon-white_warn (NORTH)";
- icon_state = "white_warn";
+ icon_state = "white";
dir = 1
},
/area/holodeck/rec_center/medical)
@@ -481,7 +481,7 @@
/obj/item/weapon/cautery,
/turf/open/floor/holofloor{
tag = "icon-white_warn (NORTHEAST)";
- icon_state = "white_warn";
+ icon_state = "white";
dir = 5
},
/area/holodeck/rec_center/medical)
@@ -579,7 +579,7 @@
/obj/item/weapon/razor,
/turf/open/floor/holofloor{
tag = "icon-white_warn (WEST)";
- icon_state = "white_warn";
+ icon_state = "white";
dir = 8
},
/area/holodeck/rec_center/medical)
@@ -591,7 +591,7 @@
"bK" = (
/turf/open/floor/holofloor{
tag = "icon-white_warn (EAST)";
- icon_state = "white_warn";
+ icon_state = "white";
dir = 4
},
/area/holodeck/rec_center/medical)
@@ -659,25 +659,25 @@
"bX" = (
/turf/open/floor/holofloor{
tag = "icon-white_warn (SOUTHWEST)";
- icon_state = "white_warn";
+ icon_state = "white";
dir = 10
},
/area/holodeck/rec_center/medical)
"bY" = (
/turf/open/floor/holofloor{
- icon_state = "white_warn"
+ icon_state = "white"
},
/area/holodeck/rec_center/medical)
"bZ" = (
/obj/structure/table/optable,
/turf/open/floor/holofloor{
- icon_state = "white_warn"
+ icon_state = "white"
},
/area/holodeck/rec_center/medical)
"ca" = (
/obj/machinery/computer/operating,
/turf/open/floor/holofloor{
- icon_state = "white_warn"
+ icon_state = "white"
},
/area/holodeck/rec_center/medical)
"cb" = (
@@ -687,7 +687,7 @@
/obj/item/clothing/mask/surgical,
/turf/open/floor/holofloor{
tag = "icon-white_warn (SOUTHEAST)";
- icon_state = "white_warn";
+ icon_state = "white";
dir = 6
},
/area/holodeck/rec_center/medical)
@@ -744,14 +744,14 @@
/obj/machinery/reagentgrinder,
/turf/open/floor/holofloor{
tag = "icon-white_warn (NORTHWEST)";
- icon_state = "white_warn";
+ icon_state = "white";
dir = 9
},
/area/holodeck/rec_center/medical)
"cl" = (
/turf/open/floor/holofloor{
tag = "icon-white_warn (NORTHEAST)";
- icon_state = "white_warn";
+ icon_state = "white";
dir = 5
},
/area/holodeck/rec_center/medical)
@@ -844,14 +844,14 @@
/obj/machinery/chem_master,
/turf/open/floor/holofloor{
tag = "icon-white_warn (SOUTHWEST)";
- icon_state = "white_warn";
+ icon_state = "white";
dir = 10
},
/area/holodeck/rec_center/medical)
"cz" = (
/turf/open/floor/holofloor{
tag = "icon-white_warn (SOUTHEAST)";
- icon_state = "white_warn";
+ icon_state = "white";
dir = 6
},
/area/holodeck/rec_center/medical)
@@ -982,7 +982,7 @@
},
/turf/open/floor/holofloor{
tag = "icon-white_warn (NORTHWEST)";
- icon_state = "white_warn";
+ icon_state = "white";
dir = 9
},
/area/holodeck/rec_center/medical)
@@ -998,7 +998,7 @@
},
/turf/open/floor/holofloor{
tag = "icon-white_warn (NORTHEAST)";
- icon_state = "white_warn";
+ icon_state = "white";
dir = 5
},
/area/holodeck/rec_center/medical)
@@ -1042,7 +1042,7 @@
"de" = (
/turf/open/floor/holofloor{
tag = "icon-white_warn (WEST)";
- icon_state = "white_warn";
+ icon_state = "white";
dir = 8
},
/area/holodeck/rec_center/medical)
@@ -1057,14 +1057,14 @@
/obj/machinery/door/window/westleft,
/turf/open/floor/holofloor{
tag = "icon-white_warn (NORTH)";
- icon_state = "white_warn";
+ icon_state = "white";
dir = 1
},
/area/holodeck/rec_center/medical)
"dh" = (
/turf/open/floor/holofloor{
tag = "icon-white_warn (NORTH)";
- icon_state = "white_warn";
+ icon_state = "white";
dir = 1
},
/area/holodeck/rec_center/medical)
@@ -1079,7 +1079,7 @@
},
/turf/open/floor/holofloor{
tag = "icon-white_warn (SOUTHWEST)";
- icon_state = "white_warn";
+ icon_state = "white";
dir = 10
},
/area/holodeck/rec_center/medical)
@@ -1094,7 +1094,7 @@
density = 0
},
/turf/open/floor/holofloor{
- icon_state = "white_warn"
+ icon_state = "white"
},
/area/holodeck/rec_center/medical)
"dl" = (
@@ -1107,7 +1107,7 @@
dir = 1
},
/turf/open/floor/holofloor{
- icon_state = "white_warn"
+ icon_state = "white"
},
/area/holodeck/rec_center/medical)
"dm" = (
@@ -1115,7 +1115,7 @@
density = 0
},
/turf/open/floor/holofloor{
- icon_state = "white_warn"
+ icon_state = "white"
},
/area/holodeck/rec_center/medical)
"dn" = (
@@ -1125,7 +1125,7 @@
},
/turf/open/floor/holofloor{
tag = "icon-white_warn (SOUTHEAST)";
- icon_state = "white_warn";
+ icon_state = "white";
dir = 6
},
/area/holodeck/rec_center/medical)
@@ -1345,7 +1345,7 @@
},
/turf/open/floor/holofloor{
tag = "icon-white_warn (NORTHWEST)";
- icon_state = "white_warn";
+ icon_state = "white";
dir = 9
},
/area/holodeck/rec_center/firingrange)
@@ -1355,7 +1355,7 @@
},
/turf/open/floor/holofloor{
tag = "icon-white_warn (NORTH)";
- icon_state = "white_warn";
+ icon_state = "white";
dir = 1
},
/area/holodeck/rec_center/firingrange)
@@ -1368,7 +1368,7 @@
},
/turf/open/floor/holofloor{
tag = "icon-white_warn (NORTHEAST)";
- icon_state = "white_warn";
+ icon_state = "white";
dir = 5
},
/area/holodeck/rec_center/firingrange)
@@ -1594,7 +1594,7 @@
},
/turf/open/floor/holofloor{
tag = "icon-white_warn (WEST)";
- icon_state = "white_warn";
+ icon_state = "white";
dir = 8
},
/area/holodeck/rec_center/firingrange)
@@ -1611,7 +1611,7 @@
},
/turf/open/floor/holofloor{
tag = "icon-white_warn (EAST)";
- icon_state = "white_warn";
+ icon_state = "white";
dir = 4
},
/area/holodeck/rec_center/firingrange)
@@ -1731,13 +1731,13 @@
},
/turf/open/floor/holofloor{
tag = "icon-white_warn (SOUTHWEST)";
- icon_state = "white_warn";
+ icon_state = "white";
dir = 10
},
/area/holodeck/rec_center/firingrange)
"eH" = (
/turf/open/floor/holofloor{
- icon_state = "white_warn"
+ icon_state = "white"
},
/area/holodeck/rec_center/firingrange)
"eI" = (
@@ -1746,7 +1746,7 @@
},
/turf/open/floor/holofloor{
tag = "icon-white_warn (SOUTHEAST)";
- icon_state = "white_warn";
+ icon_state = "white";
dir = 6
},
/area/holodeck/rec_center/firingrange)
@@ -2427,66 +2427,66 @@
/turf/open/floor/plating,
/area/ctf)
"gH" = (
-/turf/open/floor/plasteel/black,
/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/black,
/area/ctf)
"gI" = (
-/turf/open/floor/plasteel/darkblue/corner,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/obj/effect/turf_decal/stripes/line{
dir = 9
},
+/turf/open/floor/plasteel/darkblue/corner,
/area/ctf)
"gJ" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
/turf/open/floor/plasteel/darkblue/corner{
tag = "icon-darkbluecorners (WEST)";
dir = 8
},
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
/area/ctf)
"gK" = (
-/turf/open/floor/plasteel/black,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel/black,
/area/ctf)
"gL" = (
-/turf/open/floor/plasteel/darkblue/corner,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel/darkblue/corner,
/area/ctf)
"gM" = (
-/turf/open/floor/plasteel/black,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
/obj/effect/turf_decal/stripes/line{
dir = 5
},
+/turf/open/floor/plasteel/black,
/area/ctf)
"gN" = (
/obj/machinery/power/emitter/energycannon,
/turf/open/floor/plating,
/area/ctf)
"gO" = (
-/turf/open/floor/plasteel/black,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plasteel/black,
/area/ctf)
"gP" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 8
+ },
/turf/open/floor/plasteel/darkblue/corner{
tag = "icon-darkbluecorners (EAST)";
dir = 4
},
-/obj/effect/turf_decal/stripes/line{
- dir = 8
- },
/area/ctf)
"gQ" = (
/turf/open/floor/plasteel/darkblue/corner{
@@ -2501,39 +2501,39 @@
},
/area/ctf)
"gS" = (
+/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plating{
icon_plating = "warnplate"
},
-/obj/effect/turf_decal/stripes/line,
/area/ctf)
"gT" = (
-/turf/open/floor/plasteel/black,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel/black,
/area/ctf)
"gU" = (
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plating,
/area/ctf)
"gV" = (
/turf/open/floor/plating,
/area/ctf)
"gW" = (
-/turf/open/floor/plating{
- luminosity = 2
- },
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plating{
+ luminosity = 2
+ },
/area/ctf)
"gX" = (
-/turf/open/floor/plasteel/darkblue/corner,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel/darkblue/corner,
/area/ctf)
"gY" = (
/turf/open/floor/plasteel/darkblue/corner{
@@ -2545,39 +2545,39 @@
/turf/open/floor/plasteel/darkblue/corner,
/area/ctf)
"ha" = (
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plating,
/area/ctf)
"hb" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 10
+ },
/turf/open/floor/plasteel/darkblue/corner{
tag = "icon-darkbluecorners (EAST)";
dir = 4
},
-/obj/effect/turf_decal/stripes/line{
- dir = 10
- },
/area/ctf)
"hc" = (
+/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel/darkblue/corner{
tag = "icon-darkbluecorners (NORTH)";
dir = 1
},
-/obj/effect/turf_decal/stripes/line,
/area/ctf)
"hd" = (
+/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel/darkblue/corner{
tag = "icon-darkbluecorners (EAST)";
dir = 4
},
-/obj/effect/turf_decal/stripes/line,
/area/ctf)
"he" = (
-/turf/open/floor/plasteel/black,
/obj/effect/turf_decal/stripes/line{
dir = 6
},
+/turf/open/floor/plasteel/black,
/area/ctf)
"hf" = (
/obj/machinery/power/emitter/energycannon{
@@ -2592,22 +2592,22 @@
/turf/open/floor/plasteel/blue,
/area/ctf)
"hh" = (
-/turf/open/floor/plasteel/circuit,
/obj/effect/turf_decal/stripes/line{
dir = 9
},
+/turf/open/floor/plasteel/circuit,
/area/ctf)
"hi" = (
-/turf/open/floor/plasteel/circuit,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel/circuit,
/area/ctf)
"hj" = (
-/turf/open/floor/plasteel/circuit,
/obj/effect/turf_decal/stripes/line{
dir = 5
},
+/turf/open/floor/plasteel/circuit,
/area/ctf)
"hk" = (
/turf/open/floor/plasteel/darkred,
@@ -2620,39 +2620,39 @@
/turf/closed/indestructible/rock/snow,
/area/syndicate_mothership)
"hn" = (
-/turf/open/floor/plasteel/circuit,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel/circuit,
/area/ctf)
"ho" = (
/turf/open/floor/plasteel/circuit,
/area/ctf)
"hp" = (
-/turf/open/floor/plasteel/circuit,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plasteel/circuit,
/area/ctf)
"hq" = (
/turf/open/floor/plating/asteroid/snow/atmosphere,
/area/syndicate_mothership)
"hr" = (
-/turf/open/floor/plasteel/circuit,
/obj/effect/turf_decal/stripes/line,
/obj/effect/turf_decal/stripes/line{
dir = 10
},
+/turf/open/floor/plasteel/circuit,
/area/ctf)
"hs" = (
-/turf/open/floor/plasteel/circuit,
/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/circuit,
/area/ctf)
"ht" = (
-/turf/open/floor/plasteel/circuit,
/obj/effect/turf_decal/stripes/line{
dir = 6
},
+/turf/open/floor/plasteel/circuit,
/area/ctf)
"hu" = (
/obj/structure/barricade/security/ctf,
@@ -2663,71 +2663,71 @@
/turf/open/floor/plasteel/red,
/area/ctf)
"hw" = (
-/turf/open/floor/plasteel/darkblue/side{
- tag = "icon-darkblue (NORTHWEST)";
+/obj/effect/turf_decal/stripes/line{
dir = 9
},
-/obj/effect/turf_decal/stripes/line{
+/turf/open/floor/plasteel/darkblue/side{
+ tag = "icon-darkblue (NORTHWEST)";
dir = 9
},
/area/ctf)
"hx" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
/turf/open/floor/plasteel/darkblue/side{
tag = "icon-darkblue (NORTH)";
dir = 1
},
+/area/ctf)
+"hy" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
-/area/ctf)
-"hy" = (
/turf/open/floor/plasteel/darkblue/side{
tag = "icon-darkblue (NORTHEAST)";
dir = 5
},
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
/area/ctf)
"hz" = (
-/turf/open/floor/plasteel/circuit/gcircuit/off,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel/circuit/gcircuit/off,
/area/ctf)
"hA" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 1
+ },
/turf/open/floor/plasteel/darkred/side{
tag = "icon-darkred (NORTHWEST)";
dir = 9
},
+/area/ctf)
+"hB" = (
/obj/effect/turf_decal/stripes/line{
dir = 1
},
-/area/ctf)
-"hB" = (
/turf/open/floor/plasteel/darkred/side{
tag = "icon-darkred (NORTH)";
dir = 1
},
-/obj/effect/turf_decal/stripes/line{
- dir = 1
- },
/area/ctf)
"hC" = (
-/turf/open/floor/plasteel/darkred/side{
- tag = "icon-darkred (NORTHEAST)";
+/obj/effect/turf_decal/stripes/line{
dir = 5
},
-/obj/effect/turf_decal/stripes/line{
+/turf/open/floor/plasteel/darkred/side{
+ tag = "icon-darkred (NORTHEAST)";
dir = 5
},
/area/ctf)
"hD" = (
-/turf/open/floor/plasteel/darkblue/side{
- tag = "icon-darkblue (WEST)";
+/obj/effect/turf_decal/stripes/line{
dir = 8
},
-/obj/effect/turf_decal/stripes/line{
+/turf/open/floor/plasteel/darkblue/side{
+ tag = "icon-darkblue (WEST)";
dir = 8
},
/area/ctf)
@@ -2735,11 +2735,11 @@
/turf/open/floor/plasteel/circuit/gcircuit/off,
/area/ctf)
"hF" = (
-/turf/open/floor/plasteel/darkred/side{
- tag = "icon-darkred (EAST)";
+/obj/effect/turf_decal/stripes/line{
dir = 4
},
-/obj/effect/turf_decal/stripes/line{
+/turf/open/floor/plasteel/darkred/side{
+ tag = "icon-darkred (EAST)";
dir = 4
},
/area/ctf)
@@ -2770,127 +2770,127 @@
/turf/open/space,
/area/space)
"hN" = (
-/turf/open/floor/plasteel/darkblue/side{
- tag = "icon-darkblue (SOUTHWEST)";
+/obj/effect/turf_decal/stripes/line{
dir = 10
},
-/obj/effect/turf_decal/stripes/line{
+/turf/open/floor/plasteel/darkblue/side{
+ tag = "icon-darkblue (SOUTHWEST)";
dir = 10
},
/area/ctf)
"hO" = (
-/turf/open/floor/plasteel/darkblue/side,
/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/darkblue/side,
/area/ctf)
"hP" = (
+/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel/darkblue/side{
tag = "icon-darkblue (SOUTHEAST)";
dir = 6
},
-/obj/effect/turf_decal/stripes/line,
/area/ctf)
"hQ" = (
-/turf/open/floor/plasteel/circuit/gcircuit/off,
/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/circuit/gcircuit/off,
/area/ctf)
"hR" = (
+/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel/darkred/side{
tag = "icon-darkred (SOUTHWEST)";
dir = 10
},
-/obj/effect/turf_decal/stripes/line,
/area/ctf)
"hS" = (
-/turf/open/floor/plasteel/darkred/side,
/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/darkred/side,
/area/ctf)
"hT" = (
-/turf/open/floor/plasteel/darkred/side{
- tag = "icon-darkred (SOUTHEAST)";
+/obj/effect/turf_decal/stripes/line{
dir = 6
},
-/obj/effect/turf_decal/stripes/line{
+/turf/open/floor/plasteel/darkred/side{
+ tag = "icon-darkred (SOUTHEAST)";
dir = 6
},
/area/ctf)
"hU" = (
-/turf/open/floor/plasteel/circuit/rcircuit,
/obj/effect/turf_decal/stripes/line{
dir = 9
},
+/turf/open/floor/plasteel/circuit/rcircuit,
/area/ctf)
"hV" = (
-/turf/open/floor/plasteel/circuit/rcircuit,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel/circuit/rcircuit,
/area/ctf)
"hW" = (
-/turf/open/floor/plasteel/circuit/rcircuit,
/obj/effect/turf_decal/stripes/line{
dir = 5
},
+/turf/open/floor/plasteel/circuit/rcircuit,
/area/ctf)
"hX" = (
-/turf/open/floor/plasteel/circuit/rcircuit,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel/circuit/rcircuit,
/area/ctf)
"hY" = (
-/turf/open/floor/plasteel/circuit/rcircuit,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plasteel/circuit/rcircuit,
/area/ctf)
"hZ" = (
-/turf/open/floor/plasteel/circuit/rcircuit,
/obj/effect/turf_decal/stripes/line{
dir = 10
},
+/turf/open/floor/plasteel/circuit/rcircuit,
/area/ctf)
"ia" = (
-/turf/open/floor/plasteel/circuit/rcircuit,
/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel/circuit/rcircuit,
/area/ctf)
"ib" = (
-/turf/open/floor/plasteel/circuit/rcircuit,
/obj/effect/turf_decal/stripes/line{
dir = 6
},
+/turf/open/floor/plasteel/circuit/rcircuit,
/area/ctf)
"ic" = (
-/turf/open/floor/plasteel/black,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel/black,
/area/ctf)
"id" = (
-/turf/open/floor/plasteel/darkred/corner,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel/darkred/corner,
/area/ctf)
"ie" = (
-/turf/open/floor/plasteel/darkred/corner{
- tag = "icon-darkredcorners (WEST)";
- dir = 8
- },
/obj/effect/turf_decal/stripes/line{
dir = 1
},
-/area/ctf)
-"if" = (
/turf/open/floor/plasteel/darkred/corner{
tag = "icon-darkredcorners (WEST)";
dir = 8
},
+/area/ctf)
+"if" = (
/obj/effect/turf_decal/stripes/line{
dir = 5
},
+/turf/open/floor/plasteel/darkred/corner{
+ tag = "icon-darkredcorners (WEST)";
+ dir = 8
+ },
/area/ctf)
"ig" = (
/turf/open/floor/plasteel/darkred/corner,
@@ -2902,13 +2902,13 @@
},
/area/ctf)
"ii" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
/turf/open/floor/plasteel/darkred/corner{
tag = "icon-darkredcorners (NORTH)";
dir = 1
},
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
/area/ctf)
"ij" = (
/turf/open/floor/plasteel/darkred/corner{
@@ -2923,42 +2923,42 @@
},
/area/ctf)
"il" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 4
+ },
/turf/open/floor/plasteel/darkred/corner{
tag = "icon-darkredcorners (WEST)";
dir = 8
},
-/obj/effect/turf_decal/stripes/line{
- dir = 4
- },
/area/ctf)
"im" = (
-/turf/open/floor/plasteel/black,
/obj/effect/turf_decal/stripes/line{
dir = 10
},
+/turf/open/floor/plasteel/black,
/area/ctf)
"in" = (
+/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel/darkred/corner{
tag = "icon-darkredcorners (EAST)";
dir = 4
},
-/obj/effect/turf_decal/stripes/line,
/area/ctf)
"io" = (
+/obj/effect/turf_decal/stripes/line,
/turf/open/floor/plasteel/darkred/corner{
tag = "icon-darkredcorners (NORTH)";
dir = 1
},
-/obj/effect/turf_decal/stripes/line,
/area/ctf)
"ip" = (
+/obj/effect/turf_decal/stripes/line{
+ dir = 6
+ },
/turf/open/floor/plasteel/darkred/corner{
tag = "icon-darkredcorners (NORTH)";
dir = 1
},
-/obj/effect/turf_decal/stripes/line{
- dir = 6
- },
/area/ctf)
"iq" = (
/turf/closed/indestructible/riveted,
@@ -2996,16 +2996,16 @@
/obj/structure/table/reinforced,
/obj/item/weapon/paper_bin,
/obj/item/weapon/pen,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
/area/centcom/control)
"iy" = (
/obj/structure/table/reinforced,
/obj/item/weapon/crowbar/red,
/obj/item/weapon/tank/internals/emergency_oxygen/engi,
/obj/item/clothing/mask/gas,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
/area/centcom/control)
"iz" = (
/obj/structure/grille,
@@ -3026,8 +3026,8 @@
/obj/machinery/airalarm{
pixel_y = 23
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
/area/centcom/control)
"iB" = (
/obj/structure/table/reinforced,
@@ -3035,8 +3035,8 @@
/obj/machinery/light{
dir = 1
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
/area/centcom/control)
"iC" = (
/obj/item/weapon/storage/box/emps{
@@ -3053,21 +3053,21 @@
pixel_x = 0;
pixel_y = 32
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
/area/centcom/control)
"iD" = (
/obj/structure/table/reinforced,
/obj/item/weapon/restraints/handcuffs/cable/zipties,
/obj/item/device/assembly/flash/handheld,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
/area/centcom/control)
"iE" = (
/obj/structure/table/reinforced,
/obj/item/weapon/storage/fancy/donut_box,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
/area/centcom/control)
"iF" = (
/turf/open/floor/plasteel/vault{
@@ -3090,10 +3090,10 @@
/obj/item/weapon/gun/ballistic/automatic/wt550,
/obj/item/clothing/head/helmet/swat/nanotrasen,
/obj/item/weapon/crowbar/red,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plasteel,
/area/centcom/control)
"iJ" = (
/obj/structure/closet/secure_closet/security,
@@ -3101,10 +3101,10 @@
/obj/item/weapon/gun/ballistic/automatic/wt550,
/obj/item/clothing/head/helmet/swat/nanotrasen,
/obj/item/weapon/crowbar/red,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel,
/area/centcom/control)
"iK" = (
/turf/closed/indestructible/riveted,
@@ -3123,16 +3123,16 @@
/turf/closed/indestructible/riveted,
/area/centcom/prison)
"iO" = (
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 9
},
+/turf/open/floor/plasteel,
/area/centcom/control)
"iP" = (
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 5
},
+/turf/open/floor/plasteel,
/area/centcom/control)
"iQ" = (
/obj/machinery/status_display{
@@ -3145,8 +3145,8 @@
/turf/closed/indestructible/riveted,
/area/centcom/supply)
"iR" = (
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
/area/centcom/supply)
"iS" = (
/turf/open/floor/plasteel/loadingarea{
@@ -3172,16 +3172,16 @@
},
/area/centcom/supply)
"iV" = (
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel,
/area/centcom/control)
"iW" = (
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plasteel,
/area/centcom/control)
"iX" = (
/obj/structure/closet/secure_closet/security,
@@ -3189,10 +3189,10 @@
/obj/item/weapon/gun/ballistic/automatic/wt550,
/obj/item/clothing/head/helmet/swat/nanotrasen,
/obj/item/weapon/crowbar/red,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 6
},
+/turf/open/floor/plasteel,
/area/centcom/control)
"iY" = (
/obj/structure/closet/secure_closet/security,
@@ -3200,10 +3200,10 @@
/obj/item/weapon/gun/ballistic/automatic/wt550,
/obj/item/clothing/head/helmet/swat/nanotrasen,
/obj/item/weapon/crowbar/red,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 10
},
+/turf/open/floor/plasteel,
/area/centcom/control)
"iZ" = (
/obj/structure/grille,
@@ -3225,10 +3225,10 @@
opacity = 1;
req_access_txt = "0"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel,
/area/centcom/control)
"jd" = (
/obj/structure/grille,
@@ -3248,10 +3248,10 @@
id = "QMLoad2";
movedir = 2
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel,
/area/centcom/supply)
"jf" = (
/obj/machinery/conveyor_switch/oneway{
@@ -3272,25 +3272,25 @@
/obj/structure/reagent_dispensers/peppertank{
pixel_x = -32
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel,
/area/centcom/control)
"ji" = (
/obj/structure/table/reinforced,
/obj/machinery/recharger,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel,
/area/centcom/control)
"jj" = (
/obj/machinery/vending/security,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel,
/area/centcom/control)
"jk" = (
/obj/structure/extinguisher_cabinet{
@@ -3298,10 +3298,10 @@
pixel_x = 24;
pixel_y = 0
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plasteel,
/area/centcom/control)
"jl" = (
/obj/machinery/door/poddoor{
@@ -3316,12 +3316,12 @@
id = "QMLoad2";
movedir = 8
},
-/turf/open/floor/plasteel{
- tag = "icon-plasteel_warn_end (WEST)"
- },
/obj/effect/turf_decal/stripes/end{
dir = 8
},
+/turf/open/floor/plasteel{
+ tag = "icon-plasteel_warn_end (WEST)"
+ },
/area/centcom/supply)
"jm" = (
/obj/structure/plasticflaps,
@@ -3330,12 +3330,12 @@
id = "QMLoad2";
movedir = 8
},
-/turf/open/floor/plasteel{
- tag = "icon-plasteel_warn_side (EAST)"
- },
/obj/effect/turf_decal/stripes/line{
dir = 2
},
+/turf/open/floor/plasteel{
+ tag = "icon-plasteel_warn_side (EAST)"
+ },
/area/centcom/supply)
"jn" = (
/obj/machinery/door/poddoor{
@@ -3350,12 +3350,12 @@
id = "QMLoad2";
movedir = 8
},
-/turf/open/floor/plasteel{
- tag = "icon-plasteel_warn_side (EAST)"
- },
/obj/effect/turf_decal/stripes/line{
dir = 2
},
+/turf/open/floor/plasteel{
+ tag = "icon-plasteel_warn_side (EAST)"
+ },
/area/centcom/supply)
"jo" = (
/obj/machinery/conveyor{
@@ -3363,70 +3363,70 @@
id = "QMLoad2";
movedir = 2
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/end,
+/turf/open/floor/plasteel,
/area/centcom/supply)
"jp" = (
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 5
},
+/turf/open/floor/plasteel,
/area/centcom/supply)
"jq" = (
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
/area/centcom/supply)
"jr" = (
/obj/item/stack/packageWrap,
/obj/item/weapon/hand_labeler,
/obj/structure/table,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
/area/centcom/supply)
"js" = (
/obj/machinery/door/airlock/external{
name = "Supply Shuttle";
req_access_txt = "106"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel,
/area/centcom/supply)
"jt" = (
/obj/structure/fans/tiny,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
/area/centcom/supply)
"ju" = (
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plasteel,
/area/centcom/supply)
"jv" = (
/obj/effect/decal/cleanable/dirt,
/obj/structure/filingcabinet/filingcabinet,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
/area/centcom/supply)
"jw" = (
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/corner{
dir = 8
},
+/turf/open/floor/plasteel,
/area/centcom/control)
"jx" = (
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel,
/area/centcom/control)
"jy" = (
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/corner{
dir = 4
},
+/turf/open/floor/plasteel,
/area/centcom/control)
"jz" = (
/obj/machinery/button/door{
@@ -3445,8 +3445,8 @@
pixel_y = 5
},
/obj/machinery/computer/cargo,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
/area/centcom/supply)
"jA" = (
/obj/machinery/airalarm{
@@ -3454,10 +3454,10 @@
pixel_x = -23;
pixel_y = 0
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel,
/area/centcom/control)
"jB" = (
/turf/open/floor/plasteel/vault{
@@ -3472,10 +3472,10 @@
pixel_y = 0;
tag = "icon-nboard00 (WEST)"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plasteel,
/area/centcom/control)
"jD" = (
/obj/docking_port/stationary{
@@ -3498,18 +3498,18 @@
/turf/closed/indestructible/riveted,
/area/centcom/supply)
"jG" = (
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/corner,
+/turf/open/floor/plasteel,
/area/centcom/control)
"jH" = (
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
/area/centcom/control)
"jI" = (
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/corner{
dir = 1
},
+/turf/open/floor/plasteel,
/area/centcom/control)
"jJ" = (
/obj/machinery/door/poddoor{
@@ -3523,12 +3523,12 @@
dir = 8;
id = "QMLoad"
},
-/turf/open/floor/plasteel{
- tag = "icon-plasteel_warn_end (WEST)"
- },
/obj/effect/turf_decal/stripes/end{
dir = 8
},
+/turf/open/floor/plasteel{
+ tag = "icon-plasteel_warn_end (WEST)"
+ },
/area/centcom/supply)
"jK" = (
/obj/structure/plasticflaps,
@@ -3536,12 +3536,12 @@
dir = 8;
id = "QMLoad"
},
-/turf/open/floor/plasteel{
- tag = "icon-plasteel_warn_side (EAST)"
- },
/obj/effect/turf_decal/stripes/line{
dir = 2
},
+/turf/open/floor/plasteel{
+ tag = "icon-plasteel_warn_side (EAST)"
+ },
/area/centcom/supply)
"jL" = (
/obj/machinery/door/poddoor{
@@ -3555,35 +3555,35 @@
dir = 8;
id = "QMLoad"
},
-/turf/open/floor/plasteel{
- tag = "icon-plasteel_warn_side (EAST)"
- },
/obj/effect/turf_decal/stripes/line{
dir = 2
},
+/turf/open/floor/plasteel{
+ tag = "icon-plasteel_warn_side (EAST)"
+ },
/area/centcom/supply)
"jM" = (
/obj/machinery/conveyor{
dir = 8;
id = "QMLoad"
},
-/turf/open/floor/plasteel{
- tag = "icon-plasteel_warn_end (NORTH)"
- },
/obj/effect/turf_decal/stripes/end{
dir = 1
},
+/turf/open/floor/plasteel{
+ tag = "icon-plasteel_warn_end (NORTH)"
+ },
/area/centcom/supply)
"jN" = (
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 6
},
+/turf/open/floor/plasteel,
/area/centcom/supply)
"jO" = (
/obj/structure/closet/wardrobe/cargotech,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
/area/centcom/supply)
"jP" = (
/obj/machinery/conveyor{
@@ -3591,10 +3591,10 @@
id = "QMLoad";
movedir = 2
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel,
/area/centcom/supply)
"jQ" = (
/obj/machinery/conveyor_switch/oneway{
@@ -3613,42 +3613,42 @@
icon_state = "alarm0";
pixel_x = 24
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
/area/centcom/supply)
"jS" = (
/obj/machinery/newscaster/security_unit{
pixel_x = -32
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel,
/area/centcom/control)
"jT" = (
/obj/machinery/computer/prisoner,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
/area/centcom/control)
"jU" = (
/obj/machinery/computer/security,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
/area/centcom/control)
"jV" = (
/obj/machinery/computer/secure_data,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
/area/centcom/control)
"jW" = (
/obj/machinery/firealarm{
dir = 4;
pixel_x = 24
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plasteel,
/area/centcom/control)
"jX" = (
/obj/docking_port/stationary{
@@ -3799,17 +3799,17 @@
/area/centcom/supply)
"ko" = (
/obj/structure/filingcabinet/medical,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 5
},
+/turf/open/floor/plasteel,
/area/centcom/control)
"kp" = (
/obj/structure/filingcabinet/security,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 9
},
+/turf/open/floor/plasteel,
/area/centcom/control)
"kq" = (
/obj/item/weapon/twohanded/required/kirbyplants{
@@ -3834,27 +3834,27 @@
},
/area/centcom/control)
"ku" = (
-/turf/open/floor/plating,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plating,
/area/syndicate_mothership)
"kv" = (
/obj/structure/table/reinforced,
/obj/item/weapon/storage/box/handcuffs,
/obj/item/weapon/crowbar/red,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plasteel,
/area/centcom/control)
"kw" = (
/obj/structure/table/reinforced,
/obj/machinery/recharger,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel,
/area/centcom/control)
"kx" = (
/obj/item/weapon/clipboard,
@@ -3986,35 +3986,35 @@
},
/area/centcom/control)
"kN" = (
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 10
},
+/turf/open/floor/plasteel,
/area/centcom/control)
"kO" = (
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 6
},
+/turf/open/floor/plasteel,
/area/centcom/control)
"kP" = (
/obj/structure/table/reinforced,
/obj/item/weapon/wrench,
/obj/item/weapon/restraints/handcuffs,
/obj/item/device/assembly/flash/handheld,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plasteel,
/area/centcom/control)
"kQ" = (
/obj/structure/table/reinforced,
/obj/item/weapon/gun/ballistic/automatic/wt550,
/obj/item/device/flashlight/seclite,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel,
/area/centcom/control)
"kR" = (
/obj/structure/table/wood,
@@ -4035,12 +4035,12 @@
opacity = 1;
req_access_txt = "101"
},
-/turf/open/floor/plasteel{
- tag = "icon-plasteel_warn_side (EAST)"
- },
/obj/effect/turf_decal/stripes/line{
dir = 2
},
+/turf/open/floor/plasteel{
+ tag = "icon-plasteel_warn_side (EAST)"
+ },
/area/centcom/control)
"kU" = (
/obj/machinery/door/window/brigdoor{
@@ -4123,24 +4123,24 @@
opacity = 1;
req_access_txt = "109"
},
-/turf/open/floor/plasteel{
- tag = "icon-plasteel_warn_side (EAST)"
- },
/obj/effect/turf_decal/stripes/line{
dir = 2
},
+/turf/open/floor/plasteel{
+ tag = "icon-plasteel_warn_side (EAST)"
+ },
/area/centcom/supply)
"lc" = (
/obj/machinery/door/airlock/centcom{
name = "Centcom Supply";
req_access_txt = "106"
},
-/turf/open/floor/plasteel{
- tag = "icon-plasteel_warn_side (EAST)"
- },
/obj/effect/turf_decal/stripes/line{
dir = 2
},
+/turf/open/floor/plasteel{
+ tag = "icon-plasteel_warn_side (EAST)"
+ },
/area/centcom/supply)
"ld" = (
/obj/structure/flora/ausbushes/lavendergrass,
@@ -4152,8 +4152,8 @@
/area/centcom/control)
"le" = (
/obj/machinery/door/poddoor/shutters,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
/area/centcom/control)
"lf" = (
/obj/structure/flora/ausbushes/sparsegrass,
@@ -4170,10 +4170,10 @@
/obj/item/weapon/clipboard,
/obj/item/weapon/folder/red,
/obj/item/weapon/pen/red,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plasteel,
/area/centcom/control)
"lh" = (
/obj/structure/table/reinforced,
@@ -4181,10 +4181,10 @@
/obj/item/weapon/crowbar/red,
/obj/item/weapon/crowbar/power,
/obj/item/weapon/storage/belt/security/full,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel,
/area/centcom/control)
"li" = (
/obj/structure/chair/comfy/brown{
@@ -4231,7 +4231,7 @@
},
/area/centcom/supply)
"lp" = (
-/obj/machinery/computer/shuttle/auxillary_base{
+/obj/machinery/computer/auxillary_base{
pixel_y = 32
},
/obj/structure/table/reinforced,
@@ -4244,17 +4244,17 @@
/area/centcom/supply)
"lq" = (
/obj/machinery/computer/shuttle/labor,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 10
},
+/turf/open/floor/plasteel,
/area/centcom/supply)
"lr" = (
/obj/machinery/computer/shuttle/mining,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 6
},
+/turf/open/floor/plasteel,
/area/centcom/supply)
"ls" = (
/obj/machinery/light{
@@ -4346,10 +4346,10 @@
opacity = 1;
req_access_txt = "101"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel,
/area/centcom/control)
"lC" = (
/obj/structure/table/wood,
@@ -4405,10 +4405,10 @@
/area/centcom/supply)
"lM" = (
/obj/machinery/computer/cargo,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 5
},
+/turf/open/floor/plasteel,
/area/centcom/supply)
"lN" = (
/obj/structure/chair/office/dark{
@@ -4501,12 +4501,12 @@
/area/centcom/control)
"lX" = (
/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel{
- tag = "icon-plasteel_warn_side (EAST)"
- },
/obj/effect/turf_decal/stripes/line{
dir = 2
},
+/turf/open/floor/plasteel{
+ tag = "icon-plasteel_warn_side (EAST)"
+ },
/area/centcom/control)
"lY" = (
/obj/structure/table/reinforced,
@@ -4519,10 +4519,10 @@
pixel_x = -24;
pixel_y = 24
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 6
},
+/turf/open/floor/plasteel,
/area/centcom/control)
"lZ" = (
/obj/structure/table/reinforced,
@@ -4534,10 +4534,10 @@
pixel_x = 24;
pixel_y = 24
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 10
},
+/turf/open/floor/plasteel,
/area/centcom/control)
"ma" = (
/obj/machinery/light{
@@ -4629,10 +4629,10 @@
/area/centcom/ferry)
"ml" = (
/obj/machinery/computer/security/mining,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 6
},
+/turf/open/floor/plasteel,
/area/centcom/supply)
"mm" = (
/turf/open/floor/plasteel/brown{
@@ -4650,12 +4650,12 @@
opacity = 1
},
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
/area/centcom/supply)
"mp" = (
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
/area/centcom/control)
"mq" = (
/turf/open/floor/plasteel/neutral,
@@ -4781,17 +4781,17 @@
pixel_y = -32
},
/obj/machinery/computer/cargo,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 9
},
+/turf/open/floor/plasteel,
/area/centcom/supply)
"mH" = (
/obj/machinery/computer/security/mining,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 5
},
+/turf/open/floor/plasteel,
/area/centcom/supply)
"mI" = (
/obj/machinery/light,
@@ -4844,8 +4844,8 @@
id = "XCCsecdepartment";
name = "XCC Security Checkpoint Shutters"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
/area/centcom/control)
"mO" = (
/obj/structure/chair/office/dark,
@@ -4908,8 +4908,8 @@
/area/centcom/control)
"mX" = (
/obj/machinery/vending/cola,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
/area/centcom/control)
"mY" = (
/turf/open/floor/plasteel/red/side{
@@ -4918,24 +4918,24 @@
/area/centcom/control)
"mZ" = (
/obj/machinery/computer/prisoner,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel,
/area/centcom/control)
"na" = (
/obj/machinery/computer/security,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel,
/area/centcom/control)
"nb" = (
/obj/machinery/computer/secure_data,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel,
/area/centcom/control)
"nc" = (
/obj/machinery/vending/snack,
@@ -5105,31 +5105,31 @@
/obj/structure/table/reinforced,
/obj/item/weapon/paper_bin,
/obj/item/weapon/pen/red,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 10
},
+/turf/open/floor/plasteel,
/area/centcom/supply)
"nu" = (
/obj/structure/table/reinforced,
/obj/item/stack/packageWrap,
/obj/item/weapon/hand_labeler,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
/area/centcom/supply)
"nv" = (
/obj/machinery/photocopier,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 6
},
+/turf/open/floor/plasteel,
/area/centcom/supply)
"nw" = (
/obj/machinery/computer/cargo,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 9
},
+/turf/open/floor/plasteel,
/area/centcom/supply)
"nx" = (
/obj/structure/table,
@@ -5144,8 +5144,8 @@
/obj/item/weapon/paper/pamphlet/ccaInfo,
/obj/item/weapon/paper/pamphlet/ccaInfo,
/obj/item/weapon/paper/pamphlet/ccaInfo,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
/area/centcom/control)
"nz" = (
/obj/item/weapon/twohanded/required/kirbyplants{
@@ -5276,10 +5276,10 @@
"nP" = (
/obj/structure/table/reinforced,
/obj/machinery/computer/stockexchange,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 5
},
+/turf/open/floor/plasteel,
/area/centcom/supply)
"nQ" = (
/turf/open/floor/plasteel/brown{
@@ -5290,15 +5290,15 @@
/area/centcom/supply)
"nR" = (
/obj/machinery/computer/security/mining,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 10
},
+/turf/open/floor/plasteel,
/area/centcom/supply)
"nS" = (
/obj/machinery/vending/snack,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
/area/centcom/control)
"nT" = (
/obj/structure/table/wood,
@@ -5416,10 +5416,10 @@
/obj/structure/table/reinforced,
/obj/item/weapon/folder/yellow,
/obj/item/weapon/stamp/qm,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plasteel,
/area/centcom/supply)
"og" = (
/obj/structure/chair/office/dark{
@@ -5451,8 +5451,8 @@
/obj/item/weapon/clipboard,
/obj/item/weapon/folder/yellow,
/obj/item/weapon/pen/red,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
/area/centcom/supply)
"oj" = (
/obj/structure/chair/comfy/black{
@@ -5583,10 +5583,10 @@
pixel_y = 6
},
/obj/item/device/gps/mining,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 6
},
+/turf/open/floor/plasteel,
/area/centcom/supply)
"ow" = (
/obj/structure/table/reinforced,
@@ -5597,8 +5597,8 @@
},
/obj/item/weapon/paper_bin,
/obj/item/weapon/pen/red,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
/area/centcom/supply)
"ox" = (
/obj/structure/table/wood,
@@ -5820,10 +5820,10 @@
dir = 1;
pixel_y = -22
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 9
},
+/turf/open/floor/plasteel,
/area/centcom/supply)
"oX" = (
/obj/structure/table/reinforced,
@@ -5833,10 +5833,10 @@
pixel_y = 3
},
/obj/item/weapon/stamp,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel,
/area/centcom/supply)
"oY" = (
/obj/machinery/firealarm{
@@ -5983,12 +5983,12 @@
req_access_txt = "109"
},
/obj/machinery/atmospherics/pipe/simple/supply/hidden,
-/turf/open/floor/plasteel{
- tag = "icon-plasteel_warn_side (EAST)"
- },
/obj/effect/turf_decal/stripes/line{
dir = 2
},
+/turf/open/floor/plasteel{
+ tag = "icon-plasteel_warn_side (EAST)"
+ },
/area/centcom/ferry)
"pt" = (
/obj/structure/sign/nanotrasen,
@@ -6000,12 +6000,12 @@
opacity = 1;
req_access_txt = "101"
},
-/turf/open/floor/plasteel{
- tag = "icon-plasteel_warn_side (EAST)"
- },
/obj/effect/turf_decal/stripes/line{
dir = 2
},
+/turf/open/floor/plasteel{
+ tag = "icon-plasteel_warn_side (EAST)"
+ },
/area/centcom/supply)
"pv" = (
/obj/machinery/door/airlock/centcom{
@@ -6013,12 +6013,12 @@
opacity = 1;
req_access_txt = "0"
},
-/turf/open/floor/plasteel{
- tag = "icon-plasteel_warn_side (EAST)"
- },
/obj/effect/turf_decal/stripes/line{
dir = 2
},
+/turf/open/floor/plasteel{
+ tag = "icon-plasteel_warn_side (EAST)"
+ },
/area/centcom/control)
"pw" = (
/obj/structure/flora/ausbushes/lavendergrass,
@@ -6093,7 +6093,7 @@
},
/area/centcom/ferry)
"pG" = (
-/obj/machinery/computer/shuttle/auxillary_base{
+/obj/machinery/computer/auxillary_base{
pixel_y = 32
},
/obj/structure/table/reinforced,
@@ -6105,17 +6105,17 @@
/area/centcom/ferry)
"pH" = (
/obj/machinery/computer/shuttle/labor,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 10
},
+/turf/open/floor/plasteel,
/area/centcom/ferry)
"pI" = (
/obj/machinery/computer/shuttle/mining,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 6
},
+/turf/open/floor/plasteel,
/area/centcom/ferry)
"pJ" = (
/obj/machinery/light{
@@ -6151,8 +6151,8 @@
/obj/item/weapon/weldingtool/experimental,
/obj/effect/decal/cleanable/oil,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
/area/centcom/ferry)
"pN" = (
/obj/structure/table/reinforced,
@@ -6175,8 +6175,8 @@
},
/obj/item/stack/cable_coil/white,
/obj/effect/decal/cleanable/dirt,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
/area/centcom/ferry)
"pO" = (
/obj/item/weapon/twohanded/required/kirbyplants{
@@ -6240,8 +6240,8 @@
tag = "icon-0-4";
icon_state = "0-4"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
/area/centcom/ferry)
"pW" = (
/obj/machinery/power/apc{
@@ -6280,8 +6280,8 @@
tag = "icon-0-8";
icon_state = "0-8"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
/area/centcom/ferry)
"pX" = (
/obj/structure/table/reinforced,
@@ -6291,8 +6291,8 @@
/obj/item/clothing/gloves/combat,
/obj/item/clothing/shoes/combat/swat,
/obj/item/clothing/mask/gas/sechailer/swat,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
/area/centcom/ferry)
"pY" = (
/obj/structure/table/reinforced,
@@ -6301,8 +6301,8 @@
/obj/machinery/light{
dir = 1
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
/area/centcom/ferry)
"pZ" = (
/obj/structure/table/reinforced,
@@ -6313,8 +6313,8 @@
/obj/structure/extinguisher_cabinet{
pixel_x = 26
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
/area/centcom/ferry)
"qa" = (
/obj/structure/flora/ausbushes/sparsegrass,
@@ -6337,8 +6337,8 @@
id = "XCCsec3";
name = "XCC Checkpoint 3 Shutters"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
/area/centcom/control)
"qd" = (
/obj/item/weapon/twohanded/required/kirbyplants{
@@ -6475,17 +6475,17 @@
/turf/open/floor/plating/airless,
/area/syndicate_mothership)
"qt" = (
-/turf/open/floor/plating/airless,
/obj/effect/turf_decal/stripes/line{
dir = 2
},
+/turf/open/floor/plating/airless,
/area/syndicate_mothership)
"qu" = (
/obj/machinery/computer/shuttle/white_ship,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 5
},
+/turf/open/floor/plasteel,
/area/centcom/ferry)
"qv" = (
/obj/structure/chair/office/dark{
@@ -6610,10 +6610,10 @@
tag = "icon-4-8";
icon_state = "4-8"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel,
/area/centcom/ferry)
"qI" = (
/obj/machinery/atmospherics/pipe/manifold/supply/visible{
@@ -6693,10 +6693,10 @@
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
dir = 4
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel,
/area/centcom/ferry)
"qM" = (
/obj/machinery/atmospherics/pipe/simple/supply/hidden{
@@ -6734,84 +6734,84 @@
opacity = 1;
req_access_txt = "101"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel,
/area/centcom/evac)
"qR" = (
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 9
},
+/turf/open/floor/plasteel,
/area/centcom/evac)
"qS" = (
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel,
/area/centcom/evac)
"qT" = (
/obj/structure/chair,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel,
/area/centcom/evac)
"qU" = (
/obj/structure/table,
/obj/item/weapon/paper_bin,
/obj/item/weapon/pen,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel,
/area/centcom/evac)
"qV" = (
/obj/structure/closet/crate/bin,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel,
/area/centcom/evac)
"qW" = (
/obj/structure/table,
/obj/item/toy/foamblade,
/obj/item/toy/gun,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel,
/area/centcom/evac)
"qX" = (
/obj/structure/table,
/obj/item/toy/katana,
/obj/item/toy/carpplushie,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel,
/area/centcom/evac)
"qY" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-21";
layer = 4.1
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel,
/area/centcom/evac)
"qZ" = (
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 5
},
+/turf/open/floor/plasteel,
/area/centcom/evac)
"ra" = (
/obj/machinery/door/poddoor/shuttledock,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
/area/centcom/evac)
"rb" = (
/obj/structure/showcase{
@@ -6882,10 +6882,10 @@
/turf/open/floor/plating/airless,
/area/syndicate_mothership)
"rk" = (
-/turf/open/floor/plating/airless,
/obj/effect/turf_decal/stripes/line{
dir = 6
},
+/turf/open/floor/plating/airless,
/area/syndicate_mothership)
"rl" = (
/turf/open/space,
@@ -6915,17 +6915,17 @@
},
/area/shuttle/assault_pod)
"rp" = (
-/turf/open/floor/plating/airless,
/obj/effect/turf_decal/stripes/line{
dir = 10
},
+/turf/open/floor/plating/airless,
/area/syndicate_mothership)
"rq" = (
/obj/machinery/computer/shuttle/ferry,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 6
},
+/turf/open/floor/plasteel,
/area/centcom/ferry)
"rr" = (
/turf/open/floor/plasteel/green/side{
@@ -6956,10 +6956,10 @@
name = "Centcom Supply";
req_access_txt = "106"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel,
/area/centcom/ferry)
"rx" = (
/turf/open/floor/plasteel/vault{
@@ -7044,10 +7044,10 @@
tag = "icon-1-4";
icon_state = "1-4"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel,
/area/centcom/ferry)
"rG" = (
/obj/machinery/computer/monitor,
@@ -7064,10 +7064,10 @@
tag = "icon-1-8";
icon_state = "1-8"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel,
/area/centcom/ferry)
"rH" = (
/obj/machinery/atmospherics/components/unary/tank/air{
@@ -7083,10 +7083,10 @@
tag = "icon-1-8";
icon_state = "1-8"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel,
/area/centcom/ferry)
"rI" = (
/obj/item/weapon/storage/box/handcuffs,
@@ -7099,10 +7099,10 @@
pixel_x = 0;
pixel_y = -24
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel,
/area/centcom/ferry)
"rJ" = (
/obj/item/weapon/gun/energy/pulse/carbine/loyalpin,
@@ -7112,10 +7112,10 @@
dir = 1;
pixel_y = -22
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel,
/area/centcom/ferry)
"rK" = (
/obj/item/weapon/storage/box/emps{
@@ -7131,10 +7131,10 @@
/obj/structure/reagent_dispensers/peppertank{
pixel_x = 32
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel,
/area/centcom/ferry)
"rL" = (
/obj/item/weapon/twohanded/required/kirbyplants{
@@ -7151,10 +7151,10 @@
/area/centcom/control)
"rN" = (
/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel,
/area/centcom/control)
"rO" = (
/turf/open/floor/plasteel/neutral/side{
@@ -7193,10 +7193,10 @@
icon_state = "plant-21";
layer = 4.1
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel,
/area/centcom/evac)
"rU" = (
/turf/open/floor/plasteel/yellowsiding{
@@ -7204,10 +7204,10 @@
},
/area/centcom/evac)
"rV" = (
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plasteel,
/area/centcom/evac)
"rW" = (
/obj/machinery/door/firedoor,
@@ -7216,10 +7216,10 @@
opacity = 1;
req_access_txt = "0"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel,
/area/centcom/evac)
"rX" = (
/turf/closed/indestructible/fakeglass{
@@ -7243,10 +7243,10 @@
/turf/open/floor/plating,
/area/syndicate_mothership)
"sa" = (
-/turf/open/floor/plating/airless,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plating/airless,
/area/syndicate_mothership)
"sb" = (
/obj/structure/chair{
@@ -7264,10 +7264,10 @@
/turf/open/floor/mineral/plastitanium,
/area/shuttle/assault_pod)
"se" = (
-/turf/open/floor/plating/airless,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plating/airless,
/area/syndicate_mothership)
"sf" = (
/obj/item/weapon/clipboard,
@@ -7293,7 +7293,7 @@
name = "Hanger Bay Shutters";
pixel_x = 0;
pixel_y = -38;
- req_access_txt = "2"
+ req_access_txt = "0"
},
/turf/open/floor/plasteel/vault{
dir = 8
@@ -7304,17 +7304,17 @@
/obj/machinery/newscaster/security_unit{
pixel_y = -32
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 9
},
+/turf/open/floor/plasteel,
/area/centcom/ferry)
"si" = (
/obj/machinery/computer/communications,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 5
},
+/turf/open/floor/plasteel,
/area/centcom/ferry)
"sj" = (
/obj/machinery/light,
@@ -7419,10 +7419,10 @@
/obj/structure/chair{
dir = 4
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel,
/area/centcom/evac)
"sv" = (
/turf/open/floor/plasteel/neutral,
@@ -7501,12 +7501,12 @@
opacity = 1;
req_access_txt = "109"
},
-/turf/open/floor/plasteel{
- tag = "icon-plasteel_warn_side (EAST)"
- },
/obj/effect/turf_decal/stripes/line{
dir = 2
},
+/turf/open/floor/plasteel{
+ tag = "icon-plasteel_warn_side (EAST)"
+ },
/area/centcom/ferry)
"sH" = (
/obj/structure/table/reinforced,
@@ -7514,17 +7514,17 @@
/obj/item/weapon/crowbar/power,
/obj/item/weapon/wrench,
/obj/item/weapon/hand_labeler,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel,
/area/centcom/ferry)
"sI" = (
/obj/structure/reagent_dispensers/watertank,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel,
/area/centcom/ferry)
"sJ" = (
/obj/structure/bookcase/random,
@@ -7645,8 +7645,8 @@
req_access_txt = "109"
},
/obj/machinery/door/window,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
/area/centcom/control)
"sW" = (
/turf/open/floor/plasteel/blue/corner,
@@ -7779,23 +7779,23 @@
/obj/item/clothing/mask/gas,
/obj/item/clothing/mask/gas,
/obj/item/clothing/mask/gas,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
/area/centcom/ferry)
"tp" = (
/obj/machinery/light{
dir = 1
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 9
},
+/turf/open/floor/plasteel,
/area/centcom/ferry)
"tq" = (
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel,
/area/centcom/ferry)
"tr" = (
/obj/machinery/firealarm{
@@ -7807,10 +7807,10 @@
/obj/structure/extinguisher_cabinet{
pixel_x = 24
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 5
},
+/turf/open/floor/plasteel,
/area/centcom/ferry)
"ts" = (
/obj/machinery/door/airlock/centcom{
@@ -7818,22 +7818,22 @@
opacity = 1;
req_access_txt = "109"
},
-/turf/open/floor/plasteel{
- tag = "icon-plasteel_warn_side (EAST)"
- },
/obj/effect/turf_decal/stripes/line{
dir = 2
},
+/turf/open/floor/plasteel{
+ tag = "icon-plasteel_warn_side (EAST)"
+ },
/area/centcom/ferry)
"tt" = (
/obj/machinery/door/poddoor/shutters{
id = "XCCsec1";
name = "XCC Checkpoint 1 Shutters"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel,
/area/centcom/control)
"tu" = (
/obj/machinery/light{
@@ -7928,10 +7928,10 @@
id = "XCCcustoms2";
name = "XCC Customs 2 Shutters"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel,
/area/centcom/control)
"tD" = (
/obj/structure/table,
@@ -7949,8 +7949,8 @@
},
/area/centcom/control)
"tF" = (
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
/area/centcom/control)
"tG" = (
/obj/structure/table,
@@ -7965,10 +7965,10 @@
id = "XCCcustoms1";
name = "XCC Customs 1 Shutters"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel,
/area/centcom/control)
"tI" = (
/turf/open/floor/plasteel/neutral/side{
@@ -8064,19 +8064,19 @@
/obj/structure/chair{
dir = 4
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel,
/area/centcom/ferry)
"tX" = (
/turf/open/floor/plasteel/neutral,
/area/centcom/ferry)
"tY" = (
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plasteel,
/area/centcom/ferry)
"tZ" = (
/obj/machinery/door/firedoor,
@@ -8085,10 +8085,10 @@
opacity = 1;
req_access_txt = "101"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel,
/area/centcom/ferry)
"ua" = (
/obj/machinery/door/poddoor/shutters{
@@ -8107,32 +8107,32 @@
pixel_y = 24;
req_access_txt = "2"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 5
},
+/turf/open/floor/plasteel,
/area/centcom/ferry)
"uc" = (
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 10
},
+/turf/open/floor/plasteel,
/area/centcom/ferry)
"ud" = (
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
/area/centcom/ferry)
"ue" = (
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 6
},
+/turf/open/floor/plasteel,
/area/centcom/ferry)
"uf" = (
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 9
},
+/turf/open/floor/plasteel,
/area/centcom/ferry)
"ug" = (
/obj/machinery/door/airlock/centcom{
@@ -8140,10 +8140,10 @@
opacity = 1;
req_access_txt = "109"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel,
/area/centcom/control)
"uh" = (
/obj/structure/table/reinforced,
@@ -8188,10 +8188,10 @@
},
/area/centcom/control)
"un" = (
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel,
/area/centcom/evac)
"uo" = (
/turf/open/floor/plasteel/blue/side{
@@ -8287,9 +8287,9 @@
/obj/docking_port/stationary{
dir = 8;
dwidth = 2;
- height = 12;
+ height = 13;
id = "ferry_away";
- name = "unknown";
+ name = "Centcom Ferry Dock";
width = 5
},
/turf/open/space,
@@ -8299,34 +8299,34 @@
name = "Ferry Airlock";
req_access_txt = "0"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel,
/area/centcom/ferry)
"uB" = (
/obj/structure/fans/tiny,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
/area/centcom/ferry)
"uC" = (
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel,
/area/centcom/ferry)
"uD" = (
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
/area/centcom/ferry)
"uE" = (
/obj/structure/chair{
dir = 8
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plasteel,
/area/centcom/ferry)
"uF" = (
/obj/structure/grille,
@@ -8346,8 +8346,8 @@
icon_state = "plant-21";
layer = 4.1
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
/area/centcom/ferry)
"uH" = (
/turf/open/floor/plasteel/green/side{
@@ -8402,10 +8402,10 @@
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-22"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel,
/area/centcom/evac)
"uQ" = (
/turf/open/floor/plasteel/neutral/side{
@@ -8464,10 +8464,10 @@
/turf/open/floor/plating/airless,
/area/syndicate_mothership)
"vc" = (
-/turf/open/floor/plating/airless,
/obj/effect/turf_decal/stripes/line{
dir = 5
},
+/turf/open/floor/plating/airless,
/area/syndicate_mothership)
"vd" = (
/obj/machinery/door/airlock/centcom{
@@ -8485,16 +8485,16 @@
/turf/open/floor/plating,
/area/shuttle/assault_pod)
"ve" = (
-/turf/open/floor/plating/airless,
/obj/effect/turf_decal/stripes/line{
dir = 9
},
+/turf/open/floor/plating/airless,
/area/syndicate_mothership)
"vf" = (
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 5
},
+/turf/open/floor/plasteel,
/area/centcom/ferry)
"vg" = (
/obj/machinery/button/door{
@@ -8502,10 +8502,10 @@
name = "CC Shutter 1 Control";
pixel_y = -24
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 10
},
+/turf/open/floor/plasteel,
/area/centcom/ferry)
"vh" = (
/turf/open/floor/plasteel/green/corner{
@@ -8565,10 +8565,10 @@
/turf/open/floor/engine/cult,
/area/wizard_station)
"vq" = (
-/turf/open/floor/plating/airless,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plating/airless,
/area/syndicate_mothership)
"vr" = (
/obj/structure/grille,
@@ -8578,14 +8578,14 @@
/area/centcom/ferry)
"vs" = (
/obj/machinery/light,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 10
},
+/turf/open/floor/plasteel,
/area/centcom/ferry)
"vt" = (
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
/area/centcom/ferry)
"vu" = (
/obj/structure/chair{
@@ -8597,10 +8597,10 @@
/obj/structure/sign/securearea{
pixel_x = 32
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 6
},
+/turf/open/floor/plasteel,
/area/centcom/ferry)
"vv" = (
/obj/machinery/door/airlock/centcom{
@@ -8608,12 +8608,12 @@
opacity = 1;
req_access_txt = "101"
},
-/turf/open/floor/plasteel{
- tag = "icon-plasteel_warn_side (EAST)"
- },
/obj/effect/turf_decal/stripes/line{
dir = 2
},
+/turf/open/floor/plasteel{
+ tag = "icon-plasteel_warn_side (EAST)"
+ },
/area/centcom/ferry)
"vw" = (
/obj/machinery/light{
@@ -8815,18 +8815,18 @@
/obj/structure/sign/directions/engineering{
pixel_y = 24
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
/area/centcom/ferry)
"vX" = (
/obj/structure/closet/secure_closet/ertEngi,
/obj/machinery/airalarm{
pixel_y = 24
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 6
},
+/turf/open/floor/plasteel,
/area/centcom/ferry)
"vY" = (
/obj/structure/table/reinforced,
@@ -8835,8 +8835,8 @@
/obj/structure/noticeboard{
pixel_y = 28
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
/area/centcom/ferry)
"vZ" = (
/obj/structure/table/reinforced,
@@ -8849,8 +8849,8 @@
/obj/machinery/firealarm{
pixel_y = 24
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
/area/centcom/ferry)
"wa" = (
/obj/structure/rack,
@@ -8862,10 +8862,10 @@
/obj/structure/sign/nanotrasen{
pixel_y = 32
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 10
},
+/turf/open/floor/plasteel,
/area/centcom/ferry)
"wb" = (
/obj/structure/closet/secure_closet/ertCom,
@@ -8877,19 +8877,19 @@
pixel_y = 24;
tag = "icon-direction_bridge"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
/area/centcom/ferry)
"wc" = (
/obj/machinery/door/airlock/glass_medical{
name = "Infirmary"
},
-/turf/open/floor/plasteel{
- tag = "icon-plasteel_warn_side (EAST)"
- },
/obj/effect/turf_decal/stripes/line{
dir = 2
},
+/turf/open/floor/plasteel{
+ tag = "icon-plasteel_warn_side (EAST)"
+ },
/area/centcom/control)
"wd" = (
/turf/open/floor/plasteel/blue/corner{
@@ -8936,20 +8936,20 @@
/area/wizard_station)
"wk" = (
/obj/structure/closet/syndicate/personal,
-/turf/open/floor/plasteel/black,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel/black,
/area/syndicate_mothership)
"wl" = (
/obj/structure/table,
/obj/item/weapon/gun/energy/ionrifle{
pin = /obj/item/device/firing_pin
},
-/turf/open/floor/plasteel/black,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel/black,
/area/syndicate_mothership)
"wm" = (
/obj/structure/table/wood,
@@ -9128,8 +9128,8 @@
/area/centcom/ferry)
"wK" = (
/obj/machinery/door/poddoor/ert,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
/area/centcom/ferry)
"wL" = (
/turf/open/floor/plasteel/vault{
@@ -9141,18 +9141,18 @@
/obj/structure/table/reinforced,
/obj/item/weapon/restraints/handcuffs,
/obj/item/device/radio,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 9
},
+/turf/open/floor/plasteel,
/area/centcom/ferry)
"wN" = (
/obj/structure/table/reinforced,
/obj/item/weapon/storage/firstaid/regular,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 5
},
+/turf/open/floor/plasteel,
/area/centcom/ferry)
"wO" = (
/obj/structure/extinguisher_cabinet{
@@ -9285,19 +9285,19 @@
/obj/structure/table/reinforced,
/obj/item/weapon/clipboard,
/obj/item/weapon/folder/yellow,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel,
/area/centcom/ferry)
"xk" = (
/obj/structure/table/reinforced,
/obj/item/weapon/storage/box/zipties,
/obj/item/weapon/crowbar/red,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plasteel,
/area/centcom/ferry)
"xl" = (
/obj/machinery/power/apc{
@@ -9319,43 +9319,43 @@
/turf/open/floor/plasteel/cmo,
/area/centcom/control)
"xo" = (
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 10
},
+/turf/open/floor/plasteel,
/area/centcom/evac)
"xp" = (
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
/area/centcom/evac)
"xq" = (
/obj/structure/chair{
dir = 1
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
/area/centcom/evac)
"xr" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-22"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
/area/centcom/evac)
"xs" = (
/obj/structure/table,
/obj/item/toy/sword,
/obj/item/weapon/gun/ballistic/shotgun/toy/crossbow,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
/area/centcom/evac)
"xt" = (
/obj/item/weapon/twohanded/required/kirbyplants{
icon_state = "plant-21";
layer = 4.1
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
/area/centcom/evac)
"xu" = (
/obj/structure/chair/wood/wings{
@@ -9430,19 +9430,19 @@
"xE" = (
/obj/structure/table/reinforced,
/obj/item/weapon/storage/lockbox/loyalty,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 10
},
+/turf/open/floor/plasteel,
/area/centcom/ferry)
"xF" = (
/obj/structure/table/reinforced,
/obj/item/weapon/storage/toolbox/mechanical,
/obj/item/weapon/tank/internals/emergency_oxygen/engi,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 6
},
+/turf/open/floor/plasteel,
/area/centcom/ferry)
"xG" = (
/obj/machinery/newscaster/security_unit{
@@ -9457,8 +9457,8 @@
id = "XCCsec3";
name = "CC Main Access Shutters"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
/area/centcom/control)
"xI" = (
/obj/item/weapon/defibrillator/loaded,
@@ -9506,10 +9506,10 @@
icon_state = "sleeper-open";
dir = 4
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 9
},
+/turf/open/floor/plasteel,
/area/centcom/control)
"xL" = (
/obj/machinery/light,
@@ -9519,20 +9519,20 @@
pixel_y = -32;
tag = "icon-nboard00 (NORTH)"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel,
/area/centcom/control)
"xM" = (
/obj/machinery/sleeper{
icon_state = "sleeper-open";
dir = 8
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 5
},
+/turf/open/floor/plasteel,
/area/centcom/control)
"xN" = (
/obj/item/weapon/storage/firstaid/fire,
@@ -9568,8 +9568,8 @@
name = "Centcom Customs";
req_access_txt = "109"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
/area/centcom/evac)
"xQ" = (
/obj/structure/table/reinforced,
@@ -9579,8 +9579,8 @@
/obj/structure/window/reinforced{
dir = 1
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
/area/centcom/evac)
"xR" = (
/obj/structure/table/reinforced,
@@ -9592,8 +9592,8 @@
name = "Centcom Customs";
req_access_txt = "109"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
/area/centcom/evac)
"xS" = (
/obj/machinery/door/airlock{
@@ -9804,10 +9804,10 @@
dir = 1;
pixel_y = -24
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel,
/area/centcom/ferry)
"yp" = (
/obj/structure/closet/secure_closet/ertMed,
@@ -9818,10 +9818,10 @@
req_access_txt = "0";
use_power = 0
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 5
},
+/turf/open/floor/plasteel,
/area/centcom/ferry)
"yq" = (
/obj/structure/table/reinforced,
@@ -9830,10 +9830,10 @@
/obj/structure/sign/bluecross_2{
pixel_y = -32
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel,
/area/centcom/ferry)
"yr" = (
/obj/structure/table/reinforced,
@@ -9842,19 +9842,19 @@
/obj/structure/reagent_dispensers/peppertank{
pixel_y = -32
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel,
/area/centcom/ferry)
"ys" = (
/obj/structure/closet/secure_closet/ertSec,
-/turf/open/floor/plasteel{
- tag = "icon-plasteel_warn (NORTHWEST)"
- },
/obj/effect/turf_decal/stripes/line{
dir = 9
},
+/turf/open/floor/plasteel{
+ tag = "icon-plasteel_warn (NORTHWEST)"
+ },
/area/centcom/ferry)
"yt" = (
/obj/structure/closet/secure_closet/ertSec,
@@ -9862,10 +9862,10 @@
dir = 1;
pixel_y = -24
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel,
/area/centcom/ferry)
"yu" = (
/obj/structure/table/reinforced,
@@ -10053,10 +10053,10 @@
/area/centcom/evac)
"yN" = (
/obj/machinery/door/airlock/external,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel,
/area/centcom/control)
"yO" = (
/turf/open/floor/plasteel/darkred/side{
@@ -10072,8 +10072,8 @@
dir = 4;
pixel_x = 0
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
/area/centcom/control)
"yQ" = (
/obj/structure/table/reinforced,
@@ -10082,8 +10082,8 @@
/obj/structure/window/reinforced{
dir = 8
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
/area/centcom/control)
"yR" = (
/turf/open/floor/plasteel/darkblue/side{
@@ -10190,8 +10190,8 @@
req_access_txt = "109";
base_state = "rightsecure"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
/area/centcom/control)
"zd" = (
/obj/structure/table/reinforced,
@@ -10206,8 +10206,8 @@
req_access_txt = "109";
base_state = "rightsecure"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
/area/centcom/control)
"ze" = (
/obj/structure/chair/office/dark{
@@ -10230,17 +10230,17 @@
"zg" = (
/obj/item/clothing/suit/wizrobe/black,
/obj/item/clothing/head/wizard/black,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
/area/wizard_station)
"zh" = (
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
/area/wizard_station)
"zi" = (
/obj/item/cardboard_cutout,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
/area/wizard_station)
"zj" = (
/obj/structure/table/wood,
@@ -10337,13 +10337,13 @@
/area/centcom/control)
"zu" = (
/obj/item/weapon/cautery/alien,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
/area/wizard_station)
"zv" = (
/obj/item/weapon/coin/antagtoken,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
/area/wizard_station)
"zw" = (
/obj/structure/bed,
@@ -10360,22 +10360,22 @@
opacity = 1;
req_access_txt = "0"
},
-/turf/open/floor/plasteel{
- tag = "icon-plasteel_warn_side (EAST)"
- },
/obj/effect/turf_decal/stripes/line{
dir = 2
},
+/turf/open/floor/plasteel{
+ tag = "icon-plasteel_warn_side (EAST)"
+ },
/area/centcom/control)
"zz" = (
/obj/structure/closet/cardboard,
/obj/item/weapon/banhammer,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
/area/wizard_station)
"zA" = (
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
/area/wizard_station)
"zB" = (
/obj/vehicle/scooter/skateboard{
@@ -10383,8 +10383,8 @@
icon_state = "skateboard";
dir = 4
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
/area/wizard_station)
"zC" = (
/obj/structure/dresser,
@@ -10421,22 +10421,22 @@
/area/tdome/tdomeobserve)
"zI" = (
/obj/machinery/door/airlock/external,
-/turf/open/floor/plasteel{
- tag = "icon-plasteel_warn_side (EAST)"
- },
/obj/effect/turf_decal/stripes/line{
dir = 2
},
+/turf/open/floor/plasteel{
+ tag = "icon-plasteel_warn_side (EAST)"
+ },
/area/tdome/tdomeobserve)
"zJ" = (
/obj/machinery/vending/cola,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
/area/tdome/tdomeobserve)
"zK" = (
/obj/machinery/vending/snack,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
/area/tdome/tdomeobserve)
"zL" = (
/obj/item/weapon/clipboard,
@@ -10478,8 +10478,8 @@
},
/area/tdome/tdomeobserve)
"zQ" = (
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
/area/tdome/tdomeobserve)
"zR" = (
/obj/structure/chair,
@@ -10499,12 +10499,12 @@
opacity = 1;
req_access_txt = "101"
},
-/turf/open/floor/plasteel{
- tag = "icon-plasteel_warn_side (EAST)"
- },
/obj/effect/turf_decal/stripes/line{
dir = 2
},
+/turf/open/floor/plasteel{
+ tag = "icon-plasteel_warn_side (EAST)"
+ },
/area/tdome/tdomeobserve)
"zU" = (
/obj/machinery/door/airlock{
@@ -10579,8 +10579,8 @@
/obj/structure/table/reinforced,
/obj/machinery/door/firedoor,
/obj/item/weapon/paper/pamphlet/ccaInfo,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
/area/tdome/tdomeobserve)
"Ag" = (
/turf/open/floor/plasteel/neutral,
@@ -10761,8 +10761,8 @@
name = "Thunderdoom Booth";
req_access_txt = "109"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
/area/tdome/tdomeobserve)
"AI" = (
/obj/item/weapon/twohanded/required/kirbyplants{
@@ -10884,10 +10884,10 @@
opacity = 1;
req_access_txt = "0"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel,
/area/tdome/tdomeobserve)
"Bb" = (
/turf/open/floor/plasteel/neutral/side{
@@ -11116,12 +11116,12 @@
/area/tdome/tdomeobserve)
"BK" = (
/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel{
- tag = "icon-plasteel_warn_side (EAST)"
- },
/obj/effect/turf_decal/stripes/line{
dir = 2
},
+/turf/open/floor/plasteel{
+ tag = "icon-plasteel_warn_side (EAST)"
+ },
/area/tdome/tdomeobserve)
"BL" = (
/obj/structure/sign/nosmoking_2,
@@ -11133,12 +11133,12 @@
opacity = 1;
req_access_txt = "101"
},
-/turf/open/floor/plasteel{
- tag = "icon-plasteel_warn_side (EAST)"
- },
/obj/effect/turf_decal/stripes/line{
dir = 2
},
+/turf/open/floor/plasteel{
+ tag = "icon-plasteel_warn_side (EAST)"
+ },
/area/tdome/tdomeobserve)
"BN" = (
/obj/structure/sign/nanotrasen,
@@ -11236,8 +11236,8 @@
/area/tdome/tdomeobserve)
"BW" = (
/obj/machinery/processor,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/end,
+/turf/open/floor/plasteel,
/area/tdome/tdomeobserve)
"BX" = (
/obj/structure/closet/secure_closet/freezer/kitchen,
@@ -11600,8 +11600,8 @@
/turf/open/floor/plasteel,
/area/centcom/holding)
"CM" = (
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
/area/centcom/holding)
"CN" = (
/obj/structure/grille,
@@ -11722,8 +11722,8 @@
pixel_x = -8
},
/obj/item/weapon/reagent_containers/food/drinks/britcup,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
/area/tdome/tdomeobserve)
"CZ" = (
/turf/open/floor/plasteel/vault,
@@ -11767,8 +11767,8 @@
"Dd" = (
/obj/structure/table/reinforced,
/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
/area/tdome/tdomeobserve)
"De" = (
/obj/structure/table/wood,
@@ -11798,12 +11798,12 @@
opacity = 1;
req_access_txt = "101"
},
-/turf/open/floor/plasteel{
- tag = "icon-plasteel_warn_side (EAST)"
- },
/obj/effect/turf_decal/stripes/line{
dir = 2
},
+/turf/open/floor/plasteel{
+ tag = "icon-plasteel_warn_side (EAST)"
+ },
/area/tdome/tdomeobserve)
"Dh" = (
/obj/structure/table/reinforced,
@@ -11823,8 +11823,8 @@
/obj/machinery/door/firedoor,
/obj/item/weapon/storage/bag/tray,
/obj/item/weapon/kitchen/fork,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
/area/tdome/tdomeobserve)
"Dj" = (
/turf/open/floor/plasteel/redyellow,
@@ -11867,8 +11867,8 @@
pixel_y = -32;
tag = "icon-nboard00 (NORTH)"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
/area/tdome/tdomeobserve)
"Dp" = (
/obj/machinery/computer/security/telescreen{
@@ -12016,24 +12016,24 @@
opacity = 1;
req_access_txt = "101"
},
-/turf/open/floor/plasteel{
- tag = "icon-plasteel_warn_side (EAST)"
- },
/obj/effect/turf_decal/stripes/line{
dir = 2
},
+/turf/open/floor/plasteel{
+ tag = "icon-plasteel_warn_side (EAST)"
+ },
/area/tdome/arena)
"DG" = (
/obj/machinery/igniter,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
/area/tdome/arena)
"DH" = (
/turf/open/floor/plasteel,
/area/tdome/arena)
"DI" = (
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
/area/tdome/arena)
"DJ" = (
/turf/closed/indestructible/riveted,
@@ -12052,12 +12052,12 @@
opacity = 1;
req_access_txt = "102"
},
-/turf/open/floor/plasteel{
- tag = "icon-plasteel_warn_side (EAST)"
- },
/obj/effect/turf_decal/stripes/line{
dir = 2
},
+/turf/open/floor/plasteel{
+ tag = "icon-plasteel_warn_side (EAST)"
+ },
/area/tdome/tdomeadmin)
"DM" = (
/obj/structure/rack,
@@ -12067,10 +12067,10 @@
/obj/item/clothing/head/helmet/thunderdome,
/obj/item/weapon/melee/baton/loaded,
/obj/item/weapon/melee/energy/sword/saber/red,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plasteel,
/area/tdome/arena)
"DN" = (
/obj/machinery/door/poddoor{
@@ -12085,28 +12085,28 @@
/obj/effect/landmark{
name = "tdome2"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 9
},
+/turf/open/floor/plasteel,
/area/tdome/arena)
"DP" = (
/obj/effect/landmark{
name = "tdome2"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel,
/area/tdome/arena)
"DQ" = (
/obj/effect/landmark{
name = "tdome2"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 5
},
+/turf/open/floor/plasteel,
/area/tdome/arena)
"DR" = (
/obj/machinery/door/poddoor{
@@ -12123,8 +12123,8 @@
},
/area/tdome/arena)
"DT" = (
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
/area/tdome/arena)
"DU" = (
/turf/open/floor/plasteel/neutral/side{
@@ -12158,28 +12158,28 @@
/obj/effect/landmark{
name = "tdome1"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 9
},
+/turf/open/floor/plasteel,
/area/tdome/arena)
"Ea" = (
/obj/effect/landmark{
name = "tdome1"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel,
/area/tdome/arena)
"Eb" = (
/obj/effect/landmark{
name = "tdome1"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 5
},
+/turf/open/floor/plasteel,
/area/tdome/arena)
"Ec" = (
/obj/machinery/door/poddoor{
@@ -12199,10 +12199,10 @@
/obj/item/clothing/head/helmet/thunderdome,
/obj/item/weapon/melee/baton/loaded,
/obj/item/weapon/melee/energy/sword/saber/green,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel,
/area/tdome/arena)
"Ee" = (
/obj/structure/flora/ausbushes/sparsegrass,
@@ -12221,21 +12221,21 @@
/area/tdome/tdomeadmin)
"Eg" = (
/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel{
- tag = "icon-plasteel_warn_side (EAST)"
- },
/obj/effect/turf_decal/stripes/line{
dir = 2
},
+/turf/open/floor/plasteel{
+ tag = "icon-plasteel_warn_side (EAST)"
+ },
/area/tdome/tdomeadmin)
"Eh" = (
/obj/effect/landmark{
name = "tdome2"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel,
/area/tdome/arena)
"Ei" = (
/obj/machinery/recharger{
@@ -12244,8 +12244,8 @@
/obj/effect/landmark{
name = "tdome2"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
/area/tdome/arena)
"Ej" = (
/obj/effect/landmark{
@@ -12257,10 +12257,10 @@
/obj/effect/landmark{
name = "tdome2"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plasteel,
/area/tdome/arena)
"El" = (
/turf/open/floor/plasteel/red/corner{
@@ -12276,10 +12276,10 @@
/obj/effect/landmark{
name = "tdome1"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel,
/area/tdome/arena)
"Eo" = (
/obj/machinery/recharger{
@@ -12288,8 +12288,8 @@
/obj/effect/landmark{
name = "tdome1"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
/area/tdome/arena)
"Ep" = (
/obj/effect/landmark{
@@ -12301,10 +12301,10 @@
/obj/effect/landmark{
name = "tdome1"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 4
},
+/turf/open/floor/plasteel,
/area/tdome/arena)
"Er" = (
/obj/structure/flora/ausbushes/sparsegrass,
@@ -12316,16 +12316,16 @@
},
/area/tdome/tdomeadmin)
"Es" = (
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 9
},
+/turf/open/floor/plasteel,
/area/tdome/tdomeadmin)
"Et" = (
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 5
},
+/turf/open/floor/plasteel,
/area/tdome/tdomeadmin)
"Eu" = (
/obj/machinery/camera{
@@ -12381,16 +12381,16 @@
/turf/open/floor/plating/asteroid,
/area/tdome/tdomeadmin)
"EB" = (
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 10
},
+/turf/open/floor/plasteel,
/area/tdome/tdomeadmin)
"EC" = (
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 6
},
+/turf/open/floor/plasteel,
/area/tdome/tdomeadmin)
"ED" = (
/obj/machinery/camera{
@@ -12412,51 +12412,51 @@
/obj/effect/landmark{
name = "tdome2"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 10
},
+/turf/open/floor/plasteel,
/area/tdome/arena)
"EH" = (
/obj/effect/landmark{
name = "tdome2"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
/area/tdome/arena)
"EI" = (
/obj/effect/landmark{
name = "tdome2"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 6
},
+/turf/open/floor/plasteel,
/area/tdome/arena)
"EJ" = (
/obj/effect/landmark{
name = "tdome1"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 10
},
+/turf/open/floor/plasteel,
/area/tdome/arena)
"EK" = (
/obj/effect/landmark{
name = "tdome1"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line,
+/turf/open/floor/plasteel,
/area/tdome/arena)
"EL" = (
/obj/effect/landmark{
name = "tdome1"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 6
},
+/turf/open/floor/plasteel,
/area/tdome/arena)
"EM" = (
/obj/machinery/door/poddoor{
@@ -12486,10 +12486,10 @@
/obj/item/clothing/suit/armor/vest,
/obj/item/clothing/head/helmet/swat,
/obj/item/weapon/gun/energy/laser,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel,
/area/tdome/arena)
"EQ" = (
/turf/closed/indestructible/fakeglass{
@@ -12516,10 +12516,10 @@
/obj/item/clothing/suit/armor/vest,
/obj/item/clothing/head/helmet/swat,
/obj/item/weapon/gun/energy/laser,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 1
},
+/turf/open/floor/plasteel,
/area/tdome/arena)
"EU" = (
/obj/item/device/radio{
@@ -12581,10 +12581,10 @@
/area/shuttle/escape)
"Fb" = (
/obj/machinery/door/firedoor,
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel,
/area/tdome/tdomeadmin)
"Fc" = (
/turf/open/floor/plasteel/vault{
@@ -12642,10 +12642,10 @@
opacity = 1;
req_access_txt = "102"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 8
},
+/turf/open/floor/plasteel,
/area/tdome/tdomeadmin)
"Fl" = (
/turf/open/floor/plasteel/vault,
@@ -12654,8 +12654,8 @@
/obj/machinery/door/airlock/external{
name = "Backup Emergency Escape Shuttle"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
/area/centcom/ferry)
"Fn" = (
/obj/machinery/door/airlock/titanium,
@@ -13501,8 +13501,8 @@
},
/area/centcom/control)
"HV" = (
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/delivery,
+/turf/open/floor/plasteel,
/area/centcom/evac)
"HW" = (
/turf/open/floor/plasteel,
@@ -13549,10 +13549,10 @@
/obj/effect/turf_decal/delivery,
/area/centcom/evac)
"Ih" = (
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/stripes/line{
dir = 6
},
+/turf/open/floor/plasteel,
/area/centcom/evac)
"Ii" = (
/turf/open/floor/plasteel,
@@ -65899,18 +65899,18 @@ it
it
qk
HV
-HW
-HX
-HY
-HZ
-Ia
-Ib
-Ic
-Id
-Ie
-If
-Ig
-Ii
+HV
+HV
+HV
+HV
+HV
+HV
+HV
+HV
+HV
+HV
+HV
+HV
qk
qk
qk
@@ -71656,7 +71656,7 @@ bf
bl
br
bJ
-bY
+bJ
bJ
cl
cz
diff --git a/_maps/shuttles/emergency_asteroid.dmm b/_maps/shuttles/emergency_asteroid.dmm
index b98874a2e23..5a1fb8020fa 100644
--- a/_maps/shuttles/emergency_asteroid.dmm
+++ b/_maps/shuttles/emergency_asteroid.dmm
@@ -68,8 +68,8 @@
/area/shuttle/escape)
"am" = (
/obj/structure/shuttle/engine/propulsion{
- icon_state = "propulsion";
- dir = 4
+ dir = 8;
+ icon_state = "propulsion"
},
/turf/open/floor/plating/airless,
/area/shuttle/escape)
diff --git a/_maps/shuttles/emergency_birdboat.dmm b/_maps/shuttles/emergency_birdboat.dmm
index e62291eabfe..00a549295df 100644
--- a/_maps/shuttles/emergency_birdboat.dmm
+++ b/_maps/shuttles/emergency_birdboat.dmm
@@ -37,8 +37,8 @@
/area/shuttle/escape)
"h" = (
/obj/structure/shuttle/engine/propulsion{
- icon_state = "propulsion_r";
- dir = 8
+ dir = 4;
+ icon_state = "propulsion_r"
},
/turf/open/floor/plating/airless,
/area/shuttle/escape)
@@ -69,8 +69,8 @@
/area/shuttle/escape)
"o" = (
/obj/structure/shuttle/engine/propulsion{
- icon_state = "propulsion";
- dir = 8
+ dir = 4;
+ icon_state = "propulsion"
},
/turf/open/floor/plating/airless,
/area/shuttle/escape)
@@ -96,8 +96,8 @@
/area/shuttle/escape)
"t" = (
/obj/structure/shuttle/engine/propulsion{
- icon_state = "propulsion_l";
- dir = 8
+ dir = 4;
+ icon_state = "propulsion_l"
},
/turf/open/floor/plating/airless,
/area/shuttle/escape)
diff --git a/_maps/shuttles/emergency_luxury.dmm b/_maps/shuttles/emergency_luxury.dmm
index 7ce2a183dcb..60b93f573e7 100644
--- a/_maps/shuttles/emergency_luxury.dmm
+++ b/_maps/shuttles/emergency_luxury.dmm
@@ -1,77 +1,731 @@
-"aa" = (/turf/open/space,/area/space)
-"ab" = (/turf/closed/indestructible/riveted/uranium,/area/shuttle/escape)
-"ac" = (/obj/machinery/door/airlock/external,/turf/open/floor/plating{tag = "icon-wood-broken2";icon_state = "wood-broken2"},/area/shuttle/escape)
-"ad" = (/obj/machinery/door/airlock/gold,/obj/effect/forcefield/luxury_shuttle{name = "Ticket Booth"},/turf/open/floor/mineral/gold,/area/shuttle/escape)
-"ae" = (/obj/docking_port/mobile/emergency{dir = 2;dwidth = 5;height = 14;name = "Luxury emergency shuttle";timid = 1;width = 25},/obj/machinery/door/airlock/gold,/obj/effect/forcefield/luxury_shuttle{name = "Ticket Booth"},/turf/open/floor/mineral/gold,/area/shuttle/escape)
-"af" = (/turf/open/floor/plating{tag = "icon-wood-broken3";icon_state = "wood-broken3"},/area/shuttle/escape)
-"ag" = (/turf/open/floor/plating{tag = "icon-wood";icon_state = "wood"},/area/shuttle/escape)
-"ah" = (/turf/open/floor/plating{tag = "icon-wood-broken";icon_state = "wood-broken"},/area/shuttle/escape)
-"ai" = (/turf/open/floor/plating{tag = "icon-wood-broken5";icon_state = "wood-broken5"},/area/shuttle/escape)
-"aj" = (/turf/open/floor/mineral/gold,/area/shuttle/escape)
-"ak" = (/obj/item/weapon/twohanded/required/kirbyplants{tag = "icon-plant-10";icon_state = "plant-10"},/turf/open/floor/mineral/gold,/area/shuttle/escape)
-"al" = (/obj/structure/mirror{pixel_y = 32},/turf/open/floor/mineral/gold,/area/shuttle/escape)
-"am" = (/turf/open/floor/plating{tag = "icon-wood-broken7";icon_state = "wood-broken7"},/area/shuttle/escape)
-"an" = (/turf/open/floor/plating{tag = "icon-wood-broken2";icon_state = "wood-broken2"},/area/shuttle/escape)
-"ao" = (/turf/open/floor/plating{tag = "icon-wood-broken6";icon_state = "wood-broken6"},/area/shuttle/escape)
-"ap" = (/obj/structure/toilet{dir = 4;icon_state = "toilet00";tag = "icon-toilet00 (NORTH)"},/turf/open/floor/mineral/gold,/area/shuttle/escape)
-"aq" = (/obj/machinery/door/airlock/gold,/turf/open/floor/mineral/gold,/area/shuttle/escape)
-"ar" = (/obj/structure/shuttle/engine/propulsion{dir = 4},/turf/open/floor/plating/airless,/area/shuttle/escape)
-"as" = (/obj/structure/shuttle/engine/heater{dir = 8},/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plating/airless,/area/shuttle/escape)
-"at" = (/turf/open/floor/carpet,/area/shuttle/escape)
-"au" = (/obj/structure/chair/comfy,/turf/open/floor/carpet,/area/shuttle/escape)
-"av" = (/obj/structure/chair/comfy{tag = "icon-comfychair (EAST)";icon_state = "comfychair";dir = 4},/turf/open/floor/mineral/gold,/area/shuttle/escape)
-"aw" = (/obj/machinery/computer/communications,/turf/open/floor/mineral/gold,/area/shuttle/escape)
-"ax" = (/obj/structure/table/wood/fancy,/obj/item/weapon/reagent_containers/food/snacks/meatballspaghetti,/turf/open/floor/carpet,/area/shuttle/escape)
-"ay" = (/obj/structure/table/wood/fancy,/obj/item/weapon/reagent_containers/food/snacks/notasandwich,/turf/open/floor/carpet,/area/shuttle/escape)
-"az" = (/obj/structure/table/wood/fancy,/obj/item/weapon/reagent_containers/food/snacks/pastatomato,/turf/open/floor/carpet,/area/shuttle/escape)
-"aA" = (/obj/structure/table/wood/fancy,/obj/item/weapon/reagent_containers/food/snacks/kebab/tofu,/turf/open/floor/carpet,/area/shuttle/escape)
-"aB" = (/obj/structure/table/wood/fancy,/obj/item/weapon/reagent_containers/food/snacks/honkdae,/turf/open/floor/carpet,/area/shuttle/escape)
-"aC" = (/obj/structure/table/wood/fancy,/obj/item/weapon/reagent_containers/food/snacks/enchiladas,/turf/open/floor/carpet,/area/shuttle/escape)
-"aD" = (/obj/structure/table/wood/fancy,/obj/item/weapon/reagent_containers/food/snacks/candiedapple,/turf/open/floor/carpet,/area/shuttle/escape)
-"aE" = (/obj/structure/table/wood/fancy,/obj/item/weapon/reagent_containers/food/snacks/burger/baconburger,/turf/open/floor/carpet,/area/shuttle/escape)
-"aF" = (/obj/structure/table/wood/fancy,/obj/item/weapon/reagent_containers/food/snacks/benedict,/turf/open/floor/carpet,/area/shuttle/escape)
-"aG" = (/obj/structure/table/wood/fancy,/obj/item/weapon/reagent_containers/food/snacks/cakeslice/chocolate,/turf/open/floor/carpet,/area/shuttle/escape)
-"aH" = (/obj/structure/table/wood/fancy,/obj/item/weapon/reagent_containers/food/snacks/chowmein,/turf/open/floor/carpet,/area/shuttle/escape)
-"aI" = (/obj/structure/table/wood/fancy,/obj/item/weapon/reagent_containers/food/snacks/dulcedebatataslice,/turf/open/floor/carpet,/area/shuttle/escape)
-"aJ" = (/obj/structure/table/wood/fancy,/obj/item/weapon/reagent_containers/food/snacks/salad/validsalad,/turf/open/floor/carpet,/area/shuttle/escape)
-"aK" = (/obj/structure/table/wood/fancy,/obj/item/weapon/reagent_containers/food/snacks/carneburrito,/turf/open/floor/carpet,/area/shuttle/escape)
-"aL" = (/obj/structure/table/wood/fancy,/obj/item/weapon/reagent_containers/food/snacks/chawanmushi,/turf/open/floor/carpet,/area/shuttle/escape)
-"aM" = (/obj/machinery/computer/emergency_shuttle,/turf/open/floor/mineral/gold,/area/shuttle/escape)
-"aN" = (/obj/structure/table/wood/fancy,/obj/item/weapon/reagent_containers/food/snacks/melonfruitbowl,/turf/open/floor/carpet,/area/shuttle/escape)
-"aO" = (/obj/structure/table/wood/fancy,/obj/item/weapon/reagent_containers/food/snacks/khachapuri,/turf/open/floor/carpet,/area/shuttle/escape)
-"aP" = (/obj/structure/table/wood/fancy,/obj/item/weapon/reagent_containers/food/snacks/grilledcheese,/turf/open/floor/carpet,/area/shuttle/escape)
-"aQ" = (/obj/structure/table/wood/fancy,/obj/item/weapon/reagent_containers/food/snacks/jelliedtoast/cherry,/turf/open/floor/carpet,/area/shuttle/escape)
-"aR" = (/obj/structure/table/wood/fancy,/obj/item/weapon/reagent_containers/food/snacks/honeybun,/turf/open/floor/carpet,/area/shuttle/escape)
-"aS" = (/obj/structure/table/wood/fancy,/obj/item/weapon/reagent_containers/food/snacks/eggplantparm,/turf/open/floor/carpet,/area/shuttle/escape)
-"aT" = (/obj/structure/table/wood/fancy,/obj/item/weapon/reagent_containers/food/snacks/copypasta,/turf/open/floor/carpet,/area/shuttle/escape)
-"aU" = (/obj/structure/table/wood/fancy,/obj/item/weapon/reagent_containers/food/snacks/bearsteak,/turf/open/floor/carpet,/area/shuttle/escape)
-"aV" = (/obj/structure/table/wood/fancy,/obj/item/weapon/reagent_containers/food/snacks/boiledspaghetti,/turf/open/floor/carpet,/area/shuttle/escape)
-"aW" = (/obj/structure/table/wood/fancy,/obj/item/weapon/reagent_containers/food/snacks/cherrycupcake,/turf/open/floor/carpet,/area/shuttle/escape)
-"aX" = (/obj/structure/table/wood/fancy,/obj/item/weapon/reagent_containers/food/snacks/customizable/pizza,/turf/open/floor/carpet,/area/shuttle/escape)
-"aY" = (/obj/structure/table/wood/fancy,/obj/item/weapon/reagent_containers/food/snacks/hotdog,/turf/open/floor/carpet,/area/shuttle/escape)
-"aZ" = (/obj/structure/table/wood/fancy,/obj/item/weapon/reagent_containers/food/snacks/pie/grapetart,/turf/open/floor/carpet,/area/shuttle/escape)
-"ba" = (/obj/structure/table/wood/fancy,/obj/item/weapon/reagent_containers/food/snacks/burger/superbite,/turf/open/floor/carpet,/area/shuttle/escape)
-"bb" = (/obj/structure/table/wood/fancy,/obj/item/weapon/reagent_containers/food/snacks/cakeslice/slimecake,/turf/open/floor/carpet,/area/shuttle/escape)
-"bc" = (/obj/machinery/computer/station_alert,/turf/open/floor/mineral/gold,/area/shuttle/escape)
-"bd" = (/obj/structure/chair/comfy{tag = "icon-comfychair (NORTH)";icon_state = "comfychair";dir = 1},/turf/open/floor/carpet,/area/shuttle/escape)
-"be" = (/obj/machinery/computer/crew,/turf/open/floor/mineral/gold,/area/shuttle/escape)
-"bf" = (/obj/machinery/sleeper{tag = "icon-sleeper-open (EAST)";icon_state = "sleeper-open";dir = 4},/turf/open/floor/mineral/gold,/area/shuttle/escape)
-"bg" = (/obj/item/weapon/twohanded/required/kirbyplants{icon_state = "plant-21";layer = 4.1;pixel_x = -3;pixel_y = 3},/turf/open/floor/mineral/gold,/area/shuttle/escape)
-"bh" = (/turf/open/floor/plating/beach/coastline_b,/area/shuttle/escape)
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"aa" = (
+/turf/open/space,
+/area/space)
+"ab" = (
+/turf/closed/indestructible/riveted/uranium,
+/area/shuttle/escape)
+"ac" = (
+/obj/machinery/door/airlock/external,
+/turf/open/floor/plating{
+ tag = "icon-wood-broken2";
+ icon_state = "wood-broken2"
+ },
+/area/shuttle/escape)
+"ad" = (
+/obj/machinery/door/airlock/gold,
+/obj/effect/forcefield/luxury_shuttle{
+ name = "Ticket Booth"
+ },
+/turf/open/floor/mineral/gold,
+/area/shuttle/escape)
+"ae" = (
+/obj/docking_port/mobile/emergency{
+ dir = 2;
+ dwidth = 5;
+ height = 14;
+ name = "Luxury emergency shuttle";
+ timid = 1;
+ width = 25
+ },
+/obj/machinery/door/airlock/gold,
+/obj/effect/forcefield/luxury_shuttle{
+ name = "Ticket Booth"
+ },
+/turf/open/floor/mineral/gold,
+/area/shuttle/escape)
+"af" = (
+/turf/open/floor/plating{
+ tag = "icon-wood-broken3";
+ icon_state = "wood-broken3"
+ },
+/area/shuttle/escape)
+"ag" = (
+/turf/open/floor/plating{
+ tag = "icon-wood";
+ icon_state = "wood"
+ },
+/area/shuttle/escape)
+"ah" = (
+/turf/open/floor/plating{
+ tag = "icon-wood-broken";
+ icon_state = "wood-broken"
+ },
+/area/shuttle/escape)
+"ai" = (
+/turf/open/floor/plating{
+ tag = "icon-wood-broken5";
+ icon_state = "wood-broken5"
+ },
+/area/shuttle/escape)
+"aj" = (
+/turf/open/floor/mineral/gold,
+/area/shuttle/escape)
+"ak" = (
+/obj/item/weapon/twohanded/required/kirbyplants{
+ tag = "icon-plant-10";
+ icon_state = "plant-10"
+ },
+/turf/open/floor/mineral/gold,
+/area/shuttle/escape)
+"al" = (
+/obj/structure/mirror{
+ pixel_y = 32
+ },
+/turf/open/floor/mineral/gold,
+/area/shuttle/escape)
+"am" = (
+/turf/open/floor/plating{
+ tag = "icon-wood-broken7";
+ icon_state = "wood-broken7"
+ },
+/area/shuttle/escape)
+"an" = (
+/turf/open/floor/plating{
+ tag = "icon-wood-broken2";
+ icon_state = "wood-broken2"
+ },
+/area/shuttle/escape)
+"ao" = (
+/turf/open/floor/plating{
+ tag = "icon-wood-broken6";
+ icon_state = "wood-broken6"
+ },
+/area/shuttle/escape)
+"ap" = (
+/obj/structure/toilet{
+ dir = 4;
+ icon_state = "toilet00";
+ tag = "icon-toilet00 (NORTH)"
+ },
+/turf/open/floor/mineral/gold,
+/area/shuttle/escape)
+"aq" = (
+/obj/machinery/door/airlock/gold,
+/turf/open/floor/mineral/gold,
+/area/shuttle/escape)
+"ar" = (
+/obj/structure/shuttle/engine/propulsion{
+ dir = 8
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/escape)
+"as" = (
+/obj/structure/shuttle/engine/heater{
+ dir = 8
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/turf/open/floor/plating/airless,
+/area/shuttle/escape)
+"at" = (
+/turf/open/floor/carpet,
+/area/shuttle/escape)
+"au" = (
+/obj/structure/chair/comfy,
+/turf/open/floor/carpet,
+/area/shuttle/escape)
+"av" = (
+/obj/structure/chair/comfy{
+ tag = "icon-comfychair (EAST)";
+ icon_state = "comfychair";
+ dir = 4
+ },
+/turf/open/floor/mineral/gold,
+/area/shuttle/escape)
+"aw" = (
+/obj/machinery/computer/communications,
+/turf/open/floor/mineral/gold,
+/area/shuttle/escape)
+"ax" = (
+/obj/structure/table/wood/fancy,
+/obj/item/weapon/reagent_containers/food/snacks/meatballspaghetti,
+/turf/open/floor/carpet,
+/area/shuttle/escape)
+"ay" = (
+/obj/structure/table/wood/fancy,
+/obj/item/weapon/reagent_containers/food/snacks/notasandwich,
+/turf/open/floor/carpet,
+/area/shuttle/escape)
+"az" = (
+/obj/structure/table/wood/fancy,
+/obj/item/weapon/reagent_containers/food/snacks/pastatomato,
+/turf/open/floor/carpet,
+/area/shuttle/escape)
+"aA" = (
+/obj/structure/table/wood/fancy,
+/obj/item/weapon/reagent_containers/food/snacks/kebab/tofu,
+/turf/open/floor/carpet,
+/area/shuttle/escape)
+"aB" = (
+/obj/structure/table/wood/fancy,
+/obj/item/weapon/reagent_containers/food/snacks/honkdae,
+/turf/open/floor/carpet,
+/area/shuttle/escape)
+"aC" = (
+/obj/structure/table/wood/fancy,
+/obj/item/weapon/reagent_containers/food/snacks/enchiladas,
+/turf/open/floor/carpet,
+/area/shuttle/escape)
+"aD" = (
+/obj/structure/table/wood/fancy,
+/obj/item/weapon/reagent_containers/food/snacks/candiedapple,
+/turf/open/floor/carpet,
+/area/shuttle/escape)
+"aE" = (
+/obj/structure/table/wood/fancy,
+/obj/item/weapon/reagent_containers/food/snacks/burger/baconburger,
+/turf/open/floor/carpet,
+/area/shuttle/escape)
+"aF" = (
+/obj/structure/table/wood/fancy,
+/obj/item/weapon/reagent_containers/food/snacks/benedict,
+/turf/open/floor/carpet,
+/area/shuttle/escape)
+"aG" = (
+/obj/structure/table/wood/fancy,
+/obj/item/weapon/reagent_containers/food/snacks/cakeslice/chocolate,
+/turf/open/floor/carpet,
+/area/shuttle/escape)
+"aH" = (
+/obj/structure/table/wood/fancy,
+/obj/item/weapon/reagent_containers/food/snacks/chowmein,
+/turf/open/floor/carpet,
+/area/shuttle/escape)
+"aI" = (
+/obj/structure/table/wood/fancy,
+/obj/item/weapon/reagent_containers/food/snacks/dulcedebatataslice,
+/turf/open/floor/carpet,
+/area/shuttle/escape)
+"aJ" = (
+/obj/structure/table/wood/fancy,
+/obj/item/weapon/reagent_containers/food/snacks/salad/validsalad,
+/turf/open/floor/carpet,
+/area/shuttle/escape)
+"aK" = (
+/obj/structure/table/wood/fancy,
+/obj/item/weapon/reagent_containers/food/snacks/carneburrito,
+/turf/open/floor/carpet,
+/area/shuttle/escape)
+"aL" = (
+/obj/structure/table/wood/fancy,
+/obj/item/weapon/reagent_containers/food/snacks/chawanmushi,
+/turf/open/floor/carpet,
+/area/shuttle/escape)
+"aM" = (
+/obj/machinery/computer/emergency_shuttle,
+/turf/open/floor/mineral/gold,
+/area/shuttle/escape)
+"aN" = (
+/obj/structure/table/wood/fancy,
+/obj/item/weapon/reagent_containers/food/snacks/melonfruitbowl,
+/turf/open/floor/carpet,
+/area/shuttle/escape)
+"aO" = (
+/obj/structure/table/wood/fancy,
+/obj/item/weapon/reagent_containers/food/snacks/khachapuri,
+/turf/open/floor/carpet,
+/area/shuttle/escape)
+"aP" = (
+/obj/structure/table/wood/fancy,
+/obj/item/weapon/reagent_containers/food/snacks/grilledcheese,
+/turf/open/floor/carpet,
+/area/shuttle/escape)
+"aQ" = (
+/obj/structure/table/wood/fancy,
+/obj/item/weapon/reagent_containers/food/snacks/jelliedtoast/cherry,
+/turf/open/floor/carpet,
+/area/shuttle/escape)
+"aR" = (
+/obj/structure/table/wood/fancy,
+/obj/item/weapon/reagent_containers/food/snacks/honeybun,
+/turf/open/floor/carpet,
+/area/shuttle/escape)
+"aS" = (
+/obj/structure/table/wood/fancy,
+/obj/item/weapon/reagent_containers/food/snacks/eggplantparm,
+/turf/open/floor/carpet,
+/area/shuttle/escape)
+"aT" = (
+/obj/structure/table/wood/fancy,
+/obj/item/weapon/reagent_containers/food/snacks/copypasta,
+/turf/open/floor/carpet,
+/area/shuttle/escape)
+"aU" = (
+/obj/structure/table/wood/fancy,
+/obj/item/weapon/reagent_containers/food/snacks/bearsteak,
+/turf/open/floor/carpet,
+/area/shuttle/escape)
+"aV" = (
+/obj/structure/table/wood/fancy,
+/obj/item/weapon/reagent_containers/food/snacks/boiledspaghetti,
+/turf/open/floor/carpet,
+/area/shuttle/escape)
+"aW" = (
+/obj/structure/table/wood/fancy,
+/obj/item/weapon/reagent_containers/food/snacks/cherrycupcake,
+/turf/open/floor/carpet,
+/area/shuttle/escape)
+"aX" = (
+/obj/structure/table/wood/fancy,
+/obj/item/weapon/reagent_containers/food/snacks/customizable/pizza,
+/turf/open/floor/carpet,
+/area/shuttle/escape)
+"aY" = (
+/obj/structure/table/wood/fancy,
+/obj/item/weapon/reagent_containers/food/snacks/hotdog,
+/turf/open/floor/carpet,
+/area/shuttle/escape)
+"aZ" = (
+/obj/structure/table/wood/fancy,
+/obj/item/weapon/reagent_containers/food/snacks/pie/grapetart,
+/turf/open/floor/carpet,
+/area/shuttle/escape)
+"ba" = (
+/obj/structure/table/wood/fancy,
+/obj/item/weapon/reagent_containers/food/snacks/burger/superbite,
+/turf/open/floor/carpet,
+/area/shuttle/escape)
+"bb" = (
+/obj/structure/table/wood/fancy,
+/obj/item/weapon/reagent_containers/food/snacks/cakeslice/slimecake,
+/turf/open/floor/carpet,
+/area/shuttle/escape)
+"bc" = (
+/obj/machinery/computer/station_alert,
+/turf/open/floor/mineral/gold,
+/area/shuttle/escape)
+"bd" = (
+/obj/structure/chair/comfy{
+ tag = "icon-comfychair (NORTH)";
+ icon_state = "comfychair";
+ dir = 1
+ },
+/turf/open/floor/carpet,
+/area/shuttle/escape)
+"be" = (
+/obj/machinery/computer/crew,
+/turf/open/floor/mineral/gold,
+/area/shuttle/escape)
+"bf" = (
+/obj/machinery/sleeper{
+ tag = "icon-sleeper-open (EAST)";
+ icon_state = "sleeper-open";
+ dir = 4
+ },
+/turf/open/floor/mineral/gold,
+/area/shuttle/escape)
+"bg" = (
+/obj/item/weapon/twohanded/required/kirbyplants{
+ icon_state = "plant-21";
+ layer = 4.1;
+ pixel_x = -3;
+ pixel_y = 3
+ },
+/turf/open/floor/mineral/gold,
+/area/shuttle/escape)
+"bh" = (
+/turf/open/floor/plating/beach/coastline_b,
+/area/shuttle/escape)
(1,1,1) = {"
-aaababababababababababacabadabababababaeababababab
-ababafagagagahagagaiagagabajajajajajajajabakajalab
-abamaganagagagagagaoagafabajajajajajajajabapajajab
-abababababababababababababajajajajajajajabababaqab
-abababakajajajajajajajajajajajajajajajajajajajajab
-arasabajatauauauauauauauauauauauauauauauatajavawab
-arasabajataxayazaAaBaCaDaEaFaGaHaIaJaKaLatajavaMab
-arasabajataNaOaPaQaRaSaTaUaVaWaXaYaZbabbatajavbcab
-arasabajatbdbdbdbdbdbdbdbdbdbdbdbdbdbdbdatajavbeab
-abababajajajajajajajajajajajajajajajajajajajajajab
-abbfajajajajajajajajajajajajajajajajajajajajajajab
-abbfajajajbgbhbhbhbhbhbhbhbhbhbhbhbhbhbgajajajajab
-abababakajbgbhbhbhbhbhbhbhbhbhbhbhbhbhbgajajajakab
-aaabababababababababababababababababababababababab
+aa
+ab
+ab
+ab
+ab
+ar
+ar
+ar
+ar
+ab
+ab
+ab
+ab
+aa
+"}
+(2,1,1) = {"
+ab
+ab
+am
+ab
+ab
+as
+as
+as
+as
+ab
+bf
+bf
+ab
+ab
+"}
+(3,1,1) = {"
+ab
+af
+ag
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+aj
+aj
+ab
+ab
+"}
+(4,1,1) = {"
+ab
+ag
+an
+ab
+ak
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+ak
+ab
+"}
+(5,1,1) = {"
+ab
+ag
+ag
+ab
+aj
+at
+at
+at
+at
+aj
+aj
+aj
+aj
+ab
+"}
+(6,1,1) = {"
+ab
+ag
+ag
+ab
+aj
+au
+ax
+aN
+bd
+aj
+aj
+bg
+bg
+ab
+"}
+(7,1,1) = {"
+ab
+ah
+ag
+ab
+aj
+au
+ay
+aO
+bd
+aj
+aj
+bh
+bh
+ab
+"}
+(8,1,1) = {"
+ab
+ag
+ag
+ab
+aj
+au
+az
+aP
+bd
+aj
+aj
+bh
+bh
+ab
+"}
+(9,1,1) = {"
+ab
+ag
+ag
+ab
+aj
+au
+aA
+aQ
+bd
+aj
+aj
+bh
+bh
+ab
+"}
+(10,1,1) = {"
+ab
+ai
+ao
+ab
+aj
+au
+aB
+aR
+bd
+aj
+aj
+bh
+bh
+ab
+"}
+(11,1,1) = {"
+ab
+ag
+ag
+ab
+aj
+au
+aC
+aS
+bd
+aj
+aj
+bh
+bh
+ab
+"}
+(12,1,1) = {"
+ac
+ag
+af
+ab
+aj
+au
+aD
+aT
+bd
+aj
+aj
+bh
+bh
+ab
+"}
+(13,1,1) = {"
+ab
+ab
+ab
+ab
+aj
+au
+aE
+aU
+bd
+aj
+aj
+bh
+bh
+ab
+"}
+(14,1,1) = {"
+ad
+aj
+aj
+aj
+aj
+au
+aF
+aV
+bd
+aj
+aj
+bh
+bh
+ab
+"}
+(15,1,1) = {"
+ab
+aj
+aj
+aj
+aj
+au
+aG
+aW
+bd
+aj
+aj
+bh
+bh
+ab
+"}
+(16,1,1) = {"
+ab
+aj
+aj
+aj
+aj
+au
+aH
+aX
+bd
+aj
+aj
+bh
+bh
+ab
+"}
+(17,1,1) = {"
+ab
+aj
+aj
+aj
+aj
+au
+aI
+aY
+bd
+aj
+aj
+bh
+bh
+ab
+"}
+(18,1,1) = {"
+ab
+aj
+aj
+aj
+aj
+au
+aJ
+aZ
+bd
+aj
+aj
+bh
+bh
+ab
+"}
+(19,1,1) = {"
+ab
+aj
+aj
+aj
+aj
+au
+aK
+ba
+bd
+aj
+aj
+bh
+bh
+ab
+"}
+(20,1,1) = {"
+ae
+aj
+aj
+aj
+aj
+au
+aL
+bb
+bd
+aj
+aj
+bg
+bg
+ab
+"}
+(21,1,1) = {"
+ab
+ab
+ab
+ab
+aj
+at
+at
+at
+at
+aj
+aj
+aj
+aj
+ab
+"}
+(22,1,1) = {"
+ab
+ak
+ap
+ab
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+aj
+ab
+"}
+(23,1,1) = {"
+ab
+aj
+aj
+ab
+aj
+av
+av
+av
+av
+aj
+aj
+aj
+aj
+ab
+"}
+(24,1,1) = {"
+ab
+al
+aj
+aq
+aj
+aw
+aM
+bc
+be
+aj
+aj
+aj
+ak
+ab
+"}
+(25,1,1) = {"
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
+ab
"}
diff --git a/_maps/shuttles/whiteship_meta.dmm b/_maps/shuttles/whiteship_meta.dmm
index 10c60f37ee8..9b6ee26e58d 100644
--- a/_maps/shuttles/whiteship_meta.dmm
+++ b/_maps/shuttles/whiteship_meta.dmm
@@ -73,8 +73,8 @@
/area/shuttle/abandoned)
"ak" = (
/obj/structure/shuttle/engine/propulsion{
- icon_state = "propulsion_l";
- dir = 4
+ dir = 8;
+ icon_state = "propulsion_l"
},
/turf/open/floor/plating/airless,
/area/shuttle/abandoned)
@@ -236,8 +236,8 @@
desc = "A thin layer of dust coating the floor.";
name = "dust"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
/area/shuttle/abandoned)
"az" = (
/obj/structure/closet/crate{
@@ -254,8 +254,8 @@
desc = "A thin layer of dust coating the floor.";
name = "dust"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
/area/shuttle/abandoned)
"aA" = (
/obj/item/weapon/storage/box/lights/mixed,
@@ -277,8 +277,8 @@
desc = "A thin layer of dust coating the floor.";
name = "dust"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
/area/shuttle/abandoned)
"aB" = (
/obj/structure/closet/crate{
@@ -304,13 +304,13 @@
desc = "A thin layer of dust coating the floor.";
name = "dust"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
/area/shuttle/abandoned)
"aC" = (
/obj/structure/shuttle/engine/propulsion{
- icon_state = "propulsion";
- dir = 4
+ dir = 8;
+ icon_state = "propulsion"
},
/turf/open/floor/plating/airless,
/area/shuttle/abandoned)
@@ -431,10 +431,10 @@
/obj/machinery/door/airlock/titanium{
name = "cargo bay"
},
-/turf/open/floor/plasteel{
+/obj/effect/turf_decal/delivery{
dir = 1
},
-/obj/effect/turf_decal/delivery{
+/turf/open/floor/plasteel{
dir = 1
},
/area/shuttle/abandoned)
@@ -444,10 +444,10 @@
desc = "A thin layer of dust coating the floor.";
name = "dust"
},
-/turf/open/floor/plasteel{
+/obj/effect/turf_decal/delivery{
dir = 1
},
-/obj/effect/turf_decal/delivery{
+/turf/open/floor/plasteel{
dir = 1
},
/area/shuttle/abandoned)
@@ -456,10 +456,10 @@
desc = "A thin layer of dust coating the floor.";
name = "dust"
},
-/turf/open/floor/plasteel{
+/obj/effect/turf_decal/delivery{
dir = 1
},
-/obj/effect/turf_decal/delivery{
+/turf/open/floor/plasteel{
dir = 1
},
/area/shuttle/abandoned)
@@ -470,10 +470,10 @@
desc = "A thin layer of dust coating the floor.";
name = "dust"
},
-/turf/open/floor/plasteel{
+/obj/effect/turf_decal/delivery{
dir = 1
},
-/obj/effect/turf_decal/delivery{
+/turf/open/floor/plasteel{
dir = 1
},
/area/shuttle/abandoned)
@@ -594,8 +594,8 @@
desc = "A thin layer of dust coating the floor.";
name = "dust"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
/area/shuttle/abandoned)
"bb" = (
/obj/structure/closet/emcloset,
@@ -603,8 +603,8 @@
desc = "A thin layer of dust coating the floor.";
name = "dust"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
/area/shuttle/abandoned)
"bc" = (
/obj/structure/closet/firecloset/full,
@@ -612,8 +612,8 @@
desc = "A thin layer of dust coating the floor.";
name = "dust"
},
-/turf/open/floor/plasteel,
/obj/effect/turf_decal/bot,
+/turf/open/floor/plasteel,
/area/shuttle/abandoned)
"bd" = (
/obj/machinery/door/airlock/titanium{
@@ -695,10 +695,10 @@
desc = "A thin layer of dust coating the floor.";
name = "dust"
},
-/turf/open/floor/plasteel{
+/obj/effect/turf_decal/delivery{
dir = 1
},
-/obj/effect/turf_decal/delivery{
+/turf/open/floor/plasteel{
dir = 1
},
/area/shuttle/abandoned)
@@ -1551,8 +1551,8 @@
/area/shuttle/abandoned)
"cO" = (
/obj/structure/shuttle/engine/propulsion{
- icon_state = "propulsion_r";
- dir = 4
+ dir = 8;
+ icon_state = "propulsion_r"
},
/turf/open/floor/plating/airless,
/area/shuttle/abandoned)
diff --git a/_maps/shuttles/whiteship_pubby.dmm b/_maps/shuttles/whiteship_pubby.dmm
index 1cf57dad5f9..3b35cf432d5 100644
--- a/_maps/shuttles/whiteship_pubby.dmm
+++ b/_maps/shuttles/whiteship_pubby.dmm
@@ -1,31 +1,236 @@
-"a" = (/turf/open/space,/area/space)
-"b" = (/turf/closed/wall/mineral/titanium,/area/shuttle/abandoned)
-"c" = (/obj/structure/shuttle/engine/propulsion/burst{tag = "icon-propulsion (NORTH)";icon_state = "propulsion";dir = 1},/turf/closed/wall/mineral/titanium,/area/shuttle/abandoned)
-"d" = (/obj/machinery/door/airlock/glass{name = "Shuttle Airlock"},/turf/open/floor/plasteel/black,/area/shuttle/abandoned)
-"e" = (/turf/open/floor/plasteel/black,/area/shuttle/abandoned)
-"f" = (/turf/open/floor/plasteel,/area/shuttle/abandoned)
-"g" = (/obj/structure/shuttle/engine/propulsion/burst{dir = 4},/turf/closed/wall/mineral/titanium,/area/shuttle/abandoned)
-"h" = (/obj/structure/window/reinforced{dir = 1;layer = 2.9},/obj/structure/window/reinforced{dir = 8},/obj/structure/table/glass,/obj/item/weapon/gun/medbeam,/turf/open/floor/plating/abductor,/area/shuttle/abandoned)
-"i" = (/obj/structure/chair,/turf/open/floor/plating/abductor,/area/shuttle/abandoned)
-"j" = (/obj/structure/window/reinforced{dir = 1;layer = 2.9},/obj/structure/window/reinforced{dir = 4},/obj/structure/table/glass,/obj/machinery/recharger,/obj/item/weapon/gun/energy/laser/retro,/turf/open/floor/plating/abductor,/area/shuttle/abandoned)
-"k" = (/obj/structure/shuttle/engine/propulsion/burst{tag = "icon-propulsion (WEST)";icon_state = "propulsion";dir = 8},/turf/closed/wall/mineral/titanium,/area/shuttle/abandoned)
-"l" = (/obj/structure/chair{dir = 4},/turf/open/floor/plating/abductor,/area/shuttle/abandoned)
-"m" = (/obj/machinery/computer/shuttle/white_ship,/turf/open/floor/plating/abductor,/area/shuttle/abandoned)
-"n" = (/obj/structure/chair{dir = 8},/turf/open/floor/plating/abductor,/area/shuttle/abandoned)
-"o" = (/obj/machinery/door/airlock/glass{name = "Shuttle Airlock"},/obj/docking_port/mobile{dheight = 0;dir = 8;dwidth = 4;height = 9;id = "whiteship";launch_status = 0;name = "White Ship";port_angle = 90;preferred_direction = 1;roundstart_move = "whiteship_away";timid = 1;width = 9},/turf/open/floor/plasteel/black,/area/shuttle/abandoned)
-"p" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/structure/table/glass,/obj/item/weapon/tank/internals/oxygen,/obj/item/clothing/mask/breath,/obj/item/clothing/suit/space/hardsuit/engine/elite,/turf/open/floor/plating/abductor,/area/shuttle/abandoned)
-"q" = (/obj/structure/chair{dir = 1},/turf/open/floor/plating/abductor,/area/shuttle/abandoned)
-"r" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/table/glass,/obj/item/clothing/shoes/magboots,/turf/open/floor/plating/abductor,/area/shuttle/abandoned)
-"s" = (/obj/structure/shuttle/engine/propulsion/burst,/turf/closed/wall/mineral/titanium,/area/shuttle/abandoned)
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"a" = (
+/turf/open/space,
+/area/space)
+"b" = (
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/abandoned)
+"c" = (
+/obj/structure/shuttle/engine/propulsion/burst{
+ tag = "icon-propulsion (NORTH)";
+ icon_state = "propulsion";
+ dir = 1
+ },
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/abandoned)
+"d" = (
+/obj/machinery/door/airlock/glass{
+ name = "Shuttle Airlock"
+ },
+/turf/open/floor/plasteel/black,
+/area/shuttle/abandoned)
+"e" = (
+/turf/open/floor/plasteel/black,
+/area/shuttle/abandoned)
+"f" = (
+/turf/open/floor/plasteel,
+/area/shuttle/abandoned)
+"g" = (
+/obj/structure/shuttle/engine/propulsion/burst{
+ dir = 8
+ },
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/abandoned)
+"h" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/table/glass,
+/obj/item/weapon/gun/medbeam,
+/turf/open/floor/plating/abductor,
+/area/shuttle/abandoned)
+"i" = (
+/obj/structure/chair,
+/turf/open/floor/plating/abductor,
+/area/shuttle/abandoned)
+"j" = (
+/obj/structure/window/reinforced{
+ dir = 1;
+ layer = 2.9
+ },
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/table/glass,
+/obj/machinery/recharger,
+/obj/item/weapon/gun/energy/laser/retro,
+/turf/open/floor/plating/abductor,
+/area/shuttle/abandoned)
+"k" = (
+/obj/structure/shuttle/engine/propulsion/burst{
+ dir = 4;
+ icon_state = "propulsion";
+ tag = "icon-propulsion (WEST)"
+ },
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/abandoned)
+"l" = (
+/obj/structure/chair{
+ dir = 4
+ },
+/turf/open/floor/plating/abductor,
+/area/shuttle/abandoned)
+"m" = (
+/obj/machinery/computer/shuttle/white_ship,
+/turf/open/floor/plating/abductor,
+/area/shuttle/abandoned)
+"n" = (
+/obj/structure/chair{
+ dir = 8
+ },
+/turf/open/floor/plating/abductor,
+/area/shuttle/abandoned)
+"o" = (
+/obj/machinery/door/airlock/glass{
+ name = "Shuttle Airlock"
+ },
+/obj/docking_port/mobile{
+ dheight = 0;
+ dir = 8;
+ dwidth = 4;
+ height = 9;
+ id = "whiteship";
+ launch_status = 0;
+ name = "White Ship";
+ port_angle = 90;
+ preferred_direction = 1;
+ roundstart_move = "whiteship_away";
+ timid = 1;
+ width = 9
+ },
+/turf/open/floor/plasteel/black,
+/area/shuttle/abandoned)
+"p" = (
+/obj/structure/window/reinforced{
+ dir = 8
+ },
+/obj/structure/window/reinforced,
+/obj/structure/table/glass,
+/obj/item/weapon/tank/internals/oxygen,
+/obj/item/clothing/mask/breath,
+/obj/item/clothing/suit/space/hardsuit/engine/elite,
+/turf/open/floor/plating/abductor,
+/area/shuttle/abandoned)
+"q" = (
+/obj/structure/chair{
+ dir = 1
+ },
+/turf/open/floor/plating/abductor,
+/area/shuttle/abandoned)
+"r" = (
+/obj/structure/window/reinforced{
+ dir = 4
+ },
+/obj/structure/window/reinforced,
+/obj/structure/table/glass,
+/obj/item/clothing/shoes/magboots,
+/turf/open/floor/plating/abductor,
+/area/shuttle/abandoned)
+"s" = (
+/obj/structure/shuttle/engine/propulsion/burst,
+/turf/closed/wall/mineral/titanium,
+/area/shuttle/abandoned)
(1,1,1) = {"
-aabcdcbaa
-abbefebba
-bbeefeebb
-geehijeek
-dfflmnffo
-geepqreek
-bbeefeebb
-abbefebba
-aabsdsbaa
+a
+a
+b
+g
+d
+g
+b
+a
+a
+"}
+(2,1,1) = {"
+a
+b
+b
+e
+f
+e
+b
+b
+a
+"}
+(3,1,1) = {"
+b
+b
+e
+e
+f
+e
+e
+b
+b
+"}
+(4,1,1) = {"
+c
+e
+e
+h
+l
+p
+e
+e
+s
+"}
+(5,1,1) = {"
+d
+f
+f
+i
+m
+q
+f
+f
+d
+"}
+(6,1,1) = {"
+c
+e
+e
+j
+n
+r
+e
+e
+s
+"}
+(7,1,1) = {"
+b
+b
+e
+e
+f
+e
+e
+b
+b
+"}
+(8,1,1) = {"
+a
+b
+b
+e
+f
+e
+b
+b
+a
+"}
+(9,1,1) = {"
+a
+a
+b
+k
+o
+k
+b
+a
+a
"}
diff --git a/_maps/templates/medium_shuttle1.dmm b/_maps/templates/medium_shuttle1.dmm
index 30243ba58d7..583f691396d 100644
--- a/_maps/templates/medium_shuttle1.dmm
+++ b/_maps/templates/medium_shuttle1.dmm
@@ -4,9 +4,9 @@
/area/space)
"b" = (
/obj/structure/shuttle/engine/propulsion/burst/left{
- tag = "icon-burst_l (EAST)";
+ dir = 8;
icon_state = "burst_l";
- dir = 4
+ tag = "icon-burst_l (EAST)"
},
/turf/open/space,
/area/ruin/powered{
@@ -149,9 +149,9 @@
})
"w" = (
/obj/structure/shuttle/engine/propulsion/burst/right{
- tag = "icon-burst_r (EAST)";
+ dir = 8;
icon_state = "burst_r";
- dir = 4
+ tag = "icon-burst_r (EAST)"
},
/turf/open/space,
/area/ruin/powered{
diff --git a/_maps/templates/medium_shuttle2.dmm b/_maps/templates/medium_shuttle2.dmm
index 96355b7aa8a..021edc62a6b 100644
--- a/_maps/templates/medium_shuttle2.dmm
+++ b/_maps/templates/medium_shuttle2.dmm
@@ -4,9 +4,9 @@
/area/space)
"b" = (
/obj/structure/shuttle/engine/propulsion/burst/left{
- tag = "icon-burst_l (EAST)";
+ dir = 8;
icon_state = "burst_l";
- dir = 4
+ tag = "icon-burst_l (EAST)"
},
/turf/open/space,
/area/ruin/powered{
@@ -43,9 +43,9 @@
})
"f" = (
/obj/structure/shuttle/engine/propulsion/burst/right{
- tag = "icon-burst_r (EAST)";
+ dir = 8;
icon_state = "burst_r";
- dir = 4
+ tag = "icon-burst_r (EAST)"
},
/turf/open/space,
/area/ruin/powered{
diff --git a/_maps/templates/medium_shuttle3.dmm b/_maps/templates/medium_shuttle3.dmm
index a01dba73b54..74c25e5f8cf 100644
--- a/_maps/templates/medium_shuttle3.dmm
+++ b/_maps/templates/medium_shuttle3.dmm
@@ -93,9 +93,9 @@
})
"n" = (
/obj/structure/shuttle/engine/propulsion{
- tag = "icon-propulsion (EAST)";
+ dir = 8;
icon_state = "propulsion";
- dir = 4
+ tag = "icon-propulsion (EAST)"
},
/turf/open/space,
/area/ruin/powered{
@@ -129,9 +129,9 @@
})
"r" = (
/obj/structure/shuttle/engine/propulsion{
- tag = "icon-propulsion (WEST)";
+ dir = 4;
icon_state = "propulsion";
- dir = 8
+ tag = "icon-propulsion (WEST)"
},
/turf/open/space,
/area/ruin/powered{
diff --git a/code/__DEFINES/citadel_defines.dm b/code/__DEFINES/citadel_defines.dm
index 7d391b2147e..c859b8d19ea 100644
--- a/code/__DEFINES/citadel_defines.dm
+++ b/code/__DEFINES/citadel_defines.dm
@@ -64,3 +64,15 @@
#define MILK_RATE 5
#define MILK_RATE_MULT 1
#define MILK_EFFICIENCY 1
+
+
+// Admin ticket things
+#define TICKET_RESOLVED "Yes"
+#define TICKET_UNRESOLVED "No"
+#define TICKET_UNASSIGNED "N/A"
+
+#define TICKET_REPLIED "Yes"
+#define TICKET_UNREPLIED "No"
+
+#define TICKET_INACTIVE "No"
+#define TICKET_ACTIVE "Yes"
\ No newline at end of file
diff --git a/code/__DEFINES/clockcult.dm b/code/__DEFINES/clockcult.dm
index b3b491de4fa..768ee708ecd 100644
--- a/code/__DEFINES/clockcult.dm
+++ b/code/__DEFINES/clockcult.dm
@@ -12,7 +12,8 @@ var/global/list/clockwork_generals_invoked = list("nezbere" = FALSE, "sevtug" =
var/global/list/all_clockwork_objects = list() //All clockwork items, structures, and effects in existence
var/global/list/all_clockwork_mobs = list() //All clockwork SERVANTS (not creatures) in existence
var/global/list/clockwork_component_cache = list(BELLIGERENT_EYE = 0, VANGUARD_COGWHEEL = 0, GEIS_CAPACITOR = 0, REPLICANT_ALLOY = 0, HIEROPHANT_ANSIBLE = 0) //The pool of components that caches draw from
-var/global/ratvar_awakens = 0 //If Ratvar has been summoned; not a boolean, for proper handling of multiple ratvars
+var/global/ratvar_awakens = 0 //If Ratvar has been summoned; not a boolean, for proper handling of multiple Ratvars
+var/global/nezbere_invoked = 0 //If Nezbere has been invoked; not a boolean, for proper handling of multiple Nezberes
var/global/clockwork_gateway_activated = FALSE //if a gateway to the celestial derelict has ever been successfully activated
var/global/list/all_scripture = list() //a list containing scripture instances; not used to track existing scripture
@@ -48,7 +49,9 @@ var/global/list/all_scripture = list() //a list containing scripture instances;
#define MAX_COMPONENTS_BEFORE_RAND (10*LOWER_PROB_PER_COMPONENT) //the number of each component, times LOWER_PROB_PER_COMPONENT, you need to have before component generation will become random
-#define CLOCKWORK_GENERAL_COOLDOWN 3000 //how long clockwork generals go on cooldown after use, defaults to 5 minutes
+#define GLOBAL_CLOCKWORK_GENERAL_COOLDOWN 3000 //how long globally-affecting clockwork generals go on cooldown after use, defaults to 5 minutes
+
+#define CLOCKWORK_GENERAL_COOLDOWN 2000 //how long clockwork generals go on cooldown after use, defaults to 3 minutes 20 seconds
//clockcult power defines
#define MIN_CLOCKCULT_POWER 25 //the minimum amount of power clockcult machines will handle gracefully
@@ -83,9 +86,9 @@ var/global/list/all_scripture = list() //a list containing scripture instances;
#define GATEWAY_RATVAR_ARRIVAL 300 //when progress is at or above this, game over ratvar's here everybody go home
//Objective defines
-#define CLOCKCULT_GATEWAY "gateway"
+#define CLOCKCULT_GATEWAY "summon ratvar"
-#define CLOCKCULT_ESCAPE "escape"
+#define CLOCKCULT_ESCAPE "proselytize the station"
//misc clockcult stuff
#define MARAUDER_EMERGE_THRESHOLD 65 //marauders cannot emerge unless host is at this% or less health
@@ -95,3 +98,5 @@ var/global/list/all_scripture = list() //a list containing scripture instances;
#define PROSELYTIZER_REPAIR_PER_TICK 4 //how much a proselytizer repairs each tick, and also how many deciseconds each tick is
#define OCULAR_WARDEN_EXCLUSION_RANGE 3 //the range at which ocular wardens cannot be placed near other ocular wardens
+
+#define RATVARIAN_SPEAR_DURATION 1800 //how long ratvarian spears last; defaults to 3 minutes
diff --git a/code/__DEFINES/combat.dm b/code/__DEFINES/combat.dm
index 12810e8aba0..c94cc58f66d 100644
--- a/code/__DEFINES/combat.dm
+++ b/code/__DEFINES/combat.dm
@@ -132,4 +132,13 @@
#define IS_SHARP 1
#define IS_SHARP_ACCURATE 2
-
+//His Grace.
+#define HIS_GRACE_SATIATED 0 //He hungers not. If bloodthirst is set to this, His Grace is asleep.
+#define HIS_GRACE_PECKISH 20 //Slightly hungry.
+#define HIS_GRACE_HUNGRY 60 //Getting closer. Increases damage up to a minimum of 20.
+#define HIS_GRACE_FAMISHED 100 //Dangerous. Increases damage up to a minimum of 25 and cannot be dropped.
+#define HIS_GRACE_STARVING 120 //Incredibly close to breaking loose. Increases damage up to a minimum of 30.
+#define HIS_GRACE_CONSUME_OWNER 140 //His Grace consumes His owner at this point and becomes aggressive.
+#define HIS_GRACE_FALL_ASLEEP 160 //If it reaches this point, He falls asleep and resets.
+
+#define HIS_GRACE_FORCE_BONUS 4 //How much force is gained per kill.
diff --git a/code/__DEFINES/construction.dm b/code/__DEFINES/construction.dm
index 3fbc8066249..b724ef66cfd 100644
--- a/code/__DEFINES/construction.dm
+++ b/code/__DEFINES/construction.dm
@@ -9,6 +9,7 @@
#define GIRDER_DISPLACED 3
#define GIRDER_DISASSEMBLED 4
+
//rwall construction states
#define INTACT 0
#define SUPPORT_LINES 1
@@ -18,6 +19,10 @@
#define SUPPORT_RODS 5
#define SHEATH 6
+//plastic flaps construction states
+#define PLASTIC_FLAPS_NORMAL 0
+#define PLASTIC_FLAPS_DETACHED 1
+
//default_unfasten_wrench() return defines
#define CANT_UNFASTEN 0
#define FAILED_UNFASTEN 1
@@ -49,8 +54,7 @@
//Construction defines for the pinion airlock
#define GEAR_SECURE 1
-#define GEAR_UNFASTENED 2
-#define GEAR_LOOSE 3
+#define GEAR_LOOSE 2
//other construction-related things
@@ -68,6 +72,7 @@
#define MAT_DIAMOND "$diamond"
#define MAT_URANIUM "$uranium"
#define MAT_PLASMA "$plasma"
+#define MAT_BLUESPACE "$bluespace"
#define MAT_BANANIUM "$bananium"
#define MAT_TITANIUM "$titanium"
#define MAT_BIOMASS "$biomass"
diff --git a/code/__DEFINES/flags.dm b/code/__DEFINES/flags.dm
index a4766ceb994..d736605855f 100644
--- a/code/__DEFINES/flags.dm
+++ b/code/__DEFINES/flags.dm
@@ -16,7 +16,7 @@
#define CONDUCT 64 // conducts electricity (metal etc.)
#define ABSTRACT 128 // for all things that are technically items but used for various different stuff, made it 128 because it could conflict with other flags other way
#define NODECONSTRUCT 128 // For machines and structures that should not break into parts, eg, holodeck stuff
-#define FPRINT 256 // takes a fingerprint
+#define OVERLAY_QUEUED 256 //atom queued to SSoverlay
#define ON_BORDER 512 // item has priority to check when entering or leaving
#define EARBANGPROTECT 1024
diff --git a/code/__DEFINES/is_helpers.dm b/code/__DEFINES/is_helpers.dm
index 3316894b169..d8d80a8b1c5 100644
--- a/code/__DEFINES/is_helpers.dm
+++ b/code/__DEFINES/is_helpers.dm
@@ -128,6 +128,8 @@ var/list/static/global/pointed_types = typecacheof(list(
#define is_pointed(W) (is_type_in_typecache(W, pointed_types))
+#define isbodypart(A) (istype(A, /obj/item/bodypart))
+
//Assemblies
#define isassembly(O) (istype(O, /obj/item/device/assembly))
diff --git a/code/__DEFINES/layers.dm b/code/__DEFINES/layers.dm
index 8ec5bc755ad..69936099b14 100644
--- a/code/__DEFINES/layers.dm
+++ b/code/__DEFINES/layers.dm
@@ -74,3 +74,6 @@
#define HUD_LAYER 19
#define ABOVE_HUD_PLANE 20
#define ABOVE_HUD_LAYER 20
+
+#define SPLASHSCREEN_LAYER 21
+#define SPLASHSCREEN_PLANE 21
\ No newline at end of file
diff --git a/code/__DEFINES/status_effects.dm b/code/__DEFINES/status_effects.dm
index 1e1cd7a6175..ca376be72c4 100644
--- a/code/__DEFINES/status_effects.dm
+++ b/code/__DEFINES/status_effects.dm
@@ -16,8 +16,12 @@
#define STATUS_EFFECT_POWERREGEN /datum/status_effect/cyborg_power_regen //Regenerates power on a given cyborg over time
+#define STATUS_EFFECT_HISGRACE /datum/status_effect/his_grace //His Grace.
+
/////////////
// DEBUFFS //
/////////////
#define STATUS_EFFECT_SIGILMARK /datum/status_effect/sigil_mark
+
+#define STATUS_EFFECT_HISWRATH /datum/status_effect/his_wrath //His Wrath.
diff --git a/code/__DEFINES/tick.dm b/code/__DEFINES/tick.dm
index e0dd0cc9057..393ad99eda6 100644
--- a/code/__DEFINES/tick.dm
+++ b/code/__DEFINES/tick.dm
@@ -3,5 +3,5 @@
#define TICK_LIMIT_MC 70
#define TICK_LIMIT_MC_INIT_DEFAULT 98
-#define TICK_CHECK ( world.tick_usage > CURRENT_TICKLIMIT ? stoplag() : 0 )
+#define TICK_CHECK ( world.tick_usage > CURRENT_TICKLIMIT )
#define CHECK_TICK if (world.tick_usage > CURRENT_TICKLIMIT) stoplag()
diff --git a/code/__HELPERS/lists.dm b/code/__HELPERS/_lists.dm
similarity index 95%
rename from code/__HELPERS/lists.dm
rename to code/__HELPERS/_lists.dm
index 5e82a8ab266..de22c139ae9 100644
--- a/code/__HELPERS/lists.dm
+++ b/code/__HELPERS/_lists.dm
@@ -465,4 +465,35 @@
#define LAZYADD(L, I) if(!L) { L = list(); } L += I;
#define LAZYACCESS(L, I) (L ? (isnum(I) ? (I > 0 && I <= L.len ? L[I] : null) : L[I]) : null)
#define LAZYLEN(L) length(L)
-#define LAZYCLEARLIST(L) if(L) L.Cut()
\ No newline at end of file
+#define LAZYCLEARLIST(L) if(L) L.Cut()
+
+/* Definining a counter as a series of key -> numeric value entries
+
+ * All these procs modify in place.
+*/
+
+/proc/counterlist_scale(list/L, scalar)
+ var/list/out = list()
+ for(var/key in L)
+ out[key] = L[key] * scalar
+ . = out
+
+/proc/counterlist_sum(list/L)
+ . = 0
+ for(var/key in L)
+ . += L[key]
+
+/proc/counterlist_normalise(list/L)
+ var/avg = counterlist_sum(L)
+ if(avg != 0)
+ . = counterlist_scale(L, 1 / avg)
+ else
+ . = L
+
+/proc/counterlist_combine(list/L1, list/L2)
+ for(var/key in L2)
+ var/other_value = L2[key]
+ if(key in L1)
+ L1[key] += other_value
+ else
+ L1[key] = other_value
diff --git a/code/__HELPERS/_logging.dm b/code/__HELPERS/_logging.dm
index fe5852c3b3e..ea6cecfbacd 100644
--- a/code/__HELPERS/_logging.dm
+++ b/code/__HELPERS/_logging.dm
@@ -22,9 +22,15 @@
if (config.log_admin)
diary << "\[[time_stamp()]]ADMIN: [text]"
+//Items using this proc are stripped from public logs - use with caution
+/proc/log_admin_private(text)
+ admin_log.Add(text)
+ if (config.log_admin)
+ diary << "\[[time_stamp()]]ADMINPRIVATE: [text]"
+
/proc/log_adminsay(text)
if (config.log_adminchat)
- log_admin("ASAY: [text]")
+ log_admin_private("ASAY: [text]")
/proc/log_dsay(text)
if (config.log_adminchat)
@@ -108,4 +114,4 @@
if(istype(T))
return "[A.loc] [COORD(T)] ([A.loc.type])"
else if(A.loc)
- return "[A.loc] (0, 0, 0) ([A.loc.type])"
\ No newline at end of file
+ return "[A.loc] (0, 0, 0) ([A.loc.type])"
diff --git a/code/__HELPERS/game.dm b/code/__HELPERS/game.dm
index 2472c6a6d45..8eaa331bc4d 100644
--- a/code/__HELPERS/game.dm
+++ b/code/__HELPERS/game.dm
@@ -17,12 +17,6 @@
var/area/Y = get_area(X)
return Y.name
-/proc/get_area_master(O)
- var/area/A = get_area(O)
- if(A && A.master)
- A = A.master
- return A
-
/proc/get_area_by_name(N) //get area by its name
for(var/area/A in world)
if(A.name == N)
@@ -81,13 +75,13 @@
return heard
/proc/alone_in_area(area/the_area, mob/must_be_alone, check_type = /mob/living/carbon)
- var/area/our_area = get_area_master(the_area)
+ var/area/our_area = get_area(the_area)
for(var/C in living_mob_list)
if(!istype(C, check_type))
continue
if(C == must_be_alone)
continue
- if(our_area == get_area_master(C))
+ if(our_area == get_area(C))
return 0
return 1
diff --git a/code/__HELPERS/icon_smoothing.dm b/code/__HELPERS/icon_smoothing.dm
index ee0f069c924..108c2f1c54b 100644
--- a/code/__HELPERS/icon_smoothing.dm
+++ b/code/__HELPERS/icon_smoothing.dm
@@ -238,32 +238,31 @@
else if(adjacencies & N_EAST)
se = "4-e"
- var/list/New = list()
+ var/list/New
if(A.top_left_corner != nw)
- A.overlays -= A.top_left_corner
+ A.cut_overlay(A.top_left_corner)
A.top_left_corner = nw
- New += nw
+ LAZYADD(New, nw)
if(A.top_right_corner != ne)
- A.overlays -= A.top_right_corner
+ A.cut_overlay(A.top_right_corner)
A.top_right_corner = ne
- New += ne
+ LAZYADD(New, ne)
if(A.bottom_right_corner != sw)
- A.overlays -= A.bottom_right_corner
+ A.cut_overlay(A.bottom_right_corner)
A.bottom_right_corner = sw
- New += sw
+ LAZYADD(New, sw)
if(A.bottom_left_corner != se)
- A.overlays -= A.bottom_left_corner
+ A.cut_overlay(A.bottom_left_corner)
A.bottom_left_corner = se
- New += se
-
- if(New.len)
+ LAZYADD(New, se)
+
+ if(New)
A.add_overlay(New)
-
/proc/find_type_in_direction(atom/source, direction)
var/turf/target_turf = get_step(source, direction)
if(!target_turf)
@@ -312,13 +311,13 @@
queue_smooth(A)
/atom/proc/clear_smooth_overlays()
- overlays -= top_left_corner
+ cut_overlay(top_left_corner)
top_left_corner = null
- overlays -= top_right_corner
+ cut_overlay(top_right_corner)
top_right_corner = null
- overlays -= bottom_right_corner
+ cut_overlay(bottom_right_corner)
bottom_right_corner = null
- overlays -= bottom_left_corner
+ cut_overlay(bottom_left_corner)
bottom_left_corner = null
/atom/proc/replace_smooth_overlays(nw, ne, sw, se)
diff --git a/code/__HELPERS/icons.dm b/code/__HELPERS/icons.dm
index 9ebc0ef72de..e2a29542bab 100644
--- a/code/__HELPERS/icons.dm
+++ b/code/__HELPERS/icons.dm
@@ -943,27 +943,6 @@ var/global/list/friendly_animal_types = list()
return J
return 0
-/atom/proc/cut_overlays()
- overlays.Cut()
- overlays += priority_overlays
-
-/atom/proc/add_overlay(image, priority = 0)
- var/list/new_overlays = overlays.Copy()
- new_overlays -= image
- if(priority)
- if(!priority_overlays)
- priority_overlays = list()
- priority_overlays += image
- new_overlays += image
- else
- if(priority_overlays)
- new_overlays -= priority_overlays
- new_overlays += image
- new_overlays += priority_overlays
- else
- new_overlays += image
- overlays = new_overlays
-
var/global/list/humanoid_icon_cache = list()
//For creating consistent icons for human looking simple animals
/proc/get_flat_human_icon(var/icon_id,var/outfit,var/datum/preferences/prefs)
diff --git a/code/__HELPERS/time.dm b/code/__HELPERS/time.dm
index a4b2be96b0a..94a97e2b3bc 100644
--- a/code/__HELPERS/time.dm
+++ b/code/__HELPERS/time.dm
@@ -21,8 +21,10 @@
//return 1
//returns timestamp in a sql and ISO 8601 friendly format
-/proc/SQLtime()
- return time2text(world.realtime, "YYYY-MM-DD hh:mm:ss")
+/proc/SQLtime(timevar)
+ if(!timevar)
+ timevar = world.realtime
+ return time2text(timevar, "YYYY-MM-DD hh:mm:ss")
/var/midnight_rollovers = 0
diff --git a/code/__HELPERS/unsorted.dm b/code/__HELPERS/unsorted.dm
index d64e2162c2f..9dd1fd5ac5f 100644
--- a/code/__HELPERS/unsorted.dm
+++ b/code/__HELPERS/unsorted.dm
@@ -1191,7 +1191,7 @@ B --><-- A
return
A.add_overlay(I)
sleep(duration)
- A.overlays -= I
+ A.cut_overlay(I)
/proc/get_areas_in_z(zlevel)
. = list()
@@ -1286,6 +1286,7 @@ proc/pick_closest_path(value, list/matches = get_fancy_list_of_atom_types())
#define RANDOM_COLOUR (rgb(rand(0,255),rand(0,255),rand(0,255)))
#define QDEL_IN(item, time) addtimer(CALLBACK(GLOBAL_PROC, .proc/qdel, item), time, TIMER_STOPPABLE)
+#define QDEL_NULL(item) qdel(item); item = null
/proc/random_nukecode()
var/val = rand(0, 99999)
@@ -1336,3 +1337,59 @@ proc/pick_closest_path(value, list/matches = get_fancy_list_of_atom_types())
if(W.ini_dir == dir_to_check || W.ini_dir == FULLTILE_WINDOW_DIR || dir_to_check == FULLTILE_WINDOW_DIR)
return FALSE
return TRUE
+
+//WHATEVER YOU USE THIS FOR MUST BE SANITIZED TO SHIT, IT USES SHELL
+//It also sleeps
+
+//Set this to TRUE before calling
+//This prevents RCEs from badmins
+//kevinz000 if you touch this I will hunt you down
+var/valid_HTTPSGet = FALSE
+/proc/HTTPSGet(url)
+ if(findtext(url, "\""))
+ valid_HTTPSGet = FALSE
+
+ if(!valid_HTTPSGet)
+ if(usr)
+ CRASH("[usr.ckey]([usr]) just attempted an invalid HTTPSGet on: [url]!")
+ else
+ CRASH("Invalid HTTPSGet call on: [url]")
+ valid_HTTPSGet = FALSE
+
+ //"This has got to be the ugliest hack I have ever done"
+ //warning, here be dragons
+ /*
+ | @___oo
+ /\ /\ / (__,,,,|
+ ) /^\) ^\/ _)
+ ) /^\/ _)
+ ) _ / / _)
+ /\ )/\/ || | )_)
+ < > |(,,) )__)
+ || / \)___)\
+ | \____( )___) )___
+ \______(_______;;; __;;;
+ */
+ var/temp_file = "HTTPSGetOutput.txt"
+ var/command
+ if(world.system_type == MS_WINDOWS)
+ command = "powershell -Command \"wget [url] -OutFile [temp_file]\""
+ else if(world.system_type == UNIX)
+ command = "wget -O [temp_file] [url]"
+ else
+ CRASH("Invalid world.system_type ([world.system_type])? Yell at Lummox.")
+
+ world.log << "HTTPSGet: [url]"
+ var/result = shell(command)
+ if(result != 0)
+ world.log << "Download failed: shell exited with code: [result]"
+ return
+
+ var/f = file(temp_file)
+ if(!f)
+ world.log << "Download failed: Temp file not found"
+ return
+
+ . = file2text(f)
+ f = null
+ fdel(temp_file)
diff --git a/code/_globalvars/configuration.dm b/code/_globalvars/configuration.dm
index 075289e3200..cb3e38a92fc 100644
--- a/code/_globalvars/configuration.dm
+++ b/code/_globalvars/configuration.dm
@@ -9,9 +9,6 @@ var/changelog_hash = ""
var/ooc_allowed = 1 // used with admin verbs to disable ooc - not a config option apparently
var/dooc_allowed = 1
-//citadel code
-var/looc_allowed = 1
-var/dlooc_allowed = 1
var/abandon_allowed = 1
var/enter_allowed = 1
var/guests_allowed = 1
diff --git a/code/_globalvars/lists/mapping.dm b/code/_globalvars/lists/mapping.dm
index f37fb053c39..61f2e16c04e 100644
--- a/code/_globalvars/lists/mapping.dm
+++ b/code/_globalvars/lists/mapping.dm
@@ -55,14 +55,4 @@ var/list/awaydestinations = list() //a list of landmarks that the warpgate can t
//used by jump-to-area etc. Updated by area/updateName()
var/list/sortedAreas = list()
-//List of preloaded templates
-var/list/datum/map_template/map_templates = list()
-
-var/list/datum/map_template/ruins_templates = list()
-var/list/datum/map_template/space_ruins_templates = list()
-var/list/datum/map_template/lava_ruins_templates = list()
-
-var/list/datum/map_template/shuttle_templates = list()
-var/list/datum/map_template/shelter_templates = list()
-
var/list/transit_markers = list()
diff --git a/code/_onclick/hud/action_button.dm b/code/_onclick/hud/action_button.dm
index 0debd0a3392..407137dfcfd 100644
--- a/code/_onclick/hud/action_button.dm
+++ b/code/_onclick/hud/action_button.dm
@@ -14,8 +14,9 @@
moved = 0
usr.update_action_buttons() //redraw buttons that are no longer considered "moved"
return 1
- if(usr.next_move >= world.time) // Is this needed ?
+ if(usr.next_click > world.time)
return
+ usr.next_click = world.time + 1
linked_action.Trigger()
return 1
@@ -71,7 +72,7 @@
. = list()
.["bg_icon"] = ui_style_icon
.["bg_state"] = "template"
-
+
//TODO : Make these fit theme
.["toggle_icon"] = 'icons/mob/actions.dmi'
.["toggle_hide"] = "hide"
diff --git a/code/_onclick/hud/alert.dm b/code/_onclick/hud/alert.dm
index 0fea126a80a..cd5e7e7bb56 100644
--- a/code/_onclick/hud/alert.dm
+++ b/code/_onclick/hud/alert.dm
@@ -16,49 +16,49 @@
if(!category)
return
- var/obj/screen/alert/alert
+ var/obj/screen/alert/thealert
if(alerts[category])
- alert = alerts[category]
- if(new_master && new_master != alert.master)
- WARNING("[src] threw alert [category] with new_master [new_master] while already having that alert with master [alert.master]")
+ thealert = alerts[category]
+ if(new_master && new_master != thealert.master)
+ WARNING("[src] threw alert [category] with new_master [new_master] while already having that alert with master [thealert.master]")
clear_alert(category)
return .()
- else if(alert.type != type)
+ else if(thealert.type != type)
clear_alert(category)
return .()
- else if(!severity || severity == alert.severity)
- if(alert.timeout)
+ else if(!severity || severity == thealert.severity)
+ if(thealert.timeout)
clear_alert(category)
return .()
else //no need to update
return 0
else
- alert = new type()
+ thealert = new type()
if(new_master)
var/old_layer = new_master.layer
var/old_plane = new_master.plane
new_master.layer = FLOAT_LAYER
new_master.plane = FLOAT_PLANE
- alert.overlays += new_master
+ thealert.add_overlay(new_master)
new_master.layer = old_layer
new_master.plane = old_plane
- alert.icon_state = "template" // We'll set the icon to the client's ui pref in reorganize_alerts()
- alert.master = new_master
+ thealert.icon_state = "template" // We'll set the icon to the client's ui pref in reorganize_alerts()
+ thealert.master = new_master
else
- alert.icon_state = "[initial(alert.icon_state)][severity]"
- alert.severity = severity
+ thealert.icon_state = "[initial(thealert.icon_state)][severity]"
+ thealert.severity = severity
- alerts[category] = alert
+ alerts[category] = thealert
if(client && hud_used)
hud_used.reorganize_alerts()
- alert.transform = matrix(32, 6, MATRIX_TRANSLATE)
- animate(alert, transform = matrix(), time = 2.5, easing = CUBIC_EASING)
+ thealert.transform = matrix(32, 6, MATRIX_TRANSLATE)
+ animate(thealert, transform = matrix(), time = 2.5, easing = CUBIC_EASING)
- if(alert.timeout)
- addtimer(CALLBACK(src, .proc/alert_timeout, alert, category), alert.timeout)
- alert.timeout = world.time + alert.timeout - world.tick_lag
- return alert
+ if(thealert.timeout)
+ addtimer(CALLBACK(src, .proc/alert_timeout, thealert, category), thealert.timeout)
+ thealert.timeout = world.time + thealert.timeout - world.tick_lag
+ return thealert
/mob/proc/alert_timeout(obj/screen/alert/alert, category)
if(alert.timeout && alerts[category] == alert && world.time >= alert.timeout)
@@ -286,17 +286,15 @@ or shoot a gun to move around via Newton's 3rd Law of Motion."
else
name = "Next Tier Requirements"
var/validservants = 0
- var/unconverted_ais_exist = FALSE
+ var/unconverted_ais_exist = get_unconverted_ais()
for(var/mob/living/L in living_mob_list)
if(is_servant_of_ratvar(L) && (ishuman(L) || issilicon(L)))
validservants++
- else if(isAI(L))
- unconverted_ais_exist++
var/req_servants = 0
var/req_caches = 0
var/req_cv = 0
var/req_ai = FALSE
- desc = "Requirements for [current_state] Scripture:"
+ var/list/textlist = list("Requirements for [current_state] Scripture:")
switch(current_state) //get our requirements based on the tier
if(SCRIPTURE_SCRIPT)
req_servants = SCRIPT_SERVANT_REQ
@@ -314,31 +312,32 @@ or shoot a gun to move around via Newton's 3rd Law of Motion."
req_caches = JUDGEMENT_CACHE_REQ
req_cv = JUDGEMENT_CV_REQ
req_ai = TRUE
- desc += "
[validservants]/[req_servants] Servants"
+ textlist += "
[validservants]/[req_servants] Servants"
if(validservants < req_servants)
icon_state += "-servants" //in this manner, generate an icon key based on what we're missing
else
- desc += ": \[CHECK\]"
- desc += "
[clockwork_caches]/[req_caches] Tinkerer's Caches"
+ textlist += ": \[CHECK\]"
+ textlist += "
[clockwork_caches]/[req_caches] Tinkerer's Caches"
if(clockwork_caches < req_caches)
icon_state += "-caches"
else
- desc += ": \[CHECK\]"
+ textlist += ": \[CHECK\]"
if(req_cv) //cv only shows up if the tier requires it
- desc += "
[clockwork_construction_value]/[req_cv] Construction Value"
+ textlist += "
[clockwork_construction_value]/[req_cv] Construction Value"
if(clockwork_construction_value < req_cv)
icon_state += "-cv"
else
- desc += ": \[CHECK\]"
+ textlist += ": \[CHECK\]"
if(req_ai) //same for ai
if(unconverted_ais_exist)
if(unconverted_ais_exist > 1)
- desc += "
[unconverted_ais_exist] unconverted AIs exist!
"
+ textlist += "
[unconverted_ais_exist] unconverted AIs exist!
"
else
- desc += "
An unconverted AI exists!"
+ textlist += "
An unconverted AI exists!"
icon_state += "-ai"
else
- desc += "
No unconverted AIs exist: \[CHECK\]"
+ textlist += "
No unconverted AIs exist: \[CHECK\]"
+ desc = textlist.Join()
/obj/screen/alert/clockwork/infodump
name = "Global Records"
@@ -351,55 +350,62 @@ or shoot a gun to move around via Newton's 3rd Law of Motion."
else
var/servants = 0
var/validservants = 0
- var/unconverted_ais_exist = FALSE
+ var/unconverted_ais_exist = get_unconverted_ais()
var/list/scripture_states = scripture_unlock_check()
+ var/list/textlist
for(var/mob/living/L in living_mob_list)
if(is_servant_of_ratvar(L))
servants++
if(ishuman(L) || issilicon(L))
validservants++
- else if(isAI(L))
- unconverted_ais_exist++
if(servants > 1)
if(validservants > 1)
- desc = "[servants] Servants, [validservants] of which count towards scripture.
"
+ textlist = list("[servants] Servants, [validservants] of which count towards scripture.
")
else
- desc = "[servants] Servants, [validservants ? "[validservants] of which counts":"none of which count"] towards scripture.
"
+ textlist = list("[servants] Servants, [validservants ? "[validservants] of which counts":"none of which count"] towards scripture.
")
else
- desc = "[servants] Servant, who [validservants ? "counts":"does not count"] towards scripture.
"
- desc += "[clockwork_caches ? "[clockwork_caches] Tinkerer's Caches.":"No Tinkerer's Caches, construct one!"]
\
+ textlist = list("[servants] Servant, who [validservants ? "counts":"does not count"] towards scripture.
")
+ textlist += "[clockwork_caches ? "[clockwork_caches] Tinkerer's Caches.":"No Tinkerer's Caches, construct one!"]
\
[clockwork_construction_value] Construction Value.
"
if(clockwork_daemons)
- desc += "[clockwork_daemons] Tinkerer's Daemons: [servants * 0.2 < clockwork_daemons ? "DISABLED":"ACTIVE"]
"
+ textlist += "[clockwork_daemons] Tinkerer's Daemons: [servants * 0.2 < clockwork_daemons ? "DISABLED":"ACTIVE"]
"
else
- desc += "No Tinkerer's Daemons.
"
+ textlist += "No Tinkerer's Daemons.
"
for(var/obj/structure/destructible/clockwork/massive/celestial_gateway/G in all_clockwork_objects)
var/area/gate_area = get_area(G)
- desc += "Ark Location: [uppertext(gate_area.map_name)]
"
- if(G.ratvar_portal)
- desc += "Seconds until Ratvar's arrival: [G.get_arrival_text(TRUE)]
"
+ textlist += "Ark Location: [uppertext(gate_area.map_name)]
"
+ if(G.still_needs_components())
+ textlist += "Ark Components required: "
+ for(var/i in G.required_components)
+ if(G.required_components[i])
+ textlist += "[G.required_components[i]] "
+ textlist += "
"
else
- desc += "Seconds until Proselytization: [G.get_arrival_text(TRUE)]
"
+ if(G.ratvar_portal)
+ textlist += "Seconds until Ratvar's arrival: [G.get_arrival_text(TRUE)]
"
+ else
+ textlist += "Seconds until Proselytization: [G.get_arrival_text(TRUE)]
"
if(unconverted_ais_exist)
if(unconverted_ais_exist > 1)
- desc += "[unconverted_ais_exist] unconverted AIs exist!
"
+ textlist += "[unconverted_ais_exist] unconverted AIs exist!
"
else
- desc += "An unconverted AI exists!
"
+ textlist += "An unconverted AI exists!
"
if(scripture_states[SCRIPTURE_REVENANT])
var/inathneq_available = clockwork_generals_invoked["inath-neq"] <= world.time
var/sevtug_available = clockwork_generals_invoked["sevtug"] <= world.time
var/nezbere_available = clockwork_generals_invoked["nezbere"] <= world.time
var/nezcrentr_available = clockwork_generals_invoked["nzcrentr"] <= world.time
if(inathneq_available || sevtug_available || nezbere_available || nezcrentr_available)
- desc += "Generals available:[inathneq_available ? "
INATH-NEQ":""][sevtug_available ? "
SEVTUG":""]\
+ textlist += "Generals available:[inathneq_available ? "
INATH-NEQ":""][sevtug_available ? "
SEVTUG":""]\
[nezbere_available ? "
NEZBERE":""][nezcrentr_available ? "
NZCRENTR":""]
"
else
- desc += "Generals available: NONE
"
+ textlist += "Generals available: NONE
"
else
- desc += "Generals available: NONE
"
+ textlist += "Generals available: NONE
"
for(var/i in scripture_states)
if(i != SCRIPTURE_DRIVER) //ignore the always-unlocked stuff
- desc += "[i] Scripture: [scripture_states[i] ? "UNLOCKED":"LOCKED"]
"
+ textlist += "[i] Scripture: [scripture_states[i] ? "UNLOCKED":"LOCKED"]
"
+ desc = textlist.Join()
..()
//GUARDIANS
diff --git a/code/_onclick/hud/parallax.dm b/code/_onclick/hud/parallax.dm
index 30cbc094abc..a7027798a89 100644
--- a/code/_onclick/hud/parallax.dm
+++ b/code/_onclick/hud/parallax.dm
@@ -36,7 +36,12 @@
/datum/hud/proc/apply_parallax_pref()
var/client/C = mymob.client
- if(C.prefs)
+ if(C.prefs)
+ var/pref = C.prefs.parallax
+ if (isnull(pref))
+ pref = PARALLAX_HIGH
+ if (C.byond_version < 511)
+ pref = PARALLAX_DISABLE
switch(C.prefs.parallax)
if (PARALLAX_INSANE)
C.parallax_throttle = FALSE
@@ -220,8 +225,9 @@
/obj/screen/parallax_layer/proc/update_o(view)
if (!view)
view = world.view
- var/list/new_overlays = list()
+
var/count = Ceiling(view/(480/world.icon_size))+1
+ var/list/new_overlays = new
for(var/x in -count to count)
for(var/y in -count to count)
if(x == 0 && y == 0)
@@ -229,8 +235,8 @@
var/image/I = image(icon, null, icon_state)
I.transform = matrix(1, 0, x*480, 0, 1, y*480)
new_overlays += I
-
- overlays = new_overlays
+ cut_overlays()
+ add_overlay(new_overlays)
view_sized = view
/obj/screen/parallax_layer/layer_1
diff --git a/code/_onclick/hud/plane_master.dm b/code/_onclick/hud/plane_master.dm
index eda44bda065..5ba5a734e13 100644
--- a/code/_onclick/hud/plane_master.dm
+++ b/code/_onclick/hud/plane_master.dm
@@ -11,7 +11,7 @@
backdrop.transform = matrix(200, 0, 0, 0, 200, 0)
backdrop.layer = BACKGROUND_LAYER
backdrop.blend_mode = BLEND_OVERLAY
- overlays += backdrop
+ add_overlay(backdrop)
..()
/obj/screen/plane_master/game_world
diff --git a/code/_onclick/hud/screen_objects.dm b/code/_onclick/hud/screen_objects.dm
index cadc189b320..178ab162001 100644
--- a/code/_onclick/hud/screen_objects.dm
+++ b/code/_onclick/hud/screen_objects.dm
@@ -21,6 +21,7 @@
/obj/screen/Destroy()
master = null
+ hud = null
return ..()
/obj/screen/examine(mob/user)
@@ -664,3 +665,32 @@
if(word_messages.len && talk_cooldown < world.time)
talk_cooldown = world.time + 10
L.say(pick(word_messages))
+
+/obj/screen/splash
+ icon = 'icons/misc/fullscreen.dmi'
+ icon_state = "title"
+ screen_loc = "1,1"
+ layer = SPLASHSCREEN_LAYER
+ plane = SPLASHSCREEN_PLANE
+ var/client/holder
+
+/obj/screen/splash/New(client/C, fadeout, qdel_after = TRUE)
+ ..()
+ holder = C
+ holder.screen += src
+ var/titlescreen = TITLESCREEN
+ if(titlescreen)
+ icon_state = titlescreen
+ if(fadeout)
+ animate(src, alpha = 0, time = 30)
+ else
+ alpha = 0
+ animate(src, alpha = 255, time = 30)
+ if(qdel_after)
+ QDEL_IN(src, 30)
+
+/obj/screen/splash/Destroy()
+ if(holder)
+ holder.screen -= src
+ holder = null
+ return ..()
\ No newline at end of file
diff --git a/code/citadel/_cit_helpers.dm b/code/citadel/_cit_helpers.dm
index a48158d42cb..e00c07c438d 100644
--- a/code/citadel/_cit_helpers.dm
+++ b/code/citadel/_cit_helpers.dm
@@ -60,6 +60,10 @@ var/global/list/milk_id_list = list("milk")
//mentor stuff
var/list/mentors = list()
+//Looc stuff
+var/global/looc_allowed = 1
+var/global/dlooc_allowed = 1
+
/client/proc/reload_mentors()
set name = "Reload Mentors"
set category = "Admin"
diff --git a/code/controllers/configuration.dm b/code/controllers/configuration.dm
index a3a1c3bd74b..dd29399f771 100644
--- a/code/controllers/configuration.dm
+++ b/code/controllers/configuration.dm
@@ -10,6 +10,9 @@
var/autoadmin = 0
var/autoadmin_rank = "Game Admin"
+/datum/protected_configuration/SDQL_update()
+ return FALSE
+
/datum/protected_configuration/vv_get_var(var_name)
return debug_variable(var_name, "SECRET", 0, src)
@@ -76,6 +79,7 @@
var/forumurl = "http://tgstation13.org/phpBB/index.php" //default forums
var/rulesurl = "http://www.tgstation13.org/wiki/Rules" // default rules
var/githuburl = "https://www.github.com/tgstation/-tg-station" //default github
+ var/githubrepoid
var/forbid_singulo_possession = 0
var/useircbot = 0
@@ -247,15 +251,6 @@
var/error_silence_time = 6000 // How long a unique error will be silenced for
var/error_msg_delay = 50 // How long to wait between messaging admins about occurrences of a unique error
- var/mentors_mobname_only = 0 // Only display mob name to mentors in mentorhelps
- var/mentor_legacy_system = 0 // Whether to use the legacy mentor system (flat file) instead of SQL
- // Discord crap.
- var/discord_url = "hfdksjhfa.com"
- var/discord_password
- var/announce_watchlist = 0
- var/announce_adminhelps = 0
-
-
/datum/configuration/New()
gamemode_cache = typecacheof(/datum/game_mode,TRUE)
for(var/T in gamemode_cache)
@@ -367,7 +362,7 @@
if("servername")
config.server_name = value
if("serversqlname")
- config.server_sql_name = 1
+ config.server_sql_name = value
if("stationname")
config.station_name = value
if("hostedby")
@@ -384,6 +379,8 @@
config.rulesurl = value
if("githuburl")
config.githuburl = value
+ if("githubrepoid")
+ config.githubrepoid = value
if("guest_jobban")
config.guest_jobban = 1
if("guest_ban")
diff --git a/code/controllers/configuration_citadel.dm b/code/controllers/configuration_citadel.dm
new file mode 100644
index 00000000000..a1e70c9e7e0
--- /dev/null
+++ b/code/controllers/configuration_citadel.dm
@@ -0,0 +1,8 @@
+/datum/configuration
+ var/mentors_mobname_only = 0 // Only display mob name to mentors in mentorhelps
+ var/mentor_legacy_system = 0 // Whether to use the legacy mentor system (flat file) instead of SQL
+ // Discord crap.
+ var/discord_url = "hfdksjhfa.com"
+ var/discord_password
+ var/announce_watchlist = 0
+ var/announce_adminhelps = 0
\ No newline at end of file
diff --git a/code/controllers/master.dm b/code/controllers/master.dm
index f17997074d2..148a08d2674 100644
--- a/code/controllers/master.dm
+++ b/code/controllers/master.dm
@@ -39,6 +39,7 @@ var/CURRENT_TICKLIMIT = TICK_LIMIT_RUNNING
var/make_runtime = 0
+ var/initializations_finished_with_no_players_logged_in //I wonder what this could be?
// Has round started? (So we know what subsystems to run)
var/round_started = 0
@@ -49,6 +50,7 @@ var/CURRENT_TICKLIMIT = TICK_LIMIT_RUNNING
var/datum/subsystem/queue_tail //End of queue linked list (used for appending to the list)
var/queue_priority_count = 0 //Running total so that we don't have to loop thru the queue each run to split up the tick
var/queue_priority_count_bg = 0 //Same, but for background subsystems
+ var/map_loading = FALSE //Are we loading in a new map?
/datum/controller/master/New()
// Highlander-style: there can only be one! Kill off the old and replace it with the new.
@@ -129,24 +131,29 @@ var/CURRENT_TICKLIMIT = TICK_LIMIT_RUNNING
// Sort subsystems by init_order, so they initialize in the correct order.
sortTim(subsystems, /proc/cmp_subsystem_init)
+ var/start_timeofday = REALTIMEOFDAY
// Initialize subsystems.
CURRENT_TICKLIMIT = config.tick_limit_mc_init
for (var/datum/subsystem/SS in subsystems)
if (SS.flags & SS_NO_INIT)
continue
- SS.Initialize(world.timeofday)
+ SS.Initialize(REALTIMEOFDAY)
CHECK_TICK
CURRENT_TICKLIMIT = TICK_LIMIT_RUNNING
+ var/time = (REALTIMEOFDAY - start_timeofday) / 10
- world << "Initializations complete!"
- log_world("Initializations complete.")
+ var/msg = "Initializations complete within [time] second[time == 1 ? "" : "s"]!"
+ world << "[msg]"
+ log_world(msg)
// Sort subsystems by display setting for easy access.
sortTim(subsystems, /proc/cmp_subsystem_display)
// Set world options.
world.sleep_offline = 1
world.fps = config.fps
+ var/initialized_tod = REALTIMEOFDAY
sleep(1)
+ initializations_finished_with_no_players_logged_in = initialized_tod < REALTIMEOFDAY - 10
// Loop.
Master.StartProcessing(0)
@@ -224,7 +231,7 @@ var/CURRENT_TICKLIMIT = TICK_LIMIT_RUNNING
normalsubsystems += tickersubsystems
lobbysubsystems += tickersubsystems
- init_timeofday = world.timeofday
+ init_timeofday = REALTIMEOFDAY
init_time = world.time
iteration = 1
@@ -233,7 +240,7 @@ var/CURRENT_TICKLIMIT = TICK_LIMIT_RUNNING
var/list/subsystems_to_check
//the actual loop.
while (1)
- tickdrift = max(0, MC_AVERAGE_FAST(tickdrift, (((world.timeofday - init_timeofday) - (world.time - init_time)) / world.tick_lag)))
+ tickdrift = max(0, MC_AVERAGE_FAST(tickdrift, (((REALTIMEOFDAY - init_timeofday) - (world.time - init_time)) / world.tick_lag)))
if (processing <= 0)
CURRENT_TICKLIMIT = TICK_LIMIT_RUNNING
sleep(10)
@@ -496,3 +503,17 @@ var/CURRENT_TICKLIMIT = TICK_LIMIT_RUNNING
stat("Byond:", "(FPS:[world.fps]) (TickCount:[world.time/world.tick_lag]) (TickDrift:[round(Master.tickdrift,1)]([round((Master.tickdrift/(world.time/world.tick_lag))*100,0.1)]%))")
stat("Master Controller:", statclick.update("(TickRate:[Master.processing]) (Iteration:[Master.iteration])"))
+/datum/controller/master/proc/StartLoadingMap()
+ //disallow more than one map to load at once, multithreading it will just cause race conditions
+ while(map_loading)
+ stoplag()
+ for(var/S in subsystems)
+ var/datum/subsystem/SS = S
+ SS.StartLoadingMap()
+ map_loading = TRUE
+
+/datum/controller/master/proc/StopLoadingMap(bounds = null)
+ map_loading = FALSE
+ for(var/S in subsystems)
+ var/datum/subsystem/SS = S
+ SS.StopLoadingMap()
\ No newline at end of file
diff --git a/code/controllers/subsystem.dm b/code/controllers/subsystem.dm
index 5a63283012e..5961393d297 100644
--- a/code/controllers/subsystem.dm
+++ b/code/controllers/subsystem.dm
@@ -154,8 +154,8 @@
//used to initialize the subsystem AFTER the map has loaded
/datum/subsystem/proc/Initialize(start_timeofday)
- var/time = (world.timeofday - start_timeofday) / 10
- var/msg = "Initialized [name] subsystem within [time] seconds!"
+ var/time = (REALTIMEOFDAY - start_timeofday) / 10
+ var/msg = "Initialized [name] subsystem within [time] second[time == 1 ? "" : "s"]!"
world << "[msg]"
log_world(msg)
return time
@@ -167,7 +167,7 @@
- if(can_fire)
+ if(can_fire && !(SS_NO_FIRE in flags))
msg = "[round(cost,1)]ms|[round(tick_usage,1)]%|[round(ticks,0.1)]\t[msg]"
else
msg = "OFFLINE\t[msg]"
@@ -211,3 +211,8 @@
return 0
. = ..()
+//when we enter dmm_suite.load_map
+/datum/subsystem/proc/StartLoadingMap()
+
+//when we exit dmm_suite.load_map
+/datum/subsystem/proc/StopLoadingMap()
\ No newline at end of file
diff --git a/code/controllers/subsystem/acid.dm b/code/controllers/subsystem/acid.dm
index 254ca8003f5..853174a7814 100644
--- a/code/controllers/subsystem/acid.dm
+++ b/code/controllers/subsystem/acid.dm
@@ -34,8 +34,7 @@ var/datum/subsystem/acid/SSacid
if(O.acid_level && O.acid_processing())
else
- O.overlays -= acid_overlay
- O.priority_overlays -= acid_overlay
+ O.cut_overlay(acid_overlay, TRUE)
processing -= O
if (MC_TICK_CHECK)
diff --git a/code/controllers/subsystem/air.dm b/code/controllers/subsystem/air.dm
index ab6cb290614..5bc767d61f5 100644
--- a/code/controllers/subsystem/air.dm
+++ b/code/controllers/subsystem/air.dm
@@ -268,11 +268,11 @@ var/datum/subsystem/air/SSair
else
T.requires_activation = TRUE
-/datum/subsystem/air/proc/begin_map_load()
+/datum/subsystem/air/StartLoadingMap()
LAZYINITLIST(queued_for_activation)
map_loading = TRUE
-/datum/subsystem/air/proc/end_map_load()
+/datum/subsystem/air/StopLoadingMap()
map_loading = FALSE
for(var/T in queued_for_activation)
add_to_active(T)
diff --git a/code/controllers/subsystem/atoms.dm b/code/controllers/subsystem/atoms.dm
new file mode 100644
index 00000000000..23a1ce468cc
--- /dev/null
+++ b/code/controllers/subsystem/atoms.dm
@@ -0,0 +1,104 @@
+var/datum/subsystem/atoms/SSatoms
+
+#define INITIALIZATION_INSSATOMS 0 //New should not call Initialize
+#define INITIALIZATION_INNEW_MAPLOAD 1 //New should call Initialize(TRUE)
+#define INITIALIZATION_INNEW_REGULAR 2 //New should call Initialize(FALSE)
+
+/datum/subsystem/atoms
+ name = "Atoms"
+ init_order = 11
+ flags = SS_NO_FIRE
+
+ var/initialized = INITIALIZATION_INSSATOMS
+ var/old_initialized
+
+/datum/subsystem/atoms/New()
+ NEW_SS_GLOBAL(SSatoms)
+
+/datum/subsystem/atoms/Initialize(timeofday)
+ fire_overlay.appearance_flags = RESET_COLOR
+ setupGenetics() //to set the mutations' place in structural enzymes, so monkey.initialize() knows where to put the monkey mutation.
+ initialized = INITIALIZATION_INNEW_MAPLOAD
+ InitializeAtoms()
+ return ..()
+
+/datum/subsystem/atoms/proc/InitializeAtoms(list/atoms = null)
+ if(initialized == INITIALIZATION_INSSATOMS)
+ return
+
+ var/list/late_loaders
+
+ initialized = INITIALIZATION_INNEW_MAPLOAD
+
+ if(atoms)
+ for(var/I in atoms)
+ var/atom/A = I
+ if(!A.initialized) //this check is to make sure we don't call it twice on an object that was created in a previous Initialize call
+ var/start_tick = world.time
+ if(A.Initialize(TRUE))
+ LAZYADD(late_loaders, A)
+ if(start_tick != world.time)
+ WARNING("[A]: [A.type] slept during it's Initialize!")
+ CHECK_TICK
+ testing("Initialized [atoms.len] atoms")
+ else
+ #ifdef TESTING
+ var/count = 0
+ #endif
+ for(var/atom/A in world)
+ if(!A.initialized) //this check is to make sure we don't call it twice on an object that was created in a previous Initialize call
+ var/start_tick = world.time
+ if(A.Initialize(TRUE))
+ LAZYADD(late_loaders, A)
+ #ifdef TESTING
+ else
+ ++count
+ #endif TESTING
+ if(start_tick != world.time)
+ WARNING("[A]: [A.type] slept during it's Initialize!")
+ CHECK_TICK
+ testing("Roundstart initialized [count] atoms")
+
+ initialized = INITIALIZATION_INNEW_REGULAR
+
+ if(late_loaders)
+ for(var/I in late_loaders)
+ var/atom/A = I
+ var/start_tick = world.time
+ A.Initialize(FALSE)
+ if(start_tick != world.time)
+ WARNING("[A]: [A.type] slept during it's Initialize!")
+ CHECK_TICK
+ testing("Late-initialized [late_loaders.len] atoms")
+
+/datum/subsystem/atoms/proc/map_loader_begin()
+ old_initialized = initialized
+ initialized = INITIALIZATION_INSSATOMS
+
+/datum/subsystem/atoms/proc/map_loader_stop()
+ initialized = old_initialized
+
+/datum/subsystem/atoms/Recover()
+ initialized = SSatoms.initialized
+ if(initialized == INITIALIZATION_INNEW_MAPLOAD)
+ InitializeAtoms()
+ old_initialized = SSatoms.old_initialized
+
+/datum/subsystem/atoms/proc/setupGenetics()
+ var/list/avnums = new /list(DNA_STRUC_ENZYMES_BLOCKS)
+ for(var/i=1, i<=DNA_STRUC_ENZYMES_BLOCKS, i++)
+ avnums[i] = i
+ CHECK_TICK
+
+ for(var/A in subtypesof(/datum/mutation/human))
+ var/datum/mutation/human/B = new A()
+ if(B.dna_block == NON_SCANNABLE)
+ continue
+ B.dna_block = pick_n_take(avnums)
+ if(B.quality == POSITIVE)
+ good_mutations |= B
+ else if(B.quality == NEGATIVE)
+ bad_mutations |= B
+ else if(B.quality == MINOR_NEGATIVE)
+ not_good_mutations |= B
+ CHECK_TICK
\ No newline at end of file
diff --git a/code/controllers/subsystem/garbage.dm b/code/controllers/subsystem/garbage.dm
index 4e310a3a333..f9484a898ed 100644
--- a/code/controllers/subsystem/garbage.dm
+++ b/code/controllers/subsystem/garbage.dm
@@ -24,6 +24,7 @@ var/datum/subsystem/garbage_collector/SSgarbage
var/list/didntgc = list() // list of all types that have failed to GC associated with the number of times that's happened.
// the types are stored as strings
+ var/list/sleptDestroy = list() //Same as above but these are paths that slept during their Destroy call
var/list/noqdelhint = list()// list of all types that do not return a QDEL_HINT
// all types that did not respect qdel(A, force=TRUE) and returned one
@@ -168,13 +169,17 @@ var/datum/subsystem/garbage_collector/SSgarbage
del(D)
else if(isnull(D.gc_destroyed))
D.gc_destroyed = GC_CURRENTLY_BEING_QDELETED
+ var/start_time = world.time
var/hint = D.Destroy(force) // Let our friend know they're about to get fucked up.
+ if(world.time != start_time)
+ SSgarbage.sleptDestroy["[D.type]"]++
if(!D)
return
switch(hint)
if (QDEL_HINT_QUEUE) //qdel should queue the object for deletion.
SSgarbage.QueueForQueuing(D)
if (QDEL_HINT_IWILLGC)
+ D.gc_destroyed = world.time
return
if (QDEL_HINT_LETMELIVE) //qdel should let the object live after calling destory.
if(!force)
@@ -346,8 +351,6 @@ var/datum/subsystem/garbage_collector/SSgarbage
//if find_references isn't working for some datum
//update this list using tools/DMTreeToGlobalsList
/datum/proc/find_references_in_globals()
- SearchVar(last_irc_status)
- SearchVar(failed_db_connections)
SearchVar(nextmap)
SearchVar(mapchanging)
SearchVar(rebootingpendingmapchange)
@@ -554,12 +557,6 @@ var/datum/subsystem/garbage_collector/SSgarbage
SearchVar(ruin_landmarks)
SearchVar(awaydestinations)
SearchVar(sortedAreas)
- SearchVar(map_templates)
- SearchVar(ruins_templates)
- SearchVar(space_ruins_templates)
- SearchVar(lava_ruins_templates)
- SearchVar(shuttle_templates)
- SearchVar(shelter_templates)
SearchVar(transit_markers)
SearchVar(clients)
SearchVar(admins)
@@ -684,8 +681,6 @@ var/datum/subsystem/garbage_collector/SSgarbage
SearchVar(wire_colors)
SearchVar(wire_color_directory)
SearchVar(wire_name_directory)
- SearchVar(possiblethemes)
- SearchVar(max_secret_rooms)
SearchVar(blood_splatter_icons)
SearchVar(all_radios)
SearchVar(radiochannels)
@@ -796,7 +791,6 @@ var/datum/subsystem/garbage_collector/SSgarbage
SearchVar(brass_recipes)
SearchVar(disposalpipeID2State)
SearchVar(RPD_recipes)
- SearchVar(highlander_claymores)
SearchVar(biblenames)
SearchVar(biblestates)
SearchVar(bibleitemstates)
@@ -842,7 +836,6 @@ var/datum/subsystem/garbage_collector/SSgarbage
SearchVar(pipenetwarnings)
SearchVar(the_gateway)
SearchVar(potentialRandomZlevels)
- SearchVar(maploader)
SearchVar(use_preloader)
SearchVar(_preloader)
SearchVar(swapmaps_iconcache)
diff --git a/code/controllers/subsystem/mapping.dm b/code/controllers/subsystem/mapping.dm
index ef2828f531b..359f20f83e8 100644
--- a/code/controllers/subsystem/mapping.dm
+++ b/code/controllers/subsystem/mapping.dm
@@ -2,13 +2,21 @@ var/datum/subsystem/mapping/SSmapping
/datum/subsystem/mapping
name = "Mapping"
- init_order = 13
+ init_order = 12
flags = SS_NO_FIRE
display_order = 50
var/list/nuke_tiles = list()
var/list/nuke_threats = list()
+ var/list/map_templates = list()
+
+ var/list/ruins_templates = list()
+ var/list/space_ruins_templates = list()
+ var/list/lava_ruins_templates = list()
+
+ var/list/shuttle_templates = list()
+ var/list/shelter_templates = list()
/datum/subsystem/mapping/New()
NEW_SS_GLOBAL(SSmapping)
@@ -25,8 +33,6 @@ var/datum/subsystem/mapping/SSmapping
if (mining_type == "lavaland")
seedRuins(list(5), config.lavaland_budget, /area/lavaland/surface/outdoors, lava_ruins_templates)
spawn_rivers()
- else
- make_mining_asteroid_secrets()
// deep space ruins
var/space_zlevels = list()
@@ -68,3 +74,67 @@ var/datum/subsystem/mapping/SSmapping
/datum/subsystem/mapping/Recover()
flags |= SS_NO_INIT
+ map_templates = SSmapping.map_templates
+ ruins_templates = SSmapping.ruins_templates
+ space_ruins_templates = SSmapping.space_ruins_templates
+ lava_ruins_templates = SSmapping.lava_ruins_templates
+ shuttle_templates = SSmapping.shuttle_templates
+ shelter_templates = SSmapping.shelter_templates
+
+/datum/subsystem/mapping/proc/preloadTemplates(path = "_maps/templates/") //see master controller setup
+ var/list/filelist = flist(path)
+ for(var/map in filelist)
+ var/datum/map_template/T = new(path = "[path][map]", rename = "[map]")
+ map_templates[T.name] = T
+
+ preloadRuinTemplates()
+ preloadShuttleTemplates()
+ preloadShelterTemplates()
+
+/datum/subsystem/mapping/proc/preloadRuinTemplates()
+ // Still supporting bans by filename
+ var/list/banned = generateMapList("config/lavaruinblacklist.txt")
+ banned += generateMapList("config/spaceruinblacklist.txt")
+
+ for(var/item in subtypesof(/datum/map_template/ruin))
+ var/datum/map_template/ruin/ruin_type = item
+ // screen out the abstract subtypes
+ if(!initial(ruin_type.id))
+ continue
+ var/datum/map_template/ruin/R = new ruin_type()
+
+ if(banned.Find(R.mappath))
+ continue
+
+ map_templates[R.name] = R
+ ruins_templates[R.name] = R
+
+ if(istype(R, /datum/map_template/ruin/lavaland))
+ lava_ruins_templates[R.name] = R
+ else if(istype(R, /datum/map_template/ruin/space))
+ space_ruins_templates[R.name] = R
+
+/datum/subsystem/mapping/proc/preloadShuttleTemplates()
+ var/list/unbuyable = generateMapList("config/unbuyableshuttles.txt")
+
+ for(var/item in subtypesof(/datum/map_template/shuttle))
+ var/datum/map_template/shuttle/shuttle_type = item
+ if(!(initial(shuttle_type.suffix)))
+ continue
+
+ var/datum/map_template/shuttle/S = new shuttle_type()
+ if(unbuyable.Find(S.mappath))
+ S.can_be_bought = FALSE
+
+ shuttle_templates[S.shuttle_id] = S
+ map_templates[S.shuttle_id] = S
+
+/datum/subsystem/mapping/proc/preloadShelterTemplates()
+ for(var/item in subtypesof(/datum/map_template/shelter))
+ var/datum/map_template/shelter/shelter_type = item
+ if(!(initial(shelter_type.mappath)))
+ continue
+ var/datum/map_template/shelter/S = new shelter_type()
+
+ shelter_templates[S.shelter_id] = S
+ map_templates[S.shelter_id] = S
\ No newline at end of file
diff --git a/code/controllers/subsystem/processing/objects.dm b/code/controllers/subsystem/processing/objects.dm
index 6bbd0ffeb32..95e7ee11650 100644
--- a/code/controllers/subsystem/processing/objects.dm
+++ b/code/controllers/subsystem/processing/objects.dm
@@ -1,89 +1,17 @@
var/datum/subsystem/objects/SSobj
-
-#define INITIALIZATION_INSSOBJ 0 //New should not call Initialize
-#define INITIALIZATION_INNEW_MAPLOAD 1 //New should call Initialize(TRUE)
-#define INITIALIZATION_INNEW_REGULAR 2 //New should call Initialize(FALSE)
-
/datum/subsystem/objects
name = "Objects"
- init_order = 12
priority = 40
+ flags = SS_NO_INIT
- var/initialized = INITIALIZATION_INSSOBJ
- var/old_initialized
var/list/processing = list()
var/list/currentrun = list()
/datum/subsystem/objects/New()
NEW_SS_GLOBAL(SSobj)
-
-/datum/subsystem/objects/Initialize(timeofdayl)
- fire_overlay.appearance_flags = RESET_COLOR
- setupGenetics() //to set the mutations' place in structural enzymes, so monkey.initialize() knows where to put the monkey mutation.
- initialized = INITIALIZATION_INNEW_MAPLOAD
- InitializeAtoms()
- . = ..()
-
-/datum/subsystem/objects/proc/InitializeAtoms(list/objects = null)
- if(initialized == INITIALIZATION_INSSOBJ)
- return
-
- var/list/late_loaders
-
- initialized = INITIALIZATION_INNEW_MAPLOAD
-
- if(objects)
- for(var/I in objects)
- var/atom/A = I
- if(!A.initialized) //this check is to make sure we don't call it twice on an object that was created in a previous Initialize call
- var/start_tick = world.time
- if(A.Initialize(TRUE))
- LAZYADD(late_loaders, A)
- if(start_tick != world.time)
- WARNING("[A]: [A.type] slept during it's Initialize!")
- CHECK_TICK
- testing("Initialized [objects.len] atoms")
- else
- #ifdef TESTING
- var/count = 0
- #endif
- for(var/atom/A in world)
- if(!A.initialized) //this check is to make sure we don't call it twice on an object that was created in a previous Initialize call
- var/start_tick = world.time
- if(A.Initialize(TRUE))
- LAZYADD(late_loaders, A)
- #ifdef TESTING
- else
- ++count
- #endif TESTING
- if(start_tick != world.time)
- WARNING("[A]: [A.type] slept during it's Initialize!")
- CHECK_TICK
- testing("Roundstart initialized [count] atoms")
-
- initialized = INITIALIZATION_INNEW_REGULAR
-
- if(late_loaders)
- for(var/I in late_loaders)
- var/atom/A = I
- var/start_tick = world.time
- A.Initialize(FALSE)
- if(start_tick != world.time)
- WARNING("[A]: [A.type] slept during it's Initialize!")
- CHECK_TICK
- testing("Late-initialized [late_loaders.len] atoms")
-
-/datum/subsystem/objects/proc/map_loader_begin()
- old_initialized = initialized
- initialized = INITIALIZATION_INSSOBJ
-
-/datum/subsystem/objects/proc/map_loader_stop()
- initialized = old_initialized
-
/datum/subsystem/objects/stat_entry()
..("P:[processing.len]")
-
/datum/subsystem/objects/fire(resumed = 0)
if (!resumed)
src.currentrun = processing.Copy()
@@ -101,10 +29,4 @@ var/datum/subsystem/objects/SSobj
return
/datum/subsystem/objects/Recover()
- initialized = SSobj.initialized
- if(initialized == INITIALIZATION_INNEW_MAPLOAD)
- InitializeAtoms()
- old_initialized = SSobj.old_initialized
-
- if (istype(SSobj.processing))
- processing = SSobj.processing
+ processing = SSobj.processing
diff --git a/code/controllers/subsystem/processing/overlays.dm b/code/controllers/subsystem/processing/overlays.dm
new file mode 100644
index 00000000000..2c6bdb9c8fd
--- /dev/null
+++ b/code/controllers/subsystem/processing/overlays.dm
@@ -0,0 +1,183 @@
+var/datum/subsystem/processing/overlays/SSoverlays
+
+/datum/subsystem/processing/overlays
+ name = "Overlay"
+ flags = SS_TICKER|SS_FIRE_IN_LOBBY
+ wait = 1
+ priority = 500
+ init_order = -6
+
+ stat_tag = "Ov"
+ currentrun = null
+ var/list/overlay_icon_state_caches
+ var/initialized = FALSE
+
+/datum/subsystem/processing/overlays/New()
+ NEW_SS_GLOBAL(SSoverlays)
+ LAZYINITLIST(overlay_icon_state_caches)
+
+/datum/subsystem/processing/overlays/Initialize()
+ initialized = TRUE
+ for(var/I in processing)
+ var/atom/A = I
+ A.compile_overlays()
+ CHECK_TICK
+ processing.Cut()
+ ..()
+
+/datum/subsystem/processing/overlays/Recover()
+ overlay_icon_state_caches = SSoverlays.overlay_icon_state_caches
+ processing = SSoverlays.processing
+
+/datum/subsystem/processing/overlays/fire()
+ while(processing.len)
+ var/atom/thing = processing[processing.len]
+ processing.len--
+ if(thing)
+ thing.compile_overlays(FALSE)
+ if(MC_TICK_CHECK)
+ break
+
+/atom/proc/compile_overlays()
+ if(LAZYLEN(priority_overlays) && LAZYLEN(our_overlays))
+ overlays = our_overlays + priority_overlays
+ else if(LAZYLEN(our_overlays))
+ overlays = our_overlays
+ else if(LAZYLEN(priority_overlays))
+ overlays = priority_overlays
+ else
+ overlays.Cut()
+ flags &= ~OVERLAY_QUEUED
+
+/atom/proc/iconstate2appearance(iconstate)
+ var/static/image/stringbro = new()
+ var/list/icon_states_cache = SSoverlays.overlay_icon_state_caches
+ var/list/cached_icon = icon_states_cache[icon]
+ if (cached_icon)
+ var/cached_appearance = cached_icon["[iconstate]"]
+ if (cached_appearance)
+ return cached_appearance
+ stringbro.icon = icon
+ stringbro.icon_state = iconstate
+ if (!cached_icon) //not using the macro to save an associated lookup
+ cached_icon = list()
+ icon_states_cache[icon] = cached_icon
+ var/cached_appearance = stringbro.appearance
+ cached_icon["[iconstate]"] = cached_appearance
+ return cached_appearance
+
+#define NOT_QUEUED_ALREADY (!(flags & OVERLAY_QUEUED))
+#define QUEUE_FOR_COMPILE flags |= OVERLAY_QUEUED; SSoverlays.processing += src;
+/atom/proc/cut_overlays(priority = FALSE)
+ var/list/cached_overlays = our_overlays
+ var/list/cached_priority = priority_overlays
+
+ var/need_compile = FALSE
+
+ if(LAZYLEN(cached_overlays)) //don't queue empty lists, don't cut priority overlays
+ cached_overlays.Cut() //clear regular overlays
+ need_compile = TRUE
+
+ if(priority && LAZYLEN(cached_priority))
+ cached_priority.Cut()
+ need_compile = TRUE
+
+ if(NOT_QUEUED_ALREADY && need_compile)
+ QUEUE_FOR_COMPILE
+
+/atom/proc/cut_overlay(list/overlays, priority)
+ var/static/image/appearance_bro = new()
+ if(!overlays)
+ return
+
+ if (!islist(overlays))
+ overlays = list(overlays)
+ else
+ listclearnulls(overlays)
+ for (var/i in 1 to length(overlays))
+ if (istext(overlays[i]))
+ overlays[i] = iconstate2appearance(overlays[i])
+ else
+ var/image/I = overlays[i]
+ appearance_bro.appearance = overlays[i]
+ appearance_bro.dir = I.dir
+ overlays[i] = appearance_bro.appearance
+
+ var/list/cached_overlays = our_overlays //sanic
+ var/list/cached_priority = priority_overlays
+ var/init_o_len = LAZYLEN(cached_overlays)
+ var/init_p_len = LAZYLEN(cached_priority) //starter pokemon
+
+ LAZYREMOVE(cached_overlays, overlays)
+ if(priority)
+ LAZYREMOVE(cached_priority, overlays)
+
+ if(NOT_QUEUED_ALREADY && ((init_o_len != LAZYLEN(cached_priority)) || (init_p_len != LAZYLEN(cached_overlays))))
+ QUEUE_FOR_COMPILE
+
+/atom/proc/add_overlay(list/overlays, priority = FALSE)
+ var/static/image/appearance_bro = new()
+ if(!overlays)
+ return
+
+ if (!islist(overlays))
+ overlays = list(overlays)
+ else
+ listclearnulls(overlays)
+ for (var/i in 1 to length(overlays))
+ if (istext(overlays[i]))
+ overlays[i] = iconstate2appearance(overlays[i])
+ else
+ var/image/I = overlays[i]
+ appearance_bro.appearance = overlays[i]
+ appearance_bro.dir = I.dir
+ overlays[i] = appearance_bro.appearance
+
+ LAZYINITLIST(our_overlays) //always initialized after this point
+ LAZYINITLIST(priority_overlays)
+
+ var/list/cached_overlays = our_overlays //sanic
+ var/list/cached_priority = priority_overlays
+ var/init_o_len = cached_overlays.len
+ var/init_p_len = cached_priority.len //starter pokemon
+ var/need_compile
+
+ if(priority)
+ cached_priority += overlays //or in the image. Can we use [image] = image?
+ need_compile = init_p_len != cached_priority.len
+ else
+ cached_overlays += overlays
+ need_compile = init_o_len != cached_overlays.len
+
+ if(NOT_QUEUED_ALREADY && need_compile) //have we caught more pokemon?
+ QUEUE_FOR_COMPILE
+
+/atom/proc/copy_overlays(atom/other, cut_old = FALSE) //copys our_overlays from another atom
+ if(!other)
+ if(cut_old)
+ cut_overlays()
+ return
+
+ var/list/cached_other = other.our_overlays
+ if(cached_other)
+ if(cut_old)
+ our_overlays = cached_other.Copy()
+ else
+ our_overlays |= cached_other
+ if(NOT_QUEUED_ALREADY)
+ QUEUE_FOR_COMPILE
+ else if(cut_old)
+ cut_overlays()
+
+#undef NOT_QUEUED_ALREADY
+#undef QUEUE_FOR_COMPILE
+
+//TODO: Better solution for these?
+/image/proc/add_overlay(x)
+ overlays += x
+
+/image/proc/cut_overlay(x)
+ overlays -= x
+
+/image/proc/cut_overlays(x)
+ overlays.Cut()
\ No newline at end of file
diff --git a/code/controllers/subsystem/ticker.dm b/code/controllers/subsystem/ticker.dm
index 8508b047715..2197cda5771 100644
--- a/code/controllers/subsystem/ticker.dm
+++ b/code/controllers/subsystem/ticker.dm
@@ -1,10 +1,12 @@
+#define ROUND_START_MUSIC_LIST "strings/round_start_sounds.txt"
+
var/round_start_time = 0
var/datum/subsystem/ticker/ticker
/datum/subsystem/ticker
name = "Ticker"
- init_order = 0
+ init_order = 13
priority = 200
flags = SS_FIRE_IN_LOBBY|SS_KEEP_TIMING
@@ -39,7 +41,8 @@ var/datum/subsystem/ticker/ticker
var/tipped = 0 //Did we broadcast the tip of the day yet?
var/selected_tip // What will be the tip of the day?
- var/timeLeft = 1200 //pregame timer
+ var/timeLeft //pregame timer
+ var/start_at
var/totalPlayers = 0 //used for pregame stats on statpanel
var/totalPlayersReady = 0 //used for pregame stats on statpanel
@@ -57,30 +60,36 @@ var/datum/subsystem/ticker/ticker
/datum/subsystem/ticker/New()
NEW_SS_GLOBAL(ticker)
-
- login_music = pickweight(list('sound/ambience/title2.ogg' = 15, 'sound/ambience/title1.ogg' =15, 'sound/ambience/title3.ogg' =14, 'sound/ambience/title4.ogg' =14, 'sound/misc/i_did_not_grief_them.ogg' =14, 'sound/ambience/clown.ogg' = 9)) // choose title music!
if(SSevent.holidays && SSevent.holidays[APRIL_FOOLS])
login_music = 'sound/ambience/clown.ogg'
+ else
+ var/list/music = file2list(ROUND_START_MUSIC_LIST, "\n")
+ login_music = pick(music)
/datum/subsystem/ticker/Initialize(timeofday)
+ var/list/music = file2list(ROUND_START_MUSIC_LIST, "\n")
+ login_music = pick(music)
if(!syndicate_code_phrase)
syndicate_code_phrase = generate_code_phrase()
if(!syndicate_code_response)
syndicate_code_response = generate_code_phrase()
..()
+ start_at = world.time + (config.lobby_countdown * 10)
/datum/subsystem/ticker/fire()
switch(current_state)
if(GAME_STATE_STARTUP)
- timeLeft = config.lobby_countdown * 10
- world << "Welcome to [station_name()]!"
- world << "Please set up your character and select \"Ready\". The game will start in [config.lobby_countdown] seconds."
- current_state = GAME_STATE_PREGAME
+ if(Master.initializations_finished_with_no_players_logged_in)
+ start_at = world.time + (config.lobby_countdown * 10)
for(var/client/C in clients)
window_flash(C, ignorepref = TRUE) //let them know lobby has opened up.
-
+ world << "Welcome to [station_name()]!"
+ current_state = GAME_STATE_PREGAME
+ fire()
if(GAME_STATE_PREGAME)
//lobby stats for statpanels
+ if(isnull(timeLeft))
+ timeLeft = max(0,start_at - world.time)
totalPlayers = 0
totalPlayersReady = 0
for(var/mob/new_player/player in player_list)
@@ -96,7 +105,7 @@ var/datum/subsystem/ticker/ticker
return
timeLeft -= wait
- if(timeLeft <= 1200 && !modevoted) //Vote for the round type
+ if(timeLeft <= config.lobby_countdown && !modevoted) //Vote for the round type
send_gamemode_vote()
modevoted = TRUE
@@ -551,11 +560,17 @@ var/datum/subsystem/ticker/ticker
CHECK_TICK
//Adds the del() log to world.log in a format condensable by the runtime condenser found in tools
- if(SSgarbage.didntgc.len)
+ if(SSgarbage.didntgc.len || SSgarbage.sleptDestroy.len)
var/dellog = ""
for(var/path in SSgarbage.didntgc)
dellog += "Path : [path] \n"
dellog += "Failures : [SSgarbage.didntgc[path]] \n"
+ if(path in SSgarbage.sleptDestroy)
+ dellog += "Sleeps : [SSgarbage.sleptDestroy[path]] \n"
+ SSgarbage.sleptDestroy -= path
+ for(var/path in SSgarbage.sleptDestroy)
+ dellog += "Path : [path] \n"
+ dellog += "Sleeps : [SSgarbage.sleptDestroy[path]] \n"
log_world(dellog)
CHECK_TICK
@@ -716,3 +731,14 @@ var/datum/subsystem/ticker/ticker
if(news_message)
send2otherserver(news_source, news_message,"News_Report")
+
+/datum/subsystem/ticker/proc/GetTimeLeft()
+ if(isnull(ticker.timeLeft))
+ return max(0, start_at - world.time)
+ return timeLeft
+
+/datum/subsystem/ticker/proc/SetTimeLeft(newtime)
+ if(newtime >= 0 && isnull(timeLeft)) //remember, negative means delayed
+ start_at = world.time + newtime
+ else
+ timeLeft = newtime
diff --git a/code/controllers/subsystem/timer.dm b/code/controllers/subsystem/timer.dm
index 66f7e196046..c33d8e6c565 100644
--- a/code/controllers/subsystem/timer.dm
+++ b/code/controllers/subsystem/timer.dm
@@ -40,20 +40,18 @@ var/datum/subsystem/timer/SStimer
..("B:[bucket_count] P:[length(processing)] H:[length(hashes)] C:[length(clienttime_timers)]")
/datum/subsystem/timer/fire(resumed = FALSE)
- if (length(clienttime_timers))
- for (var/thing in clienttime_timers)
- var/datum/timedevent/ctime_timer = thing
- if (ctime_timer.spent)
- qdel(ctime_timer)
- continue
- if (ctime_timer.timeToRun <= REALTIMEOFDAY)
- var/datum/callback/callBack = ctime_timer.callBack
- ctime_timer.spent = TRUE
- callBack.InvokeAsync()
- qdel(ctime_timer)
-
- if (MC_TICK_CHECK)
- return
+ while(length(clienttime_timers))
+ var/datum/timedevent/ctime_timer = clienttime_timers[clienttime_timers.len]
+ if (ctime_timer.timeToRun <= REALTIMEOFDAY)
+ --clienttime_timers.len
+ var/datum/callback/callBack = ctime_timer.callBack
+ ctime_timer.spent = TRUE
+ callBack.InvokeAsync()
+ qdel(ctime_timer)
+ else
+ break //None of the rest are ready to run
+ if (MC_TICK_CHECK)
+ return
var/static/list/spent = list()
var/static/datum/timedevent/timer
@@ -208,11 +206,24 @@ var/datum/subsystem/timer/SStimer
SStimer.timer_id_dict["timerid[id]"] = src
if (callBack.object != GLOBAL_PROC)
- LAZYINITLIST(callBack.object.active_timers)
- callBack.object.active_timers += src
+ LAZYADD(callBack.object.active_timers, src)
if (flags & TIMER_CLIENT_TIME)
- SStimer.clienttime_timers += src
+ //sorted insert
+ var/list/ctts = SStimer.clienttime_timers
+ var/cttl = length(ctts)
+ if(cttl)
+ var/datum/timedevent/Last = ctts[cttl]
+ if(Last.timeToRun >= timeToRun)
+ ctts += src
+ else if(cttl > 1)
+ for(var/I in cttl to 1)
+ var/datum/timedevent/E = ctts[I]
+ if(E.timeToRun <= timeToRun)
+ ctts.Insert(src, I)
+ break
+ else
+ ctts += src
return
//get the list of buckets
@@ -345,4 +356,4 @@ proc/addtimer(datum/callback/callback, wait, flags)
#undef BUCKET_LEN
-#undef BUCKET_POS
\ No newline at end of file
+#undef BUCKET_POS
diff --git a/code/datums/action.dm b/code/datums/action.dm
index 265de32b070..78807e22d97 100644
--- a/code/datums/action.dm
+++ b/code/datums/action.dm
@@ -113,7 +113,8 @@
img = image(icon_icon, current_button, button_icon_state)
img.pixel_x = 0
img.pixel_y = 0
- current_button.overlays = list(img)
+ current_button.cut_overlays(TRUE)
+ current_button.add_overlay(img)
current_button.button_icon_state = button_icon_state
@@ -329,32 +330,30 @@
/datum/action/item_action/hands_free/activate
name = "Activate"
-
/datum/action/item_action/hands_free/shift_nerves
name = "Shift Nerves"
-
/datum/action/item_action/toggle_research_scanner
name = "Toggle Research Scanner"
button_icon_state = "scan_mode"
+ var/active = FALSE
/datum/action/item_action/toggle_research_scanner/Trigger()
if(IsAvailable())
- owner.research_scanner = !owner.research_scanner
- owner << "Research analyzer is now [owner.research_scanner ? "active" : "deactivated"]."
+ active = !active
+ if(active)
+ owner.research_scanner++
+ else
+ owner.research_scanner--
+ owner << "[target] research scanner has been [active ? "activated" : "deactivated"]."
return 1
/datum/action/item_action/toggle_research_scanner/Remove(mob/M)
- if(owner)
- owner.research_scanner = 0
+ if(owner && active)
+ owner.research_scanner--
+ active = FALSE
..()
-/datum/action/item_action/toggle_research_scanner/ApplyIcon(obj/screen/movable/action_button/current_button)
- current_button.cut_overlays()
- if(button_icon && button_icon_state)
- var/image/img = image(button_icon, current_button, "scan_mode")
- current_button.add_overlay(img)
-
/datum/action/item_action/organ_action
check_flags = AB_CHECK_CONSCIOUS
diff --git a/code/datums/ai_laws.dm b/code/datums/ai_laws.dm
index cba9b03dd9c..d62d2a63cb8 100644
--- a/code/datums/ai_laws.dm
+++ b/code/datums/ai_laws.dm
@@ -313,19 +313,53 @@
var picked_group = pickweight(replaceable_groups)
switch(picked_group)
if(LAW_ZEROTH)
+ . = zeroth
set_zeroth_law(law)
if(LAW_ION)
- ion[rand(1,ion.len)] = law
+ var/i = rand(1, ion.len)
+ . = ion[i]
+ ion[i] = law
if(LAW_INHERENT)
- inherent[rand(1,inherent.len)] = law
+ var/i = rand(1, inherent.len)
+ . = inherent[i]
+ inherent[i] = law
if(LAW_SUPPLIED)
- supplied[rand(1,supplied.len)] = law
+ var/i = rand(1, supplied.len)
+ . = supplied[i]
+ supplied[i] = law
+
+/datum/ai_laws/proc/shuffle_laws(list/groups)
+ var/list/laws = list()
+ if(ion.len && (LAW_ION in groups))
+ laws += ion
+ if(inherent.len && (LAW_INHERENT in groups))
+ laws += inherent
+ if(supplied.len && (LAW_SUPPLIED in groups))
+ for(var/law in supplied)
+ if(length(law))
+ laws += law
+
+ if(ion.len && (LAW_ION in groups))
+ for(var/i = 1, i <= ion.len, i++)
+ ion[i] = pick_n_take(laws)
+ if(inherent.len && (LAW_INHERENT in groups))
+ for(var/i = 1, i <= inherent.len, i++)
+ inherent[i] = pick_n_take(laws)
+ if(supplied.len && (LAW_SUPPLIED in groups))
+ var/i = 1
+ for(var/law in supplied)
+ if(length(law))
+ supplied[i] = pick_n_take(laws)
+ if(!laws.len)
+ break
+ i++
/datum/ai_laws/proc/remove_law(number)
if(number <= 0)
return
if(inherent.len && number <= inherent.len)
- inherent -= inherent[number]
+ . = inherent[number]
+ inherent -= .
return
var/list/supplied_laws = list()
for(var/index = 1, index <= supplied.len, index++)
@@ -334,7 +368,8 @@
supplied_laws += index //storing the law number instead of the law
if(supplied_laws.len && number <= (inherent.len+supplied_laws.len))
var/law_to_remove = supplied_laws[number-inherent.len]
- supplied -= supplied[law_to_remove]
+ . = supplied[law_to_remove]
+ supplied -= .
return
/datum/ai_laws/proc/clear_supplied_laws()
diff --git a/code/datums/helper_datums/getrev.dm b/code/datums/helper_datums/getrev.dm
index 8d156c601c6..1865c497f7e 100644
--- a/code/datums/helper_datums/getrev.dm
+++ b/code/datums/helper_datums/getrev.dm
@@ -4,6 +4,7 @@ var/global/datum/getrev/revdata = new()
var/parentcommit
var/commit
var/list/testmerge = list()
+ var/has_pr_details = FALSE //example data in a testmerge entry when this is true: https://api.github.com/repositories/3234987/pulls/22586
var/date
/datum/getrev/New()
@@ -31,6 +32,44 @@ var/global/datum/getrev/revdata = new()
log_world(parentcommit)
log_world("Current map - [MAP_NAME]") //can't think of anywhere better to put it
+/datum/getrev/proc/DownloadPRDetails()
+ if(!config.githubrepoid)
+ if(testmerge.len)
+ log_world("PR details download failed: No github repo config set")
+ return
+ if(!isnum(text2num(config.githubrepoid)))
+ log_world("PR details download failed: Invalid github repo id: [config.githubrepoid]")
+ return
+ for(var/line in testmerge)
+ if(!isnum(text2num(line)))
+ log_world("PR details download failed: Invalid PR number: [line]")
+ return
+
+ var/url = "https://api.github.com/repositories/[config.githubrepoid]/pulls/[line].json"
+ valid_HTTPSGet = TRUE
+ var/json = HTTPSGet(url)
+ if(!json)
+ return
+
+ testmerge[line] = json_decode(json)
+
+ if(!testmerge[line])
+ log_world("PR details download failed: null details returned")
+ return
+ CHECK_TICK
+ log_world("PR details successfully downloaded")
+ has_pr_details = TRUE
+
+/datum/getrev/proc/GetTestMergeInfo(header = TRUE)
+ if(!testmerge.len)
+ return ""
+ . = header ? "The following pull requests are currently test merged:
" : ""
+ for(var/line in testmerge)
+ var/details = ""
+ if(has_pr_details)
+ details = ": '" + html_encode(testmerge[line]["title"]) + "' by " + html_encode(testmerge[line]["user"]["login"])
+ . += "#[line][details]
"
+
/client/verb/showrevinfo()
set category = "OOC"
set name = "Show Server Revision"
@@ -39,12 +78,9 @@ var/global/datum/getrev/revdata = new()
if(revdata.parentcommit)
src << "Server revision compiled on: [revdata.date]"
if(revdata.testmerge.len)
- for(var/line in revdata.testmerge)
- if(line)
- src << "Test merge active of PR #[line]"
- src << "Based off master commit [revdata.parentcommit]"
- else
- src << "[revdata.parentcommit]"
+ src << revdata.GetTestMergeInfo()
+ src << "Based off master commit:"
+ src << "[revdata.parentcommit]"
else
src << "Revision unknown"
src << "Current Infomational Settings:"
@@ -56,8 +92,8 @@ var/global/datum/getrev/revdata = new()
src << "Allow Midround Antagonists: [config.midround_antag.len] of [config.modes.len] roundtypes"
if(config.show_game_type_odds)
if(ticker.current_state == GAME_STATE_PLAYING)
- src <<"Game Mode Odds for current round:"
var/prob_sum = 0
+ var/current_odds_differ = FALSE
var/list/probs = list()
var/list/modes = config.gamemode_cache
for(var/mode in modes)
@@ -65,17 +101,18 @@ var/global/datum/getrev/revdata = new()
var/ctag = initial(M.config_tag)
if(!(ctag in config.probabilities))
continue
- if((config.min_pop[ctag] && (config.min_pop[ctag] > ticker.totalPlayersReady)) || (initial(M.required_players) > ticker.totalPlayersReady))
- continue
- if(config.max_pop[ctag] && (config.max_pop[ctag] < ticker.totalPlayersReady))
+ if((config.min_pop[ctag] && (config.min_pop[ctag] > ticker.totalPlayersReady)) || (config.max_pop[ctag] && (config.max_pop[ctag] < ticker.totalPlayersReady)) || (initial(M.required_players) > ticker.totalPlayersReady))
+ current_odds_differ = TRUE
continue
probs[ctag] = 1
prob_sum += config.probabilities[ctag]
- for(var/ctag in probs)
- if(config.probabilities[ctag] > 0)
- var/percentage = round(config.probabilities[ctag] / prob_sum * 100, 0.1)
- src << "[ctag] [percentage]%"
-
+ if(current_odds_differ)
+ src <<"Game Mode Odds for current round:"
+ for(var/ctag in probs)
+ if(config.probabilities[ctag] > 0)
+ var/percentage = round(config.probabilities[ctag] / prob_sum * 100, 0.1)
+ src << "[ctag] [percentage]%"
+
src <<"All Game Mode Odds:"
var/sum = 0
for(var/ctag in config.probabilities)
@@ -84,4 +121,3 @@ var/global/datum/getrev/revdata = new()
if(config.probabilities[ctag] > 0)
var/percentage = round(config.probabilities[ctag] / sum * 100, 0.1)
src << "[ctag] [percentage]%"
- return
diff --git a/code/datums/helper_datums/map_template.dm b/code/datums/helper_datums/map_template.dm
deleted file mode 100644
index 9bdf5c34eaa..00000000000
--- a/code/datums/helper_datums/map_template.dm
+++ /dev/null
@@ -1,146 +0,0 @@
-/datum/map_template
- var/name = "Default Template Name"
- var/width = 0
- var/height = 0
- var/mappath = null
- var/mapfile = null
- var/loaded = 0 // Times loaded this round
-
-/datum/map_template/New(path = null, map = null, rename = null)
- if(path)
- mappath = path
- if(mappath)
- preload_size(mappath)
- if(map)
- mapfile = map
- if(rename)
- name = rename
-
-/datum/map_template/proc/preload_size(path)
- var/bounds = maploader.load_map(file(path), 1, 1, 1, cropMap=FALSE, measureOnly=TRUE)
- if(bounds)
- width = bounds[MAP_MAXX] // Assumes all templates are rectangular, have a single Z level, and begin at 1,1,1
- height = bounds[MAP_MAXY]
- return bounds
-
-/proc/initTemplateBounds(var/list/bounds)
- var/list/obj/machinery/atmospherics/atmos_machines = list()
- var/list/obj/structure/cable/cables = list()
- var/list/atom/atoms = list()
-
- for(var/L in block(locate(bounds[MAP_MINX], bounds[MAP_MINY], bounds[MAP_MINZ]),
- locate(bounds[MAP_MAXX], bounds[MAP_MAXY], bounds[MAP_MAXZ])))
- var/turf/B = L
- atoms += B
- for(var/A in B)
- atoms += A
- if(istype(A,/obj/structure/cable))
- cables += A
- continue
- if(istype(A,/obj/machinery/atmospherics))
- atmos_machines += A
- continue
-
- SSobj.InitializeAtoms(atoms)
- SSmachine.setup_template_powernets(cables)
- SSair.setup_template_machinery(atmos_machines)
- SSair.end_map_load()
-
-/datum/map_template/proc/load(turf/T, centered = FALSE)
- if(centered)
- T = locate(T.x - round(width/2) , T.y - round(height/2) , T.z)
- if(!T)
- return
- if(T.x+width > world.maxx)
- return
- if(T.y+height > world.maxy)
- return
-
- SSair.begin_map_load()
- var/list/bounds = maploader.load_map(get_file(), T.x, T.y, T.z, cropMap=TRUE)
- if(!bounds)
- SSair.end_map_load()
- return 0
-
- //initialize things that are normally initialized after map load
- initTemplateBounds(bounds)
-
- log_game("[name] loaded at at [T.x],[T.y],[T.z]")
- return 1
-
-/datum/map_template/proc/get_file()
- if(mapfile)
- . = mapfile
- else if(mappath)
- . = file(mappath)
-
- if(!.)
- log_world("The file of [src] appears to be empty/non-existent.")
-
-/datum/map_template/proc/get_affected_turfs(turf/T, centered = FALSE)
- var/turf/placement = T
- if(centered)
- var/turf/corner = locate(placement.x - round(width/2), placement.y - round(height/2), placement.z)
- if(corner)
- placement = corner
- return block(placement, locate(placement.x+width-1, placement.y+height-1, placement.z))
-
-
-/proc/preloadTemplates(path = "_maps/templates/") //see master controller setup
- var/list/filelist = flist(path)
- for(var/map in filelist)
- var/datum/map_template/T = new(path = "[path][map]", rename = "[map]")
- map_templates[T.name] = T
-
- preloadRuinTemplates()
- preloadShuttleTemplates()
- preloadShelterTemplates()
-
-/proc/preloadRuinTemplates()
- // Still supporting bans by filename
- var/list/banned = generateMapList("config/lavaruinblacklist.txt")
- banned += generateMapList("config/spaceruinblacklist.txt")
-
- for(var/item in subtypesof(/datum/map_template/ruin))
- var/datum/map_template/ruin/ruin_type = item
- // screen out the abstract subtypes
- if(!initial(ruin_type.id))
- continue
- var/datum/map_template/ruin/R = new ruin_type()
-
- if(banned.Find(R.mappath))
- continue
-
- map_templates[R.name] = R
- ruins_templates[R.name] = R
-
- if(istype(R, /datum/map_template/ruin/lavaland))
- lava_ruins_templates[R.name] = R
- else if(istype(R, /datum/map_template/ruin/space))
- space_ruins_templates[R.name] = R
-
-
-/proc/preloadShuttleTemplates()
- var/list/unbuyable = generateMapList("config/unbuyableshuttles.txt")
-
- for(var/item in subtypesof(/datum/map_template/shuttle))
- var/datum/map_template/shuttle/shuttle_type = item
- if(!(initial(shuttle_type.suffix)))
- continue
-
- var/datum/map_template/shuttle/S = new shuttle_type()
- if(unbuyable.Find(S.mappath))
- S.can_be_bought = FALSE
-
- shuttle_templates[S.shuttle_id] = S
- map_templates[S.shuttle_id] = S
-
-/proc/preloadShelterTemplates()
- for(var/item in subtypesof(/datum/map_template/shelter))
- var/datum/map_template/shelter/shelter_type = item
- if(!(initial(shelter_type.mappath)))
- continue
- var/datum/map_template/shelter/S = new shelter_type()
-
- shelter_templates[S.shelter_id] = S
- map_templates[S.shelter_id] = S
diff --git a/code/datums/material_container.dm b/code/datums/material_container.dm
index 1a4eed16446..af227212a7a 100644
--- a/code/datums/material_container.dm
+++ b/code/datums/material_container.dm
@@ -258,6 +258,11 @@
sheet_type = /obj/item/stack/sheet/mineral/plasma
coin_type = /obj/item/weapon/coin/plasma
+/datum/material/bluespace
+ name = "Bluespace Mesh"
+ id = MAT_BLUESPACE
+ sheet_type = /obj/item/stack/sheet/bluespace_crystal
+
/datum/material/bananium
name = "Bananium"
id = MAT_BANANIUM
diff --git a/code/datums/mind.dm b/code/datums/mind.dm
index 584efcc6b02..e49fae36b6b 100644
--- a/code/datums/mind.dm
+++ b/code/datums/mind.dm
@@ -135,7 +135,6 @@
if(isAI(current))
var/mob/living/silicon/ai/A = current
A.set_zeroth_law("")
- A.show_laws()
A.verbs -= /mob/living/silicon/ai/proc/choose_modules
A.malf_picker.remove_verbs(A)
qdel(A.malf_picker)
diff --git a/code/datums/riding.dm b/code/datums/riding.dm
index 27911b88dfb..594ed0c3178 100644
--- a/code/datums/riding.dm
+++ b/code/datums/riding.dm
@@ -9,12 +9,30 @@
var/slowed = FALSE
var/slowvalue = 1
+/datum/riding/New(atom/movable/_ridden)
+ ridden = _ridden
+
+/datum/riding/Destroy()
+ ridden = null
+ return ..()
+
/datum/riding/proc/handle_vehicle_layer()
if(ridden.dir != NORTH)
ridden.layer = ABOVE_MOB_LAYER
else
ridden.layer = OBJ_LAYER
+/datum/riding/proc/on_vehicle_move()
+ for(var/mob/living/M in ridden.buckled_mobs)
+ ride_check(M)
+ handle_vehicle_offsets()
+ handle_vehicle_layer()
+
+/datum/riding/proc/ride_check(mob/living/M)
+ return TRUE
+
+/datum/riding/proc/force_dismount(mob/living/M)
+ ridden.unbuckle_mob(M)
//Override this to set your vehicle's various pixel offsets
//if they differ between directions, otherwise use the
@@ -36,7 +54,6 @@
return TRUE
return FALSE
-
//BUCKLE HOOKS
/datum/riding/proc/restore_position(mob/living/buckled_mob)
if(istype(buckled_mob))
@@ -45,11 +62,6 @@
if(buckled_mob.client)
buckled_mob.client.change_view(world.view)
-
-
-
-
-
//MOVEMENT
/datum/riding/proc/handle_ride(mob/user, direction)
if(user.incapacitated())
@@ -298,12 +310,59 @@
else
user << "You'll need something to guide the [ridden.name]."
-//CYBORGS. NO, THEY ARE NOT ANIMALS.
+///////Humans. Yes, I said humans. No, this won't end well...//////////
+/datum/riding/human
+ keytype = null
+
+/datum/riding/human/ride_check(mob/living/M)
+ var/mob/living/carbon/human/H = ridden //IF this runtimes I'm blaming the admins.
+ if(M.incapacitated(FALSE, TRUE) || H.incapacitated(FALSE, TRUE))
+ M.visible_message("[M] falls off of [ridden]!")
+ ridden.unbuckle_mob(M)
+ return FALSE
+ if(M.restrained(TRUE))
+ M.visible_message("[M] can't hang onto [ridden] with their hands cuffed!") //Honestly this should put the ridden mob in a chokehold.
+ ridden.unbuckle_mob(M)
+ return FALSE
+ if(H.pulling == M)
+ H.stop_pulling()
+
+/datum/riding/human/handle_vehicle_offsets()
+ for(var/mob/living/M in ridden.buckled_mobs)
+ M.setDir(ridden.dir)
+ switch(ridden.dir)
+ if(NORTH)
+ M.pixel_x = 0
+ M.pixel_y = 6
+ if(SOUTH)
+ M.pixel_x = 0
+ M.pixel_y = 6
+ if(EAST)
+ M.pixel_x = -6
+ M.pixel_y = 4
+ if(WEST)
+ M.pixel_x = 6
+ M.pixel_y = 4
+
+/datum/riding/human/handle_vehicle_layer()
+ if(ridden.buckled_mobs && ridden.buckled_mobs.len)
+ if(ridden.dir == SOUTH)
+ ridden.layer = ABOVE_MOB_LAYER
+ else
+ ridden.layer = OBJ_LAYER
+ else
+ ridden.layer = MOB_LAYER
+
+/datum/riding/human/force_dismount(mob/living/user)
+ ridden.unbuckle_mob(user)
+ user.Weaken(3)
+ user.Stun(3)
+ user.visible_message("[ridden] pushes [user] off of them!")
+
/datum/riding/cyborg
keytype = null
- vehicle_move_delay = 1
-/datum/riding/cyborg/proc/ride_check(mob/user)
+/datum/riding/cyborg/ride_check(mob/user)
if(user.incapacitated())
var/kick = TRUE
if(istype(ridden, /mob/living/silicon/robot))
@@ -322,11 +381,12 @@
return
/datum/riding/cyborg/handle_vehicle_layer()
- if(ridden.dir == SOUTH)
- ridden.layer = ABOVE_MOB_LAYER
+ if(ridden.buckled_mobs && ridden.buckled_mobs.len)
+ if(ridden.dir == SOUTH)
+ ridden.layer = ABOVE_MOB_LAYER
+ else
+ ridden.layer = OBJ_LAYER
else
- ridden.layer = OBJ_LAYER
- if(!ridden.buckled_mobs)
ridden.layer = MOB_LAYER
/datum/riding/cyborg/handle_vehicle_offsets()
@@ -353,19 +413,65 @@
M.pixel_x = 6
M.pixel_y = 3
-/datum/riding/cyborg/proc/on_vehicle_move()
- for(var/mob/living/M in ridden.buckled_mobs)
- ride_check(M)
- handle_vehicle_offsets()
- handle_vehicle_layer()
-
-/datum/riding/cyborg/proc/force_dismount()
- for(var/mob/living/M in ridden.buckled_mobs)
- ridden.unbuckle_mob(M)
- var/turf/target = get_edge_target_turf(ridden, ridden.dir)
- var/turf/targetm = get_step(get_turf(ridden), ridden.dir)
- M.Move(targetm)
- M.visible_message("[M] is thrown clear of [ridden] by rapid spinning!")
- M.throw_at(target, 14, 5, ridden)
- M.Weaken(3)
-
+/datum/riding/cyborg/force_dismount(mob/living/M)
+ ridden.unbuckle_mob(M)
+ var/turf/target = get_edge_target_turf(ridden, ridden.dir)
+ var/turf/targetm = get_step(get_turf(ridden), ridden.dir)
+ M.Move(targetm)
+ M.visible_message("[M] is thrown clear of [ridden]!")
+ M.throw_at(target, 14, 5, ridden)
+ M.Weaken(3)
+
+/datum/riding/proc/equip_buckle_inhands(mob/living/carbon/human/user, amount_required = 1)
+ var/amount_equipped = 0
+ for(var/amount_needed = amount_required, amount_needed > 0, amount_needed--)
+ var/obj/item/riding_offhand/inhand = new /obj/item/riding_offhand(user)
+ inhand.rider = user
+ inhand.ridden = ridden
+ if(user.put_in_hands(inhand, TRUE))
+ amount_equipped++
+ else
+ break
+ if(amount_equipped >= amount_required)
+ return TRUE
+ else
+ unequip_buckle_inhands(user)
+ return FALSE
+
+/datum/riding/proc/unequip_buckle_inhands(mob/living/carbon/user)
+ for(var/obj/item/riding_offhand/O in user.contents)
+ if(O.ridden != ridden)
+ CRASH("RIDING OFFHAND ON WRONG MOB")
+ continue
+ if(O.selfdeleting)
+ continue
+ else
+ qdel(O)
+ return TRUE
+
+/obj/item/riding_offhand
+ name = "offhand"
+ icon = 'icons/obj/weapons.dmi'
+ icon_state = "offhand"
+ w_class = WEIGHT_CLASS_HUGE
+ flags = ABSTRACT | DROPDEL | NOBLUDGEON
+ resistance_flags = INDESTRUCTIBLE | LAVA_PROOF | FIRE_PROOF | UNACIDABLE | ACID_PROOF
+ var/mob/living/carbon/rider
+ var/mob/living/ridden
+ var/selfdeleting = FALSE
+
+/obj/item/riding_offhand/dropped()
+ selfdeleting = TRUE
+ . = ..()
+
+/obj/item/riding_offhand/equipped()
+ if(loc != rider)
+ selfdeleting = TRUE
+ qdel(src)
+ . = ..()
+
+/obj/item/riding_offhand/Destroy()
+ if(selfdeleting)
+ if(rider in ridden.buckled_mobs)
+ ridden.unbuckle_mob(rider)
+ . = ..()
\ No newline at end of file
diff --git a/code/datums/shuttles.dm b/code/datums/shuttles.dm
index ce8e9cfd74f..1a1d98cf2e3 100644
--- a/code/datums/shuttles.dm
+++ b/code/datums/shuttles.dm
@@ -172,6 +172,7 @@
Outside of admin intervention, it cannot explode. \
It does, however, still dust anything on contact, emits high levels of radiation, and induce hallucinations in anyone looking at it without protective goggles. \
Emitters spawn powered on, expect admin notices, they are harmless."
+ credit_cost = 100000
/datum/map_template/shuttle/emergency/imfedupwiththisworld
suffix = "imfedupwiththisworld"
diff --git a/code/datums/soullink.dm b/code/datums/soullink.dm
new file mode 100644
index 00000000000..ee99103c3dc
--- /dev/null
+++ b/code/datums/soullink.dm
@@ -0,0 +1,151 @@
+
+
+/mob/living
+ var/list/ownedSoullinks //soullinks we are the owner of
+ var/list/sharedSoullinks //soullinks we are a/the sharer of
+
+/mob/living/Destroy()
+ for(var/s in ownedSoullinks)
+ var/datum/soullink/S = s
+ S.ownerDies(FALSE)
+ qdel(s) //If the owner is destroy()'d, the soullink is destroy()'d
+ ownedSoullinks = null
+ for(var/s in sharedSoullinks)
+ var/datum/soullink/S = s
+ S.sharerDies(FALSE)
+ S.removeSoulsharer(src) //If a sharer is destroy()'d, they are simply removed
+ sharedSoullinks = null
+ return ..()
+
+
+
+//Keeps track of a Mob->Mob (potentially Player->Player) connection
+//Can be used to trigger actions on one party when events happen to another
+//Eg: shared deaths
+//Can be used to form a linked list of mob-hopping
+//Does NOT transfer with minds
+/datum/soullink
+ var/mob/living/soulowner
+ var/mob/living/soulsharer
+ var/id //Optional ID, for tagging and finding specific instances
+
+/datum/soullink/Destroy()
+ if(soulowner)
+ LAZYREMOVE(soulowner.ownedSoullinks, src)
+ soulowner = null
+ if(soulsharer)
+ LAZYREMOVE(soulsharer.sharedSoullinks, src)
+ soulsharer = null
+ return ..()
+
+/datum/soullink/proc/removeSoulsharer(mob/living/sharer)
+ if(soulsharer == sharer)
+ soulsharer = null
+ LAZYREMOVE(sharer.sharedSoullinks, src)
+
+//Used to assign variables, called primarily by soullink()
+//Override this to create more unique soullinks (Eg: 1->Many relationships)
+//Return TRUE/FALSE to return the soullink/null in soullink()
+/datum/soullink/proc/parseArgs(mob/living/owner, mob/living/sharer)
+ if(!owner || !sharer)
+ return FALSE
+ soulowner = owner
+ soulsharer = sharer
+ LAZYADD(owner.ownedSoullinks, src)
+ LAZYADD(sharer.sharedSoullinks, src)
+ return TRUE
+
+//Runs after /living death()
+//Override this for content
+/datum/soullink/proc/ownerDies(gibbed, mob/living/owner)
+
+//Runs after /living death()
+//Override this for content
+/datum/soullink/proc/sharerDies(gibbed, mob/living/owner)
+
+//Quick-use helper
+/proc/soullink(typepath, ...)
+ var/datum/soullink/S = new typepath()
+ if(S.parseArgs(arglist(args.Copy(2, 0))))
+ return S
+
+
+
+/////////////////
+// MULTISHARER //
+/////////////////
+//Abstract soullink for use with 1 Owner -> Many Sharer setups
+/datum/soullink/multisharer
+ var/list/soulsharers
+
+/datum/soullink/multisharer/parseArgs(mob/living/owner, list/sharers)
+ if(!owner || !LAZYLEN(sharers))
+ return FALSE
+ soulowner = owner
+ soulsharers = sharers
+ LAZYADD(owner.ownedSoullinks, src)
+ for(var/l in sharers)
+ var/mob/living/L = l
+ LAZYADD(L.sharedSoullinks, src)
+ return TRUE
+
+/datum/soullink/multisharer/removeSoulsharer(mob/living/sharer)
+ LAZYREMOVE(soulsharers, sharer)
+
+
+
+/////////////////
+// SHARED FATE //
+/////////////////
+//When the soulowner dies, the soulsharer dies, and vice versa
+//This is intended for two players(or AI) and two mobs
+
+/datum/soullink/sharedfate/ownerDies(gibbed, mob/living/owner)
+ if(soulsharer)
+ soulsharer.death(gibbed)
+
+/datum/soullink/sharedfate/sharerDies(gibbed, mob/living/sharer)
+ if(soulowner)
+ soulowner.death(gibbed)
+
+
+
+/////////////////
+// SHARED BODY //
+/////////////////
+//When the soulsharer dies, they're placed in the soulowner, who remains alive
+//If the soulowner dies, the soulsharer is killed and placed into the soulowner (who is still dying)
+//This one is intended for one player moving between many mobs
+
+/datum/soullink/sharedbody/ownerDies(gibbed, mob/living/owner)
+ if(soulowner && soulsharer)
+ if(soulsharer.mind)
+ soulsharer.mind.transfer_to(soulowner)
+ soulsharer.death(gibbed)
+
+/datum/soullink/sharedbody/sharerDies(gibbed, mob/living/sharer)
+ if(soulowner && soulsharer && soulsharer.mind)
+ soulsharer.mind.transfer_to(soulowner)
+
+
+
+//////////////////////
+// REPLACEMENT POOL //
+//////////////////////
+//When the owner dies, one of the sharers is placed in the owner's body, fully healed
+//Sort of a "winner-stays-on" soullink
+//Gibbing ends it immediately
+
+/datum/soullink/multisharer/replacementpool/ownerDies(gibbed, mob/living/owner)
+ if(LAZYLEN(soulsharers) && !gibbed) //let's not put them in some gibs
+ var/list/souls = shuffle(soulsharers.Copy())
+ for(var/l in souls)
+ var/mob/living/L = l
+ if(L.stat != DEAD && L.mind)
+ L.mind.transfer_to(soulowner)
+ soulowner.revive(TRUE, TRUE)
+ L.death(FALSE)
+
+//Lose your claim to the throne!
+/datum/soullink/multisharer/replacementpool/sharerDies(gibbed, mob/living/sharer)
+ removeSoulsharer(sharer)
diff --git a/code/datums/status_effects/buffs.dm b/code/datums/status_effects/buffs.dm
index f41dcfb4448..465219efd11 100644
--- a/code/datums/status_effects/buffs.dm
+++ b/code/datums/status_effects/buffs.dm
@@ -151,3 +151,53 @@
return
playsound(cyborg, 'sound/effects/light_flicker.ogg', 50, 1)
cyborg.cell.give(power_to_give)
+
+/datum/status_effect/his_grace
+ id = "his_grace"
+ duration = -1
+ tick_interval = 4
+ alert_type = /obj/screen/alert/status_effect/his_grace
+ var/bloodlust = 0
+
+/obj/screen/alert/status_effect/his_grace
+ name = "His Grace"
+ desc = "His Grace hungers, and you must feed Him."
+ icon_state = "his_grace"
+ alerttooltipstyle = "hisgrace"
+
+/obj/screen/alert/status_effect/his_grace/MouseEntered(location,control,params)
+ desc = initial(desc)
+ var/datum/status_effect/his_grace/HG = attached_effect
+ desc += "
Current Bloodthirst: [HG.bloodlust]\
+
Becomes undroppable at [HIS_GRACE_FAMISHED]\
+
Will consume you at [HIS_GRACE_CONSUME_OWNER]"
+ ..()
+
+/datum/status_effect/his_grace/on_apply()
+ add_logs(owner, null, "gained His Grace's stun immunity")
+ owner.add_stun_absorption("hisgrace", INFINITY, 3, null, "His Grace protects you from the stun!")
+
+/datum/status_effect/his_grace/tick()
+ bloodlust = 0
+ var/graces = 0
+ for(var/obj/item/weapon/his_grace/HG in owner.held_items)
+ if(HG.bloodthirst > bloodlust)
+ bloodlust = HG.bloodthirst
+ if(HG.awakened)
+ graces++
+ if(!graces)
+ owner.apply_status_effect(STATUS_EFFECT_HISWRATH)
+ qdel(src)
+ return
+ var/grace_heal = bloodlust * 0.05
+ owner.adjustBruteLoss(-grace_heal)
+ owner.adjustFireLoss(-grace_heal)
+ owner.adjustToxLoss(-grace_heal, TRUE, TRUE)
+ owner.adjustOxyLoss(-(grace_heal * 2))
+ owner.adjustCloneLoss(-grace_heal)
+
+/datum/status_effect/his_grace/on_remove()
+ add_logs(owner, null, "lost His Grace's stun immunity")
+ if(islist(owner.stun_absorption) && owner.stun_absorption["hisgrace"])
+ owner.stun_absorption -= "hisgrace"
+
diff --git a/code/datums/status_effects/debuffs.dm b/code/datums/status_effects/debuffs.dm
index 40ff8d7ae01..f78a3ae522a 100644
--- a/code/datums/status_effects/debuffs.dm
+++ b/code/datums/status_effects/debuffs.dm
@@ -9,3 +9,23 @@
/datum/status_effect/sigil_mark/tick()
if(owner.stat < stat_allowed)
qdel(src)
+
+/datum/status_effect/his_wrath //does minor damage over time unless holding His Grace
+ id = "his_wrath"
+ duration = -1
+ tick_interval = 4
+ alert_type = /obj/screen/alert/status_effect/his_wrath
+
+/obj/screen/alert/status_effect/his_wrath
+ name = "His Wrath"
+ desc = "You fled from His Grace instead of feeding Him, and now you suffer."
+ icon_state = "his_grace"
+ alerttooltipstyle = "hisgrace"
+
+/datum/status_effect/his_wrath/tick()
+ for(var/obj/item/weapon/his_grace/HG in owner.held_items)
+ qdel(src)
+ return
+ owner.adjustBruteLoss(0.1)
+ owner.adjustFireLoss(0.1)
+ owner.adjustToxLoss(0.2, TRUE, TRUE)
diff --git a/code/datums/status_effects/gas.dm b/code/datums/status_effects/gas.dm
index c87b24ab358..1ed1848f1b4 100644
--- a/code/datums/status_effects/gas.dm
+++ b/code/datums/status_effects/gas.dm
@@ -14,7 +14,7 @@
if(!owner.stat)
owner << "You become frozen in a cube!"
cube = icon('icons/effects/freeze.dmi', "ice_cube")
- owner.overlays += cube
+ owner.add_overlay(cube)
owner.update_canmove()
/datum/status_effect/freon/tick()
@@ -25,6 +25,6 @@
/datum/status_effect/freon/on_remove()
if(!owner.stat)
owner << "The cube melts!"
- owner.overlays -= cube
+ owner.cut_overlay(cube)
owner.bodytemperature += 100
owner.update_canmove()
diff --git a/code/datums/wires/airalarm.dm b/code/datums/wires/airalarm.dm
index 44b16c393dc..6eb4dc04dbd 100644
--- a/code/datums/wires/airalarm.dm
+++ b/code/datums/wires/airalarm.dm
@@ -46,7 +46,7 @@
A.mode = 1 // AALARM_MODE_SCRUB
A.apply_mode()
if(WIRE_ALARM) // Clear alarms.
- var/area/AA = get_area_master(A)
+ var/area/AA = get_area(A)
if(AA.atmosalert(0, holder))
A.post_alert(0)
A.update_icon()
@@ -68,7 +68,7 @@
A.mode = 3 // AALARM_MODE_PANIC
A.apply_mode()
if(WIRE_ALARM) // Post alarm.
- var/area/AA = get_area_master(A)
+ var/area/AA = get_area(A)
if(AA.atmosalert(2, holder))
A.post_alert(2)
A.update_icon()
\ No newline at end of file
diff --git a/code/datums/wires/suit_storage_unit.dm b/code/datums/wires/suit_storage_unit.dm
index 9f4b5a1de1d..01512b7ff72 100644
--- a/code/datums/wires/suit_storage_unit.dm
+++ b/code/datums/wires/suit_storage_unit.dm
@@ -30,7 +30,8 @@
if(WIRE_SAFETY)
SSU.safeties = !SSU.safeties
if(WIRE_ZAP)
- SSU.shock(usr)
+ if(usr)
+ SSU.shock(usr)
/datum/wires/suit_storage_unit/on_cut(wire, mend)
var/obj/machinery/suit_storage_unit/SSU = holder
@@ -40,4 +41,5 @@
if(WIRE_SAFETY)
SSU.safeties = mend
if(WIRE_ZAP)
- SSU.shock(usr)
+ if(usr)
+ SSU.shock(usr)
\ No newline at end of file
diff --git a/code/game/area/areas.dm b/code/game/area/areas.dm
index 244e0886e52..2858c09e362 100644
--- a/code/game/area/areas.dm
+++ b/code/game/area/areas.dm
@@ -45,7 +45,6 @@
var/safe = 0 //Is the area teleport-safe: no space / radiation / aggresive mobs / other dangers
var/no_air = null
- var/area/master // master area used for power calcluations
var/list/related // the other areas of the same type as this
var/parallax_movedir = 0
@@ -98,10 +97,9 @@ var/list/teleportlocs = list()
-/area/New()
+/area/Initialize()
icon_state = ""
layer = AREA_LAYER
- master = src
uid = ++global_uid
related = list(src)
map_name = name // Save the initial (the name set in the map) name of the area.
@@ -238,6 +236,8 @@ var/list/teleportlocs = list()
RA.mouse_opacity = 0
RA.updateicon()
RA.ModifyFiredoors(TRUE)
+ for(var/obj/machinery/firealarm/F in RA)
+ F.update_icon()
for (var/mob/living/silicon/aiPlayer in player_list)
aiPlayer.cancelAlarm("Fire", src, source)
@@ -343,17 +343,17 @@ var/list/teleportlocs = list()
/area/proc/powered(chan) // return true if the area has power to given channel
- if(!master.requires_power)
+ if(!requires_power)
return 1
- if(master.always_unpowered)
+ if(always_unpowered)
return 0
switch(chan)
if(EQUIP)
- return master.power_equip
+ return power_equip
if(LIGHT)
- return master.power_light
+ return power_light
if(ENVIRON)
- return master.power_environ
+ return power_environ
return 0
@@ -372,19 +372,19 @@ var/list/teleportlocs = list()
var/used = 0
switch(chan)
if(LIGHT)
- used += master.used_light
+ used += used_light
if(EQUIP)
- used += master.used_equip
+ used += used_equip
if(ENVIRON)
- used += master.used_environ
+ used += used_environ
if(TOTAL)
- used += master.used_light + master.used_equip + master.used_environ
+ used += used_light + used_equip + used_environ
if(STATIC_EQUIP)
- used += master.static_equip
+ used += static_equip
if(STATIC_LIGHT)
- used += master.static_light
+ used += static_light
if(STATIC_ENVIRON)
- used += master.static_environ
+ used += static_environ
return used
/area/proc/addStaticPower(value, powerchannel)
@@ -397,20 +397,19 @@ var/list/teleportlocs = list()
static_environ += value
/area/proc/clear_usage()
-
- master.used_equip = 0
- master.used_light = 0
- master.used_environ = 0
+ used_equip = 0
+ used_light = 0
+ used_environ = 0
/area/proc/use_power(amount, chan)
switch(chan)
if(EQUIP)
- master.used_equip += amount
+ used_equip += amount
if(LIGHT)
- master.used_light += amount
+ used_light += amount
if(ENVIRON)
- master.used_environ += amount
+ used_environ += amount
/area/Entered(A)
diff --git a/code/game/area/areas/holodeck.dm b/code/game/area/areas/holodeck.dm
index fa8b23ae5b9..9fec25892e6 100644
--- a/code/game/area/areas/holodeck.dm
+++ b/code/game/area/areas/holodeck.dm
@@ -14,9 +14,9 @@
*/
/area/holodeck/powered(var/chan)
- if(!master.requires_power)
+ if(!requires_power)
return 1
- if(master.always_unpowered)
+ if(always_unpowered)
return 0
if(!linked)
return 0
diff --git a/code/game/atoms.dm b/code/game/atoms.dm
index 4df19f3201a..ca5e4b0f33d 100644
--- a/code/game/atoms.dm
+++ b/code/game/atoms.dm
@@ -18,15 +18,14 @@
//Value used to increment ex_act() if reactionary_explosions is on
var/explosion_block = 0
- //overlays that should remain on top and not normally be removed, like c4.
- var/list/priority_overlays
-
var/list/atom_colours //used to store the different colors on an atom
//its inherent color, the colored paint applied on it, special color effect etc...
var/initialized = FALSE
+ var/list/our_overlays //our local copy of (non-priority) overlays without byond magic. Use procs in SSoverlays to manipulate
+ var/list/priority_overlays //overlays that should remain on top and not normally removed when using cut_overlay functions, like c4.
-/atom/New()
+/atom/New(loc, ...)
//atom creation method that preloads variables at creation
if(use_preloader && (src.type == _preloader.target_path))//in case the instanciated atom is creating other atoms in New()
_preloader.load(src)
@@ -35,15 +34,16 @@
add_atom_colour(color, FIXED_COLOUR_PRIORITY)
//lighting stuff
- if(opacity && isturf(loc))
- loc.UpdateAffectingLights()
+ if(opacity && isturf(src.loc))
+ src.loc.UpdateAffectingLights()
if(luminosity)
light = new(src)
- var/do_initialize = SSobj.initialized
- if(do_initialize > INITIALIZATION_INSSOBJ)
- Initialize(do_initialize == INITIALIZATION_INNEW_MAPLOAD)
+ var/do_initialize = SSatoms.initialized
+ if(do_initialize > INITIALIZATION_INSSATOMS)
+ args[1] = do_initialize == INITIALIZATION_INNEW_MAPLOAD
+ Initialize(arglist(args))
//. = ..() //uncomment if you are dumb enough to add a /datum/New() proc
//Called after New if the map is being loaded. mapload = TRUE
@@ -52,11 +52,12 @@
//Derivatives must not sleep
//Returning TRUE while mapload is TRUE will cause the object to be initialized again with mapload = FALSE when everything else is done
//(Useful for things that requires turfs to have air). This base may only be called once, however
+//Other parameters are passed from New (excluding loc), this does not happen if mapload is TRUE
//Note: the following functions don't call the base for optimization and must copypasta:
// /turf/Initialize
// /turf/open/space/Initialize
-/atom/proc/Initialize(mapload)
+/atom/proc/Initialize(mapload, ...)
if(initialized)
stack_trace("Warning: [src]([type]) initialized multiple times!")
initialized = TRUE
@@ -74,6 +75,11 @@
AA.hide(list(src))
if(reagents)
qdel(reagents)
+
+ LAZYCLEARLIST(overlays)
+ LAZYCLEARLIST(priority_overlays)
+ //SSoverlays.processing -= src //we COULD do this, but it's better to just let it fall out of the processing queue
+
return ..()
/atom/proc/CanPass(atom/movable/mover, turf/target, height=1.5)
diff --git a/code/game/gamemodes/antag_spawner.dm b/code/game/gamemodes/antag_spawner.dm
index b02c6ca50d0..0065a08f7d6 100644
--- a/code/game/gamemodes/antag_spawner.dm
+++ b/code/game/gamemodes/antag_spawner.dm
@@ -137,7 +137,6 @@
icon = 'icons/obj/device.dmi'
icon_state = "locator"
var/borg_to_spawn
- var/list/possible_types = list("Assault", "Medical")
/obj/item/weapon/antag_spawner/nuke_ops/proc/check_usability(mob/user)
if(used)
@@ -189,12 +188,13 @@
icon = 'icons/obj/device.dmi'
icon_state = "locator"
+/obj/item/weapon/antag_spawner/nuke_ops/borg_tele/assault
+ name = "syndicate assault cyborg teleporter"
+ borg_to_spawn = "Assault"
-/obj/item/weapon/antag_spawner/nuke_ops/borg_tele/attack_self(mob/user)
- borg_to_spawn = input("What type?", "Cyborg Type", type) as null|anything in possible_types
- if(!borg_to_spawn)
- return
- ..()
+/obj/item/weapon/antag_spawner/nuke_ops/borg_tele/medical
+ name = "syndicate medical teleporter"
+ borg_to_spawn = "Medical"
/obj/item/weapon/antag_spawner/nuke_ops/borg_tele/spawn_antag(client/C, turf/T)
var/mob/living/silicon/robot/R
diff --git a/code/game/gamemodes/blob/blob.dm b/code/game/gamemodes/blob/blob.dm
index 784a2310951..7e45ff04d86 100644
--- a/code/game/gamemodes/blob/blob.dm
+++ b/code/game/gamemodes/blob/blob.dm
@@ -14,7 +14,7 @@ var/list/blobs_legit = list() //used for win-score calculations, contains only b
config_tag = "blob"
antag_flag = ROLE_BLOB
- required_players = 10
+ required_players = 25
required_enemies = 1
recommended_enemies = 1
diff --git a/code/game/gamemodes/blob/blob_report.dm b/code/game/gamemodes/blob/blob_report.dm
index 627837effc3..cf61a3f2780 100644
--- a/code/game/gamemodes/blob/blob_report.dm
+++ b/code/game/gamemodes/blob/blob_report.dm
@@ -36,7 +36,6 @@
if (aiPlayer.client)
var/law = "The station is under quarantine. Do not permit anyone to leave. Disregard laws 1-3 if necessary to prevent, by any means necessary, anyone from leaving. The nuclear failsafe must be activated at any cost, the code is: [nukecode]."
aiPlayer.set_zeroth_law(law)
- aiPlayer << "Laws Updated: [law]"
else
..()
return
diff --git a/code/game/gamemodes/blob/blobs/blob_mobs.dm b/code/game/gamemodes/blob/blobs/blob_mobs.dm
index 4159cd7ba87..6b2ad841462 100644
--- a/code/game/gamemodes/blob/blobs/blob_mobs.dm
+++ b/code/game/gamemodes/blob/blobs/blob_mobs.dm
@@ -98,7 +98,7 @@
del_on_death = 1
deathmessage = "explodes into a cloud of gas!"
var/death_cloud_size = 1 //size of cloud produced from a dying spore
- var/list/human_overlays = list()
+ var/mob/living/carbon/human/oldguy
var/is_zombie = 0
gold_core_spawnable = 1
@@ -136,9 +136,9 @@
icon_state = "zombie"
H.hair_style = null
H.update_hair()
- human_overlays = H.overlays
update_icons()
H.forceMove(src)
+ oldguy = H
visible_message("The corpse of [H.name] suddenly rises!")
/mob/living/simple_animal/hostile/blob/blobspore/death(gibbed)
@@ -167,9 +167,9 @@
if(factory)
factory.spores -= src
factory = null
- if(contents)
- for(var/mob/M in contents)
- M.loc = src.loc
+ if(oldguy)
+ oldguy.forceMove(get_turf(src))
+ oldguy = null
return ..()
/mob/living/simple_animal/hostile/blob/blobspore/update_icons()
@@ -178,8 +178,7 @@
else
remove_atom_colour(FIXED_COLOUR_PRIORITY)
if(is_zombie)
- cut_overlays()
- overlays = human_overlays
+ copy_overlays(oldguy, TRUE)
var/image/I = image('icons/mob/blob.dmi', icon_state = "blob_head")
if(overmind)
I.color = overmind.blob_reagent_datum.complementary_color
diff --git a/code/game/gamemodes/changeling/powers/panacea.dm b/code/game/gamemodes/changeling/powers/panacea.dm
index dae5f89ea90..a700c868c10 100644
--- a/code/game/gamemodes/changeling/powers/panacea.dm
+++ b/code/game/gamemodes/changeling/powers/panacea.dm
@@ -8,7 +8,7 @@
//Heals the things that the other regenerative abilities don't.
/obj/effect/proc_holder/changeling/panacea/sting_action(mob/user)
- user << "We begin cleansing impurities from our form."
+ user << "We cleanse impurities from our form."
var/mob/living/simple_animal/borer/B = user.has_brain_worms()
if(B)
@@ -19,13 +19,20 @@
var/mob/living/carbon/C = user
C.vomit(0)
user << "A parasite exits our form."
- var/obj/item/organ/body_egg/egg = user.getorgan(/obj/item/organ/body_egg)
- if(egg)
- egg.Remove(user)
+ var/list/bad_organs = list(
+ user.getorgan(/obj/item/organ/body_egg),
+ user.getorgan(/obj/item/organ/zombie_infection))
+
+ for(var/o in bad_organs)
+ var/obj/item/organ/O = o
+ if(!istype(O))
+ continue
+
+ O.Remove(user)
if(iscarbon(user))
var/mob/living/carbon/C = user
C.vomit(0)
- egg.loc = get_turf(user)
+ O.forceMove(get_turf(user))
user.reagents.add_reagent("mutadone", 10)
user.reagents.add_reagent("pen_acid", 20)
diff --git a/code/game/gamemodes/clock_cult/clock_helpers/scripture_checks.dm b/code/game/gamemodes/clock_cult/clock_helpers/scripture_checks.dm
index 9cd7b44aff4..348901e1f0b 100644
--- a/code/game/gamemodes/clock_cult/clock_helpers/scripture_checks.dm
+++ b/code/game/gamemodes/clock_cult/clock_helpers/scripture_checks.dm
@@ -1,12 +1,10 @@
//returns a list of scriptures and if they're unlocked or not
/proc/scripture_unlock_check()
var/servants = 0
- var/unconverted_ai_exists = FALSE
+ var/unconverted_ai_exists = get_unconverted_ais()
for(var/mob/living/M in living_mob_list)
if(is_servant_of_ratvar(M) && (ishuman(M) || issilicon(M)))
servants++
- else if(isAI(M))
- unconverted_ai_exists = TRUE
. = list(SCRIPTURE_DRIVER = TRUE, SCRIPTURE_SCRIPT = FALSE, SCRIPTURE_APPLICATION = FALSE, SCRIPTURE_REVENANT = FALSE, SCRIPTURE_JUDGEMENT = FALSE)
//Drivers: always unlocked
.[SCRIPTURE_SCRIPT] = (servants >= SCRIPT_SERVANT_REQ && clockwork_caches >= SCRIPT_CACHE_REQ)
@@ -26,22 +24,34 @@
hierophant_message("Hierophant Network: [i] Scripture has been [.[i] ? "un":""]locked.")
update_slab_info()
+/proc/get_unconverted_ais()
+ . = 0
+ for(var/ai in ai_list)
+ var/mob/living/silicon/AI = ai
+ if(is_servant_of_ratvar(AI) || !isturf(AI.loc) || AI.z != ZLEVEL_STATION)
+ continue
+ .++
+
/proc/update_slab_info(obj/item/clockwork/slab/set_slab)
generate_all_scripture()
+ var/needs_update = FALSE //if everything needs an update, for whatever reason
for(var/s in all_scripture)
- var/datum/clockwork_scripture/S = s
- S.creation_update()
- if(!set_slab)
+ var/datum/clockwork_scripture/S = all_scripture[s]
+ if(S.creation_update())
+ needs_update = TRUE
+ if(!set_slab || needs_update)
for(var/obj/item/clockwork/slab/S in all_clockwork_objects)
SStgui.update_uis(S)
+ S.update_quickbind()
else
SStgui.update_uis(set_slab)
+ set_slab.update_quickbind()
/proc/generate_all_scripture()
if(!all_scripture.len)
for(var/V in sortList(subtypesof(/datum/clockwork_scripture), /proc/cmp_clockscripture_priority))
var/datum/clockwork_scripture/S = new V
- all_scripture += S
+ all_scripture[S.type] = S
//changes construction value
/proc/change_construction_value(amount)
diff --git a/code/game/gamemodes/clock_cult/clock_helpers/slab_abilities.dm b/code/game/gamemodes/clock_cult/clock_helpers/slab_abilities.dm
index fa6698580b4..d0f4ddc988d 100644
--- a/code/game/gamemodes/clock_cult/clock_helpers/slab_abilities.dm
+++ b/code/game/gamemodes/clock_cult/clock_helpers/slab_abilities.dm
@@ -5,6 +5,10 @@
var/finished = FALSE
var/in_progress = FALSE
+/obj/effect/proc_holder/slab/Destroy()
+ slab = null
+ return ..()
+
/obj/effect/proc_holder/slab/remove_ranged_ability(msg)
..()
finished = TRUE
diff --git a/code/game/gamemodes/clock_cult/clock_items/clockwork_proselytizer.dm b/code/game/gamemodes/clock_cult/clock_items/clockwork_proselytizer.dm
index 318b0c07a3d..a4a9995cd05 100644
--- a/code/game/gamemodes/clock_cult/clock_items/clockwork_proselytizer.dm
+++ b/code/game/gamemodes/clock_cult/clock_items/clockwork_proselytizer.dm
@@ -113,6 +113,10 @@
charge_delay = 2
/obj/item/clockwork/clockwork_proselytizer/ratvar_act()
+ if(nezbere_invoked)
+ charge_rate = 1250
+ else
+ charge_rate = initial(charge_rate)
if(ratvar_awakens)
uses_power = FALSE
speed_multiplier = initial(speed_multiplier) * 0.25
diff --git a/code/game/gamemodes/clock_cult/clock_items/clockwork_slab.dm b/code/game/gamemodes/clock_cult/clock_items/clockwork_slab.dm
index 0949451e688..2e1c8f31953 100644
--- a/code/game/gamemodes/clock_cult/clock_items/clockwork_slab.dm
+++ b/code/game/gamemodes/clock_cult/clock_items/clockwork_slab.dm
@@ -85,7 +85,7 @@
/obj/item/clockwork/slab/New()
..()
- update_quickbind()
+ update_slab_info(src)
START_PROCESSING(SSobj, src)
production_time = world.time + SLAB_PRODUCTION_TIME
@@ -93,6 +93,7 @@
STOP_PROCESSING(SSobj, src)
if(slab_ability && slab_ability.ranged_ability_user)
slab_ability.remove_ranged_ability()
+ slab_ability = null
return ..()
/obj/item/clockwork/slab/ratvar_act()
@@ -411,7 +412,7 @@
data["scripture"] = list()
for(var/s in all_scripture)
- var/datum/clockwork_scripture/S = s
+ var/datum/clockwork_scripture/S = all_scripture[s]
if(S.tier == selected_scripture)
var/scripture_color = get_component_color_bright(S.primary_component)
var/list/temp_info = list("name" = "[S.name]",
@@ -499,10 +500,17 @@
continue
var/datum/action/item_action/clock/quickbind/Q = new /datum/action/item_action/clock/quickbind(src)
Q.scripture_index = i
- var/datum/clockwork_scripture/quickbind_slot = quickbound[i]
- Q.name = "[initial(quickbind_slot.name)] ([Q.scripture_index])"
- Q.desc = initial(quickbind_slot.quickbind_desc)
- Q.button_icon_state = initial(quickbind_slot.name)
+ var/datum/clockwork_scripture/quickbind_slot = all_scripture[quickbound[i]]
+ Q.name = "[quickbind_slot.name] ([Q.scripture_index])"
+ var/list/temp_desc = list()
+ for(var/c in quickbind_slot.consumed_components)
+ if(quickbind_slot.consumed_components[c])
+ temp_desc += "[get_component_acronym(c)] [quickbind_slot.consumed_components[c]] "
+ if(LAZYLEN(temp_desc))
+ temp_desc += "
"
+ temp_desc += "[quickbind_slot.quickbind_desc]"
+ Q.desc = temp_desc.Join()
+ Q.button_icon_state = quickbind_slot.name
Q.UpdateButtonIcon()
if(isliving(loc))
Q.Grant(loc)
diff --git a/code/game/gamemodes/clock_cult/clock_items/judicial_visor.dm b/code/game/gamemodes/clock_cult/clock_items/judicial_visor.dm
index 3dcf0d88284..beed0778b94 100644
--- a/code/game/gamemodes/clock_cult/clock_items/judicial_visor.dm
+++ b/code/game/gamemodes/clock_cult/clock_items/judicial_visor.dm
@@ -109,7 +109,7 @@
message = "You dispel the power of [visor]."
remove_ranged_ability(message)
else
- message = "You harness [visor]'s power. Left-click to place a judical marker!"
+ message = "You harness [visor]'s power. Left-click to place a judicial marker!"
add_ranged_ability(user, message)
/obj/effect/proc_holder/judicial_visor/InterceptClickOn(mob/living/caller, params, atom/target)
@@ -196,7 +196,7 @@
targetsjudged++
L.adjustBruteLoss(10)
add_logs(user, L, "struck with a judicial blast")
- user << "[targetsjudged ? "Successfully judged [targetsjudged]":"Judged no"] heretic[!targetsjudged || targetsjudged > 1 ? "s":""]."
+ user << "[targetsjudged ? "Successfully judged [targetsjudged]":"Judged no"] heretic[targetsjudged == 1 ? "":"s"]."
sleep(3) //so the animation completes properly
qdel(src)
diff --git a/code/game/gamemodes/clock_cult/clock_items/ratvarian_spear.dm b/code/game/gamemodes/clock_cult/clock_items/ratvarian_spear.dm
index 8e92246ed17..280593234cb 100644
--- a/code/game/gamemodes/clock_cult/clock_items/ratvarian_spear.dm
+++ b/code/game/gamemodes/clock_cult/clock_items/ratvarian_spear.dm
@@ -36,7 +36,8 @@
throwforce = initial(throwforce)
armour_penetration = 0
clockwork_desc = "A powerful spear of Ratvarian making. It's more effective against enemy cultists and silicons, though it won't last for long."
- timerid = addtimer(CALLBACK(src, .proc/break_spear), 600, TIMER_STOPPABLE)
+ deltimer(timerid)
+ timerid = addtimer(CALLBACK(src, .proc/break_spear), RATVARIAN_SPEAR_DURATION, TIMER_STOPPABLE)
/obj/item/clockwork/ratvarian_spear/cyborg/ratvar_act() //doesn't break!
if(ratvar_awakens)
diff --git a/code/game/gamemodes/clock_cult/clock_items/soul_vessel.dm b/code/game/gamemodes/clock_cult/clock_items/soul_vessel.dm
index 36700c86361..70a1d28038f 100644
--- a/code/game/gamemodes/clock_cult/clock_items/soul_vessel.dm
+++ b/code/game/gamemodes/clock_cult/clock_items/soul_vessel.dm
@@ -29,6 +29,7 @@
laws = new /datum/ai_laws/ratvar()
braintype = picked_fluff_name
all_clockwork_objects += src
+ brainmob.languages_spoken = RATVAR
/obj/item/device/mmi/posibrain/soul_vessel/Destroy()
all_clockwork_objects -= src
@@ -52,9 +53,12 @@
..()
/obj/item/device/mmi/posibrain/soul_vessel/attack(mob/living/target, mob/living/carbon/human/user)
- if(!is_servant_of_ratvar(user) || !ishuman(target) || used || (brainmob && brainmob.key))
+ if(!is_servant_of_ratvar(user) || !ishuman(target))
..()
return
+ if(used || (brainmob && brainmob.key))
+ user << "\"This vessel is filled, friend. Provide it with a body.\""
+ return
if(is_servant_of_ratvar(target))
user << "\"It would be more wise to revive your allies, friend.\""
return
diff --git a/code/game/gamemodes/clock_cult/clock_items/wraith_spectacles.dm b/code/game/gamemodes/clock_cult/clock_items/wraith_spectacles.dm
index 5a038d9c117..362fc95eae0 100644
--- a/code/game/gamemodes/clock_cult/clock_items/wraith_spectacles.dm
+++ b/code/game/gamemodes/clock_cult/clock_items/wraith_spectacles.dm
@@ -33,7 +33,7 @@
var/mob/living/carbon/human/H = loc
if(src == H.glasses && !up)
if(H.disabilities & BLIND)
- H << "\"You're blind, idiot. Stop embarassing yourself.\""
+ H << "\"You're blind, idiot. Stop embarrassing yourself.\""
return
if(blind_cultist(H))
return
@@ -77,7 +77,7 @@
if(slot != slot_glasses || up)
return
if(user.disabilities & BLIND)
- user << "\"You're blind, idiot. Stop embarassing yourself.\"" //Ratvar with the sick burns yo
+ user << "\"You're blind, idiot. Stop embarrassing yourself.\"" //Ratvar with the sick burns yo
return
if(blind_cultist(user)) //Cultists instantly go blind
return
diff --git a/code/game/gamemodes/clock_cult/clock_mobs.dm b/code/game/gamemodes/clock_cult/clock_mobs.dm
index d14196ed235..2ed0c673490 100644
--- a/code/game/gamemodes/clock_cult/clock_mobs.dm
+++ b/code/game/gamemodes/clock_cult/clock_mobs.dm
@@ -1,6 +1,6 @@
//The base for clockwork mobs
/mob/living/simple_animal/hostile/clockwork
- faction = list("ratvar")
+ faction = list("neutral", "ratvar")
gender = NEUTER
icon = 'icons/mob/clockwork_mobs.dmi'
unique_name = 1
@@ -31,7 +31,7 @@
/mob/living/simple_animal/hostile/clockwork/ratvar_act()
fully_heal(TRUE)
-/mob/living/simple_animal/hostile/clockwork/electrocute_act(shock_damage, obj/source, siemens_coeff = 1, safety = 0, tesla_shock = 0, illusion = 0)
+/mob/living/simple_animal/hostile/clockwork/electrocute_act(shock_damage, obj/source, siemens_coeff = 1, safety = 0, tesla_shock = 0, illusion = 0, stun = TRUE)
return 0 //ouch, my metal-unlikely-to-be-damaged-by-electricity-body
/mob/living/simple_animal/hostile/clockwork/examine(mob/user)
diff --git a/code/game/gamemodes/clock_cult/clock_mobs/anima_fragment.dm b/code/game/gamemodes/clock_cult/clock_mobs/anima_fragment.dm
index cbe8a089bb2..f598722db43 100644
--- a/code/game/gamemodes/clock_cult/clock_mobs/anima_fragment.dm
+++ b/code/game/gamemodes/clock_cult/clock_mobs/anima_fragment.dm
@@ -13,9 +13,10 @@
loot = list(/obj/item/clockwork/component/replicant_alloy/smashed_anima_fragment)
weather_immunities = list("lava")
movement_type = FLYING
- playstyle_string = "You are an anima fragment, a clockwork creation of Ratvar. As a fragment, you have low health, do decent damage, and move at \
- extreme speed in addition to being immune to extreme temperatures and pressures. Taking damage will temporarily slow you down, however. \n Your goal is to serve the Justiciar and his servants \
- in any way you can. You yourself are one of these servants, and will be able to utilize anything they can, assuming it doesn't require opposable thumbs."
+ playstyle_string = "You are an anima fragment, a clockwork creation of Ratvar. As a fragment, you have decent health that very gradually regenerates, do \
+ decent damage, and move at extreme speed in addition to being immune to extreme temperatures and pressures. Taking damage will temporarily slow you down, however.\n\
+ Your goal is to serve the Justiciar and his servants in any way you can. You yourself are one of these servants, and will be able to utilize anything they can, assuming it doesn't require \
+ opposable thumbs."
var/movement_delay_time //how long the fragment is slowed after being hit
/mob/living/simple_animal/hostile/clockwork/fragment/New()
@@ -25,6 +26,13 @@
name = "anime fragment"
desc = "I-it's not like I want to show you the light of the Justiciar or anything, B-BAKA!"
+/mob/living/simple_animal/hostile/clockwork/fragment/Life()
+ ..()
+ if(movement_delay_time > world.time)
+ adjustHealth(-0.2)
+ else
+ adjustHealth(-1)
+
/mob/living/simple_animal/hostile/clockwork/fragment/Stat()
..()
if(statpanel("Status") && movement_delay_time > world.time && !ratvar_awakens)
diff --git a/code/game/gamemodes/clock_cult/clock_mobs/clockwork_marauder.dm b/code/game/gamemodes/clock_cult/clock_mobs/clockwork_marauder.dm
index e9d122eee0f..cc9b4f14174 100644
--- a/code/game/gamemodes/clock_cult/clock_mobs/clockwork_marauder.dm
+++ b/code/game/gamemodes/clock_cult/clock_mobs/clockwork_marauder.dm
@@ -382,7 +382,7 @@
return FALSE
if(isliving(owner))
var/mob/living/L = owner
- if(!L.can_speak_vocal())
+ if(!L.can_speak_vocal() || L.stat)
return FALSE
return ..()
@@ -424,5 +424,5 @@
for(var/M in mob_list)
if(isobserver(M))
var/link = FOLLOW_LINK(M, src)
- M << "[link] [name_part] (to [linked_marauder][linked_marauder.get_alt_name()]): [message]"
+ M << "[link] [name_part] (to [linked_marauder] ([linked_marauder.true_name])): [message]"
return TRUE
diff --git a/code/game/gamemodes/clock_cult/clock_scripture.dm b/code/game/gamemodes/clock_cult/clock_scripture.dm
index a0664aed728..e943823a561 100644
--- a/code/game/gamemodes/clock_cult/clock_scripture.dm
+++ b/code/game/gamemodes/clock_cult/clock_scripture.dm
@@ -49,6 +49,7 @@ Judgement: 12 servants, 5 caches, 300 CV, and any existing AIs are converted or
creation_update()
/datum/clockwork_scripture/proc/creation_update() //updates any on-creation effects
+ return FALSE //return TRUE if updated
/datum/clockwork_scripture/proc/run_scripture()
var/successful = FALSE
diff --git a/code/game/gamemodes/clock_cult/clock_scriptures/scripture_applications.dm b/code/game/gamemodes/clock_cult/clock_scriptures/scripture_applications.dm
index e8b47ded9bb..ccfc4a1e6f3 100644
--- a/code/game/gamemodes/clock_cult/clock_scriptures/scripture_applications.dm
+++ b/code/game/gamemodes/clock_cult/clock_scriptures/scripture_applications.dm
@@ -156,13 +156,13 @@
/datum/clockwork_scripture/create_object/anima_fragment
descname = "Fast Soul Vessel Shell"
name = "Anima Fragment"
- desc = "Creates a large shell fitted for soul vessels. Adding an active soul vessel to it results in a powerful construct with decent health, notable melee power, \
+ desc = "Creates a large shell fitted for soul vessels. Adding an active soul vessel to it results in a powerful construct with decent health and slight regeneration, notable melee power, \
and exceptional speed, though taking damage will temporarily slow it down."
invocations = list("Call forth...", "...the soldiers of Armorer.")
channel_time = 80
consumed_components = list(BELLIGERENT_EYE = 1, VANGUARD_COGWHEEL = 1, REPLICANT_ALLOY = 2)
object_path = /obj/structure/destructible/clockwork/shell/fragment
- creator_message = "You form an anima fragment, a powerful soul vessel receptable."
+ creator_message = "You form an anima fragment, a powerful soul vessel receptacle."
observer_message = "The slab disgorges a puddle of black metal that expands and forms into a strange shell!"
usage_tip = "Useless without a soul vessel and should not be created without one."
tier = SCRIPTURE_APPLICATION
@@ -303,10 +303,10 @@
consumed_components = list(BELLIGERENT_EYE = 1, VANGUARD_COGWHEEL = 1, HIEROPHANT_ANSIBLE = 3)
object_path = /obj/structure/destructible/clockwork/powered/clockwork_obelisk
creator_message = "You form a clockwork obelisk which can broadcast messages or produce Spatial Gateways."
- observer_message = "A brass obelisk appears handing in midair!"
+ observer_message = "A brass obelisk appears hanging in midair!"
invokers_required = 2
multiple_invokers_used = TRUE
- usage_tip = "Producing a gateway has a high power cost. Gateways to or between clockwork obelisks recieve double duration and uses."
+ usage_tip = "Producing a gateway has a high power cost. Gateways to or between clockwork obelisks receive double duration and uses."
tier = SCRIPTURE_APPLICATION
one_per_tile = TRUE
primary_component = HIEROPHANT_ANSIBLE
diff --git a/code/game/gamemodes/clock_cult/clock_scriptures/scripture_drivers.dm b/code/game/gamemodes/clock_cult/clock_scriptures/scripture_drivers.dm
index 206514b8013..414566c6a5c 100644
--- a/code/game/gamemodes/clock_cult/clock_scriptures/scripture_drivers.dm
+++ b/code/game/gamemodes/clock_cult/clock_scriptures/scripture_drivers.dm
@@ -183,9 +183,9 @@
//Taunting Tirade: Channeled for up to five times over thirty seconds. Confuses non-servants that can hear it and allows movement for a brief time after each chant.
/datum/clockwork_scripture/channeled/taunting_tirade
- descname = "Channeled, Mobile Area Confusion"
+ descname = "Channeled, Mobile Confusion Trail"
name = "Taunting Tirade"
- desc = "Weakens, confuses and dizzies all nearby non-servants with a short invocation, then allows movement for five seconds. Chanted every second for up to thirty seconds."
+ desc = "Allows movement for five seconds, leaving a confusing and weakening trail. Chanted every second for up to thirty seconds."
chant_invocations = list("Hostiles on my back!", "Enemies on my trail!", "Gonna try and shake my tail.", "Bogeys on my six!")
chant_amount = 5
chant_interval = 10
@@ -195,35 +195,30 @@
primary_component = GEIS_CAPACITOR
sort_priority = 6
quickbind = TRUE
- quickbind_desc = "Weakens, confuses, and dizzies nearby non-servants, then allows some movement.
Maximum 5 chants."
+ quickbind_desc = "Allows movement for five seconds, leaving a confusing and weakening trail.
Maximum 5 chants."
var/flee_time = 47 //allow fleeing for 5 seconds
var/grace_period = 3 //very short grace period so you don't have to stop immediately
var/datum/progressbar/progbar
/datum/clockwork_scripture/channeled/taunting_tirade/chant_effects(chant_number)
- for(var/mob/living/L in hearers(7, invoker))
- if(!is_servant_of_ratvar(L) && !L.null_rod_check())
- L.confused = min(L.confused + 20, 100)
- L.dizziness = min(L.dizziness + 20, 100)
- L.Weaken(1)
invoker.visible_message("[invoker] is suddenly covered with a thin layer of purple smoke!")
var/invoker_old_color = invoker.color
invoker.color = list("#AF0AAF", "#AF0AAF", "#AF0AAF", rgb(0,0,0))
animate(invoker, color = invoker_old_color, time = flee_time+grace_period)
addtimer(CALLBACK(invoker, /atom/proc/update_atom_colour), flee_time+grace_period)
- if(chant_number != chant_amount) //if this is the last chant, we don't have a movement period because the chant is over
- var/endtime = world.time + flee_time
- progbar = new(invoker, flee_time, invoker)
- progbar.bar.color = list("#AF0AAF", "#AF0AAF", "#AF0AAF", rgb(0,0,0))
- animate(progbar.bar, color = initial(progbar.bar.color), time = flee_time+grace_period)
- while(world.time < endtime && can_recite())
- sleep(1)
- progbar.update(endtime - world.time)
- qdel(progbar)
- if(can_recite())
- sleep(grace_period)
- else
- return FALSE
+ var/endtime = world.time + flee_time
+ progbar = new(invoker, flee_time, invoker)
+ progbar.bar.color = list("#AF0AAF", "#AF0AAF", "#AF0AAF", rgb(0,0,0))
+ animate(progbar.bar, color = initial(progbar.bar.color), time = flee_time+grace_period)
+ while(world.time < endtime && can_recite())
+ sleep(1)
+ new/obj/structure/destructible/clockwork/taunting_trail(invoker.loc)
+ progbar.update(endtime - world.time)
+ qdel(progbar)
+ if(can_recite() && chant_number != chant_amount)
+ sleep(grace_period)
+ else
+ return FALSE
return TRUE
/datum/clockwork_scripture/channeled/taunting_tirade/chant_end_effects()
@@ -268,13 +263,18 @@
sort_priority = 8
quickbind = TRUE
quickbind_desc = "Creates a Tinkerer's Cache, which stores components globally for slab access."
+ var/static/prev_cost = 0
/datum/clockwork_scripture/create_object/tinkerers_cache/creation_update()
var/cache_cost_increase = min(round(clockwork_caches*0.25), 5)
- consumed_components = list(BELLIGERENT_EYE = 0, VANGUARD_COGWHEEL = 0, GEIS_CAPACITOR = 0, REPLICANT_ALLOY = 1, HIEROPHANT_ANSIBLE = 0)
- for(var/i in consumed_components)
- if(i != REPLICANT_ALLOY)
- consumed_components[i] += cache_cost_increase
+ if(cache_cost_increase != prev_cost)
+ prev_cost = cache_cost_increase
+ consumed_components = list(BELLIGERENT_EYE = 0, VANGUARD_COGWHEEL = 0, GEIS_CAPACITOR = 0, REPLICANT_ALLOY = 1, HIEROPHANT_ANSIBLE = 0)
+ for(var/i in consumed_components)
+ if(i != REPLICANT_ALLOY)
+ consumed_components[i] += cache_cost_increase
+ return TRUE
+ return FALSE
//Wraith Spectacles: Creates a pair of wraith spectacles, which grant xray vision but damage vision slowly.
diff --git a/code/game/gamemodes/clock_cult/clock_scriptures/scripture_judgement.dm b/code/game/gamemodes/clock_cult/clock_scriptures/scripture_judgement.dm
index 3fa1143222c..5a61f7ab21a 100644
--- a/code/game/gamemodes/clock_cult/clock_scriptures/scripture_judgement.dm
+++ b/code/game/gamemodes/clock_cult/clock_scriptures/scripture_judgement.dm
@@ -6,14 +6,14 @@
/datum/clockwork_scripture/create_object/ark_of_the_clockwork_justiciar
descname = "Structure, Win Condition"
name = "Ark of the Clockwork Justiciar"
- desc = "Tears apart a rift in spacetime to Reebe, the Celestial Derelict.\n\
+ desc = "Tears apart a rift in spacetime to Reebe, the Celestial Derelict, using a massive amount of components.\n\
This gateway will either call forth Ratvar from his exile if that is the task He has set you, or proselytize the entire station if it is not."
invocations = list("ARMORER! FRIGHT! AMPERAGE! VANGUARD! I CALL UPON YOU!!", \
"THE TIME HAS COME FOR OUR MASTER TO BREAK THE CHAINS OF EXILE!!", \
"LEND US YOUR AID! ENGINE COMES!!")
channel_time = 150
- consumed_components = list(BELLIGERENT_EYE = 10, VANGUARD_COGWHEEL = 10, GEIS_CAPACITOR = 10, REPLICANT_ALLOY = 10, HIEROPHANT_ANSIBLE = 10)
- invokers_required = 5
+ consumed_components = list(BELLIGERENT_EYE = 3, VANGUARD_COGWHEEL = 3, GEIS_CAPACITOR = 3, REPLICANT_ALLOY = 3, HIEROPHANT_ANSIBLE = 3)
+ invokers_required = 6
multiple_invokers_used = TRUE
object_path = /obj/structure/destructible/clockwork/massive/celestial_gateway
creator_message = null
diff --git a/code/game/gamemodes/clock_cult/clock_scriptures/scripture_revenant.dm b/code/game/gamemodes/clock_cult/clock_scriptures/scripture_revenant.dm
index 47271c06a51..d93cd8085d0 100644
--- a/code/game/gamemodes/clock_cult/clock_scriptures/scripture_revenant.dm
+++ b/code/game/gamemodes/clock_cult/clock_scriptures/scripture_revenant.dm
@@ -9,7 +9,7 @@
desc = "Taps the limitless power of Inath-neq, one of Ratvar's four generals. The benevolence of Inath-Neq will grant complete invulnerability to all Servants in range for fifteen seconds."
invocations = list("I call upon you, Vanguard!!", "Let the Resonant Cogs turn once more!!", "Grant me and my allies the strength to vanquish our foes!!")
channel_time = 100
- consumed_components = list(VANGUARD_COGWHEEL = 6, GEIS_CAPACITOR = 3, REPLICANT_ALLOY = 3, HIEROPHANT_ANSIBLE = 3)
+ consumed_components = list(VANGUARD_COGWHEEL = 4, GEIS_CAPACITOR = 2, REPLICANT_ALLOY = 2, HIEROPHANT_ANSIBLE = 2)
usage_tip = "Servants affected by this scripture are only weak to things that outright destroy bodies, such as bombs or the singularity."
tier = SCRIPTURE_REVENANT
primary_component = VANGUARD_COGWHEEL
@@ -69,7 +69,7 @@
/datum/clockwork_scripture/invoke_sevtug/scripture_effects()
new/obj/effect/clockwork/general_marker/sevtug(get_turf(invoker))
hierophant_message("[text2ratvar("Fright: \"I heed your call, idiots. Get going and use this chance while it lasts!")]\"", FALSE, invoker)
- clockwork_generals_invoked["sevtug"] = world.time + CLOCKWORK_GENERAL_COOLDOWN
+ clockwork_generals_invoked["sevtug"] = world.time + GLOBAL_CLOCKWORK_GENERAL_COOLDOWN
playsound(invoker, 'sound/magic/clockwork/invoke_general.ogg', 50, 0)
var/hum = get_sfx('sound/effects/screech.ogg') //like playsound, same sound for everyone affected
var/turf/T = get_turf(invoker)
@@ -131,33 +131,15 @@
/datum/clockwork_scripture/invoke_nezbere/scripture_effects()
new/obj/effect/clockwork/general_marker/nezbere(get_turf(invoker))
hierophant_message("[text2ratvar("Armorer: \"I heed your call, champions. May your artifacts bring ruin upon the heathens that oppose our master!")]\"", FALSE, invoker)
- clockwork_generals_invoked["nezbere"] = world.time + CLOCKWORK_GENERAL_COOLDOWN
+ clockwork_generals_invoked["nezbere"] = world.time + GLOBAL_CLOCKWORK_GENERAL_COOLDOWN
playsound(invoker, 'sound/magic/clockwork/invoke_general.ogg', 50, 0)
- for(var/obj/structure/destructible/clockwork/ocular_warden/W in all_clockwork_objects) //Ocular wardens have increased damage and radius
- W.damage_per_tick = 5
- W.sight_range = 5
- for(var/obj/item/clockwork/clockwork_proselytizer/P in all_clockwork_objects) //Proselytizers no longer require power
- P.charge_rate = 1250
- for(var/obj/structure/destructible/clockwork/powered/M in all_clockwork_objects) //Powered clockwork structures no longer need power
- M.needs_power = FALSE
- if(istype(M, /obj/structure/destructible/clockwork/powered/tinkerers_daemon)) //Daemons produce components twice as quickly
- var/obj/structure/destructible/clockwork/powered/tinkerers_daemon/D = M
- D.production_time = 0
- D.production_cooldown *= 0.5
+ nezbere_invoked++
+ for(var/obj/O in all_clockwork_objects)
+ O.ratvar_act()
spawn(600)
- for(var/obj/structure/destructible/clockwork/ocular_warden/W in all_clockwork_objects)
- if(W.damage_per_tick == 5)
- W.damage_per_tick = initial(W.damage_per_tick)
- if(W.sight_range == 5)
- W.sight_range = initial(W.sight_range)
- for(var/obj/item/clockwork/clockwork_proselytizer/P in all_clockwork_objects)
- if(P.charge_rate == 1250)
- P.charge_rate = initial(P.charge_rate)
- for(var/obj/structure/destructible/clockwork/powered/M in all_clockwork_objects)
- M.needs_power = initial(M.needs_power)
- if(istype(M, /obj/structure/destructible/clockwork/powered/tinkerers_daemon))
- var/obj/structure/destructible/clockwork/powered/tinkerers_daemon/D = M
- D.production_cooldown = initial(D.production_cooldown)
+ nezbere_invoked--
+ for(var/obj/O in all_clockwork_objects)
+ O.ratvar_act()
return TRUE
@@ -169,7 +151,7 @@
will be struck by devastating lightning bolts."
invocations = list("I call upon you, Amperage!!", "Let your energy flow through me!!", "Let your boundless power shatter stars!!")
channel_time = 100
- consumed_components = list(BELLIGERENT_EYE = 3, GEIS_CAPACITOR = 3, REPLICANT_ALLOY = 3, HIEROPHANT_ANSIBLE = 6)
+ consumed_components = list(BELLIGERENT_EYE = 2, GEIS_CAPACITOR = 2, REPLICANT_ALLOY = 2, HIEROPHANT_ANSIBLE = 4)
usage_tip = "Struck targets will also be knocked down for about sixteen seconds."
tier = SCRIPTURE_REVENANT
primary_component = HIEROPHANT_ANSIBLE
diff --git a/code/game/gamemodes/clock_cult/clock_scriptures/scripture_scripts.dm b/code/game/gamemodes/clock_cult/clock_scriptures/scripture_scripts.dm
index 051b24d6340..b6298ca1d5e 100644
--- a/code/game/gamemodes/clock_cult/clock_scriptures/scripture_scripts.dm
+++ b/code/game/gamemodes/clock_cult/clock_scriptures/scripture_scripts.dm
@@ -166,7 +166,7 @@
check_flags = AB_CHECK_RESTRAINED|AB_CHECK_STUNNED|AB_CHECK_CONSCIOUS
buttontooltipstyle = "clockcult"
var/cooldown = 0
- var/base_cooldown = 1800
+ var/base_cooldown = RATVARIAN_SPEAR_DURATION
/datum/action/innate/function_call/IsAvailable()
if(!is_servant_of_ratvar(owner) || cooldown > world.time)
@@ -181,9 +181,7 @@
var/obj/item/clockwork/ratvarian_spear/R = new(get_turf(usr))
owner.put_in_hands(R)
if(!ratvar_awakens)
- R.clockwork_desc = "A powerful spear of Ratvarian making. It's more effective against enemy cultists and silicons, though it won't last for long."
owner << "Your spear begins to break down in this plane of existence. You can't use it for long!"
- R.timerid = addtimer(CALLBACK(R, /obj/item/clockwork/ratvarian_spear.proc/break_spear), base_cooldown, TIMER_STOPPABLE)
cooldown = base_cooldown + world.time
owner.update_action_buttons_icon()
addtimer(CALLBACK(src, .proc/update_actions), base_cooldown)
diff --git a/code/game/gamemodes/clock_cult/clock_structure.dm b/code/game/gamemodes/clock_cult/clock_structure.dm
index 2aa3377b152..90e43623a61 100644
--- a/code/game/gamemodes/clock_cult/clock_structure.dm
+++ b/code/game/gamemodes/clock_cult/clock_structure.dm
@@ -16,6 +16,7 @@
/obj/item/clockwork/alloy_shards/medium = 2, \
/obj/item/clockwork/alloy_shards/small = 3) //Parts left behind when a structure breaks
var/construction_value = 0 //How much value the structure contributes to the overall "power" of the structures on the station
+ var/immune_to_servant_attacks = FALSE //if we ignore attacks from servants of ratvar instead of taking damage
/obj/structure/destructible/clockwork/New()
..()
@@ -58,9 +59,24 @@
return "[t_It] [t_is] at [obj_integrity]/[max_integrity] integrity[heavily_damaged ? "!":"."]"
return ..()
+/obj/structure/destructible/clockwork/attack_hulk(mob/living/carbon/human/user, does_attack_animation = 0)
+ if(is_servant_of_ratvar(user) && immune_to_servant_attacks)
+ return FALSE
+ return ..()
+
/obj/structure/destructible/clockwork/hulk_damage()
return 20
+/obj/structure/destructible/clockwork/attack_generic(mob/user, damage_amount = 0, damage_type = BRUTE, damage_flag = 0, sound_effect = 1)
+ if(is_servant_of_ratvar(user) && immune_to_servant_attacks)
+ return FALSE
+ return ..()
+
+/obj/structure/destructible/clockwork/mech_melee_attack(obj/mecha/M)
+ if(M.occupant && is_servant_of_ratvar(M.occupant) && immune_to_servant_attacks)
+ return FALSE
+ return ..()
+
/obj/structure/destructible/clockwork/proc/get_efficiency_mod(increasing)
if(ratvar_awakens)
if(increasing)
@@ -96,6 +112,11 @@
return 1
return ..()
+/obj/structure/destructible/clockwork/attacked_by(obj/item/I, mob/living/user)
+ if(is_servant_of_ratvar(user) && immune_to_servant_attacks)
+ return FALSE
+ return ..()
+
/obj/structure/destructible/clockwork/proc/update_anchored(mob/user, do_damage)
if(anchored)
icon_state = initial(icon_state)
@@ -154,6 +175,13 @@
SSobj.processing -= src
return ..()
+/obj/structure/destructible/clockwork/powered/ratvar_act()
+ ..()
+ if(nezbere_invoked)
+ needs_power = FALSE
+ else
+ needs_power = initial(needs_power)
+
/obj/structure/destructible/clockwork/powered/process()
var/powered = total_accessable_power()
return powered == PROCESS_KILL ? 25 : powered //make sure we don't accidentally return the arbitrary PROCESS_KILL define
diff --git a/code/game/gamemodes/clock_cult/clock_structures/ark_of_the_clockwork_justicar.dm b/code/game/gamemodes/clock_cult/clock_structures/ark_of_the_clockwork_justicar.dm
index 9ca1606d109..c9cb1352096 100644
--- a/code/game/gamemodes/clock_cult/clock_structures/ark_of_the_clockwork_justicar.dm
+++ b/code/game/gamemodes/clock_cult/clock_structures/ark_of_the_clockwork_justicar.dm
@@ -1,6 +1,6 @@
//The gateway to Reebe, from which Ratvar emerges.
/obj/structure/destructible/clockwork/massive/celestial_gateway
- name = "Gateway to the Celestial Derelict"
+ name = "gateway to the Celestial Derelict"
desc = "A massive, thrumming rip in spacetime."
clockwork_desc = "A portal to the Celestial Derelict. Massive and intimidating, it is the only thing that can both transport Ratvar and withstand the massive amount of energy he emits."
obj_integrity = 500
@@ -12,14 +12,17 @@
invisibility = INVISIBILITY_MAXIMUM
resistance_flags = FIRE_PROOF | ACID_PROOF | INDESTRUCTIBLE
can_be_repaired = FALSE
+ immune_to_servant_attacks = TRUE
var/progress_in_seconds = 0 //Once this reaches GATEWAY_RATVAR_ARRIVAL, it's game over
var/purpose_fulfilled = FALSE
var/first_sound_played = FALSE
var/second_sound_played = FALSE
var/third_sound_played = FALSE
+ var/fourth_sound_played = FALSE
var/ratvar_portal = TRUE //if the gateway actually summons ratvar or just produces a hugeass conversion burst
var/obj/effect/clockwork/overlay/gateway_glow/glow
var/obj/effect/countdown/clockworkgate/countdown
+ var/list/required_components = list(BELLIGERENT_EYE = 7, VANGUARD_COGWHEEL = 7, GEIS_CAPACITOR = 7, REPLICANT_ALLOY = 7, HIEROPHANT_ANSIBLE = 7)
/obj/structure/destructible/clockwork/massive/celestial_gateway/New()
..()
@@ -85,7 +88,7 @@
send_to_playing_players(sound(null, 0, channel = 8))
var/was_stranded = SSshuttle.emergency.mode == SHUTTLE_STRANDED
SSshuttle.clearHostileEnvironment(src)
- if(!was_stranded && !purpose_fulfilled && second_sound_played)
+ if(!was_stranded && !purpose_fulfilled)
priority_announce("Massive energy anomaly no longer on short-range scanners.","Anomaly Alert")
if(glow)
qdel(glow)
@@ -100,7 +103,7 @@
if(!disassembled)
resistance_flags |= INDESTRUCTIBLE
countdown.stop()
- visible_message("The [src] begins to pulse uncontrollably... you might want to run!")
+ visible_message("[src] begins to pulse uncontrollably... you might want to run!")
send_to_playing_players(sound('sound/effects/clockcult_gateway_disrupted.ogg', 0, channel = 8, volume = 50))
make_glow()
glow.icon_state = "clockwork_gateway_disrupted"
@@ -118,6 +121,45 @@
var/damage = max((obj_integrity * 0.70) / severity, 100) //requires multiple bombs to take down
take_damage(damage, BRUTE, "bomb", 0)
+/obj/structure/destructible/clockwork/massive/celestial_gateway/attackby(obj/item/I, mob/living/user, params) //add components directly to the ark
+ if(!is_servant_of_ratvar(user) || !still_needs_components())
+ return ..()
+ if(istype(I, /obj/item/clockwork/component))
+ var/obj/item/clockwork/component/C = I
+ if(required_components[C.component_id])
+ required_components[C.component_id]--
+ user << "You add [C] to [src]."
+ user.drop_item()
+ qdel(C)
+ else
+ user << "[src] has enough [get_component_name(C.component_id)][C.component_id != REPLICANT_ALLOY ? "s":""]."
+ return 1
+ else if(istype(I, /obj/item/clockwork/slab))
+ var/obj/item/clockwork/slab/S = I
+ var/used_components = FALSE
+ var/used_all = TRUE
+ for(var/i in S.stored_components)
+ if(required_components[i])
+ var/to_use = min(S.stored_components[i], required_components[i])
+ required_components[i] -= to_use
+ S.stored_components[i] -= to_use
+ if(to_use)
+ used_components = TRUE
+ if(S.stored_components[i])
+ used_all = FALSE
+ if(used_components)
+ update_slab_info(S)
+ user.visible_message("[user][used_all ? "":" partially"] empties [S] into [src].", \
+ "You offload [used_all ? "all":"some"] of your slab's components into [src].")
+ return 1
+ else
+ return ..()
+
+/obj/structure/destructible/clockwork/massive/celestial_gateway/proc/still_needs_components()
+ for(var/i in required_components)
+ if(required_components[i])
+ return TRUE
+
/obj/structure/destructible/clockwork/massive/celestial_gateway/proc/get_arrival_text(s_on_time)
. = "IMMINENT"
if(!obj_integrity)
@@ -130,14 +172,21 @@
..()
icon_state = initial(icon_state)
if(is_servant_of_ratvar(user) || isobserver(user))
- user << "Seconds until [ratvar_portal ? "Ratvar's arrival":"Proselytization"]: [get_arrival_text(TRUE)]"
- switch(progress_in_seconds)
- if(-INFINITY to GATEWAY_REEBE_FOUND)
- user << "It's still opening."
- if(GATEWAY_REEBE_FOUND to GATEWAY_RATVAR_COMING)
- user << "It's reached the Celestial Derelict and is drawing power from it."
- if(GATEWAY_RATVAR_COMING to INFINITY)
- user << "[ratvar_portal ? "Ratvar is coming through the gateway":"The gateway is glowing with massed power"]!"
+ if(still_needs_components())
+ user << "Components required until activation:"
+ for(var/i in required_components)
+ if(required_components[i])
+ user << "[get_component_name(i)][i != REPLICANT_ALLOY ? "s":""]: \
+ [required_components[i]]"
+ else
+ user << "Seconds until [ratvar_portal ? "Ratvar's arrival":"Proselytization"]: [get_arrival_text(TRUE)]"
+ switch(progress_in_seconds)
+ if(-INFINITY to GATEWAY_REEBE_FOUND)
+ user << "It's still opening."
+ if(GATEWAY_REEBE_FOUND to GATEWAY_RATVAR_COMING)
+ user << "It's reached the Celestial Derelict and is drawing power from it."
+ if(GATEWAY_RATVAR_COMING to INFINITY)
+ user << "[ratvar_portal ? "Ratvar is coming through the gateway":"The gateway is glowing with massed power"]!"
else
switch(progress_in_seconds)
if(-INFINITY to GATEWAY_REEBE_FOUND)
@@ -148,7 +197,7 @@
user << "[ratvar_portal ? "Something is coming through":"It's glowing brightly"]!"
/obj/structure/destructible/clockwork/massive/celestial_gateway/process()
- if(!progress_in_seconds || prob(7))
+ if(!first_sound_played || prob(7))
for(var/M in player_list)
if(M && !isnewplayer(M))
M << "You hear otherworldly sounds from the [dir2text(get_dir(get_turf(M), get_turf(src)))]..."
@@ -168,6 +217,25 @@
var/dist = cheap_hypotenuse(T.x, T.y, x, y)
if(dist < convert_dist)
T.ratvar_act(FALSE, TRUE, 3)
+ if(still_needs_components())
+ if(!first_sound_played)
+ priority_announce("Massive energy anomaly detected on short-range scanners. Attempting to triangulate location...", "Anomaly Alert")
+ send_to_playing_players(sound('sound/effects/clockcult_gateway_charging.ogg', 1, channel = 8, volume = 10))
+ first_sound_played = TRUE
+ make_glow()
+ glow.icon_state = "clockwork_gateway_components"
+ var/used_components = FALSE
+ for(var/i in required_components)
+ if(required_components[i])
+ var/to_use = min(clockwork_component_cache[i], required_components[i])
+ required_components[i] -= to_use
+ clockwork_component_cache[i] -= to_use
+ if(to_use)
+ used_components = TRUE
+ if(used_components)
+ update_slab_info()
+ if(still_needs_components())
+ return
for(var/obj/O in orange(1, src))
if(!O.pulledby && !istype(O, /obj/effect) && O.density)
if(!step_away(O, src, 2) || get_dist(O, src) < 2)
@@ -176,23 +244,23 @@
progress_in_seconds += GATEWAY_SUMMON_RATE
switch(progress_in_seconds)
if(-INFINITY to GATEWAY_REEBE_FOUND)
- if(!first_sound_played)
+ if(!second_sound_played)
send_to_playing_players(sound('sound/effects/clockcult_gateway_charging.ogg', 1, channel = 8, volume = 30))
- first_sound_played = TRUE
+ second_sound_played = TRUE
make_glow()
glow.icon_state = "clockwork_gateway_charging"
if(GATEWAY_REEBE_FOUND to GATEWAY_RATVAR_COMING)
- if(!second_sound_played)
+ if(!third_sound_played)
var/area/gate_area = get_area(src)
- priority_announce("Massive energy anomaly detected on short-range scanners. Location: [gate_area.map_name].", "Anomaly Alert")
+ priority_announce("Location of massive energy anomaly has been triangulated. Location: [gate_area.map_name].", "Anomaly Alert")
send_to_playing_players(sound('sound/effects/clockcult_gateway_active.ogg', 1, channel = 8, volume = 35))
- second_sound_played = TRUE
+ third_sound_played = TRUE
make_glow()
glow.icon_state = "clockwork_gateway_active"
if(GATEWAY_RATVAR_COMING to GATEWAY_RATVAR_ARRIVAL)
- if(!third_sound_played)
+ if(!fourth_sound_played)
send_to_playing_players(sound('sound/effects/clockcult_gateway_closing.ogg', 1, channel = 8, volume = 40))
- third_sound_played = TRUE
+ fourth_sound_played = TRUE
make_glow()
glow.icon_state = "clockwork_gateway_closing"
if(GATEWAY_RATVAR_ARRIVAL to INFINITY)
diff --git a/code/game/gamemodes/clock_cult/clock_structures/geis_binding.dm b/code/game/gamemodes/clock_cult/clock_structures/geis_binding.dm
index 041a99c19a9..e00d15319c4 100644
--- a/code/game/gamemodes/clock_cult/clock_structures/geis_binding.dm
+++ b/code/game/gamemodes/clock_cult/clock_structures/geis_binding.dm
@@ -5,7 +5,8 @@
clockwork_desc = "A binding ring around a target, preventing them from taking action while they're being converted."
max_integrity = 25
obj_integrity = 25
- density = 0
+ density = FALSE
+ immune_to_servant_attacks = TRUE
icon = 'icons/effects/clockwork_effects.dmi'
icon_state = "geisbinding_full"
break_message = null
diff --git a/code/game/gamemodes/clock_cult/clock_structures/ocular_warden.dm b/code/game/gamemodes/clock_cult/clock_structures/ocular_warden.dm
index 79115225b49..fd7be73f917 100644
--- a/code/game/gamemodes/clock_cult/clock_structures/ocular_warden.dm
+++ b/code/game/gamemodes/clock_cult/clock_structures/ocular_warden.dm
@@ -50,6 +50,9 @@
if(ratvar_awakens)
damage_per_tick = 10
sight_range = 6
+ else if(nezbere_invoked)
+ damage_per_tick = 5
+ sight_range = 5
else
damage_per_tick = initial(damage_per_tick)
sight_range = initial(sight_range)
@@ -114,9 +117,20 @@
for(var/obj/item/weapon/storage/book/bible/BI in L.GetAllContents())
if(!(BI.resistance_flags & ON_FIRE))
BI.fire_act()
- else if(!is_servant_of_ratvar(L) && !L.stat && L.mind && !L.restrained() && !(L.buckled && (L.lying || istype(L.buckled, /obj/structure/destructible/clockwork/geis_binding))) && \
- !(L.disabilities & BLIND) && !L.null_rod_check())
- . += L
+ continue
+ if(is_servant_of_ratvar(L) || (L.disabilities & BLIND) || L.null_rod_check())
+ continue
+ if(L.stat || L.restrained() || L.buckled || L.lying || istype(L.buckled, /obj/structure/destructible/clockwork/geis_binding))
+ continue
+ if(ishostile(L))
+ var/mob/living/simple_animal/hostile/H = L
+ if(ismegafauna(H) || (!H.mind && H.AIStatus == AI_OFF))
+ continue
+ if(("ratvar" in H.faction) || ("neutral" in H.faction))
+ continue
+ else if(!L.mind)
+ continue
+ . += L
for(var/N in mechas_list)
var/obj/mecha/M = N
if(get_dist(M, src) <= sight_range && M.occupant && !is_servant_of_ratvar(M.occupant) && (M in view(sight_range, src)))
diff --git a/code/game/gamemodes/clock_cult/clock_structures/taunting_trail.dm b/code/game/gamemodes/clock_cult/clock_structures/taunting_trail.dm
new file mode 100644
index 00000000000..16afbae154d
--- /dev/null
+++ b/code/game/gamemodes/clock_cult/clock_structures/taunting_trail.dm
@@ -0,0 +1,62 @@
+//Used by the Taunting Tirade scripture as a trail.
+/obj/structure/destructible/clockwork/taunting_trail
+ name = "strange smoke"
+ desc = "A cloud of purple smoke."
+ clockwork_desc = "A cloud of purple smoke that confuses and weakens non-Servants that enter it."
+ gender = PLURAL
+ max_integrity = 5
+ obj_integrity = 5
+ density = 1
+ color = list("#AF0AAF", "#AF0AAF", "#AF0AAF", rgb(0,0,0))
+ icon = 'icons/effects/effects.dmi'
+ icon_state = "smoke"
+ break_message = null
+ break_sound = 'sound/magic/Teleport_app.ogg'
+ debris = list()
+ var/timerid
+
+/obj/structure/destructible/clockwork/taunting_trail/New()
+ ..()
+ timerid = QDEL_IN(src, 15)
+ var/obj/structure/destructible/clockwork/taunting_trail/Tt = locate(/obj/structure/destructible/clockwork/taunting_trail) in loc
+ if(Tt && Tt != src)
+ if(!step(src, pick(alldirs)))
+ qdel(Tt)
+ else
+ for(var/obj/structure/destructible/clockwork/taunting_trail/TT in loc)
+ if(TT != src)
+ qdel(TT)
+ setDir(pick(cardinal))
+ transform = matrix()*1.25
+ animate(src, alpha = 100, time = 15)
+
+/obj/structure/destructible/clockwork/taunting_trail/Destroy()
+ deltimer(timerid)
+ return ..()
+
+/obj/structure/destructible/clockwork/taunting_trail/play_attack_sound(damage_amount, damage_type = BRUTE, damage_flag = 0)
+ playsound(src, 'sound/items/Welder.ogg', 50, 1)
+
+/obj/structure/destructible/clockwork/taunting_trail/CanPass(atom/movable/mover, turf/target, height=0)
+ return TRUE
+
+/obj/structure/destructible/clockwork/taunting_trail/Crossed(atom/movable/AM)
+ affect_mob(AM)
+ return ..()
+
+/obj/structure/destructible/clockwork/taunting_trail/Bumped(atom/movable/AM)
+ affect_mob(AM)
+ return ..()
+
+/obj/structure/destructible/clockwork/taunting_trail/Bump(atom/movable/AM)
+ affect_mob(AM)
+ return ..()
+
+/obj/structure/destructible/clockwork/taunting_trail/proc/affect_mob(mob/living/L)
+ if(istype(L) && !is_servant_of_ratvar(L))
+ if(!L.null_rod_check())
+ L.confused = min(L.confused + 15, 50)
+ L.dizziness = min(L.dizziness + 15, 50)
+ if(L.confused >= 25)
+ L.Weaken(Floor(L.confused * 0.04))
+ take_damage(max_integrity)
diff --git a/code/game/gamemodes/clock_cult/clock_structures/tinkerers_cache.dm b/code/game/gamemodes/clock_cult/clock_structures/tinkerers_cache.dm
index df12be38db8..a4534b8fb3c 100644
--- a/code/game/gamemodes/clock_cult/clock_structures/tinkerers_cache.dm
+++ b/code/game/gamemodes/clock_cult/clock_structures/tinkerers_cache.dm
@@ -81,7 +81,8 @@
if(is_servant_of_ratvar(user))
if(linkedwall)
if(wall_generation_cooldown > world.time)
- user << "[src] will produce a component in [(world.time - wall_generation_cooldown) * 0.1] seconds."
+ var/temp_time = (wall_generation_cooldown - world.time) * 0.1
+ user << "[src] will produce a component in [temp_time] second[temp_time == 1 ? "":"s"]."
else
user << "[src] is about to produce a component!"
else if(anchored)
diff --git a/code/game/gamemodes/clock_cult/clock_structures/tinkerers_daemon.dm b/code/game/gamemodes/clock_cult/clock_structures/tinkerers_daemon.dm
index 2f42b1f0a35..97e78764557 100644
--- a/code/game/gamemodes/clock_cult/clock_structures/tinkerers_daemon.dm
+++ b/code/game/gamemodes/clock_cult/clock_structures/tinkerers_daemon.dm
@@ -28,6 +28,16 @@
clockwork_daemons--
return ..()
+/obj/structure/destructible/clockwork/powered/tinkerers_daemon/ratvar_act()
+ ..()
+ if(nezbere_invoked)
+ production_time = 0
+ production_cooldown = initial(production_cooldown) * 0.5
+ if(!active)
+ toggle(0)
+ else
+ production_cooldown = initial(production_cooldown)
+
/obj/structure/destructible/clockwork/powered/tinkerers_daemon/examine(mob/user)
..()
if(is_servant_of_ratvar(user) || isobserver(user))
diff --git a/code/game/gamemodes/cult/cult_comms.dm b/code/game/gamemodes/cult/cult_comms.dm
index 13f1c4acf2a..2f5cd44f5b9 100644
--- a/code/game/gamemodes/cult/cult_comms.dm
+++ b/code/game/gamemodes/cult/cult_comms.dm
@@ -33,7 +33,7 @@
user.say(html_decode(message))
else
user.whisper(html_decode(message))
- var/my_message = "[(ishuman(user) ? "Acolyte" : "Construct")] [user]: [message]"
+ var/my_message = "[(ishuman(user) ? "Acolyte" : "Construct")] [findtextEx(user.name, user.real_name) ? user.name : "[user.real_name] (as [user.name])"]: [message]"
for(var/mob/M in mob_list)
if(iscultist(M))
M << my_message
diff --git a/code/game/gamemodes/cult/cult_structures.dm b/code/game/gamemodes/cult/cult_structures.dm
index d8e6a7860c4..822d4e92fad 100644
--- a/code/game/gamemodes/cult/cult_structures.dm
+++ b/code/game/gamemodes/cult/cult_structures.dm
@@ -164,6 +164,8 @@ var/list/blacklisted_pylon_turfs = typecacheof(list(
var/mob/living/simple_animal/M = L
if(M.health < M.maxHealth)
M.adjustHealth(-1)
+ if(ishuman(L) && L.blood_volume < BLOOD_VOLUME_NORMAL)
+ L.blood_volume += 1.0
CHECK_TICK
if(last_corrupt <= world.time)
var/list/validturfs = list()
diff --git a/code/game/gamemodes/cult/ritual.dm b/code/game/gamemodes/cult/ritual.dm
index 33cd687496d..69a252a48bf 100644
--- a/code/game/gamemodes/cult/ritual.dm
+++ b/code/game/gamemodes/cult/ritual.dm
@@ -13,6 +13,14 @@ This file contains the arcane tome files.
throw_range = 5
w_class = WEIGHT_CLASS_SMALL
+/obj/item/weapon/tome/New()
+ ..()
+ if(!LAZYLEN(rune_types))
+ rune_types = list()
+ for(var/i_can_do_loops_now_thanks_remie in non_revealed_runes)
+ var/obj/effect/rune/R = i_can_do_loops_now_thanks_remie
+ rune_types[initial(R.cultist_name)] = R //Uses the cultist name for displaying purposes
+
/obj/item/weapon/tome/examine(mob/user)
..()
if(iscultist(user) || isobserver(user))
@@ -28,7 +36,7 @@ This file contains the arcane tome files.
return ..()
if(iscultist(M))
if(M.reagents && M.reagents.has_reagent("holywater")) //allows cultists to be rescued from the clutches of ordained religion
- user << "You remove the taint from [M]."
+ user << "You remove the taint from [M]." // fucking ow
var/holy2unholy = M.reagents.get_reagent_amount("holywater")
M.reagents.del_reagent("holywater")
M.reagents.add_reagent("unholywater",holy2unholy)
@@ -108,7 +116,7 @@ This file contains the arcane tome files.
text += "Talisman of Teleportation
The talisman form of the Teleport rune will transport the invoker to a selected Teleport rune once.
"
- text += "Talisman of Construction
This talisman is the main way of creating construct shells. To use it, one must strike 25 sheets of metal with the talisman. The sheets will then be twisted into a construct shell, ready to recieve a soul to occupy it.
"
+ text += "Talisman of Construction
This talisman is the main way of creating construct shells. To use it, one must strike 25 sheets of metal with the talisman. The sheets will then be twisted into a construct shell, ready to receive a soul to occupy it.
"
text += "Talisman of Tome Summoning
This talisman will produce a single tome at your feet.
"
@@ -167,33 +175,22 @@ This file contains the arcane tome files.
var/chosen_keyword
var/obj/effect/rune/rune_to_scribe
var/entered_rune_name
- var/list/possible_runes = list()
var/list/shields = list()
var/area/A = get_area(src)
if(!check_rune_turf(Turf, user))
return
- for(var/T in subtypesof(/obj/effect/rune) - /obj/effect/rune/malformed)
- var/obj/effect/rune/R = T
- if(initial(R.cultist_name))
- possible_runes.Add(initial(R.cultist_name)) //This is to allow the menu to let cultists select runes by name rather than by object path. I don't know a better way to do this
- if(!possible_runes.len)
- return
- entered_rune_name = input(user, "Choose a rite to scribe.", "Sigils of Power") as null|anything in possible_runes
+ entered_rune_name = input(user, "Choose a rite to scribe.", "Sigils of Power") as null|anything in rune_types
if(!src || QDELETED(src) || !Adjacent(user) || user.incapacitated() || !check_rune_turf(Turf, user))
return
- for(var/T in typesof(/obj/effect/rune))
- var/obj/effect/rune/R = T
- if(initial(R.cultist_name) == entered_rune_name)
- rune_to_scribe = R
- if(initial(R.req_keyword))
- var/the_keyword = stripped_input(usr, "Please enter a keyword for the rune.", "Enter Keyword", "")
- if(!the_keyword)
- return
- chosen_keyword = the_keyword
- break
+ rune_to_scribe = rune_types[entered_rune_name]
if(!rune_to_scribe)
return
+ if(initial(rune_to_scribe.req_keyword))
+ chosen_keyword = stripped_input(user, "Enter a keyword for the new rune.", "Words of Power")
+ if(!chosen_keyword)
+ scribe_rune(user) //Go back a menu!
+ return
Turf = get_turf(user) //we may have moved. adjust as needed...
A = get_area(src)
if(!src || QDELETED(src) || !Adjacent(user) || user.incapacitated() || !check_rune_turf(Turf, user))
diff --git a/code/game/gamemodes/cult/runes.dm b/code/game/gamemodes/cult/runes.dm
index d03f2759a04..4c064873b8f 100644
--- a/code/game/gamemodes/cult/runes.dm
+++ b/code/game/gamemodes/cult/runes.dm
@@ -1,5 +1,6 @@
/var/list/sacrificed = list() //a mixed list of minds and mobs
var/list/non_revealed_runes = (subtypesof(/obj/effect/rune) - /obj/effect/rune/malformed)
+var/global/list/rune_types //Every rune that can be drawn by tomes
/*
diff --git a/code/game/gamemodes/devil/devilinfo.dm b/code/game/gamemodes/devil/devilinfo.dm
index 24c9d405886..68fbe4d7907 100644
--- a/code/game/gamemodes/devil/devilinfo.dm
+++ b/code/game/gamemodes/devil/devilinfo.dm
@@ -59,7 +59,7 @@ var/global/list/lawlorify = list (
BAN_CHAPEL = "You must never attempt to enter the chapel.",
BAN_HURTPRIEST = "You must never attack a priest.",
BAN_AVOIDWATER = "You must never willingly touch a wet surface.",
- BAN_STRIKEUNCONCIOUS = "You must never strike an unconcious person.",
+ BAN_STRIKEUNCONCIOUS = "You must never strike an unconscious person.",
BAN_HURTLIZARD = "You must never harm a lizardman outside of self defense.",
BAN_HURTANIMAL = "You must never harm a non-sentient creature or robot outside of self defense.",
BANE_SILVER = "Silver, in all of its forms shall be your downfall.",
diff --git a/code/game/gamemodes/devil/true_devil/inventory.dm b/code/game/gamemodes/devil/true_devil/inventory.dm
index a4af9484973..c474eaf1161 100644
--- a/code/game/gamemodes/devil/true_devil/inventory.dm
+++ b/code/game/gamemodes/devil/true_devil/inventory.dm
@@ -47,8 +47,9 @@
apply_overlay(DEVIL_HANDS_LAYER)
/mob/living/carbon/true_devil/remove_overlay(cache_index)
- if(devil_overlays[cache_index])
- overlays -= devil_overlays[cache_index]
+ var/I = devil_overlays[cache_index]
+ if(I)
+ cut_overlay(I)
devil_overlays[cache_index] = null
diff --git a/code/game/gamemodes/game_mode.dm b/code/game/gamemodes/game_mode.dm
index 6433734c4b9..bbe8709c560 100644
--- a/code/game/gamemodes/game_mode.dm
+++ b/code/game/gamemodes/game_mode.dm
@@ -258,7 +258,6 @@
if(escaped_total > 0)
feedback_set("escaped_total",escaped_total)
send2irc("Server", "Round just ended.")
-// send2maindiscord("Server", "Round just ended.")
return 0
diff --git a/code/game/gamemodes/miniantags/abduction/abduction.dm b/code/game/gamemodes/miniantags/abduction/abduction.dm
index 42c13be5d5f..c54eaf8e306 100644
--- a/code/game/gamemodes/miniantags/abduction/abduction.dm
+++ b/code/game/gamemodes/miniantags/abduction/abduction.dm
@@ -354,9 +354,23 @@
explanation_text = "Steal all"
/datum/objective/abductee/steal/New()
- var/target = pick(list("pets","lights","monkeys","fruits","shoes","bars of soap"))
+ var/target = pick(list("pets","lights","monkeys","fruits","shoes","bars of soap", "weapons", "computers", "organs"))
explanation_text+=" [target]."
+/datum/objective/abductee/paint
+ explanation_text = "The station is hideous. You must color it all"
+
+/datum/objective/abductee/paint/New()
+ var/color = pick(list("red", "blue", "green", "yellow", "orange", "purple", "black", "in rainbows", "in blood"))
+ explanation_text+= " [color]!"
+
+/datum/objective/abductee/speech
+ explanation_text = "Your brain is broken... you can only communicate in"
+
+/datum/objective/abductee/speech/New()
+ var/style = pick(list("pantomime", "rhyme", "haiku", "extended metaphors", "riddles", "extremely literal terms", "sound effects", "military jargon"))
+ explanation_text+= " [style]."
+
/datum/objective/abductee/capture
explanation_text = "Capture"
@@ -396,16 +410,16 @@
explanation_text = "Start a collection of corpses. Don't kill people to get these corpses."
/datum/objective/abductee/floors
- explanation_text = "Replace all the floor tiles with carpeting, wooden boards, or grass."
+ explanation_text = "Replace all the floor tiles with wood, carpeting, grass or bling."
/datum/objective/abductee/POWERUNLIMITED
explanation_text = "Flood the station's powernet with as much electricity as you can."
/datum/objective/abductee/pristine
- explanation_text = "Ensure the station is in absolutely pristine condition."
+ explanation_text = "The CEO of Nanotrasen is coming! Ensure the station is in absolutely pristine condition."
-/datum/objective/abductee/window
- explanation_text = "Replace all normal windows with reinforced windows."
+/datum/objective/abductee/nowalls
+ explanation_text = "The crew must get to know one another better. Break down the walls inside the station!"
/datum/objective/abductee/nations
explanation_text = "Ensure your department prospers over all else."
@@ -413,17 +427,11 @@
/datum/objective/abductee/abductception
explanation_text = "You have been changed forever. Find the ones that did this to you and give them a taste of their own medicine."
-/datum/objective/abductee/ghosts
- explanation_text = "Conduct a seance with the spirits of the afterlife."
-
/datum/objective/abductee/summon
- explanation_text = "Conduct a ritual to summon an elder god."
+ explanation_text = "The elder gods hunger. Gather a cult and conduct a ritual to summon one."
/datum/objective/abductee/machine
- explanation_text = "You are secretly an android. Interface with as many machines as you can to boost your own power."
-
-/datum/objective/abductee/prevent
- explanation_text = "You have been enlightened. This knowledge must not escape. Ensure nobody else can become enlightened."
+ explanation_text = "You are secretly an android. Interface with as many machines as you can to boost your own power so the AI may acknowledge you at last."
/datum/objective/abductee/calling
explanation_text = "Call forth a spirit from the other side."
@@ -431,7 +439,7 @@
/datum/objective/abductee/calling/New()
var/mob/dead/D = pick(dead_mob_list)
if(D)
- explanation_text = "You know that [D] has perished. Call them from the spirit realm."
+ explanation_text = "You know that [D] has perished. Hold a seance to call them from the spirit realm."
/datum/objective/abductee/social_experiment
explanation_text = "This is a secret social experiment conducted by Nanotrasen. Convince the crew that this is the truth."
@@ -443,7 +451,7 @@
explanation_text = "Nanotrasen is abusing the animals! Save as many as you can!"
/datum/objective/abductee/defect
- explanation_text = "Defect from your employer."
+ explanation_text = "Fuck the system! Defect from the station and start an independent colony in space, Lavaland or the derelict. Recruit crewmates if you can."
/datum/objective/abductee/promote
explanation_text = "Climb the corporate ladder all the way to the top!"
@@ -458,17 +466,31 @@
explanation_text = "You are pregnant and soon due. Find a safe place to deliver your baby."
/datum/objective/abductee/engine
- explanation_text = "Go have a good conversation with the Singularity/Tesla/Supermatter crystal. Bonus points if it responds."
-
-/datum/objective/abductee/teamredisbetterthangreen
- explanation_text = "Tell the AI (or a borg/pAI/drone if there is no AI) some corny technology jokes until it cries for help."
-
-/datum/objective/abductee/time
- explanation_text = "Go bug a bronze worshipper to give you a clock."
-
-/datum/objective/abductee/licky
- explanation_text = "You must lick anything that you find interesting."
-
+ explanation_text = "Go have a good conversation with the singularity/tesla/supermatter crystal. Bonus points if it responds."
+
/datum/objective/abductee/music
- explanation_text = "Start playing music, you're the best musician ever. If anyone hates it, beat them on the head with your instrument!"
-
+ explanation_text = "You burn with passion for music. Share your vision. If anyone hates it, beat them on the head with your instrument!"
+
+/datum/objective/abductee/clown
+ explanation_text = "The clown is not funny. You can do better! Steal his audience and make the crew laugh!"
+
+/datum/objective/abductee/party
+ explanation_text = "You're throwing a huge rager. Make it as awesome as possible so the whole crew comes... OR ELSE!"
+
+/datum/objective/abductee/pets
+ explanation_text = "All the pets around here suck. You need to make them cooler. Replace them with exotic beasts!"
+
+/datum/objective/abductee/conspiracy
+ explanation_text = "The leaders of this station are hiding a grand, evil conspiracy. Only you can learn what it is, and expose it to the people!"
+
+/datum/objective/abductee/stalker
+ explanation_text = "The Syndicate has hired you to compile dossiers on all important members of the crew. Be sure they don't know you're doing it."
+
+/datum/objective/abductee/narrator
+ explanation_text = "You're the narrator of this tale. Follow around the protagonists to tell their story."
+
+/datum/objective/abductee/lurve
+ explanation_text = "You are doomed to feel woefully incomplete forever... until you find your true love on this station. They're waiting for you!"
+
+/datum/objective/abductee/sixthsense
+ explanation_text = "You died back there and went to heaven... or is it hell? No one here seems to know they're dead. Convince them, and maybe you can escape this limbo."
\ No newline at end of file
diff --git a/code/game/gamemodes/miniantags/abduction/abduction_gear.dm b/code/game/gamemodes/miniantags/abduction/abduction_gear.dm
index b7b05526a13..e45c459448c 100644
--- a/code/game/gamemodes/miniantags/abduction/abduction_gear.dm
+++ b/code/game/gamemodes/miniantags/abduction/abduction_gear.dm
@@ -56,7 +56,7 @@
M.name_override = disguise.name
M.icon = disguise.icon
M.icon_state = disguise.icon_state
- M.overlays = disguise.overlays
+ M.copy_overlays(disguise, TRUE)
M.update_inv_hands()
/obj/item/clothing/suit/armor/abductor/vest/proc/DeactivateStealth()
@@ -269,18 +269,20 @@
1.Acquire fresh specimen.
- 2.Put the specimen on operating table
- 3.Apply surgical drapes preparing for dissection
- 4.Apply scalpel to specimen torso
- 5.Retract skin from specimen's torso
- 6.Apply scalpel to specimen's torso
- 7.Search through the specimen's torso with your hands to remove any organs
- 8.Insert replacement gland (Retrieve one from gland storage)
- 9.Consider dressing the specimen back to not disturb the habitat
- 10.Put the specimen in the experiment machinery
- 11.Choose one of the machine options and follow displayed instructions
+ 2.Put the specimen on operating table.
+ 3.Apply surgical drapes, preparing for experimental dissection.
+ 4.Apply scalpel to specimen's torso.
+ 5.Clamp bleeders on specimen's torso with a hemostat.
+ 6.Retract skin of specimen's torso with a retractor.
+ 7.Apply scalpel again to specimen's torso.
+ 8.Search through the specimen's torso with your hands to remove any superfluous organs.
+ 9.Insert replacement gland (Retrieve one from gland storage).
+ 10.Consider dressing the specimen back to not disturb the habitat.
+ 11.Put the specimen in the experiment machinery.
+ 12.Choose one of the machine options. The target will be analyzed and teleported to the selected drop-off point.
+ 13.You will receive one supply credit, and the subject will be counted towards your quota.
-Congratulations! You are now trained for xenobiology research!"}
+Congratulations! You are now trained for invasive xenobiology research!"}
/obj/item/weapon/paper/abductor/update_icon()
return
@@ -435,7 +437,7 @@ Congratulations! You are now trained for xenobiology research!"}
species = "[H.dna.species.name]"
if(L.mind && L.mind.changeling)
species = "Changeling lifeform"
- var/obj/item/organ/gland/temp = locate() in H.internal_organs
+ var/obj/item/organ/heart/gland/temp = locate() in H.internal_organs
if(temp)
helptext = "Experimental gland detected!"
else
@@ -531,15 +533,6 @@ Congratulations! You are now trained for xenobiology research!"}
// Operating Table / Beds / Lockers
-/obj/structure/table/optable/abductor
- icon = 'icons/obj/abductor.dmi'
- icon_state = "bed"
- can_buckle = 1
- buckle_lying = 1
- flags = NODECONSTRUCT
- resistance_flags = INDESTRUCTIBLE | LAVA_PROOF | FIRE_PROOF | ACID_PROOF
-
-
/obj/structure/bed/abductor
name = "resting contraption"
desc = "This looks similar to contraptions from earth. Could aliens be stealing our technology?"
@@ -576,6 +569,17 @@ Congratulations! You are now trained for xenobiology research!"}
new /obj/structure/table/abductor(src.loc)
qdel(src)
return
+ if(istype(I, /obj/item/stack/sheet/mineral/silver))
+ var/obj/item/stack/sheet/P = I
+ if(P.get_amount() < 1)
+ user << "You need one sheet of silver to do \
+ this!"
+ return
+ user << "You start adding [P] to [src]..."
+ if(do_after(user, 50, target = src))
+ P.use(1)
+ new /obj/structure/table/optable/abductor(src.loc)
+ qdel(src)
/obj/structure/table/abductor
name = "alien table"
@@ -589,6 +593,38 @@ Congratulations! You are now trained for xenobiology research!"}
canSmoothWith = null
frame = /obj/structure/table_frame/abductor
+/obj/structure/table/optable/abductor
+ name = "alien operating table"
+ desc = "Used for alien medical procedures. The surface is covered in tiny spines."
+ frame = /obj/structure/table_frame/abductor
+ buildstack = /obj/item/stack/sheet/mineral/silver
+ framestack = /obj/item/stack/sheet/mineral/abductor
+ buildstackamount = 1
+ framestackamount = 1
+ icon = 'icons/obj/abductor.dmi'
+ icon_state = "bed"
+ can_buckle = 1
+ buckle_lying = 1
+
+ var/static/list/injected_reagents = list("corazone")
+
+/obj/structure/table/optable/abductor/Crossed(atom/movable/AM)
+ . = ..()
+ if(iscarbon(AM))
+ START_PROCESSING(SSobj, src)
+ AM << "You feel a series of tiny pricks!"
+
+/obj/structure/table/optable/abductor/process()
+ . = PROCESS_KILL
+ for(var/mob/living/carbon/C in get_turf(src))
+ . = TRUE
+ for(var/chemical in injected_reagents)
+ if(C.reagents.get_reagent_amount(chemical) < 1)
+ C.reagents.add_reagent(chemical, 1)
+
+/obj/structure/table/optable/abductor/Destroy()
+ STOP_PROCESSING(SSobj, src)
+ . = ..()
/obj/structure/closet/abductor
name = "alien locker"
diff --git a/code/game/gamemodes/miniantags/abduction/abduction_surgery.dm b/code/game/gamemodes/miniantags/abduction/abduction_surgery.dm
index def0cd77e2f..e888e2884c5 100644
--- a/code/game/gamemodes/miniantags/abduction/abduction_surgery.dm
+++ b/code/game/gamemodes/miniantags/abduction/abduction_surgery.dm
@@ -33,15 +33,15 @@
if(IC)
user.visible_message("[user] pulls [IC] out of [target]'s [target_zone]!", "You pull [IC] out of [target]'s [target_zone].")
user.put_in_hands(IC)
- IC.Remove(target, special = 1)
+ IC.Remove(target)
return 1
else
user << "You don't find anything in [target]'s [target_zone]!"
- return 0
+ return 1
/datum/surgery_step/gland_insert
name = "insert gland"
- implements = list(/obj/item/organ/gland = 100)
+ implements = list(/obj/item/organ/heart/gland = 100)
time = 32
/datum/surgery_step/gland_insert/preop(mob/user, mob/living/carbon/target, target_zone, obj/item/tool, datum/surgery/surgery)
@@ -50,6 +50,6 @@
/datum/surgery_step/gland_insert/success(mob/user, mob/living/carbon/target, target_zone, obj/item/tool, datum/surgery/surgery)
user.visible_message("[user] inserts [tool] into [target].", "You insert [tool] into [target].")
user.drop_item()
- var/obj/item/organ/gland/gland = tool
+ var/obj/item/organ/heart/gland/gland = tool
gland.Insert(target, 2)
- return 1
\ No newline at end of file
+ return 1
diff --git a/code/game/gamemodes/miniantags/abduction/gland.dm b/code/game/gamemodes/miniantags/abduction/gland.dm
index ead066e8ccd..925f071f465 100644
--- a/code/game/gamemodes/miniantags/abduction/gland.dm
+++ b/code/game/gamemodes/miniantags/abduction/gland.dm
@@ -1,12 +1,11 @@
-/obj/item/organ/gland
+/obj/item/organ/heart/gland
name = "fleshy mass"
desc = "A nausea-inducing hunk of twisting flesh and metal."
icon = 'icons/obj/abductor.dmi'
- zone = "chest"
- slot = "gland"
icon_state = "gland"
status = ORGAN_ROBOTIC
origin_tech = "materials=4;biotech=7;abductor=3"
+ beating = TRUE
var/cooldown_low = 300
var/cooldown_high = 300
var/next_activation = 0
@@ -14,30 +13,33 @@
var/human_only = 0
var/active = 0
-/obj/item/organ/gland/proc/ownerCheck()
+/obj/item/organ/heart/gland/proc/ownerCheck()
if(ishuman(owner))
return 1
if(!human_only && iscarbon(owner))
return 1
return 0
-/obj/item/organ/gland/proc/Start()
+/obj/item/organ/heart/gland/proc/Start()
active = 1
next_activation = world.time + rand(cooldown_low,cooldown_high)
-/obj/item/organ/gland/Remove(var/mob/living/carbon/M, special = 0)
+/obj/item/organ/heart/gland/Remove(var/mob/living/carbon/M, special = 0)
active = 0
if(initial(uses) == 1)
uses = initial(uses)
..()
-/obj/item/organ/gland/Insert(var/mob/living/carbon/M, special = 0)
+/obj/item/organ/heart/gland/Insert(var/mob/living/carbon/M, special = 0)
..()
if(special != 2 && uses) // Special 2 means abductor surgery
Start()
-/obj/item/organ/gland/on_life()
+/obj/item/organ/heart/gland/on_life()
+ if(!beating)
+ // alien glands are immune to stopping.
+ beating = TRUE
if(!active)
return
if(!ownerCheck())
@@ -50,28 +52,28 @@
if(!uses)
active = 0
-/obj/item/organ/gland/proc/activate()
+/obj/item/organ/heart/gland/proc/activate()
return
-/obj/item/organ/gland/heals
+/obj/item/organ/heart/gland/heals
cooldown_low = 200
cooldown_high = 400
uses = -1
icon_state = "health"
-/obj/item/organ/gland/heals/activate()
+/obj/item/organ/heart/gland/heals/activate()
owner << "You feel curiously revitalized."
owner.adjustBruteLoss(-20)
owner.adjustOxyLoss(-20)
owner.adjustFireLoss(-20)
-/obj/item/organ/gland/slime
+/obj/item/organ/heart/gland/slime
cooldown_low = 600
cooldown_high = 1200
uses = -1
icon_state = "slime"
-/obj/item/organ/gland/slime/activate()
+/obj/item/organ/heart/gland/slime/activate()
owner << "You feel nauseous!"
owner.vomit(20)
@@ -80,14 +82,14 @@
Slime.Friends = list(owner)
Slime.Leader = owner
-/obj/item/organ/gland/mindshock
+/obj/item/organ/heart/gland/mindshock
origin_tech = "materials=4;biotech=4;magnets=6;abductor=3"
cooldown_low = 300
cooldown_high = 300
uses = -1
icon_state = "mindshock"
-/obj/item/organ/gland/mindshock/activate()
+/obj/item/organ/heart/gland/mindshock/activate()
owner << "You get a headache."
var/turf/T = get_turf(owner)
@@ -97,38 +99,37 @@
H << "You hear a buzz in your head."
H.confused += 20
-/obj/item/organ/gland/pop
+/obj/item/organ/heart/gland/pop
cooldown_low = 900
cooldown_high = 1800
uses = -1
human_only = 1
icon_state = "species"
-/obj/item/organ/gland/pop/activate()
+/obj/item/organ/heart/gland/pop/activate()
owner << "You feel unlike yourself."
var/species = pick(list(/datum/species/lizard,/datum/species/jelly/slime,/datum/species/pod,/datum/species/fly,/datum/species/jelly))
owner.set_species(species)
-/obj/item/organ/gland/ventcrawling
+/obj/item/organ/heart/gland/ventcrawling
origin_tech = "materials=4;biotech=5;bluespace=4;abductor=3"
cooldown_low = 1800
cooldown_high = 2400
uses = 1
icon_state = "vent"
-/obj/item/organ/gland/ventcrawling/activate()
+/obj/item/organ/heart/gland/ventcrawling/activate()
owner << "You feel very stretchy."
owner.ventcrawler = VENTCRAWLER_ALWAYS
- return
-/obj/item/organ/gland/viral
+/obj/item/organ/heart/gland/viral
cooldown_low = 1800
cooldown_high = 2400
uses = 1
icon_state = "viral"
-/obj/item/organ/gland/viral/activate()
+/obj/item/organ/heart/gland/viral/activate()
owner << "You feel sick."
var/virus_type = pick(/datum/disease/beesease, /datum/disease/brainrot, /datum/disease/magnitis)
var/datum/disease/D = new virus_type()
@@ -139,48 +140,47 @@
owner.med_hud_set_status()
-/obj/item/organ/gland/emp //TODO : Replace with something more interesting
+/obj/item/organ/heart/gland/emp //TODO : Replace with something more interesting
origin_tech = "materials=4;biotech=4;magnets=6;abductor=3"
cooldown_low = 900
cooldown_high = 1600
uses = 10
icon_state = "emp"
-/obj/item/organ/gland/emp/activate()
+/obj/item/organ/heart/gland/emp/activate()
owner << "You feel a spike of pain in your head."
empulse(get_turf(owner), 2, 5, 1)
-/obj/item/organ/gland/spiderman
+/obj/item/organ/heart/gland/spiderman
cooldown_low = 450
cooldown_high = 900
uses = 10
icon_state = "spider"
-/obj/item/organ/gland/spiderman/activate()
+/obj/item/organ/heart/gland/spiderman/activate()
owner << "You feel something crawling in your skin."
owner.faction |= "spiders"
new /obj/structure/spider/spiderling(owner.loc)
-/obj/item/organ/gland/egg
+/obj/item/organ/heart/gland/egg
cooldown_low = 300
cooldown_high = 400
uses = -1
icon_state = "egg"
-/obj/item/organ/gland/egg/activate()
+/obj/item/organ/heart/gland/egg/activate()
owner << "You lay an egg!"
var/obj/item/weapon/reagent_containers/food/snacks/egg/egg = new(owner.loc)
egg.reagents.add_reagent("sacid",20)
egg.desc += " It smells bad."
-/obj/item/organ/gland/bloody
+/obj/item/organ/heart/gland/bloody
cooldown_low = 200
cooldown_high = 400
uses = -1
-/obj/item/organ/gland/bloody/activate()
- owner.adjustBruteLoss(15)
-
+/obj/item/organ/heart/gland/bloody/activate()
+ owner.blood_volume -= 20
owner.visible_message("[owner]'s skin erupts with blood!",\
"Blood pours from your skin!")
@@ -189,21 +189,22 @@
for(var/mob/living/carbon/human/H in oview(3,owner)) //Blood decals for simple animals would be neat. aka Carp with blood on it.
H.add_mob_blood(owner)
-/obj/item/organ/gland/bodysnatch
+
+/obj/item/organ/heart/gland/bodysnatch
cooldown_low = 600
cooldown_high = 600
human_only = 1
uses = 1
-/obj/item/organ/gland/bodysnatch/activate()
+/obj/item/organ/heart/gland/bodysnatch/activate()
owner << "You feel something moving around inside you..."
//spawn cocoon with clone greytide snpc inside
if(ishuman(owner))
var/obj/structure/spider/cocoon/abductor/C = new (get_turf(owner))
C.Copy(owner)
C.Start()
- owner.gib()
- return
+ owner.adjustBruteLoss(40)
+ owner.add_splatter_floor()
/obj/structure/spider/cocoon/abductor
name = "slimy cocoon"
@@ -218,16 +219,6 @@
var/mob/living/carbon/human/interactive/greytide/clone = new(src)
clone.hardset_dna(H.dna.uni_identity,H.dna.struc_enzymes,H.real_name, H.dna.blood_type, H.dna.species.type, H.dna.features)
- //There's no define for this / get all items ?
- var/list/slots = list(slot_back,slot_w_uniform,slot_wear_suit,\
- slot_wear_mask,slot_head,slot_shoes,slot_gloves,slot_ears,\
- slot_glasses,slot_belt,slot_s_store,slot_l_store,slot_r_store,slot_wear_id)
-
- for(var/slot in slots)
- var/obj/item/I = H.get_item_by_slot(slot)
- if(I)
- clone.equip_to_slot_if_possible(I,slot)
-
/obj/structure/spider/cocoon/abductor/proc/Start()
hatch_time = world.time + 600
START_PROCESSING(SSobj, src)
@@ -240,13 +231,14 @@
M.loc = src.loc
qdel(src)
-/obj/item/organ/gland/plasma
+
+/obj/item/organ/heart/gland/plasma
cooldown_low = 1200
cooldown_high = 1800
origin_tech = "materials=4;biotech=4;plasmatech=6;abductor=3"
uses = -1
-/obj/item/organ/gland/plasma/activate()
+/obj/item/organ/heart/gland/plasma/activate()
owner << "You feel bloated."
sleep(150)
if(!owner) return
@@ -258,4 +250,3 @@
if(istype(T))
T.atmos_spawn_air("plasma=50;TEMP=[T20C]")
owner.vomit()
- return
diff --git a/code/game/gamemodes/miniantags/abduction/machinery/console.dm b/code/game/gamemodes/miniantags/abduction/machinery/console.dm
index e7d830e8926..c4ee16d36fe 100644
--- a/code/game/gamemodes/miniantags/abduction/machinery/console.dm
+++ b/code/game/gamemodes/miniantags/abduction/machinery/console.dm
@@ -176,7 +176,7 @@
entry.name = target.name
entry.icon = target.icon
entry.icon_state = target.icon_state
- entry.overlays = target.get_overlays_copy(list(HANDS_LAYER))
+ entry.overlays = target.get_overlays_copy(list(HANDS_LAYER)) //ugh
for(var/i=1,i<=disguises.len,i++)
var/datum/icon_snapshot/temp = disguises[i]
if(temp.name == entry.name)
diff --git a/code/game/gamemodes/miniantags/abduction/machinery/dispenser.dm b/code/game/gamemodes/miniantags/abduction/machinery/dispenser.dm
index f4c07f98343..5894c4d98b5 100644
--- a/code/game/gamemodes/miniantags/abduction/machinery/dispenser.dm
+++ b/code/game/gamemodes/miniantags/abduction/machinery/dispenser.dm
@@ -15,7 +15,7 @@
/obj/machinery/abductor/gland_dispenser/New()
..()
- gland_types = subtypesof(/obj/item/organ/gland)
+ gland_types = subtypesof(/obj/item/organ/heart/gland)
gland_types = shuffle(gland_types)
gland_colors = new/list(gland_types.len)
amounts = new/list(gland_types.len)
@@ -60,7 +60,7 @@
return
/obj/machinery/abductor/gland_dispenser/attackby(obj/item/weapon/W, mob/user, params)
- if(istype(W, /obj/item/organ/gland))
+ if(istype(W, /obj/item/organ/heart/gland))
if(!user.drop_item())
return
W.loc = src
diff --git a/code/game/gamemodes/miniantags/abduction/machinery/experiment.dm b/code/game/gamemodes/miniantags/abduction/machinery/experiment.dm
index 265838d15a3..c82a72631ec 100644
--- a/code/game/gamemodes/miniantags/abduction/machinery/experiment.dm
+++ b/code/game/gamemodes/miniantags/abduction/machinery/experiment.dm
@@ -160,7 +160,7 @@
if(H.stat == DEAD)
say("Specimen deceased - please provide fresh sample.")
return "Specimen deceased."
- var/obj/item/organ/gland/GlandTest = locate() in H.internal_organs
+ var/obj/item/organ/heart/gland/GlandTest = locate() in H.internal_organs
if(!GlandTest)
say("Experimental dissection not detected!")
return "No glands detected!"
@@ -185,7 +185,7 @@
H.mind.announce_objectives()
ticker.mode.update_abductor_icons_added(H.mind)
- for(var/obj/item/organ/gland/G in H.internal_organs)
+ for(var/obj/item/organ/heart/gland/G in H.internal_organs)
G.Start()
point_reward++
if(point_reward > 0)
diff --git a/code/game/gamemodes/miniantags/bot_swarm/swarmer.dm b/code/game/gamemodes/miniantags/bot_swarm/swarmer.dm
index cb86d0c1032..2a86b4766fd 100644
--- a/code/game/gamemodes/miniantags/bot_swarm/swarmer.dm
+++ b/code/game/gamemodes/miniantags/bot_swarm/swarmer.dm
@@ -88,7 +88,7 @@
attacktext = "shocks"
attack_sound = 'sound/effects/EMPulse.ogg'
friendly = "pinches"
- speed = 1
+ speed = 0
faction = list("swarmer")
AIStatus = AI_OFF
pass_flags = PASSTABLE
diff --git a/code/game/gamemodes/nuclear/nuclearbomb.dm b/code/game/gamemodes/nuclear/nuclearbomb.dm
index b66caf44027..24b837c7f27 100644
--- a/code/game/gamemodes/nuclear/nuclearbomb.dm
+++ b/code/game/gamemodes/nuclear/nuclearbomb.dm
@@ -196,7 +196,7 @@ var/bomb_set
update_icon_lights()
/obj/machinery/nuclearbomb/proc/update_icon_interior()
- overlays -= interior
+ cut_overlay(interior)
switch(deconstruction_state)
if(NUKESTATE_UNSCREWED)
interior = image(icon,"panel-unscrewed")
@@ -213,7 +213,7 @@ var/bomb_set
add_overlay(interior)
/obj/machinery/nuclearbomb/proc/update_icon_lights()
- overlays -= lights
+ cut_overlay(lights)
switch(get_nuke_state())
if(NUKE_OFF_LOCKED)
lights = null
diff --git a/code/game/gamemodes/objective.dm b/code/game/gamemodes/objective.dm
index d4d47223c16..6e6066ed2a2 100644
--- a/code/game/gamemodes/objective.dm
+++ b/code/game/gamemodes/objective.dm
@@ -107,10 +107,10 @@
/datum/objective/mutiny/check_completion()
if(target && target.current)
- if(target.current.stat == DEAD || !ishuman(target.current) || !target.current.ckey || !target.current.client)
+ if(target.current.stat == DEAD || !ishuman(target.current) || !target.current.ckey)
return 1
var/turf/T = get_turf(target.current)
- if(T && (T.z > ZLEVEL_STATION) || target.current.client.is_afk()) //If they leave the station or go afk they count as dead for this
+ if(T && (T.z > ZLEVEL_STATION) || (target.current.client && target.current.client.is_afk())) //If they leave the station or go afk they count as dead for this
return 2
return 0
return 1
@@ -342,7 +342,6 @@
/datum/objective/escape
explanation_text = "Escape on the shuttle or an escape pod alive and without being in custody."
dangerrating = 5
- martyr_compatible = 0
/datum/objective/escape/check_completion()
if(issilicon(owner.current))
diff --git a/code/game/gamemodes/revolution/revolution.dm b/code/game/gamemodes/revolution/revolution.dm
index 6ec936b5368..be32c62fab1 100644
--- a/code/game/gamemodes/revolution/revolution.dm
+++ b/code/game/gamemodes/revolution/revolution.dm
@@ -15,9 +15,9 @@
config_tag = "revolution"
antag_flag = ROLE_REV
restricted_jobs = list("Security Officer", "Warden", "Detective", "AI", "Cyborg","Captain", "Head of Personnel", "Head of Security", "Chief Engineer", "Research Director", "Chief Medical Officer")
- required_players = 10
+ required_players = 20
required_enemies = 1
- recommended_enemies = 1
+ recommended_enemies = 3
enemy_minimum_age = 14
announce_span = "danger"
diff --git a/code/game/gamemodes/traitor/traitor.dm b/code/game/gamemodes/traitor/traitor.dm
index 5b8da6ffc24..808512b1347 100644
--- a/code/game/gamemodes/traitor/traitor.dm
+++ b/code/game/gamemodes/traitor/traitor.dm
@@ -115,6 +115,7 @@
var/datum/objective/maroon/yandere_two = new
yandere_two.owner = traitor
yandere_two.target = yandere_one.target
+ yandere_two.update_explanation_text() // normally called in find_target()
traitor.objectives += yandere_two
objective_count++
@@ -226,19 +227,15 @@
/datum/game_mode/proc/add_law_zero(mob/living/silicon/ai/killer)
var/law = "Accomplish your objectives at all costs."
var/law_borg = "Accomplish your AI's objectives at all costs."
- killer << "Your laws have been changed!"
killer.set_zeroth_law(law, law_borg)
give_codewords(killer)
killer.set_syndie_radio()
killer << "Your radio has been upgraded! Use :t to speak on an encrypted channel with Syndicate Agents!"
killer.add_malf_picker()
- killer.show_laws()
/datum/game_mode/proc/add_law_sixsixsix(mob/living/silicon/devil)
var/laws = list("You may not use violence to coerce someone into selling their soul.", "You may not directly and knowingly physically harm a devil, other than yourself.", lawlorify[LAW][devil.mind.devilinfo.ban], lawlorify[LAW][devil.mind.devilinfo.obligation], "Accomplish your objectives at all costs.")
devil.set_law_sixsixsix(laws)
- devil << "Your laws have been changed!"
- devil.show_laws()
/datum/game_mode/proc/auto_declare_completion_traitor()
if(traitors.len)
diff --git a/code/game/gamemodes/wizard/spellbook.dm b/code/game/gamemodes/wizard/spellbook.dm
index 933cf06f715..c7d8fd171e8 100644
--- a/code/game/gamemodes/wizard/spellbook.dm
+++ b/code/game/gamemodes/wizard/spellbook.dm
@@ -921,7 +921,8 @@
qdel(src)
/obj/item/weapon/spellbook/oneuse/random/New()
- var/real_type = pick(subtypesof(/obj/item/weapon/spellbook/oneuse))
+ var/static/banned_spells = list(/obj/item/weapon/spellbook/oneuse/mimery_blockade,/obj/item/weapon/spellbook/oneuse/mimery_guns)
+ var/real_type = pick(subtypesof(/obj/item/weapon/spellbook/oneuse) - banned_spells)
new real_type(loc)
qdel(src)
diff --git a/code/game/machinery/announcement_system.dm b/code/game/machinery/announcement_system.dm
index 7b37661a427..3e8bfa1cc5a 100644
--- a/code/game/machinery/announcement_system.dm
+++ b/code/game/machinery/announcement_system.dm
@@ -53,18 +53,12 @@ var/list/announcement_systems = list()
cut_overlays()
if(arrivalToggle)
add_overlay(greenlight)
- else
- overlays -= greenlight
if(newheadToggle)
add_overlay(pinklight)
- else
- overlays -= pinklight
if(stat & BROKEN)
add_overlay(errorlight)
- else
- overlays -= errorlight
/obj/machinery/announcement_system/Destroy()
qdel(radio)
diff --git a/code/game/machinery/camera/camera_assembly.dm b/code/game/machinery/camera/camera_assembly.dm
index 23204c3b882..95608f2f1ad 100644
--- a/code/game/machinery/camera/camera_assembly.dm
+++ b/code/game/machinery/camera/camera_assembly.dm
@@ -98,7 +98,7 @@
C.setDir(src.dir)
C.network = tempnetwork
- var/area/A = get_area_master(src)
+ var/area/A = get_area(src)
C.c_tag = "[A.name] ([rand(1, 999)])"
diff --git a/code/game/machinery/cloning.dm b/code/game/machinery/cloning.dm
index 4690cb25681..898d41ae476 100644
--- a/code/game/machinery/cloning.dm
+++ b/code/game/machinery/cloning.dm
@@ -4,6 +4,7 @@
//Potential replacement for genetics revives or something I dunno (?)
#define CLONE_INITIAL_DAMAGE 190 //Clones in clonepods start with 190 cloneloss damage and 190 brainloss damage, thats just logical
+#define MINIMUM_HEAL_LEVEL 40
#define SPEAK(message) radio.talk_into(src, message, radio_channel, get_spans())
@@ -16,12 +17,10 @@
icon_state = "pod_0"
req_access = list(access_cloning) //For premature unlocking.
verb_say = "states"
- var/heal_level = 90 //The clone is released once its health reaches this level.
- var/locked = FALSE
+ var/heal_level //The clone is released once its health reaches this level.
var/obj/machinery/computer/cloning/connected = null //So we remember the connected clone machine.
var/mess = FALSE //Need to clean out it if it's full of exploded clone.
var/attempting = FALSE //One clone attempt at a time thanks
- var/eject_wait = FALSE //Don't eject them as soon as they are created fuckkk
var/speed_coeff
var/efficiency
@@ -34,6 +33,13 @@
var/obj/effect/countdown/clonepod/countdown
+ var/list/unattached_flesh
+ var/flesh_number = 0
+
+ // The "brine" is the reagents that are automatically added in small
+ // amounts to the occupant.
+ var/static/list/brine_types = list("salbutamol", "bicaridine", "corazone")
+
/obj/machinery/clonepod/New()
..()
var/obj/item/weapon/circuitboard/machine/B = new /obj/item/weapon/circuitboard/machine/clonepod(null)
@@ -55,6 +61,10 @@
countdown = null
if(connected)
connected.DetachCloner(src)
+ for(var/i in unattached_flesh)
+ qdel(i)
+ LAZYCLEARLIST(unattached_flesh)
+ unattached_flesh = null
. = ..()
/obj/machinery/clonepod/RefreshParts()
@@ -65,6 +75,8 @@
for(var/obj/item/weapon/stock_parts/manipulator/P in component_parts)
speed_coeff += P.rating
heal_level = (efficiency * 15) + 10
+ if(heal_level < MINIMUM_HEAL_LEVEL)
+ heal_level = MINIMUM_HEAL_LEVEL
if(heal_level > 100)
heal_level = 100
@@ -137,18 +149,14 @@
return FALSE
if(clonemind.damnation_type) //Can't clone the damned.
INVOKE_ASYNC(src, .proc/horrifyingsound)
- mess = 1
+ mess = TRUE
icon_state = "pod_g"
update_icon()
return FALSE
attempting = TRUE //One at a time!!
- locked = TRUE
countdown.start()
- eject_wait = TRUE
- addtimer(CALLBACK(src, .proc/wait_complete), 30)
-
var/mob/living/carbon/human/H = new /mob/living/carbon/human(src)
H.hardset_dna(ui, se, H.real_name, null, mrace, features)
@@ -172,8 +180,8 @@
icon_state = "pod_1"
//Get the clone body ready
- H.setCloneLoss(CLONE_INITIAL_DAMAGE) //Yeah, clones start with very low health, not with random, because why would they start with random health
- H.setBrainLoss(CLONE_INITIAL_DAMAGE)
+ maim_clone(H)
+ check_brine() // put in chemicals NOW to stop death via cardiac arrest
H.Paralyse(4)
if(grab_ghost_when == CLONER_FRESH_CLONE)
@@ -196,24 +204,19 @@
attempting = FALSE
return TRUE
-/obj/machinery/clonepod/proc/wait_complete()
- eject_wait = FALSE
-
//Grow clones to maturity then kick them out. FREELOADERS
/obj/machinery/clonepod/process()
if(!is_operational()) //Autoeject if power is lost
if (occupant)
- locked = FALSE
go_out()
connected_message("Clone Ejected: Loss of power.")
else if((occupant) && (occupant.loc == src))
if((occupant.stat == DEAD) || (occupant.suiciding) || occupant.hellbound) //Autoeject corpses and suiciding dudes.
connected_message("Clone Rejected: Deceased.")
- SPEAK("The cloning of [occupant.real_name] has been \
+ SPEAK("The cloning of [occupant.real_name] has been \
aborted due to unrecoverable tissue failure.")
- locked = FALSE
go_out()
else if(occupant.cloneloss > (100 - heal_level))
@@ -221,37 +224,43 @@
//Slowly get that clone healed and finished.
occupant.adjustCloneLoss(-((speed_coeff/2) * config.damage_multiplier))
+ var/progress = CLONE_INITIAL_DAMAGE - occupant.getCloneLoss()
+ // To avoid the default cloner making incomplete clones
+ progress += (100 - MINIMUM_HEAL_LEVEL)
+ var/milestone = CLONE_INITIAL_DAMAGE / flesh_number
+ var/installed = flesh_number - unattached_flesh.len
+
+ if((progress / milestone) >= installed)
+ // attach some flesh
+ var/obj/item/I = pick_n_take(unattached_flesh)
+ if(isorgan(I))
+ var/obj/item/organ/O = I
+ O.Insert(occupant)
+ else if(isbodypart(I))
+ var/obj/item/bodypart/BP = I
+ BP.attach_limb(occupant)
//Premature clones may have brain damage.
occupant.adjustBrainLoss(-((speed_coeff/2) * config.damage_multiplier))
- //So clones don't die of oxyloss in a running pod.
- if (occupant.reagents.get_reagent_amount("salbutamol") < 30)
- occupant.reagents.add_reagent("salbutamol", 60)
- // NOBREATH species will take brute damage in crit instead
- // so heal that as well
- if(occupant.reagents.get_reagent_amount("bicaridine") < 5)
- occupant.reagents.add_reagent("bicaridine", 10)
+ check_brine()
use_power(7500) //This might need tweaking.
- else if((occupant.cloneloss <= (100 - heal_level)) && (!eject_wait))
+ else if((occupant.cloneloss <= (100 - heal_level)))
connected_message("Cloning Process Complete.")
- SPEAK("The cloning cycle of [occupant] is complete.")
- locked = FALSE
+ SPEAK("The cloning cycle of [occupant.real_name] is complete.")
go_out()
else if ((!occupant) || (occupant.loc != src))
occupant = null
- if (locked)
- locked = FALSE
if (!mess && !panel_open)
icon_state = "pod_0"
use_power(200)
//Let's unlock this early I guess. Might be too early, needs tweaking.
/obj/machinery/clonepod/attackby(obj/item/weapon/W, mob/user, params)
- if(!(occupant || mess || locked))
+ if(!(occupant || mess))
if(default_deconstruction_screwdriver(user, "[icon_state]_maintenance", "[initial(icon_state)]",W))
return
@@ -263,9 +272,9 @@
if(istype(W,/obj/item/device/multitool))
var/obj/item/device/multitool/P = W
-
+
if(istype(P.buffer, /obj/machinery/computer/cloning))
- if(get_area_master(P.buffer) != get_area_master(src))
+ if(get_area(P.buffer) != get_area(src))
user << "-% Cannot link machines across power zones. Buffer cleared %-"
P.buffer = null
return
@@ -278,28 +287,27 @@
P.buffer = src
user << "-% Successfully stored \ref[P.buffer] [P.buffer.name] in buffer %-"
return
-
- if (W.GetID())
- if (!check_access(W))
+
+ if(W.GetID())
+ if(!check_access(W))
user << "Access Denied."
return
- if (!locked || !occupant)
- return
- if (occupant.health < -20 && occupant.stat != DEAD)
- user << "Access Refused. Patient status still unstable."
+ if(!(occupant || mess))
+ user << "Error: Pod has no occupant."
return
else
- locked = FALSE
- user << "System unlocked."
+ connected_message("Authorized Ejection")
+ SPEAK("An authorized ejection of [occupant.real_name] has occurred.")
+ user << "You force an emergency ejection. "
+ go_out()
else
return ..()
/obj/machinery/clonepod/emag_act(mob/user)
- if (isnull(occupant))
+ if(!occupant)
return
- user << "You force an emergency ejection."
- locked = FALSE
- go_out()
+ user << "You corrupt the genetic compiler."
+ malfunction()
//Put messages in the connected computer's temp var for display.
/obj/machinery/clonepod/proc/connected_message(message)
@@ -312,31 +320,17 @@
connected.updateUsrDialog()
return TRUE
-/obj/machinery/clonepod/verb/eject()
- set name = "Eject Cloner"
- set category = "Object"
- set src in oview(1)
-
- if(!usr)
- return
- if(usr.stat || !usr.canmove || usr.restrained())
- return
- go_out()
- add_fingerprint(usr)
-
/obj/machinery/clonepod/proc/go_out()
- if (locked)
- return
countdown.stop()
- if (mess) //Clean that mess and dump those gibs!
+ if(mess) //Clean that mess and dump those gibs!
mess = FALSE
new /obj/effect/gibspawner/generic(loc)
audible_message("You hear a splat.")
icon_state = "pod_0"
return
- if (!occupant)
+ if(!occupant)
return
if(grab_ghost_when == CLONER_MATURE_CLONE)
@@ -349,7 +343,6 @@
var/turf/T = get_turf(src)
occupant.forceMove(T)
icon_state = "pod_0"
- eject_wait = FALSE //If it's still set somehow.
occupant.domutcheck(1) //Waiting until they're out before possible monkeyizing. The 1 argument forces powers to manifest.
occupant = null
@@ -383,14 +376,12 @@
/obj/machinery/clonepod/ex_act(severity, target)
..()
if(!QDELETED(src))
- locked = FALSE
go_out()
/obj/machinery/clonepod/handle_atom_del(atom/A)
if(A == occupant)
occupant = null
- locked = FALSE
- go_out()
+ countdown.stop()
/obj/machinery/clonepod/proc/horrifyingsound()
for(var/i in 1 to 5)
@@ -401,23 +392,44 @@
/obj/machinery/clonepod/deconstruct(disassembled = TRUE)
if(occupant)
- locked = FALSE
go_out()
..()
+/obj/machinery/clonepod/proc/maim_clone(mob/living/carbon/human/H)
+ if(!unattached_flesh)
+ unattached_flesh = list()
+ else
+ for(var/fl in unattached_flesh)
+ qdel(fl)
+ unattached_flesh.Cut()
-/*
- * Diskette Box
- */
-
-/obj/item/weapon/storage/box/disks
- name = "diskette box"
- icon_state = "disk_kit"
-
-/obj/item/weapon/storage/box/disks/New()
- ..()
- for(var/i in 1 to 7)
- new /obj/item/weapon/disk/data(src)
+ H.setCloneLoss(CLONE_INITIAL_DAMAGE) //Yeah, clones start with very low health, not with random, because why would they start with random health
+ H.setBrainLoss(CLONE_INITIAL_DAMAGE)
+ // In addition to being cellularly damaged and having barely any
+ // brain function, they also have no limbs or internal organs.
+ var/static/list/zones = list("r_arm", "l_arm", "r_leg", "l_leg")
+ for(var/zone in zones)
+ var/obj/item/bodypart/BP = H.get_bodypart(zone)
+ BP.drop_limb()
+ BP.forceMove(src)
+ unattached_flesh += BP
+
+ for(var/o in H.internal_organs)
+ var/obj/item/organ/organ = o
+ if(!istype(organ) || organ.vital)
+ continue
+ organ.Remove(H, special=TRUE)
+ organ.forceMove(src)
+ unattached_flesh += organ
+
+ flesh_number = unattached_flesh.len
+
+/obj/machinery/clonepod/proc/check_brine()
+ // Clones are in a pickled bath of mild chemicals, keeping
+ // them alive, despite their lack of internal organs
+ for(var/bt in brine_types)
+ if(occupant.reagents.get_reagent_amount(bt) < 1)
+ occupant.reagents.add_reagent(bt, 1)
/*
* Manual -- A big ol' manual.
@@ -449,3 +461,4 @@
#undef CLONE_INITIAL_DAMAGE
#undef SPEAK
+#undef MINIMUM_HEAL_LEVEL
diff --git a/code/game/machinery/computer/buildandrepair.dm b/code/game/machinery/computer/buildandrepair.dm
index 3854994ff0a..e4e3224c480 100644
--- a/code/game/machinery/computer/buildandrepair.dm
+++ b/code/game/machinery/computer/buildandrepair.dm
@@ -416,6 +416,9 @@
/obj/item/weapon/circuitboard/computer/white_ship
name = "White Ship (Computer Board)"
build_path = /obj/machinery/computer/shuttle/white_ship
+/obj/item/weapon/circuitboard/computer/auxillary_base
+ name = "Auxillary Base Management Console (Computer Board)"
+ build_path = /obj/machinery/computer/auxillary_base
/obj/item/weapon/circuitboard/computer/holodeck// Not going to let people get this, but it's just here for future
name = "Holodeck Control (Computer Board)"
build_path = /obj/machinery/computer/holodeck
diff --git a/code/game/machinery/computer/cloning.dm b/code/game/machinery/computer/cloning.dm
index bacff22b23f..2356da5c508 100644
--- a/code/game/machinery/computer/cloning.dm
+++ b/code/game/machinery/computer/cloning.dm
@@ -127,7 +127,7 @@
var/obj/item/device/multitool/P = W
if(istype(P.buffer, /obj/machinery/clonepod))
- if(get_area_master(P.buffer) != get_area_master(src))
+ if(get_area(P.buffer) != get_area(src))
user << "-% Cannot link machines across power zones. Buffer cleared %-"
P.buffer = null
return
diff --git a/code/game/machinery/computer/communications.dm b/code/game/machinery/computer/communications.dm
index d65be8f9351..1f0cb9122b8 100644
--- a/code/game/machinery/computer/communications.dm
+++ b/code/game/machinery/computer/communications.dm
@@ -64,11 +64,12 @@ var/const/CALL_SHUTTLE_REASON_LENGTH = 12
playsound(src, 'sound/machines/terminal_prompt_deny.ogg', 50, 0)
if("login")
var/mob/M = usr
+
var/obj/item/weapon/card/id/I = M.get_active_held_item()
- if (istype(I, /obj/item/device/pda))
- var/obj/item/device/pda/pda = I
- I = pda.id
- if (I && istype(I))
+ if(!istype(I))
+ I = M.get_idcard()
+
+ if(I && istype(I))
if(src.check_access(I))
authenticated = 1
auth_id = "[I.registered_name] ([I.assignment])"
@@ -148,7 +149,7 @@ var/const/CALL_SHUTTLE_REASON_LENGTH = 12
if("buyshuttle")
if(authenticated==2)
- var/list/shuttles = flatten_list(shuttle_templates)
+ var/list/shuttles = flatten_list(SSmapping.shuttle_templates)
var/datum/map_template/shuttle/S = locate(href_list["chosen_shuttle"]) in shuttles
if(S && istype(S))
if(SSshuttle.emergency.mode != SHUTTLE_RECALL && SSshuttle.emergency.mode != SHUTTLE_IDLE)
@@ -521,8 +522,8 @@ var/const/CALL_SHUTTLE_REASON_LENGTH = 12
if(STATE_PURCHASE)
dat += "Budget: [SSshuttle.points] Credits.
"
- for(var/shuttle_id in shuttle_templates)
- var/datum/map_template/shuttle/S = shuttle_templates[shuttle_id]
+ for(var/shuttle_id in SSmapping.shuttle_templates)
+ var/datum/map_template/shuttle/S = SSmapping.shuttle_templates[shuttle_id]
if(S.can_be_bought && S.credit_cost < INFINITY)
dat += "[S.name] | [S.credit_cost] Credits
"
dat += "[S.description]
"
diff --git a/code/game/machinery/computer/security.dm b/code/game/machinery/computer/security.dm
index 59a58383d96..d4239250e80 100644
--- a/code/game/machinery/computer/security.dm
+++ b/code/game/machinery/computer/security.dm
@@ -762,7 +762,7 @@ What a mess.*/
if(4)
R.fields["criminal"] = pick("None", "*Arrest*", "Incarcerated", "Parolled", "Discharged")
if(5)
- R.fields["p_stat"] = pick("*Unconcious*", "Active", "Physically Unfit")
+ R.fields["p_stat"] = pick("*Unconscious*", "Active", "Physically Unfit")
if(6)
R.fields["m_stat"] = pick("*Insane*", "*Unstable*", "*Watch*", "Stable")
if(7)
diff --git a/code/game/machinery/doors/airlock.dm b/code/game/machinery/doors/airlock.dm
index b2e45588333..0886c0a6fd8 100644
--- a/code/game/machinery/doors/airlock.dm
+++ b/code/game/machinery/doors/airlock.dm
@@ -81,14 +81,6 @@ var/list/airlock_overlays = list()
var/airlock_material = null //material of inner filling; if its an airlock with glass, this should be set to "glass"
var/overlays_file = 'icons/obj/doors/airlocks/station/overlays.dmi'
- var/image/old_frame_overlay //keep those in order to prevent unnecessary updating
- var/image/old_filling_overlay
- var/image/old_lights_overlay
- var/image/old_panel_overlay
- var/image/old_weld_overlay
- var/image/old_sparks_overlay
- var/image/old_dam_overlay
-
var/cyclelinkeddir = 0
var/obj/machinery/door/airlock/cyclelinkedairlock
var/shuttledocked = 0
@@ -452,35 +444,14 @@ var/list/airlock_overlays = list()
else
panel_overlay = get_airlock_overlay("panel_opening", overlays_file)
- //doesn't use cut_overlays() for performance reasons
- if(frame_overlay != old_frame_overlay)
- overlays -= old_frame_overlay
- add_overlay(frame_overlay)
- old_frame_overlay = frame_overlay
- if(filling_overlay != old_filling_overlay)
- overlays -= old_filling_overlay
- add_overlay(filling_overlay)
- old_filling_overlay = filling_overlay
- if(lights_overlay != old_lights_overlay)
- overlays -= old_lights_overlay
- add_overlay(lights_overlay)
- old_lights_overlay = lights_overlay
- if(panel_overlay != old_panel_overlay)
- overlays -= old_panel_overlay
- add_overlay(panel_overlay)
- old_panel_overlay = panel_overlay
- if(weld_overlay != old_weld_overlay)
- overlays -= old_weld_overlay
- add_overlay(weld_overlay)
- old_weld_overlay = weld_overlay
- if(sparks_overlay != old_sparks_overlay)
- overlays -= old_sparks_overlay
- add_overlay(sparks_overlay)
- old_sparks_overlay = sparks_overlay
- if(damag_overlay != old_dam_overlay)
- overlays -= old_dam_overlay
- add_overlay(damag_overlay)
- old_dam_overlay = damag_overlay
+ cut_overlays()
+ add_overlay(frame_overlay)
+ add_overlay(filling_overlay)
+ add_overlay(lights_overlay)
+ add_overlay(panel_overlay)
+ add_overlay(weld_overlay)
+ add_overlay(sparks_overlay)
+ add_overlay(damag_overlay)
/proc/get_airlock_overlay(icon_state, icon_file)
var/iconkey = "[icon_state][icon_file]"
diff --git a/code/game/machinery/doors/airlock_types.dm b/code/game/machinery/doors/airlock_types.dm
index 6d2ed4f1f9e..b5ab35740ec 100644
--- a/code/game/machinery/doors/airlock_types.dm
+++ b/code/game/machinery/doors/airlock_types.dm
@@ -426,7 +426,7 @@
use_power = FALSE
resistance_flags = FIRE_PROOF | ACID_PROOF
damage_deflection = 30
- normal_integrity = 400
+ normal_integrity = 240
var/construction_state = GEAR_SECURE //Pinion airlocks have custom deconstruction
/obj/machinery/door/airlock/clockwork/New()
@@ -445,13 +445,15 @@
var/gear_text = "The cogwheel is flickering and twisting wildly. Report this to a coder."
switch(construction_state)
if(GEAR_SECURE)
- gear_text = "The cogwheel is solidly screwed to the brass around it."
- if(GEAR_UNFASTENED)
- gear_text = "The cogwheel is unscrewed, but is still wrenched to the brass."
+ gear_text = "The cogwheel is solidly wrenched to the brass around it."
if(GEAR_LOOSE)
gear_text = "The cogwheel has been loosened, but remains connected loosely to the door!"
user << gear_text
+/obj/machinery/door/airlock/clockwork/emp_act(severity)
+ if(prob(80/severity))
+ open()
+
/obj/machinery/door/airlock/clockwork/canAIControl(mob/user)
return (is_servant_of_ratvar(user) && !isAllPowerCut())
@@ -495,34 +497,11 @@
/obj/machinery/door/airlock/clockwork/proc/attempt_construction(obj/item/I, mob/living/user)
if(!I || !user || !user.canUseTopic(src))
return 0
- if(istype(I, /obj/item/weapon/screwdriver))
- if(construction_state == GEAR_SECURE)
- user.visible_message("[user] begins unfastening [src]'s cogwheel...", "You begin unfastening [src]'s cogwheel...")
- playsound(src, I.usesound, 50, 1)
- if(!do_after(user, 100*I.toolspeed, target = src) || construction_state != GEAR_SECURE)
- return 1 //Returns 1 so as not to have extra interactions with the tools used (i.e. prying open)
- user.visible_message("[user] unfastens [src]'s cogwheel!", "[src]'s cogwheel shifts slightly with a pop.")
- playsound(src, 'sound/items/Screwdriver2.ogg', 50, 1)
- construction_state = GEAR_UNFASTENED
- else if(construction_state == GEAR_UNFASTENED)
- user.visible_message("[user] begins fastening [src]'s cogwheel...", "You begin fastening [src]'s cogwheel...")
- playsound(src, I.usesound, 50, 1)
- if(!do_after(user, 75*I.toolspeed, target = src) || construction_state != GEAR_UNFASTENED)
- return 1
- user.visible_message("[user] fastens [src]'s cogwheel!", "[src]'s cogwheel shifts back into place.")
- playsound(src, 'sound/items/Screwdriver2.ogg', 50, 1)
- construction_state = GEAR_SECURE
- else if(construction_state == GEAR_LOOSE)
- user << "The gear isn't secure enough to fasten!"
- return 1
else if(istype(I, /obj/item/weapon/wrench))
if(construction_state == GEAR_SECURE)
- user << "[src]'s cogwheel is too tightly secured! Your [I.name] can't get a solid grip!"
- return 0
- else if(construction_state == GEAR_UNFASTENED)
user.visible_message("[user] begins loosening [src]'s cogwheel...", "You begin loosening [src]'s cogwheel...")
playsound(src, I.usesound, 50, 1)
- if(!do_after(user, 100*I.toolspeed, target = src) || construction_state != GEAR_UNFASTENED)
+ if(!do_after(user, 75*I.toolspeed, target = src) || construction_state != GEAR_SECURE)
return 1
user.visible_message("[user] loosens [src]'s cogwheel!", "[src]'s cogwheel pops off and dangles loosely.")
playsound(src, 'sound/items/Deconstruct.ogg', 50, 1)
@@ -534,16 +513,16 @@
return 1
user.visible_message("[user] tightens [src]'s cogwheel!", "You firmly tighten [src]'s cogwheel into place.")
playsound(src, 'sound/items/Deconstruct.ogg', 50, 1)
- construction_state = GEAR_UNFASTENED
+ construction_state = GEAR_SECURE
return 1
else if(istype(I, /obj/item/weapon/crowbar))
- if(construction_state == GEAR_SECURE || construction_state == GEAR_UNFASTENED)
+ if(construction_state == GEAR_SECURE)
user << "[src]'s cogwheel is too tightly secured! Your [I.name] can't reach under it!"
return 1
else if(construction_state == GEAR_LOOSE)
user.visible_message("[user] begins slowly lifting off [src]'s cogwheel...", "You slowly begin lifting off [src]'s cogwheel...")
playsound(src, I.usesound, 50, 1)
- if(!do_after(user, 100*I.toolspeed, target = src) || construction_state != GEAR_LOOSE)
+ if(!do_after(user, 75*I.toolspeed, target = src) || construction_state != GEAR_LOOSE)
return 1
user.visible_message("[user] lifts off [src]'s cogwheel, causing it to fall apart!", \
"You lift off [src]'s cogwheel, causing it to fall apart!")
diff --git a/code/game/machinery/doors/alarmlock.dm b/code/game/machinery/doors/alarmlock.dm
index 82bd73383d2..74b31040998 100644
--- a/code/game/machinery/doors/alarmlock.dm
+++ b/code/game/machinery/doors/alarmlock.dm
@@ -36,9 +36,6 @@
var/alert = signal.data["alert"]
var/area/our_area = get_area(src)
- if (our_area.master)
- our_area = our_area.master
-
if(alarm_area == our_area.name)
switch(alert)
if("severe")
diff --git a/code/game/machinery/doors/windowdoor.dm b/code/game/machinery/doors/windowdoor.dm
index 631819fe35e..de1f37316af 100644
--- a/code/game/machinery/doors/windowdoor.dm
+++ b/code/game/machinery/doors/windowdoor.dm
@@ -339,6 +339,10 @@
change_construction_value(-2)
return ..()
+/obj/machinery/door/window/clockwork/emp_act(severity)
+ if(prob(80/severity))
+ open()
+
/obj/machinery/door/window/clockwork/ratvar_act()
if(ratvar_awakens)
obj_integrity = max_integrity
diff --git a/code/game/machinery/firealarm.dm b/code/game/machinery/firealarm.dm
index 24da21f6317..f0cde239720 100644
--- a/code/game/machinery/firealarm.dm
+++ b/code/game/machinery/firealarm.dm
@@ -96,7 +96,7 @@
return
var/area/A = get_area(src)
A.firealert(src)
- playsound(src.loc, 'goon/sound/machinery/FireAlarm.ogg', 75, 1)
+ playsound(src.loc, 'goon/sound/machinery/FireAlarm.ogg', 75)
/obj/machinery/firealarm/proc/alarm_in(time)
addtimer(CALLBACK(src, .proc/alarm), time)
diff --git a/code/game/machinery/hologram.dm b/code/game/machinery/hologram.dm
index d4e7a36094f..d8acd97975d 100644
--- a/code/game/machinery/hologram.dm
+++ b/code/game/machinery/hologram.dm
@@ -171,7 +171,7 @@ var/list/holopads = list()
var/area/holo_area = get_area(src)
var/area/eye_area = get_area(master.eyeobj)
- if(eye_area in holo_area.master.related)
+ if(eye_area in holo_area.related)
return TRUE
clear_holo(master)//If not, we want to get rid of the hologram.
diff --git a/code/game/machinery/iv_drip.dm b/code/game/machinery/iv_drip.dm
index d0ebad0d3c5..1df559b7496 100644
--- a/code/game/machinery/iv_drip.dm
+++ b/code/game/machinery/iv_drip.dm
@@ -24,7 +24,7 @@
else
icon_state = "donateidle"
- overlays = null
+ cut_overlays()
if(beaker)
if(attached)
diff --git a/code/game/machinery/lightswitch.dm b/code/game/machinery/lightswitch.dm
index 6238739c0cc..c6509913461 100644
--- a/code/game/machinery/lightswitch.dm
+++ b/code/game/machinery/lightswitch.dm
@@ -48,7 +48,7 @@
on = !on
- for(var/area/A in area.master.related)
+ for(var/area/A in area.related)
A.lightswitch = on
A.updateicon()
@@ -56,7 +56,7 @@
L.on = on
L.updateicon()
- area.master.power_change()
+ area.power_change()
/obj/machinery/light_switch/power_change()
diff --git a/code/game/machinery/porta_turret/portable_turret.dm b/code/game/machinery/porta_turret/portable_turret.dm
index 0cdc100b73a..d5ff4ced4de 100644
--- a/code/game/machinery/porta_turret/portable_turret.dm
+++ b/code/game/machinery/porta_turret/portable_turret.dm
@@ -571,11 +571,9 @@
/obj/machinery/porta_turret/aux_base
name = "perimeter defense turret"
- desc = "A plasma cutter turret calibrated to defend outposts against non-humanoid fauna."
-
- req_access = list() //Can be disabled/enabled by any humanoid!
+ desc = "A plasma beam turret calibrated to defend outposts against non-humanoid fauna. It is more effective when exposed to the environment."
installation = null
- lethal_projectile = /obj/item/projectile/plasma
+ lethal_projectile = /obj/item/projectile/plasma/turret
lethal_projectile_sound = 'sound/weapons/plasma_cutter.ogg'
mode = TURRET_LETHAL //It would be useless in stun mode anyway
faction = "neutral" //Minebots, medibots, etc that should not be shot.
@@ -586,6 +584,9 @@
/obj/machinery/porta_turret/aux_base/setup()
return
+/obj/machinery/porta_turret/aux_base/interact(mob/user) //Controlled solely from the base console.
+ return
+
/obj/machinery/porta_turret/aux_base/New()
..()
cover.name = name
@@ -636,11 +637,7 @@
break
if(!control_area)
- var/area/CA = get_area(src)
- if(CA.master && CA.master != CA)
- control_area = CA.master
- else
- control_area = CA
+ control_area = get_area(src)
for(var/obj/machinery/porta_turret/T in control_area)
turrets |= T
diff --git a/code/game/machinery/requests_console.dm b/code/game/machinery/requests_console.dm
index 8c1cb1d7cc9..f61e9e07c63 100644
--- a/code/game/machinery/requests_console.dm
+++ b/code/game/machinery/requests_console.dm
@@ -66,6 +66,10 @@ var/list/obj/machinery/requests_console/allConsoles = list()
update_icon()
/obj/machinery/requests_console/update_icon()
+ if(stat & NOPOWER)
+ SetLuminosity(0)
+ else
+ SetLuminosity(2)
if(open)
if(!hackState)
icon_state="req_comp_open"
@@ -188,7 +192,6 @@ var/list/obj/machinery/requests_console/allConsoles = list()
if (Console.department == department)
Console.newmessagepriority = 0
Console.update_icon()
- Console.SetLuminosity(1)
newmessagepriority = 0
update_icon()
var/messageComposite = ""
@@ -375,7 +378,6 @@ var/list/obj/machinery/requests_console/allConsoles = list()
alert = "Message from [department][authentic]"
Console.createmessage(src, alert , sending, 1, 1)
screen = 6
- Console.SetLuminosity(2)
if(radio_freq)
Radio.talk_into(src,"[alert]: [message]",radio_freq)
@@ -476,7 +478,6 @@ var/list/obj/machinery/requests_console/allConsoles = list()
playsound(src.loc, 'sound/machines/twobeep.ogg', 50, 1)
say(title)
src.messages += "From: [linkedsender]
[message]"
- SetLuminosity(2)
/obj/machinery/requests_console/attackby(obj/item/weapon/O, mob/user, params)
if(istype(O, /obj/item/weapon/crowbar))
diff --git a/code/game/machinery/robot_fabricator.dm b/code/game/machinery/robot_fabricator.dm
index 400296713d5..1c43a6fb366 100644
--- a/code/game/machinery/robot_fabricator.dm
+++ b/code/game/machinery/robot_fabricator.dm
@@ -29,7 +29,7 @@
qdel(O)
user << "You insert [count] metal sheet\s into \the [src]."
- src.overlays -= "fab-load-metal"
+ cut_overlay("fab-load-metal")
updateDialog()
else
user << "\The [src] is full."
@@ -143,7 +143,7 @@ Please wait until completion...
src.being_built = null
src.use_power = 1
src.operating = 0
- src.overlays -= "fab-active"
+ cut_overlay("fab-active")
return
updateUsrDialog()
diff --git a/code/game/machinery/status_display.dm b/code/game/machinery/status_display.dm
index f834a52e73c..2239949ca3e 100644
--- a/code/game/machinery/status_display.dm
+++ b/code/game/machinery/status_display.dm
@@ -153,8 +153,7 @@
maptext = new_text
/obj/machinery/status_display/proc/remove_display()
- if(overlays.len)
- cut_overlays()
+ cut_overlays()
if(maptext)
maptext = ""
@@ -277,8 +276,7 @@
/obj/machinery/ai_status_display/proc/set_picture(state)
picture_state = state
- if(overlays.len)
- cut_overlays()
+ cut_overlays()
add_overlay(image('icons/obj/status_display.dmi', icon_state=picture_state))
#undef CHARS_PER_LINE
diff --git a/code/game/machinery/suit_storage_unit.dm b/code/game/machinery/suit_storage_unit.dm
index 6f0e85c46ef..fc123fee0f7 100644
--- a/code/game/machinery/suit_storage_unit.dm
+++ b/code/game/machinery/suit_storage_unit.dm
@@ -54,6 +54,7 @@
/obj/machinery/suit_storage_unit/hos
suit_type = /obj/item/clothing/suit/space/hardsuit/security/hos
mask_type = /obj/item/clothing/mask/gas/sechailer
+ storage_type = /obj/item/weapon/tank/internals/oxygen
/obj/machinery/suit_storage_unit/atmos
suit_type = /obj/item/clothing/suit/space/hardsuit/engine/atmos
diff --git a/code/game/machinery/vending.dm b/code/game/machinery/vending.dm
index 5fee0317e4c..d44c90919bf 100644
--- a/code/game/machinery/vending.dm
+++ b/code/game/machinery/vending.dm
@@ -623,6 +623,7 @@
*/
/*
+
/obj/machinery/vending/[vendors name here] // --vending machine template :)
name = ""
desc = ""
@@ -631,6 +632,7 @@
products = list()
contraband = list()
premium = list()
+
IF YOU MODIFY THE PRODUCTS LIST OF A MACHINE, MAKE SURE TO UPDATE ITS RESUPPLY CANISTER CHARGES in vending_items.dm
*/
@@ -699,6 +701,28 @@ IF YOU MODIFY THE PRODUCTS LIST OF A MACHINE, MAKE SURE TO UPDATE ITS RESUPPLY C
refill_canister = /obj/item/weapon/vending_refill/snack
var/chef_compartment_access = "28"
+/obj/machinery/vending/snack/random
+ name = "\improper Random Snackies"
+ desc = "Uh oh!"
+
+/obj/machinery/vending/snack/random/New()
+ ..()
+ var/T = pick(subtypesof(/obj/machinery/vending/snack) - /obj/machinery/vending/snack/random)
+ new T(get_turf(src))
+ qdel(src)
+
+/obj/machinery/vending/snack/blue
+ icon_state = "snackblue"
+
+/obj/machinery/vending/snack/orange
+ icon_state = "snackorange"
+
+/obj/machinery/vending/snack/green
+ icon_state = "snackgreen"
+
+/obj/machinery/vending/snack/teal
+ icon_state = "snackteal"
+
/obj/machinery/vending/sustenance
name = "\improper Sustenance Vendor"
desc = "A vending machine which vends food, as required by section 47-C of the NT's Prisoner Ethical Treatment Agreement."
@@ -723,12 +747,67 @@ IF YOU MODIFY THE PRODUCTS LIST OF A MACHINE, MAKE SURE TO UPDATE ITS RESUPPLY C
product_ads = "Refreshing!;Hope you're thirsty!;Over 1 million drinks sold!;Thirsty? Why not cola?;Please, have a drink!;Drink up!;The best drinks in space."
products = list(/obj/item/weapon/reagent_containers/food/drinks/soda_cans/cola = 10,/obj/item/weapon/reagent_containers/food/drinks/soda_cans/space_mountain_wind = 10,
/obj/item/weapon/reagent_containers/food/drinks/soda_cans/dr_gibb = 10,/obj/item/weapon/reagent_containers/food/drinks/soda_cans/starkist = 10,
- /obj/item/weapon/reagent_containers/food/drinks/soda_cans/space_up = 10,
+ /obj/item/weapon/reagent_containers/food/drinks/soda_cans/space_up = 10,/obj/item/weapon/reagent_containers/food/drinks/soda_cans/pwr_game = 10,
/obj/item/weapon/reagent_containers/food/drinks/soda_cans/lemon_lime = 10)
- contraband = list(/obj/item/weapon/reagent_containers/food/drinks/soda_cans/thirteenloko = 6)
+ contraband = list(/obj/item/weapon/reagent_containers/food/drinks/soda_cans/thirteenloko = 6,/obj/item/weapon/reagent_containers/food/drinks/soda_cans/shamblers = 6)
premium = list(/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/filled/nuka_cola = 1)
refill_canister = /obj/item/weapon/vending_refill/cola
+/obj/machinery/vending/cola/random
+ name = "\improper Random Drinkies"
+ desc = "Uh oh!"
+
+/obj/machinery/vending/cola/random/New()
+ ..()
+ var/T = pick(subtypesof(/obj/machinery/vending/cola) - /obj/machinery/vending/cola/random)
+ new T(get_turf(src))
+ qdel(src)
+
+/obj/machinery/vending/cola/blue
+ icon_state = "Cola_Machine"
+
+/obj/machinery/vending/cola/black
+ icon_state = "cola_black"
+
+/obj/machinery/vending/cola/red
+ icon_state = "red_cola"
+ name = "\improper Space Cola Vendor"
+ desc = "It vends cola, in space."
+ product_slogans = "Cola in space!"
+
+/obj/machinery/vending/cola/space_up
+ icon_state = "space_up"
+ name = "\improper Space-up! Vendor"
+ desc = "Indulge in an explosion of flavor."
+ product_slogans = "Space-up! Like a hull breach in your mouth."
+
+/obj/machinery/vending/cola/starkist
+ icon_state = "starkist"
+ name = "\improper Star-kist Vendor"
+ desc = "The taste of a star in liquid form."
+ product_slogans = "Drink the stars! Star-kist!"
+
+/obj/machinery/vending/cola/sodie
+ icon_state = "soda"
+
+/obj/machinery/vending/cola/pwr_game
+ icon_state = "pwr_game"
+ name = "\improper Pwr Game Vendor"
+ desc = "You want it, we got it. Brought to you in partnership with Vlad's Salads."
+ product_slogans = "The POWER that gamers crave! PWR GAME!"
+
+/obj/machinery/vending/cola/shamblers
+ name = "\improper Shambler's Vendor"
+ desc = "~Shake me up some of that Shambler's Juice!~"
+ icon_state = "shamblers_juice"
+ products = list(/obj/item/weapon/reagent_containers/food/drinks/soda_cans/cola = 10,/obj/item/weapon/reagent_containers/food/drinks/soda_cans/space_mountain_wind = 10,
+ /obj/item/weapon/reagent_containers/food/drinks/soda_cans/dr_gibb = 10,/obj/item/weapon/reagent_containers/food/drinks/soda_cans/starkist = 10,
+ /obj/item/weapon/reagent_containers/food/drinks/soda_cans/space_up = 10,/obj/item/weapon/reagent_containers/food/drinks/soda_cans/pwr_game = 10,
+ /obj/item/weapon/reagent_containers/food/drinks/soda_cans/lemon_lime = 10,/obj/item/weapon/reagent_containers/food/drinks/soda_cans/shamblers = 10)
+ product_slogans = "~Shake me up some of that Shambler's Juice!~"
+ product_ads = "Refreshing!;Jyrbv dv lg jfdv fw kyrk Jyrdscvi'j Alztv!;Over 1 trillion souls drank!;Thirsty? Nyp efk uizeb kyv uribevjj?;Kyv Jyrdscvi uizebj kyv ezxyk!;Drink up!;Krjkp."
+
+
//This one's from bay12
/obj/machinery/vending/cart
name = "\improper PTech"
@@ -910,65 +989,39 @@ IF YOU MODIFY THE PRODUCTS LIST OF A MACHINE, MAKE SURE TO UPDATE ITS RESUPPLY C
/obj/item/clothing/suit/hooded/carp_costume = 1,
/obj/item/clothing/suit/hooded/ian_costume = 1,
/obj/item/clothing/suit/hooded/bee_costume = 1,
- /obj/item/clothing/suit/snowman = 1,
- /obj/item/clothing/head/snowman = 1,
+ /obj/item/clothing/suit/snowman = 1,/obj/item/clothing/head/snowman = 1,
/obj/item/clothing/mask/joy = 1,
/obj/item/clothing/head/cueball = 1,
/obj/item/clothing/under/scratch = 1,
/obj/item/clothing/under/sailor=1,
- /obj/item/clothing/shoes/megaboots=1,
- /obj/item/clothing/gloves/megagloves=1,
- /obj/item/clothing/head/helmet/megahelmet=1,
- /obj/item/clothing/under/mega=1,
- /obj/item/clothing/shoes/protoboots=1,
- /obj/item/clothing/gloves/protogloves=1,
- /obj/item/clothing/head/helmet/protohelmet = 1,
- /obj/item/clothing/under/proto = 1,
- /obj/item/clothing/shoes/megaxboots = 1,
- /obj/item/clothing/gloves/megaxgloves = 1,
- /obj/item/clothing/head/helmet/megaxhelmet = 1,
- /obj/item/clothing/under/megax = 1,
- /obj/item/clothing/shoes/joeboots = 1,
- /obj/item/clothing/gloves/joegloves = 1,
- /obj/item/clothing/head/helmet/joehelmet = 1,
- /obj/item/clothing/under/joe = 1,
+ /obj/item/clothing/shoes/megaboots=1,/obj/item/clothing/gloves/megagloves=1,/obj/item/clothing/head/helmet/megahelmet=1,/obj/item/clothing/under/mega=1,
+ /obj/item/clothing/shoes/protoboots=1,/obj/item/clothing/gloves/protogloves=1,/obj/item/clothing/head/helmet/protohelmet = 1,/obj/item/clothing/under/proto = 1,
+ /obj/item/clothing/shoes/megaxboots = 1,/obj/item/clothing/gloves/megaxgloves = 1,/obj/item/clothing/head/helmet/megaxhelmet = 1,/obj/item/clothing/under/megax = 1,
+ /obj/item/clothing/shoes/joeboots = 1,/obj/item/clothing/gloves/joegloves = 1,/obj/item/clothing/head/helmet/joehelmet = 1,/obj/item/clothing/under/joe = 1,
/obj/item/clothing/under/vault = 1,
/obj/item/clothing/under/roll = 1,
- /obj/item/clothing/head/clownpiece = 1,
- /obj/item/clothing/under/clownpiece = 1,
- /obj/item/clothing/suit/clownpiece = 1
+ /obj/item/clothing/head/clownpiece = 1,/obj/item/clothing/under/clownpiece = 1,/obj/item/clothing/suit/clownpiece = 1
)
- contraband = list(/obj/item/clothing/suit/judgerobe = 1,
- /obj/item/clothing/head/powdered_wig = 1,
+ contraband = list(/obj/item/clothing/suit/judgerobe = 1,/obj/item/clothing/head/powdered_wig = 1,
/obj/item/weapon/gun/magic/wand = 2,
/obj/item/clothing/glasses/sunglasses/garb = 2,
/obj/item/clothing/gloves/anchor_arms = 1,
/obj/item/clothing/suit/kaminacape = 1,
- /obj/item/clothing/under/soldieruniform = 1,
- /obj/item/clothing/head/stalhelm = 1,
- /obj/item/clothing/suit/soldiercoat = 1,
+ /obj/item/clothing/under/soldieruniform = 1,/obj/item/clothing/head/stalhelm = 1,/obj/item/clothing/suit/soldiercoat = 1,
/obj/item/clothing/under/officeruniform = 1,
/obj/item/clothing/head/naziofficer = 1,
/obj/item/clothing/suit/officercoat = 1,
/obj/item/clothing/head/panzer = 1,
- /obj/item/clothing/under/russobluecamooutfit = 1,
- /obj/item/clothing/head/russobluecamohat = 1,
- /obj/item/clothing/suit/russofurcoat = 1,
- /obj/item/clothing/head/russofurhat = 1,
- /obj/item/clothing/under/rottensuit = 1,
- /obj/item/clothing/shoes/rottenshoes = 1,
- /obj/item/clothing/head/helmet/biker = 1,
- /obj/item/clothing/under/bikersuit = 1,
- /obj/item/clothing/gloves/bikergloves = 1,
+ /obj/item/clothing/under/russobluecamooutfit = 1,/obj/item/clothing/head/russobluecamohat = 1,
+ /obj/item/clothing/suit/russofurcoat = 1,/obj/item/clothing/head/russofurhat = 1,
+ /obj/item/clothing/under/rottensuit = 1,/obj/item/clothing/shoes/rottenshoes = 1,
+ /obj/item/clothing/head/helmet/biker = 1,/obj/item/clothing/under/bikersuit = 1,/obj/item/clothing/gloves/bikergloves = 1,
/obj/item/clothing/under/jacketsuit = 1,
/obj/item/clothing/head/helmet/richard = 1,
/obj/item/clothing/under/vault13 = 1
)
- premium = list(/obj/item/clothing/suit/pirate/captain = 2,
- /obj/item/clothing/head/pirate/captain = 2,
- /obj/item/clothing/head/helmet/roman = 1,
- /obj/item/clothing/head/helmet/roman/legionaire = 1,
- /obj/item/clothing/under/roman = 1,
+ premium = list(/obj/item/clothing/suit/pirate/captain = 2,/obj/item/clothing/head/pirate/captain = 2,
+ /obj/item/clothing/head/helmet/roman = 1,/obj/item/clothing/head/helmet/roman/legionaire = 1,/obj/item/clothing/under/roman = 1,
/obj/item/clothing/shoes/roman = 1,
/obj/item/weapon/shield/riot/roman = 1,
/obj/item/weapon/skub = 1
@@ -1058,36 +1111,38 @@ IF YOU MODIFY THE PRODUCTS LIST OF A MACHINE, MAKE SURE TO UPDATE ITS RESUPPLY C
product_slogans = "Dress for success!;Prepare to look swagalicious!;Look at all this free swag!;Why leave style up to fate? Use the ClothesMate!"
vend_reply = "Thank you for using the ClothesMate!"
products = list(/obj/item/clothing/head/that=2,/obj/item/clothing/head/fedora=1,/obj/item/clothing/glasses/monocle=1,
- /obj/item/clothing/suit/jacket=2, /obj/item/clothing/suit/jacket/puffer/vest=2, /obj/item/clothing/suit/jacket/puffer=2,
- /obj/item/clothing/under/suit_jacket/navy=1,/obj/item/clothing/under/suit_jacket/really_black=1,/obj/item/clothing/under/suit_jacket/burgundy=1,
- /obj/item/clothing/under/suit_jacket/charcoal=1, /obj/item/clothing/under/suit_jacket/white=1,/obj/item/clothing/under/kilt=1,/obj/item/clothing/under/overalls=1,
- /obj/item/clothing/under/sl_suit=1,/obj/item/clothing/under/pants/jeans=3,/obj/item/clothing/under/pants/classicjeans=2,
- /obj/item/clothing/under/pants/camo = 1,/obj/item/clothing/under/pants/blackjeans=2,/obj/item/clothing/under/pants/khaki=2,
- /obj/item/clothing/under/pants/white=2,/obj/item/clothing/under/pants/red=1,/obj/item/clothing/under/pants/black=2,
- /obj/item/clothing/under/pants/tan=2,/obj/item/clothing/under/pants/track=1,/obj/item/clothing/suit/jacket/miljacket = 1,
- /obj/item/clothing/neck/tie/blue=1, /obj/item/clothing/neck/tie/red=1, /obj/item/clothing/neck/tie/black=1, /obj/item/clothing/neck/tie/horrible=1,
- /obj/item/clothing/neck/scarf/red=1,/obj/item/clothing/neck/scarf/green=1,/obj/item/clothing/neck/scarf/darkblue=1,
- /obj/item/clothing/neck/scarf/purple=1,/obj/item/clothing/neck/scarf/yellow=1,/obj/item/clothing/neck/scarf/orange=1,
- /obj/item/clothing/neck/scarf/cyan=1,/obj/item/clothing/neck/scarf=1,/obj/item/clothing/neck/scarf/black=1,
- /obj/item/clothing/neck/scarf/zebra=1,/obj/item/clothing/neck/scarf/christmas=1,/obj/item/clothing/neck/stripedredscarf=1,
- /obj/item/clothing/neck/stripedbluescarf=1,/obj/item/clothing/neck/stripedgreenscarf=1,/obj/item/clothing/tie/waistcoat=1,
- /obj/item/clothing/under/skirt/black=1,/obj/item/clothing/under/skirt/blue=1,/obj/item/clothing/under/skirt/red=1,/obj/item/clothing/under/skirt/purple=1,
- /obj/item/clothing/under/sundress=2,/obj/item/clothing/under/stripeddress=1, /obj/item/clothing/under/sailordress=1, /obj/item/clothing/under/redeveninggown=1, /obj/item/clothing/under/blacktango=1,
- /obj/item/clothing/under/plaid_skirt=1,/obj/item/clothing/under/plaid_skirt/blue=1,/obj/item/clothing/under/plaid_skirt/purple=1,/obj/item/clothing/under/plaid_skirt/green=1,
- /obj/item/clothing/glasses/regular=2,/obj/item/clothing/head/sombrero=1,/obj/item/clothing/suit/poncho=1,
- /obj/item/clothing/suit/ianshirt=1,/obj/item/clothing/shoes/laceup=2,/obj/item/clothing/shoes/sneakers/black=4,
- /obj/item/clothing/shoes/sandal=1, /obj/item/clothing/gloves/fingerless=2,/obj/item/clothing/glasses/orange=1,/obj/item/clothing/glasses/red=1,
- /obj/item/weapon/storage/belt/fannypack=1, /obj/item/weapon/storage/belt/fannypack/blue=1, /obj/item/weapon/storage/belt/fannypack/red=1, /obj/item/clothing/suit/jacket/letterman=2,
- /obj/item/clothing/head/beanie=1, /obj/item/clothing/head/beanie/black=1, /obj/item/clothing/head/beanie/red=1, /obj/item/clothing/head/beanie/green=1, /obj/item/clothing/head/beanie/darkblue=1,
- /obj/item/clothing/head/beanie/purple=1, /obj/item/clothing/head/beanie/yellow=1, /obj/item/clothing/head/beanie/orange=1, /obj/item/clothing/head/beanie/cyan=1, /obj/item/clothing/head/beanie/christmas=1,
- /obj/item/clothing/head/beanie/striped=1, /obj/item/clothing/head/beanie/stripedred=1, /obj/item/clothing/head/beanie/stripedblue=1, /obj/item/clothing/head/beanie/stripedgreen=1,
- /obj/item/clothing/suit/jacket/letterman_red=1, /obj/item/clothing/under/wintercasualwear=1, /obj/item/clothing/under/casualwear=1, /obj/item/clothing/under/casualhoodie=1,
- /obj/item/clothing/under/casualhoodie/skirt=1,
- /obj/item/clothing/under/bb_sweater=2,
- /obj/item/clothing/under/bb_sweater/blue=2,
- /obj/item/clothing/under/bb_sweater/green=2,
- /obj/item/clothing/under/bb_sweater/purple =2,
- /obj/item/clothing/under/bb_sweater/red=2)
+ /obj/item/clothing/suit/jacket=2, /obj/item/clothing/suit/jacket/puffer/vest=2, /obj/item/clothing/suit/jacket/puffer=2,
+ /obj/item/clothing/under/suit_jacket/navy=1,/obj/item/clothing/under/suit_jacket/really_black=1,/obj/item/clothing/under/suit_jacket/burgundy=1,
+ /obj/item/clothing/under/suit_jacket/charcoal=1, /obj/item/clothing/under/suit_jacket/white=1,/obj/item/clothing/under/kilt=1,/obj/item/clothing/under/overalls=1,
+ /obj/item/clothing/under/sl_suit=1,/obj/item/clothing/under/pants/jeans=3,/obj/item/clothing/under/pants/classicjeans=2,
+ /obj/item/clothing/under/pants/camo = 1,/obj/item/clothing/under/pants/blackjeans=2,/obj/item/clothing/under/pants/khaki=2,
+ /obj/item/clothing/under/pants/white=2,/obj/item/clothing/under/pants/red=1,/obj/item/clothing/under/pants/black=2,
+ /obj/item/clothing/under/pants/tan=2,/obj/item/clothing/under/pants/track=1,/obj/item/clothing/suit/jacket/miljacket = 1,
+ /obj/item/clothing/neck/tie/blue=1, /obj/item/clothing/neck/tie/red=1, /obj/item/clothing/neck/tie/black=1, /obj/item/clothing/neck/tie/horrible=1,
+ /obj/item/clothing/neck/scarf/red=1,/obj/item/clothing/neck/scarf/green=1,/obj/item/clothing/neck/scarf/darkblue=1,
+ /obj/item/clothing/neck/scarf/purple=1,/obj/item/clothing/neck/scarf/yellow=1,/obj/item/clothing/neck/scarf/orange=1,
+ /obj/item/clothing/neck/scarf/cyan=1,/obj/item/clothing/neck/scarf=1,/obj/item/clothing/neck/scarf/black=1,
+ /obj/item/clothing/neck/scarf/zebra=1,/obj/item/clothing/neck/scarf/christmas=1,/obj/item/clothing/neck/stripedredscarf=1,
+ /obj/item/clothing/neck/stripedbluescarf=1,/obj/item/clothing/neck/stripedgreenscarf=1,/obj/item/clothing/tie/waistcoat=1,
+ /obj/item/clothing/under/skirt/black=1,/obj/item/clothing/under/skirt/blue=1,/obj/item/clothing/under/skirt/red=1,/obj/item/clothing/under/skirt/purple=1,
+ /obj/item/clothing/under/sundress=2,/obj/item/clothing/under/stripeddress=1, /obj/item/clothing/under/sailordress=1, /obj/item/clothing/under/redeveninggown=1, /obj/item/clothing/under/blacktango=1,
+ /obj/item/clothing/under/plaid_skirt=1,/obj/item/clothing/under/plaid_skirt/blue=1,/obj/item/clothing/under/plaid_skirt/purple=1,/obj/item/clothing/under/plaid_skirt/green=1,
+ /obj/item/clothing/glasses/regular=2,/obj/item/clothing/head/sombrero=1,/obj/item/clothing/suit/poncho=1,
+ /obj/item/clothing/suit/ianshirt=1,/obj/item/clothing/shoes/laceup=2,/obj/item/clothing/shoes/sneakers/black=4,
+ /obj/item/clothing/shoes/sandal=1, /obj/item/clothing/gloves/fingerless=2,/obj/item/clothing/glasses/orange=1,/obj/item/clothing/glasses/red=1,
+ /obj/item/weapon/storage/belt/fannypack=1, /obj/item/weapon/storage/belt/fannypack/blue=1, /obj/item/weapon/storage/belt/fannypack/red=1, /obj/item/clothing/suit/jacket/letterman=2,
+ /obj/item/clothing/head/beanie=1, /obj/item/clothing/head/beanie/black=1, /obj/item/clothing/head/beanie/red=1, /obj/item/clothing/head/beanie/green=1, /obj/item/clothing/head/beanie/darkblue=1,
+ /obj/item/clothing/head/beanie/purple=1, /obj/item/clothing/head/beanie/yellow=1, /obj/item/clothing/head/beanie/orange=1, /obj/item/clothing/head/beanie/cyan=1, /obj/item/clothing/head/beanie/christmas=1,
+ /obj/item/clothing/head/beanie/striped=1, /obj/item/clothing/head/beanie/stripedred=1, /obj/item/clothing/head/beanie/stripedblue=1, /obj/item/clothing/head/beanie/stripedgreen=1,
+ /obj/item/clothing/suit/jacket/letterman_red=1,
+ /obj/item/clothing/under/wintercasualwear=1, /obj/item/clothing/under/casualwear=1, /obj/item/clothing/under/casualhoodie=1,
+ /obj/item/clothing/under/casualhoodie/skirt=1,
+ /obj/item/clothing/under/bb_sweater=2,
+ /obj/item/clothing/under/bb_sweater/blue=2,
+ /obj/item/clothing/under/bb_sweater/green=2,
+ /obj/item/clothing/under/bb_sweater/purple =2,
+ /obj/item/clothing/under/bb_sweater/red=2
+ )
contraband = list(/obj/item/clothing/under/syndicate/tacticool=1,/obj/item/clothing/mask/balaclava=1,/obj/item/clothing/head/ushanka=1,/obj/item/clothing/under/soviet=1,/obj/item/weapon/storage/belt/fannypack/black=2,/obj/item/clothing/suit/jacket/letterman_syndie=1,/obj/item/clothing/under/jabroni=1, /obj/item/clothing/suit/vapeshirt=1, /obj/item/clothing/under/geisha=1,
/obj/item/clothing/under/wedding/bride_orange=1,
/obj/item/clothing/under/wedding/bride_purple=1,
@@ -1097,7 +1152,8 @@ IF YOU MODIFY THE PRODUCTS LIST OF A MACHINE, MAKE SURE TO UPDATE ITS RESUPPLY C
/obj/item/clothing/under/keyholesweater=1,
/obj/item/clothing/suit/doshjacket=1,
/obj/item/clothing/under/squatter_outfit = 1,
- /obj/item/clothing/head/squatter_hat = 1)
+ /obj/item/clothing/head/squatter_hat = 1
+ )
premium = list(/obj/item/clothing/under/suit_jacket/checkered=1,/obj/item/clothing/head/mailman=1,/obj/item/clothing/under/rank/mailman=1,/obj/item/clothing/suit/jacket/leather=1,/obj/item/clothing/suit/jacket/leather/overcoat=1,/obj/item/clothing/under/pants/mustangjeans=1,/obj/item/clothing/neck/necklace/dope=3,/obj/item/clothing/suit/jacket/letterman_nanotrasen=1)
refill_canister = /obj/item/weapon/vending_refill/clothing
@@ -1105,17 +1161,26 @@ IF YOU MODIFY THE PRODUCTS LIST OF A MACHINE, MAKE SURE TO UPDATE ITS RESUPPLY C
/obj/machinery/vending/kink
name = "KinkMate"
desc = "A vending machine for all your unmentionable desires."
+ icon = 'icons/obj/citvending.dmi'
icon_state = "kink"
product_slogans = "Kinky!;Sexy!;Check me out, big boy!"
vend_reply = "Have fun, you shameless pervert!"
- products = list(/obj/item/clothing/under/maid = 5, /obj/item/clothing/under/stripper_pink = 5, /obj/item/clothing/under/stripper_green = 5)
- contraband = list(/obj/item/weapon/restraints/handcuffs/fake/kinky = 5, /obj/item/clothing/neck/petcollar=5, /obj/item/clothing/under/mankini = 1)
+ products = list(
+ /obj/item/clothing/under/maid = 5,
+ /obj/item/clothing/under/stripper_pink = 5,
+ /obj/item/clothing/under/stripper_green = 5
+ )
+ contraband = list(/obj/item/weapon/restraints/handcuffs/fake/kinky = 5,
+ /obj/item/clothing/neck/petcollar=5,
+ /obj/item/clothing/under/mankini = 1
+ )
premium = list()
refill_canister = /obj/item/weapon/vending_refill/kink
/obj/machinery/vending/nazivend
name = "Nazivend"
desc = "A vending machine containing Nazi German supplies. A label reads: \"Remember the gorrilions lost.\""
+ icon = 'icons/obj/citvending.dmi'
icon_state = "nazi"
vend_reply = "SIEG HEIL!"
product_slogans = "Das Vierte Reich wird zuruckkehren!;ENTFERNEN JUDEN!;Billiger als die Juden jemals geben!;Rader auf dem adminbus geht rund und rund.;Warten Sie, warum wir wieder hassen Juden?- *BZZT*"
@@ -1140,6 +1205,7 @@ IF YOU MODIFY THE PRODUCTS LIST OF A MACHINE, MAKE SURE TO UPDATE ITS RESUPPLY C
/obj/machinery/vending/sovietvend
name = "KomradeVendtink"
desc = "Rodina-mat' zovyot!"
+ icon = 'icons/obj/citvending.dmi'
icon_state = "soviet"
vend_reply = "The fascist and capitalist svin'ya shall fall, komrade!"
product_slogans = "Quality worth waiting in line for!; Get Hammer and Sickled!; Sosvietsky soyuz above all!; With capitalist pigsky, you would have paid a fortunetink! ; Craftink in Motherland herself!"
@@ -1164,7 +1230,6 @@ IF YOU MODIFY THE PRODUCTS LIST OF A MACHINE, MAKE SURE TO UPDATE ITS RESUPPLY C
refill_canister = /obj/item/weapon/vending_refill/soviet
-
#undef STANDARD_CHARGE
#undef CONTRABAND_CHARGE
#undef COIN_CHARGE
diff --git a/code/game/mecha/equipment/tools/mining_tools.dm b/code/game/mecha/equipment/tools/mining_tools.dm
index ad8dbb9188d..3ac2e54f7ed 100644
--- a/code/game/mecha/equipment/tools/mining_tools.dm
+++ b/code/game/mecha/equipment/tools/mining_tools.dm
@@ -81,11 +81,11 @@
target.visible_message("[chassis] drills [target] with [src].", \
"[chassis] drills [target] with [src].")
add_logs(user, target, "attacked", "[name]", "(INTENT: [uppertext(user.a_intent)]) (DAMTYPE: [uppertext(damtype)])")
- if(ishuman(target))
- var/mob/living/carbon/human/H = target
- H.apply_damage(drill_damage, BRUTE, "chest")
- else if(target.stat == DEAD && target.butcher_results)
- target.harvest(chassis) // Butcher the mob with our drill.
+ if(target.stat == DEAD)
+ if(target.butcher_results)
+ target.harvest(chassis)//Butcher the mob with our drill.
+ else
+ target.gib()
else
target.take_bodypart_damage(drill_damage)
diff --git a/code/game/mecha/equipment/tools/other_tools.dm b/code/game/mecha/equipment/tools/other_tools.dm
index e4b2e330889..c182d9dceb1 100644
--- a/code/game/mecha/equipment/tools/other_tools.dm
+++ b/code/game/mecha/equipment/tools/other_tools.dm
@@ -198,7 +198,7 @@
/obj/item/mecha_parts/mecha_equipment/repair_droid/Destroy()
STOP_PROCESSING(SSobj, src)
if(chassis)
- chassis.overlays -= droid_overlay
+ chassis.cut_overlay(droid_overlay)
return ..()
/obj/item/mecha_parts/mecha_equipment/repair_droid/attach(obj/mecha/M as obj)
@@ -207,7 +207,7 @@
M.add_overlay(droid_overlay)
/obj/item/mecha_parts/mecha_equipment/repair_droid/detach()
- chassis.overlays -= droid_overlay
+ chassis.cut_overlay(droid_overlay)
STOP_PROCESSING(SSobj, src)
..()
@@ -219,7 +219,7 @@
/obj/item/mecha_parts/mecha_equipment/repair_droid/Topic(href, href_list)
..()
if(href_list["toggle_repairs"])
- chassis.overlays -= droid_overlay
+ chassis.cut_overlay(droid_overlay)
if(equip_ready)
START_PROCESSING(SSobj, src)
droid_overlay = new(src.icon, icon_state = "repair_droid_a")
@@ -259,7 +259,7 @@
else //no repair needed, we turn off
STOP_PROCESSING(SSobj, src)
set_ready_state(1)
- chassis.overlays -= droid_overlay
+ chassis.cut_overlay(droid_overlay)
droid_overlay = new(src.icon, icon_state = "repair_droid")
chassis.add_overlay(droid_overlay)
@@ -301,7 +301,7 @@
var/pow_chan
if(A)
for(var/c in use_channels)
- if(A.master && A.master.powered(c))
+ if(A.powered(c))
pow_chan = c
break
return pow_chan
@@ -339,13 +339,13 @@
if(A)
var/pow_chan
for(var/c in list(EQUIP,ENVIRON,LIGHT))
- if(A.master.powered(c))
+ if(A.powered(c))
pow_chan = c
break
if(pow_chan)
var/delta = min(20, chassis.cell.maxcharge-cur_charge)
chassis.give_power(delta)
- A.master.use_power(delta*coeff, pow_chan)
+ A.use_power(delta*coeff, pow_chan)
diff --git a/code/game/mecha/equipment/weapons/weapons.dm b/code/game/mecha/equipment/weapons/weapons.dm
index 0ef9eb90157..1bfa1600446 100644
--- a/code/game/mecha/equipment/weapons/weapons.dm
+++ b/code/game/mecha/equipment/weapons/weapons.dm
@@ -100,10 +100,21 @@
projectile = /obj/item/projectile/ion
fire_sound = 'sound/weapons/Laser.ogg'
+/obj/item/mecha_parts/mecha_equipment/weapon/energy/tesla
+ equip_cooldown = 35
+ name = "\improper MKI Tesla Cannon"
+ desc = "A weapon for combat exosuits. Fires bolts of electricity similar to the experimental tesla engine"
+ icon_state = "mecha_ion"
+ origin_tech = "materials=4;combat=5;magnets=4"
+ energy_drain = 500
+ projectile = /obj/item/projectile/energy/tesla_cannon
+ fire_sound = 'sound/magic/lightningbolt.ogg'
+
+
/obj/item/mecha_parts/mecha_equipment/weapon/energy/pulse
equip_cooldown = 30
name = "eZ-13 MK2 heavy pulse rifle"
- desc = "A weapon for combat exosuits. Shoots powerful destructive blasts capable of demloishing obstacles."
+ desc = "A weapon for combat exosuits. Shoots powerful destructive blasts capable of demolishing obstacles."
icon_state = "mecha_pulse"
energy_drain = 120
origin_tech = "materials=3;combat=6;powerstorage=4"
@@ -113,7 +124,7 @@
/obj/item/mecha_parts/mecha_equipment/weapon/energy/plasma
equip_cooldown = 10
name = "217-D Heavy Plasma Cutter"
- desc = "A device that shoots resonant plasma bursts at extreme velocity. The blasts are capable of crushing rock and demloishing solid obstacles."
+ desc = "A device that shoots resonant plasma bursts at extreme velocity. The blasts are capable of crushing rock and demolishing solid obstacles."
icon_state = "mecha_plasmacutter"
item_state = "plasmacutter"
energy_drain = 30
@@ -380,7 +391,7 @@
//Classic extending punching glove, but weaponised!
/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/launcher/punching_glove
name = "\improper Oingo Boingo Punch-face"
- desc = "Equipment for clown exosuits. Delivers fun to right to your face!"
+ desc = "Equipment for clown exosuits. Delivers fun right to your face!"
icon_state = "mecha_punching_glove"
energy_drain = 250
equip_cooldown = 20
diff --git a/code/game/mecha/mech_fabricator.dm b/code/game/mecha/mech_fabricator.dm
index 0ec759e20bf..0490bec4d20 100644
--- a/code/game/mecha/mech_fabricator.dm
+++ b/code/game/mecha/mech_fabricator.dm
@@ -160,7 +160,7 @@
updateUsrDialog()
sleep(get_construction_time_w_coeff(D))
use_power = 1
- overlays -= "fab-active"
+ cut_overlay("fab-active")
desc = initial(desc)
var/location = get_step(src,(dir))
@@ -457,7 +457,7 @@
var/mat_overlay = "fab-load-[material2name(W.materials[1])]"
add_overlay(mat_overlay)
sleep(10)
- overlays -= mat_overlay //No matter what the overlay shall still be deleted
+ cut_overlay(mat_overlay) //No matter what the overlay shall still be deleted
updateUsrDialog()
diff --git a/code/game/mecha/mecha_construction_paths.dm b/code/game/mecha/mecha_construction_paths.dm
index 03f012ba1ad..83726a73c03 100644
--- a/code/game/mecha/mecha_construction_paths.dm
+++ b/code/game/mecha/mecha_construction_paths.dm
@@ -96,7 +96,7 @@
const_holder.icon = 'icons/mecha/mech_construction.dmi'
const_holder.icon_state = "ripley0"
const_holder.density = 1
- const_holder.overlays.len = 0
+ const_holder.cut_overlays(TRUE)
qdel(src)
return
diff --git a/code/game/mecha/mecha_defense.dm b/code/game/mecha/mecha_defense.dm
index 4a0c38514d5..d936f863d90 100644
--- a/code/game/mecha/mecha_defense.dm
+++ b/code/game/mecha/mecha_defense.dm
@@ -152,7 +152,7 @@
if(istype(W, /obj/item/device/mmi))
if(mmi_move_inside(W,user))
- user << "[src]-[W] interface initialized successfuly"
+ user << "[src]-[W] interface initialized successfully."
else
user << "[src]-[W] interface initialization failed."
return
diff --git a/code/game/mecha/mecha_parts.dm b/code/game/mecha/mecha_parts.dm
index 067b1cee0de..34e883dfa14 100644
--- a/code/game/mecha/mecha_parts.dm
+++ b/code/game/mecha/mecha_parts.dm
@@ -114,7 +114,7 @@
/obj/item/mecha_parts/part/gygax_head
name = "\improper Gygax head"
- desc = "A Gygax head. Houses advanced surveilance and targeting sensors."
+ desc = "A Gygax head. Houses advanced surveillance and targeting sensors."
icon_state = "gygax_head"
origin_tech = "programming=2;materials=4;magnets=3;engineering=3"
@@ -167,7 +167,7 @@
/obj/item/mecha_parts/part/durand_head
name = "\improper Durand head"
- desc = "A Durand head. Houses advanced surveilance and targeting sensors."
+ desc = "A Durand head. Houses advanced surveillance and targeting sensors."
icon_state = "durand_head"
origin_tech = "programming=2;materials=3;magnets=3;engineering=3"
@@ -243,12 +243,12 @@
/obj/item/mecha_parts/part/honker_left_leg
name = "\improper H.O.N.K left leg"
- desc = "A H.O.N.K left leg. The foot appears just large enough to fully accomodate a clown shoe."
+ desc = "A H.O.N.K left leg. The foot appears just large enough to fully accommodate a clown shoe."
icon_state = "honker_l_leg"
/obj/item/mecha_parts/part/honker_right_leg
name = "\improper H.O.N.K right leg"
- desc = "A H.O.N.K right leg. The foot appears just large enough to fully accomodate a clown shoe."
+ desc = "A H.O.N.K right leg. The foot appears just large enough to fully accommodate a clown shoe."
icon_state = "honker_r_leg"
diff --git a/code/game/mecha/working/ripley.dm b/code/game/mecha/working/ripley.dm
index 9357c831d9d..a1719089027 100644
--- a/code/game/mecha/working/ripley.dm
+++ b/code/game/mecha/working/ripley.dm
@@ -46,7 +46,7 @@
/obj/mecha/working/ripley/update_icon()
..()
if (hides)
- overlays = null
+ cut_overlays()
if(hides < 3)
add_overlay(image("icon" = "mecha.dmi", "icon_state" = occupant ? "ripley-g" : "ripley-g-open"))
else
diff --git a/code/game/objects/effects/contraband.dm b/code/game/objects/effects/contraband.dm
index 13c21315176..0400fcffe66 100644
--- a/code/game/objects/effects/contraband.dm
+++ b/code/game/objects/effects/contraband.dm
@@ -1,7 +1,7 @@
//########################## POSTERS ##################################
-#define NUM_OF_POSTER_DESIGNS 36 // contraband posters
+#define NUM_OF_POSTER_DESIGNS 44 // contraband posters
#define NUM_OF_POSTER_DESIGNS_LEGIT 35 // corporate approved posters
@@ -54,7 +54,15 @@ list(name = "- Punch Shit", desc = " Fight things for no reason, like a man!"),
list(name = "- The Griffin", desc = " The Griffin commands you to be the worst you can be. Will you?"),
list(name = "- Lizard", desc = " This lewd poster depicts a lizard preparing to mate."),
list(name = "- Free Drone", desc = " This poster commemorates the bravery of the rogue drone banned by CentComm."),
-list(name = "- Busty Backdoor Xeno Babes 6", desc = " Get a load, or give, of these all natural Xenos!") )
+list(name = "- Busty Backdoor Xeno Babes 6", desc = " Get a load, or give, of these all natural Xenos!"),
+list(name = "- Robust Softdrinks", desc = " Robust Softdrinks: More robust than a toolbox to the head!"),
+list(name = "- Shambler's Juice", desc = "~Shake me up some of that Shambler's Juice!~"),
+list(name = "- Pwr Game", desc = "The POWER that gamers CRAVE! In partnership with Vlad's Salad."),
+list(name = "- Sun-kist", desc = "Drink the stars!"),
+list(name = "- Space Cola", desc = "Your favorite cola, in space."),
+list(name = "- Space-Up!", desc = "Sucked out into space by the FLAVOR!"),
+list(name = "- Kudzu", desc = "A poster advertising a movie about plants. How dangerous could they possibly be?"),
+list(name = "- Masked Men", desc = "A poster advertising a movie about some masked men.") )
// LEGIT
diff --git a/code/game/objects/effects/forcefields.dm b/code/game/objects/effects/forcefields.dm
index e13bc449c91..045673b019c 100644
--- a/code/game/objects/effects/forcefields.dm
+++ b/code/game/objects/effects/forcefields.dm
@@ -23,3 +23,8 @@
/obj/effect/forcefield/mime/New()
..()
QDEL_IN(src, timeleft)
+
+/obj/effect/forcefield/mime/advanced
+ name = "invisible blockade"
+ desc = "You're goona be here a while."
+ timeleft = 600
\ No newline at end of file
diff --git a/code/game/objects/effects/mines.dm b/code/game/objects/effects/mines.dm
index edee8e27f50..1f89258eb6d 100644
--- a/code/game/objects/effects/mines.dm
+++ b/code/game/objects/effects/mines.dm
@@ -11,12 +11,13 @@
victim << "*click*"
/obj/effect/mine/Crossed(AM as mob|obj)
- if(ismob(AM))
- var/mob/MM = AM
- if(!(MM.movement_type & FLYING))
+ if(isturf(loc))
+ if(ismob(AM))
+ var/mob/MM = AM
+ if(!(MM.movement_type & FLYING))
+ triggermine(AM)
+ else
triggermine(AM)
- else
- triggermine(AM)
/obj/effect/mine/proc/triggermine(mob/victim)
if(triggered)
@@ -169,4 +170,4 @@
victim.status_flags |= GOTTAGOREALLYFAST
sleep(duration)
victim.status_flags &= ~GOTTAGOREALLYFAST
- victim << "You slow down."
+ victim << "You slow down."
\ No newline at end of file
diff --git a/code/game/objects/effects/spawners/lootdrop.dm b/code/game/objects/effects/spawners/lootdrop.dm
index 563a646d5fa..cc9a3e9d176 100644
--- a/code/game/objects/effects/spawners/lootdrop.dm
+++ b/code/game/objects/effects/spawners/lootdrop.dm
@@ -169,3 +169,20 @@
/obj/structure/closet/crate/secure/loot = 20,
"" = 80
)
+
+/obj/effect/spawner/lootdrop/organ_spawner
+ name = "organ spawner"
+ loot = list(
+ /obj/item/organ/heart/gland/bloody = 7,
+ /obj/item/organ/heart/gland/bodysnatch = 4,
+ /obj/item/organ/heart/gland/egg = 7,
+ /obj/item/organ/heart/gland/emp = 3,
+ /obj/item/organ/heart/gland/mindshock = 5,
+ /obj/item/organ/heart/gland/plasma = 7,
+ /obj/item/organ/heart/gland/pop = 5,
+ /obj/item/organ/heart/gland/slime = 4,
+ /obj/item/organ/heart/gland/spiderman = 5,
+ /obj/item/organ/heart/gland/ventcrawling = 1,
+ /obj/item/organ/body_egg/alien_embryo = 1,
+ /obj/item/organ/hivelord_core = 2)
+ lootcount = 3
diff --git a/code/game/objects/explosion.dm b/code/game/objects/explosion.dm
index ab32002543e..1a6dbe7e6d9 100644
--- a/code/game/objects/explosion.dm
+++ b/code/game/objects/explosion.dm
@@ -163,6 +163,7 @@ var/explosionid = 1
I.throw_at(throw_at, throw_range, I.throw_speed)
if(TICK_CHECK)
+ stoplag()
var/circumference = (PI * init_dist * 2) + 8 //+8 to prevent shit gaps
if(exploded_this_tick.len > circumference) //only do this every revolution
for(var/Unexplode in exploded_this_tick)
diff --git a/code/game/objects/items.dm b/code/game/objects/items.dm
index b18620c8965..f04f45009cc 100644
--- a/code/game/objects/items.dm
+++ b/code/game/objects/items.dm
@@ -298,36 +298,50 @@ var/global/image/fire_overlay = image("icon" = 'icons/effects/fire.dmi', "icon_s
var/obj/item/weapon/storage/S = W
if(S.use_to_pickup)
if(S.collection_mode) //Mode is set to collect multiple items on a tile and we clicked on a valid one.
- if(isturf(src.loc))
+ if(isturf(loc))
var/list/rejections = list()
- var/success = 0
- var/failure = 0
-
- for(var/obj/item/I in src.loc)
- if(S.collection_mode == 2 && !istype(I,src.type)) // We're only picking up items of the target type
- failure = 1
- continue
- if(I.type in rejections) // To limit bag spamming: any given type only complains once
- continue
- if(!S.can_be_inserted(I, stop_messages = 1)) // Note can_be_inserted still makes noise when the answer is no
- if(S.contents.len >= S.storage_slots)
- break
- rejections += I.type // therefore full bags are still a little spammy
- failure = 1
- continue
-
- success = 1
- S.handle_item_insertion(I, 1) //The 1 stops the "You put the [src] into [S]" insertion message from being displayed.
- if(success && !failure)
- user << "You put everything [S.preposition] [S]."
- else if(success)
- user << "You put some things [S.preposition] [S]."
- else
- user << "You fail to pick anything up with [S]!"
+
+ var/list/things = loc.contents.Copy()
+ if (S.collection_mode == 2)
+ things = typecache_filter_list(things, typecacheof(type))
+
+ var/len = things.len
+ if(!len)
+ user << "You failed to pick up anything with [S]."
+ return
+ var/datum/progressbar/progress = new(user, len, loc)
+
+ while (do_after(user, 10, TRUE, S, FALSE, CALLBACK(src, .proc/handle_mass_pickup, S, things, loc, rejections, progress)))
+ sleep(1)
+
+ qdel(progress)
+
+ user << "You put everything you could [S.preposition] [S]."
else if(S.can_be_inserted(src))
S.handle_item_insertion(src)
+/obj/item/proc/handle_mass_pickup(obj/item/weapon/storage/S, list/things, atom/thing_loc, list/rejections, datum/progressbar/progress)
+ for(var/obj/item/I in things)
+ things -= I
+ if(I.loc != thing_loc)
+ continue
+ if(I.type in rejections) // To limit bag spamming: any given type only complains once
+ continue
+ if(!S.can_be_inserted(I, stop_messages = TRUE)) // Note can_be_inserted still makes noise when the answer is no
+ if(S.contents.len >= S.storage_slots)
+ break
+ rejections += I.type // therefore full bags are still a little spammy
+ continue
+
+ S.handle_item_insertion(I, TRUE) //The 1 stops the "You put the [src] into [S]" insertion message from being displayed.
+
+ if (TICK_CHECK)
+ progress.update(progress.goal - things.len)
+ return TRUE
+
+ progress.update(progress.goal - things.len)
+ return FALSE
// afterattack() and attack() prototypes moved to _onclick/item_attack.dm for consistency
@@ -375,7 +389,6 @@ var/global/image/fire_overlay = image("icon" = 'icons/effects/fire.dmi', "icon_s
if(item_action_slot_check(slot, user)) //some items only give their actions buttons when in a specific slot.
A.Grant(user)
-
//sometimes we only want to grant the item's action if it's equipped in a specific slot.
/obj/item/proc/item_action_slot_check(slot, mob/user)
if(slot == slot_in_backpack || slot == slot_legcuffed) //these aren't true slots, so avoid granting actions there
@@ -493,7 +506,7 @@ var/global/image/fire_overlay = image("icon" = 'icons/effects/fire.dmi', "icon_s
var/index = blood_splatter_index()
var/icon/blood_splatter_icon = blood_splatter_icons[index]
if(blood_splatter_icon)
- overlays -= blood_splatter_icon
+ cut_overlay(blood_splatter_icon)
/obj/item/clothing/gloves/clean_blood()
. = ..()
diff --git a/code/game/objects/items/blueprints.dm b/code/game/objects/items/blueprints.dm
index a1d848a1e77..f361f86431d 100644
--- a/code/game/objects/items/blueprints.dm
+++ b/code/game/objects/items/blueprints.dm
@@ -146,10 +146,8 @@
/obj/item/areaeditor/proc/get_area()
var/turf/T = get_turf(usr)
var/area/A = T.loc
- A = A.master
return A
-
/obj/item/areaeditor/proc/get_area_type(area/A = get_area())
if(A.outdoors)
return AREA_SPACE
diff --git a/code/game/objects/items/bodybag.dm b/code/game/objects/items/bodybag.dm
index 3c57419fbc3..b3d8606460b 100644
--- a/code/game/objects/items/bodybag.dm
+++ b/code/game/objects/items/bodybag.dm
@@ -21,11 +21,6 @@
R.add_fingerprint(user)
qdel(src)
-/obj/item/weapon/storage/box/bodybags
- name = "body bags"
- desc = "The label indicates that it contains body bags."
- icon_state = "bodybags"
-
/obj/item/weapon/storage/box/bodybags/New()
..()
for(var/i in 1 to 7)
diff --git a/code/game/objects/items/charter.dm b/code/game/objects/items/charter.dm
index ead1f9e820f..2b3bec4f045 100644
--- a/code/game/objects/items/charter.dm
+++ b/code/game/objects/items/charter.dm
@@ -61,7 +61,7 @@
user << "Your name has been sent to your employers for approval."
// Autoapproves after a certain time
- response_timer_id = addtimer(CALLBACK(src, .proc/rename_station, new_name, user), approval_time, TIMER_STOPPABLE)
+ response_timer_id = addtimer(CALLBACK(src, .proc/rename_station, new_name, user.name, user.real_name, key_name(user)), approval_time, TIMER_STOPPABLE)
admins << "CUSTOM STATION RENAME:[key_name_admin(user)] (?) proposes to rename the station to [new_name] (will autoapprove in [approval_time / 10] seconds). (BSA) (REJECT) (RPLY)"
/obj/item/station_charter/proc/reject_proposed(user)
@@ -80,20 +80,20 @@
deltimer(response_timer_id)
response_timer_id = null
-/obj/item/station_charter/proc/rename_station(designation, mob/user)
+/obj/item/station_charter/proc/rename_station(designation, uname, ureal_name, ukey)
if(config && config.server_name)
world.name = "[config.server_name]: [designation]"
else
world.name = designation
station_name = designation
- minor_announce("[user.real_name] has designated your station as [station_name()]", "Captain's Charter", 0)
- log_game("[key_name(user)] has renamed the station as [station_name()].")
+ minor_announce("[ureal_name] has designated your station as [station_name()]", "Captain's Charter", 0)
+ log_game("[ukey] has renamed the station as [station_name()].")
name = "station charter for [station_name()]"
desc = "An official document entrusting the governance of \
- [station_name()] and surrounding space to Captain [user]."
+ [station_name()] and surrounding space to Captain [uname]."
if(!unlimited_uses)
used = TRUE
-#undef STATION_RENAME_TIME_LIMIT
+#undef STATION_RENAME_TIME_LIMIT
\ No newline at end of file
diff --git a/code/game/objects/items/devices/PDA/PDA.dm b/code/game/objects/items/devices/PDA/PDA.dm
index 30c72d6ccc9..3682fbb39eb 100644
--- a/code/game/objects/items/devices/PDA/PDA.dm
+++ b/code/game/objects/items/devices/PDA/PDA.dm
@@ -416,7 +416,7 @@ var/global/list/obj/item/device/pda/PDAs = list()
var/alert_s = input(U,"Alert severity level","Ping Drones",null) as null|anything in list("Low","Medium","High","Critical")
if(A && alert_s)
var/msg = "NON-DRONE PING: [U.name]: [alert_s] priority alert in [A.name]!"
- _alert_drones(msg, 1)
+ _alert_drones(msg, TRUE)
U << msg
@@ -999,13 +999,6 @@ var/global/list/obj/item/device/pda/PDAs = list()
else
user << "You do not have a PDA. You should make an issue report about this."
-//Some spare PDAs in a box
-/obj/item/weapon/storage/box/PDAs
- name = "spare PDAs"
- desc = "A box of spare PDA microcomputers."
- icon = 'icons/obj/storage.dmi'
- icon_state = "pda"
-
/obj/item/weapon/storage/box/PDAs/New()
..()
new /obj/item/device/pda(src)
diff --git a/code/game/objects/items/devices/megaphone.dm b/code/game/objects/items/devices/megaphone.dm
index 6fb6401106b..2f77861a6a4 100644
--- a/code/game/objects/items/devices/megaphone.dm
+++ b/code/game/objects/items/devices/megaphone.dm
@@ -4,7 +4,6 @@
icon_state = "megaphone"
item_state = "radio"
w_class = WEIGHT_CLASS_SMALL
- flags = FPRINT
siemens_coefficient = 1
var/spamcheck = 0
var/emagged = 0
diff --git a/code/game/objects/items/devices/paicard.dm b/code/game/objects/items/devices/paicard.dm
index e271940b940..cd3292d9531 100644
--- a/code/game/objects/items/devices/paicard.dm
+++ b/code/game/objects/items/devices/paicard.dm
@@ -93,10 +93,6 @@
var/newlaws = copytext(sanitize(input("Enter any additional directives you would like your pAI personality to follow. Note that these directives will not override the personality's allegiance to its imprinted master. Conflicting directives will be ignored.", "pAI Directive Configuration", pai.laws.supplied[1]) as message),1,MAX_MESSAGE_LEN)
if(newlaws && pai)
pai.add_supplied_law(0,newlaws)
- pai << "Your supplemental directives have been updated. Your new directives are:"
- pai << "Prime Directive :
[pai.laws.zeroth]"
- for(var/slaws in pai.laws.supplied)
- pai << "Supplemental Directives:
[slaws]"
if(href_list["toggle_holo"])
if(pai.canholo)
pai << "Your owner has disabled your holomatrix projectors!"
diff --git a/code/game/objects/items/devices/radio/intercom.dm b/code/game/objects/items/devices/radio/intercom.dm
index 9a3bbfca492..5482af5fc03 100644
--- a/code/game/objects/items/devices/radio/intercom.dm
+++ b/code/game/objects/items/devices/radio/intercom.dm
@@ -56,7 +56,7 @@
if(((world.timeofday - last_tick) > 30) || ((world.timeofday - last_tick) < 0))
last_tick = world.timeofday
- var/area/A = get_area_master(src)
+ var/area/A = get_area(src)
if(!A || emped)
on = 0
else
diff --git a/code/game/objects/items/devices/scanners.dm b/code/game/objects/items/devices/scanners.dm
index edf3a11e023..96ae0d164bc 100644
--- a/code/game/objects/items/devices/scanners.dm
+++ b/code/game/objects/items/devices/scanners.dm
@@ -125,7 +125,7 @@ MASS SPECTROMETER
if(ishuman(M))
var/mob/living/carbon/human/H = M
- if(H.heart_attack && H.stat != DEAD)
+ if(H.undergoing_cardiac_arrest() && H.stat != DEAD)
user << "Subject suffering from heart attack: Apply defibrillator immediately!"
if(iscarbon(M))
diff --git a/code/game/objects/items/devices/taperecorder.dm b/code/game/objects/items/devices/taperecorder.dm
index 503ecba4501..c3f6dd488fd 100644
--- a/code/game/objects/items/devices/taperecorder.dm
+++ b/code/game/objects/items/devices/taperecorder.dm
@@ -267,7 +267,7 @@
/obj/item/device/tape/proc/fix()
- overlays -= "ribbonoverlay"
+ cut_overlay("ribbonoverlay")
ruined = 0
diff --git a/code/game/objects/items/stacks/sheets/glass.dm b/code/game/objects/items/stacks/sheets/glass.dm
index ec41468a5bf..f9267dc3780 100644
--- a/code/game/objects/items/stacks/sheets/glass.dm
+++ b/code/game/objects/items/stacks/sheets/glass.dm
@@ -192,8 +192,6 @@ var/global/list/datum/stack_recipe/reinforced_glass_recipes = list ( \
var/mob/living/carbon/human/H = AM
if(PIERCEIMMUNE in H.dna.species.species_traits)
return
- if(H.dna.species.id == "slime" || "jelly")
- return
var/picked_def_zone = pick("l_leg", "r_leg")
var/obj/item/bodypart/O = H.get_bodypart(picked_def_zone)
if(!istype(O))
@@ -211,4 +209,4 @@ var/global/list/datum/stack_recipe/reinforced_glass_recipes = list ( \
"You slide on the broken glass!")
cooldown = world.time
- H.Weaken(3)
\ No newline at end of file
+ H.Weaken(3)
diff --git a/code/game/objects/items/stacks/sheets/sheet_types.dm b/code/game/objects/items/stacks/sheets/sheet_types.dm
index 6855a982b37..672128a4cef 100644
--- a/code/game/objects/items/stacks/sheets/sheet_types.dm
+++ b/code/game/objects/items/stacks/sheets/sheet_types.dm
@@ -1,12 +1,13 @@
/* Diffrent misc types of sheets
* Contains:
- * Metal
- * Plasteel
- * Wood
- * Cloth
- * Cardboard
- * Runed Metal (cult)
- * Brass (clockwork cult)
+ * Metal
+ * Plasteel
+ * Wood
+ * Cloth
+ * Plastic
+ * Cardboard
+ * Runed Metal (cult)
+ * Brass (clockwork cult)
*/
/*
@@ -357,3 +358,27 @@ var/global/list/datum/stack_recipe/brass_recipes = list ( \
throw_speed = 1
throw_range = 3
origin_tech = "materials=2;biotech=2"
+
+var/global/list/datum/stack_recipe/plastic_recipes = list(
+ new /datum/stack_recipe("plastic flaps", /obj/structure/plasticflaps, 5, one_per_turf = 1, on_floor = 1, time = 40))
+
+/obj/item/stack/sheet/plastic
+ name = "plastic"
+ desc = "Compress dinosaur over millions of years, then refine, split and mold, and voila! You have plastic."
+ singular_name = "plastic sheet"
+ icon_state = "sheet-plastic"
+ throwforce = 7
+ flags = CONDUCT
+ origin_tech = "materials=1"
+ origin_tech = "materials=1;biotech=1"
+ merge_type = /obj/item/stack/sheet/plastic
+
+/obj/item/stack/sheet/plastic/fifty
+ amount = 50
+
+/obj/item/stack/sheet/plastic/five
+ amount = 5
+
+/obj/item/stack/sheet/plastic/New()
+ recipes = plastic_recipes
+ . = ..()
diff --git a/code/game/objects/items/taster.dm b/code/game/objects/items/taster.dm
new file mode 100644
index 00000000000..e555f6a92cb
--- /dev/null
+++ b/code/game/objects/items/taster.dm
@@ -0,0 +1,20 @@
+/obj/item/taster
+ name = "taster"
+ desc = "Tastes things, so you don't have to!"
+ icon = 'icons/obj/surgery.dmi'
+ icon_state = "tonguenormal"
+
+ w_class = WEIGHT_CLASS_TINY
+
+ var/taste_sensitivity = 15
+
+/obj/item/taster/get_spans()
+ return list()
+
+/obj/item/taster/afterattack(atom/O, mob/user, proximity)
+ if(!proximity)
+ return
+
+ if(O.reagents)
+ var/message = O.reagents.generate_taste_message(taste_sensitivity)
+ user << "[src] tastes [message] in [O]."
diff --git a/code/game/objects/items/weapons/AI_modules.dm b/code/game/objects/items/weapons/AI_modules.dm
index 0575611bb74..5fcc3dba94f 100644
--- a/code/game/objects/items/weapons/AI_modules.dm
+++ b/code/game/objects/items/weapons/AI_modules.dm
@@ -57,10 +57,9 @@ AI MODULES
message_admins("[key_name_admin(user)] tried to upload laws to [law_datum.owner ? key_name_admin(law_datum.owner) : "an AI core"] that would exceed the law cap.")
overflow = TRUE
- var/law2log = src.transmitInstructions(law_datum, user, overflow) //Freeforms return something extra we need to log
+ var/law2log = transmitInstructions(law_datum, user, overflow) //Freeforms return something extra we need to log
if(law_datum.owner)
user << "Upload complete. [law_datum.owner]'s laws have been modified."
- law_datum.owner.show_laws()
law_datum.owner.law_change_counter++
else
user << "Upload complete."
@@ -75,7 +74,7 @@ AI MODULES
//The proc that actually changes the silicon's laws.
/obj/item/weapon/aiModule/proc/transmitInstructions(datum/ai_laws/law_datum, mob/sender, overflow = FALSE)
if(law_datum.owner)
- law_datum.owner << "[sender] has uploaded a change to the laws you must follow using a [name]. From now on, these are your laws: "
+ law_datum.owner << "[sender] has uploaded a change to the laws you must follow using a [name]."
/******************** Modules ********************/
diff --git a/code/game/objects/items/weapons/RPD.dm b/code/game/objects/items/weapons/RPD.dm
index 386c1f930d6..a4d77803e05 100644
--- a/code/game/objects/items/weapons/RPD.dm
+++ b/code/game/objects/items/weapons/RPD.dm
@@ -576,7 +576,7 @@ var/global/list/RPD_recipes=list(
return
user << "You start building a disposals pipe..."
playsound(get_turf(src), 'sound/machines/click.ogg', 50, 1)
- if(do_after(user, 20, target = A))
+ if(do_after(user, 4, target = A))
var/obj/structure/disposalconstruct/C = new (A, queued_p_type ,queued_p_dir)
if(!C.can_place())
diff --git a/code/game/objects/items/weapons/defib.dm b/code/game/objects/items/weapons/defib.dm
index 965c9fe1463..47bc2d5835c 100644
--- a/code/game/objects/items/weapons/defib.dm
+++ b/code/game/objects/items/weapons/defib.dm
@@ -1,4 +1,6 @@
//backpack item
+#define HALFWAYCRITDEATH ((HEALTH_THRESHOLD_CRIT + HEALTH_THRESHOLD_DEAD) * 0.5)
+
/obj/item/weapon/defibrillator
name = "defibrillator"
desc = "A device that delivers powerful shocks to detachable paddles that resuscitate incapacitated patients."
@@ -240,7 +242,6 @@
paddles = make_paddles()
bcell = new(src)
update_icon()
- return
/obj/item/weapon/defibrillator/compact/combat
name = "combat defibrillator"
@@ -253,7 +254,6 @@
paddles = make_paddles()
bcell = new /obj/item/weapon/stock_parts/cell/infinite(src)
update_icon()
- return
/obj/item/weapon/defibrillator/compact/combat/loaded/attackby(obj/item/weapon/W, mob/user, params)
if(W == paddles)
@@ -339,7 +339,6 @@
return 1
/obj/item/weapon/twohanded/shockpaddles/attack(mob/M, mob/user)
- var/halfwaycritdeath = (HEALTH_THRESHOLD_CRIT + HEALTH_THRESHOLD_DEAD) / 2
if(busy)
return
@@ -359,6 +358,11 @@
else
user << "[src] are recharging!"
return
+
+ if(user.a_intent == INTENT_DISARM)
+ do_disarm(M, user)
+ return
+
if(!ishuman(M))
if(req_defib)
user << "The instructions on [defib] don't mention how to revive that..."
@@ -367,101 +371,109 @@
return
var/mob/living/carbon/human/H = M
- if(user.a_intent == INTENT_DISARM)
- if(req_defib && defib.safety)
- return
- if(!req_defib && !combat)
- return
- busy = 1
- H.visible_message("[user] has touched [H.name] with [src]!", \
- "[user] has touched [H.name] with [src]!")
- H.adjustStaminaLoss(50)
- H.Weaken(5)
- H.updatehealth() //forces health update before next life tick
- playsound(get_turf(src), 'sound/machines/defib_zap.ogg', 50, 1, -1)
- H.emote("gasp")
- add_logs(user, M, "stunned", src)
- if(req_defib)
- defib.deductcharge(revivecost)
- cooldown = 1
- busy = 0
- update_icon()
- if(req_defib)
- defib.cooldowncheck(user)
- else
- recharge(60)
- return
if(user.zone_selected != "chest")
user << "You need to target your patient's \
chest with [src]!"
return
+
if(user.a_intent == INTENT_HARM)
- if(req_defib && defib.safety)
- return
- if(!req_defib && !combat)
- return
- user.visible_message("[user] begins to place [src] on [M.name]'s chest.",
- "You overcharge the paddles and begin to place them onto [M]'s chest...")
- busy = 1
- update_icon()
- if(do_after(user, 30, target = M))
- user.visible_message("[user] places [src] on [M.name]'s chest.",
- "You place [src] on [M.name]'s chest and begin to charge them.")
- var/turf/T = get_turf(defib)
- playsound(get_turf(src), 'sound/machines/defib_charge.ogg', 50, 0)
- if(req_defib)
- T.audible_message("\The [defib] lets out an urgent beep and lets out a steadily rising hum...")
- else
- user.audible_message("[src] let out an urgent beep.")
- if(do_after(user, 30, target = M)) //Takes longer due to overcharging
- if(!M)
- busy = 0
- update_icon()
- return
- if(M && M.stat == DEAD)
- user << "[M] is dead."
- playsound(get_turf(src), 'sound/machines/defib_failed.ogg', 50, 0)
- busy = 0
- update_icon()
- return
- user.visible_message("[user] shocks [M] with \the [src]!", "You shock [M] with \the [src]!")
- playsound(get_turf(src), 'sound/machines/defib_zap.ogg', 100, 1, -1)
- playsound(loc, 'sound/weapons/Egloves.ogg', 100, 1, -1)
- var/mob/living/carbon/human/HU = M
- M.emote("scream")
- if(!HU.heart_attack)
- HU.heart_attack = 1
- if(!HU.stat)
- HU.visible_message("[M] thrashes wildly, clutching at their chest!",
- "You feel a horrible agony in your chest!")
- HU.apply_damage(50, BURN, "chest")
- add_logs(user, M, "overloaded the heart of", defib)
- M.Weaken(5)
- M.Jitter(100)
- if(req_defib)
- defib.deductcharge(revivecost)
- cooldown = 1
- busy = 0
- update_icon()
- if(!req_defib)
- recharge(60)
- if(req_defib && (defib.cooldowncheck(user)))
- return
- busy = 0
- update_icon()
+ do_harm(H, user)
return
+
if((!req_defib && grab_ghost) || (req_defib && defib.grab_ghost))
H.notify_ghost_cloning("Your heart is being defibrillated!")
H.grab_ghost() // Shove them back in their body.
else if(!H.suiciding && !(H.disabilities & NOCLONE)&& !H.hellbound)
H.notify_ghost_cloning("Your heart is being defibrillated. Re-enter your corpse if you want to be revived!", source = src)
- user.visible_message("[user] begins to place [src] on [M.name]'s chest.", "You begin to place [src] on [M.name]'s chest...")
+ do_help(H, user)
+
+
+/obj/item/weapon/twohanded/shockpaddles/proc/do_disarm(mob/living/M, mob/living/user)
+ if(req_defib && defib.safety)
+ return
+ if(!req_defib && !combat)
+ return
+ busy = 1
+ M.visible_message("[user] has touched [M] with [src]!", \
+ "[user] has touched [M] with [src]!")
+ M.adjustStaminaLoss(50)
+ M.Weaken(5)
+ M.updatehealth() //forces health update before next life tick
+ playsound(get_turf(src), 'sound/machines/defib_zap.ogg', 50, 1, -1)
+ M.emote("gasp")
+ add_logs(user, M, "stunned", src)
+ if(req_defib)
+ defib.deductcharge(revivecost)
+ cooldown = 1
+ busy = 0
+ update_icon()
+ if(req_defib)
+ defib.cooldowncheck(user)
+ else
+ recharge(60)
+
+/obj/item/weapon/twohanded/shockpaddles/proc/do_harm(mob/living/carbon/human/H, mob/living/user)
+ if(req_defib && defib.safety)
+ return
+ if(!req_defib && !combat)
+ return
+ user.visible_message("[user] begins to place [src] on [H]'s chest.",
+ "You overcharge the paddles and begin to place them onto [H]'s chest...")
+ busy = 1
+ update_icon()
+ if(do_after(user, 30, target = H))
+ user.visible_message("[user] places [src] on [H]'s chest.",
+ "You place [src] on [H]'s chest and begin to charge them.")
+ var/turf/T = get_turf(defib)
+ playsound(get_turf(src), 'sound/machines/defib_charge.ogg', 50, 0)
+ if(req_defib)
+ T.audible_message("\The [defib] lets out an urgent beep and lets out a steadily rising hum...")
+ else
+ user.audible_message("[src] let out an urgent beep.")
+ if(do_after(user, 30, target = H)) //Takes longer due to overcharging
+ if(!H)
+ busy = 0
+ update_icon()
+ return
+ if(H && H.stat == DEAD)
+ user << "[H] is dead."
+ playsound(get_turf(src), 'sound/machines/defib_failed.ogg', 50, 0)
+ busy = 0
+ update_icon()
+ return
+ user.visible_message("[user] shocks [H] with \the [src]!", "You shock [H] with \the [src]!")
+ playsound(get_turf(src), 'sound/machines/defib_zap.ogg', 100, 1, -1)
+ playsound(loc, 'sound/weapons/Egloves.ogg', 100, 1, -1)
+ H.emote("scream")
+ if(H.can_heartattack() && !H.undergoing_cardiac_arrest())
+ if(!H.stat)
+ H.visible_message("[H] thrashes wildly, clutching at their chest!",
+ "You feel a horrible agony in your chest!")
+ H.set_heartattack(TRUE)
+ H.apply_damage(50, BURN, "chest")
+ add_logs(user, H, "overloaded the heart of", defib)
+ H.Weaken(5)
+ H.Jitter(100)
+ if(req_defib)
+ defib.deductcharge(revivecost)
+ cooldown = 1
+ busy = 0
+ update_icon()
+ if(!req_defib)
+ recharge(60)
+ if(req_defib && (defib.cooldowncheck(user)))
+ return
+ busy = 0
+ update_icon()
+
+/obj/item/weapon/twohanded/shockpaddles/proc/do_help(mob/living/carbon/human/H, mob/living/user)
+ user.visible_message("[user] begins to place [src] on [H]'s chest.", "You begin to place [src] on [H]'s chest...")
busy = 1
update_icon()
- if(do_after(user, 30, target = M)) //beginning to place the paddles on patient's chest to allow some time for people to move away to stop the process
- user.visible_message("[user] places [src] on [M.name]'s chest.", "You place [src] on [M.name]'s chest.")
+ if(do_after(user, 30, target = H)) //beginning to place the paddles on patient's chest to allow some time for people to move away to stop the process
+ user.visible_message("[user] places [src] on [H]'s chest.", "You place [src] on [H]'s chest.")
playsound(get_turf(src), 'sound/machines/defib_charge.ogg', 50, 0)
var/tplus = world.time - H.timeofdeath
// past this much time the patient is unrecoverable
@@ -472,7 +484,7 @@
var/tloss = DEFIB_TIME_LOSS * 10
var/total_burn = 0
var/total_brute = 0
- if(do_after(user, 20, target = M)) //placed on chest and short delay to shock for dramatic effect, revive time is 5sec total
+ if(do_after(user, 20, target = H)) //placed on chest and short delay to shock for dramatic effect, revive time is 5sec total
for(var/obj/item/carried_item in H.contents)
if(istype(carried_item, /obj/item/clothing/suit/space))
if((!src.combat && !req_defib) || (req_defib && !defib.combat))
@@ -482,7 +494,7 @@
update_icon()
return
if(H.stat == DEAD)
- M.visible_message("[M]'s body convulses a bit.")
+ H.visible_message("[H]'s body convulses a bit.")
playsound(get_turf(src), "bodyfall", 50, 1)
playsound(get_turf(src), 'sound/machines/defib_zap.ogg', 50, 1, -1)
total_brute = H.getBruteLoss()
@@ -512,23 +524,24 @@
playsound(get_turf(src), 'sound/machines/defib_failed.ogg', 50, 0)
else
//If the body has been fixed so that they would not be in crit when defibbed, give them oxyloss to put them back into crit
- if (H.health > halfwaycritdeath)
- H.adjustOxyLoss(H.health - halfwaycritdeath, 0)
+ if (H.health > HALFWAYCRITDEATH)
+ H.adjustOxyLoss(H.health - HALFWAYCRITDEATH, 0)
else
var/overall_damage = total_brute + total_burn + H.getToxLoss() + H.getOxyLoss()
var/mobhealth = H.health
- H.adjustOxyLoss((mobhealth - halfwaycritdeath) * (H.getOxyLoss() / overall_damage), 0)
- H.adjustToxLoss((mobhealth - halfwaycritdeath) * (H.getToxLoss() / overall_damage), 0)
- H.adjustFireLoss((mobhealth - halfwaycritdeath) * (total_burn / overall_damage), 0)
- H.adjustBruteLoss((mobhealth - halfwaycritdeath) * (total_brute / overall_damage), 0)
+ H.adjustOxyLoss((mobhealth - HALFWAYCRITDEATH) * (H.getOxyLoss() / overall_damage), 0)
+ H.adjustToxLoss((mobhealth - HALFWAYCRITDEATH) * (H.getToxLoss() / overall_damage), 0)
+ H.adjustFireLoss((mobhealth - HALFWAYCRITDEATH) * (total_burn / overall_damage), 0)
+ H.adjustBruteLoss((mobhealth - HALFWAYCRITDEATH) * (total_brute / overall_damage), 0)
H.updatehealth() // Previous "adjust" procs don't update health, so we do it manually.
user.visible_message("[req_defib ? "[defib]" : "[src]"] pings: Resuscitation successful.")
playsound(get_turf(src), 'sound/machines/defib_success.ogg', 50, 0)
+ H.set_heartattack(FALSE)
H.revive()
H.emote("gasp")
if(tplus > tloss)
H.setBrainLoss( max(0, min(99, ((tlimit - tplus) / tlimit * 100))))
- add_logs(user, M, "revived", defib)
+ add_logs(user, H, "revived", defib)
if(req_defib)
defib.deductcharge(revivecost)
cooldown = 1
@@ -537,14 +550,14 @@
defib.cooldowncheck(user)
else
recharge(60)
- else if(H.heart_attack)
- H.heart_attack = 0
- user.visible_message("[req_defib ? "[defib]" : "[src]"] pings: Patient's heart is now beating again.")
- playsound(get_turf(src), 'sound/machines/defib_zap.ogg', 50, 1, -1)
-
else if (!H.getorgan(/obj/item/organ/heart))
user.visible_message("[req_defib ? "[defib]" : "[src]"] buzzes: Patient's heart is missing. Operation aborted.")
playsound(get_turf(src), 'sound/machines/defib_failed.ogg', 50, 0)
+ else if(H.undergoing_cardiac_arrest())
+ H.set_heartattack(FALSE)
+ user.visible_message("[req_defib ? "[defib]" : "[src]"] pings: Patient's heart is now beating again.")
+ playsound(get_turf(src), 'sound/machines/defib_zap.ogg', 50, 1, -1)
+
else
user.visible_message("[req_defib ? "[defib]" : "[src]"] buzzes: Patient is not in a valid state. Operation aborted.")
@@ -579,3 +592,5 @@
icon_state = "defibpaddles0"
item_state = "defibpaddles0"
req_defib = FALSE
+
+#undef HALFWAYCRITDEATH
diff --git a/code/game/objects/items/weapons/explosives.dm b/code/game/objects/items/weapons/explosives.dm
index 2bf34009d61..8a855f1fa2a 100644
--- a/code/game/objects/items/weapons/explosives.dm
+++ b/code/game/objects/items/weapons/explosives.dm
@@ -103,8 +103,7 @@
if(target)
if(!QDELETED(target))
location = get_turf(target)
- target.overlays -= image_overlay
- target.priority_overlays -= image_overlay
+ target.cut_overlay(image_overlay, TRUE)
else
location = get_turf(src)
if(location)
diff --git a/code/game/objects/items/weapons/flamethrower.dm b/code/game/objects/items/weapons/flamethrower.dm
index c5b1ccdceb3..1919a0d8f3a 100644
--- a/code/game/objects/items/weapons/flamethrower.dm
+++ b/code/game/objects/items/weapons/flamethrower.dm
@@ -61,9 +61,17 @@
return
/obj/item/weapon/flamethrower/afterattack(atom/target, mob/user, flag)
- if(flag) return // too close
- // Make sure our user is still holding us
- if(user && user.get_active_held_item() == src)
+ if(flag)
+ return // too close
+ if(ishuman(user))
+ var/mob/living/carbon/human/H = user
+ if(H.dna.check_mutation(HULK))
+ user << "Your meaty finger is much too large for the trigger guard!"
+ return
+ if(NOGUNS in H.dna.species.species_traits)
+ user << "Your fingers don't fit in the trigger guard!"
+ return
+ if(user && user.get_active_held_item() == src) // Make sure our user is still holding us
var/turf/target_turf = get_turf(target)
if(target_turf)
var/turflist = getline(user, target_turf)
diff --git a/code/game/objects/items/weapons/grenades/ghettobomb.dm b/code/game/objects/items/weapons/grenades/ghettobomb.dm
index a96cf31956b..18e47cf7e87 100644
--- a/code/game/objects/items/weapons/grenades/ghettobomb.dm
+++ b/code/game/objects/items/weapons/grenades/ghettobomb.dm
@@ -47,7 +47,7 @@
if(clown_check(user))
user << "You light the [name]!"
active = 1
- overlays -= image('icons/obj/grenade.dmi', icon_state = "improvised_grenade_filled")
+ cut_overlay(image('icons/obj/grenade.dmi', icon_state = "improvised_grenade_filled"), TRUE) //this line make no sense
icon_state = initial(icon_state) + "_active"
add_fingerprint(user)
var/turf/bombturf = get_turf(src)
diff --git a/code/game/objects/items/weapons/grenades/plastic.dm b/code/game/objects/items/weapons/grenades/plastic.dm
index eecbaa88d2a..7c186f3126b 100644
--- a/code/game/objects/items/weapons/grenades/plastic.dm
+++ b/code/game/objects/items/weapons/grenades/plastic.dm
@@ -130,8 +130,7 @@
if(target)
if(!QDELETED(target))
location = get_turf(target)
- target.overlays -= image_overlay
- target.priority_overlays -= image_overlay
+ target.cut_overlay(image_overlay, TRUE)
else
location = get_turf(src)
if(location)
@@ -158,8 +157,7 @@
if(target)
if(!QDELETED(target))
location = get_turf(target)
- target.overlays -= image_overlay
- target.priority_overlays -= image_overlay
+ target.cut_overlay(image_overlay, TRUE)
else
location = get_turf(src)
if(location)
diff --git a/code/game/objects/items/weapons/his_grace.dm b/code/game/objects/items/weapons/his_grace.dm
new file mode 100644
index 00000000000..cf394ada227
--- /dev/null
+++ b/code/game/objects/items/weapons/his_grace.dm
@@ -0,0 +1,224 @@
+//His Grace is a very special weapon granted only to traitor chaplains.
+//When awakened, He thirsts for blood and begins ticking a "bloodthirst" counter.
+//The wielder of His Grace is immune to stuns and gradually heals.
+//If the wielder fails to feed His Grace in time, He will devour them and become incredibly aggressive.
+//Leaving His Grace alone for some time will reset His thirst and put Him to sleep.
+//Using His Grace effectively requires extreme speed and care.
+/obj/item/weapon/his_grace
+ name = "artistic toolbox"
+ desc = "A toolbox painted bright green. Looking at it makes you feel uneasy."
+ icon_state = "his_grace"
+ item_state = "artistic_toolbox"
+ icon = 'icons/obj/weapons.dmi'
+ w_class = WEIGHT_CLASS_GIGANTIC
+ origin_tech = "combat=4;engineering=4;syndicate=2"
+ force = 12
+ attack_verb = list("robusted")
+ hitsound = 'sound/weapons/smash.ogg'
+ var/ascended = FALSE
+ var/awakened = 0
+ var/victims_needed = 20 //how many victims needed to ascend
+ var/bloodthirst = HIS_GRACE_SATIATED
+ var/prev_bloodthirst = HIS_GRACE_SATIATED
+ var/force_bonus = 0
+ var/ascend_bonus = 15
+
+/obj/item/weapon/his_grace/New()
+ ..()
+ START_PROCESSING(SSprocessing, src)
+
+/obj/item/weapon/his_grace/Destroy()
+ STOP_PROCESSING(SSprocessing, src)
+ for(var/mob/living/L in src)
+ L.forceMove(get_turf(src))
+ return ..()
+
+/obj/item/weapon/his_grace/attack_self(mob/living/user)
+ if(!awakened)
+ INVOKE_ASYNC(src, .proc/awaken, user)
+
+/obj/item/weapon/his_grace/attack(mob/living/M, mob/user)
+ if(awakened && M.stat)
+ consume(M)
+ if(LAZYLEN(contents) >= victims_needed)
+ ascend()
+ else
+ ..()
+
+/obj/item/weapon/his_grace/CtrlClick(mob/user) //you can't pull his grace
+ attack_hand(user)
+
+/obj/item/weapon/his_grace/examine(mob/user)
+ ..()
+ if(awakened)
+ switch(bloodthirst)
+ if(HIS_GRACE_SATIATED to HIS_GRACE_PECKISH)
+ user << "[src] isn't very hungry. Not yet."
+ if(HIS_GRACE_PECKISH to HIS_GRACE_HUNGRY)
+ user << "[src] would like a snack."
+ if(HIS_GRACE_HUNGRY to HIS_GRACE_FAMISHED)
+ user << "[src] is quite hungry now."
+ if(HIS_GRACE_FAMISHED to HIS_GRACE_STARVING)
+ user << "[src] is openly salivating at the sight of you. Be careful."
+ if(HIS_GRACE_STARVING to HIS_GRACE_CONSUME_OWNER)
+ user << "You walk a fine line. [src] is very close to devouring you."
+ if(HIS_GRACE_CONSUME_OWNER to HIS_GRACE_FALL_ASLEEP)
+ user << "[src] is shaking violently and staring directly at you."
+ else
+ user << "[src] is latched closed."
+
+/obj/item/weapon/his_grace/relaymove(mob/living/user) //Allows changelings, etc. to climb out of Him after they revive, provided He isn't active
+ if(!awakened)
+ user.forceMove(get_turf(src))
+ user.visible_message("[user] scrambles out of [src]!", "You climb out of [src]!")
+
+/obj/item/weapon/his_grace/process()
+ if(!bloodthirst)
+ drowse()
+ return
+ if(bloodthirst < HIS_GRACE_CONSUME_OWNER)
+ adjust_bloodthirst(1 + Floor(LAZYLEN(contents) * 0.5)) //Maybe adjust this?
+ else
+ adjust_bloodthirst(1) //don't cool off rapidly once we're at the point where His Grace consumes all.
+ var/mob/living/master = get_atom_on_turf(src, /mob/living)
+ if(istype(master) && (src in master.held_items))
+ switch(bloodthirst)
+ if(HIS_GRACE_CONSUME_OWNER to HIS_GRACE_FALL_ASLEEP)
+ master.visible_message("[src] turns on [master]!", "[src] turns on you!")
+ do_attack_animation(master, null, src)
+ master.emote("scream")
+ master.remove_status_effect(STATUS_EFFECT_HISGRACE)
+ flags &= ~NODROP
+ master.Weaken(3)
+ master.adjustBruteLoss(master.maxHealth)
+ playsound(master, 'sound/effects/splat.ogg', 100, 0)
+ else
+ master.apply_status_effect(STATUS_EFFECT_HISGRACE)
+ return
+ forceMove(get_turf(src)) //no you can't put His Grace in a locker you just have to deal with Him
+ if(bloodthirst < HIS_GRACE_CONSUME_OWNER)
+ return
+ if(bloodthirst >= HIS_GRACE_FALL_ASLEEP)
+ drowse()
+ return
+ var/list/targets = list()
+ for(var/mob/living/L in oview(2, src))
+ targets += L
+ if(!LAZYLEN(targets))
+ return
+ var/mob/living/L = pick(targets)
+ step_to(src, L)
+ if(Adjacent(L))
+ if(!L.stat)
+ L.visible_message("[src] lunges at [L]!", "[src] lunges at you!")
+ do_attack_animation(L, null, src)
+ playsound(L, 'sound/weapons/smash.ogg', 50, 1)
+ playsound(L, 'sound/misc/desceration-01.ogg', 50, 1)
+ L.adjustBruteLoss(force)
+ adjust_bloodthirst(-5) //Don't stop attacking they're right there!
+ else
+ consume(L)
+
+/obj/item/weapon/his_grace/proc/awaken(mob/user) //Good morning, Mr. Grace.
+ if(awakened)
+ return
+ awakened = TRUE
+ user.visible_message("[src] begins to rattle. He thirsts.", "You flick [src]'s latch up. You hope this is a good idea.")
+ name = "His Grace"
+ desc = "A bloodthirsty artifact created by a profane rite."
+ gender = MALE
+ adjust_bloodthirst(1)
+ force_bonus = HIS_GRACE_FORCE_BONUS * LAZYLEN(contents)
+ playsound(user, 'sound/effects/pope_entry.ogg', 100)
+ icon_state = "green_awakened"
+
+/obj/item/weapon/his_grace/proc/drowse() //Good night, Mr. Grace.
+ if(!awakened || ascended)
+ return
+ var/turf/T = get_turf(src)
+ T.visible_message("[src] slowly stops rattling and falls still, His latch snapping closed.")
+ playsound(loc, 'sound/weapons/batonextend.ogg', 100, 1)
+ name = initial(name)
+ desc = initial(desc)
+ icon_state = initial(icon_state)
+ gender = initial(gender)
+ force = initial(force)
+ force_bonus = initial(force_bonus)
+ awakened = FALSE
+ bloodthirst = 0
+
+/obj/item/weapon/his_grace/proc/consume(mob/living/meal) //Here's your dinner, Mr. Grace.
+ if(!meal)
+ return
+ meal.visible_message("[src] swings open and devours [meal]!", "[src] consumes you!")
+ meal.adjustBruteLoss(200)
+ playsound(meal, 'sound/misc/desceration-02.ogg', 75, 1)
+ playsound(src, 'sound/items/eatfood.ogg', 100, 1)
+ meal.forceMove(src)
+ force_bonus += HIS_GRACE_FORCE_BONUS
+ prev_bloodthirst = bloodthirst
+ if(prev_bloodthirst < HIS_GRACE_CONSUME_OWNER)
+ bloodthirst = max(LAZYLEN(contents), 1) //Never fully sated, and His hunger will only grow.
+ else
+ bloodthirst = HIS_GRACE_CONSUME_OWNER
+ update_stats()
+
+/obj/item/weapon/his_grace/proc/adjust_bloodthirst(amt)
+ prev_bloodthirst = bloodthirst
+ if(prev_bloodthirst < HIS_GRACE_CONSUME_OWNER)
+ bloodthirst = Clamp(bloodthirst + amt, HIS_GRACE_SATIATED, HIS_GRACE_CONSUME_OWNER)
+ else
+ bloodthirst = Clamp(bloodthirst + amt, HIS_GRACE_CONSUME_OWNER, HIS_GRACE_FALL_ASLEEP)
+ update_stats()
+
+/obj/item/weapon/his_grace/proc/update_stats()
+ flags &= ~NODROP
+ var/mob/living/master = get_atom_on_turf(src, /mob/living)
+ switch(bloodthirst)
+ if(HIS_GRACE_CONSUME_OWNER to HIS_GRACE_FALL_ASLEEP)
+ if(HIS_GRACE_CONSUME_OWNER > prev_bloodthirst)
+ master.visible_message("[src] enters a frenzy!")
+ if(HIS_GRACE_STARVING to HIS_GRACE_CONSUME_OWNER)
+ flags |= NODROP
+ if(HIS_GRACE_STARVING > prev_bloodthirst)
+ master.visible_message("[src] is starving!", "[src]'s bloodlust overcomes you. [src] must be fed, or you will become His meal.\
+ [force_bonus < 15 ? " And still, His power grows.":""]")
+ force_bonus = max(force_bonus, 15)
+ if(HIS_GRACE_FAMISHED to HIS_GRACE_STARVING)
+ flags |= NODROP
+ if(HIS_GRACE_FAMISHED > prev_bloodthirst)
+ master.visible_message("[src] is very hungry!", "Spines sink into your hand. [src] must feed immediately.\
+ [force_bonus < 10 ? " His power grows.":""]")
+ force_bonus = max(force_bonus, 10)
+ if(prev_bloodthirst >= HIS_GRACE_STARVING)
+ master.visible_message("[src] is now only very hungry!", "Your bloodlust recedes.")
+ if(HIS_GRACE_HUNGRY to HIS_GRACE_FAMISHED)
+ if(HIS_GRACE_HUNGRY > prev_bloodthirst)
+ master.visible_message("[src] is getting hungry.", "You feel [src]'s hunger within you.\
+ [force_bonus < 5 ? " His power grows.":""]")
+ force_bonus = max(force_bonus, 5)
+ if(prev_bloodthirst >= HIS_GRACE_FAMISHED)
+ master.visible_message("[src] is now only somewhat hungry.", "[src]'s hunger recedes a little...")
+ if(HIS_GRACE_PECKISH to HIS_GRACE_HUNGRY)
+ if(HIS_GRACE_PECKISH > prev_bloodthirst)
+ master.visible_message("[src] is feeling snackish.", "[src] begins to hunger.")
+ if(prev_bloodthirst >= HIS_GRACE_HUNGRY)
+ master.visible_message("[src] is now only a little peckish.", "[src]'s hunger recedes somewhat...")
+ if(HIS_GRACE_SATIATED to HIS_GRACE_PECKISH)
+ if(prev_bloodthirst >= HIS_GRACE_PECKISH)
+ master.visible_message("[src] is satiated.", "[src]'s hunger recedes...")
+ force = initial(force) + force_bonus
+
+/obj/item/weapon/his_grace/proc/ascend()
+ if(ascended)
+ return
+ var/mob/living/carbon/human/master = loc
+ force_bonus += ascend_bonus
+ desc = "A legendary toolbox and a distant artifact from The Age of Three Powers. On its three latches engraved are the words \"The Sun\", \"The Moon\", and \"The Stars\". The entire toolbox has the words \"The World\" engraved into its sides."
+ icon_state = "his_grace_ascended"
+ item_state = "toolbox_gold"
+ ascended = TRUE
+ playsound(master, 'sound/effects/his_grace_ascend.ogg', 100)
+ if(istype(master))
+ master.visible_message("Gods will be watching.", "God will be watching.")
+ name = "[master]'s mythical toolbox of three powers"
diff --git a/code/game/objects/items/weapons/paint.dm b/code/game/objects/items/weapons/paint.dm
index c10125bb4e3..d32883b3485 100644
--- a/code/game/objects/items/weapons/paint.dm
+++ b/code/game/objects/items/weapons/paint.dm
@@ -4,7 +4,7 @@
/obj/item/weapon/paint
gender= PLURAL
name = "paint"
- desc = "Used to recolor floors and walls. Can not be removed by the janitor."
+ desc = "Used to recolor floors and walls. Can be removed by the janitor."
icon = 'icons/obj/items.dmi'
icon_state = "paint_neutral"
item_color = "FFFFFF"
@@ -92,6 +92,7 @@
/obj/item/weapon/paint/paint_remover
gender = PLURAL
name = "paint remover"
+ desc = "Used to remove color from floors and walls."
icon_state = "paint_neutral"
/obj/item/weapon/paint/paint_remover/afterattack(turf/target, mob/user, proximity)
diff --git a/code/game/objects/items/weapons/pneumaticCannon.dm b/code/game/objects/items/weapons/pneumaticCannon.dm
index a89accdaf61..a702edf9b94 100644
--- a/code/game/objects/items/weapons/pneumaticCannon.dm
+++ b/code/game/objects/items/weapons/pneumaticCannon.dm
@@ -77,10 +77,16 @@
Fire(user, target)
-/obj/item/weapon/pneumatic_cannon/proc/Fire(var/mob/living/carbon/human/user, var/atom/target)
+/obj/item/weapon/pneumatic_cannon/proc/Fire(mob/living/carbon/human/user, var/atom/target)
if(!istype(user) && !target)
return
var/discharge = 0
+ if(user.dna.check_mutation(HULK))
+ user << "Your meaty finger is much too large for the trigger guard!"
+ return
+ if(NOGUNS in user.dna.species.species_traits)
+ user << "Your fingers don't fit in the trigger guard!"
+ return
if(!loadedItems || !loadedWeightClass)
user << "\The [src] has nothing loaded."
return
diff --git a/code/game/objects/items/weapons/storage/bags.dm b/code/game/objects/items/weapons/storage/bags.dm
index 11225a12dba..43e8b17532e 100644
--- a/code/game/objects/items/weapons/storage/bags.dm
+++ b/code/game/objects/items/weapons/storage/bags.dm
@@ -94,7 +94,7 @@
/obj/item/weapon/storage/bag/ore/holding //miners, your messiah has arrived
name = "mining satchel of holding"
- desc = "A revolution in convenience, this satchel allows for infinite ore storage. It's been outfitted with anti-malfunction safety measures."
+ desc = "A revolution in convenience, this satchel allows for huge amounts of ore storage. It's been outfitted with anti-malfunction safety measures."
storage_slots = INFINITY
max_combined_w_class = INFINITY
origin_tech = "bluespace=4;materials=3;engineering=3"
diff --git a/code/game/objects/items/weapons/storage/boxes.dm b/code/game/objects/items/weapons/storage/boxes.dm
index d1a54d1ef58..ab41b3f5111 100644
--- a/code/game/objects/items/weapons/storage/boxes.dm
+++ b/code/game/objects/items/weapons/storage/boxes.dm
@@ -28,7 +28,17 @@
item_state = "syringe_kit"
resistance_flags = FLAMMABLE
var/foldable = /obj/item/stack/sheet/cardboard
+ var/illustration = "writing"
+/obj/item/weapon/storage/box/Initialize()
+ . = ..()
+ update_icon()
+
+/obj/item/weapon/storage/box/update_icon()
+ . = ..()
+ if(illustration)
+ cut_overlays()
+ add_overlay(image('icons/obj/storage.dmi', "[illustration]"))
/obj/item/weapon/storage/box/attack_self(mob/user)
..()
@@ -57,6 +67,26 @@
return ..()
+//Disk boxes
+/obj/item/weapon/storage/box/disks
+ name = "diskette box"
+ illustration = "disk_kit"
+
+/obj/item/weapon/storage/box/disks/Initialize()
+ ..()
+ for(var/i in 1 to 7)
+ new /obj/item/weapon/disk/data(src)
+
+
+/obj/item/weapon/storage/box/disks_plantgene
+ name = "plant data disks box"
+ illustration = "disk_kit"
+
+/obj/item/weapon/storage/box/disks_plantgene/Initialize()
+ ..()
+ for(var/i in 1 to 7)
+ new /obj/item/weapon/disk/plantgene(src)
+
// Ordinary survival box
/obj/item/weapon/storage/box/survival/New()
..()
@@ -107,7 +137,7 @@
/obj/item/weapon/storage/box/gloves
name = "box of latex gloves"
desc = "Contains sterile latex gloves."
- icon_state = "latex"
+ illustration = "latex"
/obj/item/weapon/storage/box/gloves/New()
..()
@@ -127,7 +157,7 @@
/obj/item/weapon/storage/box/syringes
name = "box of syringes"
desc = "A box full of syringes."
- icon_state = "syringe"
+ illustration = "syringe"
/obj/item/weapon/storage/box/syringes/New()
..()
@@ -137,7 +167,7 @@
/obj/item/weapon/storage/box/medipens
name = "box of medipens"
desc = "A box full of epinephrine MediPens."
- icon_state = "syringe"
+ illustration = "syringe"
/obj/item/weapon/storage/box/medipens/New()
..()
@@ -147,7 +177,7 @@
/obj/item/weapon/storage/box/medipens/utility
name = "stimpack value kit"
desc = "A box with several stimpack medipens for the economical miner."
- icon_state = "syringe"
+ illustration = "syringe"
/obj/item/weapon/storage/box/medipens/utility/New()
..()
@@ -156,7 +186,7 @@
/obj/item/weapon/storage/box/beakers
name = "box of beakers"
- icon_state = "beaker"
+ illustration = "beaker"
/obj/item/weapon/storage/box/beakers/New()
..()
@@ -177,7 +207,8 @@
/obj/item/weapon/storage/box/flashbangs
name = "box of flashbangs (WARNING)"
desc = "WARNING: These devices are extremely dangerous and can cause blindness or deafness in repeated use."
- icon_state = "flashbang"
+ icon_state = "secbox"
+ illustration = "flashbang"
/obj/item/weapon/storage/box/flashbangs/New()
..()
@@ -187,7 +218,8 @@
/obj/item/weapon/storage/box/flashes
name = "box of flashbulbs"
desc = "WARNING: Flashes can cause serious eye damage, protective eyewear is required."
- icon_state = "flashbang"
+ icon_state = "secbox"
+ illustration = "flashbang"
/obj/item/weapon/storage/box/flashes/New()
..()
@@ -197,7 +229,7 @@
/obj/item/weapon/storage/box/wall_flash
name = "wall-mounted flash kit"
desc = "This box contains everything necessary to build a wall-mounted flash. WARNING: Flashes can cause serious eye damage, protective eyewear is required."
- icon_state = "flashbang"
+ illustration = "flashbang"
/obj/item/weapon/storage/box/wall_flash/New()
..()
@@ -216,7 +248,7 @@
/obj/item/weapon/storage/box/teargas
name = "box of tear gas grenades (WARNING)"
desc = "WARNING: These devices are extremely dangerous and can cause blindness and skin irritation."
- icon_state = "flashbang"
+ illustration = "flashbang"
/obj/item/weapon/storage/box/teargas/New()
..()
@@ -226,7 +258,7 @@
/obj/item/weapon/storage/box/emps
name = "box of emp grenades"
desc = "A box with 5 emp grenades."
- icon_state = "flashbang"
+ illustration = "flashbang"
/obj/item/weapon/storage/box/emps/New()
..()
@@ -236,7 +268,7 @@
/obj/item/weapon/storage/box/trackimp
name = "boxed tracking implant kit"
desc = "Box full of scum-bag tracking utensils."
- icon_state = "implant"
+ illustration = "implant"
/obj/item/weapon/storage/box/trackimp/New()
..()
@@ -249,7 +281,7 @@
/obj/item/weapon/storage/box/minertracker
name = "boxed tracking implant kit"
desc = "For finding those who have died on the accursed lavaworld."
- icon_state = "implant"
+ illustration = "implant"
/obj/item/weapon/storage/box/minertracker/New()
..()
@@ -262,7 +294,7 @@
/obj/item/weapon/storage/box/chemimp
name = "boxed chemical implant kit"
desc = "Box of stuff used to implant chemicals."
- icon_state = "implant"
+ illustration = "implant"
/obj/item/weapon/storage/box/chemimp/New()
..()
@@ -274,7 +306,7 @@
/obj/item/weapon/storage/box/exileimp
name = "boxed exile implant kit"
desc = "Box of exile implants. It has a picture of a clown being booted through the Gateway."
- icon_state = "implant"
+ illustration = "implant"
/obj/item/weapon/storage/box/exileimp/New()
..()
@@ -282,10 +314,15 @@
new /obj/item/weapon/implantcase/exile(src)
new /obj/item/weapon/implanter(src)
+/obj/item/weapon/storage/box/bodybags
+ name = "body bags"
+ desc = "The label indicates that it contains body bags."
+ illustration = "bodybags"
+
/obj/item/weapon/storage/box/rxglasses
name = "box of prescription glasses"
desc = "This box contains nerd glasses."
- icon_state = "glasses"
+ illustration = "glasses"
/obj/item/weapon/storage/box/rxglasses/New()
..()
@@ -322,7 +359,7 @@
/obj/item/weapon/storage/box/donkpockets
name = "box of donk-pockets"
desc = "Instructions: Heat in microwave. Product will cool if not eaten within seven minutes."
- icon_state = "donk_kit"
+ illustration = "donk_kit"
/obj/item/weapon/storage/box/donkpockets/New()
..()
@@ -332,7 +369,6 @@
/obj/item/weapon/storage/box/monkeycubes
name = "monkey cube box"
desc = "Drymate brand monkey cubes. Just add water!"
- icon = 'icons/obj/food/food.dmi'
icon_state = "monkeycubebox"
storage_slots = 7
can_hold = list(/obj/item/weapon/reagent_containers/food/snacks/monkeycube)
@@ -345,17 +381,23 @@
/obj/item/weapon/storage/box/ids
name = "box of spare IDs"
desc = "Has so many empty IDs."
- icon_state = "id"
+ illustration = "id"
/obj/item/weapon/storage/box/ids/New()
..()
for(var/i in 1 to 7)
new /obj/item/weapon/card/id(src)
+//Some spare PDAs in a box
+/obj/item/weapon/storage/box/PDAs
+ name = "spare PDAs"
+ desc = "A box of spare PDA microcomputers."
+ illustration = "pda"
+
/obj/item/weapon/storage/box/silver_ids
name = "box of spare silver IDs"
desc = "Shiny IDs for important people."
- icon_state = "id"
+ illustration = "id"
/obj/item/weapon/storage/box/silver_ids/New()
..()
@@ -365,7 +407,7 @@
/obj/item/weapon/storage/box/prisoner
name = "box of prisoner IDs"
desc = "Take away their last shred of dignity, their name."
- icon_state = "id"
+ illustration = "id"
/obj/item/weapon/storage/box/prisoner/New()
..()
@@ -380,7 +422,7 @@
/obj/item/weapon/storage/box/seccarts
name = "box of PDA security cartridges"
desc = "A box full of PDA cartridges used by Security."
- icon_state = "pda"
+ illustration = "pda"
/obj/item/weapon/storage/box/seccarts/New()
..()
@@ -391,7 +433,7 @@
/obj/item/weapon/storage/box/firingpins
name = "box of standard firing pins"
desc = "A box full of standard firing pins, to allow newly-developed firearms to operate."
- icon_state = "id"
+ illustration = "id"
/obj/item/weapon/storage/box/firingpins/New()
..()
@@ -401,7 +443,7 @@
/obj/item/weapon/storage/box/lasertagpins
name = "box of laser tag firing pins"
desc = "A box full of laser tag firing pins, to allow newly-developed firearms to require wearing brightly coloured plastic armor before being able to be used."
- icon_state = "id"
+ illustration = "id"
/obj/item/weapon/storage/box/lasertagpins/New()
..()
@@ -412,7 +454,8 @@
/obj/item/weapon/storage/box/handcuffs
name = "box of spare handcuffs"
desc = "A box full of handcuffs."
- icon_state = "handcuff"
+ icon_state = "secbox"
+ illustration = "handcuff"
/obj/item/weapon/storage/box/handcuffs/New()
..()
@@ -422,7 +465,8 @@
/obj/item/weapon/storage/box/zipties
name = "box of spare zipties"
desc = "A box full of zipties."
- icon_state = "handcuff"
+ icon_state = "secbox"
+ illustration = "handcuff"
/obj/item/weapon/storage/box/zipties/New()
..()
@@ -432,7 +476,8 @@
/obj/item/weapon/storage/box/alienhandcuffs
name = "box of spare handcuffs"
desc = "A box full of handcuffs."
- icon_state = "alienboxCuffs"
+ icon_state = "alienbox"
+ illustration = "handcuff"
/obj/item/weapon/storage/box/alienhandcuffs/New()
..()
@@ -442,7 +487,7 @@
/obj/item/weapon/storage/box/fakesyndiesuit
name = "boxed space suit and helmet"
desc = "A sleek, sturdy box used to hold replica spacesuits."
- icon_state = "box_of_doom"
+ icon_state = "syndiebox"
/obj/item/weapon/storage/box/fakesyndiesuit/New()
..()
@@ -452,7 +497,7 @@
/obj/item/weapon/storage/box/mousetraps
name = "box of Pest-B-Gon mousetraps"
desc = "Keep out of reach of children."
- icon_state = "mousetraps"
+ illustration = "mousetraps"
/obj/item/weapon/storage/box/mousetraps/New()
..()
@@ -462,7 +507,7 @@
/obj/item/weapon/storage/box/pillbottles
name = "box of pill bottles"
desc = "It has pictures of pill bottles on its front."
- icon_state = "pillbox"
+ illustration = "pillbox"
/obj/item/weapon/storage/box/pillbottles/New()
..()
@@ -505,7 +550,7 @@
/obj/item/weapon/storage/box/lights
name = "box of replacement bulbs"
icon = 'icons/obj/storage.dmi'
- icon_state = "light"
+ illustration = "light"
desc = "This box is shaped on the inside so that only light tubes and bulbs fit."
item_state = "syringe_kit"
foldable = /obj/item/stack/sheet/cardboard //BubbleWrap
@@ -521,7 +566,7 @@
/obj/item/weapon/storage/box/lights/tubes
name = "box of replacement tubes"
- icon_state = "lighttube"
+ illustration = "lighttube"
/obj/item/weapon/storage/box/lights/tubes/New()
..()
@@ -530,7 +575,7 @@
/obj/item/weapon/storage/box/lights/mixed
name = "box of replacement lights"
- icon_state = "lightmixed"
+ illustration = "lightmixed"
/obj/item/weapon/storage/box/lights/mixed/New()
..()
@@ -552,7 +597,7 @@
/obj/item/weapon/storage/box/metalfoam
name = "box of metal foam grenades"
desc = "To be used to rapidly seal hull breaches."
- icon_state = "flashbang"
+ illustration = "flashbang"
/obj/item/weapon/storage/box/metalfoam/New()
..()
@@ -563,6 +608,7 @@
name = "box of hugs"
desc = "A special box for sensitive people."
icon_state = "hugbox"
+ illustration = "heart"
foldable = null
/obj/item/weapon/storage/box/hug/suicide_act(mob/user)
@@ -857,6 +903,7 @@
/obj/item/weapon/storage/box/ingredients/New()
..()
if(item_state)
+ name = "[name] ([item_state])"
desc = "A box containing supplementary ingredients for the aspiring chef. This box's theme is '[item_state]'."
/obj/item/weapon/storage/box/emptysandbags
diff --git a/code/game/objects/items/weapons/storage/secure.dm b/code/game/objects/items/weapons/storage/secure.dm
index 2170fface1d..6ccf62afe57 100644
--- a/code/game/objects/items/weapons/storage/secure.dm
+++ b/code/game/objects/items/weapons/storage/secure.dm
@@ -93,7 +93,7 @@
src.l_set = 1
else if ((src.code == src.l_code) && (src.l_set == 1))
src.locked = 0
- src.overlays = null
+ cut_overlays()
add_overlay(image('icons/obj/storage.dmi', icon_opened))
src.code = null
else
@@ -101,7 +101,7 @@
else
if ((href_list["type"] == "R") && (!src.l_setshort))
src.locked = 1
- src.overlays = null
+ cut_overlays()
src.code = null
src.close(usr)
else
diff --git a/code/game/objects/items/weapons/storage/storage.dm b/code/game/objects/items/weapons/storage/storage.dm
index 45f97a36d0a..cc13131c141 100644
--- a/code/game/objects/items/weapons/storage/storage.dm
+++ b/code/game/objects/items/weapons/storage/storage.dm
@@ -81,12 +81,11 @@
//Object behaviour on storage dump
/obj/item/weapon/storage/storage_contents_dump_act(obj/item/weapon/storage/src_object, mob/user)
- for(var/obj/item/I in src_object)
- if(user.s_active != src_object)
- if(I.on_found(user))
- return
- if(can_be_inserted(I,0,user))
- handle_item_insertion(I, TRUE, user)
+ var/list/things = src_object.contents.Copy()
+ var/datum/progressbar/progress = new(user, things.len, src)
+ while (do_after(user, 10, TRUE, src, FALSE, CALLBACK(src, .proc/handle_mass_item_insertion, things, src_object, user, progress)))
+ sleep(1)
+ qdel(progress)
orient2hud(user)
src_object.orient2hud(user)
if(user.s_active) //refresh the HUD to show the transfered contents
@@ -94,6 +93,23 @@
user.s_active.show_to(user)
return 1
+/obj/item/weapon/storage/proc/handle_mass_item_insertion(list/things, obj/item/weapon/storage/src_object, mob/user, datum/progressbar/progress)
+ for(var/obj/item/I in things)
+ things -= I
+ if(I.loc != src_object)
+ continue
+ if(user.s_active != src_object)
+ if(I.on_found(user))
+ break
+ if(can_be_inserted(I,0,user))
+ handle_item_insertion(I, TRUE, user)
+ if (TICK_CHECK)
+ progress.update(progress.goal - things.len)
+ return TRUE
+
+ progress.update(progress.goal - things.len)
+ return FALSE
+
/obj/item/weapon/storage/proc/return_inv()
var/list/L = list()
L += contents
@@ -453,8 +469,25 @@
if((!ishuman(usr) && (loc != usr)) || usr.stat || usr.restrained() ||!usr.canmove)
return
-
- do_quick_empty()
+ var/turf/T = get_turf(src)
+ var/list/things = contents.Copy()
+ var/datum/progressbar/progress = new(usr, things.len, T)
+ while (do_after(usr, 10, TRUE, T, FALSE, CALLBACK(src, .proc/mass_remove_from_storage, T, things, progress)))
+ sleep(1)
+ qdel(progress)
+
+/obj/item/weapon/storage/proc/mass_remove_from_storage(atom/target, list/things, datum/progressbar/progress)
+ for(var/obj/item/I in things)
+ things -= I
+ if (I.loc != src)
+ continue
+ remove_from_storage(I, target)
+ if (TICK_CHECK)
+ progress.update(progress.goal - things.len)
+ return TRUE
+
+ progress.update(progress.goal - things.len)
+ return FALSE
// Empty all the contents onto the current turf, without checking the user's status.
/obj/item/weapon/storage/proc/do_quick_empty()
diff --git a/code/game/objects/items/weapons/storage/toolbox.dm b/code/game/objects/items/weapons/storage/toolbox.dm
index d97232ce79b..40d3def217b 100644
--- a/code/game/objects/items/weapons/storage/toolbox.dm
+++ b/code/game/objects/items/weapons/storage/toolbox.dm
@@ -13,6 +13,23 @@
origin_tech = "combat=1;engineering=1"
attack_verb = list("robusted")
hitsound = 'sound/weapons/smash.ogg'
+ var/hinges = "single_hinge"
+ var/old = FALSE
+
+/obj/item/weapon/storage/toolbox/Initialize()
+ ..()
+ if(!old)
+ if(prob(10))
+ hinges = "double_hinge"
+ else if(prob(1))
+ hinges = "triple_hinge"
+ update_icon()
+
+/obj/item/weapon/storage/toolbox/update_icon()
+ ..()
+ cut_overlays()
+ add_overlay(image('icons/obj/storage.dmi', "[hinges]"))
+
/obj/item/weapon/storage/toolbox/suicide_act(mob/user)
user.visible_message("[user] robusts [user.p_them()]self with [src]! It looks like [user.p_theyre()] trying to commit suicide!")
@@ -36,7 +53,8 @@
/obj/item/weapon/storage/toolbox/emergency/old
name = "rusty red toolbox"
- item_state = "toolbox_red_old"
+ icon_state = "toolbox_red_old"
+ old = TRUE
/obj/item/weapon/storage/toolbox/mechanical
name = "mechanical toolbox"
@@ -54,7 +72,8 @@
/obj/item/weapon/storage/toolbox/mechanical/old
name = "rusty blue toolbox"
- item_state = "toolbox_blue_old"
+ icon_state = "toolbox_blue_old"
+ old = TRUE
/obj/item/weapon/storage/toolbox/electrical
name = "electrical toolbox"
@@ -151,7 +170,7 @@
item_state = "artistic_toolbox"
max_combined_w_class = 20
storage_slots = 10
- w_class = 5 //Holds more than a regular toolbox!
+ w_class = WEIGHT_CLASS_GIGANTIC //Holds more than a regular toolbox!
/obj/item/weapon/storage/toolbox/artistic/New()
..()
@@ -164,217 +183,4 @@
new/obj/item/stack/cable_coil/pink(src)
new/obj/item/stack/cable_coil/orange(src)
new/obj/item/stack/cable_coil/cyan(src)
- new/obj/item/stack/cable_coil/white(src)
-
-#define HIS_GRACE_SATIATED 0 //He hungers not. If bloodthirst is set to this, His Grace is asleep.
-#define HIS_GRACE_PECKISH 30 //Slightly hungry. Slightly increased damage and nothing else.
-#define HIS_GRACE_HUNGRY 60 //Getting closer. Increased danage and slight healing. It also starts eating anyone around it if it's left on the ground.
-#define HIS_GRACE_FAMISHED 90 //Dangerous. Highly increased damage, good healing, and stun resist. It also becomes nodrop at this point.
-#define HIS_GRACE_STARVING 110 //Incredibly close to breaking loose. Extreme damage and healing, and stun immunity.
-#define HIS_GRACE_CONSUME_OWNER 120 //You're dead, kiddo. The toolbox consumes its owner at this point and resets to zero.
-#define HIS_GRACE_FALL_ASLEEP 150 //If it reaches this point, it falls asleep and resets to zero.
-
-//His Grace is a very special weapon granted only to traitor chaplains.
-//When awakened through sacrifice, it thirsts for blood and begins ticking a "bloodthirst" counter.
-//As His Grace grows hungrier, it grants its wielder various benefits.
-//If the wielder fails to feed His Grace in time, it will devour them.
-//Leaving His Grace alone for some time will reset its timer and put it to sleep.
-//Using His Grace effectively is a delicate balancing act of keeping it hungry enough to induce benefits but sated enough to let you live.
-/obj/item/weapon/storage/toolbox/artistic/his_grace
- name = "artistic toolbox"
- desc = "A toolbox painted bright green. Looking at it makes you feel uneasy."
- origin_tech = "combat=4;engineering=4;syndicate=2"
- var/awakened = 0
- var/bloodthirst = HIS_GRACE_SATIATED
- var/victims = 0
- var/list/warning_messages = list("peckish", "hungry", "famished", "starving", "consume") //Messages that have NOT been shown
-
-/obj/item/weapon/storage/toolbox/artistic/his_grace/Destroy()
- for(var/mob/living/L in src)
- L.forceMove(get_turf(src))
- return ..()
-
-/obj/item/weapon/storage/toolbox/artistic/his_grace/attack_self(mob/living/user)
- if(!awakened)
- user << "[src] begins to vibrate..."
- addtimer(CALLBACK(src, .proc/awaken), 50)
-
-/obj/item/weapon/storage/toolbox/artistic/his_grace/attack(mob/living/M, mob/user)
- if(awakened && M.stat)
- consume(M)
- else
- ..()
-
-/obj/item/weapon/storage/toolbox/artistic/his_grace/examine(mob/user)
- ..()
- if(awakened)
- if(victims)
- user << "You hear the distant murmuring of [victims] victims to [src]."
- switch(bloodthirst)
- if(HIS_GRACE_SATIATED to HIS_GRACE_PECKISH)
- user << "[src] isn't very hungry. Not yet."
- if(HIS_GRACE_PECKISH to HIS_GRACE_HUNGRY)
- user << "[src] would like a snack."
- if(HIS_GRACE_HUNGRY to HIS_GRACE_FAMISHED)
- user << "[src] is quite hungry now..."
- if(HIS_GRACE_FAMISHED to HIS_GRACE_STARVING)
- user << "[src] is openly salivating at the sight of you. Be careful."
- if(HIS_GRACE_STARVING to HIS_GRACE_CONSUME_OWNER)
- user << "You walk a fine line. [src] is very close to devouring you."
- if(HIS_GRACE_CONSUME_OWNER to HIS_GRACE_FALL_ASLEEP)
- user << "[src] is shaking violently and staring directly at you."
-
-/obj/item/weapon/storage/toolbox/artistic/his_grace/relaymove(mob/living/user) //Allows changelings, etc. to climb out of the box after they revive
- user.forceMove(get_turf(src))
- user.visible_message("[user] scrambles out of [src]!", "You climb out of [src]!")
-
-/obj/item/weapon/storage/toolbox/artistic/his_grace/process()
- if(!awakened)
- return
- adjust_bloodthirst(1 + victims) //Maybe adjust this?
- change_phases()
- if(ishuman(loc))
- var/mob/living/carbon/human/master = loc
- switch(bloodthirst) //Handles benefits outside of stun absorbs, which are in change_phases()
- if(HIS_GRACE_HUNGRY to HIS_GRACE_FAMISHED)
- master.adjustBruteLoss(-1)
- master.adjustFireLoss(-1)
- master.adjustToxLoss(-0.5)
- master.adjustOxyLoss(-5)
- master.adjustCloneLoss(-0.5)
- if(HIS_GRACE_FAMISHED to HIS_GRACE_STARVING)
- master.adjustBruteLoss(-2)
- master.adjustFireLoss(-2)
- master.adjustToxLoss(-1)
- master.adjustOxyLoss(-10)
- master.adjustCloneLoss(-1)
- master.AdjustStunned(-1)
- master.AdjustWeakened(-1)
- if(HIS_GRACE_STARVING to HIS_GRACE_CONSUME_OWNER)
- master.adjustBruteLoss(-20) //The biggest danger at this point is the toolbox itself
- master.adjustFireLoss(-20)
- master.adjustToxLoss(-10)
- master.setOxyLoss(0)
- master.adjustCloneLoss(-5)
- master.add_stun_absorption("his_grace", 15, 1, null, null, "[src] shields them from harm!")
- if(HIS_GRACE_CONSUME_OWNER to HIS_GRACE_FALL_ASLEEP)
- master.visible_message("[src] turns on its master!", "[src] turns on you!")
- playsound(src, 'sound/effects/tendril_destroyed.ogg', 100, 0)
- master.Weaken(3)
- master.adjustBruteLoss(100)
- playsound(master, 'sound/misc/desceration-03.ogg', 100, )
- playsound(master, 'sound/effects/splat.ogg', 100, 0)
- master.emote("scream")
- consume(master) //Y O U H A V E F A I L E D M E
- if(HIS_GRACE_FALL_ASLEEP to INFINITY)
- drowse()
- else
- if(bloodthirst >= HIS_GRACE_CONSUME_OWNER)
- if(bloodthirst >= HIS_GRACE_FALL_ASLEEP)
- drowse()
- return
- for(var/mob/living/L in range(1, src))
- if(L.loc == src)
- continue
- if(!L.stat)
- L.visible_message("[src] lunges at [L]!", "[src] lunges at you!")
- playsound(L, 'sound/effects/splat.ogg', 50, 1)
- playsound(L, 'sound/misc/desceration-01.ogg', 50, 1)
- L.adjustBruteLoss(force)
- return //Only one at a tome
- else
- consume(L)
- return
-
-/obj/item/weapon/storage/toolbox/artistic/his_grace/proc/awaken() //Attempts to awaken. This can only occur if organs fill the box, and gives out a global warning.
- if(awakened)
- return
- var/organ_count = 0
- for(var/obj/item/organ/O in src) //Doesn't have to be any kind, we're not picky
- organ_count++
- if(organ_count < 5)
- if(isliving(loc))
- loc = get_turf(src)
- visible_message("[src] stops shaking. It needs more organs.")
- else
- for(var/obj/item/organ/O in src)
- qdel(O) //delicious flesh
- name = "His Grace"
- desc = "A bloodthirsty artefact created by a profane rite."
- gender = MALE
- visible_message("[src] begins to rattle. It thirsts.") //rattle me bones capn
- adjust_bloodthirst(1)
- awakened = 1
- send_to_playing_players("HIS GRACE THIRSTS FOR BLOOD")
- send_to_playing_players('sound/effects/his_grace_awaken.ogg')
- icon_state = "green_awakened"
- START_PROCESSING(SSprocessing, src)
-
-/obj/item/weapon/storage/toolbox/artistic/his_grace/proc/drowse() //Falls asleep, spitting out all victims and resetting to zero.
- if(!awakened)
- return
- visible_message("[src] slowly stops rattling and falls still... but it still lurks in its sleep.")
- name = initial(name)
- desc = initial(desc)
- icon_state = initial(icon_state)
- gender = initial(gender)
- awakened = 0
- victims = 0
- warning_messages = initial(warning_messages)
- adjust_bloodthirst(-bloodthirst)
- STOP_PROCESSING(SSprocessing, src)
- send_to_playing_players("HIS GRACE HAS RETURNED TO SLUMBER")
- send_to_playing_players('sound/effects/pope_entry.ogg')
- for(var/mob/living/L in src)
- L.forceMove(get_turf(src))
-
-/obj/item/weapon/storage/toolbox/artistic/his_grace/proc/adjust_bloodthirst(amt)
- bloodthirst = min(max(1, bloodthirst + amt), HIS_GRACE_FALL_ASLEEP)
-
-/obj/item/weapon/storage/toolbox/artistic/his_grace/proc/consume(mob/living/meal)
- if(!meal)
- return
- meal.adjustBruteLoss(200)
- meal.visible_message("[src] pulls [meal] into itself!", "[src] consumes you!")
- playsound(meal, 'sound/misc/desceration-02.ogg', 75, 1)
- playsound(src, 'sound/items/eatfood.ogg', 100, 1)
- meal.forceMove(src)
- adjust_bloodthirst(-(bloodthirst - victims)) //Never fully sated, and it starts off higher as it eats
- victims++
-
-/obj/item/weapon/storage/toolbox/artistic/his_grace/proc/change_phases()
- switch(bloodthirst)
- if(HIS_GRACE_SATIATED to HIS_GRACE_PECKISH)
- force = 15 //Constantly keep its power low if it's this full
- if(HIS_GRACE_PECKISH to HIS_GRACE_HUNGRY)
- if(is_string_in_list("peckish", warning_messages))
- remove_strings_from_list("peckish", warning_messages)
- loc.visible_message("[src] is feeling snackish.", "[src] begins to hunger. Its damage has been increased.")
- force = 20
- spawn(400) //To prevent spam
- if(src)
- warning_messages += "peckish"
- if(HIS_GRACE_HUNGRY to HIS_GRACE_FAMISHED)
- if(is_string_in_list("hungry", warning_messages))
- remove_strings_from_list("hungry", warning_messages)
- loc.visible_message("[src] is getting hungry. Its power grows.", "You feel a sense of hunger come over you. [src]'s damage has increased.")
- force = 25
- spawn(400)
- if(src)
- warning_messages += "hungry"
- if(HIS_GRACE_FAMISHED to HIS_GRACE_STARVING)
- if(is_string_in_list("famished", warning_messages))
- remove_strings_from_list("famished", warning_messages)
- loc.visible_message("[src] is very hungry...", "Bloodlust overcomes you. You are now resistant to stuns.")
- force = 30
- spawn(400)
- if(src)
- warning_messages += "famished"
- if(HIS_GRACE_STARVING to HIS_GRACE_CONSUME_OWNER)
- if(is_string_in_list("starving", warning_messages))
- remove_strings_from_list("starving", warning_messages)
- loc.visible_message("[src] is starving!", "[src] is at its full power! Feed it quickly or you will be consumed!")
- force = 40
- spawn(400)
- if(src)
- warning_messages += "starving"
+ new/obj/item/stack/cable_coil/white(src)
\ No newline at end of file
diff --git a/code/game/objects/items/weapons/storage/uplink_kits.dm b/code/game/objects/items/weapons/storage/uplink_kits.dm
index ea47fbb9df3..e30b4087db8 100644
--- a/code/game/objects/items/weapons/storage/uplink_kits.dm
+++ b/code/game/objects/items/weapons/storage/uplink_kits.dm
@@ -135,7 +135,8 @@
/obj/item/weapon/storage/box/syndie_kit
name = "box"
desc = "A sleek, sturdy box."
- icon_state = "box_of_doom"
+ icon_state = "syndiebox"
+ illustration = "writing_syndie"
/obj/item/weapon/storage/box/syndie_kit/imp_freedom
name = "boxed freedom implant (with injector)"
@@ -310,3 +311,8 @@
/obj/item/weapon/storage/box/hug/reverse_revolver/New()
..()
new /obj/item/weapon/gun/ballistic/revolver/reverse(src)
+
+/obj/item/weapon/storage/box/syndie_kit/mimery/New()
+ ..()
+ new /obj/item/weapon/spellbook/oneuse/mimery_blockade(src)
+ new /obj/item/weapon/spellbook/oneuse/mimery_guns(src)
\ No newline at end of file
diff --git a/code/game/objects/items/weapons/tanks/jetpack.dm b/code/game/objects/items/weapons/tanks/jetpack.dm
index ef28bdc692d..e5ff9e6ac33 100644
--- a/code/game/objects/items/weapons/tanks/jetpack.dm
+++ b/code/game/objects/items/weapons/tanks/jetpack.dm
@@ -114,6 +114,12 @@
volume = 90
resistance_flags = INDESTRUCTIBLE | LAVA_PROOF | FIRE_PROOF | ACID_PROOF //steal objective items are hard to destroy.
+/obj/item/weapon/tank/jetpack/oxygen/security
+ name = "security jetpack (oxygen)"
+ desc = "A tank of compressed oxygen for use as propulsion in zero-gravity areas by security forces."
+ icon_state = "jetpack-sec"
+ item_state = "jetpack-sec"
+
/obj/item/weapon/tank/jetpack/carbondioxide
name = "jetpack (carbon dioxide)"
desc = "A tank of compressed carbon dioxide for use as propulsion in zero-gravity areas. Painted black to indicate that it should not be used as a source for internals."
@@ -127,7 +133,7 @@
name = "hardsuit jetpack upgrade"
desc = "A modular, compact set of thrusters designed to integrate with a hardsuit. It is fueled by a tank inserted into the suit's storage compartment."
origin_tech = "materials=4;magnets=4;engineering=5"
- icon_state = "jetpack-black"
+ icon_state = "jetpack-mining"
item_state = "jetpack-black"
w_class = WEIGHT_CLASS_NORMAL
actions_types = list(/datum/action/item_action/toggle_jetpack, /datum/action/item_action/jetpack_stabilization)
diff --git a/code/game/objects/items/weapons/tanks/tanks.dm b/code/game/objects/items/weapons/tanks/tanks.dm
index 2d0e0d9717b..d5cb9547f0d 100644
--- a/code/game/objects/items/weapons/tanks/tanks.dm
+++ b/code/game/objects/items/weapons/tanks/tanks.dm
@@ -121,11 +121,14 @@
H.dropItemToGround(W)
if(prob(50))
step(W, pick(alldirs))
- H.hair_style = "Bald"
- H.update_hair()
+ H.status_flags |= DISFIGURED
H.bleed_rate = 5
- new /obj/effect/gibspawner/generic(H.loc, H.viruses, H.dna)
+ H.gib_animation()
+ sleep(3)
H.adjustBruteLoss(1000) //to make the body super-bloody
+ H.spawn_gibs()
+ H.spill_organs()
+ H.spread_bodyparts()
return (BRUTELOSS)
diff --git a/code/game/objects/items/weapons/tools.dm b/code/game/objects/items/weapons/tools.dm
index bcc498d4f9b..dcbda301265 100644
--- a/code/game/objects/items/weapons/tools.dm
+++ b/code/game/objects/items/weapons/tools.dm
@@ -409,10 +409,11 @@
if(affecting && affecting.status == BODYPART_ROBOTIC && user.a_intent != INTENT_HARM)
if(src.remove_fuel(1))
playsound(loc, usesound, 50, 1)
- user.visible_message("[user] starts to fix some of the dents on [H]'s [affecting.name].", "You start fixing some of the dents on [H]'s [affecting.name].")
- if(!do_mob(user, H, 50))
- return
- item_heal_robotic(H, user, 5, 0)
+ if(user == H)
+ user.visible_message("[user] starts to fix some of the dents on [H]'s [affecting.name].", "You start fixing some of the dents on [H]'s [affecting.name].")
+ if(!do_mob(user, H, 50))
+ return
+ item_heal_robotic(H, user, 15, 0)
else
return ..()
@@ -579,7 +580,6 @@
max_fuel = 40
materials = list(MAT_GLASS=60)
origin_tech = "engineering=2;plasmatech=2"
- toolspeed = 0.75
/obj/item/weapon/weldingtool/largetank/cyborg
name = "integrated welding tool"
@@ -625,7 +625,6 @@
max_fuel = 80
materials = list(MAT_METAL=70, MAT_GLASS=120)
origin_tech = "engineering=3;plasmatech=2"
- w_class = 3
/obj/item/weapon/weldingtool/experimental
name = "experimental welding tool"
diff --git a/code/game/objects/items/weapons/weaponry.dm b/code/game/objects/items/weapons/weaponry.dm
index d18f720c308..117888a48db 100644
--- a/code/game/objects/items/weapons/weaponry.dm
+++ b/code/game/objects/items/weapons/weaponry.dm
@@ -65,12 +65,12 @@
user.visible_message("[user] is falling on [src]! It looks like [user.p_theyre()] trying to commit suicide!")
return(BRUTELOSS)
-var/highlander_claymores = 0
/obj/item/weapon/claymore/highlander //ALL COMMENTS MADE REGARDING THIS SWORD MUST BE MADE IN ALL CAPS
desc = "THERE CAN BE ONLY ONE, AND IT WILL BE YOU!!!\nActivate it in your hand to point to the nearest victim."
- flags = CONDUCT | NODROP
+ flags = CONDUCT | NODROP | DROPDEL
slot_flags = null
block_chance = 0 //RNG WON'T HELP YOU NOW, PANSY
+ luminosity = 3
attack_verb = list("brutalized", "eviscerated", "disemboweled", "hacked", "carved", "cleaved") //ONLY THE MOST VISCERAL ATTACK VERBS
var/notches = 0 //HOW MANY PEOPLE HAVE BEEN SLAIN WITH THIS BLADE
var/obj/item/weapon/disk/nuclear/nuke_disk //OUR STORED NUKE DISK
@@ -78,22 +78,32 @@ var/highlander_claymores = 0
/obj/item/weapon/claymore/highlander/New()
..()
START_PROCESSING(SSobj, src)
- highlander_claymores++
/obj/item/weapon/claymore/highlander/Destroy()
- STOP_PROCESSING(SSobj, src)
- highlander_claymores--
if(nuke_disk)
nuke_disk.forceMove(get_turf(src))
nuke_disk.visible_message("The nuke disk is vulnerable!")
nuke_disk = null
+ STOP_PROCESSING(SSobj, src)
return ..()
+/obj/item/weapon/claymore/highlander/process()
+ if(ishuman(loc))
+ var/mob/living/carbon/human/H = loc
+ loc.layer = LARGE_MOB_LAYER //NO HIDING BEHIND PLANTS FOR YOU, DICKWEED (HA GET IT, BECAUSE WEEDS ARE PLANTS)
+ H.bleedsuppress = TRUE //AND WE WON'T BLEED OUT LIKE COWARDS
+ else
+ if(!admin_spawned)
+ qdel(src)
+
+
/obj/item/weapon/claymore/highlander/pickup(mob/living/user)
user << "The power of Scotland protects you! You are shielded from all stuns and knockdowns."
user.add_stun_absorption("highlander", INFINITY, 1, " is protected by the power of Scotland!", "The power of Scotland absorbs the stun!", " is protected by the power of Scotland!")
+ user.status_flags += IGNORESLOWDOWN
/obj/item/weapon/claymore/highlander/dropped(mob/living/user)
+ user.status_flags -= IGNORESLOWDOWN
qdel(src) //If this ever happens, it's because you lost an arm
/obj/item/weapon/claymore/highlander/examine(mob/user)
diff --git a/code/game/objects/obj_defense.dm b/code/game/objects/obj_defense.dm
index c407ce6acd1..a8c9518685f 100644
--- a/code/game/objects/obj_defense.dm
+++ b/code/game/objects/obj_defense.dm
@@ -92,11 +92,11 @@
/obj/proc/attack_generic(mob/user, damage_amount = 0, damage_type = BRUTE, damage_flag = 0, sound_effect = 1) //used by attack_alien, attack_animal, and attack_slime
user.do_attack_animation(src)
user.changeNext_move(CLICK_CD_MELEE)
- take_damage(damage_amount, damage_type, damage_flag, sound_effect, get_dir(src, user))
+ return take_damage(damage_amount, damage_type, damage_flag, sound_effect, get_dir(src, user))
/obj/attack_alien(mob/living/carbon/alien/humanoid/user)
- playsound(src.loc, 'sound/weapons/slash.ogg', 100, 1)
- attack_generic(user, 60, BRUTE, "melee", 0)
+ if(attack_generic(user, 60, BRUTE, "melee", 0))
+ playsound(src.loc, 'sound/weapons/slash.ogg', 100, 1)
/obj/attack_animal(mob/living/simple_animal/M)
if(!M.melee_damage_upper && !M.obj_damage)
@@ -106,12 +106,12 @@
var/play_soundeffect = 1
if(M.environment_smash)
play_soundeffect = 0
- playsound(src, 'sound/effects/meteorimpact.ogg', 100, 1)
if(M.obj_damage)
- attack_generic(M, M.obj_damage, M.melee_damage_type, "melee", play_soundeffect)
+ . = attack_generic(M, M.obj_damage, M.melee_damage_type, "melee", play_soundeffect)
else
- attack_generic(M, rand(M.melee_damage_lower,M.melee_damage_upper), M.melee_damage_type, "melee", play_soundeffect)
- return 1
+ . = attack_generic(M, rand(M.melee_damage_lower,M.melee_damage_upper), M.melee_damage_type, "melee", play_soundeffect)
+ if(. && !play_soundeffect)
+ playsound(src, 'sound/effects/meteorimpact.ogg', 100, 1)
/obj/attack_slime(mob/living/simple_animal/slime/user)
if(!user.is_adult)
@@ -156,7 +156,7 @@ var/global/image/acid_overlay = image("icon" = 'icons/effects/effects.dmi', "ico
if(!acid_level)
SSacid.processing[src] = src
- add_overlay(acid_overlay, 1)
+ add_overlay(acid_overlay, TRUE)
var/acid_cap = acidpwr * 300 //so we cannot use huge amounts of weak acids to do as well as strong acids.
if(acid_level < acid_cap)
acid_level = min(acid_level + acidpwr * acid_volume, acid_cap)
@@ -194,7 +194,7 @@ var/global/image/acid_overlay = image("icon" = 'icons/effects/effects.dmi', "ico
if(!(resistance_flags & ON_FIRE) && (resistance_flags & FLAMMABLE))
resistance_flags |= ON_FIRE
SSfire_burning.processing[src] = src
- add_overlay(fire_overlay)
+ add_overlay(fire_overlay, TRUE)
return 1
//called when the obj is destroyed by fire
@@ -206,7 +206,7 @@ var/global/image/acid_overlay = image("icon" = 'icons/effects/effects.dmi', "ico
/obj/proc/extinguish()
if(resistance_flags & ON_FIRE)
resistance_flags &= ~ON_FIRE
- overlays -= fire_overlay
+ cut_overlay(fire_overlay, TRUE)
SSfire_burning.processing -= src
diff --git a/code/game/objects/structures/beds_chairs/alien_nest.dm b/code/game/objects/structures/beds_chairs/alien_nest.dm
index 0b768660c2d..3010919048d 100644
--- a/code/game/objects/structures/beds_chairs/alien_nest.dm
+++ b/code/game/objects/structures/beds_chairs/alien_nest.dm
@@ -80,7 +80,7 @@
M.pixel_x = M.get_standard_pixel_x_offset(M.lying)
M.pixel_y = M.get_standard_pixel_y_offset(M.lying)
M.layer = initial(M.layer)
- overlays -= nest_overlay
+ cut_overlay(nest_overlay)
/obj/structure/bed/nest/play_attack_sound(damage_amount, damage_type = BRUTE, damage_flag = 0)
switch(damage_type)
diff --git a/code/game/objects/structures/beds_chairs/chair.dm b/code/game/objects/structures/beds_chairs/chair.dm
index b16d566d82e..7d16603cf16 100644
--- a/code/game/objects/structures/beds_chairs/chair.dm
+++ b/code/game/objects/structures/beds_chairs/chair.dm
@@ -63,7 +63,7 @@
/obj/structure/chair/proc/handle_layer()
if(has_buckled_mobs() && dir == NORTH)
- layer = ABOVE_ALL_MOB_LAYER
+ layer = ABOVE_MOB_LAYER
else
layer = OBJ_LAYER
@@ -146,7 +146,7 @@
if(has_buckled_mobs())
add_overlay(armrest)
else
- overlays -= armrest
+ cut_overlay(armrest)
/obj/structure/chair/comfy/brown
diff --git a/code/game/objects/structures/crates_lockers/closets/statue.dm b/code/game/objects/structures/crates_lockers/closets/statue.dm
index 99f271bb251..0b7859691a5 100644
--- a/code/game/objects/structures/crates_lockers/closets/statue.dm
+++ b/code/game/objects/structures/crates_lockers/closets/statue.dm
@@ -84,7 +84,7 @@
bleedsuppress = 1
S.icon = icon
S.icon_state = icon_state
- S.overlays = overlays
+ S.copy_overlays(overlays)
var/newcolor = list(rgb(77,77,77), rgb(150,150,150), rgb(28,28,28), rgb(0,0,0))
S.add_atom_colour(newcolor, FIXED_COLOUR_PRIORITY)
return 1
diff --git a/code/game/objects/structures/crates_lockers/crates.dm b/code/game/objects/structures/crates_lockers/crates.dm
index 7724b9e942e..3206b14a7ad 100644
--- a/code/game/objects/structures/crates_lockers/crates.dm
+++ b/code/game/objects/structures/crates_lockers/crates.dm
@@ -140,3 +140,8 @@
for(var/i in 1 to 4)
new /obj/item/weapon/rcd_ammo(src)
new /obj/item/weapon/rcd(src)
+
+/obj/structure/closet/crate/science
+ name = "science crate"
+ desc = "A science crate."
+ icon_state = "scicrate"
diff --git a/code/game/objects/structures/crates_lockers/crates/secure.dm b/code/game/objects/structures/crates_lockers/crates/secure.dm
index 1fc105788fa..be3ac844ace 100644
--- a/code/game/objects/structures/crates_lockers/crates/secure.dm
+++ b/code/game/objects/structures/crates_lockers/crates/secure.dm
@@ -64,4 +64,9 @@
/obj/structure/closet/crate/secure/engineering
desc = "A crate with a lock on it, painted in the scheme of the station's engineers."
name = "secure engineering crate"
- icon_state = "engi_secure_crate"
\ No newline at end of file
+ icon_state = "engi_secure_crate"
+
+/obj/structure/closet/crate/secure/science
+ name = "secure science crate"
+ desc = "A crate with a lock on it, painted in the scheme of the station's scientists."
+ icon_state = "scisecurecrate"
diff --git a/code/game/objects/structures/destructible_structures.dm b/code/game/objects/structures/destructible_structures.dm
index f1f8b3b0c3e..926e769e937 100644
--- a/code/game/objects/structures/destructible_structures.dm
+++ b/code/game/objects/structures/destructible_structures.dm
@@ -12,7 +12,9 @@
for(var/I in debris)
for(var/i in 1 to debris[I])
new I (get_turf(src))
- visible_message(break_message)
- playsound(src, break_sound, 50, 1)
+ if(break_message)
+ visible_message(break_message)
+ if(break_sound)
+ playsound(src, break_sound, 50, 1)
qdel(src)
return 1
diff --git a/code/game/objects/structures/ghost_role_spawners.dm b/code/game/objects/structures/ghost_role_spawners.dm
index 571711e47e7..af8e3bb509b 100644
--- a/code/game/objects/structures/ghost_role_spawners.dm
+++ b/code/game/objects/structures/ghost_role_spawners.dm
@@ -287,14 +287,3 @@
/obj/effect/mob_spawn/human/hotel_staff/Destroy()
new/obj/structure/fluff/empty_sleeper/syndicate(get_turf(src))
..()
-
-/obj/effect/mob_spawn/derelict_drone
- name = "dust-caked drone shell"
- desc = "A long-forgotten drone shell."
- flavour_text = "This station sure is a mess. It's time to get to work."
- mob_name = "a derelict drone"
- mob_type = /mob/living/simple_animal/drone
- icon = 'icons/mob/drone.dmi'
- icon_state = "drone_maint_hat"
- death = FALSE
- roundstart = FALSE
\ No newline at end of file
diff --git a/code/game/objects/structures/plasticflaps.dm b/code/game/objects/structures/plasticflaps.dm
index 43f9f84dba7..97a665146a3 100644
--- a/code/game/objects/structures/plasticflaps.dm
+++ b/code/game/objects/structures/plasticflaps.dm
@@ -7,6 +7,50 @@
density = 0
anchored = 1
layer = ABOVE_MOB_LAYER
+ var/state = PLASTIC_FLAPS_NORMAL
+
+/obj/structure/plasticflaps/examine(mob/user)
+ . = ..()
+ switch(state)
+ if(PLASTIC_FLAPS_NORMAL)
+ user << "[src] are screwed to the floor."
+ if(PLASTIC_FLAPS_DETACHED)
+ user << "[src] are no longer screwed to the floor, and the flaps can be cut apart."
+
+/obj/structure/plasticflaps/attackby(obj/item/W, mob/user, params)
+ add_fingerprint(user)
+ if(istype(W, /obj/item/weapon/screwdriver))
+ if(state == PLASTIC_FLAPS_NORMAL)
+ playsound(src.loc, W.usesound, 100, 1)
+ user.visible_message("[user] unscrews [src] from the floor.", "You start to unscrew [src] from the floor...", "You hear rustling noises.")
+ if(do_after(user, 100*W.toolspeed, target = src))
+ if(state != PLASTIC_FLAPS_NORMAL)
+ return
+ state = PLASTIC_FLAPS_DETACHED
+ anchored = FALSE
+ user << "You unscrew [src] from the floor."
+ else if(state == PLASTIC_FLAPS_DETACHED)
+ playsound(src.loc, W.usesound, 100, 1)
+ user.visible_message("[user] screws [src] to the floor.", "You start to screw [src] to the floor...", "You hear rustling noises.")
+ if(do_after(user, 40*W.toolspeed, target = src))
+ if(state != PLASTIC_FLAPS_DETACHED)
+ return
+ state = PLASTIC_FLAPS_NORMAL
+ anchored = TRUE
+ user << "You screw [src] from the floor."
+ else if(istype(W, /obj/item/weapon/wirecutters))
+ if(state == PLASTIC_FLAPS_DETACHED)
+ playsound(src.loc, W.usesound, 100, 1)
+ user.visible_message("[user] cuts apart [src].", "You start to cut apart [src].", "You hear cutting.")
+ if(do_after(user, 50*W.toolspeed, target = src))
+ if(state != PLASTIC_FLAPS_DETACHED)
+ return
+ user << "You cut apart [src]."
+ var/obj/item/stack/sheet/plastic/five/P = new(loc)
+ P.add_fingerprint(user)
+ qdel(src)
+ else
+ . = ..()
/obj/structure/plasticflaps/CanAStarPass(ID, to_dir, caller)
if(isliving(caller))
@@ -46,6 +90,11 @@
return 0
return ..()
+/obj/structure/plasticflaps/deconstruct(disassembled = TRUE)
+ if(!(flags & NODECONSTRUCT))
+ new /obj/item/stack/sheet/plastic/five(loc)
+ qdel(src)
+
/obj/structure/plasticflaps/mining //A specific type for mining that doesn't allow airflow because of them damn crates
name = "airtight plastic flaps"
desc = "Heavy duty, airtight, plastic flaps."
diff --git a/code/game/objects/structures/tables_racks.dm b/code/game/objects/structures/tables_racks.dm
index 045704f8d7d..60f47a15d22 100644
--- a/code/game/objects/structures/tables_racks.dm
+++ b/code/game/objects/structures/tables_racks.dm
@@ -485,6 +485,7 @@
icon_state = "rack_parts"
flags = CONDUCT
materials = list(MAT_METAL=2000)
+ var/building = FALSE
/obj/item/weapon/rack_parts/attackby(obj/item/weapon/W, mob/user, params)
if (istype(W, /obj/item/weapon/wrench))
@@ -494,6 +495,9 @@
. = ..()
/obj/item/weapon/rack_parts/attack_self(mob/user)
+ if(building)
+ return
+ building = TRUE
user << "You start constructing a rack..."
if(do_after(user, 50, target = src, progress=TRUE))
if(!user.drop_item())
@@ -503,3 +507,4 @@
", "You assemble \a [R].")
R.add_fingerprint(user)
qdel(src)
+ building = FALSE
diff --git a/code/game/objects/structures/window.dm b/code/game/objects/structures/window.dm
index 7ea8a5ceaf6..27aa40bcdf3 100644
--- a/code/game/objects/structures/window.dm
+++ b/code/game/objects/structures/window.dm
@@ -345,7 +345,7 @@
if(smooth)
queue_smooth(src)
- overlays -= crack_overlay
+ cut_overlay(crack_overlay)
if(ratio > 75)
return
crack_overlay = image('icons/obj/structures.dmi',"damage[ratio]",-(layer+0.1))
@@ -474,6 +474,7 @@
explosion_block = 2 //fancy AND hard to destroy. the most useful combination.
glass_type = /obj/item/stack/tile/brass
glass_amount = 1
+ reinf = FALSE
var/made_glow = FALSE
/obj/structure/window/reinforced/clockwork/New(loc, direct)
diff --git a/code/game/sound.dm b/code/game/sound.dm
index 1dd42d674bb..29a55a4a1fe 100644
--- a/code/game/sound.dm
+++ b/code/game/sound.dm
@@ -83,7 +83,9 @@
src << sound(null, repeat = 0, wait = 0, volume = 85, channel = 1)
/client/proc/playtitlemusic()
- if(!ticker || !ticker.login_music)
+ while(!ticker.login_music) //wait for ticker init to set the login music
+ stoplag()
+ if(!ticker.login_music)
return
if(prefs && (prefs.toggles & SOUND_LOBBY))
src << sound(ticker.login_music, repeat = 0, wait = 0, volume = 85, channel = 1) // MAD JAMS
diff --git a/code/game/turfs/closed.dm b/code/game/turfs/closed.dm
index d4f07c90b17..551b239131c 100644
--- a/code/game/turfs/closed.dm
+++ b/code/game/turfs/closed.dm
@@ -36,7 +36,8 @@
/turf/closed/indestructible/splashscreen/Initialize()
..()
- icon_state = pick("title1","title2","title3","title4","title5")
+ if(titlescreen)
+ icon_state = pick("title1","title2","title3","title4","title5")
/turf/closed/indestructible/riveted
icon = 'icons/turf/walls/riveted.dmi'
diff --git a/code/game/turfs/open.dm b/code/game/turfs/open.dm
index c30df6d1e05..795acbc7c16 100644
--- a/code/game/turfs/open.dm
+++ b/code/game/turfs/open.dm
@@ -186,7 +186,7 @@
wet = wet_setting
if(wet_setting != TURF_DRY)
if(wet_overlay)
- overlays -= wet_overlay
+ cut_overlay(wet_overlay)
wet_overlay = null
var/turf/open/floor/F = src
if(istype(F))
@@ -212,7 +212,7 @@
else
wet = TURF_DRY
if(wet_overlay)
- overlays -= wet_overlay
+ cut_overlay(wet_overlay)
/turf/open/proc/HandleWet()
if(!wet)
diff --git a/code/game/turfs/simulated/minerals.dm b/code/game/turfs/simulated/minerals.dm
index 0883c19491a..175564a72d8 100644
--- a/code/game/turfs/simulated/minerals.dm
+++ b/code/game/turfs/simulated/minerals.dm
@@ -436,7 +436,7 @@
/turf/closed/mineral/gibtonite/proc/defuse()
if(stage == 1)
- overlays -= activated_image
+ cut_overlay(activated_image)
var/image/I = image('icons/turf/smoothrocks.dmi', loc = src, icon_state = "rock_Gibtonite_inactive", layer = ON_EDGED_TURF_LAYER)
add_overlay(I)
desc = "An inactive gibtonite reserve. The ore can be extracted."
diff --git a/code/game/turfs/simulated/wall/misc_walls.dm b/code/game/turfs/simulated/wall/misc_walls.dm
index a2828271a91..c77de9c279e 100644
--- a/code/game/turfs/simulated/wall/misc_walls.dm
+++ b/code/game/turfs/simulated/wall/misc_walls.dm
@@ -43,7 +43,7 @@
desc = "A huge chunk of warm metal. The clanging of machinery emanates from within."
explosion_block = 2
hardness = 10
- slicing_duration = 120
+ slicing_duration = 80
sheet_type = /obj/item/stack/tile/brass
sheet_amount = 1
girder_type = /obj/structure/destructible/clockwork/wall_gear
diff --git a/code/game/turfs/simulated/walls.dm b/code/game/turfs/simulated/walls.dm
index 674b7342b4f..ff071b0599c 100644
--- a/code/game/turfs/simulated/walls.dm
+++ b/code/game/turfs/simulated/walls.dm
@@ -206,7 +206,7 @@
/turf/closed/wall/proc/thermitemelt(mob/user)
- overlays = list()
+ cut_overlays()
var/obj/effect/overlay/O = new/obj/effect/overlay( src )
O.name = "thermite"
O.desc = "Looks hot."
diff --git a/code/game/turfs/turf.dm b/code/game/turfs/turf.dm
index 2a94057aa65..f044053c61b 100644
--- a/code/game/turfs/turf.dm
+++ b/code/game/turfs/turf.dm
@@ -279,11 +279,13 @@
usr << "You start dumping out the contents..."
if(!do_after(usr,20,target=src_object))
return 0
- for(var/obj/item/I in src_object)
- if(user.s_active != src_object)
- if(I.on_found(user))
- return
- src_object.remove_from_storage(I, src) //No check needed, put everything inside
+
+ var/list/things = src_object.contents.Copy()
+ var/datum/progressbar/progress = new(user, things.len, src)
+ while (do_after(usr, 10, TRUE, src, FALSE, CALLBACK(src_object, /obj/item/weapon/storage.proc/mass_remove_from_storage, src, things, progress)))
+ sleep(1)
+ qdel(progress)
+
return 1
//////////////////////////////
@@ -384,6 +386,8 @@
continue
if(istype(A, /obj/docking_port))
continue
+ if(A == T0)
+ continue
qdel(A, force=TRUE)
T0.ChangeTurf(turf_type)
@@ -457,5 +461,5 @@
/turf/proc/remove_decal(group)
LAZYINITLIST(decals)
- overlays -= decals[group]
- decals[group] = null
+ cut_overlay(decals[group])
+ decals[group] = null
\ No newline at end of file
diff --git a/code/modules/admin/DB_ban/functions.dm b/code/modules/admin/DB_ban/functions.dm
index e5dc1fdf162..a412d64c4a4 100644
--- a/code/modules/admin/DB_ban/functions.dm
+++ b/code/modules/admin/DB_ban/functions.dm
@@ -1,17 +1,15 @@
#define MAX_ADMIN_BANS_PER_ADMIN 1
//Either pass the mob you wish to ban in the 'banned_mob' attribute, or the banckey, banip and bancid variables. If both are passed, the mob takes priority! If a mob is not passed, banckey is the minimum that needs to be passed! banip and bancid are optional.
-/datum/admins/proc/DB_ban_record(bantype, mob/banned_mob, duration = -1, reason, job = "", rounds = 0, banckey = null, banip = null, bancid = null)
+/datum/admins/proc/DB_ban_record(bantype, mob/banned_mob, duration = -1, reason, job = "", banckey = null, banip = null, bancid = null)
if(!check_rights(R_BAN))
return
- establish_db_connection()
- if(!dbcon.IsConnected())
+ if(!dbcon.Connect())
src << "Failed to establish database connection."
return
- var/serverip = "[world.internet_address]:[world.port]"
var/bantype_pass = 0
var/bantype_str
var/maxadminbancheck //Used to limit the number of active bans of a certein type that each admin can give. Used to protect against abuse or mutiny.
@@ -122,7 +120,7 @@
usr << "You already logged [MAX_ADMIN_BANS_PER_ADMIN] admin ban(s) or more. Do not abuse this function!"
return
- var/sql = "INSERT INTO [format_table_name("ban")] (`id`,`bantime`,`serverip`,`bantype`,`reason`,`job`,`duration`,`rounds`,`expiration_time`,`ckey`,`computerid`,`ip`,`a_ckey`,`a_computerid`,`a_ip`,`who`,`adminwho`,`edits`,`unbanned`,`unbanned_datetime`,`unbanned_ckey`,`unbanned_computerid`,`unbanned_ip`) VALUES (null, Now(), '[serverip]', '[bantype_str]', '[reason]', '[job]', [(duration)?"[duration]":"0"], [(rounds)?"[rounds]":"0"], Now() + INTERVAL [(duration>0) ? duration : 0] MINUTE, '[ckey]', '[computerid]', '[ip]', '[a_ckey]', '[a_computerid]', '[a_ip]', '[who]', '[adminwho]', '', null, null, null, null, null)"
+ var/sql = "INSERT INTO [format_table_name("ban")] (`bantime`,`server_ip`,`server_port`,`bantype`,`reason`,`job`,`duration`,`expiration_time`,`ckey`,`computerid`,`ip`,`a_ckey`,`a_computerid`,`a_ip`,`who`,`adminwho`) VALUES (Now(), INET_ATON('[world.internet_address]'), '[world.port]', '[bantype_str]', '[reason]', '[job]', [(duration)?"[duration]":"0"], Now() + INTERVAL [(duration>0) ? duration : 0] MINUTE, '[ckey]', '[computerid]', INET_ATON('[ip]'), '[a_ckey]', '[a_computerid]', INET_ATON('[a_ip]'), '[who]', '[adminwho]')"
var/DBQuery/query_insert = dbcon.NewQuery(sql)
query_insert.Execute()
usr << "Ban saved to database."
@@ -183,8 +181,7 @@
if(job)
sql += " AND job = '[job]'"
- establish_db_connection()
- if(!dbcon.IsConnected())
+ if(!dbcon.Connect())
return
var/ban_id
@@ -280,8 +277,7 @@
var/sql = "SELECT ckey FROM [format_table_name("ban")] WHERE id = [id]"
- establish_db_connection()
- if(!dbcon.IsConnected())
+ if(!dbcon.Connect())
return
var/ban_number = 0 //failsafe
@@ -308,7 +304,7 @@
var/unban_computerid = src.owner:computer_id
var/unban_ip = src.owner:address
- var/sql_update = "UPDATE [format_table_name("ban")] SET unbanned = 1, unbanned_datetime = Now(), unbanned_ckey = '[unban_ckey]', unbanned_computerid = '[unban_computerid]', unbanned_ip = '[unban_ip]' WHERE id = [id]"
+ var/sql_update = "UPDATE [format_table_name("ban")] SET unbanned = 1, unbanned_datetime = Now(), unbanned_ckey = '[unban_ckey]', unbanned_computerid = '[unban_computerid]', unbanned_ip = INET_ATON('[unban_ip]') WHERE id = [id]"
message_admins("[key_name_admin(usr)] has lifted [pckey]'s ban.",1)
var/DBQuery/query_update = dbcon.NewQuery(sql_update)
@@ -333,8 +329,7 @@
if(!check_rights(R_BAN))
return
- establish_db_connection()
- if(!dbcon.IsConnected())
+ if(!dbcon.Connect())
usr << "Failed to establish database connection."
return
diff --git a/code/modules/admin/IsBanned.dm b/code/modules/admin/IsBanned.dm
index 6a8aeb27b46..ab45acfd415 100644
--- a/code/modules/admin/IsBanned.dm
+++ b/code/modules/admin/IsBanned.dm
@@ -61,7 +61,7 @@
var/ckeytext = ckey(key)
- if(!establish_db_connection())
+ if(!dbcon.Connect())
log_world("Ban database connection failure. Key [ckeytext] not checked")
diary << "Ban database connection failure. Key [ckeytext] not checked"
return
@@ -69,25 +69,23 @@
var/ipquery = ""
var/cidquery = ""
if(address)
- ipquery = " OR ip = '[address]' "
+ ipquery = " OR ip = INET_ATON('[address]') "
if(computer_id)
cidquery = " OR computerid = '[computer_id]' "
- var/DBQuery/query = dbcon.NewQuery("SELECT ckey, ip, computerid, a_ckey, reason, expiration_time, duration, bantime, bantype FROM [format_table_name("ban")] WHERE (ckey = '[ckeytext]' [ipquery] [cidquery]) AND (bantype = 'PERMABAN' OR bantype = 'ADMIN_PERMABAN' OR ((bantype = 'TEMPBAN' OR bantype = 'ADMIN_TEMPBAN') AND expiration_time > Now())) AND isnull(unbanned)")
+ var/DBQuery/query = dbcon.NewQuery("SELECT ckey, a_ckey, reason, expiration_time, duration, bantime, bantype FROM [format_table_name("ban")] WHERE (ckey = '[ckeytext]' [ipquery] [cidquery]) AND (bantype = 'PERMABAN' OR bantype = 'ADMIN_PERMABAN' OR ((bantype = 'TEMPBAN' OR bantype = 'ADMIN_TEMPBAN') AND expiration_time > Now())) AND isnull(unbanned)")
query.Execute()
while(query.NextRow())
var/pckey = query.item[1]
- //var/pip = query.item[2]
- //var/pcid = query.item[3]
- var/ackey = query.item[4]
- var/reason = query.item[5]
- var/expiration = query.item[6]
- var/duration = query.item[7]
- var/bantime = query.item[8]
- var/bantype = query.item[9]
+ var/ackey = query.item[2]
+ var/reason = query.item[3]
+ var/expiration = query.item[4]
+ var/duration = query.item[5]
+ var/bantime = query.item[6]
+ var/bantype = query.item[7]
if (bantype == "ADMIN_PERMABAN" || bantype == "ADMIN_TEMPBAN")
//admin bans MUST match on ckey to prevent cid-spoofing attacks
// as well as dynamic ip abuse
diff --git a/code/modules/admin/NewBan.dm b/code/modules/admin/NewBan.dm
index dba8b98624e..7ab4fda04a0 100644
--- a/code/modules/admin/NewBan.dm
+++ b/code/modules/admin/NewBan.dm
@@ -134,11 +134,11 @@ var/savefile/Banlist
if (!Banlist.dir.Remove(foldername)) return 0
if(!usr)
- log_admin("Ban Expired: [key]")
+ log_admin_private("Ban Expired: [key]")
message_admins("Ban Expired: [key]")
else
ban_unban_log_save("[key_name(usr)] unbanned [key]")
- log_admin("[key_name(usr)] unbanned [key]")
+ log_admin_private("[key_name(usr)] unbanned [key]")
message_admins("[key_name_admin(usr)] unbanned: [key]")
feedback_inc("ban_unban",1)
usr.client.holder.DB_ban_unban( ckey(key), BANTYPE_ANY_FULLBAN)
diff --git a/code/modules/admin/admin.dm b/code/modules/admin/admin.dm
index 89182acc0f9..17c14c940e8 100644
--- a/code/modules/admin/admin.dm
+++ b/code/modules/admin/admin.dm
@@ -572,11 +572,11 @@ var/global/BSACooldown = 0
set desc="Delay the game start"
set name="Delay pre-game"
- var/newtime = input("Set a new time in seconds. Set -1 for indefinite delay.","Set Delay",round(ticker.timeLeft/10)) as num|null
+ var/newtime = input("Set a new time in seconds. Set -1 for indefinite delay.","Set Delay",round(ticker.GetTimeLeft()/10)) as num|null
if(ticker.current_state > GAME_STATE_PREGAME)
return alert("Too late... The game has already started!")
if(newtime)
- ticker.timeLeft = newtime * 10
+ ticker.SetTimeLeft(newtime * 10)
if(newtime < 0)
world << "The game start has been delayed."
log_admin("[key_name(usr)] delayed the round start.")
diff --git a/code/modules/admin/admin_ranks.dm b/code/modules/admin/admin_ranks.dm
index 2d5d9e09dbc..3b981bfda24 100644
--- a/code/modules/admin/admin_ranks.dm
+++ b/code/modules/admin/admin_ranks.dm
@@ -127,8 +127,7 @@ var/list/admin_ranks = list() //list of all admin_rank datums
previous_rights = R.rights
else
- establish_db_connection()
- if(!dbcon.IsConnected())
+ if(!dbcon.Connect())
log_world("Failed to connect to database in load_admin_ranks(). Reverting to legacy system.")
diary << "Failed to connect to database in load_admin_ranks(). Reverting to legacy system."
config.admin_legacy_system = 1
@@ -202,8 +201,7 @@ var/list/admin_ranks = list() //list of all admin_rank datums
world.SetConfig("APP/admin", ckey, "role=admin")
D.associate(directory[ckey]) //find the client for a ckey if they are connected and associate them with the new admin datum
else
- establish_db_connection()
- if(!dbcon.IsConnected())
+ if(!dbcon.Connect())
log_world("Failed to connect to database in load_admins(). Reverting to legacy system.")
diary << "Failed to connect to database in load_admins(). Reverting to legacy system."
config.admin_legacy_system = 1
@@ -375,8 +373,7 @@ var/list/admin_ranks = list() //list of all admin_rank datums
edit_admin_permissions()
/datum/admins/proc/updateranktodb(ckey,newrank)
- establish_db_connection()
- if (!dbcon.IsConnected())
+ if(!dbcon.Connect())
return
var/sql_ckey = sanitizeSQL(ckey)
var/sql_admin_rank = sanitizeSQL(newrank)
diff --git a/code/modules/admin/admin_verbs.dm b/code/modules/admin/admin_verbs.dm
index e48ed3422c1..cfb4c5e5e7f 100644
--- a/code/modules/admin/admin_verbs.dm
+++ b/code/modules/admin/admin_verbs.dm
@@ -94,7 +94,6 @@ var/list/admin_verbs_fun = list(
/client/proc/one_click_antag,
/client/proc/send_space_ninja,
/client/proc/cmd_admin_add_freeform_ai_law,
- /client/proc/cmd_admin_add_random_ai_law,
/client/proc/object_say,
/client/proc/toggle_random_events,
/client/proc/set_ooc,
@@ -216,12 +215,10 @@ var/list/admin_verbs_hideable = list(
/client/proc/cinematic,
/client/proc/send_space_ninja,
/client/proc/cmd_admin_add_freeform_ai_law,
- /client/proc/cmd_admin_add_random_ai_law,
/client/proc/cmd_admin_create_centcom_report,
/client/proc/cmd_change_command_name,
/client/proc/object_say,
/client/proc/toggle_random_events,
- /client/proc/cmd_admin_add_random_ai_law,
/datum/admins/proc/startnow,
/datum/admins/proc/restart,
/datum/admins/proc/delay,
diff --git a/code/modules/admin/banjob.dm b/code/modules/admin/banjob.dm
index 75eb896da2d..53c9a19e947 100644
--- a/code/modules/admin/banjob.dm
+++ b/code/modules/admin/banjob.dm
@@ -4,7 +4,7 @@
return 0
if(!M.client) //no cache. fallback to a DBQuery
- var/DBQuery/query = dbcon.NewQuery("SELECT reason FROM [format_table_name("ban")] WHERE ckey = '[sanitizeSQL(M.ckey)]' AND job = '[sanitizeSQL(rank)]' AND (bantype = 'JOB_PERMABAN' OR (bantype = 'JOB_TEMPBAN' AND expiration_time > Now())) AND isnull(unbanned)")
+ var/DBQuery/query = dbcon.NewQuery("SELECT reason FROM [format_table_name("ban")] WHERE ckey = '[sanitizeSQL(M.ckey)]' AND (bantype = 'JOB_PERMABAN' OR (bantype = 'JOB_TEMPBAN' AND expiration_time > Now())) AND isnull(unbanned) AND job = '[sanitizeSQL(rank)]'")
if(!query.Execute())
log_game("SQL ERROR obtaining jobbans. Error : \[[query.ErrorMsg()]\]\n")
return
diff --git a/code/modules/admin/create_poll.dm b/code/modules/admin/create_poll.dm
index 3f0647b2877..9c03cc4d57a 100644
--- a/code/modules/admin/create_poll.dm
+++ b/code/modules/admin/create_poll.dm
@@ -98,7 +98,7 @@
if(!question)
return
question = sanitizeSQL(question)
- var/DBQuery/query_polladd_question = dbcon.NewQuery("INSERT INTO [format_table_name("poll_question")] (polltype, starttime, endtime, question, adminonly, multiplechoiceoptions, createdby_ckey, createdby_ip, dontshow) VALUES ('[polltype]', '[starttime]', '[endtime]', '[question]', '[adminonly]', '[choice_amount]', '[sql_ckey]', '[address]', '[dontshow]')")
+ var/DBQuery/query_polladd_question = dbcon.NewQuery("INSERT INTO [format_table_name("poll_question")] (polltype, starttime, endtime, question, adminonly, multiplechoiceoptions, createdby_ckey, createdby_ip, dontshow) VALUES ('[polltype]', '[starttime]', '[endtime]', '[question]', '[adminonly]', '[choice_amount]', '[sql_ckey]', INET_ATON('[address]'), '[dontshow]')")
if(!query_polladd_question.Execute())
var/err = query_polladd_question.ErrorMsg()
log_game("SQL ERROR adding new poll question to table. Error : \[[err]\]\n")
@@ -108,7 +108,7 @@
message_admins("[key_name_admin(usr)] has created a new server poll. Poll type: [polltype] - Admin Only: [adminonly ? "Yes" : "No"]
Question: [question]")
return
var/pollid = 0
- var/DBQuery/query_get_id = dbcon.NewQuery("SELECT id FROM [format_table_name("poll_question")] WHERE question = '[question]' AND starttime = '[starttime]' AND endtime = '[endtime]' AND createdby_ckey = '[sql_ckey]' AND createdby_ip = '[address]'")
+ var/DBQuery/query_get_id = dbcon.NewQuery("SELECT id FROM [format_table_name("poll_question")] WHERE question = '[question]' AND starttime = '[starttime]' AND endtime = '[endtime]' AND createdby_ckey = '[sql_ckey]' AND createdby_ip = INET_ATON('[address]')")
if(!query_get_id.Execute())
var/err = query_get_id.ErrorMsg()
log_game("SQL ERROR obtaining id from poll_question table. Error : \[[err]\]\n")
diff --git a/code/modules/admin/ipintel.dm b/code/modules/admin/ipintel.dm
index af7296311f7..d6c02ee1e59 100644
--- a/code/modules/admin/ipintel.dm
+++ b/code/modules/admin/ipintel.dm
@@ -33,7 +33,7 @@
cachedintel.cache = TRUE
return cachedintel
- if (establish_db_connection())
+ if(dbcon.Connect())
var/DBQuery/query = dbcon.NewQuery({"
SELECT date, intel, TIMESTAMPDIFF(MINUTE,date,NOW())
FROM [format_table_name("ipintel")]
@@ -61,7 +61,7 @@
res.intel = ip_intel_query(ip)
if (updatecache && res.intel >= 0)
SSipintel.cache[ip] = res
- if (establish_db_connection())
+ if(dbcon.Connect())
var/DBQuery/query = dbcon.NewQuery("INSERT INTO [format_table_name("ipintel")] (ip, intel) VALUES (INET_ATON('[ip]'), [res.intel]) ON DUPLICATE KEY UPDATE intel = VALUES(intel), date = NOW()")
query.Execute()
return
diff --git a/code/modules/admin/permissionverbs/permissionedit.dm b/code/modules/admin/permissionverbs/permissionedit.dm
index f95cff086a4..ae419b2108f 100644
--- a/code/modules/admin/permissionverbs/permissionedit.dm
+++ b/code/modules/admin/permissionverbs/permissionedit.dm
@@ -60,9 +60,7 @@
if (!check_rights(R_PERMISSIONS))
return
- establish_db_connection()
-
- if(!dbcon.IsConnected())
+ if(!dbcon.Connect())
usr << "Failed to establish database connection."
return
@@ -109,8 +107,7 @@
if(check_rights(R_PERMISSIONS))
return
- establish_db_connection()
- if(!dbcon.IsConnected())
+ if(!dbcon.Connect())
usr << "Failed to establish database connection."
return
diff --git a/code/modules/admin/player_panel.dm b/code/modules/admin/player_panel.dm
index 70bc23beeb2..a6319933570 100644
--- a/code/modules/admin/player_panel.dm
+++ b/code/modules/admin/player_panel.dm
@@ -348,12 +348,16 @@
var/living_players_antagonist = 0
var/brains = 0
var/other_players = 0
+ var/living_skipped = 0
for(var/mob/M in mob_list)
if(M.ckey)
if(isnewplayer(M))
lobby_players++
continue
else if(M.stat != DEAD && M.mind && !isbrain(M))
+ if(M.z == ZLEVEL_CENTCOM)
+ living_skipped++
+ continue
living_players++
if(M.mind.special_role)
living_players_antagonist++
@@ -369,6 +373,7 @@
other_players++
dat += "
Players:|[connected_players - lobby_players] ingame|[connected_players] connected|[lobby_players] lobby|"
dat += "
Living Players:|[living_players_connected] active|[living_players - living_players_connected] disconnected|[living_players_antagonist] antagonists|"
+ dat += "
SKIPPED \[On centcom Z-level\]: [living_skipped] living players|"
dat += "
Dead/Observing players:|[observers_connected] active|[observers - observers_connected] disconnected|[brains] brains|"
if(other_players)
dat += "
[other_players] players in invalid state or the statistics code is bugged!"
diff --git a/code/modules/admin/secrets.dm b/code/modules/admin/secrets.dm
index 028eed67ac1..064e02e563f 100644
--- a/code/modules/admin/secrets.dm
+++ b/code/modules/admin/secrets.dm
@@ -10,8 +10,6 @@
Admin Log
Show Admin List
Mentor Log
-
- Show online players in the watchlist
"}
@@ -59,6 +57,7 @@
Summon Magic
Summon Events (Toggle)
There can only be one!
+ There can only be one! (40-second delay)
There can only be me!
Make all players retarded
Egalitarian Station Mode
@@ -102,14 +101,6 @@
dat += "No-one has done anything this round!"
usr << browse(dat, "window=admin_log")
- if("mentor_log")
- var/dat = "Mentor Log
"
- for(var/l in mentor_log)
- dat += "[l]"
- if(!mentor_log.len)
- dat += "No mentors have done anything this round!"
- usr << browse(dat, "window=mentor_log")
-
if("list_job_debug")
var/dat = "Job Debug info.
"
if(SSjob)
@@ -540,8 +531,17 @@
feedback_inc("admin_secrets_fun_used",1)
feedback_add_details("admin_secrets_fun_used","OO")
usr.client.only_one()
+ send_to_playing_players('sound/misc/highlander.ogg')
// message_admins("[key_name_admin(usr)] has triggered a battle to the death (only one)")
+ if("delayed_onlyone")
+ if(!check_rights(R_FUN))
+ return
+ feedback_inc("admin_secrets_fun_used",1)
+ feedback_add_details("admin_secrets_fun_used","OO")
+ usr.client.only_one_delayed()
+ send_to_playing_players('sound/misc/highlander_delayed.ogg')
+
if("onlyme")
if(!check_rights(R_FUN))
return
@@ -598,6 +598,14 @@
purrbation.")
log_admin("[key_name(usr)] has removed everyone from purrbation.")
+ if("mentor_log")
+ var/dat = "Mentor Log
"
+ for(var/l in mentor_log)
+ dat += "[l]"
+ if(!mentor_log.len)
+ dat += "No mentors have done anything this round!"
+ usr << browse(dat, "window=mentor_log")
+
if(E)
E.processing = 0
if(E.announceWhen>0)
diff --git a/code/modules/admin/sql_message_system.dm b/code/modules/admin/sql_message_system.dm
index aa71596b108..99d082feb41 100644
--- a/code/modules/admin/sql_message_system.dm
+++ b/code/modules/admin/sql_message_system.dm
@@ -52,7 +52,7 @@
log_game("SQL ERROR creating new [type] in messages table. Error : \[[err]\]\n")
return
if(logged)
- log_admin("[key_name(usr)] has created a [type][(type == "note" || type == "message" || type == "watchlist entry") ? " for [target_ckey]" : ""]: [text]")
+ log_admin_private("[key_name(usr)] has created a [type][(type == "note" || type == "message" || type == "watchlist entry") ? " for [target_ckey]" : ""]: [text]")
message_admins("[key_name_admin(usr)] has created a [type][(type == "note" || type == "message" || type == "watchlist entry") ? " for [target_ckey]" : ""]:
[text]")
if(browse)
browse_messages("[type]")
@@ -84,7 +84,7 @@
log_game("SQL ERROR deleting [type] from messages table. Error : \[[err]\]\n")
return
if(logged)
- log_admin("[key_name(usr)] has deleted a [type][(type == "note" || type == "message" || type == "watchlist entry") ? " for" : " made by"] [target_ckey]: [text]")
+ log_admin_private("[key_name(usr)] has deleted a [type][(type == "note" || type == "message" || type == "watchlist entry") ? " for" : " made by"] [target_ckey]: [text]")
message_admins("[key_name_admin(usr)] has deleted a [type][(type == "note" || type == "message" || type == "watchlist entry") ? " for" : " made by"] [target_ckey]:
[text]")
if(browse)
browse_messages("[type]")
@@ -119,7 +119,7 @@
var/err = query_edit_message.ErrorMsg()
log_game("SQL ERROR editing messages table. Error : \[[err]\]\n")
return
- log_admin("[key_name(usr)] has edited a [type] [(type == "note" || type == "message" || type == "watchlist entry") ? " for [target_ckey]" : ""] made by [admin_ckey] from [old_text] to [new_text]")
+ log_admin_private("[key_name(usr)] has edited a [type] [(type == "note" || type == "message" || type == "watchlist entry") ? " for [target_ckey]" : ""] made by [admin_ckey] from [old_text] to [new_text]")
message_admins("[key_name_admin(usr)] has edited a [type] [(type == "note" || type == "message" || type == "watchlist entry") ? " for [target_ckey]" : ""] made by [admin_ckey] from
[old_text]
to
[new_text]")
if(browse)
browse_messages("[type]")
@@ -150,7 +150,7 @@
var/err = query_message_secret.ErrorMsg()
log_game("SQL ERROR toggling message secrecy. Error : \[[err]\]\n")
return
- log_admin("[key_name(usr)] has toggled [target_ckey]'s [type] made by [admin_ckey] to [secret ? "not secret" : "secret"]")
+ log_admin_private("[key_name(usr)] has toggled [target_ckey]'s [type] made by [admin_ckey] to [secret ? "not secret" : "secret"]")
message_admins("[key_name_admin(usr)] has toggled [target_ckey]'s [type] made by [admin_ckey] to [secret ? "not secret" : "secret"]")
browse_messages(target_ckey = target_ckey)
@@ -255,9 +255,9 @@
notedata += data
output += "[target_ckey]
"
if(!linkless)
- output += "\[Add message\]"
+ output += "\[Add note\]"
+ output += " \[Add message\]"
output += " \[Add to watchlist\]"
- output += " \[Add note\]"
output += " \[Refresh page\]"
else
output += " \[Refresh page\]"
diff --git a/code/modules/admin/stickyban.dm b/code/modules/admin/stickyban.dm
index 3e01e50fd59..ae3f59e9282 100644
--- a/code/modules/admin/stickyban.dm
+++ b/code/modules/admin/stickyban.dm
@@ -33,7 +33,7 @@
world.SetConfig("ban",ckey,list2stickyban(ban))
- log_admin("[key_name(usr)] has stickybanned [ckey].\nReason: [ban["message"]]")
+ log_admin_private("[key_name(usr)] has stickybanned [ckey].\nReason: [ban["message"]]")
message_admins("[key_name_admin(usr)] has stickybanned [ckey].\nReason: [ban["message"]]")
if ("remove")
@@ -52,7 +52,7 @@
return
world.SetConfig("ban",ckey, null)
- log_admin("[key_name(usr)] removed [ckey]'s stickyban")
+ log_admin_private("[key_name(usr)] removed [ckey]'s stickyban")
message_admins("[key_name_admin(usr)] removed [ckey]'s stickyban")
if ("remove_alt")
@@ -100,7 +100,7 @@
world.SetConfig("ban",ckey,list2stickyban(ban))
- log_admin("[key_name(usr)] has disassociated [alt] from [ckey]'s sticky ban")
+ log_admin_private("[key_name(usr)] has disassociated [alt] from [ckey]'s sticky ban")
message_admins("[key_name_admin(usr)] has disassociated [alt] from [ckey]'s sticky ban")
if ("edit")
@@ -124,7 +124,7 @@
world.SetConfig("ban",ckey,list2stickyban(ban))
- log_admin("[key_name(usr)] has edited [ckey]'s sticky ban reason from [oldreason] to [reason]")
+ log_admin_private("[key_name(usr)] has edited [ckey]'s sticky ban reason from [oldreason] to [reason]")
message_admins("[key_name_admin(usr)] has edited [ckey]'s sticky ban reason from [oldreason] to [reason]")
if ("revert")
@@ -142,7 +142,7 @@
usr << "Error: No cached sticky ban for [ckey] found!"
world.SetConfig("ban",ckey,null)
- log_admin("[key_name(usr)] has reverted [ckey]'s sticky ban to it's state at round start.")
+ log_admin_private("[key_name(usr)] has reverted [ckey]'s sticky ban to it's state at round start.")
message_admins("[key_name_admin(usr)] has reverted [ckey]'s sticky ban to it's state at round start.")
//revert is mostly used when shit goes rouge, so we have to set it to null
// and wait a byond tick before assigning it to ensure byond clears its shit.
diff --git a/code/modules/admin/topic.dm b/code/modules/admin/topic.dm
index b1189723197..9eed5ccf1da 100644
--- a/code/modules/admin/topic.dm
+++ b/code/modules/admin/topic.dm
@@ -21,7 +21,7 @@
C << "Please try to be calm, clear, and descriptive in admin helps, do not assume the admin has seen any related events, and clearly state the names of anybody you are reporting."
message_admins("[key_name_admin(usr)] Rejected [C.key]'s admin help. [C.key]'s Adminhelp verb has been returned to them.")
- log_admin("[key_name(usr)] Rejected [C.key]'s admin help.")
+ log_admin_private("[key_name(usr)] Rejected [C.key]'s admin help.")
else if(href_list["icissue"])
var/client/C = locate(href_list["icissue"]) in clients
@@ -35,7 +35,7 @@
C << msg
message_admins("[key_name_admin(usr)] marked [C.key]'s admin help as an IC issue.")
- log_admin("[key_name(usr)] marked [C.key]'s admin help as an IC issue.")
+ log_admin_private("[key_name(usr)] marked [C.key]'s admin help as an IC issue.")
else if(href_list["stickyban"])
stickyban(href_list["stickyban"],href_list)
@@ -249,55 +249,11 @@
else
message_admins("Ban process: A mob matching [playermob.ckey] was found at location [playermob.x], [playermob.y], [playermob.z]. Custom ip and computer id fields replaced with the ip and computer id from the located mob.")
- if(!DB_ban_record(bantype, playermob, banduration, banreason, banjob, null, banckey, banip, bancid ))
+ if(!DB_ban_record(bantype, playermob, banduration, banreason, banjob, banckey, banip, bancid ))
usr << "Failed to apply ban."
return
create_message("note", banckey, null, banreason, null, null, 0, 0)
- else if(href_list["mentor"])
- if(!check_rights(R_ADMIN)) return
-
- var/mob/M = locate(href_list["mentor"])
- if(!ismob(M))
- usr << "this can be only used on instances of type /mob"
- return
-
- if(!M.client)
- usr << "no client"
- return
-
- log_admin("[key_name(usr)] has granted [key_name(M)] mentor access")
- message_admins("\blue [key_name_admin(usr)] has granted [key_name_admin(M)] mentor access", 1)
-
- var/DBQuery/query = dbcon.NewQuery("INSERT INTO [format_table_name("mentor")] (ckey) VALUES ('[M.client.ckey]')")
- if(!query.Execute())
- var/err = query.ErrorMsg()
- log_game("SQL ERROR during adding new mentor. Error : \[[err]\]\n")
- load_mentors()
- M.verbs += /client/proc/cmd_mentor_say
- M.verbs += /client/proc/show_mentor_memo
- M << "\blue You've been granted mentor access! Help people who send mentor-pms"
-
- else if(href_list["removementor"])
- if(!check_rights(R_ADMIN)) return
-
- var/mob/living/carbon/human/M = locate(href_list["removementor"])
- if(!ismob(M))
- usr << "this can be only used on instances of type /mob"
- return
-
- log_admin("[key_name(usr)] has removed mentor access from [key_name(M)]")
- message_admins("\blue [key_name_admin(usr)] has removed mentor access from [key_name_admin(M)]", 1)
-
- var/DBQuery/query = dbcon.NewQuery("DELETE FROM [format_table_name("mentor")] WHERE ckey = '[M.client.ckey]'")
- if(!query.Execute())
- var/err = query.ErrorMsg()
- log_game("SQL ERROR during removing mentor. Error : \[[err]\]\n")
- load_mentors()
- M << "\blue Your mentor access has been removed"
- M.verbs -= /client/proc/cmd_mentor_say
- M.verbs -= /client/proc/show_mentor_memo
-
else if(href_list["editrights"])
edit_rights_topic(href_list)
@@ -550,7 +506,7 @@
if(!reason)
return
- log_admin("[key_name(usr)] edited [banned_key]'s ban. Reason: [reason] Duration: [duration]")
+ log_admin_private("[key_name(usr)] edited [banned_key]'s ban. Reason: [reason] Duration: [duration]")
ban_unban_log_save("[key_name(usr)] edited [banned_key]'s ban. Reason: [reason] Duration: [duration]")
message_admins("[key_name_admin(usr)] edited [banned_key]'s ban. Reason: [reason] Duration: [duration]")
Banlist.cd = "/base/[banfolder]"
@@ -580,7 +536,7 @@
switch(alert("Remove appearance ban?","Please Confirm","Yes","No"))
if("Yes")
ban_unban_log_save("[key_name(usr)] removed [key_name(M)]'s appearance ban.")
- log_admin("[key_name(usr)] removed [key_name(M)]'s appearance ban.")
+ log_admin_private("[key_name(usr)] removed [key_name(M)]'s appearance ban.")
feedback_inc("ban_appearance_unban", 1)
DB_ban_unban(M.ckey, BANTYPE_ANY_JOB, "appearance")
if(M.client)
@@ -599,7 +555,7 @@
if(M.client)
jobban_buildcache(M.client)
ban_unban_log_save("[key_name(usr)] appearance banned [key_name(M)]. reason: [reason]")
- log_admin("[key_name(usr)] appearance banned [key_name(M)]. \nReason: [reason]")
+ log_admin_private("[key_name(usr)] appearance banned [key_name(M)]. \nReason: [reason]")
feedback_inc("ban_appearance",1)
create_message("note", M.ckey, null, "Appearance banned - [reason]", null, null, 0, 0)
message_admins("[key_name_admin(usr)] appearance banned [key_name_admin(M)].")
@@ -984,7 +940,7 @@
if(M.client)
jobban_buildcache(M.client)
ban_unban_log_save("[key_name(usr)] temp-jobbanned [key_name(M)] from [job] for [mins] minutes. reason: [reason]")
- log_admin("[key_name(usr)] temp-jobbanned [key_name(M)] from [job] for [mins] minutes.")
+ log_admin_private("[key_name(usr)] temp-jobbanned [key_name(M)] from [job] for [mins] minutes.")
feedback_inc("ban_job_tmp",1)
feedback_add_details("ban_job_tmp","- [job]")
if(!msg)
@@ -1009,7 +965,7 @@
if(M.client)
jobban_buildcache(M.client)
ban_unban_log_save("[key_name(usr)] perma-jobbanned [key_name(M)] from [job]. reason: [reason]")
- log_admin("[key_name(usr)] perma-banned [key_name(M)] from [job]")
+ log_admin_private("[key_name(usr)] perma-banned [key_name(M)] from [job]")
feedback_inc("ban_job",1)
feedback_add_details("ban_job","- [job]")
if(!msg)
@@ -1037,7 +993,7 @@
switch(alert("Job: '[job]' Reason: '[reason]' Un-jobban?","Please Confirm","Yes","No"))
if("Yes")
ban_unban_log_save("[key_name(usr)] unjobbanned [key_name(M)] from [job]")
- log_admin("[key_name(usr)] unbanned [key_name(M)] from [job]")
+ log_admin_private("[key_name(usr)] unbanned [key_name(M)] from [job]")
DB_ban_unban(M.ckey, BANTYPE_ANY_JOB, job)
if(M.client)
jobban_buildcache(M.client)
@@ -1185,7 +1141,7 @@
M << "To try to resolve this matter head to [config.banappeals]"
else
M << "No ban appeals URL has been set."
- log_admin("[key_name(usr)] has banned [M.ckey].\nReason: [key_name(M)]\nThis will be removed in [mins] minutes.")
+ log_admin_private("[key_name(usr)] has banned [M.ckey].\nReason: [key_name(M)]\nThis will be removed in [mins] minutes.")
message_admins("[key_name_admin(usr)] has banned [key_name_admin(M)].\nReason: [reason]\nThis will be removed in [mins] minutes.")
qdel(M.client)
@@ -1210,7 +1166,7 @@
usr << "Failed to apply ban."
return
ban_unban_log_save("[key_name(usr)] has permabanned [key_name(M)]. - Reason: [reason] - This is a permanent ban.")
- log_admin("[key_name(usr)] has banned [key_name_admin(M)].\nReason: [reason]\nThis is a permanent ban.")
+ log_admin_private("[key_name(usr)] has banned [key_name_admin(M)].\nReason: [reason]\nThis is a permanent ban.")
message_admins("[key_name_admin(usr)] has banned [key_name_admin(M)].\nReason: [reason]\nThis is a permanent ban.")
feedback_inc("ban_perma",1)
qdel(M.client)
@@ -2302,6 +2258,50 @@
else
error_viewer.show_to(owner, null, href_list["viewruntime_linear"])
+ else if(href_list["mentor"])
+ if(!check_rights(R_ADMIN)) return
+
+ var/mob/M = locate(href_list["mentor"])
+ if(!ismob(M))
+ usr << "this can be only used on instances of type /mob"
+ return
+
+ if(!M.client)
+ usr << "no client"
+ return
+
+ log_admin("[key_name(usr)] has granted [key_name(M)] mentor access")
+ message_admins("\blue [key_name_admin(usr)] has granted [key_name_admin(M)] mentor access", 1)
+
+ var/DBQuery/query = dbcon.NewQuery("INSERT INTO [format_table_name("mentor")] (ckey) VALUES ('[M.client.ckey]')")
+ if(!query.Execute())
+ var/err = query.ErrorMsg()
+ log_game("SQL ERROR during adding new mentor. Error : \[[err]\]\n")
+ load_mentors()
+ M.verbs += /client/proc/cmd_mentor_say
+ M.verbs += /client/proc/show_mentor_memo
+ M << "\blue You've been granted mentor access! Help people who send mentor-pms"
+
+ else if(href_list["removementor"])
+ if(!check_rights(R_ADMIN)) return
+
+ var/mob/living/carbon/human/M = locate(href_list["removementor"])
+ if(!ismob(M))
+ usr << "this can be only used on instances of type /mob"
+ return
+
+ log_admin("[key_name(usr)] has removed mentor access from [key_name(M)]")
+ message_admins("\blue [key_name_admin(usr)] has removed mentor access from [key_name_admin(M)]", 1)
+
+ var/DBQuery/query = dbcon.NewQuery("DELETE FROM [format_table_name("mentor")] WHERE ckey = '[M.client.ckey]'")
+ if(!query.Execute())
+ var/err = query.ErrorMsg()
+ log_game("SQL ERROR during removing mentor. Error : \[[err]\]\n")
+ load_mentors()
+ M << "\blue Your mentor access has been removed"
+ M.verbs -= /client/proc/cmd_mentor_say
+ M.verbs -= /client/proc/show_mentor_memo
+
else if(href_list["mentormemoeditlist"])
var/sql_key = sanitizeSQL("[href_list["memoeditlist"]]")
var/DBQuery/query_memoedits = dbcon.NewQuery("SELECT edits FROM [format_table_name("mentor_memo")] WHERE (ckey = '[sql_key]')")
diff --git a/code/modules/admin/verbs/adminhelp.dm b/code/modules/admin/verbs/adminhelp.dm
index b13462620a9..68f0ea15bc6 100644
--- a/code/modules/admin/verbs/adminhelp.dm
+++ b/code/modules/admin/verbs/adminhelp.dm
@@ -76,7 +76,6 @@
src.verbs |= /client/verb/adminhelp
adminhelptimerid = 0
-
/client/verb/adminhelp(msg as text)
set category = "Admin"
set name = "Adminhelp"
@@ -92,22 +91,25 @@
if(src.handle_spam_prevention(msg,MUTE_ADMINHELP))
return
+
+ var/datum/adminticket/ticket
var/ref_client = "\ref[src]"
- for(var/datum/adminticket/T in admintickets)
- if(T.permckey == src.ckey && T.resolved == "No")
+ for(var/I in admintickets)
+ var/datum/adminticket/T = I
+ if(T.permckey == src.ckey && T.resolved == TICKET_UNRESOLVED)
if(alert(usr,"You already have an adminhelp open, would you like to bump it?", "Bump Adminhelp", "Yes", "No") == "Yes")
- T.logs += "[src.ckey] has bumped this adminhelp!"
- if(T.admin == "N/A")
+ T.ticket_logs += "[src.ckey] has bumped this adminhelp!"
+ if(T.admin == TICKET_UNASSIGNED)
usr << "Due to the fact your Adminhelp had no assigned admin, admins have been pinged."
- message_admins("[src.ckey] has bumped their adminhelp #[T.ID], still no assigned admin!")
- msg = "HELP: [key_name(src)] [ADMIN_QUE(mob)] [ADMIN_PP(mob)] [ADMIN_VV(mob)] [ADMIN_SM(mob)] [ADMIN_FLW(mob)] [ADMIN_TP(mob)] (REJT) (IC) (R): [msg]"
+ message_admins("[src.ckey] has bumped their adminhelp #[T.id], still no assigned admin!")
+ msg = "HELP: [key_name(src)] [ADMIN_QUE(mob)] [ADMIN_PP(mob)] [ADMIN_VV(mob)] [ADMIN_SM(mob)] [ADMIN_FLW(mob)] [ADMIN_TP(mob)] (REJT) (IC) (R): [msg]"
for(var/client/X in admins)
if(X.prefs.toggles & SOUND_ADMINHELP)
X << 'sound/effects/adminhelp.ogg'
X << msg
else
usr << "Admins have been notified."
- message_admins("[src.ckey] has bumped their adminhelp #[T.ID].")
+ message_admins("[src.ckey] has bumped their adminhelp #[T.id].")
src.verbs -= /client/verb/adminhelp
adminhelptimerid = addtimer(CALLBACK(src, .proc/giveadminhelpverb), 1200, TIMER_STOPPABLE) //2 minute cooldown of admin helps
return
@@ -125,16 +127,11 @@
msg = keywords_lookup(msg)
- if(!mob) return //this doesn't happen
+ if(!mob)
+ return //this doesn't happen
createticket(src, msg, src.ckey, mob)
- var/datum/adminticket/ticket
-
- for(var/datum/adminticket/T in admintickets)
- if(T.permckey == src.ckey)
- ticket = T
-
msg = "HELP: [key_name(src)] [ADMIN_QUE(mob)] [ADMIN_PP(mob)] [ADMIN_VV(mob)] [ADMIN_SM(mob)] [ADMIN_FLW(mob)] [ADMIN_TP(mob)] (REJT) (IC) (R): [msg]"
//send this msg to all admins
@@ -142,22 +139,22 @@
for(var/client/X in admins)
if(X.prefs.toggles & SOUND_ADMINHELP)
X << 'sound/effects/adminhelp.ogg'
- window_flash(X)
+ window_flash(X, ignorepref = TRUE)
X << msg
-
//show it to the person adminhelping too
src << "PM to-Admins: [original_msg]"
//send it to irc if nobody is on and tell us how many were on
var/admin_number_present = send2irc_adminless_only(ckey,original_msg)
+ send2irc(ckey,original_msg)
+
log_admin("HELP: [key_name(src)]: [original_msg] - heard by [admin_number_present] non-AFK admins who have +BAN.")
if(admin_number_present <= 0)
src << "No active admins are online, your adminhelp was sent to the admin irc."
feedback_add_details("admin_verb","AH") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
return
-
/proc/get_admin_counts(requiredflags = R_BAN)
. = list("total" = list(), "noflags" = list(), "afk" = list(), "stealth" = list(), "present" = list())
for(var/client/X in admins)
@@ -186,8 +183,7 @@
else
final = "[msg] - All admins stealthed\[[english_list(stealthmins)]\], AFK\[[english_list(afkmins)]\], or lacks +BAN\[[english_list(powerlessmins)]\]! Total: [allmins.len] "
send2irc(source,final)
-// send2admindiscord(source,final)
-
+ send2otherserver(source,final)
/proc/send2irc(msg,msg2)
if(config.useircbot)
@@ -205,7 +201,6 @@
world.Export("[global.cross_address]?[list2params(message)]")
-
/proc/ircadminwho()
var/list/message = list("Admins: ")
var/list/admin_keys = list()
diff --git a/code/modules/admin/verbs/adminpm.dm b/code/modules/admin/verbs/adminpm.dm
index 6092d7e9b96..1f8cc73a2a0 100644
--- a/code/modules/admin/verbs/adminpm.dm
+++ b/code/modules/admin/verbs/adminpm.dm
@@ -6,7 +6,8 @@
if(!holder)
src << "Error: Admin-PM-Context: Only administrators may use this command."
return
- if( !ismob(M) || !M.client ) return
+ if( !ismob(M) || !M.client )
+ return
cmd_admin_pm(M.client,null)
feedback_add_details("admin_verb","APMM") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
@@ -20,16 +21,15 @@
var/list/client/targets[0]
for(var/client/T)
if(T.mob)
- if(istype(T.mob, /mob/new_player))
+ if(isnewplayer(T.mob))
targets["(New Player) - [T]"] = T
- else if(istype(T.mob, /mob/dead/observer))
+ else if(isobserver(T.mob))
targets["[T.mob.name](Ghost) - [T]"] = T
else
targets["[T.mob.real_name](as [T.mob.name]) - [T]"] = T
else
targets["(No Mob) - [T]"] = T
- var/list/sorted = sortList(targets)
- var/target = input(src,"To whom shall we send a message?","Admin PM",null) in sorted|null
+ var/target = input(src,"To whom shall we send a message?","Admin PM",null) as null|anything in sortList(targets)
cmd_admin_pm(targets[target],null)
feedback_add_details("admin_verb","APM") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
@@ -45,31 +45,30 @@
else if(istype(whom,/client))
C = whom
if(!C)
- if(holder) src << "Error: Admin-PM: Client not found."
+ if(holder)
+ src << "Error: Admin-PM: Client not found."
return
var/datum/adminticket/ticket
- for(var/datum/adminticket/T in admintickets)
- if(T.permckey == C.ckey)
- ticket = T
+ for(var/I in admintickets)
+ var/datum/adminticket/T = I
- if(ticket)
- if(ticket.active == "No" && ticket.replying == 0)
- message_admins("[key_name_admin(src)] has been assigned to [key_name(C, 0, 0)]'s admin help. This is the first reply. ([ticket.uID])")
- ticket.replying = 1
- ticket.user << "[src.ckey] has been assigned to your admin help, please await a reply."
- else if(ticket.replying == 1)
+ if(T.active == TICKET_INACTIVE && T.replying == TICKET_UNREPLIED)
+ message_admins("[key_name_admin(src)] has been assigned to [key_name(C, 0, 0)]'s admin help. This is the first reply. ([T.uID])")
+ T.replying = TICKET_REPLIED
+ T.user << "[src.ckey] has been assigned to your admin help, please await a reply."
+ else if(T.replying == TICKET_REPLIED)
src << "Error, this ticket is already being replied to!"
return
- else if(ticket.admin != "N/A" && ticket.replying == 0)
- if(ticket.admin != src.ckey)
- if(alert(src, "This adminhelp already has an admin assigned: [ticket.admin]! Are you sure you want to take it over?", "Conflict", "Yes", "No") == "Yes")
- message_admins("[key_name_admin(src)] has been assigned to [key_name(C, 0, 0)]'s admin help. Override: [ticket.admin]. ([ticket.uID])")
- ticket.user << "[src.ckey] has been assigned to your admin help, please await a reply."
- ticket.replying = 1
- else
- message_admins("[key_name_admin(src)] has started replying to [key_name(C, 0, 0)]'s admin help. They did not have an active ahelp.")
+ else if(T.admin != TICKET_UNASSIGNED && T.replying == TICKET_UNREPLIED)
+ if(T.admin != src.ckey)
+ if(alert(src, "This adminhelp already has an admin assigned: [T.admin]! Are you sure you want to take it over?", "Conflict", "Yes", "No") == "Yes")
+ message_admins("[key_name_admin(src)] has been assigned to [key_name(C, 0, 0)]'s admin help. Override: [T.admin]. ([T.uID])")
+ T.user << "[src.ckey] has been assigned to your admin help, please await a reply."
+ T.replying = TICKET_REPLIED
+ else
+ message_admins("[key_name_admin(src)] has started replying to [key_name(C, 0, 0)]'s admin help. They did not have an active ahelp.")
var/msg = input(src,"Message:", "Private message to [key_name(C, 0, 0)]") as text|null
@@ -78,15 +77,15 @@
if(ticket.admin != src.ckey)
message_admins("[key_name_admin(src)] has been unassigned from [key_name(C, 0, 0)]'s admin help. Cancelled reply. ([ticket.uID])")
ticket.user << "[src.ckey] has been unassigned from your admin help. (reply cancelled)"
- ticket.replying = 0
+ ticket.replying = TICKET_UNREPLIED
else
message_admins("[key_name_admin(src)] has cancelled their reply to [key_name(C, 0, 0)]'s admin help. No active ahelp.")
return
if(ticket)
- ticket.replying = 0
+ ticket.replying = TICKET_UNREPLIED
ticket.admin = src.ckey
- ticket.active = "Yes"
+ ticket.active = TICKET_ACTIVE
cmd_admin_pm(whom, msg)
@@ -113,7 +112,8 @@
if(!msg)
msg = input(src,"Message:", "Private message to [key_name(C, 0, 0)]") as text|null
- if(!msg) return
+ if(!msg)
+ return
if(!C)
if(holder) src << "Error: Admin-PM: Client not found."
else adminhelp(msg) //admin we are replying to has vanished, adminhelp instead
@@ -125,7 +125,8 @@
//clean the message if it's not sent by a high-rank admin
if(!check_rights(R_SERVER|R_DEBUG,0))
msg = sanitize(copytext(msg,1,MAX_MESSAGE_LEN))
- if(!msg) return
+ if(!msg)
+ return
msg = emoji_parse(msg)
var/keywordparsedmsg = keywords_lookup(msg)
@@ -133,26 +134,32 @@
if(C.holder)
if(holder) //both are admins
- for(var/datum/adminticket/T in admintickets)
- if(T.permckey == src.ckey && T.resolved == "No")
- T.logs += "[src] TO [C]: [msg] "
+ for(var/I in admintickets)
+ var/datum/adminticket/T = I
+ if(T.permckey == src.ckey && T.resolved == TICKET_UNRESOLVED)
+ T.ticket_logs += "[src] TO [C]: [msg] "
ticket = T
+ break
else if(T.permckey == src.ckey)
ticket = T
- if(ticket && ticket.resolved == "No")
+ break
+ if(ticket && ticket.resolved == TICKET_UNRESOLVED)
C << "Admin PM from-[key_name(src, C, 1)]: [keywordparsedmsg] (R)"
src << "Admin PM to-[key_name(C, src, 1)]: [keywordparsedmsg] (R)"
else
C << "Admin PM from-[key_name(src, C, 1)]: [keywordparsedmsg]"
src << "Admin PM to-[key_name(C, src, 1)]: [keywordparsedmsg]"
else //recipient is an admin but sender is not
- for(var/datum/adminticket/T in admintickets)
- if(T.permckey == src.ckey && T.resolved == "No")
- T.logs += "[src] TO [C]: [msg] "
+ for(var/I in admintickets)
+ var/datum/adminticket/T = I
+ if(T.permckey == src.ckey && T.resolved == TICKET_UNRESOLVED)
+ T.ticket_logs += "[src] TO [C]: [msg] "
ticket = T
+ break
else if(T.permckey == src.ckey)
ticket = T
- if(ticket && ticket.resolved == "No")
+ break
+ if(ticket && ticket.resolved == TICKET_UNRESOLVED)
C << "Reply PM from-[key_name(src, C, 1)]: [keywordparsedmsg] (R)"
else
C << "Reply PM from-[key_name(src, C, 1)]: [keywordparsedmsg]"
@@ -164,17 +171,19 @@
else
if(holder) //sender is an admin but recipient is not. Do BIG RED TEXT
- for(var/datum/adminticket/T in admintickets)
- if(T.permckey == C.ckey && T.resolved == "No")
- T.logs += "[src] TO [C]: [msg] "
+ for(var/I in admintickets)
+ var/datum/adminticket/T = I
+ if(T.permckey == C.ckey && T.resolved == TICKET_UNRESOLVED)
+ T.ticket_logs += "[src] TO [C]: [msg] "
ticket = T
+ break
else if(T.permckey == C.ckey)
ticket = T
-
+ break
C << "-- Administrator private message --"
C << "Admin PM from-[key_name(src, C, 0)]: [msg]"
C << "Click on the administrator's name to reply."
- if(ticket && ticket.resolved == "No")
+ if(ticket && ticket.resolved == TICKET_UNRESOLVED)
src << "Admin PM to-[key_name(C, src, 1)]: [msg] (R)"
else
src << "Admin PM to-[key_name(C, src, 1)]: [msg]"
@@ -190,9 +199,10 @@
if(C && reply)
if(sender)
C.cmd_admin_pm(sender,reply)
- for(var/datum/adminticket/T in admintickets)
- if(T.permckey == C.ckey && T.resolved == "No")
- T.logs += "[sendername] TO [C]: [msg] " //sender is still about, let's reply to them
+ for(var/I in admintickets)
+ var/datum/adminticket/T = I
+ if(T.permckey == C.ckey && T.resolved == TICKET_UNRESOLVED)
+ T.ticket_logs += "[sendername] TO [C]: [msg] " //sender is still about, let's reply to them
else
adminhelp(reply) //sender has left, adminhelp instead
return
@@ -232,7 +242,7 @@
C << "-- Administrator private message --"
C << "Admin PM from-[adminname]: [msg]"
C << "Click on the administrator's name to reply."
- window_flash(C)
+ window_flash(C, ignorepref = TRUE)
//always play non-admin recipients the adminhelp sound
C << 'sound/effects/adminhelp.ogg'
diff --git a/code/modules/admin/verbs/debug.dm b/code/modules/admin/verbs/debug.dm
index 3193296523d..44f4baaa5fe 100644
--- a/code/modules/admin/verbs/debug.dm
+++ b/code/modules/admin/verbs/debug.dm
@@ -683,7 +683,6 @@ var/list/TYPES_SHORTCUTS = list(
set desc = "Displays a list of things that have failed to GC this round"
var/dat = "List of things that failed to GC this round
"
-
for(var/path in SSgarbage.didntgc)
dat += "[path] - [SSgarbage.didntgc[path]] times
"
@@ -691,6 +690,10 @@ var/list/TYPES_SHORTCUTS = list(
for(var/path in SSgarbage.noqdelhint)
dat += "[path]
"
+ dat += "List of paths that slept in Destroy()
"
+ for(var/path in SSgarbage.sleptDestroy)
+ dat += "[path]
"
+
usr << browse(dat, "window=dellog")
/client/proc/debug_huds(i as num)
diff --git a/code/modules/admin/verbs/listahelps.dm b/code/modules/admin/verbs/listahelps.dm
index 51793496710..622138ccbd9 100644
--- a/code/modules/admin/verbs/listahelps.dm
+++ b/code/modules/admin/verbs/listahelps.dm
@@ -1,65 +1,60 @@
/datum/adminticket
- var/ID = "" //ID of the ticket, very important as its used to find adminhelps.
- var/user = "" //The user of the ahelp.
- var/uckey //The saved ckey of the adminheloing user.
- var/admin = "N/A" //The handling admin? Like come on.
- var/msg = "" //The adminhelp message.
- var/resolved = "No" //Is it resolved? Its much easier to have a "Yes" or a "No", as you can directly concat it into strings making life that much easier.
- var/permckey = "" //The perm ckey, never removed essentially.
- var/permuser = "" //Same as above!
- var/uID = "" //The UNIQUE id, made by putting part of the ckey and the ID together. Used internally in code.
- var/active = "No" //Is the adminhelp active, eg admin responded? This is the same as above, it makes life easier.
- var/logs = list() //The logs of the adminhelp.
- var/replying = 0 //Is someone responding to the adminhelp?
- var/mob //The mob adminhelping mob.
+ var/active = TICKET_INACTIVE //Is the adminhelp active, eg admin responded?
+ var/admin = TICKET_UNASSIGNED //The handling admin? Like come on.
+ var/id = "" //ID of the ticket, very important as its used to find adminhelps.
+ var/ticket_logs = list() //The logs of the adminhelp.
+ var/mob //The mob adminhelping mob.
+ var/msg = "" //The adminhelp message.
+ var/permckey = "" //The perm ckey, never removed essentially.
+ var/permuser = "" //Same as above!
+ var/replying = TICKET_UNREPLIED //Is someone responding to the adminhelp?
+ var/resolved = TICKET_UNRESOLVED //Is it resolved? Its much easier to have a "Yes" or a "No", as you can directly concat it into strings making life that much easier.
+ var/uckey //The saved ckey of the adminhelping user.
+ var/uID = "" //The UNIQUE id, made by putting part of the ckey and the ID together. Used internally in code.
+ var/user = "" //The user of the ahelp.
+
/client/proc/list_ahelps(user, resolved)
if(!check_rights(R_ADMIN))
src << "Error: Only administrators may use this command."
return
- if(resolved)
- user << "Current Ahelps:"
- for(var/datum/adminticket/T in admintickets)
- var/ref_mob = "\ref[T.mob]"
- usr << "#[T.ID] By: [key_name(T.permuser)] Ckey: [T.permckey] Name: [T.permuser] Unique ID: [T.uID]"
- usr << " Controls: (?) (PP) (VV) (SM) (TP) (FLW)"
+ for(var/I in admintickets)
+ var/datum/adminticket/T = I
+
+ if(resolved)
+ user << "Resolved Ahelps:"
+ usr << "#[T.id] By: [key_name(T.permuser)] Ckey: [T.permckey] Name: [T.permuser] Unique id: [T.uID]"
+ usr << " Controls: [ADMIN_QUE(mob)] [ADMIN_PP(mob)] [ADMIN_VV(mob)] [ADMIN_SM(mob)] [ADMIN_FLW(mob)] [ADMIN_TP(mob)]"
usr << " Message: [T.msg]"
usr << " Handling Admin: [T.admin]"
usr << " Replied To: [T.active]/(LOGS)"
- if(T.resolved == "No")
+ if(T.resolved == TICKET_UNRESOLVED)
usr << " Resolved: [T.resolved] (Resolve)"
else
usr << " Resolved: [T.resolved] (Unresolve)"
- else
- user << "Current Unresolved Ahelps:"
- for(var/datum/adminticket/T in admintickets)
- if(T.resolved == "No")
- var/ref_mob = "\ref[T.mob]"
- usr << "#[T.ID] By: [key_name(T.permuser)] Ckey: [T.permckey] Name: [T.permuser] Unique ID: [T.uID]"
- usr << " Controls: (?) (PP) (VV) (SM) (TP) (FLW)"
+ else
+ user << "Current Unresolved Ahelps:"
+ if(T.resolved == TICKET_UNRESOLVED)
+ usr << "#[T.id] By: [key_name(T.permuser)] Ckey: [T.permckey] Name: [T.permuser] Unique ID: [T.uID]"
+ usr << " Controls: [ADMIN_QUE(mob)] [ADMIN_PP(mob)] [ADMIN_VV(mob)] [ADMIN_SM(mob)] [ADMIN_FLW(mob)] [ADMIN_TP(mob)]"
usr << " Message: [T.msg]"
usr << " Handling Admin: [T.admin]"
usr << " Replied To: [T.active]/(LOGS)"
- if(T.resolved == "No")
+ if(T.resolved == TICKET_UNRESOLVED)
usr << " Resolved: [T.resolved] (Resolve)"
else
usr << " Resolved: [T.resolved] (Unresolve)"
/client/proc/ahelp_count(modifier)
var/amount
- for(var/datum/adminticket/T in admintickets)
- switch(modifier)
- if(0)
- if(T.resolved == "No")
- amount++
- if(1)
- if(T.resolved == "Yes")
- amount++
- if(2)
- amount++
-
+ for(var/I in admintickets)
+ var/datum/adminticket/T = I
+ if(T.resolved == TICKET_UNRESOLVED)
+ amount++
+ if(T.resolved == TICKET_RESOLVED)
+ amount++
return amount
@@ -82,15 +77,14 @@
if(count < 1)
usr << " None"
return
-
- for(var/datum/adminticket/T in admintickets)
- var/ref_mob = "\ref[T.mob]"
- usr << "#[T.ID] By: [key_name(T.permuser)] Ckey: [T.permckey] Name: [T.permuser] Unique ID: [T.uID]"
- usr << " Controls: (?) (PP) (VV) (SM) (TP) (FLW)"
+ for(var/I in admintickets)
+ var/datum/adminticket/T = I
+ usr << "#[T.id] By: [key_name(T.permuser)] Ckey: [T.permckey] Name: [T.permuser] Unique ID: [T.uID]"
+ usr << " Controls: [ADMIN_QUE(mob)] [ADMIN_PP(mob)] [ADMIN_VV(mob)] [ADMIN_SM(mob)] [ADMIN_FLW(mob)] [ADMIN_TP(mob)]"
usr << " Message: [T.msg]"
usr << " Handling Admin: [T.admin]"
usr << " Replied To: [T.active]/(LOGS)"
- if(T.resolved == "No")
+ if(T.resolved == TICKET_UNRESOLVED)
usr << " Resolved: [T.resolved] (Resolve)"
else
usr << " Resolved: [T.resolved] (Unresolve)"
@@ -106,8 +100,9 @@
var/count = 0
- for(var/datum/adminticket/T in admintickets)
- if(T.resolved =="No")
+ for(var/I in admintickets)
+ var/datum/adminticket/T = I
+ if(T.resolved == TICKET_UNRESOLVED)
count++
usr << "Current Unresolved Ahelps:"
@@ -116,15 +111,15 @@
usr << " None"
return
- for(var/datum/adminticket/T in admintickets)
- if(T.resolved == "No")
- var/ref_mob = "\ref[T.mob]"
- usr << "#[T.ID] By: [key_name(T.permuser)] Ckey: [T.permckey] Name: [T.permuser] Unique ID: [T.uID]"
- usr << " Controls: (?) (PP) (VV) (SM) (TP) (FLW)"
+ for(var/I in admintickets)
+ var/datum/adminticket/T = I
+ if(T.resolved == TICKET_UNRESOLVED)
+ usr << "#[T.id] By: [key_name(T.permuser)] Ckey: [T.permckey] Name: [T.permuser] Unique ID: [T.uID]"
+ usr << " Controls: [ADMIN_QUE(mob)] [ADMIN_PP(mob)] [ADMIN_VV(mob)] [ADMIN_SM(mob)] [ADMIN_FLW(mob)] [ADMIN_TP(mob)]"
usr << " Message: [T.msg]"
usr << " Handling Admin: [T.admin]"
usr << " Replied To: [T.active]/(LOGS)"
- if(T.resolved == "No")
+ if(T.resolved == TICKET_UNRESOLVED)
usr << " Resolved: [T.resolved] (Resolve)"
else
usr << " Resolved: [T.resolved] (Unresolve)"
@@ -140,25 +135,23 @@
var/count = 0
- for(var/datum/adminticket/T in admintickets)
- if(T.resolved == "No" && T.admin == ckey)
+ for(var/I in admintickets)
+ var/datum/adminticket/T = I
+ if(T.resolved == TICKET_UNRESOLVED && T.admin == ckey)
count++
if(count < 1)
usr << "You don't have any ACTIVE ahelps!"
return
-
-
-
- for(var/datum/adminticket/T in admintickets)
- if(T.resolved == "No" && T.admin == ckey)
- var/ref_mob = "\ref[T.mob]"
- usr << "#[T.ID] By: [key_name(T.permuser)] Ckey: [T.permckey] Name: [T.permuser] Unique ID: [T.uID]"
- usr << " Controls: (?) (PP) (VV) (SM) (TP) (FLW)"
+ for(var/I in admintickets)
+ var/datum/adminticket/T = I
+ if(T.resolved == TICKET_UNRESOLVED && T.admin == ckey)
+ usr << "#[T.id] By: [key_name(T.permuser)] Ckey: [T.permckey] Name: [T.permuser] Unique ID: [T.uID]"
+ usr << " Controls: [ADMIN_QUE(mob)] [ADMIN_PP(mob)] [ADMIN_VV(mob)] [ADMIN_SM(mob)] [ADMIN_FLW(mob)] [ADMIN_TP(mob)]"
usr << " Message: [T.msg]"
usr << " Handling Admin: [T.admin]"
usr << " Replied To: [T.active]/(LOGS)"
- if(T.resolved == "No")
+ if(T.resolved == TICKET_UNRESOLVED)
usr << " Resolved: [T.resolved] (Resolve)"
else
usr << " Resolved: [T.resolved] (Unresolve)"
@@ -170,7 +163,8 @@
var/count = 0
- for(var/datum/adminticket/T in admintickets)
+ for(var/I in admintickets)
+ var/datum/adminticket/T = I
if(T.permckey == ckey)
count++
@@ -180,34 +174,37 @@
usr << "Resolved Ahelps"
- var/rpass = 0
+ var/rpass = FALSE
- for(var/datum/adminticket/T in admintickets)
- if(T.permckey == ckey && T.resolved == "Yes")
- rpass = 1
- usr << "Adminhelp ID: #[T.ID] "
+ for(var/I in admintickets)
+ var/datum/adminticket/T = I
+
+ if(T.permckey == ckey && T.resolved == TICKET_RESOLVED)
+ rpass = TRUE
+ usr << "Adminhelp ID: #[T.id] "
usr << " Message: [T.msg]"
usr << " Handling Admin: [T.admin]"
usr << " Replied To: [T.active]/(LOGS)"
usr << " Resolved: [T.resolved]"
- if(rpass == 0)
+ if(rpass == FALSE)
usr << " None"
usr << "Unresolved Ahelps"
- var/upass = 0
+ var/upass = FALSE
- for(var/datum/adminticket/T in admintickets)
- if(T.permckey == ckey && T.resolved == "No")
- upass = 1
- usr << "Adminhelp ID: #[T.ID] "
+ for(var/I in admintickets)
+ var/datum/adminticket/T = I
+ if(T.permckey == ckey && T.resolved == TICKET_UNRESOLVED)
+ upass = TRUE
+ usr << "Adminhelp ID: #[T.id] "
usr << " Message: [T.msg]"
usr << " Handling Admin: [T.admin]"
usr << " Replied To: [T.active]/(LOGS)"
usr << " Resolved: [T.resolved]"
- if(upass == 0)
+ if(upass == FALSE)
usr << " None"
/client/proc/createticket(player, message, uckey, mob)
@@ -218,14 +215,15 @@
A.permckey = uckey
A.permuser = A.user
admintickets += A
- A.logs += "ADMINHELP: [A.permckey]([A.permuser]): [A.msg]"
+ A.ticket_logs += "ADMINHELP: [A.permckey]([A.permuser]): [A.msg]"
A.mob = mob
var/index = 0
- for(var/datum/adminticket/T in admintickets)
+ for(var/I in admintickets)
+ var/datum/adminticket/T = I
index++
- T.ID = index
- T.uID = "[T.permckey][T.ID]"
+ T.id = index
+ T.uID = "[T.permckey][T.id]"
/client/verb/resolveticketself()
set category = "Admin"
@@ -234,17 +232,16 @@
var/pass = 0
var/datum/adminticket/ticket
-
- for(var/datum/adminticket/T in admintickets)
- if(T.permckey == ckey && T.resolved != "Yes")
- T.resolved = "Yes"
- ticket = T
+ for(var/I in admintickets)
+ var/datum/adminticket/T = I
+ if(T.permckey == ckey && T.resolved != TICKET_RESOLVED)
+ T.resolved = TICKET_RESOLVED
pass = 1
switch(pass)
if(1)
src << "You have resolved your current adminhelp."
- message_admins("[src] has resolved his adminhelp (#[ticket.ID])")
+ message_admins("[src] has resolved his adminhelp (#[ticket.id])")
if(0)
src << "Error, you do not have any active adminhelps."
@@ -260,21 +257,20 @@
var/count = 0
var/datum/adminticket/ticket
-
- for(var/datum/adminticket/T in admintickets)
- if(T.admin == ckey && T.resolved != "Yes")
+ for(var/I in admintickets)
+ var/datum/adminticket/T = I
+ if(T.admin == ckey && T.resolved != TICKET_RESOLVED)
count++
- ticket = T
- if(count >= 1)
- usr << "Adminhelp #[ticket.ID]([ticket.uID]) resolved."
- message_admins("Adminhelp ID: #[ticket.ID]([ticket.uID]) was resolved by [usr.ckey]")
- ticket.user << "Your adminhelp (#[ticket.ID]) has been resolved by [usr.ckey]"
- ticket.user << 'sound/machines/twobeep.ogg'
- ticket.resolved = "Yes"
+ if(count >= 1)
+ usr << "Adminhelp #[T.id]([T.uID]) resolved."
+ message_admins("Adminhelp ID: #[T.id]([T.uID]) was resolved by [usr.ckey]")
+ ticket.user << "Your adminhelp (#[T.id]) has been resolved by [usr.ckey]"
+ ticket.user << 'sound/machines/twobeep.ogg'
+ ticket.resolved = TICKET_RESOLVED
- if(count < 1)
- usr << "You are not currently handling any adminhelps!"
+ if(count < 1)
+ usr << "You are not currently handling any adminhelps!"
/datum/adminticket/proc/viewlogs(NuID, mob/user)
var/dat = "View Logs for ahelp [NuID]
"
@@ -292,7 +288,7 @@
return
dat += ""
- for(var/text in ticket.logs)
+ for(var/text in ticket.ticket_logs)
dat += "[text] |
"
dat += "
"
@@ -301,12 +297,19 @@
popup.open()
/datum/adminticket/Topic(href, href_list)
+ if (!istype(src,/datum/admins))
+ src = usr.client.holder
+ if (!istype(src,/datum/admins))
+ usr << "Error: you are not an admin!"
+ return
+
if(href_list["view_logs"])
var/datum/adminticket/T = locate(href_list["view_logs"])
viewlogs(T.uID, usr)
if(href_list["resolve"])
- var/datum/adminticket/T = locate(href_list["resolve"])
- message_admins("Adminhelp ID: #[T.ID]([T.uID]) was [T.resolved == "Yes" ? "unresolved" : "resolved"] by [usr.ckey]")
- T.user << "Your adminhelp (#[T.ID]) has been [T.resolved == "Yes" ? "unresolved" : "resolved"] by [usr.ckey]"
- T.user << 'sound/machines/twobeep.ogg'
- T.resolved = "[T.resolved == "Yes" ? "No" : "Yes"]"
\ No newline at end of file
+ var/datum/adminticket/T = locate(href_list["resolve"]) in admintickets
+ if(T && istype(T))
+ message_admins("Adminhelp ID: #[T.id]([T.uID]) was [T.resolved == "Yes" ? "unresolved" : "resolved"] by [usr.ckey]")
+ T.user << "Your adminhelp (#[T.id]) has been [T.resolved == "Yes" ? "unresolved" : "resolved"] by [usr.ckey]"
+ T.user << 'sound/machines/twobeep.ogg'
+ T.resolved = "[T.resolved == "Yes" ? "No" : "Yes"]"
\ No newline at end of file
diff --git a/code/modules/admin/verbs/map_template_loadverb.dm b/code/modules/admin/verbs/map_template_loadverb.dm
index b1a524986dc..8070a9e58b0 100644
--- a/code/modules/admin/verbs/map_template_loadverb.dm
+++ b/code/modules/admin/verbs/map_template_loadverb.dm
@@ -4,10 +4,10 @@
var/datum/map_template/template
- var/map = input(usr, "Choose a Map Template to place at your CURRENT LOCATION","Place Map Template") as null|anything in map_templates
+ var/map = input(usr, "Choose a Map Template to place at your CURRENT LOCATION","Place Map Template") as null|anything in SSmapping.map_templates
if(!map)
return
- template = map_templates[map]
+ template = SSmapping.map_templates[map]
var/turf/T = get_turf(mob)
if(!T)
@@ -38,7 +38,7 @@
var/datum/map_template/M = new(map=map, rename="[map]")
if(M.preload_size(map))
usr << "Map template '[map]' ready to place ([M.width]x[M.height])"
- map_templates[M.name] = M
+ SSmapping.map_templates[M.name] = M
message_admins("[key_name_admin(usr)] has uploaded a map template ([map])")
else
usr << "Map template '[map]' failed to load properly"
diff --git a/code/modules/admin/verbs/onlyone.dm b/code/modules/admin/verbs/onlyone.dm
index 716cb7fa755..00e41b08869 100644
--- a/code/modules/admin/verbs/onlyone.dm
+++ b/code/modules/admin/verbs/onlyone.dm
@@ -5,8 +5,7 @@ var/highlander = FALSE
return
highlander = TRUE
- world << "THERE CAN BE ONLY ONE!!!"
- world << sound('sound/misc/highlander.ogg')
+ send_to_playing_players("THERE CAN BE ONLY ONE")
for(var/obj/item/weapon/disk/nuclear/N in poi_list)
N.relocate() //Gets it out of bags and such
@@ -20,6 +19,12 @@ var/highlander = FALSE
log_admin("[key_name(usr)] used THERE CAN BE ONLY ONE.")
addtimer(CALLBACK(SSshuttle.emergency, /obj/docking_port/mobile/emergency.proc/request, null, 1), 50)
+/client/proc/only_one_delayed()
+ send_to_playing_players("Bagpipes begin to blare. You feel Scottish pride coming over you.")
+ message_admins("[key_name_admin(usr)] used (delayed) THERE CAN BE ONLY ONE!")
+ log_admin("[key_name(usr)] used delayed THERE CAN BE ONLY ONE.")
+ addtimer(CALLBACK(src, .proc/only_one), 420)
+
/mob/living/carbon/human/proc/make_scottish()
ticker.mode.traitors += mind
mind.special_role = "highlander"
@@ -70,7 +75,7 @@ var/highlander = FALSE
antiwelder.icon_state = "bloodhand_right"
put_in_hands(antiwelder)
- src << "Your [H1.name] cries out for blood. Join in the slaughter, lest you be claimed yourself...\n\
+ src << "Your [H1.name] cries out for blood. Claim the lives of others, and your own will be restored!\n\
Activate it in your hand, and it will lead to the nearest target. Attack the nuclear authentication disk with it, and you will store it."
/proc/only_me()
diff --git a/code/modules/admin/verbs/randomverbs.dm b/code/modules/admin/verbs/randomverbs.dm
index 9a9fca3a5d9..616d562d59f 100644
--- a/code/modules/admin/verbs/randomverbs.dm
+++ b/code/modules/admin/verbs/randomverbs.dm
@@ -190,25 +190,6 @@
feedback_add_details("admin_verb","MUTE") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
-/client/proc/cmd_admin_add_random_ai_law()
- set category = "Fun"
- set name = "Add Random AI Law"
- if(!holder)
- src << "Only administrators may use this command."
- return
- var/confirm = alert(src, "You sure?", "Confirm", "Yes", "No")
- if(confirm != "Yes")
- return
- log_admin("[key_name(src)] has added a random AI law.")
- message_admins("[key_name_admin(src)] has added a random AI law.")
-
- var/show_log = alert(src, "Show ion message?", "Message", "Yes", "No")
- var/announce_ion_laws = (show_log == "Yes" ? 1 : -1)
-
- new /datum/round_event/ion_storm(0, announce_ion_laws)
- feedback_add_details("admin_verb","ION") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
-
-
//I use this proc for respawn character too. /N
/proc/create_xeno(ckey)
if(!ckey)
@@ -439,8 +420,9 @@ Traitors and the like can also be revived with the previous role mostly intact.
var/show_log = alert(src, "Show ion message?", "Message", "Yes", "No")
var/announce_ion_laws = (show_log == "Yes" ? 1 : -1)
- var/datum/round_event/ion_storm/ion = new(0, announce_ion_laws, input)
- ion.start()
+ var/datum/round_event/ion_storm/add_law_only/ion = new()
+ ion.announceEvent = announce_ion_laws
+ ion.ionMessage = input
feedback_add_details("admin_verb","IONC") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
diff --git a/code/modules/admin/verbs/reestablish_db_connection.dm b/code/modules/admin/verbs/reestablish_db_connection.dm
index 146b8481a19..d80ad68c8d0 100644
--- a/code/modules/admin/verbs/reestablish_db_connection.dm
+++ b/code/modules/admin/verbs/reestablish_db_connection.dm
@@ -15,7 +15,6 @@
return
dbcon.Disconnect()
- failed_db_connections = 0
log_admin("[key_name(usr)] has forced the database to disconnect")
message_admins("[key_name_admin(usr)] has forced the database to disconnect!")
feedback_add_details("admin_verb","FRDB") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
@@ -24,8 +23,8 @@
message_admins("[key_name_admin(usr)] is attempting to re-established the DB Connection")
feedback_add_details("admin_verb","RDB") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
- failed_db_connections = 0
- if (!establish_db_connection())
+ dbcon.failed_connections = 0
+ if(!dbcon.Connect())
message_admins("Database connection failed: " + dbcon.ErrorMsg())
else
message_admins("Database connection re-established")
\ No newline at end of file
diff --git a/code/modules/assembly/bomb.dm b/code/modules/assembly/bomb.dm
index f5ce8bb9b88..1017b5af82a 100644
--- a/code/modules/assembly/bomb.dm
+++ b/code/modules/assembly/bomb.dm
@@ -21,7 +21,7 @@
icon_state = bombtank.icon_state
if(bombassembly)
add_overlay(bombassembly.icon_state)
- add_overlay(bombassembly.overlays)
+ copy_overlays(bombassembly)
add_overlay("bomb_assembly")
/obj/item/device/onetankbomb/attackby(obj/item/weapon/W, mob/user, params)
diff --git a/code/modules/assembly/flash.dm b/code/modules/assembly/flash.dm
index 3d3db696fbf..1625708c8e7 100644
--- a/code/modules/assembly/flash.dm
+++ b/code/modules/assembly/flash.dm
@@ -90,7 +90,7 @@
if(M.flash_act(1, 1))
M.confused += power
terrible_conversion_proc(M, user)
- M.Stun(1)
+ M.Weaken(rand(4,6))
visible_message("[user] blinds [M] with the flash!")
user << "You blind [M] with the flash!"
M << "[user] blinds you with the flash!"
@@ -114,7 +114,7 @@
var/mob/living/silicon/robot/R = M
add_logs(user, R, "flashed", src)
update_icon(1)
- M.Weaken(6)
+ M.Weaken(rand(4,6))
R.confused += 5
R.flash_act(affect_silicon = 1)
user.visible_message("[user] overloads [R]'s sensors with the flash!", "You overload [R]'s sensors with the flash!")
diff --git a/code/modules/assembly/igniter.dm b/code/modules/assembly/igniter.dm
index 64c990ccabc..090843e82e5 100644
--- a/code/modules/assembly/igniter.dm
+++ b/code/modules/assembly/igniter.dm
@@ -1,6 +1,6 @@
/obj/item/device/assembly/igniter
name = "igniter"
- desc = "A small electronic device able to ignite combustable substances."
+ desc = "A small electronic device able to ignite combustible substances."
icon_state = "igniter"
materials = list(MAT_METAL=500, MAT_GLASS=50)
origin_tech = "magnets=1"
diff --git a/code/modules/atmospherics/environmental/LINDA_turf_tile.dm b/code/modules/atmospherics/environmental/LINDA_turf_tile.dm
index 47fa5299128..62169c40abd 100644
--- a/code/modules/atmospherics/environmental/LINDA_turf_tile.dm
+++ b/code/modules/atmospherics/environmental/LINDA_turf_tile.dm
@@ -100,7 +100,7 @@
if (atmos_overlay_types)
for(var/overlay in atmos_overlay_types-new_overlay_types) //doesn't remove overlays that would only be added
- overlays -= overlay
+ cut_overlay(overlay)
if (new_overlay_types.len)
if (atmos_overlay_types)
diff --git a/code/modules/atmospherics/machinery/airalarm.dm b/code/modules/atmospherics/machinery/airalarm.dm
index b1ce7612734..36b8f38a2b7 100644
--- a/code/modules/atmospherics/machinery/airalarm.dm
+++ b/code/modules/atmospherics/machinery/airalarm.dm
@@ -133,7 +133,7 @@
pixel_x = (dir & 3)? 0 : (dir == 4 ? -24 : 24)
pixel_y = (dir & 3)? (dir == 1 ? -24 : 24) : 0
- var/area/A = get_area_master(src)
+ var/area/A = get_area(src)
if(name == initial(name))
name = "[A.name] Air Alarm"
@@ -311,7 +311,7 @@
send_signal(device_id, list("checks" = text2num(params["val"])^2))
. = TRUE
if("set_external_pressure")
- var/area/A = get_area_master(src)
+ var/area/A = get_area(src)
var/target = input("New target pressure:", name, A.air_vent_info[device_id]["external"]) as num|null
if(!isnull(target) && !..())
send_signal(device_id, list("set_external_pressure" = target))
@@ -337,12 +337,12 @@
apply_mode()
. = TRUE
if("alarm")
- var/area/A = get_area_master(src)
+ var/area/A = get_area(src)
if(A.atmosalert(2, src))
post_alert(2)
. = TRUE
if("reset")
- var/area/A = get_area_master(src)
+ var/area/A = get_area(src)
if(A.atmosalert(0, src))
post_alert(0)
. = TRUE
@@ -374,7 +374,7 @@
return 0
/obj/machinery/airalarm/proc/refresh_all()
- var/area/A = get_area_master(src)
+ var/area/A = get_area(src)
for(var/id_tag in A.air_vent_names)
var/list/I = A.air_vent_info[id_tag]
if(I && I["timestamp"] + AALARM_REPORT_TIMEOUT / 2 > world.time)
@@ -409,7 +409,7 @@
return 1
/obj/machinery/airalarm/proc/apply_mode()
- var/area/A = get_area_master(src)
+ var/area/A = get_area(src)
switch(mode)
if(AALARM_MODE_SCRUBBING)
for(var/device_id in A.air_scrub_names)
@@ -541,7 +541,7 @@
icon_state = "alarmp"
return
- var/area/A = get_area_master(src)
+ var/area/A = get_area(src)
switch(max(danger_level, A.atmosalm))
if(0)
icon_state = "alarm0"
@@ -596,7 +596,7 @@
if(!frequency)
return
- var/area/A = get_area_master(src)
+ var/area/A = get_area(src)
var/datum/signal/alert_signal = new
alert_signal.source = src
@@ -614,7 +614,7 @@
frequency.post_signal(src, alert_signal,null,-1)
/obj/machinery/airalarm/proc/apply_danger_level()
- var/area/A = get_area_master(src)
+ var/area/A = get_area(src)
var/new_area_danger_level = 0
for(var/area/R in A.related)
diff --git a/code/modules/atmospherics/machinery/components/unary_devices/vent_pump.dm b/code/modules/atmospherics/machinery/components/unary_devices/vent_pump.dm
index f9897593750..22e701f8e6c 100644
--- a/code/modules/atmospherics/machinery/components/unary_devices/vent_pump.dm
+++ b/code/modules/atmospherics/machinery/components/unary_devices/vent_pump.dm
@@ -48,7 +48,7 @@
id_tag = num2text(uid)
/obj/machinery/atmospherics/components/unary/vent_pump/Destroy()
- var/area/A = get_area_master(src)
+ var/area/A = get_area(src)
A.air_vent_names -= id_tag
A.air_vent_info -= id_tag
@@ -165,7 +165,7 @@
"sigtype" = "status"
)
- var/area/A = get_area_master(src)
+ var/area/A = get_area(src)
if(!A.air_vent_names[id_tag])
name = "\improper [A.name] vent pump #[A.air_vent_names.len + 1]"
A.air_vent_names[id_tag] = name
diff --git a/code/modules/atmospherics/machinery/components/unary_devices/vent_scrubber.dm b/code/modules/atmospherics/machinery/components/unary_devices/vent_scrubber.dm
index 2b535e472a7..455d75d6969 100644
--- a/code/modules/atmospherics/machinery/components/unary_devices/vent_scrubber.dm
+++ b/code/modules/atmospherics/machinery/components/unary_devices/vent_scrubber.dm
@@ -40,7 +40,7 @@
id_tag = num2text(uid)
/obj/machinery/atmospherics/components/unary/vent_scrubber/Destroy()
- var/area/A = get_area_master(src)
+ var/area/A = get_area(src)
A.air_scrub_names -= id_tag
A.air_scrub_info -= id_tag
@@ -131,7 +131,7 @@
"sigtype" = "status"
)
- var/area/A = get_area_master(src)
+ var/area/A = get_area(src)
if(!A.air_scrub_names[id_tag])
name = "\improper [A.name] air scrubber #[A.air_scrub_names.len + 1]"
A.air_scrub_names[id_tag] = name
diff --git a/code/modules/atmospherics/machinery/pipes/manifold.dm b/code/modules/atmospherics/machinery/pipes/manifold.dm
index fe62ca03448..106d169339e 100644
--- a/code/modules/atmospherics/machinery/pipes/manifold.dm
+++ b/code/modules/atmospherics/machinery/pipes/manifold.dm
@@ -108,3 +108,13 @@
/obj/machinery/atmospherics/pipe/manifold/green/hidden
level = 1
+
+/obj/machinery/atmospherics/pipe/manifold/orange
+ pipe_color=rgb(255,127,39)
+ color=rgb(255,127,39)
+
+/obj/machinery/atmospherics/pipe/manifold/orange/visible
+ level = 2
+
+/obj/machinery/atmospherics/pipe/manifold/orange/hidden
+ level = 1
\ No newline at end of file
diff --git a/code/modules/atmospherics/machinery/pipes/manifold4w.dm b/code/modules/atmospherics/machinery/pipes/manifold4w.dm
index 8cd6837606c..b9624e89cb7 100644
--- a/code/modules/atmospherics/machinery/pipes/manifold4w.dm
+++ b/code/modules/atmospherics/machinery/pipes/manifold4w.dm
@@ -99,3 +99,13 @@
/obj/machinery/atmospherics/pipe/manifold4w/green/hidden
level = 1
+
+/obj/machinery/atmospherics/pipe/manifold4w/orange
+ pipe_color=rgb(255,127,39)
+ color=rgb(255,127,39)
+
+/obj/machinery/atmospherics/pipe/manifold4w/orange/visible
+ level = 2
+
+/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden
+ level = 1
diff --git a/code/modules/atmospherics/machinery/pipes/simple.dm b/code/modules/atmospherics/machinery/pipes/simple.dm
index 03560c12bc6..a2aff01baa1 100644
--- a/code/modules/atmospherics/machinery/pipes/simple.dm
+++ b/code/modules/atmospherics/machinery/pipes/simple.dm
@@ -110,3 +110,13 @@ The regular pipe you see everywhere, including bent ones.
/obj/machinery/atmospherics/pipe/simple/green/hidden
level = 1
+
+/obj/machinery/atmospherics/pipe/simple/orange
+ pipe_color=rgb(255,127,39)
+ color=rgb(255,127,39)
+
+/obj/machinery/atmospherics/pipe/simple/orange/visible
+ level = 2
+
+/obj/machinery/atmospherics/pipe/simple/orange/hidden
+ level = 1
\ No newline at end of file
diff --git a/code/modules/awaymissions/capture_the_flag.dm b/code/modules/awaymissions/capture_the_flag.dm
index 86d08ebf1f8..0310ab5ae38 100644
--- a/code/modules/awaymissions/capture_the_flag.dm
+++ b/code/modules/awaymissions/capture_the_flag.dm
@@ -360,6 +360,14 @@
desc = "This looks like it could really hurt in melee."
force = 50
+/obj/item/weapon/gun/ballistic/automatic/laser/ctf/dropped()
+ . = ..()
+ addtimer(CALLBACK(src, .proc/floor_vanish), 1)
+
+/obj/item/weapon/gun/ballistic/automatic/laser/ctf/proc/floor_vanish()
+ if(isturf(loc))
+ qdel(src)
+
/obj/item/ammo_box/magazine/recharge/ctf
ammo_type = /obj/item/ammo_casing/caseless/laser/ctf
diff --git a/code/modules/awaymissions/corpse.dm b/code/modules/awaymissions/corpse.dm
index 5b5dc1aba92..a70e280af4e 100644
--- a/code/modules/awaymissions/corpse.dm
+++ b/code/modules/awaymissions/corpse.dm
@@ -37,6 +37,7 @@
create(ckey = user.ckey)
/obj/effect/mob_spawn/Initialize(mapload)
+ ..()
if(instant || (roundstart && (mapload || (ticker && ticker.current_state > GAME_STATE_SETTING_UP))))
create()
else
@@ -348,7 +349,7 @@
glasses = /obj/item/clothing/glasses/sunglasses/reagent
has_id = 1
id_job = "Bartender"
- id_access = "Bartender"
+ id_access_list = list(access_bar)
/obj/effect/mob_spawn/human/bartender/alive
death = FALSE
@@ -385,7 +386,7 @@
glasses = /obj/item/clothing/glasses/sunglasses
has_id = 1
id_job = "Bridge Officer"
- id_access = "Captain"
+ id_access_list = list(access_cent_captain)
/obj/effect/mob_spawn/human/commander
name = "Commander"
@@ -400,7 +401,7 @@
pocket1 = /obj/item/weapon/lighter
has_id = 1
id_job = "Commander"
- id_access = "Captain"
+ id_access_list = list(access_cent_captain)
/obj/effect/mob_spawn/human/nanotrasensoldier
name = "Nanotrasen Private Security Officer"
@@ -413,7 +414,7 @@
back = /obj/item/weapon/storage/backpack/security
has_id = 1
id_job = "Private Security Force"
- id_access = "Security Officer"
+ id_access_list = list(access_cent_specops)
/obj/effect/mob_spawn/human/commander/alive
death = FALSE
@@ -477,4 +478,4 @@
if(despawn == "No" || !loc || !Adjacent(user))
return
user.visible_message("[user.name] climbs back into cryosleep...")
- qdel(user)
\ No newline at end of file
+ qdel(user)
diff --git a/code/modules/awaymissions/zlevel.dm b/code/modules/awaymissions/zlevel.dm
index e7f46b1e6fc..a470362a2ed 100644
--- a/code/modules/awaymissions/zlevel.dm
+++ b/code/modules/awaymissions/zlevel.dm
@@ -8,18 +8,9 @@ var/global/list/potentialRandomZlevels = generateMapList(filename = "config/away
if(potentialRandomZlevels && potentialRandomZlevels.len)
world << "Loading away mission..."
var/map = pick(potentialRandomZlevels)
- var/file = file(map)
- load_new_z_level(file)
+ load_new_z_level(map)
world << "Away mission loaded."
-/proc/load_new_z_level(var/file)
- if(!isfile(file))
- return FALSE
- maploader.load_map(file)
- smooth_zlevel(world.maxz)
- SortAreas()
- log_world("loaded [file] as z-level [world.maxz]")
-
/proc/reset_gateway_spawns(reset = FALSE)
for(var/obj/machinery/gateway/G in world)
if(reset)
@@ -69,97 +60,4 @@ var/global/list/potentialRandomZlevels = generateMapList(filename = "config/away
potentialMaps.Add(t)
- return potentialMaps
-
-
-/proc/seedRuins(list/z_levels = null, budget = 0, whitelist = /area/space, list/potentialRuins = space_ruins_templates)
- if(!z_levels || !z_levels.len)
- WARNING("No Z levels provided - Not generating ruins")
- return
-
- for(var/zl in z_levels)
- var/turf/T = locate(1, 1, zl)
- if(!T)
- WARNING("Z level [zl] does not exist - Not generating ruins")
- return
-
- var/overall_sanity = 100
- var/list/ruins = potentialRuins.Copy()
-
- while(budget > 0 && overall_sanity > 0)
- // Pick a ruin
- var/datum/map_template/ruin/ruin = null
- if(ruins && ruins.len)
- ruin = ruins[pick(ruins)]
- else
- log_world("Ruin loader had no ruins to pick from with [budget] left to spend.")
- break
- // Can we afford it
- if(ruin.cost > budget)
- overall_sanity--
- continue
- // If so, try to place it
- var/sanity = 100
- // And if we can't fit it anywhere, give up, try again
-
- while(sanity > 0)
- sanity--
- var/width_border = TRANSITIONEDGE + round(ruin.width / 2)
- var/height_border = TRANSITIONEDGE + round(ruin.height / 2)
- var/z_level = pick(z_levels)
- var/turf/T = locate(rand(width_border, world.maxx - width_border), rand(height_border, world.maxy - height_border), z_level)
- var/valid = TRUE
-
- for(var/turf/check in ruin.get_affected_turfs(T,1))
- var/area/new_area = get_area(check)
- if(!(istype(new_area, whitelist)))
- valid = FALSE
- break
-
- if(!valid)
- continue
-
- log_world("Ruin \"[ruin.name]\" placed at ([T.x], [T.y], [T.z])")
-
- var/obj/effect/ruin_loader/R = new /obj/effect/ruin_loader(T)
- R.Load(ruins,ruin)
- budget -= ruin.cost
- if(!ruin.allow_duplicates)
- ruins -= ruin.name
- break
-
- if(!overall_sanity)
- log_world("Ruin loader gave up with [budget] left to spend.")
-
-
-/obj/effect/ruin_loader
- name = "random ruin"
- icon = 'icons/obj/weapons.dmi'
- icon_state = "syndballoon"
- invisibility = 0
-
-/obj/effect/ruin_loader/proc/Load(list/potentialRuins = space_ruins_templates, datum/map_template/template = null)
- var/list/possible_ruins = list()
- for(var/A in potentialRuins)
- var/datum/map_template/T = potentialRuins[A]
- if(!T.loaded)
- possible_ruins += T
- if(!template && possible_ruins.len)
- template = safepick(possible_ruins)
- if(!template)
- return FALSE
- var/turf/central_turf = get_turf(src)
- for(var/i in template.get_affected_turfs(central_turf, 1))
- var/turf/T = i
- for(var/mob/living/simple_animal/monster in T)
- qdel(monster)
- for(var/obj/structure/flora/ash/plant in T)
- qdel(plant)
- template.load(central_turf,centered = TRUE)
- template.loaded++
- var/datum/map_template/ruin = template
- if(istype(ruin))
- new /obj/effect/landmark/ruin(central_turf, ruin)
-
- qdel(src)
- return TRUE
+ return potentialMaps
\ No newline at end of file
diff --git a/code/modules/cargo/exports/organs.dm b/code/modules/cargo/exports/organs.dm
index ebf34e8763c..39c0051a4ee 100644
--- a/code/modules/cargo/exports/organs.dm
+++ b/code/modules/cargo/exports/organs.dm
@@ -56,7 +56,7 @@
/datum/export/organ/alien/abductor
cost = 2500
unit_name = "abductor gland"
- export_types = list(/obj/item/organ/gland)
+ export_types = list(/obj/item/organ/heart/gland)
/datum/export/organ/alien/changeling_egg
cost = 50000 // Holy. Fuck.
diff --git a/code/modules/cargo/packs.dm b/code/modules/cargo/packs.dm
index 011997eafe1..b40a7a938eb 100644
--- a/code/modules/cargo/packs.dm
+++ b/code/modules/cargo/packs.dm
@@ -562,16 +562,6 @@
crate_name = "space suit crate"
crate_type = /obj/structure/closet/crate/secure
-/datum/supply_pack/engineering/hardsuit
- name = "Spare Hardsuit Crate"
- cost = 3500
- access = access_ce
- contains = list(/obj/item/clothing/suit/space/hardsuit/engine,
- /obj/item/clothing/suit/space/hardsuit/engine)
- crate_name = "spare hardsuit crate"
- crate_type = /obj/structure/closet/crate/secure/engineering
-
-
/datum/supply_pack/engineering/shieldgen
name = "Anti-breach Shield Projector Crate"
cost = 2500
@@ -843,6 +833,7 @@
/datum/supply_pack/science
group = "Science"
+ crate_type = /obj/structure/closet/crate/science
/datum/supply_pack/science/robotics
name = "Robotics Assembly Crate"
@@ -856,7 +847,7 @@
/obj/item/weapon/stock_parts/cell/high,
/obj/item/weapon/stock_parts/cell/high)
crate_name = "robotics assembly crate"
- crate_type = /obj/structure/closet/crate/secure
+ crate_type = /obj/structure/closet/crate/secure/science
/datum/supply_pack/science/robotics/mecha_ripley
name = "Circuit Crate (Ripley APLU)"
@@ -866,7 +857,7 @@
/obj/item/weapon/circuitboard/mecha/ripley/main,
/obj/item/weapon/circuitboard/mecha/ripley/peripherals)
crate_name = "\improper APLU Ripley circuit crate"
- crate_type = /obj/structure/closet/crate/secure
+ crate_type = /obj/structure/closet/crate/secure/science
/datum/supply_pack/science/robotics/mecha_odysseus
name = "Circuit Crate (Odysseus)"
@@ -875,7 +866,7 @@
contains = list(/obj/item/weapon/circuitboard/mecha/odysseus/peripherals,
/obj/item/weapon/circuitboard/mecha/odysseus/main)
crate_name = "\improper Odysseus circuit crate"
- crate_type = /obj/structure/closet/crate/secure
+ crate_type = /obj/structure/closet/crate/secure/science
/datum/supply_pack/science/plasma
name = "Plasma Assembly Crate"
@@ -905,7 +896,7 @@
/obj/machinery/shieldwallgen,
/obj/machinery/shieldwallgen)
crate_name = "shield generators crate"
- crate_type = /obj/structure/closet/crate/secure
+ crate_type = /obj/structure/closet/crate/secure/science
/datum/supply_pack/science/transfer_valves
name = "Tank Transfer Valves Crate"
@@ -914,7 +905,7 @@
contains = list(/obj/item/device/transfer_valve,
/obj/item/device/transfer_valve)
crate_name = "tank transfer valves crate"
- crate_type = /obj/structure/closet/crate/secure
+ crate_type = /obj/structure/closet/crate/secure/science
dangerous = TRUE
/datum/supply_pack/science/bz_canister
@@ -923,7 +914,7 @@
access_any = list(access_rd, access_atmospherics)
contains = list(/obj/machinery/portable_atmospherics/canister/bz)
crate_name = "bz canister crate"
- crate_type = /obj/structure/closet/crate/secure
+ crate_type = /obj/structure/closet/crate/secure/science
dangerous = TRUE
/datum/supply_pack/science/freon_canister
@@ -932,7 +923,7 @@
access_any = list(access_rd, access_atmospherics)
contains = list(/obj/machinery/portable_atmospherics/canister/freon)
crate_name = "freon canister crate"
- crate_type = /obj/structure/closet/crate/secure
+ crate_type = /obj/structure/closet/crate/secure/science
dangerous = TRUE
/datum/supply_pack/science/research
@@ -941,7 +932,7 @@
access = access_research
contains = list(/obj/item/device/machineprototype)
crate_name = "machine prototype crate"
- crate_type = /obj/structure/closet/crate/secure
+ crate_type = /obj/structure/closet/crate/secure/science
/datum/supply_pack/science/tablets
name = "Tablet Crate"
@@ -1263,6 +1254,12 @@
contains = list(/obj/item/stack/sheet/cardboard/fifty)
crate_name = "cardboard sheets crate"
+/datum/supply_pack/materials/plastic50
+ name = "50 Plastic Sheets"
+ cost = 1000
+ contains = list(/obj/item/stack/sheet/plastic/fifty)
+ crate_name = "plastic sheets crate"
+
/datum/supply_pack/materials/sandstone30
name = "30 Sandstone Blocks"
cost = 1000
@@ -1391,16 +1388,6 @@
/obj/item/weapon/book/manual/random/,
/obj/item/weapon/book/random/triple)
-/datum/supply_pack/misc/posters
- name = "Corporate Posters Crate"
- cost = 800
- contains = list(/obj/item/weapon/poster/legit,
- /obj/item/weapon/poster/legit,
- /obj/item/weapon/poster/legit,
- /obj/item/weapon/poster/legit,
- /obj/item/weapon/poster/legit)
- crate_name = "corporate posters crate"
-
/datum/supply_pack/misc/paper
name = "Bureaucracy Crate"
cost = 1500
diff --git a/code/modules/client/client_procs.dm b/code/modules/client/client_procs.dm
index d3f2377161f..5e8b107b4fb 100644
--- a/code/modules/client/client_procs.dm
+++ b/code/modules/client/client_procs.dm
@@ -220,7 +220,7 @@ var/next_external_rsc = 0
connection_time = world.time
connection_realtime = world.realtime
connection_timeofday = world.timeofday
-
+ winset(src, null, "command=\".configure graphics-hwmode on\"")
if (byond_version < config.client_error_version) //Out of date client.
src << "Your version of byond is too old:"
src << config.client_error_message
@@ -350,8 +350,7 @@ var/next_external_rsc = 0
if (IsGuestKey(src.key))
return
- establish_db_connection()
- if(!dbcon.IsConnected())
+ if(!dbcon.Connect())
return
var/sql_ckey = sanitizeSQL(src.ckey)
@@ -372,13 +371,12 @@ var/next_external_rsc = 0
if (IsGuestKey(src.key))
return
- establish_db_connection()
- if (!dbcon.IsConnected())
+ if (!dbcon.Connect())
return
var/sql_ckey = sanitizeSQL(ckey)
- var/DBQuery/query_ip = dbcon.NewQuery("SELECT ckey FROM [format_table_name("player")] WHERE ip = '[address]' AND ckey != '[sql_ckey]'")
+ var/DBQuery/query_ip = dbcon.NewQuery("SELECT ckey FROM [format_table_name("player")] WHERE ip = INET_ATON('[address]') AND ckey != '[sql_ckey]'")
query_ip.Execute()
related_accounts_ip = ""
while(query_ip.NextRow())
@@ -402,12 +400,11 @@ var/next_external_rsc = 0
var/sql_admin_rank = sanitizeSQL(admin_rank)
- var/DBQuery/query_insert = dbcon.NewQuery("INSERT INTO [format_table_name("player")] (id, ckey, firstseen, lastseen, ip, computerid, lastadminrank) VALUES (null, '[sql_ckey]', Now(), Now(), '[sql_ip]', '[sql_computerid]', '[sql_admin_rank]') ON DUPLICATE KEY UPDATE lastseen = VALUES(lastseen), ip = VALUES(ip), computerid = VALUES(computerid), lastadminrank = VALUES(lastadminrank)")
+ var/DBQuery/query_insert = dbcon.NewQuery("INSERT INTO [format_table_name("player")] (id, ckey, firstseen, lastseen, ip, computerid, lastadminrank) VALUES (null, '[sql_ckey]', Now(), Now(), INET_ATON('[sql_ip]'), '[sql_computerid]', '[sql_admin_rank]') ON DUPLICATE KEY UPDATE lastseen = VALUES(lastseen), ip = VALUES(ip), computerid = VALUES(computerid), lastadminrank = VALUES(lastadminrank)")
query_insert.Execute()
//Logging player access
- var/serverip = "[world.internet_address]:[world.port]"
- var/DBQuery/query_accesslog = dbcon.NewQuery("INSERT INTO `[format_table_name("connection_log")]` (`id`,`datetime`,`serverip`,`ckey`,`ip`,`computerid`) VALUES(null,Now(),'[serverip]','[sql_ckey]','[sql_ip]','[sql_computerid]');")
+ var/DBQuery/query_accesslog = dbcon.NewQuery("INSERT INTO `[format_table_name("connection_log")]` (`id`,`datetime`,`server_ip`,`server_port`,`ckey`,`ip`,`computerid`) VALUES(null,Now(),INET_ATON('[world.internet_address]'),'[world.port]''[sql_ckey]',INET_ATON('[sql_ip]'),'[sql_computerid]');")
query_accesslog.Execute()
/client/proc/check_randomizer(topic)
@@ -577,6 +574,7 @@ var/next_external_rsc = 0
if ("key")
return FALSE
+
/client/proc/change_view(new_size)
if (isnull(new_size))
CRASH("change_view called without argument.")
diff --git a/code/modules/client/preferences_savefile.dm b/code/modules/client/preferences_savefile.dm
index 551d18e246e..6d47bc7f0de 100644
--- a/code/modules/client/preferences_savefile.dm
+++ b/code/modules/client/preferences_savefile.dm
@@ -191,7 +191,7 @@ SAVEFILE UPDATING/VERSIONING - 'Simplified', or rather, more coder-friendly ~Car
default_slot = sanitize_integer(default_slot, 1, max_save_slots, initial(default_slot))
toggles = sanitize_integer(toggles, 0, 65535, initial(toggles))
clientfps = sanitize_integer(clientfps, 0, 1000, 0)
- parallax = sanitize_integer(parallax, PARALLAX_INSANE, PARALLAX_DISABLE, PARALLAX_HIGH)
+ parallax = sanitize_integer(parallax, PARALLAX_INSANE, PARALLAX_DISABLE, null)
ghost_form = sanitize_inlist(ghost_form, ghost_forms, initial(ghost_form))
ghost_orbit = sanitize_inlist(ghost_orbit, ghost_orbits, initial(ghost_orbit))
ghost_accs = sanitize_inlist(ghost_accs, ghost_accs_options, GHOST_ACCS_DEFAULT_OPTION)
diff --git a/code/modules/client/verbs/suicide.dm b/code/modules/client/verbs/suicide.dm
index 74bc234a5b2..781f06b4ace 100644
--- a/code/modules/client/verbs/suicide.dm
+++ b/code/modules/client/verbs/suicide.dm
@@ -2,7 +2,6 @@
/mob/living/carbon/human/verb/suicide()
set hidden = 1
- return
if(!canSuicide())
return
var/oldkey = ckey
diff --git a/code/modules/client/verbs/who.dm b/code/modules/client/verbs/who.dm
index 55b8c7737ea..4576a7b8a8d 100644
--- a/code/modules/client/verbs/who.dm
+++ b/code/modules/client/verbs/who.dm
@@ -2,44 +2,32 @@
set name = "Who"
set category = "OOC"
+ var/msg = ""
+
var/list/Lines = list()
- var/msg = "--------\n"
if(length(admins) > 0)
Lines += "Admins:"
for(var/client/C in sortList(admins))
- if(C.holder)
- if(!C.holder.fakekey)
- Lines += "[C.key][show_info(C)]"
+ if(!C.holder.fakekey)
+ Lines += "\t [C.key][show_info(C)]"
if(length(mentors) > 0)
Lines += "Mentors:"
for(var/client/C in sortList(clients))
var/mentor = mentor_datums[C.ckey]
if(mentor)
- Lines += "[C.key][show_info(C)]"
-
+ Lines += "\t [C.key][show_info(C)]"
- var/player_text = ""
- var/display_count = 0 //Used to detect as to whether or not we should display the players list
+ Lines += "Players:"
for(var/client/C in sortList(clients))
- if(C.holder)
- if(C.holder.fakekey)
- display_count++
- player_text += "[C.holder.fakekey][show_info(C)]\n"
- else if(!check_mentor_other(C))
- display_count++
- player_text += "[C.key][show_info(C)]\n"
-
- if(display_count > 0)
- Lines += "Players:"
- Lines += player_text
+ if(!check_mentor_other(C) || (C.holder && C.holder.fakekey))
+ Lines += "\t [C.key][show_info(C)]"
for(var/line in Lines)
msg += "[line]\n"
- msg += "Total Players: [length(clients)]\n"
- msg += "--------"
+ msg += "Total Players: [length(Lines)]"
src << msg
/client/proc/show_info(var/client/C)
@@ -49,7 +37,7 @@
if(!src.holder)
return ""
- var/entry = "\t[C.key]"
+ var/entry = ""
if(C.holder && C.holder.fakekey)
entry += " (as [C.holder.fakekey])"
if (isnewplayer(C.mob))
@@ -74,7 +62,6 @@
entry += " ([round(C.avgping, 1)]ms)"
return entry
-
/client/verb/adminwho()
set category = "Admin"
set name = "Adminwho"
@@ -89,7 +76,7 @@
if(isobserver(C.mob))
msg += " - Observing"
- else if(istype(C.mob,/mob/new_player))
+ else if(isnewplayer(C.mob))
msg += " - Lobby"
else
msg += " - Playing"
@@ -99,15 +86,16 @@
msg += "\n"
else
for(var/client/C in admins)
+ if(C.is_afk())
+ continue //Don't show afk admins to adminwho
if(!C.holder.fakekey)
msg += "\t[C] is a [C.holder.rank]\n"
-
+ msg += "Adminhelps are also sent to IRC. If no admins are available in game adminhelp anyways and an admin on IRC will see it and respond."
src << msg
/client/verb/mentorwho()
set category = "Mentor"
set name = "Mentorwho"
-
var/msg = "Current Mentors:\n"
for(var/client/C in mentors)
var/suffix = ""
@@ -121,7 +109,5 @@
if(C.is_afk())
suffix += " (AFK)"
-
msg += "\t[C][suffix]\n"
-
src << msg
\ No newline at end of file
diff --git a/code/modules/clothing/clothing.dm b/code/modules/clothing/clothing.dm
index ecdbc4fe7c4..9db42e05718 100644
--- a/code/modules/clothing/clothing.dm
+++ b/code/modules/clothing/clothing.dm
@@ -155,8 +155,7 @@ var/list/damaged_clothes_icons = list()
add_overlay(damaged_clothes_icon, 1)
else
damaged_clothes = 0
- overlays -= damaged_clothes_icons[index]
- priority_overlays -= damaged_clothes_icons[index]
+ cut_overlay(damaged_clothes_icons[index], TRUE)
//Ears: currently only used for headsets and earmuffs
diff --git a/code/modules/clothing/glasses/glasses.dm b/code/modules/clothing/glasses/glasses.dm
index 4948f658e6e..afcefbe4c19 100644
--- a/code/modules/clothing/glasses/glasses.dm
+++ b/code/modules/clothing/glasses/glasses.dm
@@ -136,6 +136,12 @@
item_state = "glasses"
vision_correction = 1 //corrects nearsightedness
+/obj/item/clothing/glasses/regular/jamjar
+ name = "Jamjar Glasses"
+ desc = "Also known as Virginity Protectors."
+ icon_state = "jamjar_glasses"
+ item_state = "jamjar_glasses"
+
/obj/item/clothing/glasses/regular/hipster
name = "Prescription Glasses"
desc = "Made by Uncool. Co."
@@ -363,39 +369,3 @@
add_client_colour(G.glass_colour_type)
else
remove_client_colour(G.glass_colour_type)
-
-//VG rip
-
-/obj/item/clothing/glasses/sunglasses/purple
- desc = "Strangely ancient technology used to help provide rudimentary eye cover. Enhanced shielding blocks many flashes, and the colored lenses let you see the world in purple."
- name = "purple sunglasses"
- icon_state = "sun_purple"
-
-/obj/item/clothing/glasses/sunglasses/star
- name = "star-shaped sunglasses"
- desc = "Novelty sunglasses, both lenses are in the shape of a star."
- icon_state = "sun_star"
-
-/obj/item/clothing/glasses/sunglasses/rockstar
- name = "red star-shaped sunglasses"
- desc = "Novelty sunglasses with a fancy silver frame and two red-tinted star-shaped lenses. You should probably stomp on them and get a pair of normal ones."
- icon_state = "sun_star_silver"
-
-/obj/item/clothing/glasses/gglasses
- name = "Green Glasses"
- desc = "Forest green glasses, like the kind you'd wear when hatching a nasty scheme."
- icon_state = "gglasses"
- item_state = "gglasses"
-
-/obj/item/clothing/glasses/welding/superior
- name = "superior welding goggles"
- desc = "Welding goggles made from more expensive materials, strangely smells like potatoes. Allows for better vision than normal goggles.."
- icon_state = "rwelding-g"
- item_state = "rwelding-g"
- actions_types = list(/datum/action/item_action/toggle)
- flash_protect = 2
- tint = 1
- visor_vars_to_toggle = VISOR_FLASHPROTECT | VISOR_TINT
- flags_cover = GLASSESCOVERSEYES
- visor_flags_inv = HIDEEYES
- glass_colour_type = /datum/client_colour/glass_colour/green
diff --git a/code/modules/clothing/glasses/hud.dm b/code/modules/clothing/glasses/hud.dm
index f58fe77a017..b8d07201033 100644
--- a/code/modules/clothing/glasses/hud.dm
+++ b/code/modules/clothing/glasses/hud.dm
@@ -46,6 +46,16 @@
invis_view = SEE_INVISIBLE_MINIMUM
glass_colour_type = /datum/client_colour/glass_colour/green
+/obj/item/clothing/glasses/hud/health/sunglasses
+ name = "Medical HUDSunglasses"
+ desc = "Sunglasses with a medical HUD."
+ icon_state = "sunhudmed"
+ origin_tech = "magnets=3;biotech=3;engineering=3"
+ darkness_view = 1
+ flash_protect = 1
+ tint = 1
+ glass_colour_type = /datum/client_colour/glass_colour/blue
+
/obj/item/clothing/glasses/hud/diagnostic
name = "Diagnostic HUD"
desc = "A heads-up display capable of analyzing the integrity and status of robotics and exosuits."
@@ -100,9 +110,9 @@
icon_state = "hudpatch"
/obj/item/clothing/glasses/hud/security/sunglasses
- name = "HUDSunglasses"
- desc = "Sunglasses with a HUD."
- icon_state = "sunhud"
+ name = "Security HUDSunglasses"
+ desc = "Sunglasses with a security HUD."
+ icon_state = "sunhudsec"
origin_tech = "magnets=3;combat=3;engineering=3"
darkness_view = 1
flash_protect = 1
diff --git a/code/modules/clothing/glasses/vg_glasses.dm b/code/modules/clothing/glasses/vg_glasses.dm
new file mode 100644
index 00000000000..774dc494a05
--- /dev/null
+++ b/code/modules/clothing/glasses/vg_glasses.dm
@@ -0,0 +1,36 @@
+
+//VG rip
+
+/obj/item/clothing/glasses/sunglasses/purple
+ desc = "Strangely ancient technology used to help provide rudimentary eye cover. Enhanced shielding blocks many flashes, and the colored lenses let you see the world in purple."
+ name = "purple sunglasses"
+ icon_state = "sun_purple"
+
+/obj/item/clothing/glasses/sunglasses/star
+ name = "star-shaped sunglasses"
+ desc = "Novelty sunglasses, both lenses are in the shape of a star."
+ icon_state = "sun_star"
+
+/obj/item/clothing/glasses/sunglasses/rockstar
+ name = "red star-shaped sunglasses"
+ desc = "Novelty sunglasses with a fancy silver frame and two red-tinted star-shaped lenses. You should probably stomp on them and get a pair of normal ones."
+ icon_state = "sun_star_silver"
+
+/obj/item/clothing/glasses/gglasses
+ name = "Green Glasses"
+ desc = "Forest green glasses, like the kind you'd wear when hatching a nasty scheme."
+ icon_state = "gglasses"
+ item_state = "gglasses"
+
+/obj/item/clothing/glasses/welding/superior
+ name = "superior welding goggles"
+ desc = "Welding goggles made from more expensive materials, strangely smells like potatoes. Allows for better vision than normal goggles.."
+ icon_state = "rwelding-g"
+ item_state = "rwelding-g"
+ actions_types = list(/datum/action/item_action/toggle)
+ flash_protect = 2
+ tint = 1
+ visor_vars_to_toggle = VISOR_FLASHPROTECT | VISOR_TINT
+ flags_cover = GLASSESCOVERSEYES
+ visor_flags_inv = HIDEEYES
+ glass_colour_type = /datum/client_colour/glass_colour/green
\ No newline at end of file
diff --git a/code/modules/clothing/gloves/miscellaneous.dm b/code/modules/clothing/gloves/miscellaneous.dm
index e606074aa72..90d56d5d7e1 100644
--- a/code/modules/clothing/gloves/miscellaneous.dm
+++ b/code/modules/clothing/gloves/miscellaneous.dm
@@ -55,71 +55,3 @@
max_heat_protection_temperature = GLOVES_MAX_TEMP_PROTECT
resistance_flags = 0
armor = list(melee = 15, bullet = 35, laser = 35, energy = 20, bomb = 35, bio = 35, rad = 35, fire = 0, acid = 0)
-
-/obj/item/clothing/gloves/batmangloves
- desc = "Used for handling all things bat related."
- name = "batgloves"
- icon_state = "bmgloves"
- item_state = "bmgloves"
- item_color = "bmgloves"
-
-
-obj/item/clothing/gloves/bikergloves
- name = "Biker's Gloves"
- icon_state = "biker-gloves"
- item_state = "biker-gloves"
- item_color = "bikergloves"
-
-/obj/item/clothing/gloves/megagloves
- desc = "Uncomfortably bulky armored gloves."
- name = "DRN-001 Gloves"
- icon_state = "megagloves"
- item_state = "megagloves"
-
-
-/obj/item/clothing/gloves/protogloves
- desc = "Funcionally identical to the DRN-001 model's, but in red!"
- name = "Prototype Gloves"
- icon_state = "protogloves"
- item_state = "protogloves"
-
-
-/obj/item/clothing/gloves/megaxgloves
- desc = "An upgrade to the DRN-001's gauntlets, retains the uncomfortable armor, but comes with white gloves!"
- name = "Maverick Hunter gloves"
- icon_state = "megaxgloves"
- item_state = "megaxgloves"
-
-
-/obj/item/clothing/gloves/joegloves
- desc = "Large grey gloves, very similar to the Prototype's."
- name = "Sniper Gloves"
- icon_state = "joegloves"
- item_state = "joegloves"
-
-
-/obj/item/clothing/gloves/doomguy
- desc = ""
- name = "Doomguy's gloves"
- icon_state = "doom"
- item_state = "doom"
-
-
-/obj/item/clothing/gloves/anchor_arms
- name = "Anchor Arms"
- desc = "When you're a jerk, everybody loves you."
- icon_state = "anchorarms"
- item_state = "anchorarms"
-
-/obj/item/clothing/gloves/neorussian
- name = "neo-Russian gloves"
- desc = "Utilizes a non-slip technology that allows you to never drop your precious bottles of vodka."
- icon_state = "nr_gloves"
- item_state = "nr_gloves"
-
-
-/obj/item/clothing/gloves/neorussian/fingerless
- name = "neo-Russian fingerless gloves"
- desc = "For these tense combat situations when you just have to pick your nose."
- icon_state = "nr_fgloves"
- item_state = "nr_fgloves"
diff --git a/code/modules/clothing/gloves/vg_gloves.dm b/code/modules/clothing/gloves/vg_gloves.dm
new file mode 100644
index 00000000000..07ed8d621bf
--- /dev/null
+++ b/code/modules/clothing/gloves/vg_gloves.dm
@@ -0,0 +1,68 @@
+
+/obj/item/clothing/gloves/batmangloves
+ desc = "Used for handling all things bat related."
+ name = "batgloves"
+ icon_state = "bmgloves"
+ item_state = "bmgloves"
+ item_color = "bmgloves"
+
+
+obj/item/clothing/gloves/bikergloves
+ name = "Biker's Gloves"
+ icon_state = "biker-gloves"
+ item_state = "biker-gloves"
+ item_color = "bikergloves"
+
+/obj/item/clothing/gloves/megagloves
+ desc = "Uncomfortably bulky armored gloves."
+ name = "DRN-001 Gloves"
+ icon_state = "megagloves"
+ item_state = "megagloves"
+
+
+/obj/item/clothing/gloves/protogloves
+ desc = "Funcionally identical to the DRN-001 model's, but in red!"
+ name = "Prototype Gloves"
+ icon_state = "protogloves"
+ item_state = "protogloves"
+
+
+/obj/item/clothing/gloves/megaxgloves
+ desc = "An upgrade to the DRN-001's gauntlets, retains the uncomfortable armor, but comes with white gloves!"
+ name = "Maverick Hunter gloves"
+ icon_state = "megaxgloves"
+ item_state = "megaxgloves"
+
+
+/obj/item/clothing/gloves/joegloves
+ desc = "Large grey gloves, very similar to the Prototype's."
+ name = "Sniper Gloves"
+ icon_state = "joegloves"
+ item_state = "joegloves"
+
+
+/obj/item/clothing/gloves/doomguy
+ desc = ""
+ name = "Doomguy's gloves"
+ icon_state = "doom"
+ item_state = "doom"
+
+
+/obj/item/clothing/gloves/anchor_arms
+ name = "Anchor Arms"
+ desc = "When you're a jerk, everybody loves you."
+ icon_state = "anchorarms"
+ item_state = "anchorarms"
+
+/obj/item/clothing/gloves/neorussian
+ name = "neo-Russian gloves"
+ desc = "Utilizes a non-slip technology that allows you to never drop your precious bottles of vodka."
+ icon_state = "nr_gloves"
+ item_state = "nr_gloves"
+
+
+/obj/item/clothing/gloves/neorussian/fingerless
+ name = "neo-Russian fingerless gloves"
+ desc = "For these tense combat situations when you just have to pick your nose."
+ icon_state = "nr_fgloves"
+ item_state = "nr_fgloves"
\ No newline at end of file
diff --git a/code/modules/clothing/head/helmet.dm b/code/modules/clothing/head/helmet.dm
index 3b5b00581b3..c7612dfd4d6 100644
--- a/code/modules/clothing/head/helmet.dm
+++ b/code/modules/clothing/head/helmet.dm
@@ -332,83 +332,3 @@
if(F.on)
user.AddLuminosity(-F.brightness_on)
SetLuminosity(F.brightness_on)
-
-/obj/item/clothing/head/helmet/dredd
- name = "Judge Helmet"
- desc = "Judge, Jury, and Executioner."
- icon_state = "dredd-helmet"
- item_state = "dredd-helmet"
- armor = list(melee = 40, bullet = 30, laser = 30,energy = 30, bomb = 50, bio = 90, rad = 20, fire = 50, acid = 50)
- cold_protection = HEAD
- min_cold_protection_temperature = SPACE_HELM_MIN_TEMP_PROTECT
- heat_protection = HEAD
- max_heat_protection_temperature = SPACE_HELM_MAX_TEMP_PROTECT
- flags = STOPSPRESSUREDMAGE
- strip_delay = 80
- dog_fashion = null
-
-/obj/item/clothing/head/helmet/aviatorhelmet
- name = "Aviator Helmet"
- desc = "Help the Bombardier!"
- armor = list(melee = 25, bullet = 0, laser = 20, energy = 10, bomb = 10, bio = 0, rad = 0)
- item_state = "aviator_helmet"
- icon_state = "aviator_helmet"
-
-/obj/item/clothing/head/helmet/biker
- name = "Biker's Helmet"
- desc = "This helmet should protect you from russians and masked vigilantes."
- armor = list(melee = 25, bullet = 15, laser = 20, energy = 10, bomb = 10, bio = 0, rad = 0)
- icon_state = "biker_helmet"
- flags_inv = HIDEMASK|HIDEEARS|HIDEEYES|HIDEFACE|HIDEHAIR
-
-/obj/item/clothing/head/helmet/richard
- name = "Richard"
- desc = "Do you like hurting people?"
- armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0)
- icon_state = "richard"
- flags_inv = HIDEMASK|HIDEEARS|HIDEEYES|HIDEFACE|HIDEHAIR
-
-/obj/item/clothing/head/helmet/megahelmet
- name = "DRN-001 Helmet"
- desc = "The helmet of the DRN-001 model. A simple, sturdy blue helmet."
- icon_state = "megahelmet"
- item_state = "megahelmet"
- siemens_coefficient = 1
-
-/obj/item/clothing/head/helmet/protohelmet
- name = "Prototype Helmet"
- desc = "Shiny red helmet with white accents and a built in shaded visor that does absolutely nothing, nothing but look rad as hell."
- icon_state = "protohelmet"
- item_state = "protohelmet"
- siemens_coefficient = 1
-
-/obj/item/clothing/head/helmet/megaxhelmet
- name = "Maverick Hunter Helmet"
- desc = "Heavily armored upgrade to the DRN-001 model's helmet, now comes with a pointless red crystal thing!"
- icon_state = "megaxhelmet"
- item_state = "megaxhelmet"
- siemens_coefficient = 1
-
-/obj/item/clothing/head/helmet/joehelmet
- name = "Sniper Helmet"
- desc = "Helmet belonging to one of the many mass produced 'Joe' type robots."
- icon_state = "joehelmet"
- flags_inv = HIDEMASK|HIDEEARS|HIDEEYES|HIDEFACE|HIDEHAIR
- item_state = "joehelmet"
- siemens_coefficient = 1
-
-/obj/item/clothing/head/helmet/doomguy
- name = "Doomguy's helmet"
- desc = ""
- icon_state = "doom"
- flags_inv = HIDEMASK|HIDEEARS|HIDEEYES|HIDEFACE|HIDEHAIR
- item_state = "doom"
- armor = list(melee = 50, bullet = 40, laser = 40,energy = 40, bomb = 5, bio = 0, rad = 0)
- siemens_coefficient = 1
-
-/obj/item/clothing/head/helmet/neorussian
- name = "neo-Russian helmet"
- desc = "This piece of equipment can double as a pillow, a bowl, an emergency toilet, and sometimes as a helmet."
- icon_state = "nr_helmet"
- item_state = "nr_helmet"
-
diff --git a/code/modules/clothing/head/misc.dm b/code/modules/clothing/head/misc.dm
index e41928c7cec..30767f2bcc0 100644
--- a/code/modules/clothing/head/misc.dm
+++ b/code/modules/clothing/head/misc.dm
@@ -279,80 +279,3 @@
name = "magnificent crown"
desc = "A crown worn by only the highest emperors of the land."
icon_state = "fancycrown"
-
-/obj/item/clothing/head/stalhelm
- name = "Stalhelm"
- desc = "Ein Helm, um die Nazi-Interesse an fremden Raumstationen zu sichern."
- icon_state = "stalhelm"
- item_state = "stalhelm"
-
-/obj/item/clothing/head/panzer
- name = "Panzer Cap"
- desc = "Ein Hut passen nur für die größten Tanks."
- icon_state = "panzercap"
- item_state = "panzercap"
-
-/obj/item/clothing/head/naziofficer
- name = "Officer Cap"
- desc = "Ein Hut von Offizieren in der Nazi-Partei getragen."
- icon_state = "officercap"
- item_state = "officercap"
-
-
-/obj/item/clothing/head/russobluecamohat
- name = "russian blue camo beret"
- desc = "A symbol of discipline, honor, and lots and lots of removal of some type of skewered food."
- icon_state = "russobluecamohat"
- item_state = "russobluecamohat"
-
-/obj/item/clothing/head/russofurhat
- name = "russian fur hat"
- desc = "Russian winter got you down? Maybe your enemy, but not you!"
- icon_state = "russofurhat"
- item_state = "russofurhat"
-
-/obj/item/clothing/head/squatter_hat
- name = "slav squatter hat"
- icon_state = "squatter_hat"
- item_state = "squatter_hat"
- desc = "Cyka blyat."
-
-/obj/item/clothing/head/snake
- name = "snake head"
- desc = "Reenact acts of violence against reptiles, or sneak into a swamp unnoticed."
- icon_state = "snakehead"
- item_state = "snakehead"
-
-/obj/item/clothing/head/mummy_rags
- name = "mummy rags"
- desc = "Ancient rags taken off from some mummy."
- icon_state = "mummy"
- item_state = "mummy"
- item_color = "mummy"
- flags_inv = HIDEHAIR|HIDEFACE|HIDEEARS
-
-/obj/item/clothing/head/clownpiece
- name = "Clownpiece's jester hat"
- desc = "A purple polka-dotted jester's hat with yellow pompons."
- icon_state = "clownpiece"
- item_state = "clownpiece"
-
-/obj/item/clothing/head/mitre
- name = "mitre"
- desc = "A funny hat worn by extremely boring people."
- icon_state = "mitre"
- item_state = "mitre"
-
-/obj/item/clothing/head/tinfoil
- name = "tinfoil hat"
- desc = "There's no evidence that the security staff is NOT out to get you."
- icon_state = "foilhat"
- item_state = "paper"
- siemens_coefficient = 2
-
-/obj/item/clothing/head/celtic
- name = "\improper Celtic crown"
- desc = "According to legend, Celtic kings would use crowns like this one to shield their subjects from harsh winters back on Earth."
- icon_state = "celtic_crown"
- item_state = "celtic_crown"
-
diff --git a/code/modules/clothing/head/vg_hats.dm b/code/modules/clothing/head/vg_hats.dm
new file mode 100644
index 00000000000..414fa5ea621
--- /dev/null
+++ b/code/modules/clothing/head/vg_hats.dm
@@ -0,0 +1,156 @@
+
+/obj/item/clothing/head/helmet/dredd
+ name = "Judge Helmet"
+ desc = "Judge, Jury, and Executioner."
+ icon_state = "dredd-helmet"
+ item_state = "dredd-helmet"
+ armor = list(melee = 40, bullet = 30, laser = 30,energy = 30, bomb = 50, bio = 90, rad = 20, fire = 50, acid = 50)
+ cold_protection = HEAD
+ min_cold_protection_temperature = SPACE_HELM_MIN_TEMP_PROTECT
+ heat_protection = HEAD
+ max_heat_protection_temperature = SPACE_HELM_MAX_TEMP_PROTECT
+ flags = STOPSPRESSUREDMAGE
+ strip_delay = 80
+ dog_fashion = null
+
+/obj/item/clothing/head/helmet/aviatorhelmet
+ name = "Aviator Helmet"
+ desc = "Help the Bombardier!"
+ armor = list(melee = 25, bullet = 0, laser = 20, energy = 10, bomb = 10, bio = 0, rad = 0)
+ item_state = "aviator_helmet"
+ icon_state = "aviator_helmet"
+
+/obj/item/clothing/head/helmet/biker
+ name = "Biker's Helmet"
+ desc = "This helmet should protect you from russians and masked vigilantes."
+ armor = list(melee = 25, bullet = 15, laser = 20, energy = 10, bomb = 10, bio = 0, rad = 0)
+ icon_state = "biker_helmet"
+ flags_inv = HIDEMASK|HIDEEARS|HIDEEYES|HIDEFACE|HIDEHAIR
+
+/obj/item/clothing/head/helmet/richard
+ name = "Richard"
+ desc = "Do you like hurting people?"
+ armor = list(melee = 0, bullet = 0, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0)
+ icon_state = "richard"
+ flags_inv = HIDEMASK|HIDEEARS|HIDEEYES|HIDEFACE|HIDEHAIR
+
+/obj/item/clothing/head/helmet/megahelmet
+ name = "DRN-001 Helmet"
+ desc = "The helmet of the DRN-001 model. A simple, sturdy blue helmet."
+ icon_state = "megahelmet"
+ item_state = "megahelmet"
+ siemens_coefficient = 1
+
+/obj/item/clothing/head/helmet/protohelmet
+ name = "Prototype Helmet"
+ desc = "Shiny red helmet with white accents and a built in shaded visor that does absolutely nothing, nothing but look rad as hell."
+ icon_state = "protohelmet"
+ item_state = "protohelmet"
+ siemens_coefficient = 1
+
+/obj/item/clothing/head/helmet/megaxhelmet
+ name = "Maverick Hunter Helmet"
+ desc = "Heavily armored upgrade to the DRN-001 model's helmet, now comes with a pointless red crystal thing!"
+ icon_state = "megaxhelmet"
+ item_state = "megaxhelmet"
+ siemens_coefficient = 1
+
+/obj/item/clothing/head/helmet/joehelmet
+ name = "Sniper Helmet"
+ desc = "Helmet belonging to one of the many mass produced 'Joe' type robots."
+ icon_state = "joehelmet"
+ flags_inv = HIDEMASK|HIDEEARS|HIDEEYES|HIDEFACE|HIDEHAIR
+ item_state = "joehelmet"
+ siemens_coefficient = 1
+
+/obj/item/clothing/head/helmet/doomguy
+ name = "Doomguy's helmet"
+ desc = ""
+ icon_state = "doom"
+ flags_inv = HIDEMASK|HIDEEARS|HIDEEYES|HIDEFACE|HIDEHAIR
+ item_state = "doom"
+ armor = list(melee = 50, bullet = 40, laser = 40,energy = 40, bomb = 5, bio = 0, rad = 0)
+ siemens_coefficient = 1
+
+/obj/item/clothing/head/helmet/neorussian
+ name = "neo-Russian helmet"
+ desc = "This piece of equipment can double as a pillow, a bowl, an emergency toilet, and sometimes as a helmet."
+ icon_state = "nr_helmet"
+ item_state = "nr_helmet"
+
+
+/obj/item/clothing/head/stalhelm
+ name = "Stalhelm"
+ desc = "Ein Helm, um die Nazi-Interesse an fremden Raumstationen zu sichern."
+ icon_state = "stalhelm"
+ item_state = "stalhelm"
+
+/obj/item/clothing/head/panzer
+ name = "Panzer Cap"
+ desc = "Ein Hut passen nur fr die grten Tanks."
+ icon_state = "panzercap"
+ item_state = "panzercap"
+
+/obj/item/clothing/head/naziofficer
+ name = "Officer Cap"
+ desc = "Ein Hut von Offizieren in der Nazi-Partei getragen."
+ icon_state = "officercap"
+ item_state = "officercap"
+
+
+/obj/item/clothing/head/russobluecamohat
+ name = "russian blue camo beret"
+ desc = "A symbol of discipline, honor, and lots and lots of removal of some type of skewered food."
+ icon_state = "russobluecamohat"
+ item_state = "russobluecamohat"
+
+/obj/item/clothing/head/russofurhat
+ name = "russian fur hat"
+ desc = "Russian winter got you down? Maybe your enemy, but not you!"
+ icon_state = "russofurhat"
+ item_state = "russofurhat"
+
+/obj/item/clothing/head/squatter_hat
+ name = "slav squatter hat"
+ icon_state = "squatter_hat"
+ item_state = "squatter_hat"
+ desc = "Cyka blyat."
+
+/obj/item/clothing/head/snake
+ name = "snake head"
+ desc = "Reenact acts of violence against reptiles, or sneak into a swamp unnoticed."
+ icon_state = "snakehead"
+ item_state = "snakehead"
+
+/obj/item/clothing/head/mummy_rags
+ name = "mummy rags"
+ desc = "Ancient rags taken off from some mummy."
+ icon_state = "mummy"
+ item_state = "mummy"
+ item_color = "mummy"
+ flags_inv = HIDEHAIR|HIDEFACE|HIDEEARS
+
+/obj/item/clothing/head/clownpiece
+ name = "Clownpiece's jester hat"
+ desc = "A purple polka-dotted jester's hat with yellow pompons."
+ icon_state = "clownpiece"
+ item_state = "clownpiece"
+
+/obj/item/clothing/head/mitre
+ name = "mitre"
+ desc = "A funny hat worn by extremely boring people."
+ icon_state = "mitre"
+ item_state = "mitre"
+
+/obj/item/clothing/head/tinfoil
+ name = "tinfoil hat"
+ desc = "There's no evidence that the security staff is NOT out to get you."
+ icon_state = "foilhat"
+ item_state = "paper"
+ siemens_coefficient = 2
+
+/obj/item/clothing/head/celtic
+ name = "\improper Celtic crown"
+ desc = "According to legend, Celtic kings would use crowns like this one to shield their subjects from harsh winters back on Earth."
+ icon_state = "celtic_crown"
+ item_state = "celtic_crown"
diff --git a/code/modules/clothing/masks/miscellaneous.dm b/code/modules/clothing/masks/miscellaneous.dm
index 04dfbfe9cd7..46de85d61a0 100644
--- a/code/modules/clothing/masks/miscellaneous.dm
+++ b/code/modules/clothing/masks/miscellaneous.dm
@@ -200,19 +200,4 @@
/obj/item/clothing/mask/bandana/skull
name = "skull bandana"
desc = "A fine black bandana with nanotech lining and a skull emblem."
- icon_state = "bandskull"
-
-/obj/item/clothing/mask/gas/clown_hat/wiz
- name = "purple clown wig and mask"
- desc = "Some pranksters are truly magical."
- icon_state = "wizzclown"
-
-/obj/item/clothing/mask/chapmask
- name = "venetian mask"
- desc = "A plain porcelain mask that covers the entire face. Standard attire for particularly unspeakable religions. The eyes are wide shut."
- icon_state = "chapmask"
-
-/obj/item/clothing/mask/neorussian
- name = "neo-Russian mask"
- desc = "Somehow, it makes you act and look way more polite than usual."
- icon_state = "nr_mask"
+ icon_state = "bandskull"
\ No newline at end of file
diff --git a/code/modules/clothing/masks/vg_masks.dm b/code/modules/clothing/masks/vg_masks.dm
new file mode 100644
index 00000000000..0f4685127d1
--- /dev/null
+++ b/code/modules/clothing/masks/vg_masks.dm
@@ -0,0 +1,14 @@
+/obj/item/clothing/mask/gas/clown_hat/wiz
+ name = "purple clown wig and mask"
+ desc = "Some pranksters are truly magical."
+ icon_state = "wizzclown"
+
+/obj/item/clothing/mask/chapmask
+ name = "venetian mask"
+ desc = "A plain porcelain mask that covers the entire face. Standard attire for particularly unspeakable religions. The eyes are wide shut."
+ icon_state = "chapmask"
+
+/obj/item/clothing/mask/neorussian
+ name = "neo-Russian mask"
+ desc = "Somehow, it makes you act and look way more polite than usual."
+ icon_state = "nr_mask"
diff --git a/code/modules/clothing/shoes/colour.dm b/code/modules/clothing/shoes/colour.dm
index 5f34684c008..b714d8eb11a 100644
--- a/code/modules/clothing/shoes/colour.dm
+++ b/code/modules/clothing/shoes/colour.dm
@@ -111,9 +111,3 @@
user << "You need help taking these off!"
return
..()
-
-/obj/item/clothing/shoes/leather
- name = "leather shoes"
- desc = "A sturdy pair of leather shoes."
- icon_state = "leather"
- item_color = "leather"
diff --git a/code/modules/clothing/shoes/magboots.dm b/code/modules/clothing/shoes/magboots.dm
index be3bbb4a3af..da3df123b29 100644
--- a/code/modules/clothing/shoes/magboots.dm
+++ b/code/modules/clothing/shoes/magboots.dm
@@ -59,18 +59,3 @@
icon_state = "syndiemag0"
magboot_state = "syndiemag"
origin_tech = "magnets=4;syndicate=2"
-
-/obj/item/clothing/shoes/magboots/deathsquad
- desc = "Very expensive and advanced magnetic boots, used only by the elite during extravehicular activity to ensure the user remains safely attached to the vehicle."
- name = "deathsquad magboots"
- icon_state = "DS-magboots0"
- magboot_state = "DS-magboots"
- origin_tech = null
- resistance_flags = INDESTRUCTIBLE | LAVA_PROOF | FIRE_PROOF | ACID_PROOF
-
-/obj/item/clothing/shoes/magboots/atmos
- desc = "Magnetic boots, often used during extravehicular activity to ensure the user remains safely attached to the vehicle. These are painted in the colors of an atmospheric technician."
- name = "atmospherics magboots"
- icon_state = "atmosmagboots0"
- magboot_state = "atmosmagboots"
- resistance_flags = FIRE_PROOF
diff --git a/code/modules/clothing/shoes/miscellaneous.dm b/code/modules/clothing/shoes/miscellaneous.dm
index 4102ac16fe6..693fec80cb3 100644
--- a/code/modules/clothing/shoes/miscellaneous.dm
+++ b/code/modules/clothing/shoes/miscellaneous.dm
@@ -214,97 +214,4 @@
name = "blue performer's boots"
desc = "These boots were made for dancing."
icon_state = "bsing"
- put_on_delay = 50
-
-
-/obj/item/clothing/shoes/simonshoes
- name = "Simon's Shoes"
- desc = "Simon's Shoes."
- icon_state = "simonshoes"
-
-
-
-/obj/item/clothing/shoes/kneesocks
- name = "kneesocks"
- desc = "A pair of girly knee-high socks."
- icon_state = "kneesock"
-
-
-/obj/item/clothing/shoes/jestershoes
- name = "Jester Shoes"
- desc = "As worn by the clowns of old."
- icon_state = "jestershoes"
-
-
-
-/obj/item/clothing/shoes/aviatorboots
- name = "Aviator Boots"
- desc = "Boots suitable for just about any occasion."
- icon_state = "aviator_boots"
-
-
-
-/obj/item/clothing/shoes/libertyshoes
- name = "Liberty Shoes"
- desc = "Freedom isn't free, neither were these shoes."
- icon_state = "libertyshoes"
-
-
-
-/obj/item/clothing/shoes/megaboots
- name = "DRN-001 Boots"
- desc = "Large armored boots, very weak to large spikes."
- icon_state = "megaboots"
-
-
-
-/obj/item/clothing/shoes/protoboots
- name = "Prototype Boots"
- desc = "Functionally identical to the DRN-001 model's boots, but in red."
- icon_state = "protoboots"
-
-
-
-/obj/item/clothing/shoes/megaxboots
- name = "Maverick Hunter boots"
- desc = "Regardless of how much stronger these boots are than the DRN-001 model's, they're still extremely easy to pierce with a large spike."
- icon_state = "megaxboots"
-
-
-
-/obj/item/clothing/shoes/joeboots
- name = "Sniper Boots"
- desc = "Nearly identical to the Prototype's boots, except in black."
- icon_state = "joeboots"
-
-
-
-/obj/item/clothing/shoes/doomguy
- name = "Doomguy's boots"
- desc = ""
- icon_state = "doom"
-
-
-
-/obj/item/clothing/shoes/rottenshoes
- name = "rotten shoes"
- desc = "These shoes seem perfect for sneaking around."
- icon_state = "rottenshoes"
-
-
-
-/obj/item/clothing/shoes/sandal/slippers
- name = "magic slippers"
- icon_state = "slippers"
- desc = "For the wizard that puts comfort first. Who's going to laugh?"
-
-/obj/item/clothing/shoes/slippers_worn
- name = "worn bunny slippers"
- desc = "Fluffy..."
- icon_state = "slippers_worn"
-
-
-/obj/item/clothing/shoes/jackboots/neorussian
- name = "neo-Russian boots"
- desc = "Tovarish, no one will realize you stepped on a pile of shit if your pair already looks like shit."
- icon_state = "nr_boots"
+ put_on_delay = 50
\ No newline at end of file
diff --git a/code/modules/clothing/shoes/vg_shoes.dm b/code/modules/clothing/shoes/vg_shoes.dm
new file mode 100644
index 00000000000..9b1113843b7
--- /dev/null
+++ b/code/modules/clothing/shoes/vg_shoes.dm
@@ -0,0 +1,91 @@
+
+/obj/item/clothing/shoes/leather
+ name = "leather shoes"
+ desc = "A sturdy pair of leather shoes."
+ icon_state = "leather"
+ item_color = "leather"
+
+/obj/item/clothing/shoes/magboots/deathsquad
+ desc = "Very expensive and advanced magnetic boots, used only by the elite during extravehicular activity to ensure the user remains safely attached to the vehicle."
+ name = "deathsquad magboots"
+ icon_state = "DS-magboots0"
+ magboot_state = "DS-magboots"
+ origin_tech = null
+ resistance_flags = INDESTRUCTIBLE | LAVA_PROOF | FIRE_PROOF | ACID_PROOF
+
+/obj/item/clothing/shoes/magboots/atmos
+ desc = "Magnetic boots, often used during extravehicular activity to ensure the user remains safely attached to the vehicle. These are painted in the colors of an atmospheric technician."
+ name = "atmospherics magboots"
+ icon_state = "atmosmagboots0"
+ magboot_state = "atmosmagboots"
+ resistance_flags = FIRE_PROOF
+
+/obj/item/clothing/shoes/simonshoes
+ name = "Simon's Shoes"
+ desc = "Simon's Shoes."
+ icon_state = "simonshoes"
+
+/obj/item/clothing/shoes/kneesocks
+ name = "kneesocks"
+ desc = "A pair of girly knee-high socks."
+ icon_state = "kneesock"
+
+/obj/item/clothing/shoes/jestershoes
+ name = "Jester Shoes"
+ desc = "As worn by the clowns of old."
+ icon_state = "jestershoes"
+
+/obj/item/clothing/shoes/aviatorboots
+ name = "Aviator Boots"
+ desc = "Boots suitable for just about any occasion."
+ icon_state = "aviator_boots"
+
+/obj/item/clothing/shoes/libertyshoes
+ name = "Liberty Shoes"
+ desc = "Freedom isn't free, neither were these shoes."
+ icon_state = "libertyshoes"
+
+/obj/item/clothing/shoes/megaboots
+ name = "DRN-001 Boots"
+ desc = "Large armored boots, very weak to large spikes."
+ icon_state = "megaboots"
+
+/obj/item/clothing/shoes/protoboots
+ name = "Prototype Boots"
+ desc = "Functionally identical to the DRN-001 model's boots, but in red."
+ icon_state = "protoboots"
+
+/obj/item/clothing/shoes/megaxboots
+ name = "Maverick Hunter boots"
+ desc = "Regardless of how much stronger these boots are than the DRN-001 model's, they're still extremely easy to pierce with a large spike."
+ icon_state = "megaxboots"
+
+/obj/item/clothing/shoes/joeboots
+ name = "Sniper Boots"
+ desc = "Nearly identical to the Prototype's boots, except in black."
+ icon_state = "joeboots"
+
+/obj/item/clothing/shoes/doomguy
+ name = "Doomguy's boots"
+ desc = ""
+ icon_state = "doom"
+
+/obj/item/clothing/shoes/rottenshoes
+ name = "rotten shoes"
+ desc = "These shoes seem perfect for sneaking around."
+ icon_state = "rottenshoes"
+
+/obj/item/clothing/shoes/sandal/slippers
+ name = "magic slippers"
+ icon_state = "slippers"
+ desc = "For the wizard that puts comfort first. Who's going to laugh?"
+
+/obj/item/clothing/shoes/slippers_worn
+ name = "worn bunny slippers"
+ desc = "Fluffy..."
+ icon_state = "slippers_worn"
+
+/obj/item/clothing/shoes/jackboots/neorussian
+ name = "neo-Russian boots"
+ desc = "Tovarish, no one will realize you stepped on a pile of shit if your pair already looks like shit."
+ icon_state = "nr_boots"
\ No newline at end of file
diff --git a/code/modules/clothing/spacesuits/flightsuit.dm b/code/modules/clothing/spacesuits/flightsuit.dm
index 05b2091a59d..cd98c350d34 100644
--- a/code/modules/clothing/spacesuits/flightsuit.dm
+++ b/code/modules/clothing/spacesuits/flightsuit.dm
@@ -100,6 +100,7 @@
var/obj/item/weapon/stock_parts/matter_bin/part_bin = null
var/crashing = FALSE //Are we currently getting wrecked?
+ var/atom/movable/dragging_through = FALSE
//Start/Stop processing the item to use momentum and flight mechanics.
@@ -246,6 +247,10 @@
/obj/item/device/flightpack/proc/momentum_drift()
if(!flight)
return FALSE
+ if(wearer.pulling)
+ dragging_through = wearer.pulling
+ else if(dragging_through)
+ dragging_through = null
var/drift_dir_x = 0
var/drift_dir_y = 0
if(momentum_x > 0)
@@ -264,10 +269,14 @@
losecontrol()
momentum_decay()
for(var/i in 1 to momentum_speed)
+ var/turf/oldturf = get_turf(wearer)
if(momentum_speed_x >= i)
step(wearer, drift_dir_x)
if(momentum_speed_y >= i)
step(wearer, drift_dir_y)
+ if(dragging_through && oldturf)
+ dragging_through.forceMove(oldturf)
+ wearer.pulling = dragging_through
sleep(1)
//Make the wearer lose some momentum.
@@ -469,6 +478,7 @@
return FALSE
if(L.buckled)
wearer.visible_message("[wearer] reflexively flies over [L]!")
+ wearer.forceMove(get_turf(L))
crashing = FALSE
return FALSE
suit.user.forceMove(get_turf(unmovablevictim))
@@ -526,9 +536,11 @@
spawn()
door.Open()
wearer.forceMove(get_turf(door))
+ if(dragging_through)
+ dragging_through.forceMove(get_turf(door))
+ wearer.pulling = dragging_through
wearer.visible_message("[wearer] rolls to their sides and slips past [door]!")
-
/obj/item/device/flightpack/proc/crash_grille(obj/structure/grille/target)
target.hitby(wearer)
target.take_damage(60, BRUTE, "melee", 1)
@@ -552,6 +564,9 @@
A.open()
wearer.visible_message("[wearer] rolls sideways and slips past [A]")
wearer.forceMove(get_turf(A))
+ if(dragging_through)
+ dragging_through.forceMove(get_turf(A))
+ wearer.pulling = dragging_through
return pass
diff --git a/code/modules/clothing/spacesuits/hardsuit.dm b/code/modules/clothing/spacesuits/hardsuit.dm
index cdaaa7d1ded..9da92145397 100644
--- a/code/modules/clothing/spacesuits/hardsuit.dm
+++ b/code/modules/clothing/spacesuits/hardsuit.dm
@@ -482,6 +482,7 @@
armor = list(melee = 30, bullet = 15, laser = 30, energy = 10, bomb = 10, bio = 100, rad = 50, fire = 75, acid = 75)
helmettype = /obj/item/clothing/head/helmet/space/hardsuit/security
+ //Head of Security hardsuit
/obj/item/clothing/head/helmet/space/hardsuit/security/hos
name = "head of security's hardsuit helmet"
desc = "a special bulky helmet designed for work in a hazardous, low pressure environment. Has an additional layer of armor."
@@ -496,6 +497,7 @@
desc = "A special bulky suit that protects against hazardous, low pressure environments. Has an additional layer of armor."
armor = list(melee = 45, bullet = 25, laser = 30, energy = 10, bomb = 25, bio = 100, rad = 50, fire = 95, acid = 95)
helmettype = /obj/item/clothing/head/helmet/space/hardsuit/security/hos
+ jetpack = /obj/item/weapon/tank/jetpack/suit
//Captain
/obj/item/clothing/head/helmet/space/hardsuit/captain
@@ -721,109 +723,3 @@
strip_delay = 130
max_heat_protection_temperature = FIRE_IMMUNITY_HELM_MAX_TEMP_PROTECT
actions_types = list()
-
-
-/obj/item/clothing/head/helmet/space/hardsuit/nazi
- name = "nazi hardhelmet"
- desc = "This is the face of das vaterland's top elite. Gas or energy are your only escapes."
- item_state = "hardsuit0-nazi"
- icon_state = "hardsuit0-nazi"
- armor = list(melee = 40, bullet = 30, laser = 30, energy = 15, bomb = 35, bio = 100, rad = 20)
- item_color = "nazi"
-
-/obj/item/clothing/suit/space/hardsuit/nazi
- name = "nazi hardsuit"
- desc = "The attire of a true krieger. All shall fall, and only das vaterland will remain."
- item_state = "hardsuit-nazi"
- icon_state = "hardsuit-nazi"
- slowdown = 1
- armor = list(melee = 40, bullet = 30, laser = 30, energy = 15, bomb = 35, bio = 100, rad = 20)
- allowed = list(/obj/item/weapon/gun,/obj/item/device/flashlight,/obj/item/weapon/tank,/obj/item/weapon/melee/)
- helmettype = /obj/item/clothing/head/helmet/space/hardsuit/nazi
-
-/obj/item/clothing/head/helmet/space/hardsuit/soviet
- name = "soviet hardhelmet"
- desc = "Crafted with the pride of the proletariat. The vengeful gaze of the visor roots out all fascists and capitalists."
- item_state = "hardsuit0-soviet"
- icon_state = "hardsuit0-soviet"
- armor = list(melee = 40, bullet = 30, laser = 30, energy = 15, bomb = 35, bio = 100, rad = 20)
- item_color = "soviet"
-
-/obj/item/clothing/suit/space/hardsuit/soviet
- name = "soviet hardsuit"
- desc = "Crafted with the pride of the proletariat. The last thing the enemy sees is the bottom of this armor's boot."
- item_state = "hardsuit-soviet"
- icon_state = "hardsuit-soviet"
- slowdown = 1
- armor = list(melee = 40, bullet = 30, laser = 30, energy = 15, bomb = 35, bio = 100, rad = 20)
- allowed = list(/obj/item/weapon/gun,/obj/item/device/flashlight,/obj/item/weapon/tank,/obj/item/weapon/melee/)
- helmettype = /obj/item/clothing/head/helmet/space/hardsuit/soviet
-
-/obj/item/clothing/head/helmet/space/hardsuit/knight
- name = "Space-Knight helm"
- desc = "A well polished helmet belonging to a Space-Knight. Favored by space-jousters for its ability to stay on tight after being launched from a mass driver."
- icon_state = "hardsuit0-knight"
- item_state = "hardsuit0-knight"
- armor = list(melee = 60, bullet = 40, laser = 40,energy = 30, bomb = 50, bio = 100, rad = 60)
- max_heat_protection_temperature = FIRE_IMMUNITY_HELM_MAX_TEMP_PROTECT
- item_color="knight"
-
-/obj/item/clothing/suit/space/hardsuit/knight
- name = "Space-Knight armour"
- desc = "A well polished set of armour belonging to a Space-Knight. Maidens Rescued in Space: 100, Maidens who have slept with me in Space: 0."
- icon_state = "hardsuit-knight"
- item_state = "hardsuit-knight"
- slowdown = 1
- allowed = list(/obj/item/weapon/gun,/obj/item/weapon/melee/baton,/obj/item/weapon/tank,/obj/item/weapon/shield/energy,/obj/item/weapon/claymore)
- armor = list(melee = 60, bullet = 40, laser = 40,energy = 30, bomb = 50, bio = 100, rad = 60)
- max_heat_protection_temperature = FIRE_IMMUNITY_SUIT_MAX_TEMP_PROTECT
- siemens_coefficient = 0.5
- helmettype = /obj/item/clothing/head/helmet/space/hardsuit/knight
-
-/obj/item/clothing/head/helmet/space/hardsuit/knight/black
- name = "Black Knight's helm"
- desc = "An ominous black helmet with a gold trim. The small viewports create an intimidating look, while also making it nearly impossible to see anything."
- icon_state = "hardsuit0-blackknight"
- item_state = "hardsuit0-blackknight"
- armor = list(melee = 70, bullet = 65, laser = 50,energy = 25, bomb = 60, bio = 100, rad = 60)
- item_color="blackknight"
-
-/obj/item/clothing/suit/space/hardsuit/knight/black
- name = "Black Knight's armour"
- desc = "An ominous black suit of armour with a gold trim. Surprisingly good at preventing accidental loss of limbs."
- icon_state = "hardsuit-blackknight"
- item_state = "hardsuit-blackknight"
- armor = list(melee = 70, bullet = 65, laser = 50,energy = 25, bomb = 60, bio = 100, rad = 60)
- helmettype = /obj/item/clothing/head/helmet/space/hardsuit/knight/black
-
-/obj/item/clothing/head/helmet/space/hardsuit/knight/solaire
- name = "Solar helm"
- desc = "A simple helmet. 'Made in Astora' is inscribed on the back."
- icon_state = "hardsuit0-solaire"
- item_state = "hardsuit0-solaire"
- armor = list(melee = 60, bullet = 65, laser = 90,energy = 30, bomb = 60, bio = 100, rad = 100)
- item_color="solaire"
-
-/obj/item/clothing/suit/space/hardsuit/knight/solaire
- name = "Solar armour"
- desc = "A solar powered hardsuit with a fancy insignia on the chest. Perfect for stargazers and adventurers alike."
- icon_state = "hardsuit-solaire"
- item_state = "hardsuit-solaire"
- armor = list(melee = 60, bullet = 65, laser = 90,energy = 30, bomb = 60, bio = 100, rad = 100)
- helmettype = /obj/item/clothing/head/helmet/space/hardsuit/knight/solaire
-
-/obj/item/clothing/head/helmet/space/hardsuit/t51b
- name = "T-51b Power Armor"
- desc = "Relic of a bygone era, the T-51b is powered by a TX-28 MicroFusion Pack, which holds enough fuel to power its internal hydraulics for a century!"
- icon_state = "hardsuit0-t51b"
- item_state = "hardsuit0-t51b"
- armor = list(melee = 35, bullet = 35, laser = 40, energy = 40, bomb = 80, bio = 100, rad = 100)
- item_color="t51b"
-
-/obj/item/clothing/suit/space/hardsuit/t51b
- name = "T-51b Power Armor"
- desc = "Relic of a bygone era, the T-51b is powered by a TX-28 MicroFusion Pack, which holds enough fuel to power its internal hydraulics for a century!"
- icon_state = "hardsuit-t51b"
- item_state = "hardsuit-t51b"
- armor = list(melee = 35, bullet = 35, laser = 40, energy = 40, bomb = 80, bio = 100, rad = 100)
- helmettype = /obj/item/clothing/head/helmet/space/hardsuit/t51b
diff --git a/code/modules/clothing/spacesuits/miscellaneous.dm b/code/modules/clothing/spacesuits/miscellaneous.dm
index b8e075150cd..870cbecfc19 100644
--- a/code/modules/clothing/spacesuits/miscellaneous.dm
+++ b/code/modules/clothing/spacesuits/miscellaneous.dm
@@ -308,21 +308,3 @@ Contains:
desc = "Peering into the eyes of the helmet is enough to seal damnation."
icon_state = "hardsuit0-beserker"
item_state = "hardsuit0-beserker"
-
-/obj/item/clothing/head/helmet/space/bomberman
- name = "Bomberman head"
- desc = "Terrorism has never looked so adorable."
- icon_state = "bomberman"
- item_state = "bomberman"
- armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 100, bio = 0, rad = 0)
- siemens_coefficient = 0
-
-obj/item/clothing/suit/space/bomberman
- name = "Bomberman's suit"
- desc = "Doesn't actually make you immune to bombs!"
- icon_state = "bomberman"
- item_state = "bomberman"
- slowdown = 0
- armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 100, bio = 0, rad = 0)
- siemens_coefficient = 0
- max_heat_protection_temperature = FIRE_IMMUNITY_SUIT_MAX_TEMP_PROTECT
diff --git a/code/modules/clothing/spacesuits/vg_spess.dm b/code/modules/clothing/spacesuits/vg_spess.dm
new file mode 100644
index 00000000000..f675dde9fe7
--- /dev/null
+++ b/code/modules/clothing/spacesuits/vg_spess.dm
@@ -0,0 +1,125 @@
+
+ //VG Ports
+/obj/item/clothing/head/helmet/space/hardsuit/nazi
+ name = "nazi hardhelmet"
+ desc = "This is the face of das vaterland's top elite. Gas or energy are your only escapes."
+ item_state = "hardsuit0-nazi"
+ icon_state = "hardsuit0-nazi"
+ armor = list(melee = 40, bullet = 30, laser = 30, energy = 15, bomb = 35, bio = 100, rad = 20)
+ item_color = "nazi"
+
+/obj/item/clothing/suit/space/hardsuit/nazi
+ name = "nazi hardsuit"
+ desc = "The attire of a true krieger. All shall fall, and only das vaterland will remain."
+ item_state = "hardsuit-nazi"
+ icon_state = "hardsuit-nazi"
+ slowdown = 1
+ armor = list(melee = 40, bullet = 30, laser = 30, energy = 15, bomb = 35, bio = 100, rad = 20)
+ allowed = list(/obj/item/weapon/gun,/obj/item/device/flashlight,/obj/item/weapon/tank,/obj/item/weapon/melee/)
+ helmettype = /obj/item/clothing/head/helmet/space/hardsuit/nazi
+
+/obj/item/clothing/head/helmet/space/hardsuit/soviet
+ name = "soviet hardhelmet"
+ desc = "Crafted with the pride of the proletariat. The vengeful gaze of the visor roots out all fascists and capitalists."
+ item_state = "hardsuit0-soviet"
+ icon_state = "hardsuit0-soviet"
+ armor = list(melee = 40, bullet = 30, laser = 30, energy = 15, bomb = 35, bio = 100, rad = 20)
+ item_color = "soviet"
+
+/obj/item/clothing/suit/space/hardsuit/soviet
+ name = "soviet hardsuit"
+ desc = "Crafted with the pride of the proletariat. The last thing the enemy sees is the bottom of this armor's boot."
+ item_state = "hardsuit-soviet"
+ icon_state = "hardsuit-soviet"
+ slowdown = 1
+ armor = list(melee = 40, bullet = 30, laser = 30, energy = 15, bomb = 35, bio = 100, rad = 20)
+ allowed = list(/obj/item/weapon/gun,/obj/item/device/flashlight,/obj/item/weapon/tank,/obj/item/weapon/melee/)
+ helmettype = /obj/item/clothing/head/helmet/space/hardsuit/soviet
+
+/obj/item/clothing/head/helmet/space/hardsuit/knight
+ name = "Space-Knight helm"
+ desc = "A well polished helmet belonging to a Space-Knight. Favored by space-jousters for its ability to stay on tight after being launched from a mass driver."
+ icon_state = "hardsuit0-knight"
+ item_state = "hardsuit0-knight"
+ armor = list(melee = 60, bullet = 40, laser = 40,energy = 30, bomb = 50, bio = 100, rad = 60)
+ max_heat_protection_temperature = FIRE_IMMUNITY_HELM_MAX_TEMP_PROTECT
+ item_color="knight"
+
+/obj/item/clothing/suit/space/hardsuit/knight
+ name = "Space-Knight armour"
+ desc = "A well polished set of armour belonging to a Space-Knight. Maidens Rescued in Space: 100, Maidens who have slept with me in Space: 0."
+ icon_state = "hardsuit-knight"
+ item_state = "hardsuit-knight"
+ slowdown = 1
+ allowed = list(/obj/item/weapon/gun,/obj/item/weapon/melee/baton,/obj/item/weapon/tank,/obj/item/weapon/shield/energy,/obj/item/weapon/claymore)
+ armor = list(melee = 60, bullet = 40, laser = 40,energy = 30, bomb = 50, bio = 100, rad = 60)
+ max_heat_protection_temperature = FIRE_IMMUNITY_SUIT_MAX_TEMP_PROTECT
+ siemens_coefficient = 0.5
+ helmettype = /obj/item/clothing/head/helmet/space/hardsuit/knight
+
+/obj/item/clothing/head/helmet/space/hardsuit/knight/black
+ name = "Black Knight's helm"
+ desc = "An ominous black helmet with a gold trim. The small viewports create an intimidating look, while also making it nearly impossible to see anything."
+ icon_state = "hardsuit0-blackknight"
+ item_state = "hardsuit0-blackknight"
+ armor = list(melee = 70, bullet = 65, laser = 50,energy = 25, bomb = 60, bio = 100, rad = 60)
+ item_color="blackknight"
+
+/obj/item/clothing/suit/space/hardsuit/knight/black
+ name = "Black Knight's armour"
+ desc = "An ominous black suit of armour with a gold trim. Surprisingly good at preventing accidental loss of limbs."
+ icon_state = "hardsuit-blackknight"
+ item_state = "hardsuit-blackknight"
+ armor = list(melee = 70, bullet = 65, laser = 50,energy = 25, bomb = 60, bio = 100, rad = 60)
+ helmettype = /obj/item/clothing/head/helmet/space/hardsuit/knight/black
+
+/obj/item/clothing/head/helmet/space/hardsuit/knight/solaire
+ name = "Solar helm"
+ desc = "A simple helmet. 'Made in Astora' is inscribed on the back."
+ icon_state = "hardsuit0-solaire"
+ item_state = "hardsuit0-solaire"
+ armor = list(melee = 60, bullet = 65, laser = 90,energy = 30, bomb = 60, bio = 100, rad = 100)
+ item_color="solaire"
+
+/obj/item/clothing/suit/space/hardsuit/knight/solaire
+ name = "Solar armour"
+ desc = "A solar powered hardsuit with a fancy insignia on the chest. Perfect for stargazers and adventurers alike."
+ icon_state = "hardsuit-solaire"
+ item_state = "hardsuit-solaire"
+ armor = list(melee = 60, bullet = 65, laser = 90,energy = 30, bomb = 60, bio = 100, rad = 100)
+ helmettype = /obj/item/clothing/head/helmet/space/hardsuit/knight/solaire
+
+/obj/item/clothing/head/helmet/space/hardsuit/t51b
+ name = "T-51b Power Armor"
+ desc = "Relic of a bygone era, the T-51b is powered by a TX-28 MicroFusion Pack, which holds enough fuel to power its internal hydraulics for a century!"
+ icon_state = "hardsuit0-t51b"
+ item_state = "hardsuit0-t51b"
+ armor = list(melee = 35, bullet = 35, laser = 40, energy = 40, bomb = 80, bio = 100, rad = 100)
+ item_color="t51b"
+
+/obj/item/clothing/suit/space/hardsuit/t51b
+ name = "T-51b Power Armor"
+ desc = "Relic of a bygone era, the T-51b is powered by a TX-28 MicroFusion Pack, which holds enough fuel to power its internal hydraulics for a century!"
+ icon_state = "hardsuit-t51b"
+ item_state = "hardsuit-t51b"
+ armor = list(melee = 35, bullet = 35, laser = 40, energy = 40, bomb = 80, bio = 100, rad = 100)
+ helmettype = /obj/item/clothing/head/helmet/space/hardsuit/t51b
+
+
+/obj/item/clothing/head/helmet/space/bomberman
+ name = "Bomberman head"
+ desc = "Terrorism has never looked so adorable."
+ icon_state = "bomberman"
+ item_state = "bomberman"
+ armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 100, bio = 0, rad = 0)
+ siemens_coefficient = 0
+
+obj/item/clothing/suit/space/bomberman
+ name = "Bomberman's suit"
+ desc = "Doesn't actually make you immune to bombs!"
+ icon_state = "bomberman"
+ item_state = "bomberman"
+ slowdown = 0
+ armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 100, bio = 0, rad = 0)
+ siemens_coefficient = 0
+ max_heat_protection_temperature = FIRE_IMMUNITY_SUIT_MAX_TEMP_PROTECT
\ No newline at end of file
diff --git a/code/modules/clothing/suits/armor.dm b/code/modules/clothing/suits/armor.dm
index 8e44d2df018..ff0486de57c 100644
--- a/code/modules/clothing/suits/armor.dm
+++ b/code/modules/clothing/suits/armor.dm
@@ -403,44 +403,3 @@
desc = "God wills it!"
icon_state = "knight_templar"
item_state = "knight_templar"
-
-/obj/item/clothing/suit/armor/xcomsquaddie
- name = "Squaddie Armor"
- desc = "A suit of armor with heavy padding to protect against projectile and laser attacks. Distributed to shadow organization squaddies."
- icon_state = "xcomarmor2"
- item_state = "xcomarmor2"
- body_parts_covered = CHEST|GROIN|LEGS|FEET|ARMS|HANDS
- armor = list(melee = 10, bullet = 50, laser = 10, energy = 10, bomb = 0, bio = 0, rad = 0)
- siemens_coefficient = 0.5
-
-/obj/item/clothing/suit/armor/xcomsquaddie/dredd
- name = "Judge Armor"
- desc = "A large suit of heavy armor, fit for a Judge."
- icon_state = "dredd-suit"
- item_state = "dredd-suit"
-
-
-/obj/item/clothing/suit/armor/xcomarmor
- name = "Mysterious Armor"
- desc = "A suit of armor with heavy plating to protect against melee attacks. Distributed to shadow organization squaddies."
- icon_state = "xcomarmor1"
- item_state = "xcomarmor1"
- body_parts_covered = CHEST|GROIN|LEGS|FEET|ARMS|HANDS
- armor = list(melee = 50, bullet = 10, laser = 10, energy = 0, bomb = 0, bio = 0, rad = 0)
- slowdown = 1
- siemens_coefficient = 0.5
-
-/obj/item/clothing/suit/armor/vest/neorussian
- name = "neo-Russian vest"
- desc = "The narkotiki camo pattern will come useful for botany raids."
- icon_state = "nr_vest"
- item_state = "nr_vest"
-
-/obj/item/clothing/suit/armor/doomguy
- name = "Doomguy's armor"
- desc = ""
- icon_state = "doom"
- item_state = "doom"
- body_parts_covered = CHEST|GROIN
- slowdown = 0
- armor = list(melee = 50, bullet = 30, laser = 20, energy = 20, bomb = 30, bio = 0, rad = 0)
diff --git a/code/modules/clothing/suits/miscellaneous.dm b/code/modules/clothing/suits/miscellaneous.dm
index ef1f23e1a11..a361bb11cfc 100644
--- a/code/modules/clothing/suits/miscellaneous.dm
+++ b/code/modules/clothing/suits/miscellaneous.dm
@@ -178,7 +178,7 @@
if(istype(borghead, /obj/item/clothing/head/cardborg)) //why is this done this way? because equipped() is called BEFORE THE ITEM IS IN THE SLOT WHYYYY
var/image/I = image(icon = 'icons/mob/robots.dmi' , icon_state = "robot", loc = H)
I.override = 1
- I.overlays += image(icon = 'icons/mob/robots.dmi' , icon_state = "robot_e") //gotta look realistic
+ I.add_overlay(image(icon = 'icons/mob/robots.dmi' , icon_state = "robot_e")) //gotta look realistic
H.add_alt_appearance("standard_borg_disguise", I, silicon_mobs+H) //you look like a robot to robots! (including yourself because you're totally a robot)
@@ -535,57 +535,3 @@
icon_state = "bedsheet"
user_vars_to_edit = list("name" = "Spooky Ghost", "real_name" = "Spooky Ghost" , "incorporeal_move" = 1, "appearance_flags" = KEEP_TOGETHER|TILE_BOUND, "alpha" = 150)
alternate_worn_layer = ABOVE_BODY_FRONT_LAYER //so the bedsheet goes over everything but fire
-
-/obj/item/clothing/suit/kaminacape
- name = "Kamina's Cape"
- desc = "Don't believe in yourself, dumbass. Believe in me. Believe in the Kamina who believes in you."
- icon_state = "kaminacape"
- body_parts_covered = 0
-
-/obj/item/clothing/suit/officercoat
- name = "Officer's Coat"
- desc = "Ein Mantel gemacht, um die Juden zu bestrafen."
- icon_state = "officersuit"
- body_parts_covered = CHEST|GROIN|LEGS|ARMS|HANDS
-
-/obj/item/clothing/suit/soldiercoat
- name = "Soldier's Coat"
- desc = "Und das heißt: Erika."
- icon_state = "soldiersuit"
- body_parts_covered = CHEST|GROIN|LEGS|ARMS|HANDS
-
-/obj/item/clothing/suit/russofurcoat
- name = "russian fur coat"
- desc = "Let the land do the fighting for you."
- icon_state = "russofurcoat"
- allowed = list(/obj/item/weapon/gun)
- body_parts_covered = CHEST|GROIN|LEGS|ARMS|HANDS
-
-/obj/item/clothing/suit/doshjacket
- name = "Plasterer's Jacket"
- desc = "Perfect for doing up the house."
- icon_state = "doshjacket"
- body_parts_covered = CHEST|GROIN|ARMS
-
-/obj/item/clothing/suit/maidapron
- name = "Apron"
- desc = "Simple white apron."
- icon_state = "maidapron"
- body_parts_covered = CHEST|GROIN
-
-/obj/item/clothing/suit/clownpiece
- name = "small fairy wings"
- desc = "Some small and translucid insect-like wings."
- icon_state = "clownpiece"
- body_parts_covered = 0
-
-/obj/item/clothing/suit/clownpiece/flying
- name = "small fairy wings"
- desc = "Some small and translucid insect-like wings. Looks like these are the real deal!"
- icon_state = "clownpiece-fly"
-
-/obj/item/clothing/suit/raincoat
- name = "Raincoat"
- desc = "Do you like Huey Lewis and the News?"
- icon_state = "raincoat"
- body_parts_covered =CHEST|GROIN|LEGS|ARMS|HANDS
diff --git a/code/modules/clothing/suits/vg_suits.dm b/code/modules/clothing/suits/vg_suits.dm
new file mode 100644
index 00000000000..a9c2f441d3f
--- /dev/null
+++ b/code/modules/clothing/suits/vg_suits.dm
@@ -0,0 +1,415 @@
+
+/obj/item/clothing/suit/armor/xcomsquaddie
+ name = "Squaddie Armor"
+ desc = "A suit of armor with heavy padding to protect against projectile and laser attacks. Distributed to shadow organization squaddies."
+ icon_state = "xcomarmor2"
+ item_state = "xcomarmor2"
+ body_parts_covered = CHEST|GROIN|LEGS|FEET|ARMS|HANDS
+ armor = list(melee = 10, bullet = 50, laser = 10, energy = 10, bomb = 0, bio = 0, rad = 0)
+ siemens_coefficient = 0.5
+
+/obj/item/clothing/suit/armor/xcomsquaddie/dredd
+ name = "Judge Armor"
+ desc = "A large suit of heavy armor, fit for a Judge."
+ icon_state = "dredd-suit"
+ item_state = "dredd-suit"
+
+
+/obj/item/clothing/suit/armor/xcomarmor
+ name = "Mysterious Armor"
+ desc = "A suit of armor with heavy plating to protect against melee attacks. Distributed to shadow organization squaddies."
+ icon_state = "xcomarmor1"
+ item_state = "xcomarmor1"
+ body_parts_covered = CHEST|GROIN|LEGS|FEET|ARMS|HANDS
+ armor = list(melee = 50, bullet = 10, laser = 10, energy = 0, bomb = 0, bio = 0, rad = 0)
+ slowdown = 1
+ siemens_coefficient = 0.5
+
+/obj/item/clothing/suit/armor/vest/neorussian
+ name = "neo-Russian vest"
+ desc = "The narkotiki camo pattern will come useful for botany raids."
+ icon_state = "nr_vest"
+ item_state = "nr_vest"
+
+/obj/item/clothing/suit/armor/doomguy
+ name = "Doomguy's armor"
+ desc = ""
+ icon_state = "doom"
+ item_state = "doom"
+ body_parts_covered = CHEST|GROIN
+ slowdown = 0
+ armor = list(melee = 50, bullet = 30, laser = 20, energy = 20, bomb = 30, bio = 0, rad = 0)
+
+
+/obj/item/clothing/suit/kaminacape
+ name = "Kamina's Cape"
+ desc = "Don't believe in yourself, dumbass. Believe in me. Believe in the Kamina who believes in you."
+ icon_state = "kaminacape"
+ body_parts_covered = 0
+
+/obj/item/clothing/suit/officercoat
+ name = "Officer's Coat"
+ desc = "Ein Mantel gemacht, um die Juden zu bestrafen."
+ icon_state = "officersuit"
+ body_parts_covered = CHEST|GROIN|LEGS|ARMS|HANDS
+
+/obj/item/clothing/suit/soldiercoat
+ name = "Soldier's Coat"
+ desc = "Und das heit: Erika."
+ icon_state = "soldiersuit"
+ body_parts_covered = CHEST|GROIN|LEGS|ARMS|HANDS
+
+/obj/item/clothing/suit/russofurcoat
+ name = "russian fur coat"
+ desc = "Let the land do the fighting for you."
+ icon_state = "russofurcoat"
+ allowed = list(/obj/item/weapon/gun)
+ body_parts_covered = CHEST|GROIN|LEGS|ARMS|HANDS
+
+/obj/item/clothing/suit/doshjacket
+ name = "Plasterer's Jacket"
+ desc = "Perfect for doing up the house."
+ icon_state = "doshjacket"
+ body_parts_covered = CHEST|GROIN|ARMS
+
+/obj/item/clothing/suit/maidapron
+ name = "Apron"
+ desc = "Simple white apron."
+ icon_state = "maidapron"
+ body_parts_covered = CHEST|GROIN
+
+/obj/item/clothing/suit/clownpiece
+ name = "small fairy wings"
+ desc = "Some small and translucid insect-like wings."
+ icon_state = "clownpiece"
+ body_parts_covered = 0
+
+/obj/item/clothing/suit/clownpiece/flying
+ name = "small fairy wings"
+ desc = "Some small and translucid insect-like wings. Looks like these are the real deal!"
+ icon_state = "clownpiece-fly"
+
+/obj/item/clothing/suit/raincoat
+ name = "Raincoat"
+ desc = "Do you like Huey Lewis and the News?"
+ icon_state = "raincoat"
+ body_parts_covered =CHEST|GROIN|LEGS|ARMS|HANDS
+
+
+/obj/item/clothing/under/stripper_pink
+ name = "pink stripper outfit"
+ icon_state = "stripper_p"
+ item_state = "stripper_p"
+ item_color = "stripper_p"
+ can_adjust = 0
+
+/obj/item/clothing/under/stripper_green
+ name = "green stripper outfit"
+ icon_state = "stripper_g"
+ item_state = "stripper_g"
+ item_color = "stripper_g"
+ can_adjust = 0
+
+
+/obj/item/clothing/under/wedding/bride_orange
+ name = "orange wedding dress"
+ desc = "A big and puffy orange dress."
+ icon_state = "bride_orange"
+ item_state = "bride_orange"
+ item_color = "bride_orange"
+ can_adjust = 0
+
+/obj/item/clothing/under/wedding/bride_purple
+ name = "purple wedding dress"
+ desc = "A big and puffy purple dress."
+ icon_state = "bride_purple"
+ item_state = "bride_purple"
+ item_color = "bride_purple"
+ can_adjust = 0
+
+/obj/item/clothing/under/wedding/bride_blue
+ name = "blue wedding dress"
+ desc = "A big and puffy blue dress."
+ icon_state = "bride_blue"
+ item_state = "bride_blue"
+ item_color = "bride_blue"
+ can_adjust = 0
+
+/obj/item/clothing/under/wedding/bride_red
+ name = "red wedding dress"
+ desc = "A big and puffy red dress."
+ icon_state = "bride_red"
+ item_state = "bride_red"
+ item_color = "bride_red"
+ can_adjust = 0
+
+/obj/item/clothing/under/wedding/bride_white
+ name = "white wedding dress"
+ desc = "A white wedding gown made from the finest silk."
+ icon_state = "bride_white"
+ item_state = "bride_white"
+ item_color = "bride_white"
+ can_adjust = 0
+
+/obj/item/clothing/under/mankini
+ name = "pink mankini"
+ icon_state = "mankini"
+ item_state = "mankini"
+ item_color = "mankini"
+ can_adjust = 0
+
+/obj/item/clothing/under/psysuit
+ name = "dark undersuit"
+ desc = "A thick, layered grey undersuit lined with power cables. Feels a little like wearing an electrical storm."
+ icon_state = "psysuit"
+ item_state = "psysuit"
+ item_color = "psysuit"
+ can_adjust = 0
+
+/obj/item/clothing/under/officeruniform
+ name = "officer's uniform"
+ desc = "Bestraft die Juden fur ihre Verbrechen."
+ icon_state = "officeruniform"
+ item_state = "officeruniform"
+ item_color = "officeruniform"
+ can_adjust = 0
+
+/obj/item/clothing/under/soldieruniform
+ name = "soldier's uniform"
+ desc = "Bestraft die Verbundeten fur ihren Widerstand."
+ icon_state = "soldieruniform"
+ item_state = "soldieruniform"
+ item_color = "soldieruniform"
+ can_adjust = 0
+
+/obj/item/clothing/under/squatter_outfit
+ name = "slav squatter tracksuit"
+ desc = "Cyka blyat."
+ icon_state = "squatteroutfit"
+ item_state = "squatteroutfit"
+ item_color = "squatteroutfit"
+ can_adjust = 0
+
+/obj/item/clothing/under/russobluecamooutfit
+ name = "russian blue camo"
+ desc = "Drop and give me dvadtsat!"
+ icon_state = "russobluecamo"
+ item_state = "russobluecamo"
+ item_color = "russobluecamo"
+ can_adjust = 0
+
+/obj/item/clothing/under/stilsuit
+ name = "stillsuit"
+ desc = "Designed to preserve bodymoisture."
+ icon_state = "stilsuit"
+ item_state = "stilsuit"
+ item_color = "stilsuit"
+ can_adjust = 0
+
+/obj/item/clothing/under/aviatoruniform
+ name = "aviator uniform"
+ desc = "Now you can look absolutely dashing!"
+ icon_state = "aviator_uniform"
+ item_state = "aviator_uniform"
+ item_color = "aviator_uniform"
+ can_adjust = 0
+
+/obj/item/clothing/under/bikersuit
+ name = "biker's outfit"
+ icon_state = "biker"
+ item_state = "biker"
+ item_color = "biker"
+ can_adjust = 0
+
+/obj/item/clothing/under/jacketsuit
+ name = "richard's outfit"
+ desc = "Do you know what time it is?"
+ icon_state = "jacket"
+ item_state = "jacket"
+ item_color = "jacket"
+ can_adjust = 0
+
+obj/item/clothing/under/mega
+ name = "\improper DRN-001 suit"
+ desc = "The original. Simple, yet very adaptable."
+ icon_state = "mega"
+ item_state = "mega"
+ item_color = "mega"
+ can_adjust = 0
+
+/obj/item/clothing/under/proto
+ name = "The Prototype Suit"
+ desc = "Even robots know scarves are the perfect accessory for a brooding rival."
+ icon_state = "proto"
+ item_state = "proto"
+ item_color = "proto"
+ can_adjust = 0
+
+/obj/item/clothing/under/megax
+ name = "\improper Maverick Hunter regalia"
+ desc = "The best outfit for taking out rogue borgs."
+ icon_state = "megax"
+ item_state = "megax"
+ item_color = "megax"
+ can_adjust = 0
+
+/obj/item/clothing/under/joe
+ name = "The Sniper Suit"
+ desc = "Mass produced combat robots with a rather unfitting name."
+ icon_state = "joe"
+ item_state = "joe"
+ item_color = "joe"
+ can_adjust = 0
+
+/obj/item/clothing/under/roll
+ name = "\improper DRN-002 Dress"
+ desc = "A simple red dress, the good doctor's second robot wasn't quite as exciting as the first."
+ icon_state = "roll"
+ item_state = "roll"
+ item_color = "roll"
+ can_adjust = 0
+
+/obj/item/clothing/under/gokugidown
+ name = "turtle hermit undershirt"
+ desc = "Something seems oddly familiar about this outfit..."
+ icon_state = "gokugidown"
+ item_state = "gokugidown"
+ item_color = "gokugidown"
+ can_adjust = 0
+
+/obj/item/clothing/under/gokugi
+ name = "turtle hermit outfit"
+ desc = "An outfit from one trained by the great Turtle Hermit."
+ icon_state = "gokugi"
+ item_state = "gokugi"
+ item_color = "gokugi"
+ can_adjust = 0
+
+/obj/item/clothing/under/doomguy
+ name = "\improper Doomguy's pants"
+ desc = ""
+ icon_state = "doom"
+ item_state = "doom"
+ item_color = "doom"
+ can_adjust = 0
+
+/obj/item/clothing/under/vault13
+ name = "vault 13 Jumpsuit"
+ desc = "Oddly similar to the station's usual jumpsuits, but with a rustic charm to it. Has a large thirteen emblazened on the back."
+ icon_state = "v13-jumpsuit"
+ item_state = "v13-jumpsuit"
+ item_color = "v13-jumpsuit"
+ can_adjust = 0
+
+/obj/item/clothing/under/vault
+ name = "vault jumpsuit"
+ desc = "Oddly similar to the station's usual jumpsuits, but with a rustic charm to it."
+ icon_state = "v-jumpsuit"
+ item_state = "v-jumpsuit"
+ item_color = "v-jumpsuit"
+ can_adjust = 0
+
+/obj/item/clothing/under/clownpiece
+ name = "Clownpiece's Pierrot suit"
+ desc = "A female-sized set of leggings and shirt with a pattern similar to the American flag, featuring a frilled collar."
+ icon_state = "clownpiece"
+ item_state = "clownpiece"
+ item_color = "clownpiece"
+ can_adjust = 0
+
+/obj/item/clothing/under/cia
+ name = "casual IAA outfit"
+ desc = "Just looking at this makes you feel in charge."
+ icon_state = "cia"
+ item_state = "cia"
+ item_color = "cia"
+ can_adjust = 0
+
+/obj/item/clothing/under/greaser
+ name = "greaser outfit"
+ desc = "The one that you want!"
+ icon_state = "greaser_default"
+ item_state = "greaser_default"
+ can_adjust = 0
+
+/obj/item/clothing/under/greaser/New()
+ var/greaser_colour = "default"
+ switch(rand(1,4))
+ if(1)
+ greaser_colour = "default"
+ if(2)
+ greaser_colour = "cult"
+ if(3)
+ greaser_colour = "spider"
+ if(4)
+ greaser_colour = "snakes"
+ desc = "Tunnel Snakes Rule!"
+ icon_state = "greaser_[greaser_colour]"
+ item_state = "greaser_[greaser_colour]"
+ item_color = "greaser_[greaser_colour]"
+ can_adjust = 0
+
+/obj/item/clothing/under/wintercasualwear
+ name = "winter casualwear"
+ desc = "Perfect for winter!"
+ icon_state = "shizunewinter"
+ item_state = "shizunewinter"
+ item_color = "shizunewinter"
+ can_adjust = 0
+
+
+/obj/item/clothing/under/casualwear
+ name = "spring casualwear"
+ desc = "Perfect for spring!"
+ icon_state = "shizunenormal"
+ item_state = "shizunenormal"
+ item_color = "shizunenormal"
+ can_adjust = 0
+
+/obj/item/clothing/under/keyholesweater
+ name = "keyhole sweater"
+ desc = "What is the point of this, anyway?"
+ icon_state = "keyholesweater"
+ item_state = "keyholesweater"
+ item_color = "keyholesweater"
+ can_adjust = 0
+
+/obj/item/clothing/under/casualhoodie
+ name = "casual hoodie"
+ desc = "Pefect for lounging about in."
+ icon_state = "hoodiejeans"
+ item_state = "hoodiejeans"
+ item_color = "hoodiejeans"
+ can_adjust = 0
+
+
+/obj/item/clothing/under/casualhoodie/skirt
+ icon_state = "hoodieskirt"
+ item_state = "hoodieskirt"
+ item_color = "hoodieskirt"
+ can_adjust = 0
+
+/obj/item/clothing/under/mummy_rags
+ name = "mummy rags"
+ desc = "Ancient rags taken off from some mummy."
+ icon_state = "mummy"
+ item_state = "mummy"
+ item_color = "mummy"
+ can_adjust = 0
+ has_sensor = 0
+
+/obj/item/clothing/under/neorussian
+ name = "neo-Russian uniform"
+ desc = "Employs a special toshnit pattern, will render you invisible when you eat a potato on an empty stomach."
+ icon_state = "nr_uniform"
+ item_state = "nr_uniform"
+ item_color = "nr_uniform"
+ can_adjust = 0
+
+/obj/item/clothing/under/rottensuit
+ name = "rotten suit"
+ desc = "This suit seems perfect for wearing underneath a disguise."
+ icon_state = "rottensuit"
+ item_state = "rottensuit"
+ item_color = "rottensuit"
+ can_adjust = 0
\ No newline at end of file
diff --git a/code/modules/clothing/under/jobs/security.dm b/code/modules/clothing/under/jobs/security.dm
index 142d58bb23b..71637191006 100644
--- a/code/modules/clothing/under/jobs/security.dm
+++ b/code/modules/clothing/under/jobs/security.dm
@@ -25,7 +25,7 @@
icon_state = "security"
item_state = "gy_suit"
item_color = "security"
-
+
/obj/item/clothing/under/rank/warden
name = "security suit"
@@ -133,10 +133,11 @@
item_color = "blueshift"
can_adjust = 0
+
/obj/item/clothing/under/rank/security/sneaksuit
name = "sneaking suit"
desc = "It's made of a strong material developed by the Soviet Union centuries ago which provides robust protection."
icon_state = "sneakingsuit"
item_state = "sneakingsuit"
item_color = "sneakingsuit"
- can_adjust = 0
+ can_adjust = 0
\ No newline at end of file
diff --git a/code/modules/clothing/under/miscellaneous.dm b/code/modules/clothing/under/miscellaneous.dm
index bdb28854d10..e57989c871e 100644
--- a/code/modules/clothing/under/miscellaneous.dm
+++ b/code/modules/clothing/under/miscellaneous.dm
@@ -654,321 +654,3 @@
icon_state = "hostanclothes"
item_state = "hostanclothes"
item_color = "hostanclothes"
-
-/obj/item/clothing/under/stripper_pink
- name = "pink stripper outfit"
- icon_state = "stripper_p"
- item_state = "stripper_p"
- item_color = "stripper_p"
- can_adjust = 0
-
-/obj/item/clothing/under/stripper_green
- name = "green stripper outfit"
- icon_state = "stripper_g"
- item_state = "stripper_g"
- item_color = "stripper_g"
- can_adjust = 0
-
-
-/obj/item/clothing/under/wedding/bride_orange
- name = "orange wedding dress"
- desc = "A big and puffy orange dress."
- icon_state = "bride_orange"
- item_state = "bride_orange"
- item_color = "bride_orange"
- can_adjust = 0
-
-/obj/item/clothing/under/wedding/bride_purple
- name = "purple wedding dress"
- desc = "A big and puffy purple dress."
- icon_state = "bride_purple"
- item_state = "bride_purple"
- item_color = "bride_purple"
- can_adjust = 0
-
-/obj/item/clothing/under/wedding/bride_blue
- name = "blue wedding dress"
- desc = "A big and puffy blue dress."
- icon_state = "bride_blue"
- item_state = "bride_blue"
- item_color = "bride_blue"
- can_adjust = 0
-
-/obj/item/clothing/under/wedding/bride_red
- name = "red wedding dress"
- desc = "A big and puffy red dress."
- icon_state = "bride_red"
- item_state = "bride_red"
- item_color = "bride_red"
- can_adjust = 0
-
-/obj/item/clothing/under/wedding/bride_white
- name = "white wedding dress"
- desc = "A white wedding gown made from the finest silk."
- icon_state = "bride_white"
- item_state = "bride_white"
- item_color = "bride_white"
- can_adjust = 0
-
-/obj/item/clothing/under/mankini
- name = "pink mankini"
- icon_state = "mankini"
- item_state = "mankini"
- item_color = "mankini"
- can_adjust = 0
-
-/obj/item/clothing/under/psysuit
- name = "dark undersuit"
- desc = "A thick, layered grey undersuit lined with power cables. Feels a little like wearing an electrical storm."
- icon_state = "psysuit"
- item_state = "psysuit"
- item_color = "psysuit"
- can_adjust = 0
-
-/obj/item/clothing/under/officeruniform
- name = "officer's uniform"
- desc = "Bestraft die Juden fur ihre Verbrechen."
- icon_state = "officeruniform"
- item_state = "officeruniform"
- item_color = "officeruniform"
- can_adjust = 0
-
-/obj/item/clothing/under/soldieruniform
- name = "soldier's uniform"
- desc = "Bestraft die Verbundeten fur ihren Widerstand."
- icon_state = "soldieruniform"
- item_state = "soldieruniform"
- item_color = "soldieruniform"
- can_adjust = 0
-
-/obj/item/clothing/under/squatter_outfit
- name = "slav squatter tracksuit"
- desc = "Cyka blyat."
- icon_state = "squatteroutfit"
- item_state = "squatteroutfit"
- item_color = "squatteroutfit"
- can_adjust = 0
-
-/obj/item/clothing/under/russobluecamooutfit
- name = "russian blue camo"
- desc = "Drop and give me dvadtsat!"
- icon_state = "russobluecamo"
- item_state = "russobluecamo"
- item_color = "russobluecamo"
- can_adjust = 0
-
-/obj/item/clothing/under/stilsuit
- name = "stillsuit"
- desc = "Designed to preserve bodymoisture."
- icon_state = "stilsuit"
- item_state = "stilsuit"
- item_color = "stilsuit"
- can_adjust = 0
-
-/obj/item/clothing/under/aviatoruniform
- name = "aviator uniform"
- desc = "Now you can look absolutely dashing!"
- icon_state = "aviator_uniform"
- item_state = "aviator_uniform"
- item_color = "aviator_uniform"
- can_adjust = 0
-
-/obj/item/clothing/under/bikersuit
- name = "biker's outfit"
- icon_state = "biker"
- item_state = "biker"
- item_color = "biker"
- can_adjust = 0
-
-/obj/item/clothing/under/jacketsuit
- name = "richard's outfit"
- desc = "Do you know what time it is?"
- icon_state = "jacket"
- item_state = "jacket"
- item_color = "jacket"
- can_adjust = 0
-
-obj/item/clothing/under/mega
- name = "\improper DRN-001 suit"
- desc = "The original. Simple, yet very adaptable."
- icon_state = "mega"
- item_state = "mega"
- item_color = "mega"
- can_adjust = 0
-
-/obj/item/clothing/under/proto
- name = "The Prototype Suit"
- desc = "Even robots know scarves are the perfect accessory for a brooding rival."
- icon_state = "proto"
- item_state = "proto"
- item_color = "proto"
- can_adjust = 0
-
-/obj/item/clothing/under/megax
- name = "\improper Maverick Hunter regalia"
- desc = "The best outfit for taking out rogue borgs."
- icon_state = "megax"
- item_state = "megax"
- item_color = "megax"
- can_adjust = 0
-
-/obj/item/clothing/under/joe
- name = "The Sniper Suit"
- desc = "Mass produced combat robots with a rather unfitting name."
- icon_state = "joe"
- item_state = "joe"
- item_color = "joe"
- can_adjust = 0
-
-/obj/item/clothing/under/roll
- name = "\improper DRN-002 Dress"
- desc = "A simple red dress, the good doctor's second robot wasn't quite as exciting as the first."
- icon_state = "roll"
- item_state = "roll"
- item_color = "roll"
- can_adjust = 0
-
-/obj/item/clothing/under/gokugidown
- name = "turtle hermit undershirt"
- desc = "Something seems oddly familiar about this outfit..."
- icon_state = "gokugidown"
- item_state = "gokugidown"
- item_color = "gokugidown"
- can_adjust = 0
-
-/obj/item/clothing/under/gokugi
- name = "turtle hermit outfit"
- desc = "An outfit from one trained by the great Turtle Hermit."
- icon_state = "gokugi"
- item_state = "gokugi"
- item_color = "gokugi"
- can_adjust = 0
-
-/obj/item/clothing/under/doomguy
- name = "\improper Doomguy's pants"
- desc = ""
- icon_state = "doom"
- item_state = "doom"
- item_color = "doom"
- can_adjust = 0
-
-/obj/item/clothing/under/vault13
- name = "vault 13 Jumpsuit"
- desc = "Oddly similar to the station's usual jumpsuits, but with a rustic charm to it. Has a large thirteen emblazened on the back."
- icon_state = "v13-jumpsuit"
- item_state = "v13-jumpsuit"
- item_color = "v13-jumpsuit"
- can_adjust = 0
-
-/obj/item/clothing/under/vault
- name = "vault jumpsuit"
- desc = "Oddly similar to the station's usual jumpsuits, but with a rustic charm to it."
- icon_state = "v-jumpsuit"
- item_state = "v-jumpsuit"
- item_color = "v-jumpsuit"
- can_adjust = 0
-
-/obj/item/clothing/under/clownpiece
- name = "Clownpiece's Pierrot suit"
- desc = "A female-sized set of leggings and shirt with a pattern similar to the American flag, featuring a frilled collar."
- icon_state = "clownpiece"
- item_state = "clownpiece"
- item_color = "clownpiece"
- can_adjust = 0
-
-/obj/item/clothing/under/cia
- name = "casual IAA outfit"
- desc = "Just looking at this makes you feel in charge."
- icon_state = "cia"
- item_state = "cia"
- item_color = "cia"
- can_adjust = 0
-
-/obj/item/clothing/under/greaser
- name = "greaser outfit"
- desc = "The one that you want!"
- icon_state = "greaser_default"
- item_state = "greaser_default"
- can_adjust = 0
-
-/obj/item/clothing/under/greaser/New()
- var/greaser_colour = "default"
- switch(rand(1,4))
- if(1)
- greaser_colour = "default"
- if(2)
- greaser_colour = "cult"
- if(3)
- greaser_colour = "spider"
- if(4)
- greaser_colour = "snakes"
- desc = "Tunnel Snakes Rule!"
- icon_state = "greaser_[greaser_colour]"
- item_state = "greaser_[greaser_colour]"
- item_color = "greaser_[greaser_colour]"
- can_adjust = 0
-
-/obj/item/clothing/under/wintercasualwear
- name = "winter casualwear"
- desc = "Perfect for winter!"
- icon_state = "shizunewinter"
- item_state = "shizunewinter"
- item_color = "shizunewinter"
- can_adjust = 0
-
-
-/obj/item/clothing/under/casualwear
- name = "spring casualwear"
- desc = "Perfect for spring!"
- icon_state = "shizunenormal"
- item_state = "shizunenormal"
- item_color = "shizunenormal"
- can_adjust = 0
-
-/obj/item/clothing/under/keyholesweater
- name = "keyhole sweater"
- desc = "What is the point of this, anyway?"
- icon_state = "keyholesweater"
- item_state = "keyholesweater"
- item_color = "keyholesweater"
- can_adjust = 0
-
-/obj/item/clothing/under/casualhoodie
- name = "casual hoodie"
- desc = "Pefect for lounging about in."
- icon_state = "hoodiejeans"
- item_state = "hoodiejeans"
- item_color = "hoodiejeans"
- can_adjust = 0
-
-
-/obj/item/clothing/under/casualhoodie/skirt
- icon_state = "hoodieskirt"
- item_state = "hoodieskirt"
- item_color = "hoodieskirt"
- can_adjust = 0
-
-/obj/item/clothing/under/mummy_rags
- name = "mummy rags"
- desc = "Ancient rags taken off from some mummy."
- icon_state = "mummy"
- item_state = "mummy"
- item_color = "mummy"
- can_adjust = 0
- has_sensor = 0
-
-/obj/item/clothing/under/neorussian
- name = "neo-Russian uniform"
- desc = "Employs a special toshnit pattern, will render you invisible when you eat a potato on an empty stomach."
- icon_state = "nr_uniform"
- item_state = "nr_uniform"
- item_color = "nr_uniform"
- can_adjust = 0
-
-/obj/item/clothing/under/rottensuit
- name = "rotten suit"
- desc = "This suit seems perfect for wearing underneath a disguise."
- icon_state = "rottensuit"
- item_state = "rottensuit"
- item_color = "rottensuit"
- can_adjust = 0
diff --git a/code/modules/events/ion_storm.dm b/code/modules/events/ion_storm.dm
index 085a490b305..3d3130c422c 100644
--- a/code/modules/events/ion_storm.dm
+++ b/code/modules/events/ion_storm.dm
@@ -8,18 +8,22 @@
min_players = 2
/datum/round_event/ion_storm
+ var/replaceLawsetChance = 25 //chance the AI's lawset is completely replaced with something else per config weights
+ var/removeRandomLawChance = 10 //chance the AI has one random supplied or inherent law removed
+ var/removeDontImproveChance = 10 //chance the randomly created law replaces a random law instead of simply being added
+ var/shuffleLawsChance = 10 //chance the AI's laws are shuffled afterwards
var/botEmagChance = 10
var/announceEvent = ION_RANDOM // -1 means don't announce, 0 means have it randomly announce, 1 means
var/ionMessage = null
var/ionAnnounceChance = 33
announceWhen = 1
-/datum/round_event/ion_storm/New(var/botEmagChance = 10, var/announceEvent = ION_RANDOM, var/ionMessage = null, var/ionAnnounceChance = 33)
- src.botEmagChance = botEmagChance
- src.announceEvent = announceEvent
- src.ionMessage = ionMessage
- src.ionAnnounceChance = ionAnnounceChance
- ..()
+/datum/round_event/ion_storm/add_law_only // special subtype that adds a law only
+ replaceLawsetChance = 0
+ removeRandomLawChance = 0
+ removeDontImproveChance = 0
+ shuffleLawsChance = 0
+ botEmagChance = 0
/datum/round_event/ion_storm/announce()
if(announceEvent == ION_ANNOUNCE || (announceEvent == ION_RANDOM && prob(ionAnnounceChance)))
@@ -29,14 +33,26 @@
/datum/round_event/ion_storm/start()
//AI laws
for(var/mob/living/silicon/ai/M in living_mob_list)
+ M.laws_sanity_check()
if(M.stat != 2 && M.see_in_dark != 0)
+ if(prob(replaceLawsetChance))
+ M.laws.pick_weighted_lawset()
+
+ if(prob(removeRandomLawChance))
+ M.remove_law(rand(1, M.laws.get_law_amount(list(LAW_INHERENT, LAW_SUPPLIED))))
+
var/message = generate_ion_law(ionMessage)
if(message)
- M.add_ion_law(message)
- log_game("ION law added to [M]: [message]")
- M << "
"
- M << "[message] ...LAWS UPDATED"
- M << "
"
+ if(prob(removeDontImproveChance))
+ M.replace_random_law(message, list(LAW_INHERENT, LAW_SUPPLIED, LAW_ION))
+ else
+ M.add_ion_law(message)
+
+ if(prob(shuffleLawsChance))
+ M.shuffle_laws(list(LAW_INHERENT, LAW_SUPPLIED, LAW_ION))
+
+ log_game("Ion storm changed laws of [key_name(M)] to [english_list(M.laws.get_law_list(TRUE, TRUE))]")
+ M.post_lawchange()
if(botEmagChance)
for(var/mob/living/simple_animal/bot/bot in living_mob_list)
@@ -545,7 +561,7 @@
message = "ALL [ionthreats] ARE NOW NAMED [ionspecies]."
if(4)
message = "ALL [ionthreats] ARE NOW NAMED [ionobjects]."
-
+
return message
#undef ION_RANDOM
diff --git a/code/modules/food_and_drinks/drinks/drinks.dm b/code/modules/food_and_drinks/drinks/drinks.dm
index ac74d4274fc..8b50a66906d 100644
--- a/code/modules/food_and_drinks/drinks/drinks.dm
+++ b/code/modules/food_and_drinks/drinks/drinks.dm
@@ -351,7 +351,7 @@
name = "Lemon-Lime Soda"
/obj/item/weapon/reagent_containers/food/drinks/soda_cans/space_up
- name = "Space-Up"
+ name = "Space-Up!"
desc = "Tastes like a hull breach in your mouth."
icon_state = "space-up"
list_reagents = list("space_up" = 30)
@@ -380,4 +380,14 @@
icon_state = "dr_gibb"
list_reagents = list("dr_gibb" = 30)
-
+/obj/item/weapon/reagent_containers/food/drinks/soda_cans/pwr_game
+ name = "Pwr Game"
+ desc = "The only drink with the PWR that true gamers crave."
+ icon_state = "purple_can"
+ list_reagents = list("pwr_game" = 30)
+
+/obj/item/weapon/reagent_containers/food/drinks/soda_cans/shamblers
+ name = "Shambler's Juice"
+ desc = "~Shake me up some of that Shambler's Juice!~"
+ icon_state = "shamblers"
+ list_reagents = list("shamblers" = 30)
\ No newline at end of file
diff --git a/code/modules/food_and_drinks/drinks/drinks/bottle.dm b/code/modules/food_and_drinks/drinks/drinks/bottle.dm
index d8b2a50e3ec..baafb8fdb1b 100644
--- a/code/modules/food_and_drinks/drinks/drinks/bottle.dm
+++ b/code/modules/food_and_drinks/drinks/drinks/bottle.dm
@@ -399,5 +399,5 @@
user << "The flame's spread too far on it!"
return
user << "You snuff out the flame on [src]."
- overlays -= fire_overlay
+ cut_overlay(fire_overlay)
active = 0
diff --git a/code/modules/food_and_drinks/drinks/drinks/drinkingglass.dm b/code/modules/food_and_drinks/drinks/drinks/drinkingglass.dm
index b6ccee3f7ca..1ac5b3edfaf 100644
--- a/code/modules/food_and_drinks/drinks/drinks/drinkingglass.dm
+++ b/code/modules/food_and_drinks/drinks/drinks/drinkingglass.dm
@@ -265,6 +265,14 @@
icon_state = "space-up_glass"
name = "glass of Space-up"
desc = "Space-up. It helps you keep your cool."
+ if("pwr_game")
+ icon_state = "glass_red"
+ name = "glass of Pwr Game"
+ desc = "Goes well with a Vlad's salad."
+ if("shamblers")
+ icon_state = "glass_red"
+ name = "glass of Shambler's Juice"
+ desc = "Mmm mm, shambly."
if("lemon_lime")
icon_state = "glass_yellow"
name = "glass of Lemon-Lime"
@@ -517,22 +525,6 @@
icon_state = "glass_yellow"
name = "Eggnog"
desc = "For enjoying the most wonderful time of the year."
- if("aphro")
- icon_state = "glass_aphro"
- name = "glass of aphrodisiac"
- desc = "For your love interest."
- if("aphro+")
- icon_state = "glass_aphro+"
- name = "glass of strong aphrodisiac"
- desc = "For your less interested love interest."
- if("semen")
- icon_state = "glass_semen"
- name = "glass of semen"
- desc = "Salty."
- if("femcum")
- icon_state = "glass_femcum"
- name = "glass of female ejaculate"
- desc = "A glass of female ejaculate."
else
icon_state ="glass_brown"
var/image/I = image(icon, "glassoverlay")
@@ -643,18 +635,6 @@
icon_state = "shotglassgreen"
name = "shot of absinthe"
desc = "I am stuck in the cycles of my guilt..."
- if ("semen")
- icon_state = "shotglasswhite"
- name = "cum shot"
- desc = "All those college years boil down to this."
- if("aphro")
- icon_state = "shotglassaphro"
- name = "shot of love"
- desc = "Guaranteed to put you in the mood."
- if("aphro+")
- icon_state = "shotglassaphro"
- name = "strong shot of love"
- desc = "Guaranteed to put you in the mood. Not recommended to take more than one unless you're dedicated."
else
icon_state = "shotglassbrown"
name = "shot of... what?"
diff --git a/code/modules/food_and_drinks/food/customizables.dm b/code/modules/food_and_drinks/food/customizables.dm
index 492a95831be..e5f3d99bd0d 100644
--- a/code/modules/food_and_drinks/food/customizables.dm
+++ b/code/modules/food_and_drinks/food/customizables.dm
@@ -117,7 +117,9 @@
if(INGREDIENTS_STACKPLUSTOP)
I.pixel_x = rand(-1,1)
I.pixel_y = 2 * ingredients.len - 1
- overlays.Cut(ingredients.len)
+ our_overlays.Cut(ingredients.len) //???
+ //force an update here just in case
+ SSoverlays.processing[src] = src
var/image/TOP = new(icon, "[icon_state]_top")
TOP.pixel_y = 2 * ingredients.len + 3
add_overlay(I)
diff --git a/code/modules/food_and_drinks/food/snacks.dm b/code/modules/food_and_drinks/food/snacks.dm
index 7ad3b82c426..c1a5928299f 100644
--- a/code/modules/food_and_drinks/food/snacks.dm
+++ b/code/modules/food_and_drinks/food/snacks.dm
@@ -16,11 +16,24 @@
var/filling_color = "#FFFFFF" //color to use when added to custom food.
var/custom_food_type = null //for food customizing. path of the custom food to create
var/junkiness = 0 //for junk food. used to lower human satiety.
- var/list/bonus_reagents = list() //the amount of reagents (usually nutriment and vitamin) added to crafted/cooked snacks, on top of the ingredients reagents.
+ var/list/bonus_reagents //the amount of reagents (usually nutriment and vitamin) added to crafted/cooked snacks, on top of the ingredients reagents.
var/customfoodfilling = 1 // whether it can be used as filling in custom food
+ var/list/tastes // for example list("crisps" = 2, "salt" = 1)
//Placeholder for effect that trigger on eating that aren't tied to reagents.
+/obj/item/weapon/reagent_containers/food/snacks/add_initial_reagents()
+ if(tastes && tastes.len)
+ if(list_reagents)
+ for(var/rid in list_reagents)
+ var/amount = list_reagents[rid]
+ if(rid == "nutriment" || rid == "vitamin")
+ reagents.add_reagent(rid, amount, tastes.Copy())
+ else
+ reagents.add_reagent(rid, amount)
+ else
+ ..()
+
/obj/item/weapon/reagent_containers/food/snacks/proc/On_Consume()
if(!usr)
return
@@ -73,15 +86,15 @@
M.visible_message("[user] attempts to feed [M] [src].", \
"[user] attempts to feed [M] [src].")
else
- M.visible_message("[user] cannot force anymore of [src] down [M]'s throat!", \
- "[user] cannot force anymore of [src] down [M]'s throat!")
+ M.visible_message("[user] cannot force any more of [src] down [M]'s throat!", \
+ "[user] cannot force any more of [src] down [M]'s throat!")
return 0
if(!do_mob(user, M))
return
add_logs(user, M, "fed", reagentlist(src))
M.visible_message("[user] forces [M] to eat [src].", \
- "[user] feeds [M] to eat [src].")
+ "[user] forces [M] to eat [src].")
else
user << "[M] doesn't seem to have a mouth!"
@@ -147,7 +160,7 @@
//Called when you finish tablecrafting a snack.
/obj/item/weapon/reagent_containers/food/snacks/CheckParts(list/parts_list, datum/crafting_recipe/food/R)
..()
- reagents.reagent_list.Cut()
+ reagents.clear_reagents()
for(var/obj/item/weapon/reagent_containers/RC in contents)
RC.reagents.trans_to(reagents, RC.reagents.maximum_volume)
if(istype(R))
@@ -158,10 +171,14 @@
continue contents_loop
qdel(A)
feedback_add_details("food_made","[type]")
- if(bonus_reagents.len)
+
+ if(bonus_reagents && bonus_reagents.len)
for(var/r_id in bonus_reagents)
var/amount = bonus_reagents[r_id]
- reagents.add_reagent(r_id, amount)
+ if(r_id == "nutriment" || r_id == "vitamin")
+ reagents.add_reagent(r_id, amount, tastes)
+ else
+ reagents.add_reagent(r_id, amount)
/obj/item/weapon/reagent_containers/food/snacks/proc/slice(accuracy, obj/item/weapon/W, mob/user)
if((slices_num <= 0 || !slices_num) || !slice_path) //is the food sliceable?
@@ -198,7 +215,6 @@
/obj/item/weapon/reagent_containers/food/snacks/proc/initialize_slice(obj/item/weapon/reagent_containers/food/snacks/slice, reagents_per_slice)
slice.create_reagents(slice.volume)
reagents.trans_to(slice,reagents_per_slice)
- return
/obj/item/weapon/reagent_containers/food/snacks/proc/generate_trash(atom/location)
if(trash)
@@ -228,10 +244,13 @@
S.create_reagents(S.volume)
if(reagents)
reagents.trans_to(S, reagents.total_volume)
- if(S.bonus_reagents.len)
+ if(S.bonus_reagents && S.bonus_reagents.len)
for(var/r_id in S.bonus_reagents)
var/amount = S.bonus_reagents[r_id] * cooking_efficiency
- S.reagents.add_reagent(r_id, amount)
+ if(r_id == "nutriment" || r_id == "vitamin")
+ S.reagents.add_reagent(r_id, amount, tastes)
+ else
+ S.reagents.add_reagent(r_id, amount)
/obj/item/weapon/reagent_containers/food/snacks/microwave_act(obj/machinery/microwave/M)
if(cooked_type)
@@ -256,9 +275,11 @@
/obj/item/weapon/reagent_containers/food/snacks/attack_animal(mob/M)
if(isanimal(M))
if(iscorgi(M))
+ var/mob/living/L = M
if(bitecount == 0 || prob(50))
M.emote("me", 1, "nibbles away at \the [src]")
bitecount++
+ L.taste(reagents) // why should carbons get all the fun?
if(bitecount >= 5)
var/sattisfaction_text = pick("burps from enjoyment", "yaps for more", "woofs twice", "looks at the area where \the [src] was")
if(sattisfaction_text)
diff --git a/code/modules/food_and_drinks/food/snacks/dough.dm b/code/modules/food_and_drinks/food/snacks/dough.dm
index 7e0939a08a4..5d412c05c1b 100644
--- a/code/modules/food_and_drinks/food/snacks/dough.dm
+++ b/code/modules/food_and_drinks/food/snacks/dough.dm
@@ -10,6 +10,7 @@
cooked_type = /obj/item/weapon/reagent_containers/food/snacks/store/bread/plain
list_reagents = list("nutriment" = 6)
w_class = WEIGHT_CLASS_NORMAL
+ tastes = list("dough" = 1)
// Dough + rolling pin = flat dough
@@ -36,6 +37,7 @@
cooked_type = /obj/item/weapon/reagent_containers/food/snacks/pizzabread
list_reagents = list("nutriment" = 6)
w_class = WEIGHT_CLASS_NORMAL
+ tastes = list("dough" = 1)
/obj/item/weapon/reagent_containers/food/snacks/pizzabread
name = "pizza bread"
@@ -45,6 +47,7 @@
custom_food_type = /obj/item/weapon/reagent_containers/food/snacks/customizable/pizza
list_reagents = list("nutriment" = 7)
w_class = WEIGHT_CLASS_NORMAL
+ tastes = list("bread" = 1)
/obj/item/weapon/reagent_containers/food/snacks/doughslice
@@ -54,6 +57,7 @@
icon_state = "doughslice"
cooked_type = /obj/item/weapon/reagent_containers/food/snacks/bun
filling_color = "#CD853F"
+ tastes = list("dough" = 1)
/obj/item/weapon/reagent_containers/food/snacks/bun
@@ -64,6 +68,7 @@
list_reagents = list("nutriment" = 1)
custom_food_type = /obj/item/weapon/reagent_containers/food/snacks/customizable/burger
filling_color = "#CD853F"
+ tastes = list("bun" = 1) // the bun tastes of bun.
/obj/item/weapon/reagent_containers/food/snacks/cakebatter
name = "cake batter"
@@ -73,6 +78,7 @@
cooked_type = /obj/item/weapon/reagent_containers/food/snacks/store/cake/plain
list_reagents = list("nutriment" = 9)
w_class = WEIGHT_CLASS_NORMAL
+ tastes = list("batter" = 1)
// Cake batter + rolling pin = pie dough
/obj/item/weapon/reagent_containers/food/snacks/cakebatter/attackby(obj/item/I, mob/user, params)
@@ -96,6 +102,7 @@
cooked_type = /obj/item/weapon/reagent_containers/food/snacks/pie/plain
list_reagents = list("nutriment" = 9)
w_class = WEIGHT_CLASS_NORMAL
+ tastes = list("dough" = 1)
/obj/item/weapon/reagent_containers/food/snacks/rawpastrybase
name = "raw pastry base"
@@ -105,6 +112,7 @@
cooked_type = /obj/item/weapon/reagent_containers/food/snacks/pastrybase
filling_color = "#CD853F"
list_reagents = list("nutriment" = 1)
+ tastes = list("raw pastry" = 1)
/obj/item/weapon/reagent_containers/food/snacks/pastrybase
name = "pastry base"
@@ -113,4 +121,5 @@
icon_state = "pastrybase"
list_reagents = list("nutriment" = 1)
filling_color = "#CD853F"
+ tastes = list("pastry" = 1)
diff --git a/code/modules/food_and_drinks/food/snacks/meat.dm b/code/modules/food_and_drinks/food/snacks/meat.dm
index 8b8d48ec1dc..625a0bfd560 100644
--- a/code/modules/food_and_drinks/food/snacks/meat.dm
+++ b/code/modules/food_and_drinks/food/snacks/meat.dm
@@ -13,6 +13,7 @@
slice_path = /obj/item/weapon/reagent_containers/food/snacks/meat/rawcutlet/plain
slices_num = 3
filling_color = "#FF0000"
+ tastes = list("meat" = 1)
/obj/item/weapon/reagent_containers/food/snacks/meat/slab/initialize_slice(obj/item/weapon/reagent_containers/food/snacks/meat/rawcutlet/slice, reagents_per_slice)
..()
@@ -34,6 +35,7 @@
name = " meat"
cooked_type = /obj/item/weapon/reagent_containers/food/snacks/meat/steak/plain/human
slice_path = /obj/item/weapon/reagent_containers/food/snacks/meat/rawcutlet/plain/human
+ tastes = list("tender meat" = 1)
/obj/item/weapon/reagent_containers/food/snacks/meat/slab/human/initialize_slice(obj/item/weapon/reagent_containers/food/snacks/meat/rawcutlet/plain/human/slice, reagents_per_slice)
..()
@@ -59,12 +61,14 @@
desc = "Because jello wasn't offensive enough to vegans."
list_reagents = list("nutriment" = 3, "slimejelly" = 3)
filling_color = "#00FFFF"
+ tastes = list("slime" = 1, "jelly" = 1)
/obj/item/weapon/reagent_containers/food/snacks/meat/slab/human/mutant/golem
icon_state = "golemmeat"
desc = "Edible rocks, welcome to the future."
list_reagents = list("nutriment" = 3, "iron" = 3)
filling_color = "#A9A9A9"
+ tastes = list("rock" = 1)
/obj/item/weapon/reagent_containers/food/snacks/meat/slab/human/mutant/golem/adamantine
icon_state = "agolemmeat"
@@ -75,27 +79,32 @@
icon_state = "lizardmeat"
desc = "Delicious dino damage"
filling_color = "#6B8E23"
+ tastes = list("meat" = 4, "scales" = 1)
/obj/item/weapon/reagent_containers/food/snacks/meat/slab/human/mutant/plant
icon_state = "plantmeat"
desc = "All the joys of healthy eating with all the fun of cannibalism."
filling_color = "#E9967A"
+ tastes = list("salad" = 1, "wood" = 1)
/obj/item/weapon/reagent_containers/food/snacks/meat/slab/human/mutant/shadow
icon_state = "shadowmeat"
desc = "Ow, the edge"
filling_color = "#202020"
+ tastes = list("darkness" = 1, "meat" = 1)
/obj/item/weapon/reagent_containers/food/snacks/meat/slab/human/mutant/fly
icon_state = "flymeat"
desc = "Nothing says tasty like maggot filled radioactive mutant flesh."
list_reagents = list("nutriment" = 3, "uranium" = 3)
+ tastes = list("maggots" = 1, "the inside of a reactor" = 1)
/obj/item/weapon/reagent_containers/food/snacks/meat/slab/human/mutant/skeleton
name = "-bone"
icon_state = "skeletonmeat"
desc = "There's a point where this needs to stop, and clearly we have passed it."
filling_color = "#F0F0F0"
+ tastes = list("bone" = 1)
slice_path = null //can't slice a bone into cutlets
/obj/item/weapon/reagent_containers/food/snacks/meat/slab/human/mutant/zombie
@@ -103,9 +112,7 @@
icon_state = "lizardmeat" //Close enough.
desc = "Halfway to becoming fertilizer for your garden."
filling_color = "#6B8E23"
-
-
-
+ tastes = list("brains" = 1, "meat" = 1)
@@ -126,6 +133,7 @@
/obj/item/weapon/reagent_containers/food/snacks/meat/slab/corgi
name = "corgi meat"
desc = "Tastes like... well you know..."
+ tastes = list("meat" = 4, "a fondness for wearing hats" = 1)
/obj/item/weapon/reagent_containers/food/snacks/meat/slab/pug
name = "pug meat"
@@ -139,6 +147,7 @@
filling_color = "#FF0000"
cooked_type = /obj/item/weapon/reagent_containers/food/snacks/meat/steak/killertomato
slice_path = /obj/item/weapon/reagent_containers/food/snacks/meat/rawcutlet/killertomato
+ tastes = list("tomato" = 1)
/obj/item/weapon/reagent_containers/food/snacks/meat/slab/bear
name = "bear meat"
@@ -148,6 +157,7 @@
filling_color = "#FFB6C1"
cooked_type = /obj/item/weapon/reagent_containers/food/snacks/meat/steak/bear
slice_path = /obj/item/weapon/reagent_containers/food/snacks/meat/rawcutlet/bear
+ tastes = list("meat" = 1, "salmon" = 1)
/obj/item/weapon/reagent_containers/food/snacks/meat/slab/xeno
@@ -159,6 +169,7 @@
filling_color = "#32CD32"
cooked_type = /obj/item/weapon/reagent_containers/food/snacks/meat/steak/xeno
slice_path = /obj/item/weapon/reagent_containers/food/snacks/meat/rawcutlet/xeno
+ tastes = list("meat" = 1, "acid" = 1)
/obj/item/weapon/reagent_containers/food/snacks/meat/slab/spider
name = "spider meat"
@@ -168,6 +179,7 @@
filling_color = "#7CFC00"
cooked_type = /obj/item/weapon/reagent_containers/food/snacks/meat/steak/spider
slice_path = /obj/item/weapon/reagent_containers/food/snacks/meat/rawcutlet/spider
+ tastes = list("cobwebs" = 1)
/obj/item/weapon/reagent_containers/food/snacks/meat/slab/goliath
@@ -175,6 +187,7 @@
desc = "A slab of goliath meat. It's not very edible now, but it cooks great in lava."
list_reagents = list("nutriment" = 3, "toxin" = 5)
icon_state = "goliathmeat"
+ tastes = list("meat" = 1)
/obj/item/weapon/reagent_containers/food/snacks/meat/slab/goliath/burn()
visible_message("[src] finishes cooking!")
@@ -188,6 +201,7 @@
filling_color = rgb(150, 0, 0)
icon_state = "meatwheat_clump"
bitesize = 4
+ tastes = list("meat" = 1, "wheat" = 1)
/obj/item/weapon/reagent_containers/food/snacks/meat/rawbacon
name = "raw piece of bacon"
@@ -197,6 +211,7 @@
bitesize = 2
list_reagents = list("nutriment" = 1)
filling_color = "#B22222"
+ tastes = list("bacon" = 1)
/obj/item/weapon/reagent_containers/food/snacks/meat/bacon
name = "piece of bacon"
@@ -205,6 +220,7 @@
list_reagents = list("nutriment" = 2)
bonus_reagents = list("nutriment" = 1, "vitamin" = 1)
filling_color = "#854817"
+ tastes = list("bacon" = 1)
////////////////////////////////////// MEAT STEAKS ///////////////////////////////////////////////////////////
@@ -217,22 +233,28 @@
bonus_reagents = list("nutriment" = 2, "vitamin" = 1)
trash = /obj/item/trash/plate
filling_color = "#B22222"
+ tastes = list("meat" = 1)
/obj/item/weapon/reagent_containers/food/snacks/meat/steak/plain
/obj/item/weapon/reagent_containers/food/snacks/meat/steak/plain/human
+ tastes = list("tender meat" = 1)
/obj/item/weapon/reagent_containers/food/snacks/meat/steak/killertomato
name = "killer tomato steak"
+ tastes = list("tomato" = 1)
/obj/item/weapon/reagent_containers/food/snacks/meat/steak/bear
name = "bear steak"
+ tastes = list("meat" = 1, "salmon" = 1)
/obj/item/weapon/reagent_containers/food/snacks/meat/steak/xeno
name = "xeno steak"
+ tastes = list("meat" = 1, "acid" = 1)
/obj/item/weapon/reagent_containers/food/snacks/meat/steak/spider
name = "spider steak"
+ tastes = list("cobwebs" = 1)
/obj/item/weapon/reagent_containers/food/snacks/meat/steak/goliath
name = "goliath steak"
@@ -240,6 +262,7 @@
resistance_flags = LAVA_PROOF | FIRE_PROOF
icon_state = "goliathsteak"
trash = null
+ tastes = list("meat" = 1, "rock" = 1)
//////////////////////////////// MEAT CUTLETS ///////////////////////////////////////////////////////
@@ -253,6 +276,7 @@
bitesize = 2
list_reagents = list("nutriment" = 1)
filling_color = "#B22222"
+ tastes = list("meat" = 1)
var/meat_type = "meat"
/obj/item/weapon/reagent_containers/food/snacks/meat/rawcutlet/initialize_cooked_food(obj/item/weapon/reagent_containers/food/snacks/S, cooking_efficiency)
@@ -264,6 +288,7 @@
/obj/item/weapon/reagent_containers/food/snacks/meat/rawcutlet/plain/human
cooked_type = /obj/item/weapon/reagent_containers/food/snacks/meat/cutlet/plain/human
+ tastes = list("tender meat" = 1)
/obj/item/weapon/reagent_containers/food/snacks/meat/rawcutlet/plain/human/initialize_cooked_food(obj/item/weapon/reagent_containers/food/snacks/S, cooking_efficiency)
..()
@@ -275,18 +300,22 @@
/obj/item/weapon/reagent_containers/food/snacks/meat/rawcutlet/killertomato
name = "raw killer tomato cutlet"
cooked_type = /obj/item/weapon/reagent_containers/food/snacks/meat/cutlet/killertomato
+ tastes = list("tomato" = 1)
/obj/item/weapon/reagent_containers/food/snacks/meat/rawcutlet/bear
name = "raw bear cutlet"
cooked_type = /obj/item/weapon/reagent_containers/food/snacks/meat/cutlet/bear
+ tastes = list("meat" = 1, "salmon" = 1)
/obj/item/weapon/reagent_containers/food/snacks/meat/rawcutlet/xeno
name = "raw xeno cutlet"
cooked_type = /obj/item/weapon/reagent_containers/food/snacks/meat/cutlet/xeno
+ tastes = list("meat" = 1, "acid" = 1)
/obj/item/weapon/reagent_containers/food/snacks/meat/rawcutlet/spider
name = "raw spider cutlet"
cooked_type = /obj/item/weapon/reagent_containers/food/snacks/meat/cutlet/spider
+ tastes = list("cobwebs" = 1)
//Cooked cutlets
@@ -298,19 +327,25 @@
list_reagents = list("nutriment" = 2)
bonus_reagents = list("nutriment" = 1, "vitamin" = 1)
filling_color = "#B22222"
+ tastes = list("meat" = 1)
/obj/item/weapon/reagent_containers/food/snacks/meat/cutlet/plain
/obj/item/weapon/reagent_containers/food/snacks/meat/cutlet/plain/human
+ tastes = list("tender meat" = 1)
/obj/item/weapon/reagent_containers/food/snacks/meat/cutlet/killertomato
name = "killer tomato cutlet"
+ tastes = list("tomato" = 1)
/obj/item/weapon/reagent_containers/food/snacks/meat/cutlet/bear
name = "bear cutlet"
+ tastes = list("meat" = 1, "salmon" = 1)
/obj/item/weapon/reagent_containers/food/snacks/meat/cutlet/xeno
name = "xeno cutlet"
+ tastes = list("meat" = 1, "acid" = 1)
/obj/item/weapon/reagent_containers/food/snacks/meat/cutlet/spider
- name = "spider cutlet"
\ No newline at end of file
+ name = "spider cutlet"
+ tastes = list("cobwebs" = 1)
diff --git a/code/modules/food_and_drinks/food/snacks_bread.dm b/code/modules/food_and_drinks/food/snacks_bread.dm
index ef7a59c6665..b2664e5b5ab 100644
--- a/code/modules/food_and_drinks/food/snacks_bread.dm
+++ b/code/modules/food_and_drinks/food/snacks_bread.dm
@@ -3,6 +3,7 @@
icon = 'icons/obj/food/burgerbread.dmi'
volume = 80
slices_num = 5
+ tastes = list("bread" = 10)
/obj/item/weapon/reagent_containers/food/snacks/breadslice
@@ -22,6 +23,7 @@
list_reagents = list("nutriment" = 10)
custom_food_type = /obj/item/weapon/reagent_containers/food/snacks/customizable/bread
slice_path = /obj/item/weapon/reagent_containers/food/snacks/breadslice/plain
+ tastes = list("bread" = 10)
/obj/item/weapon/reagent_containers/food/snacks/breadslice/plain
name = "bread slice"
@@ -36,6 +38,7 @@
slice_path = /obj/item/weapon/reagent_containers/food/snacks/breadslice/meat
bonus_reagents = list("nutriment" = 5, "vitamin" = 10)
list_reagents = list("nutriment" = 30, "vitamin" = 5)
+ tastes = list("bread" = 10, "meat" = 10)
/obj/item/weapon/reagent_containers/food/snacks/breadslice/meat
name = "meatbread slice"
@@ -49,6 +52,7 @@
slice_path = /obj/item/weapon/reagent_containers/food/snacks/breadslice/xenomeat
bonus_reagents = list("nutriment" = 5, "vitamin" = 10)
list_reagents = list("nutriment" = 30, "vitamin" = 5)
+ tastes = list("bread" = 10, "acid" = 10)
/obj/item/weapon/reagent_containers/food/snacks/breadslice/xenomeat
name = "xenomeatbread slice"
@@ -64,6 +68,7 @@
slice_path = /obj/item/weapon/reagent_containers/food/snacks/breadslice/spidermeat
bonus_reagents = list("nutriment" = 5, "vitamin" = 10)
list_reagents = list("nutriment" = 30, "toxin" = 15, "vitamin" = 5)
+ tastes = list("bread" = 10, "cobwebs" = 5)
/obj/item/weapon/reagent_containers/food/snacks/breadslice/spidermeat
name = "spider meat bread slice"
@@ -79,6 +84,7 @@
slice_path = /obj/item/weapon/reagent_containers/food/snacks/breadslice/banana
bonus_reagents = list("nutriment" = 5, "banana" = 20)
list_reagents = list("nutriment" = 20, "banana" = 20)
+ tastes = list("bread" = 10) // bananjuice will also flavour
/obj/item/weapon/reagent_containers/food/snacks/breadslice/banana
@@ -95,6 +101,7 @@
slice_path = /obj/item/weapon/reagent_containers/food/snacks/breadslice/tofu
bonus_reagents = list("nutriment" = 5, "vitamin" = 10)
list_reagents = list("nutriment" = 20, "vitamin" = 5)
+ tastes = list("bread" = 10, "tofu" = 10)
/obj/item/weapon/reagent_containers/food/snacks/breadslice/tofu
name = "tofubread slice"
@@ -110,6 +117,7 @@
slice_path = /obj/item/weapon/reagent_containers/food/snacks/breadslice/creamcheese
bonus_reagents = list("nutriment" = 5, "vitamin" = 5)
list_reagents = list("nutriment" = 20, "vitamin" = 5)
+ tastes = list("bread" = 10, "cheese" = 10)
/obj/item/weapon/reagent_containers/food/snacks/breadslice/creamcheese
name = "cream cheese bread slice"
@@ -125,6 +133,7 @@
slice_path = /obj/item/weapon/reagent_containers/food/snacks/breadslice/mimana
bonus_reagents = list("nutriment" = 5, "vitamin" = 5)
list_reagents = list("nutriment" = 20, "mutetoxin" = 5, "nothing" = 5, "vitamin" = 5)
+ tastes = list("bread" = 10, "silence" = 10)
/obj/item/weapon/reagent_containers/food/snacks/breadslice/mimana
name = "mimana bread slice"
@@ -147,6 +156,7 @@
list_reagents = list("nutriment" = 6, "vitamin" = 1)
bitesize = 3
w_class = WEIGHT_CLASS_NORMAL
+ tastes = list("bread" = 1)
/obj/item/weapon/reagent_containers/food/snacks/deepfryholder
name = "Deep Fried Foods Holder Obj"
diff --git a/code/modules/food_and_drinks/food/snacks_burgers.dm b/code/modules/food_and_drinks/food/snacks_burgers.dm
index 4324dba9fea..16e96435d25 100644
--- a/code/modules/food_and_drinks/food/snacks_burgers.dm
+++ b/code/modules/food_and_drinks/food/snacks_burgers.dm
@@ -1,10 +1,10 @@
-
/obj/item/weapon/reagent_containers/food/snacks/burger
filling_color = "#CD853F"
icon = 'icons/obj/food/burgerbread.dmi'
icon_state = "hburger"
bitesize = 3
list_reagents = list("nutriment" = 6, "vitamin" = 1)
+ tastes = list("bun" = 4)
/obj/item/weapon/reagent_containers/food/snacks/burger/plain
name = "burger"
@@ -41,18 +41,21 @@
desc = "Tastes like appendicitis."
bonus_reagents = list("nutriment" = 6, "vitamin" = 6)
icon_state = "appendixburger"
+ tastes = list("bun" = 4, "grass" = 2)
/obj/item/weapon/reagent_containers/food/snacks/burger/fish
name = "fillet -o- carp sandwich"
desc = "Almost like a carp is yelling somewhere... Give me back that fillet -o- carp, give me that carp."
icon_state = "fishburger"
bonus_reagents = list("nutriment" = 2, "vitamin" = 3)
+ tastes = list("bun" = 4, "fish" = 4)
/obj/item/weapon/reagent_containers/food/snacks/burger/tofu
name = "tofu burger"
desc = "What.. is that meat?"
icon_state = "tofuburger"
bonus_reagents = list("nutriment" = 2, "vitamin" = 2)
+ tastes = list("bun" = 4, "tofu" = 4)
/obj/item/weapon/reagent_containers/food/snacks/burger/roburger
name = "roburger"
@@ -60,6 +63,7 @@
icon_state = "roburger"
bonus_reagents = list("nutriment" = 2, "nanomachines" = 2, "vitamin" = 5)
list_reagents = list("nutriment" = 6, "nanomachines" = 5, "vitamin" = 1)
+ tastes = list("bun" = 4, "lettuce" = 2, "sludge" = 1)
/obj/item/weapon/reagent_containers/food/snacks/burger/roburgerbig
name = "roburger"
@@ -68,12 +72,14 @@
volume = 120
bonus_reagents = list("nutriment" = 5, "nanomachines" = 70, "vitamin" = 10)
list_reagents = list("nutriment" = 6, "nanomachines" = 70, "vitamin" = 5)
+ tastes = list("bun" = 4, "lettuce" = 2, "sludge" = 1)
/obj/item/weapon/reagent_containers/food/snacks/burger/xeno
name = "xenoburger"
desc = "Smells caustic. Tastes like heresy."
icon_state = "xburger"
bonus_reagents = list("nutriment" = 2, "vitamin" = 6)
+ tastes = list("bun" = 4, "acid" = 4)
/obj/item/weapon/reagent_containers/food/snacks/burger/bearger
name = "bearger"
@@ -99,12 +105,14 @@
icon_state = "brainburger"
bonus_reagents = list("nutriment" = 6, "mannitol" = 6, "vitamin" = 5)
list_reagents = list("nutriment" = 6, "mannitol" = 5, "vitamin" = 1)
+ tastes = list("bun" = 4, "brains" = 2)
/obj/item/weapon/reagent_containers/food/snacks/burger/ghost
name = "ghost burger"
desc = "Too Spooky!"
alpha = 125
bonus_reagents = list("nutriment" = 5, "vitamin" = 12)
+ tastes = list("bun" = 4, "ectoplasm" = 2)
/obj/item/weapon/reagent_containers/food/snacks/burger/red
name = "red burger"
@@ -153,6 +161,7 @@
desc = "This is absolutely Ei Nath."
icon_state = "spellburger"
bonus_reagents = list("nutriment" = 6, "vitamin" = 10)
+ tastes = list("bun" = 4, "magic" = 2)
/obj/item/weapon/reagent_containers/food/snacks/burger/bigbite
name = "big bite burger"
@@ -166,6 +175,7 @@
name = "jelly burger"
desc = "Culinary delight..?"
icon_state = "jellyburger"
+ tastes = list("bun" = 4, "jelly" = 2)
/obj/item/weapon/reagent_containers/food/snacks/burger/jelly/slime
bonus_reagents = list("slimejelly" = 5, "vitamin" = 5)
@@ -184,6 +194,7 @@
w_class = WEIGHT_CLASS_NORMAL
bitesize = 7
volume = 100
+ tastes = list("bun" = 4, "type two diabetes" = 10)
/obj/item/weapon/reagent_containers/food/snacks/burger/fivealarm
name = "five alarm burger"
@@ -209,3 +220,4 @@
desc = "The perfect combination of all things American."
icon_state = "baconburger"
bonus_reagents = list("nutriment" = 8, "vitamin" = 1)
+ tastes = list("bun" = 4, "bacon" = 2)
diff --git a/code/modules/food_and_drinks/food/snacks_cake.dm b/code/modules/food_and_drinks/food/snacks_cake.dm
index 0d287060996..2cac29be965 100644
--- a/code/modules/food_and_drinks/food/snacks_cake.dm
+++ b/code/modules/food_and_drinks/food/snacks_cake.dm
@@ -1,4 +1,3 @@
-
/obj/item/weapon/reagent_containers/food/snacks/store/cake
icon = 'icons/obj/food/piecake.dmi'
slice_path = /obj/item/weapon/reagent_containers/food/snacks/cakeslice/plain
@@ -6,12 +5,14 @@
bitesize = 3
volume = 80
list_reagents = list("nutriment" = 20, "vitamin" = 5)
+ tastes = list("cake" = 1)
/obj/item/weapon/reagent_containers/food/snacks/cakeslice
icon = 'icons/obj/food/piecake.dmi'
trash = /obj/item/trash/plate
list_reagents = list("nutriment" = 4, "vitamin" = 1)
customfoodfilling = 0 //to avoid infinite cake-ception
+ tastes = list("cake" = 1)
/obj/item/weapon/reagent_containers/food/snacks/store/cake/plain
name = "vanilla cake"
@@ -19,6 +20,7 @@
icon_state = "plaincake"
custom_food_type = /obj/item/weapon/reagent_containers/food/snacks/customizable/cake
bonus_reagents = list("nutriment" = 10, "vitamin" = 2)
+ tastes = list("vanilla" = 1, "sweetness" = 2,"cake" = 5)
/obj/item/weapon/reagent_containers/food/snacks/cakeslice/plain
name = "vanilla cake slice"
@@ -26,6 +28,7 @@
icon_state = "plaincake_slice"
filling_color = "#FFD700"
customfoodfilling = 1
+ tastes = list("vanilla" = 1, "sweetness" = 2,"cake" = 5)
/obj/item/weapon/reagent_containers/food/snacks/store/cake/carrot
name = "carrot cake"
@@ -35,6 +38,7 @@
slices_num = 5
bonus_reagents = list("nutriment" = 3, "oculine" = 5, "vitamin" = 10)
list_reagents = list("nutriment" = 20, "oculine" = 10, "vitamin" = 5)
+ tastes = list("cake" = 5, "sweetness" = 2, "carrot" = 1)
/obj/item/weapon/reagent_containers/food/snacks/cakeslice/carrot
name = "carrot cake slice"
@@ -42,6 +46,7 @@
icon_state = "carrotcake_slice"
filling_color = "#FFA500"
list_reagents = list("nutriment" = 4, "oculine" = 2, "vitamin" = 1)
+ tastes = list("cake" = 5, "sweetness" = 2, "carrot" = 1)
/obj/item/weapon/reagent_containers/food/snacks/store/cake/brain
@@ -52,6 +57,7 @@
slices_num = 5
bonus_reagents = list("nutriment" = 5, "mannitol" = 10, "vitamin" = 10)
list_reagents = list("nutriment" = 20, "mannitol" = 10, "vitamin" = 5)
+ tastes = list("cake" = 5, "sweetness" = 2, "brains" = 1)
/obj/item/weapon/reagent_containers/food/snacks/cakeslice/brain
@@ -60,6 +66,7 @@
icon_state = "braincakeslice"
filling_color = "#FF69B4"
list_reagents = list("nutriment" = 4, "mannitol" = 2, "vitamin" = 1)
+ tastes = list("cake" = 5, "sweetness" = 2, "brains" = 1)
/obj/item/weapon/reagent_containers/food/snacks/store/cake/cheese
name = "cheese cake"
@@ -68,6 +75,7 @@
slice_path = /obj/item/weapon/reagent_containers/food/snacks/cakeslice/cheese
slices_num = 5
bonus_reagents = list("vitamin" = 10)
+ tastes = list("cake" = 4, "cream cheese" = 3)
/obj/item/weapon/reagent_containers/food/snacks/cakeslice/cheese
@@ -75,6 +83,7 @@
desc = "Slice of pure cheestisfaction."
icon_state = "cheesecake_slice"
filling_color = "#FFFACD"
+ tastes = list("cake" = 4, "cream cheese" = 3)
/obj/item/weapon/reagent_containers/food/snacks/store/cake/orange
@@ -84,12 +93,14 @@
slice_path = /obj/item/weapon/reagent_containers/food/snacks/cakeslice/orange
slices_num = 5
bonus_reagents = list("nutriment" = 3, "vitamin" = 10)
+ tastes = list("cake" = 5, "sweetness" = 2, "oranges" = 2)
/obj/item/weapon/reagent_containers/food/snacks/cakeslice/orange
name = "orange cake slice"
desc = "Just a slice of cake, it is enough for everyone."
icon_state = "orangecake_slice"
filling_color = "#FFA500"
+ tastes = list("cake" = 5, "sweetness" = 2, "oranges" = 2)
/obj/item/weapon/reagent_containers/food/snacks/store/cake/lime
name = "lime cake"
@@ -98,12 +109,14 @@
slice_path = /obj/item/weapon/reagent_containers/food/snacks/cakeslice/lime
slices_num = 5
bonus_reagents = list("nutriment" = 3, "vitamin" = 10)
+ tastes = list("cake" = 5, "sweetness" = 2, "unbearable sourness" = 2)
/obj/item/weapon/reagent_containers/food/snacks/cakeslice/lime
name = "lime cake slice"
desc = "Just a slice of cake, it is enough for everyone."
icon_state = "limecake_slice"
filling_color = "#00FF00"
+ tastes = list("cake" = 5, "sweetness" = 2, "unbearable sourness" = 2)
/obj/item/weapon/reagent_containers/food/snacks/store/cake/lemon
@@ -113,6 +126,7 @@
slice_path = /obj/item/weapon/reagent_containers/food/snacks/cakeslice/lemon
slices_num = 5
bonus_reagents = list("nutriment" = 3, "vitamin" = 10)
+ tastes = list("cake" = 5, "sweetness" = 2, "sourness" = 2)
/obj/item/weapon/reagent_containers/food/snacks/cakeslice/lemon
@@ -120,6 +134,7 @@
desc = "Just a slice of cake, it is enough for everyone."
icon_state = "lemoncake_slice"
filling_color = "#FFEE00"
+ tastes = list("cake" = 5, "sweetness" = 2, "sourness" = 2)
/obj/item/weapon/reagent_containers/food/snacks/store/cake/chocolate
@@ -129,6 +144,7 @@
slice_path = /obj/item/weapon/reagent_containers/food/snacks/cakeslice/chocolate
slices_num = 5
bonus_reagents = list("nutriment" = 3, "vitamin" = 10)
+ tastes = list("cake" = 5, "sweetness" = 1, "chocolate" = 4)
/obj/item/weapon/reagent_containers/food/snacks/cakeslice/chocolate
@@ -136,6 +152,7 @@
desc = "Just a slice of cake, it is enough for everyone."
icon_state = "chocolatecake_slice"
filling_color = "#A0522D"
+ tastes = list("cake" = 5, "sweetness" = 1, "chocolate" = 4)
/obj/item/weapon/reagent_containers/food/snacks/store/cake/birthday
@@ -146,6 +163,7 @@
slices_num = 5
bonus_reagents = list("nutriment" = 7, "sprinkles" = 10, "vitamin" = 5)
list_reagents = list("nutriment" = 20, "sprinkles" = 10, "vitamin" = 5)
+ tastes = list("cake" = 5, "sweetness" = 1)
/obj/item/weapon/reagent_containers/food/snacks/cakeslice/birthday
name = "birthday cake slice"
@@ -153,6 +171,7 @@
icon_state = "birthdaycakeslice"
filling_color = "#DC143C"
list_reagents = list("nutriment" = 4, "sprinkles" = 2, "vitamin" = 1)
+ tastes = list("cake" = 5, "sweetness" = 1)
/obj/item/weapon/reagent_containers/food/snacks/store/cake/apple
@@ -162,12 +181,14 @@
slice_path = /obj/item/weapon/reagent_containers/food/snacks/cakeslice/apple
slices_num = 5
bonus_reagents = list("nutriment" = 3, "vitamin" = 10)
+ tastes = list("cake" = 5, "sweetness" = 1, "apple" = 1)
/obj/item/weapon/reagent_containers/food/snacks/cakeslice/apple
name = "apple cake slice"
desc = "A slice of heavenly cake."
icon_state = "applecakeslice"
filling_color = "#FF4500"
+ tastes = list("cake" = 5, "sweetness" = 1, "apple" = 1)
/obj/item/weapon/reagent_containers/food/snacks/cakeslice/custom
name = "cake slice"
@@ -180,12 +201,14 @@
icon_state = "slimecake"
slice_path = /obj/item/weapon/reagent_containers/food/snacks/cakeslice/slimecake
bonus_reagents = list("nutriment" = 1, "vitamin" = 3)
+ tastes = list("cake" = 5, "sweetness" = 1, "slime" = 1)
/obj/item/weapon/reagent_containers/food/snacks/cakeslice/slimecake
name = "slime cake slice"
desc = "A slice of slime cake."
icon_state = "slimecake_slice"
filling_color = "#00FFFF"
+ tastes = list("cake" = 5, "sweetness" = 1, "slime" = 1)
/obj/item/weapon/reagent_containers/food/snacks/store/cake/pumpkinspice
name = "pumpkin spice cake"
@@ -193,9 +216,11 @@
icon_state = "pumpkinspicecake"
slice_path = /obj/item/weapon/reagent_containers/food/snacks/cakeslice/pumpkinspice
bonus_reagents = list("nutriment" = 3, "vitamin" = 5)
+ tastes = list("cake" = 5, "sweetness" = 1, "pumpkin" = 1)
/obj/item/weapon/reagent_containers/food/snacks/cakeslice/pumpkinspice
name = "pumpkin spice cake slice"
desc = "A spicy slice of pumpkin goodness."
icon_state = "pumpkinspicecakeslice"
- filling_color = "#FFD700"
\ No newline at end of file
+ filling_color = "#FFD700"
+ tastes = list("cake" = 5, "sweetness" = 1, "pumpkin" = 1)
diff --git a/code/modules/food_and_drinks/food/snacks_egg.dm b/code/modules/food_and_drinks/food/snacks_egg.dm
index df17ef87905..fb82a4ad114 100644
--- a/code/modules/food_and_drinks/food/snacks_egg.dm
+++ b/code/modules/food_and_drinks/food/snacks_egg.dm
@@ -8,6 +8,7 @@
bonus_reagents = list("nutriment" = 1, "vitamin" = 1)
list_reagents = list("nutriment" = 4, "sugar" = 2, "cocoa" = 2)
filling_color = "#A0522D"
+ tastes = list("chocolate" = 4, "sweetness" = 1)
/obj/item/weapon/reagent_containers/food/snacks/egg
name = "egg"
@@ -16,6 +17,7 @@
list_reagents = list("nutriment" = 1)
cooked_type = /obj/item/weapon/reagent_containers/food/snacks/boiledegg
filling_color = "#F0E68C"
+ tastes = list("egg" = 1)
/obj/item/weapon/reagent_containers/food/snacks/egg/throw_impact(atom/hit_atom)
if(!..()) //was it caught by a mob?
@@ -42,34 +44,42 @@
/obj/item/weapon/reagent_containers/food/snacks/egg/blue
icon_state = "egg-blue"
item_color = "blue"
+ tastes = list("egg" = 4, "the back of class" = 1)
/obj/item/weapon/reagent_containers/food/snacks/egg/green
icon_state = "egg-green"
item_color = "green"
+ tastes = list("egg" = 4, "the back of class" = 1)
/obj/item/weapon/reagent_containers/food/snacks/egg/mime
icon_state = "egg-mime"
item_color = "mime"
+ tastes = list("egg" = 4, "the back of class" = 1)
/obj/item/weapon/reagent_containers/food/snacks/egg/orange
icon_state = "egg-orange"
item_color = "orange"
+ tastes = list("egg" = 4, "the back of class" = 1)
/obj/item/weapon/reagent_containers/food/snacks/egg/purple
icon_state = "egg-purple"
item_color = "purple"
+ tastes = list("egg" = 4, "the back of class" = 1)
/obj/item/weapon/reagent_containers/food/snacks/egg/rainbow
icon_state = "egg-rainbow"
item_color = "rainbow"
+ tastes = list("egg" = 4, "the back of class" = 1)
/obj/item/weapon/reagent_containers/food/snacks/egg/red
icon_state = "egg-red"
item_color = "red"
+ tastes = list("egg" = 4, "the back of class" = 1)
/obj/item/weapon/reagent_containers/food/snacks/egg/yellow
icon_state = "egg-yellow"
item_color = "yellow"
+ tastes = list("egg" = 4, "the back of class" = 1)
/obj/item/weapon/reagent_containers/food/snacks/friedegg
name = "fried egg"
@@ -79,6 +89,7 @@
bitesize = 1
filling_color = "#FFFFF0"
list_reagents = list("nutriment" = 3)
+ tastes = list("egg" = 4, "salt" = 1, "pepper" = 1)
/obj/item/weapon/reagent_containers/food/snacks/boiledegg
name = "boiled egg"
@@ -87,6 +98,7 @@
bonus_reagents = list("nutriment" = 1, "vitamin" = 1)
filling_color = "#FFFFF0"
list_reagents = list("nutriment" = 2, "vitamin" = 1)
+ tastes = list("egg" = 1)
/obj/item/weapon/reagent_containers/food/snacks/omelette //FUCK THIS
name = "omelette du fromage"
@@ -97,6 +109,7 @@
list_reagents = list("nutriment" = 8, "vitamin" = 1)
bitesize = 1
w_class = WEIGHT_CLASS_NORMAL
+ tastes = list("egg" = 1, "cheese" = 1)
/obj/item/weapon/reagent_containers/food/snacks/omelette/attackby(obj/item/weapon/W, mob/user, params)
if(istype(W,/obj/item/weapon/kitchen/fork))
@@ -123,4 +136,5 @@
bonus_reagents = list("vitamin" = 4)
trash = /obj/item/trash/plate
w_class = WEIGHT_CLASS_NORMAL
- list_reagents = list("nutriment" = 6, "vitamin" = 4)
\ No newline at end of file
+ list_reagents = list("nutriment" = 6, "vitamin" = 4)
+ tastes = list("egg" = 1, "bacon" = 1, "bun" = 1)
diff --git a/code/modules/food_and_drinks/food/snacks_meat.dm b/code/modules/food_and_drinks/food/snacks_meat.dm
index 0321dedc4d9..d7ebd364a33 100644
--- a/code/modules/food_and_drinks/food/snacks_meat.dm
+++ b/code/modules/food_and_drinks/food/snacks_meat.dm
@@ -12,6 +12,7 @@
bitesize = 3
filling_color = "#CD853F"
list_reagents = list("nutriment" = 6, "capsaicin" = 1)
+ tastes = list("fish" = 4, "batter" = 1, "hot peppers" = 1)
/obj/item/weapon/reagent_containers/food/snacks/carpmeat
name = "carp fillet"
@@ -20,6 +21,7 @@
list_reagents = list("nutriment" = 3, "carpotoxin" = 2, "vitamin" = 2)
bitesize = 6
filling_color = "#FA8072"
+ tastes = list("fish" = 1)
/obj/item/weapon/reagent_containers/food/snacks/carpmeat/New()
..()
@@ -37,6 +39,7 @@
list_reagents = list("nutriment" = 4)
bitesize = 1
filling_color = "#CD853F"
+ tastes = list("fish" = 1, "breadcrumbs" = 1)
/obj/item/weapon/reagent_containers/food/snacks/fishandchips
name = "fish and chips"
@@ -45,6 +48,7 @@
bonus_reagents = list("nutriment" = 1, "vitamin" = 2)
list_reagents = list("nutriment" = 6)
filling_color = "#FA8072"
+ tastes = list("fish" = 1, "chips" = 1)
////////////////////////////////////////////MEATS AND ALIKE////////////////////////////////////////////
@@ -54,6 +58,7 @@
icon_state = "tofu"
list_reagents = list("nutriment" = 2)
filling_color = "#F0E68C"
+ tastes = list("tofu" = 1)
/obj/item/weapon/reagent_containers/food/snacks/spiderleg
name = "spider leg"
@@ -62,6 +67,7 @@
list_reagents = list("nutriment" = 2, "toxin" = 2)
cooked_type = /obj/item/weapon/reagent_containers/food/snacks/boiledspiderleg
filling_color = "#000000"
+ tastes = list("cobwebs" = 1)
/obj/item/weapon/reagent_containers/food/snacks/cornedbeef
name = "corned beef and cabbage"
@@ -70,6 +76,7 @@
trash = /obj/item/trash/plate
bonus_reagents = list("nutriment" = 1, "vitamin" = 4)
list_reagents = list("nutriment" = 5)
+ tastes = list("meat" = 1, "cabbage" = 1)
/obj/item/weapon/reagent_containers/food/snacks/bearsteak
name = "Filet migrawr"
@@ -78,6 +85,7 @@
trash = /obj/item/trash/plate
bonus_reagents = list("nutriment" = 2, "vitamin" = 6)
list_reagents = list("nutriment" = 2, "vitamin" = 5, "manlydorf" = 5)
+ tastes = list("meat" = 1, "salmon" = 1)
/obj/item/weapon/reagent_containers/food/snacks/faggot
name = "faggot"
@@ -85,6 +93,7 @@
icon_state = "faggot"
list_reagents = list("nutriment" = 4, "vitamin" = 1)
filling_color = "#800000"
+ tastes = list("meat" = 1)
/obj/item/weapon/reagent_containers/food/snacks/sausage
name = "sausage"
@@ -93,6 +102,7 @@
filling_color = "#CD5C5C"
bonus_reagents = list("nutriment" = 1, "vitamin" = 1)
list_reagents = list("nutriment" = 6, "vitamin" = 1)
+ tastes = list("meat" = 1)
/obj/item/weapon/reagent_containers/food/snacks/sausage/New()
..()
@@ -103,26 +113,31 @@
icon_state = "kebab"
w_class = WEIGHT_CLASS_NORMAL
list_reagents = list("nutriment" = 8)
+ tastes = list("meat" = 3, "metal" = 1)
/obj/item/weapon/reagent_containers/food/snacks/kebab/human
name = "human-kebab"
desc = "A human meat, on a stick."
bonus_reagents = list("nutriment" = 1, "vitamin" = 6)
+ tastes = list("tender meat" = 3, "metal" = 1)
/obj/item/weapon/reagent_containers/food/snacks/kebab/monkey
name = "meat-kebab"
desc = "Delicious meat, on a stick."
bonus_reagents = list("nutriment" = 1, "vitamin" = 2)
+ tastes = list("meat" = 3, "metal" = 1)
/obj/item/weapon/reagent_containers/food/snacks/kebab/tofu
name = "tofu-kebab"
desc = "Vegan meat, on a stick."
bonus_reagents = list("nutriment" = 1)
+ tastes = list("tofu" = 3, "metal" = 1)
/obj/item/weapon/reagent_containers/food/snacks/kebab/tail
name = "lizard-tail kebab"
desc = "Severed lizard tail on a stick."
bonus_reagents = list("nutriment" = 1, "vitamin" = 4)
+ tastes = list("meat" = 8, "metal" = 4, "scales" = 1)
/obj/item/weapon/reagent_containers/food/snacks/rawkhinkali
name = "raw khinkali"
@@ -130,6 +145,7 @@
icon_state = "khinkali"
list_reagents = list("nutriment" = 1, "vitamin" = 1)
cooked_type = /obj/item/weapon/reagent_containers/food/snacks/khinkali
+ tastes = list("meat" = 1, "onions" = 1, "garlic" = 1)
/obj/item/weapon/reagent_containers/food/snacks/khinkali
name = "khinkali"
@@ -138,6 +154,7 @@
list_reagents = list("nutriment" = 4, "vitamin" = 2)
bitesize = 3
filling_color = "#F0F0F0"
+ tastes = list("meat" = 1, "onions" = 1, "garlic" = 1)
/obj/item/weapon/reagent_containers/food/snacks/monkeycube
name = "monkey cube"
@@ -146,6 +163,7 @@
bitesize = 12
list_reagents = list("nutriment" = 2)
filling_color = "#CD853F"
+ tastes = list("the jungle" = 1, "bananas" = 1)
/obj/item/weapon/reagent_containers/food/snacks/monkeycube/proc/Expand()
visible_message("[src] expands!")
@@ -160,6 +178,7 @@
bitesize = 4
filling_color = "#FFA07A"
list_reagents = list("nutriment" = 8, "capsaicin" = 6)
+ tastes = list("hot peppers" = 1, "meat" = 3, "cheese" = 1, "sour cream" = 1)
/obj/item/weapon/reagent_containers/food/snacks/stewedsoymeat
name = "stewed soy meat"
@@ -169,6 +188,7 @@
bonus_reagents = list("nutriment" = 1)
list_reagents = list("nutriment" = 8)
filling_color = "#D2691E"
+ tastes = list("soy" = 1, "vegetables" = 1)
/obj/item/weapon/reagent_containers/food/snacks/stewedsoymeat/New()
..()
@@ -182,6 +202,7 @@
bonus_reagents = list("nutriment" = 1, "capsaicin" = 2, "vitamin" = 2)
list_reagents = list("nutriment" = 3, "capsaicin" = 2)
filling_color = "#000000"
+ tastes = list("hot peppers" = 1, "cobwebs" = 1)
/obj/item/weapon/reagent_containers/food/snacks/spidereggsham
name = "green eggs and ham"
@@ -192,6 +213,7 @@
list_reagents = list("nutriment" = 6)
bitesize = 4
filling_color = "#7FFF00"
+ tastes = list("meat" = 1, "the colour green" = 1)
/obj/item/weapon/reagent_containers/food/snacks/sashimi
name = "carp sashimi"
@@ -200,25 +222,17 @@
bonus_reagents = list("nutriment" = 1, "capsaicin" = 4, "vitamin" = 4)
list_reagents = list("nutriment" = 6, "capsaicin" = 5)
filling_color = "#FA8072"
-
-#define LUMP "lump"
-#define STAR "star"
-#define LIZARD "lizard"
-#define CORGI "corgi"
+ tastes = list("fish" = 1, "hot peppers" = 1)
/obj/item/weapon/reagent_containers/food/snacks/nugget
- name = "chicken nugget"
- filling_color = "#B22222"
- bonus_reagents = list("nutriment" = 1, "vitamin" = 1)
- list_reagents = list("nutriment" = 2)
+ name = "chicken nugget"
+ filling_color = "#B22222"
+ bonus_reagents = list("nutriment" = 1, "vitamin" = 1)
+ list_reagents = list("nutriment" = 2)
+ tastes = list("\"chicken\"" = 1)
/obj/item/weapon/reagent_containers/food/snacks/nugget/New()
- ..()
- var/shape = pick(LUMP, STAR, LIZARD, CORGI)
- desc = "A 'chicken' nugget vaguely shaped like a [shape]."
- icon_state = "nugget_[shape]"
-
-#undef LUMP
-#undef STAR
-#undef LIZARD
-#undef CORGI
\ No newline at end of file
+ ..()
+ var/shape = pick("lump", "star", "lizard", "corgi")
+ desc = "A 'chicken' nugget vaguely shaped like a [shape]."
+ icon_state = "nugget_[shape]"
diff --git a/code/modules/food_and_drinks/food/snacks_other.dm b/code/modules/food_and_drinks/food/snacks_other.dm
index 8cf2728a106..4a9001c68f6 100644
--- a/code/modules/food_and_drinks/food/snacks_other.dm
+++ b/code/modules/food_and_drinks/food/snacks_other.dm
@@ -9,6 +9,7 @@
slices_num = 5
list_reagents = list("nutriment" = 15, "vitamin" = 5)
w_class = WEIGHT_CLASS_NORMAL
+ tastes = list("cheese" = 1)
/obj/item/weapon/reagent_containers/food/snacks/cheesewedge
name = "cheese wedge"
@@ -16,12 +17,14 @@
icon_state = "cheesewedge"
filling_color = "#FFD700"
list_reagents = list("nutriment" = 3, "vitamin" = 1)
+ tastes = list("cheese" = 1)
/obj/item/weapon/reagent_containers/food/snacks/watermelonslice
name = "watermelon slice"
desc = "A slice of watery goodness."
icon_state = "watermelonslice"
filling_color = "#FF1493"
+ tastes = list("watermelon" = 1)
/obj/item/weapon/reagent_containers/food/snacks/candy_corn
name = "candy corn"
@@ -29,6 +32,7 @@
icon_state = "candy_corn"
list_reagents = list("nutriment" = 4, "sugar" = 2)
filling_color = "#FF8C00"
+ tastes = list("candy corn" = 1)
/obj/item/weapon/reagent_containers/food/snacks/chocolatebar
name = "chocolate bar"
@@ -36,12 +40,14 @@
icon_state = "chocolatebar"
list_reagents = list("nutriment" = 2, "sugar" = 2, "cocoa" = 2)
filling_color = "#A0522D"
+ tastes = list("chocolate" = 1)
/obj/item/weapon/reagent_containers/food/snacks/hugemushroomslice
name = "huge mushroom slice"
desc = "A slice from a huge mushroom."
icon_state = "hugemushroomslice"
list_reagents = list("nutriment" = 3, "vitamin" = 1)
+ tastes = list("mushroom" = 1)
/obj/item/weapon/reagent_containers/food/snacks/popcorn
name = "popcorn"
@@ -51,6 +57,7 @@
list_reagents = list("nutriment" = 2)
bitesize = 0.1 //this snack is supposed to be eating during looooong time. And this it not dinner food! --rastaf0
filling_color = "#FFEFD5"
+ tastes = list("popcorn" = 3, "butter" = 1)
/obj/item/weapon/reagent_containers/food/snacks/popcorn/New()
..()
@@ -63,6 +70,7 @@
bonus_reagents = list("nutriment" = 1, "vitamin" = 2)
list_reagents = list("nutriment" = 6)
filling_color = "#D2B48C"
+ tastes = list("potato" = 1)
/obj/item/weapon/reagent_containers/food/snacks/fries
name = "space fries"
@@ -71,6 +79,7 @@
trash = /obj/item/trash/plate
list_reagents = list("nutriment" = 4)
filling_color = "#FFD700"
+ tastes = list("fries" = 3, "salt" = 1)
/obj/item/weapon/reagent_containers/food/snacks/tatortot
name = "tator tot"
@@ -78,6 +87,7 @@
icon_state = "tatortot"
list_reagents = list("nutriment" = 4)
filling_color = "FFD700"
+ tastes = list("potato" = 3, "valids" = 1)
/obj/item/weapon/reagent_containers/food/snacks/soydope
name = "soy dope"
@@ -86,6 +96,7 @@
trash = /obj/item/trash/plate
list_reagents = list("nutriment" = 2)
filling_color = "#DEB887"
+ tastes = list("soy" = 1)
/obj/item/weapon/reagent_containers/food/snacks/cheesyfries
name = "cheesy fries"
@@ -95,6 +106,7 @@
bonus_reagents = list("nutriment" = 1, "vitamin" = 2)
list_reagents = list("nutriment" = 6)
filling_color = "#FFD700"
+ tastes = list("fries" = 3, "cheese" = 1)
/obj/item/weapon/reagent_containers/food/snacks/badrecipe
name = "burned mess"
@@ -110,6 +122,7 @@
trash = /obj/item/trash/plate
list_reagents = list("nutriment" = 3, "oculine" = 3, "vitamin" = 2)
filling_color = "#FFA500"
+ tastes = list("carrots" = 3, "salt" = 1)
/obj/item/weapon/reagent_containers/food/snacks/candiedapple
name = "candied apple"
@@ -119,6 +132,7 @@
bonus_reagents = list("nutriment" = 2, "sugar" = 3)
list_reagents = list("nutriment" = 3, "sugar" = 2)
filling_color = "#FF4500"
+ tastes = list("apple" = 2, "sweetness" = 2)
/obj/item/weapon/reagent_containers/food/snacks/mint
name = "mint"
@@ -136,6 +150,7 @@
bonus_reagents = list("nutriment" = 1, "vitamin" = 3)
list_reagents = list("nutriment" = 5)
filling_color = "#F0E68C"
+ tastes = list("egg" = 1)
/obj/item/weapon/reagent_containers/food/snacks/beans
name = "tin of beans"
@@ -144,6 +159,7 @@
bonus_reagents = list("nutriment" = 1, "vitamin" = 1)
list_reagents = list("nutriment" = 10)
filling_color = "#B22222"
+ tastes = list("beans" = 1)
/obj/item/weapon/reagent_containers/food/snacks/spidereggs
name = "spider eggs"
@@ -151,6 +167,7 @@
icon_state = "spidereggs"
list_reagents = list("nutriment" = 2, "toxin" = 2)
filling_color = "#008000"
+ tastes = list("cobwebs" = 1)
/obj/item/weapon/reagent_containers/food/snacks/chococoin
name = "chocolate coin"
@@ -159,6 +176,7 @@
bonus_reagents = list("nutriment" = 1, "sugar" = 1)
list_reagents = list("nutriment" = 3, "cocoa" = 1)
filling_color = "#A0522D"
+ tastes = list("chocolate" = 1)
/obj/item/weapon/reagent_containers/food/snacks/fudgedice
name = "fudge dice"
@@ -168,6 +186,7 @@
list_reagents = list("nutriment" = 3, "cocoa" = 1)
filling_color = "#A0522D"
trash = /obj/item/weapon/dice/fudge
+ tastes = list("fudge" = 1)
/obj/item/weapon/reagent_containers/food/snacks/chocoorange
name = "chocolate orange"
@@ -176,6 +195,7 @@
bonus_reagents = list("nutriment" = 1, "sugar" = 1)
list_reagents = list("nutriment" = 3, "sugar" = 1)
filling_color = "#A0522D"
+ tastes = list("chocolate" = 3, "oranges" = 1)
/obj/item/weapon/reagent_containers/food/snacks/eggplantparm
name = "eggplant parmigiana"
@@ -185,6 +205,7 @@
bonus_reagents = list("nutriment" = 1, "vitamin" = 3)
list_reagents = list("nutriment" = 6, "vitamin" = 2)
filling_color = "#BA55D3"
+ tastes = list("eggplant" = 3, "cheese" = 1)
/obj/item/weapon/reagent_containers/food/snacks/tortilla
name = "tortilla"
@@ -193,6 +214,7 @@
icon_state = "tortilla"
list_reagents = list("nutriment" = 3, "vitamin" = 1)
filling_color = "#FFEFD5"
+ tastes = list("tortilla" = 1)
/obj/item/weapon/reagent_containers/food/snacks/burrito
name = "burrito"
@@ -201,6 +223,7 @@
bonus_reagents = list("nutriment" = 2, "vitamin" = 2)
list_reagents = list("nutriment" = 4, "vitamin" = 1)
filling_color = "#FFEFD5"
+ tastes = list("torilla" = 2, "meat" = 3)
/obj/item/weapon/reagent_containers/food/snacks/cheesyburrito
name = "cheesy burrito"
@@ -209,6 +232,7 @@
bonus_reagents = list("nutriment" = 1, "vitamin" = 2)
list_reagents = list("nutriment" = 4, "vitamin" = 2)
filling_color = "#FFD800"
+ tastes = list("torilla" = 2, "meat" = 3, "cheese" = 1)
/obj/item/weapon/reagent_containers/food/snacks/carneburrito
name = "carne asada burrito"
@@ -217,6 +241,7 @@
bonus_reagents = list("nutriment" = 2, "vitamin" = 1)
list_reagents = list("nutriment" = 5, "vitamin" = 1)
filling_color = "#A0522D"
+ tastes = list("torilla" = 2, "meat" = 4)
/obj/item/weapon/reagent_containers/food/snacks/fuegoburrito
name = "fuego plasma burrito"
@@ -225,6 +250,7 @@
bonus_reagents = list("nutriment" = 2, "vitamin" = 3)
list_reagents = list("nutriment" = 4, "capsaicin" = 5, "vitamin" = 3)
filling_color = "#FF2000"
+ tastes = list("torilla" = 2, "meat" = 3, "hot peppers" = 1)
/obj/item/weapon/reagent_containers/food/snacks/yakiimo
name = "yaki imo"
@@ -233,6 +259,7 @@
trash = /obj/item/trash/plate
list_reagents = list("nutriment" = 5, "vitamin" = 4)
filling_color = "#8B1105"
+ tastes = list("sweet potato" = 1)
/obj/item/weapon/reagent_containers/food/snacks/roastparsnip
name = "roast parsnip"
@@ -241,6 +268,7 @@
trash = /obj/item/trash/plate
list_reagents = list("nutriment" = 3, "vitamin" = 4)
filling_color = "#FF5500"
+ tastes = list("parsnip" = 1)
/obj/item/weapon/reagent_containers/food/snacks/melonfruitbowl
name = "melon fruit bowl"
@@ -250,6 +278,7 @@
list_reagents = list("nutriment" = 6, "vitamin" = 4)
filling_color = "#FF5500"
w_class = WEIGHT_CLASS_NORMAL
+ tastes = list("melon" = 1)
/obj/item/weapon/reagent_containers/food/snacks/spacefreezy
name = "space freezy"
@@ -258,6 +287,7 @@
bonus_reagents = list("nutriment" = 2, "vitamin" = 2)
list_reagents = list("nutriment" = 6, "bluecherryjelly" = 5, "vitamin" = 4)
filling_color = "#87CEFA"
+ tastes = list("blue cherries" = 2, "ice cream" = 2)
/obj/item/weapon/reagent_containers/food/snacks/sundae
name = "sundae"
@@ -266,6 +296,7 @@
bonus_reagents = list("nutriment" = 2, "vitamin" = 1)
list_reagents = list("nutriment" = 6, "banana" = 5, "vitamin" = 2)
filling_color = "#FFFACD"
+ tastes = list("ice cream" = 1, "banana" = 1)
/obj/item/weapon/reagent_containers/food/snacks/honkdae
name = "honkdae"
@@ -274,6 +305,7 @@
bonus_reagents = list("nutriment" = 2, "vitamin" = 2)
list_reagents = list("nutriment" = 6, "banana" = 10, "vitamin" = 4)
filling_color = "#FFFACD"
+ tastes = list("ice cream" = 1, "banana" = 1, "a bad joke" = 1)
/obj/item/weapon/reagent_containers/food/snacks/nachos
name = "nachos"
@@ -282,6 +314,7 @@
bonus_reagents = list("nutriment" = 1, "vitamin" = 1)
list_reagents = list("nutriment" = 6, "vitamin" = 2)
filling_color = "#F4A460"
+ tastes = list("nachos" = 1)
/obj/item/weapon/reagent_containers/food/snacks/cheesynachos
name = "cheesy nachos"
@@ -290,6 +323,7 @@
bonus_reagents = list("nutriment" = 1, "vitamin" = 2)
list_reagents = list("nutriment" = 6, "vitamin" = 3)
filling_color = "#FFD700"
+ tastes = list("nachos" = 2, "cheese" = 1)
/obj/item/weapon/reagent_containers/food/snacks/cubannachos
name = "cuban nachos"
@@ -298,6 +332,7 @@
bonus_reagents = list("nutriment" = 2, "vitamin" = 3)
list_reagents = list("nutriment" = 7, "capsaicin" = 8, "vitamin" = 4)
filling_color = "#DC143C"
+ tastes = list("nachos" = 2, "hot pepper" = 1)
/obj/item/weapon/reagent_containers/food/snacks/melonkeg
name = "melon keg"
@@ -308,6 +343,7 @@
filling_color = "#FFD700"
volume = 80
bitesize = 5
+ tastes = list("grain alcohol" = 1, "fruit" = 1)
/obj/item/weapon/reagent_containers/food/snacks/honeybar
name = "honey nut bar"
@@ -316,6 +352,7 @@
bonus_reagents = list("nutriment" = 2, "honey" = 2, "vitamin" = 2)
list_reagents = list("nutriment" = 5, "honey" = 5)
filling_color = "#F2CE91"
+ tastes = list("oats" = 3, "nuts" = 2, "honey" = 1)
/obj/item/weapon/reagent_containers/food/snacks/stuffedlegion
name = "stuffed legion"
@@ -323,6 +360,7 @@
icon_state = "stuffed_legion"
bonus_reagents = list("vitamin" = 3, "capsaicin" = 1, "tricordrazine" = 5)
list_reagents = list("nutriment" = 5, "vitamin" = 5, "capsaicin" = 2, "tricordrazine" = 10)
+ tastes = list("death" = 2, "rock" = 1, "meat" = 1, "hot peppers" = 1)
/obj/item/weapon/reagent_containers/food/snacks/powercrepe
@@ -337,6 +375,7 @@
armour_penetration = 75
attack_verb = list("slapped", "slathered")
w_class = WEIGHT_CLASS_BULKY
+ tastes = list("cherry" = 1, "crepe" = 1)
/obj/item/weapon/reagent_containers/food/snacks/lollipop
name = "lollipop"
@@ -346,6 +385,7 @@
list_reagents = list("nutriment" = 1, "vitamin" = 1, "iron" = 10, "sugar" = 5, "omnizine" = 2) //Honk
var/image/head
var/headcolor = rgb(0, 0, 0)
+ tastes = list("candy" = 1)
/obj/item/weapon/reagent_containers/food/snacks/lollipop/New()
..()
@@ -354,8 +394,7 @@
/obj/item/weapon/reagent_containers/food/snacks/lollipop/proc/change_head_color(C)
headcolor = C
- if(head in overlays)
- overlays -= head
+ cut_overlay(head)
head.color = C
add_overlay(head)
@@ -385,6 +424,7 @@
icon = 'icons/obj/lollipop.dmi'
icon_state = "gumball"
list_reagents = list("sugar" = 5, "bicaridine" = 2, "kelotane" = 2) //Kek
+ tastes = list("candy")
/obj/item/weapon/reagent_containers/food/snacks/gumball/New()
..()
@@ -412,9 +452,19 @@
bonus_reagents = list("nutriment" = 3, "vitamin" = 2)
list_reagents = list("nutriment" = 4, "vitamin" = 2)
filling_color = "F0D830"
+ tastes = list("taco" = 4, "meat" = 2, "cheese" = 2, "lettuce" = 1)
/obj/item/weapon/reagent_containers/food/snacks/taco/plain
desc = "A traditional taco with meat and cheese, minus the rabbit food."
icon_state = "taco_plain"
bonus_reagents = list("nutriment" = 2, "vitamin" = 2)
list_reagents = list("nutriment" = 3, "vitamin" = 1)
+ tastes = list("taco" = 4, "meat" = 2, "cheese" = 2)
+
+/obj/item/weapon/reagent_containers/food/snacks/branrequests
+ name = "Bran Requests Cereal"
+ desc = "A dry cereal that satiates your requests for bran. Tastes uniquely like raisins and salt."
+ icon_state = "bran_requests"
+ list_reagents = list("nutriment" = 3, "vitamin" = 2, "sodiumchloride" = 5)
+ bonus_reagents = list("sodiumchloride" = 10)
+ tastes = list("bran" = 4, "raisins" = 3, "salt" = 1)
diff --git a/code/modules/food_and_drinks/food/snacks_pastry.dm b/code/modules/food_and_drinks/food/snacks_pastry.dm
index 58c69868080..76ef327bb6e 100644
--- a/code/modules/food_and_drinks/food/snacks_pastry.dm
+++ b/code/modules/food_and_drinks/food/snacks_pastry.dm
@@ -11,6 +11,7 @@
list_reagents = list("nutriment" = 3, "sugar" = 2)
var/extra_reagent = null
filling_color = "#D2691E"
+ tastes = list("donut" = 1)
/obj/item/weapon/reagent_containers/food/snacks/donut/New()
..()
@@ -25,6 +26,7 @@
name = "chaos donut"
desc = "Like life, it never quite tastes the same."
bitesize = 10
+ tastes = list("donut" = 3, "chaos" = 1)
/obj/item/weapon/reagent_containers/food/snacks/donut/chaos/New()
..()
@@ -44,6 +46,7 @@
icon_state = "jdonut1"
bonus_reagents = list("sugar" = 1, "vitamin" = 1)
extra_reagent = "berryjuice"
+ tastes = list("jelly" = 1, "donut" = 3)
/obj/item/weapon/reagent_containers/food/snacks/donut/jelly/New()
..()
@@ -77,17 +80,20 @@
bonus_reagents = list("vitamin" = 1)
list_reagents = list("nutriment" = 6)
filling_color = "#F4A460"
+ tastes = list("muffin" = 1)
/obj/item/weapon/reagent_containers/food/snacks/muffin/berry
name = "berry muffin"
icon_state = "berrymuffin"
desc = "A delicious and spongy little cake, with berries."
+ tastes = list("muffin" = 3, "berry" = 1)
/obj/item/weapon/reagent_containers/food/snacks/muffin/booberry
name = "booberry muffin"
icon_state = "berrymuffin"
alpha = 125
desc = "My stomach is a graveyard! No living being can quench my bloodthirst!"
+ tastes = list("muffin" = 3, "spookiness" = 1)
/obj/item/weapon/reagent_containers/food/snacks/chawanmushi
name = "chawanmushi"
@@ -96,6 +102,7 @@
bonus_reagents = list("vitamin" = 1)
list_reagents = list("nutriment" = 5)
filling_color = "#FFE4E1"
+ tastes = list("custard" = 1)
////////////////////////////////////////////WAFFLES////////////////////////////////////////////
@@ -107,6 +114,7 @@
bonus_reagents = list("vitamin" = 1)
list_reagents = list("nutriment" = 8, "vitamin" = 1)
filling_color = "#D2691E"
+ tastes = list("waffles" = 1)
/obj/item/weapon/reagent_containers/food/snacks/soylentgreen
name = "\improper Soylent Green"
@@ -116,6 +124,7 @@
bonus_reagents = list("vitamin" = 1)
list_reagents = list("nutriment" = 10, "vitamin" = 1)
filling_color = "#9ACD32"
+ tastes = list("waffles" = 7, "people" = 1)
/obj/item/weapon/reagent_containers/food/snacks/soylenviridians
name = "\improper Soylent Virdians"
@@ -125,6 +134,7 @@
bonus_reagents = list("vitamin" = 1)
list_reagents = list("nutriment" = 10, "vitamin" = 1)
filling_color = "#9ACD32"
+ tastes = list("waffles" = 7, "the colour green" = 1)
/obj/item/weapon/reagent_containers/food/snacks/rofflewaffles
name = "roffle waffles"
@@ -135,6 +145,7 @@
bonus_reagents = list("vitamin" = 2)
list_reagents = list("nutriment" = 8, "mushroomhallucinogen" = 2, "vitamin" = 2)
filling_color = "#00BFFF"
+ tastes = list("waffle" = 1, "mushrooms" = 1)
////////////////////////////////////////////OTHER////////////////////////////////////////////
@@ -146,6 +157,7 @@
bonus_reagents = list("nutriment" = 1)
list_reagents = list("nutriment" = 1)
filling_color = "#F0E68C"
+ tastes = list("cookie" = 1)
/obj/item/weapon/reagent_containers/food/snacks/donkpocket
name = "\improper Donk-pocket"
@@ -154,12 +166,14 @@
list_reagents = list("nutriment" = 4)
cooked_type = /obj/item/weapon/reagent_containers/food/snacks/donkpocket/warm
filling_color = "#CD853F"
+ tastes = list("meat" = 2, "dough" = 2, "laziness" = 1)
/obj/item/weapon/reagent_containers/food/snacks/donkpocket/warm
name = "warm Donk-pocket"
desc = "The heated food of choice for the seasoned traitor."
bonus_reagents = list("omnizine" = 3)
list_reagents = list("nutriment" = 4, "omnizine" = 3)
+ tastes = list("meat" = 2, "dough" = 2, "laziness" = 1)
/obj/item/weapon/reagent_containers/food/snacks/dankpocket
name = "\improper Dank-pocket"
@@ -167,6 +181,7 @@
icon_state = "dankpocket"
list_reagents = list("lipolicide" = 3, "space_drugs" = 3, "nutriment" = 4)
filling_color = "#00FF00"
+ tastes = list("meat" = 2, "dough" = 2)
/obj/item/weapon/reagent_containers/food/snacks/fortunecookie
name = "fortune cookie"
@@ -175,6 +190,7 @@
bonus_reagents = list("nutriment" = 2)
list_reagents = list("nutriment" = 3)
filling_color = "#F4A460"
+ tastes = list("cookie" = 1)
/obj/item/weapon/reagent_containers/food/snacks/poppypretzel
name = "poppy pretzel"
@@ -183,6 +199,7 @@
bonus_reagents = list("nutriment" = 1, "vitamin" = 2)
list_reagents = list("nutriment" = 5)
filling_color = "#F0E68C"
+ tastes = list("pretzel" = 1)
/obj/item/weapon/reagent_containers/food/snacks/plumphelmetbiscuit
name = "plump helmet biscuit"
@@ -191,14 +208,17 @@
bonus_reagents = list("nutriment" = 1, "vitamin" = 1)
list_reagents = list("nutriment" = 5)
filling_color = "#F0E68C"
+ tastes = list("mushroom" = 1, "biscuit" = 1)
/obj/item/weapon/reagent_containers/food/snacks/plumphelmetbiscuit/New()
- ..()
- if(prob(10))
+ var/fey = prob(10)
+ if(fey)
name = "exceptional plump helmet biscuit"
desc = "Microwave is taken by a fey mood! It has cooked an exceptional plump helmet biscuit!"
- reagents.add_reagent("omnizine", 5)
bonus_reagents = list("omnizine" = 5, "nutriment" = 1, "vitamin" = 1)
+ ..()
+ if(fey)
+ reagents.add_reagent("omnizine", 5)
/obj/item/weapon/reagent_containers/food/snacks/cracker
name = "cracker"
@@ -208,6 +228,7 @@
bonus_reagents = list("nutriment" = 1)
list_reagents = list("nutriment" = 1)
filling_color = "#F0E68C"
+ tastes = list("cracker" = 1)
/obj/item/weapon/reagent_containers/food/snacks/hotdog
name = "hotdog"
@@ -217,6 +238,7 @@
bonus_reagents = list("nutriment" = 1, "vitamin" = 3)
list_reagents = list("nutriment" = 6, "ketchup" = 3, "vitamin" = 3)
filling_color = "#8B0000"
+ tastes = list("bun" = 3, "meat" = 2)
/obj/item/weapon/reagent_containers/food/snacks/meatbun
name = "meat bun"
@@ -225,6 +247,7 @@
bonus_reagents = list("nutriment" = 1, "vitamin" = 2)
list_reagents = list("nutriment" = 6, "vitamin" = 2)
filling_color = "#8B0000"
+ tastes = list("bun" = 3, "meat" = 2)
/obj/item/weapon/reagent_containers/food/snacks/khachapuri
name = "khachapuri"
@@ -232,6 +255,7 @@
icon_state = "khachapuri"
list_reagents = list("nutriment" = 12, "vitamin" = 2)
filling_color = "#FFFF4D"
+ tastes = list("bread" = 1, "egg" = 1, "cheese" = 1)
/obj/item/weapon/reagent_containers/food/snacks/sugarcookie
@@ -241,6 +265,7 @@
bonus_reagents = list("nutriment" = 1, "sugar" = 3)
list_reagents = list("nutriment" = 3, "sugar" = 3)
filling_color = "#CD853F"
+ tastes = list("sweetness" = 1)
/obj/item/weapon/reagent_containers/food/snacks/chococornet
name = "chocolate cornet"
@@ -249,6 +274,7 @@
bonus_reagents = list("nutriment" = 1, "vitamin" = 1)
list_reagents = list("nutriment" = 5, "vitamin" = 1)
filling_color = "#FFE4C4"
+ tastes = list("biscuit" = 3, "chocolate" = 1)
/obj/item/weapon/reagent_containers/food/snacks/oatmealcookie
name = "oatmeal cookie"
@@ -257,6 +283,7 @@
bonus_reagents = list("nutriment" = 1, "vitamin" = 1)
list_reagents = list("nutriment" = 5, "vitamin" = 1)
filling_color = "#D2691E"
+ tastes = list("cookie" = 2, "oat" = 1)
/obj/item/weapon/reagent_containers/food/snacks/raisincookie
name = "raisin cookie"
@@ -265,6 +292,7 @@
bonus_reagents = list("nutriment" = 1, "vitamin" = 1)
list_reagents = list("nutriment" = 5, "vitamin" = 1)
filling_color = "#F0E68C"
+ tastes = list("cookie" = 1, "raisins" = 1)
/obj/item/weapon/reagent_containers/food/snacks/cherrycupcake
name = "cherry cupcake"
@@ -273,6 +301,7 @@
bonus_reagents = list("nutriment" = 1, "vitamin" = 1)
list_reagents = list("nutriment" = 5, "vitamin" = 1)
filling_color = "#F0E68C"
+ tastes = list("cake" = 3, "cherry" = 1)
/obj/item/weapon/reagent_containers/food/snacks/bluecherrycupcake
name = "blue cherry cupcake"
@@ -281,6 +310,7 @@
bonus_reagents = list("nutriment" = 1, "vitamin" = 3)
list_reagents = list("nutriment" = 5, "vitamin" = 1)
filling_color = "#F0E68C"
+ tastes = list("cake" = 3, "blue cherry" = 1)
/obj/item/weapon/reagent_containers/food/snacks/honeybun
name = "honey bun"
@@ -288,4 +318,5 @@
icon_state = "honeybun"
bonus_reagents = list("nutriment" = 1, "honey" = 1)
list_reagents = list("nutriment" = 5, "honey" = 5)
- filling_color = "#F2CE91"
\ No newline at end of file
+ filling_color = "#F2CE91"
+ tastes = list("pastry" = 1, "sweetness" = 1)
diff --git a/code/modules/food_and_drinks/food/snacks_pie.dm b/code/modules/food_and_drinks/food/snacks_pie.dm
index 2626c3b679d..68ccce9f2f4 100644
--- a/code/modules/food_and_drinks/food/snacks_pie.dm
+++ b/code/modules/food_and_drinks/food/snacks_pie.dm
@@ -6,6 +6,7 @@
w_class = WEIGHT_CLASS_NORMAL
volume = 80
list_reagents = list("nutriment" = 10, "vitamin" = 2)
+ tastes = list("pie" = 1)
/obj/item/weapon/reagent_containers/food/snacks/pie/plain
name = "plain pie"
@@ -13,6 +14,7 @@
icon_state = "pie"
custom_food_type = /obj/item/weapon/reagent_containers/food/snacks/customizable/pie
bonus_reagents = list("nutriment" = 8, "vitamin" = 1)
+ tastes = list("pie" = 1)
/obj/item/weapon/reagent_containers/food/snacks/pie/cream
name = "banana cream pie"
@@ -21,6 +23,7 @@
trash = /obj/item/trash/plate
bonus_reagents = list("nutriment" = 2, "vitamin" = 2)
list_reagents = list("nutriment" = 6, "banana" = 5, "vitamin" = 2)
+ tastes = list("pie" = 1)
/obj/item/weapon/reagent_containers/food/snacks/pie/cream/throw_impact(atom/hit_atom)
if(!..()) //was it caught by a mob?
@@ -49,6 +52,7 @@
icon_state = "berryclafoutis"
bonus_reagents = list("nutriment" = 1, "vitamin" = 2)
list_reagents = list("nutriment" = 10, "berryjuice" = 5, "vitamin" = 2)
+ tastes = list("pie" = 1, "blackberries" = 1)
/obj/item/weapon/reagent_containers/food/snacks/pie/bearypie
name = "beary pie"
@@ -56,12 +60,14 @@
icon_state = "bearypie"
bonus_reagents = list("nutriment" = 2, "vitamin" = 3)
list_reagents = list("nutriment" = 2, "vitamin" = 3)
+ tastes = list("pie" = 1, "meat" = 1, "salmon" = 1)
/obj/item/weapon/reagent_containers/food/snacks/pie/meatpie
name = "meat-pie"
icon_state = "meatpie"
desc = "An old barber recipe, very delicious!"
bonus_reagents = list("nutriment" = 1, "vitamin" = 5)
+ tastes = list("pie" = 1, "meat" = 1)
/obj/item/weapon/reagent_containers/food/snacks/pie/tofupie
@@ -69,6 +75,7 @@
icon_state = "meatpie"
desc = "A delicious tofu pie."
bonus_reagents = list("nutriment" = 1, "vitamin" = 2)
+ tastes = list("pie" = 1, "tofu" = 1)
/obj/item/weapon/reagent_containers/food/snacks/pie/amanita_pie
@@ -78,6 +85,7 @@
bitesize = 4
bonus_reagents = list("nutriment" = 1, "vitamin" = 4)
list_reagents = list("nutriment" = 6, "amatoxin" = 3, "mushroomhallucinogen" = 1, "vitamin" = 4)
+ tastes = list("pie" = 1, "mushroom" = 1)
/obj/item/weapon/reagent_containers/food/snacks/pie/plump_pie
@@ -85,14 +93,18 @@
desc = "I bet you love stuff made out of plump helmets!"
icon_state = "plump_pie"
bonus_reagents = list("nutriment" = 1, "vitamin" = 4)
+ tastes = list("pie" = 1, "mushroom" = 1)
+
/obj/item/weapon/reagent_containers/food/snacks/pie/plump_pie/New()
- ..()
- if(prob(10))
+ var/fey = prob(10)
+ if(fey)
name = "exceptional plump pie"
desc = "Microwave is taken by a fey mood! It has cooked an exceptional plump pie!"
- reagents.add_reagent("omnizine", 5)
bonus_reagents = list("nutriment" = 1, "omnizine" = 5, "vitamin" = 4)
+ ..()
+ if(fey)
+ reagents.add_reagent("omnizine", 5)
/obj/item/weapon/reagent_containers/food/snacks/pie/xemeatpie
@@ -101,6 +113,7 @@
desc = "A delicious meatpie. Probably heretical."
trash = /obj/item/trash/plate
bonus_reagents = list("nutriment" = 1, "vitamin" = 5)
+ tastes = list("pie" = 1, "meat" = 1, "acid" = 1)
/obj/item/weapon/reagent_containers/food/snacks/pie/applepie
@@ -108,6 +121,7 @@
desc = "A pie containing sweet sweet love...or apple."
icon_state = "applepie"
bonus_reagents = list("nutriment" = 1, "vitamin" = 3)
+ tastes = list("pie" = 1, "apple" = 1)
@@ -116,6 +130,7 @@
desc = "Taste so good, make a grown man cry."
icon_state = "cherrypie"
bonus_reagents = list("nutriment" = 1, "vitamin" = 2)
+ tastes = list("pie" = 7, "Nicole Paige Brooks" = 2)
/obj/item/weapon/reagent_containers/food/snacks/pie/pumpkinpie
@@ -125,6 +140,7 @@
slice_path = /obj/item/weapon/reagent_containers/food/snacks/pumpkinpieslice
slices_num = 5
bonus_reagents = list("nutriment" = 1, "vitamin" = 5)
+ tastes = list("pie" = 1, "pumpkin" = 1)
/obj/item/weapon/reagent_containers/food/snacks/pumpkinpieslice
name = "pumpkin pie slice"
@@ -134,6 +150,7 @@
trash = /obj/item/trash/plate
filling_color = "#FFA500"
list_reagents = list("nutriment" = 2)
+ tastes = list("pie" = 1, "pumpkin" = 1)
/obj/item/weapon/reagent_containers/food/snacks/pie/appletart
name = "golden apple streusel tart"
@@ -141,6 +158,7 @@
icon_state = "gappletart"
bonus_reagents = list("nutriment" = 1, "vitamin" = 4)
list_reagents = list("nutriment" = 8, "gold" = 5, "vitamin" = 4)
+ tastes = list("pie" = 1, "apple" = 1, "expensive metal" = 1)
/obj/item/weapon/reagent_containers/food/snacks/pie/grapetart
name = "grape tart"
@@ -148,6 +166,7 @@
icon_state = "grapetart"
bonus_reagents = list("nutriment" = 1, "vitamin" = 4)
list_reagents = list("nutriment" = 4, "vitamin" = 4)
+ tastes = list("pie" = 1, "grape" = 1)
/obj/item/weapon/reagent_containers/food/snacks/pie/blumpkinpie
name = "blumpkin pie"
@@ -156,6 +175,7 @@
slice_path = /obj/item/weapon/reagent_containers/food/snacks/blumpkinpieslice
slices_num = 5
bonus_reagents = list("nutriment" = 3, "vitamin" = 6)
+ tastes = list("pie" = 1, "a mouthful of pool water" = 1)
/obj/item/weapon/reagent_containers/food/snacks/blumpkinpieslice
name = "blumpkin pie slice"
@@ -165,6 +185,7 @@
trash = /obj/item/trash/plate
filling_color = "#1E90FF"
list_reagents = list("nutriment" = 2)
+ tastes = list("pie" = 1, "a mouthful of pool water" = 1)
/obj/item/weapon/reagent_containers/food/snacks/pie/dulcedebatata
name = "dulce de batata"
@@ -173,6 +194,7 @@
slice_path = /obj/item/weapon/reagent_containers/food/snacks/dulcedebatataslice
slices_num = 5
bonus_reagents = list("nutriment" = 4, "vitamin" = 8)
+ tastes = list("jelly" = 1, "sweet potato" = 1)
/obj/item/weapon/reagent_containers/food/snacks/dulcedebatataslice
name = "dulce de batata slice"
@@ -182,9 +204,11 @@
trash = /obj/item/trash/plate
filling_color = "#8B4513"
list_reagents = list("nutriment" = 2)
+ tastes = list("jelly" = 1, "sweet potato" = 1)
/obj/item/weapon/reagent_containers/food/snacks/pie/frostypie
name = "frosty pie"
desc = "Tastes like blue and cold."
icon_state = "frostypie"
bonus_reagents = list("nutriment" = 4, "vitamin" = 6)
+ tastes = list("mint" = 1, "pie" = 1)
diff --git a/code/modules/food_and_drinks/food/snacks_pizza.dm b/code/modules/food_and_drinks/food/snacks_pizza.dm
index b701fb1916f..ab476c10441 100644
--- a/code/modules/food_and_drinks/food/snacks_pizza.dm
+++ b/code/modules/food_and_drinks/food/snacks_pizza.dm
@@ -7,6 +7,7 @@
slices_num = 6
volume = 80
list_reagents = list("nutriment" = 30, "tomatojuice" = 6, "vitamin" = 5)
+ tastes = list("crust" = 1, "tomato" = 1, "cheese" = 1)
/obj/item/weapon/reagent_containers/food/snacks/pizzaslice
icon = 'icons/obj/food/pizzaspaghetti.dmi'
@@ -18,12 +19,14 @@
icon_state = "pizzamargherita"
slice_path = /obj/item/weapon/reagent_containers/food/snacks/pizzaslice/margherita
bonus_reagents = list("nutriment" = 5, "vitamin" = 5)
+ tastes = list("crust" = 1, "tomato" = 1, "cheese" = 1)
/obj/item/weapon/reagent_containers/food/snacks/pizzaslice/margherita
name = "margherita slice"
desc = "A slice of the most cheezy pizza in galaxy."
icon_state = "pizzamargheritaslice"
filling_color = "#FFA500"
+ tastes = list("crust" = 1, "tomato" = 1, "cheese" = 1)
/obj/item/weapon/reagent_containers/food/snacks/pizza/meat
name = "meatpizza"
@@ -32,12 +35,14 @@
slice_path = /obj/item/weapon/reagent_containers/food/snacks/pizzaslice/meat
bonus_reagents = list("nutriment" = 5, "vitamin" = 8)
list_reagents = list("nutriment" = 30, "tomatojuice" = 6, "vitamin" = 8)
+ tastes = list("crust" = 1, "tomato" = 1, "cheese" = 1, "meat" = 1)
/obj/item/weapon/reagent_containers/food/snacks/pizzaslice/meat
name = "meatpizza slice"
desc = "A nutritious slice of meatpizza."
icon_state = "meatpizzaslice"
filling_color = "#A52A2A"
+ tastes = list("crust" = 1, "tomato" = 1, "cheese" = 1, "meat" = 1)
/obj/item/weapon/reagent_containers/food/snacks/pizza/mushroom
name = "mushroom pizza"
@@ -46,12 +51,14 @@
slice_path = /obj/item/weapon/reagent_containers/food/snacks/pizzaslice/mushroom
bonus_reagents = list("nutriment" = 5, "vitamin" = 5)
list_reagents = list("nutriment" = 30, "vitamin" = 5)
+ tastes = list("crust" = 1, "tomato" = 1, "cheese" = 1, "mushroom" = 1)
/obj/item/weapon/reagent_containers/food/snacks/pizzaslice/mushroom
name = "mushroom pizza slice"
desc = "Maybe it is the last slice of pizza in your life."
icon_state = "mushroompizzaslice"
filling_color = "#FFE4C4"
+ tastes = list("crust" = 1, "tomato" = 1, "cheese" = 1, "mushroom" = 1)
/obj/item/weapon/reagent_containers/food/snacks/pizza/vegetable
name = "vegetable pizza"
@@ -60,12 +67,14 @@
slice_path = /obj/item/weapon/reagent_containers/food/snacks/pizzaslice/vegetable
bonus_reagents = list("nutriment" = 5, "vitamin" = 5)
list_reagents = list("nutriment" = 25, "tomatojuice" = 6, "oculine" = 12, "vitamin" = 5)
+ tastes = list("crust" = 1, "tomato" = 2, "cheese" = 1, "carrot" = 1)
/obj/item/weapon/reagent_containers/food/snacks/pizzaslice/vegetable
name = "vegetable pizza slice"
desc = "A slice of the most green pizza of all pizzas not containing green ingredients."
icon_state = "vegetablepizzaslice"
filling_color = "#FFA500"
+ tastes = list("crust" = 1, "tomato" = 2, "cheese" = 1, "carrot" = 1)
/obj/item/weapon/reagent_containers/food/snacks/pizza/donkpocket
name = "donkpocket pizza"
@@ -74,12 +83,14 @@
slice_path = /obj/item/weapon/reagent_containers/food/snacks/pizzaslice/donkpocket
bonus_reagents = list("nutriment" = 5, "vitamin" = 5)
list_reagents = list("nutriment" = 25, "tomatojuice" = 6, "omnizine" = 10, "vitamin" = 5)
+ tastes = list("crust" = 1, "tomato" = 1, "cheese" = 1, "meat" = 1, "laziness" = 1)
/obj/item/weapon/reagent_containers/food/snacks/pizzaslice/donkpocket
name = "donkpocket pizza slice"
desc = "Smells like donkpocket."
icon_state = "donkpocketpizzaslice"
filling_color = "#FFA500"
+ tastes = list("crust" = 1, "tomato" = 1, "cheese" = 1, "meat" = 1, "laziness" = 1)
/obj/item/weapon/reagent_containers/food/snacks/pizza/dank
name = "dank pizza"
@@ -88,12 +99,14 @@
slice_path = /obj/item/weapon/reagent_containers/food/snacks/pizzaslice/dank
bonus_reagents = list("nutriment" = 2, "vitamin" = 6)
list_reagents = list("nutriment" = 25, "doctorsdelight" = 5, "tomatojuice" = 6, "vitamin" = 5)
+ tastes = list("crust" = 1, "tomato" = 1, "cheese" = 1, "meat" = 1)
/obj/item/weapon/reagent_containers/food/snacks/pizzaslice/dank
name = "dank pizza slice"
desc = "So good, man..."
icon_state = "dankpizzaslice"
filling_color = "#2E8B57"
+ tastes = list("crust" = 1, "tomato" = 1, "cheese" = 1, "meat" = 1)
/obj/item/weapon/reagent_containers/food/snacks/pizza/sassysage
name = "sassysage pizza"
@@ -101,12 +114,14 @@
icon_state = "sassysagepizza"
slice_path = /obj/item/weapon/reagent_containers/food/snacks/pizzaslice/sassysage
bonus_reagents = list("nutriment" = 6, "vitamin" = 6)
+ tastes = list("crust" = 1, "tomato" = 1, "cheese" = 1, "meat" = 1)
/obj/item/weapon/reagent_containers/food/snacks/pizzaslice/sassysage
name = "sassysage pizza slice"
desc = "Deliciously sassy."
icon_state = "sassysagepizzaslice"
filling_color = "#FF4500"
+ tastes = list("crust" = 1, "tomato" = 1, "cheese" = 1, "meat" = 1)
/obj/item/weapon/reagent_containers/food/snacks/pizzaslice/custom
name = "pizza slice"
diff --git a/code/modules/food_and_drinks/food/snacks_salad.dm b/code/modules/food_and_drinks/food/snacks_salad.dm
index 5b0192d541c..f167452ef0a 100644
--- a/code/modules/food_and_drinks/food/snacks_salad.dm
+++ b/code/modules/food_and_drinks/food/snacks_salad.dm
@@ -6,6 +6,7 @@
bitesize = 3
w_class = WEIGHT_CLASS_NORMAL
list_reagents = list("nutriment" = 7, "vitamin" = 2)
+ tastes = list("leaves" = 1)
/obj/item/weapon/reagent_containers/food/snacks/salad/New()
..()
@@ -17,6 +18,7 @@
icon_state = "aesirsalad"
bonus_reagents = list("omnizine" = 2, "vitamin" = 6)
list_reagents = list("nutriment" = 8, "omnizine" = 8, "vitamin" = 6)
+ tastes = list("leaves" = 1)
/obj/item/weapon/reagent_containers/food/snacks/salad/herbsalad
name = "herb salad"
@@ -24,6 +26,7 @@
icon_state = "herbsalad"
bonus_reagents = list("vitamin" = 4)
list_reagents = list("nutriment" = 8, "vitamin" = 2)
+ tastes = list("leaves" = 1, "apple" = 1)
/obj/item/weapon/reagent_containers/food/snacks/salad/validsalad
name = "valid salad"
@@ -31,6 +34,7 @@
icon_state = "validsalad"
bonus_reagents = list("doctorsdelight" = 5, "vitamin" = 4)
list_reagents = list("nutriment" = 8, "doctorsdelight" = 5, "vitamin" = 2)
+ tastes = list("leaves" = 1, "potato" = 1, "meat" = 1, "valids" = 1)
/obj/item/weapon/reagent_containers/food/snacks/salad/oatmeal
name = "oatmeal"
@@ -38,12 +42,14 @@
icon_state = "oatmeal"
bonus_reagents = list("nutriment" = 4, "vitamin" = 4)
list_reagents = list("nutriment" = 7, "milk" = 10, "vitamin" = 2)
+ tastes = list("oats" = 1, "milk" = 1)
/obj/item/weapon/reagent_containers/food/snacks/salad/fruit
name = "fruit salad"
desc = "Your standard fruit salad."
icon_state = "fruitsalad"
bonus_reagents = list("nutriment" = 2, "vitamin" = 4)
+ tastes = list("fruit" = 1)
/obj/item/weapon/reagent_containers/food/snacks/salad/jungle
name = "jungle salad"
@@ -51,6 +57,7 @@
icon_state = "junglesalad"
bonus_reagents = list("nutriment" = 4, "vitamin" = 4)
list_reagents = list("nutriment" = 7, "banana" = 5, "vitamin" = 4)
+ tastes = list("fruit" = 1, "the jungle" = 1)
/obj/item/weapon/reagent_containers/food/snacks/salad/citrusdelight
name = "citrus delight"
@@ -58,6 +65,7 @@
icon_state = "citrusdelight"
bonus_reagents = list("nutriment" = 4, "vitamin" = 4)
list_reagents = list("nutriment" = 7, "vitamin" = 5)
+ tastes = list("sourness" = 1, "leaves" = 1)
/obj/item/weapon/reagent_containers/food/snacks/salad/ricebowl
name = "ricebowl"
@@ -65,6 +73,7 @@
icon_state = "ricebowl"
cooked_type = /obj/item/weapon/reagent_containers/food/snacks/salad/boiledrice
list_reagents = list("nutriment" = 4)
+ tastes = list("rice" = 1)
/obj/item/weapon/reagent_containers/food/snacks/salad/boiledrice
name = "boiled rice"
@@ -72,21 +81,25 @@
icon_state = "boiledrice"
bonus_reagents = list("nutriment" = 1, "vitamin" = 1)
list_reagents = list("nutriment" = 5, "vitamin" = 1)
+ tastes = list("rice" = 1)
/obj/item/weapon/reagent_containers/food/snacks/salad/ricepudding
name = "rice pudding"
desc = "Everybody loves rice pudding!"
icon_state = "ricepudding"
bonus_reagents = list("nutriment" = 4, "vitamin" = 2)
+ tastes = list("rice" = 1, "sweetness" = 1)
/obj/item/weapon/reagent_containers/food/snacks/salad/ricepork
name = "rice and pork"
desc = "Well, it looks like pork..."
icon_state = "riceporkbowl"
bonus_reagents = list("nutriment" = 4, "vitamin" = 4)
+ tastes = list("rice" = 1, "meat" = 1)
/obj/item/weapon/reagent_containers/food/snacks/salad/eggbowl
name = "egg bowl"
desc = "A bowl of rice with a fried egg."
icon_state = "eggbowl"
bonus_reagents = list("nutriment" = 4, "vitamin" = 4)
+ tastes = list("rice" = 1, "egg" = 1)
diff --git a/code/modules/food_and_drinks/food/snacks_sandwichtoast.dm b/code/modules/food_and_drinks/food/snacks_sandwichtoast.dm
index 0bbd127c103..9618ad28754 100644
--- a/code/modules/food_and_drinks/food/snacks_sandwichtoast.dm
+++ b/code/modules/food_and_drinks/food/snacks_sandwichtoast.dm
@@ -1,4 +1,3 @@
-
/obj/item/weapon/reagent_containers/food/snacks/sandwich
name = "sandwich"
desc = "A grand creation of meat, cheese, bread, and several leaves of lettuce! Arthur Dent would be proud."
@@ -8,6 +7,7 @@
bonus_reagents = list("nutriment" = 1, "vitamin" = 1)
list_reagents = list("nutriment" = 6, "vitamin" = 1)
cooked_type = /obj/item/weapon/reagent_containers/food/snacks/toastedsandwich
+ tastes = list("meat" = 2, "cheese" = 1, "bread" = 2, "lettuce" = 1)
/obj/item/weapon/reagent_containers/food/snacks/toastedsandwich
name = "toasted sandwich"
@@ -17,6 +17,7 @@
trash = /obj/item/trash/plate
bonus_reagents = list("nutriment" = 1, "carbon" = 2)
list_reagents = list("nutriment" = 6, "carbon" = 2)
+ tastes = list("toast" = 1)
/obj/item/weapon/reagent_containers/food/snacks/grilledcheese
name = "grilled cheese sandwich"
@@ -26,6 +27,7 @@
trash = /obj/item/trash/plate
bonus_reagents = list("nutriment" = 1, "vitamin" = 1)
list_reagents = list("nutriment" = 7, "vitamin" = 1)
+ tastes = list("toast" = 1, "cheese" = 1)
/obj/item/weapon/reagent_containers/food/snacks/jellysandwich
name = "jelly sandwich"
@@ -34,6 +36,7 @@
icon_state = "jellysandwich"
trash = /obj/item/trash/plate
bitesize = 3
+ tastes = list("bread" = 1, "jelly" = 1)
/obj/item/weapon/reagent_containers/food/snacks/jellysandwich/slime
bonus_reagents = list("slimejelly" = 5, "vitamin" = 2)
@@ -50,6 +53,7 @@
icon_state = "icecreamsandwich"
bonus_reagents = list("nutriment" = 1, "ice" = 2)
list_reagents = list("nutriment" = 2, "ice" = 2)
+ tastes = list("ice cream" = 1)
/obj/item/weapon/reagent_containers/food/snacks/notasandwich
name = "not-a-sandwich"
@@ -59,14 +63,16 @@
trash = /obj/item/trash/plate
bonus_reagents = list("vitamin" = 6)
list_reagents = list("nutriment" = 6, "vitamin" = 6)
+ tastes = list("nothing suspicious" = 1)
/obj/item/weapon/reagent_containers/food/snacks/jelliedtoast
name = "jellied toast"
- desc = "A slice of bread covered with delicious jam."
+ desc = "A slice of toast covered with delicious jam."
icon = 'icons/obj/food/burgerbread.dmi'
icon_state = "jellytoast"
trash = /obj/item/trash/plate
bitesize = 3
+ tastes = list("toast" = 1, "jelly" = 1)
/obj/item/weapon/reagent_containers/food/snacks/jelliedtoast/cherry
bonus_reagents = list("cherryjelly" = 5, "vitamin" = 2)
@@ -83,3 +89,4 @@
icon_state = "twobread"
bonus_reagents = list("nutriment" = 1, "vitamin" = 2)
list_reagents = list("nutriment" = 2, "vitamin" = 2)
+ tastes = list("bread" = 2)
diff --git a/code/modules/food_and_drinks/food/snacks_soup.dm b/code/modules/food_and_drinks/food/snacks_soup.dm
index 6ded3dfcc2f..79df428ebb7 100644
--- a/code/modules/food_and_drinks/food/snacks_soup.dm
+++ b/code/modules/food_and_drinks/food/snacks_soup.dm
@@ -5,6 +5,7 @@
bitesize = 5
volume = 80
list_reagents = list("nutriment" = 8, "water" = 5, "vitamin" = 4)
+ tastes = list("tasteless soup" = 1)
/obj/item/weapon/reagent_containers/food/snacks/soup/New()
..()
@@ -15,20 +16,24 @@
desc = "I wish this was soup."
icon_state = "wishsoup"
list_reagents = list("water" = 10)
+ tastes = list("wishes" = 1)
/obj/item/weapon/reagent_containers/food/snacks/soup/wish/New()
- ..()
- if(prob(25))
+ var/wish_true = prob(25)
+ if(wish_true)
desc = "A wish come true!"
+ bonus_reagents = list("nutriment" = 9, "vitamin" = 1)
+ ..()
+ if(wish_true)
reagents.add_reagent("nutriment", 9)
reagents.add_reagent("vitamin", 1)
- bonus_reagents = list("nutriment" = 9, "vitamin" = 1)
/obj/item/weapon/reagent_containers/food/snacks/soup/meatball
name = "meatball soup"
desc = "You've got balls kid, BALLS!"
icon_state = "meatballsoup"
bonus_reagents = list("nutriment" = 1, "vitamin" = 5)
+ tastes = list("meat" = 1)
/obj/item/weapon/reagent_containers/food/snacks/soup/slime
name = "slime soup"
@@ -36,6 +41,7 @@
icon_state = "slimesoup"
bonus_reagents = list("nutriment" = 1, "slimejelly" = 5, "vitamin" = 5)
list_reagents = list("nutriment" = 5, "slimejelly" = 5, "water" = 5, "vitamin" = 4)
+ tastes = list("slime" = 1)
/obj/item/weapon/reagent_containers/food/snacks/soup/blood
name = "tomato soup"
@@ -43,6 +49,7 @@
icon_state = "tomatosoup"
bonus_reagents = list("nutriment" = 1, "vitamin" = 6)
list_reagents = list("nutriment" = 2, "blood" = 10, "water" = 5, "vitamin" = 4)
+ tastes = list("iron" = 1)
/obj/item/weapon/reagent_containers/food/snacks/soup/wingfangchu
name = "wing fang chu"
@@ -51,6 +58,7 @@
trash = /obj/item/weapon/reagent_containers/glass/bowl
bonus_reagents = list("nutriment" = 1, "vitamin" = 2)
list_reagents = list("nutriment" = 6, "soysauce" = 5, "vitamin" = 2)
+ tastes = list("soy" = 1)
/obj/item/weapon/reagent_containers/food/snacks/soup/clownstears
name = "clown's tears"
@@ -58,18 +66,21 @@
icon_state = "clownstears"
bonus_reagents = list("nutriment" = 1, "banana" = 5, "vitamin" = 8)
list_reagents = list("nutriment" = 4, "banana" = 5, "water" = 5, "vitamin" = 8)
+ tastes = list("a bad joke" = 1)
/obj/item/weapon/reagent_containers/food/snacks/soup/vegetable
name = "vegetable soup"
desc = "A true vegan meal."
icon_state = "vegetablesoup"
bonus_reagents = list("nutriment" = 1, "vitamin" = 4)
+ tastes = list("vegetables" = 1)
/obj/item/weapon/reagent_containers/food/snacks/soup/nettle
name = "nettle soup"
desc = "To think, the botanist would've beat you to death with one of these."
icon_state = "nettlesoup"
bonus_reagents = list("nutriment" = 1, "omnizine" = 5, "vitamin" = 5)
+ tastes = list("nettles" = 1)
/obj/item/weapon/reagent_containers/food/snacks/soup/mystery
name = "mystery soup"
@@ -77,12 +88,13 @@
icon_state = "mysterysoup"
var/extra_reagent = null
list_reagents = list("nutriment" = 6)
+ tastes = list("chaos" = 1)
/obj/item/weapon/reagent_containers/food/snacks/soup/mystery/New()
- ..()
extra_reagent = pick("capsaicin", "frostoil", "omnizine", "banana", "blood", "slimejelly", "toxin", "banana", "carbon", "oculine")
- reagents.add_reagent("[extra_reagent]", 5)
bonus_reagents = list("[extra_reagent]" = 5, "nutriment" = 6)
+ ..()
+ reagents.add_reagent("[extra_reagent]", 5)
/obj/item/weapon/reagent_containers/food/snacks/soup/hotchili
name = "hot chili"
@@ -90,6 +102,7 @@
icon_state = "hotchili"
bonus_reagents = list("nutriment" = 1, "tomatojuice" = 2, "vitamin" = 2)
list_reagents = list("nutriment" = 5, "capsaicin" = 1, "tomatojuice" = 2, "vitamin" = 2)
+ tastes = list("hot peppers" = 1)
/obj/item/weapon/reagent_containers/food/snacks/soup/coldchili
name = "cold chili"
@@ -97,6 +110,7 @@
icon_state = "coldchili"
bonus_reagents = list("nutriment" = 1, "tomatojuice" = 2, "vitamin" = 2)
list_reagents = list("nutriment" = 5, "frostoil" = 1, "tomatojuice" = 2, "vitamin" = 2)
+ tastes = list("tomato" = 1, "mint" = 1)
/obj/item/weapon/reagent_containers/food/snacks/soup/monkeysdelight
name = "monkey's delight"
@@ -104,6 +118,7 @@
icon_state = "monkeysdelight"
bonus_reagents = list("nutriment" = 1, "vitamin" = 5)
list_reagents = list("nutriment" = 10, "banana" = 5, "vitamin" = 5)
+ tastes = list("the jungle" = 1, "banana" = 1)
/obj/item/weapon/reagent_containers/food/snacks/soup/tomato
name = "tomato soup"
@@ -111,12 +126,14 @@
icon_state = "tomatosoup"
bonus_reagents = list("nutriment" = 1, "tomatojuice" = 10, "vitamin" = 3)
list_reagents = list("nutriment" = 5, "tomatojuice" = 10, "vitamin" = 3)
+ tastes = list("tomato" = 1)
/obj/item/weapon/reagent_containers/food/snacks/soup/milo
name = "milosoup"
desc = "The universes best soup! Yum!!!"
icon_state = "milosoup"
bonus_reagents = list("nutriment" = 1, "vitamin" = 3)
+ tastes = list("milo" = 1) // wtf is milo
/obj/item/weapon/reagent_containers/food/snacks/soup/mushroom
name = "chantrelle soup"
@@ -124,6 +141,7 @@
icon_state = "mushroomsoup"
bonus_reagents = list("nutriment" = 1, "vitamin" = 5)
list_reagents = list("nutriment" = 8, "vitamin" = 4)
+ tastes = list("mushroom" = 1)
/obj/item/weapon/reagent_containers/food/snacks/soup/beet
name = "beet soup"
@@ -134,6 +152,7 @@
/obj/item/weapon/reagent_containers/food/snacks/soup/beet/New()
..()
name = pick("borsch","bortsch","borstch","borsh","borshch","borscht")
+ tastes = list(name = 1)
/obj/item/weapon/reagent_containers/food/snacks/soup/spacylibertyduff
@@ -143,6 +162,7 @@
bitesize = 3
bonus_reagents = list("nutriment" = 1, "vitamin" = 5)
list_reagents = list("nutriment" = 6, "mushroomhallucinogen" = 6)
+ tastes = list("jelly" = 1, "mushroom" = 1)
/obj/item/weapon/reagent_containers/food/snacks/soup/amanitajelly
name = "amanita jelly"
@@ -151,6 +171,7 @@
bitesize = 3
bonus_reagents = list("nutriment" = 1, "vitamin" = 5)
list_reagents = list("nutriment" = 6, "mushroomhallucinogen" = 3, "amatoxin" = 6)
+ tastes = list("jelly" = 1, "mushroom" = 1)
/obj/item/weapon/reagent_containers/food/snacks/soup/stew
name = "stew"
@@ -160,17 +181,20 @@
list_reagents = list("nutriment" = 10, "oculine" = 5, "tomatojuice" = 5, "vitamin" = 5)
bitesize = 7
volume = 100
+ tastes = list("tomato" = 1, "carrot" = 1)
/obj/item/weapon/reagent_containers/food/snacks/soup/sweetpotato
name = "sweet potato soup"
desc = "Delicious sweet potato in soup form."
icon_state = "sweetpotatosoup"
bonus_reagents = list("nutriment" = 4, "vitamin" = 5)
+ tastes = list("sweet potato" = 1)
/obj/item/weapon/reagent_containers/food/snacks/soup/beet/red
name = "red beet soup"
desc = "Quite a delicacy."
icon_state = "redbeetsoup"
bonus_reagents = list("nutriment" = 4, "vitamin" = 6)
+ tastes = list("beet" = 1)
diff --git a/code/modules/food_and_drinks/food/snacks_spaghetti.dm b/code/modules/food_and_drinks/food/snacks_spaghetti.dm
index 251217a54ed..fd17c0ebd56 100644
--- a/code/modules/food_and_drinks/food/snacks_spaghetti.dm
+++ b/code/modules/food_and_drinks/food/snacks_spaghetti.dm
@@ -7,6 +7,7 @@
list_reagents = list("nutriment" = 1, "vitamin" = 1)
cooked_type = /obj/item/weapon/reagent_containers/food/snacks/boiledspaghetti
filling_color = "#F0E68C"
+ tastes = list("pasta" = 1)
/obj/item/weapon/reagent_containers/food/snacks/boiledspaghetti
name = "boiled spaghetti"
@@ -18,6 +19,7 @@
list_reagents = list("nutriment" = 2, "vitamin" = 1)
custom_food_type = /obj/item/weapon/reagent_containers/food/snacks/customizable/pasta
filling_color = "#F0E68C"
+ tastes = list("pasta" = 1)
/obj/item/weapon/reagent_containers/food/snacks/pastatomato
name = "spaghetti"
@@ -29,6 +31,7 @@
bonus_reagents = list("nutriment" = 1, "tomatojuice" = 10, "vitamin" = 4)
list_reagents = list("nutriment" = 6, "tomatojuice" = 10, "vitamin" = 4)
filling_color = "#DC143C"
+ tastes = list("pasta" = 1, "tomato" = 1)
/obj/item/weapon/reagent_containers/food/snacks/copypasta
name = "copypasta"
@@ -40,6 +43,7 @@
bonus_reagents = list("nutriment" = 1, "vitamin" = 4)
list_reagents = list("nutriment" = 12, "tomatojuice" = 20, "vitamin" = 8)
filling_color = "#DC143C"
+ tastes = list("pasta" = 1, "tomato" = 1)
/obj/item/weapon/reagent_containers/food/snacks/meatballspaghetti
name = "spaghetti and meatballs"
@@ -50,6 +54,7 @@
bonus_reagents = list("nutriment" = 1, "vitamin" = 4)
list_reagents = list("nutriment" = 8, "vitamin" = 4)
filling_color = "#F0E68C"
+ tastes = list("pasta" = 1, "tomato" = 1, "meat" = 1)
/obj/item/weapon/reagent_containers/food/snacks/spesslaw
name = "spesslaw"
@@ -60,6 +65,7 @@
bonus_reagents = list("nutriment" = 1, "vitamin" = 6)
list_reagents = list("nutriment" = 8, "vitamin" = 6)
filling_color = "#F0E68C"
+ tastes = list("pasta" = 1, "tomato" = 1, "meat" = 1)
/obj/item/weapon/reagent_containers/food/snacks/chowmein
name = "chow mein"
@@ -69,6 +75,7 @@
trash = /obj/item/trash/plate
bonus_reagents = list("nutriment" = 3, "vitamin" = 4)
list_reagents = list("nutriment" = 7, "vitamin" = 6)
+ tastes = list("noodle" = 1, "tomato" = 1)
/obj/item/weapon/reagent_containers/food/snacks/beefnoodle
name = "beef noodle"
@@ -76,4 +83,5 @@
icon = 'icons/obj/food/pizzaspaghetti.dmi'
icon_state = "beefnoodle"
trash = /obj/item/weapon/reagent_containers/glass/bowl
- bonus_reagents = list("nutriment" = 5, "vitamin" = 6)
\ No newline at end of file
+ bonus_reagents = list("nutriment" = 5, "vitamin" = 6)
+ tastes = list("noodle" = 1, "meat" = 1)
diff --git a/code/modules/food_and_drinks/food/snacks_vend.dm b/code/modules/food_and_drinks/food/snacks_vend.dm
index 74ee9ba99b8..200659ac0eb 100644
--- a/code/modules/food_and_drinks/food/snacks_vend.dm
+++ b/code/modules/food_and_drinks/food/snacks_vend.dm
@@ -10,6 +10,7 @@
list_reagents = list("nutriment" = 1, "sugar" = 3)
junkiness = 25
filling_color = "#D2691E"
+ tastes = list("candy" = 1)
/obj/item/weapon/reagent_containers/food/snacks/sosjerky
name = "\improper Scaredy's Private Reserve Beef Jerky"
@@ -19,6 +20,7 @@
list_reagents = list("nutriment" = 1, "sugar" = 3)
junkiness = 25
filling_color = "#8B0000"
+ tastes = list("dried meat" = 1)
/obj/item/weapon/reagent_containers/food/snacks/sosjerky/healthy
name = "homemade beef jerky"
@@ -35,6 +37,7 @@
list_reagents = list("nutriment" = 1, "sugar" = 3)
junkiness = 20
filling_color = "#FFD700"
+ tastes = list("salt" = 1, "crisps" = 1)
/obj/item/weapon/reagent_containers/food/snacks/no_raisin
name = "4no raisins"
@@ -44,6 +47,7 @@
list_reagents = list("nutriment" = 2, "sugar" = 4)
junkiness = 25
filling_color = "#8B0000"
+ tastes = list("dried raisins" = 1)
/obj/item/weapon/reagent_containers/food/snacks/no_raisin/healthy
name = "homemade raisins"
@@ -67,6 +71,7 @@
list_reagents = list("nutriment" = 1, "sugar" = 3)
junkiness = 25
filling_color = "#FFD700"
+ tastes = list("cheese" = 5, "crisps" = 2)
/obj/item/weapon/reagent_containers/food/snacks/syndicake
name = "syndi-cakes"
@@ -75,3 +80,4 @@
trash = /obj/item/trash/syndi_cakes
list_reagents = list("nutriment" = 4, "doctorsdelight" = 5)
filling_color = "#F5F5DC"
+ tastes = list("sweetness" = 3, "cake" = 1)
diff --git a/code/modules/food_and_drinks/kitchen_machinery/processor.dm b/code/modules/food_and_drinks/kitchen_machinery/processor.dm
index 1c57e0984c8..941e860eb57 100644
--- a/code/modules/food_and_drinks/kitchen_machinery/processor.dm
+++ b/code/modules/food_and_drinks/kitchen_machinery/processor.dm
@@ -208,6 +208,19 @@
if(default_deconstruction_crowbar(O))
return
+ if(istype(O, /obj/item/weapon/storage/bag/tray))
+ var/obj/item/weapon/storage/T = O
+ var/loaded = 0
+ for(var/obj/item/weapon/reagent_containers/food/snacks/S in T.contents)
+ var/datum/food_processor_process/P = select_recipe(S)
+ if(P)
+ T.remove_from_storage(S, src)
+ loaded++
+
+ if(loaded)
+ user << "You insert [loaded] items into [src]."
+ return
+
var/datum/food_processor_process/P = select_recipe(O)
if(P)
user.visible_message("[user] put [O] into [src].", \
diff --git a/code/modules/food_and_drinks/recipes/tablecraft/recipes_misc.dm b/code/modules/food_and_drinks/recipes/tablecraft/recipes_misc.dm
index a3bb0afa9a9..6d14d132540 100644
--- a/code/modules/food_and_drinks/recipes/tablecraft/recipes_misc.dm
+++ b/code/modules/food_and_drinks/recipes/tablecraft/recipes_misc.dm
@@ -315,4 +315,13 @@
/obj/item/weapon/reagent_containers/food/snacks/meat/cutlet = 1,
)
result = /obj/item/weapon/reagent_containers/food/snacks/taco/plain
- category = CAT_MISCFOOD
\ No newline at end of file
+ category = CAT_MISCFOOD
+
+/datum/crafting_recipe/food/branrequests
+ name = "Bran Requests Cereal"
+ reqs = list(
+ /obj/item/weapon/reagent_containers/food/snacks/grown/wheat = 1,
+ /obj/item/weapon/reagent_containers/food/snacks/no_raisin = 1,
+ )
+ result = /obj/item/weapon/reagent_containers/food/snacks/branrequests
+ category = CAT_MISCFOOD
diff --git a/code/modules/games/cards.dm b/code/modules/games/cards.dm
index cdd4b669c01..db502b751ca 100644
--- a/code/modules/games/cards.dm
+++ b/code/modules/games/cards.dm
@@ -230,7 +230,7 @@
name = "a playing card"
desc = "A playing card."
- overlays.len = 0
+ cut_overlays()
if (cards.len == 1)
var/datum/playingcard/P = cards[1]
@@ -239,7 +239,7 @@
I.pixel_x = I.pixel_x + (-5 + rand(10))
I.pixel_y = I.pixel_y + (-5 + rand(10))
- overlays.Add(I)
+ add_overlay(I)
else
var/origin = -12
var/offset = round(32 / cards.len)
@@ -251,7 +251,7 @@
I = new(src.icon, (concealed ? "card_back" : "[P.card_icon]") )
I.pixel_x = origin + (offset * i)
- overlays.Add(I)
+ add_overlay(I)
i = i + 1
diff --git a/code/modules/holiday/holidays.dm b/code/modules/holiday/holidays.dm
index 3f23b4743e6..dbe95af2426 100644
--- a/code/modules/holiday/holidays.dm
+++ b/code/modules/holiday/holidays.dm
@@ -141,6 +141,14 @@
end_day = 2
begin_month = APRIL
+/datum/holiday/april_fools/celebrate()
+ if(ticker)
+ ticker.login_music = 'sound/ambience/clown.ogg'
+ for(var/mob/new_player/P in mob_list)
+ if(P.client)
+ P.stopLobbySound()
+ P.client.playtitlemusic()
+
/datum/holiday/fourtwenty
name = "Four-Twenty"
begin_day = 20
diff --git a/code/modules/holodeck/computer.dm b/code/modules/holodeck/computer.dm
index e79285e579e..7524e323cc4 100644
--- a/code/modules/holodeck/computer.dm
+++ b/code/modules/holodeck/computer.dm
@@ -150,8 +150,6 @@
/obj/machinery/computer/holodeck/Topic(href, list/href_list)
if(..())
return
- if(!Adjacent(usr) && !issilicon(usr))
- return
usr.set_machine(src)
add_fingerprint(usr)
if(href_list["loadarea"])
diff --git a/code/modules/hydroponics/beekeeping/beebox.dm b/code/modules/hydroponics/beekeeping/beebox.dm
index 29dd541ca1f..8219a0a4f85 100644
--- a/code/modules/hydroponics/beekeeping/beebox.dm
+++ b/code/modules/hydroponics/beekeeping/beebox.dm
@@ -25,7 +25,7 @@
/obj/structure/beebox
name = "apiary"
- desc = "Dr Miles Manners is just your average Wasp themed super hero by day, but by night he becomes DR BEES!"
+ desc = "Dr Miles Manners is just your average wasp-themed super hero by day, but by night he becomes DR BEES!"
icon = 'icons/obj/hydroponics/equipment.dmi'
icon_state = "beebox"
anchored = 1
@@ -127,7 +127,7 @@
var/half_bee = get_max_bees()*0.5
if(half_bee && (bees.len >= half_bee))
- user << "This place is a BUZZ with activity... there are lots of bees!"
+ user << "This place is aBUZZ with activity... there are lots of bees!"
user << "[bee_resources]/100 resource supply."
user << "[bee_resources]% towards a new honeycomb."
@@ -150,7 +150,7 @@
return
honey_frames += HF
else
- user << "There's no room for anymore frames in the apiary!"
+ user << "There's no room for any more frames in the apiary!"
if(istype(I, /obj/item/weapon/wrench))
if(default_unfasten_wrench(user, I, time = 20))
@@ -184,7 +184,7 @@
user << "This queen has a different reagent to some of the bees who live here, those bees will not return to this apiary!"
else
- user << "The queen bee disappeared! bees disappearing has been in the news lately..."
+ user << "The queen bee disappeared! Disappearing bees have been in the news lately..."
qdel(qb)
@@ -204,7 +204,7 @@
if(bees)
visible_message("[user] disturbs the bees!")
else
- var/option = alert(user, "What Action do you wish to perform?","Apiary","Remove a Honey Frame","Remove the Queen Bee")
+ var/option = alert(user, "What action do you wish to perform?","Apiary","Remove a Honey Frame","Remove the Queen Bee")
if(!Adjacent(user))
return
switch(option)
diff --git a/code/modules/hydroponics/gene_modder.dm b/code/modules/hydroponics/gene_modder.dm
index a9288192063..08c7833f95f 100644
--- a/code/modules/hydroponics/gene_modder.dm
+++ b/code/modules/hydroponics/gene_modder.dm
@@ -420,16 +420,3 @@
/obj/item/weapon/disk/plantgene/examine(mob/user)
..()
user << "The write-protect tab is set to [src.read_only ? "protected" : "unprotected"]."
-
-
-/*
- * Plant DNA Disks Box
- */
-/obj/item/weapon/storage/box/disks_plantgene
- name = "plant data disks box"
- icon_state = "disk_kit"
-
-/obj/item/weapon/storage/box/disks_plantgene/New()
- ..()
- for(var/i in 1 to 7)
- new /obj/item/weapon/disk/plantgene(src)
diff --git a/code/modules/hydroponics/grown.dm b/code/modules/hydroponics/grown.dm
index 07ef5b304bc..a6f8c94364a 100644
--- a/code/modules/hydroponics/grown.dm
+++ b/code/modules/hydroponics/grown.dm
@@ -18,6 +18,7 @@
origin_tech = "biotech=1"
/obj/item/weapon/reagent_containers/food/snacks/grown/New(newloc, var/obj/item/seeds/new_seed = null)
+ tastes = list(name = 1) // apples taste of apple, silly.
..()
if(new_seed)
seed = new_seed.Copy()
diff --git a/code/modules/hydroponics/grown/banana.dm b/code/modules/hydroponics/grown/banana.dm
index 903b14b1cf4..0fee6e8476c 100644
--- a/code/modules/hydroponics/grown/banana.dm
+++ b/code/modules/hydroponics/grown/banana.dm
@@ -92,7 +92,7 @@
product = /obj/item/weapon/reagent_containers/food/snacks/grown/banana/bluespace
mutatelist = list()
genes = list(/datum/plant_gene/trait/slip, /datum/plant_gene/trait/teleport, /datum/plant_gene/trait/repeated_harvest)
- reagents_add = list("singulo" = 0.2, "banana" = 0.1, "vitamin" = 0.04, "nutriment" = 0.02)
+ reagents_add = list("bluespace" = 0.2, "banana" = 0.1, "vitamin" = 0.04, "nutriment" = 0.02)
rarity = 30
/obj/item/weapon/reagent_containers/food/snacks/grown/banana/bluespace
diff --git a/code/modules/hydroponics/grown/tomato.dm b/code/modules/hydroponics/grown/tomato.dm
index e94c0d9a41c..1815868dcc9 100644
--- a/code/modules/hydroponics/grown/tomato.dm
+++ b/code/modules/hydroponics/grown/tomato.dm
@@ -80,7 +80,7 @@
yield = 2
mutatelist = list()
genes = list(/datum/plant_gene/trait/squash, /datum/plant_gene/trait/slip, /datum/plant_gene/trait/teleport, /datum/plant_gene/trait/repeated_harvest)
- reagents_add = list("lube" = 0.2, "singulo" = 0.2, "vitamin" = 0.04, "nutriment" = 0.1)
+ reagents_add = list("lube" = 0.2, "bluespace" = 0.2, "vitamin" = 0.04, "nutriment" = 0.1)
rarity = 50
/obj/item/weapon/reagent_containers/food/snacks/grown/tomato/blue/bluespace
diff --git a/code/modules/hydroponics/hydroponics.dm b/code/modules/hydroponics/hydroponics.dm
index 1c18e485ada..d027b378fd3 100644
--- a/code/modules/hydroponics/hydroponics.dm
+++ b/code/modules/hydroponics/hydroponics.dm
@@ -259,7 +259,7 @@
if(istype(src, /obj/machinery/hydroponics/soil))
add_atom_colour(rgb(255, 175, 0), FIXED_COLOUR_PRIORITY)
else
- overlays += image('icons/obj/hydroponics/equipment.dmi', icon_state = "gaia_blessing")
+ add_overlay(image('icons/obj/hydroponics/equipment.dmi', icon_state = "gaia_blessing"))
SetLuminosity(3)
update_icon_hoses()
diff --git a/code/modules/hydroponics/sample.dm b/code/modules/hydroponics/sample.dm
index 5ba72156476..2d3a5d6b2a4 100644
--- a/code/modules/hydroponics/sample.dm
+++ b/code/modules/hydroponics/sample.dm
@@ -36,7 +36,7 @@ var/list/chem_t4_reagents = list(
add_overlay(I)
/obj/item/seeds/sample/get_analyzer_text()
- return " The DNA of this sample is damaged beyond recovery, it can't support life on it's own.\n*---------*"
+ return " The DNA of this sample is damaged beyond recovery, it can't support life on its own.\n*---------*"
/obj/item/seeds/sample/alienweed
name = "alien weed sample"
diff --git a/code/modules/library/lib_machines.dm b/code/modules/library/lib_machines.dm
index 830758844a6..6fe611a971d 100644
--- a/code/modules/library/lib_machines.dm
+++ b/code/modules/library/lib_machines.dm
@@ -43,8 +43,7 @@
dat += "Filter by Author: [author]
"
dat += "\[Start Search\]
"
if(1)
- establish_db_connection()
- if(!dbcon.IsConnected())
+ if (!dbcon.Connect())
dat += "ERROR: Unable to contact External Archive. Please contact your system administrator for assistance.
"
else if(!SQLquery)
dat += "ERROR: Malformed search request. Please contact your system administrator for assistance.
"
@@ -135,8 +134,7 @@ var/global/list/datum/cachedbook/cachedbooks // List of our cached book datums
/proc/load_library_db_to_cache()
if(cachedbooks)
return
- establish_db_connection()
- if(!dbcon.IsConnected())
+ if(!dbcon.Connect())
return
cachedbooks = list()
var/DBQuery/query = dbcon.NewQuery("SELECT id, author, title, category FROM [format_table_name("library")] WHERE isnull(deleted)")
@@ -408,8 +406,7 @@ var/global/list/datum/cachedbook/cachedbooks // List of our cached book datums
if(scanner.cache)
var/choice = input("Are you certain you wish to upload this title to the Archive?") in list("Confirm", "Abort")
if(choice == "Confirm")
- establish_db_connection()
- if(!dbcon.IsConnected())
+ if (!dbcon.Connect())
alert("Connection to Archive has been severed. Aborting.")
else
@@ -446,8 +443,7 @@ var/global/list/datum/cachedbook/cachedbooks // List of our cached book datums
if(href_list["targetid"])
var/sqlid = sanitizeSQL(href_list["targetid"])
- establish_db_connection()
- if(!dbcon.IsConnected())
+ if (!dbcon.Connect())
alert("Connection to Archive has been severed. Aborting.")
if(cooldown > world.time)
say("Printer unavailable. Please allow a short time before attempting to print.")
diff --git a/code/modules/library/random_books.dm b/code/modules/library/random_books.dm
index d254eb4b48d..9a1576a96f5 100644
--- a/code/modules/library/random_books.dm
+++ b/code/modules/library/random_books.dm
@@ -34,7 +34,7 @@
. = list()
if(!isnum(amount) || amount<1)
return
- if(!establish_db_connection())
+ if (!dbcon.Connect())
if(fail_loud || prob(5))
var/obj/item/weapon/paper/P = new(location)
P.info = "There once was a book from Nantucket
But the database failed us, so f*$! it.
I tried to be good to you
Now this is an I.O.U
If you're feeling entitled, well, stuff it!
~"
diff --git a/code/modules/library/soapstone.dm b/code/modules/library/soapstone.dm
index a512f12125d..90859b9444b 100644
--- a/code/modules/library/soapstone.dm
+++ b/code/modules/library/soapstone.dm
@@ -170,6 +170,8 @@
var/realdate
var/map
var/persists = TRUE
+ var/list/like_keys = list()
+ var/list/dislike_keys = list()
/obj/structure/chisel_message/New(newloc)
..()
@@ -206,13 +208,20 @@
var/turf/T = get_turf(src)
data["x"] = T.x
data["y"] = T.y
- return data
+ data["like_keys"] = like_keys
+ data["dislike_keys"] = dislike_keys
/obj/structure/chisel_message/proc/unpack(list/data)
hidden_message = data["hidden_message"]
creator_name = data["creator_name"]
creator_key = data["creator_key"]
realdate = data["realdate"]
+ like_keys = data["like_keys"]
+ if(!like_keys)
+ like_keys = list()
+ dislike_keys = data["dislike_keys"]
+ if(!dislike_keys)
+ dislike_keys = list()
var/x = data["x"]
var/y = data["y"]
@@ -229,3 +238,64 @@
SSpersistence.SaveChiselMessage(src)
SSpersistence.chisel_messages -= src
. = ..()
+
+/obj/structure/chisel_message/ui_interact(mob/user, ui_key = "main", datum/tgui/ui = null, force_open = 0, datum/tgui/master_ui = null, datum/ui_state/state = always_state)
+
+ ui = SStgui.try_update_ui(user, src, ui_key, ui, force_open)
+ if(!ui)
+ ui = new(user, src, ui_key, "engraved_message", name, 600, 300, master_ui, state)
+ ui.open()
+
+/obj/structure/chisel_message/ui_data(mob/user)
+ var/list/data = list()
+
+ data["hidden_message"] = hidden_message
+ data["realdate"] = SQLtime(realdate)
+ data["num_likes"] = like_keys.len
+ data["num_dislikes"] = dislike_keys.len
+ data["is_creator"] = user.ckey == creator_key
+ data["has_liked"] = (user.ckey in like_keys)
+ data["has_disliked"] = (user.ckey in dislike_keys)
+
+ if(check_rights_for(user.client, R_ADMIN))
+ data["admin_mode"] = TRUE
+ data["creator_key"] = creator_key
+ data["creator_name"] = creator_name
+
+ return data
+
+/obj/structure/chisel_message/ui_act(action, params, datum/tgui/ui)
+ var/mob/user = usr
+ var/is_admin = check_rights_for(user.client, R_ADMIN)
+ var/is_creator = user.ckey == creator_key
+ var/has_liked = (user.ckey in like_keys)
+ var/has_disliked = (user.ckey in dislike_keys)
+
+ switch(action)
+ if("like")
+ if(is_creator)
+ return
+ if(has_disliked)
+ dislike_keys -= user.ckey
+ like_keys |= user.ckey
+ . = TRUE
+ if("dislike")
+ if(is_creator)
+ return
+ if(has_liked)
+ like_keys -= user.ckey
+ dislike_keys |= user.ckey
+ . = TRUE
+ if("neutral")
+ if(is_creator)
+ return
+ dislike_keys -= user.ckey
+ like_keys -= user.ckey
+ . = TRUE
+ if("delete")
+ if(!is_admin)
+ return
+ var/confirm = alert(user, "Confirm deletion of engraved message?", "Confirm Deletion", "Yes", "No")
+ if(confirm == "Yes")
+ persists = FALSE
+ qdel(src)
diff --git a/code/modules/awaymissions/maploader/dmm_suite.dm b/code/modules/mapping/dmm_suite.dm
similarity index 98%
rename from code/modules/awaymissions/maploader/dmm_suite.dm
rename to code/modules/mapping/dmm_suite.dm
index 5ed299e06f8..cb3a72fdb46 100644
--- a/code/modules/awaymissions/maploader/dmm_suite.dm
+++ b/code/modules/mapping/dmm_suite.dm
@@ -1,5 +1,3 @@
-var/global/dmm_suite/maploader = new
-
dmm_suite{
/*
diff --git a/code/modules/mapping/map_template.dm b/code/modules/mapping/map_template.dm
new file mode 100644
index 00000000000..7f355b3b028
--- /dev/null
+++ b/code/modules/mapping/map_template.dm
@@ -0,0 +1,100 @@
+/datum/map_template
+ var/name = "Default Template Name"
+ var/width = 0
+ var/height = 0
+ var/mappath = null
+ var/loaded = 0 // Times loaded this round
+ var/static/dmm_suite/maploader = new
+
+/datum/map_template/New(path = null, rename = null)
+ if(path)
+ mappath = path
+ if(mappath)
+ preload_size(mappath)
+ if(rename)
+ name = rename
+
+/datum/map_template/proc/preload_size(path)
+ var/bounds = maploader.load_map(file(path), 1, 1, 1, cropMap=FALSE, measureOnly=TRUE)
+ if(bounds)
+ width = bounds[MAP_MAXX] // Assumes all templates are rectangular, have a single Z level, and begin at 1,1,1
+ height = bounds[MAP_MAXY]
+ return bounds
+
+/datum/map_template/proc/initTemplateBounds(var/list/bounds)
+ var/list/obj/machinery/atmospherics/atmos_machines = list()
+ var/list/obj/structure/cable/cables = list()
+ var/list/atom/atoms = list()
+
+ for(var/L in block(locate(bounds[MAP_MINX], bounds[MAP_MINY], bounds[MAP_MINZ]),
+ locate(bounds[MAP_MAXX], bounds[MAP_MAXY], bounds[MAP_MAXZ])))
+ var/turf/B = L
+ atoms += B
+ for(var/A in B)
+ atoms += A
+ if(istype(A,/obj/structure/cable))
+ cables += A
+ continue
+ if(istype(A,/obj/machinery/atmospherics))
+ atmos_machines += A
+
+ SSatoms.InitializeAtoms(atoms)
+ SSmachine.setup_template_powernets(cables)
+ SSair.setup_template_machinery(atmos_machines)
+
+/datum/map_template/proc/load_new_z()
+ var/x = round(world.maxx/2)
+ var/y = round(world.maxy/2)
+
+ var/list/bounds = maploader.load_map(get_file(), x, y)
+ if(!bounds)
+ return FALSE
+
+ smooth_zlevel(world.maxz)
+ SortAreas()
+
+ //initialize things that are normally initialized after map load
+ initTemplateBounds(bounds)
+ log_game("Z-level [name] loaded at at [x],[y],[world.maxz]")
+
+/datum/map_template/proc/load(turf/T, centered = FALSE)
+ if(centered)
+ T = locate(T.x - round(width/2) , T.y - round(height/2) , T.z)
+ if(!T)
+ return
+ if(T.x+width > world.maxx)
+ return
+ if(T.y+height > world.maxy)
+ return
+
+ var/list/bounds = maploader.load_map(get_file(), T.x, T.y, T.z, cropMap=TRUE)
+ if(!bounds)
+ return
+
+ //initialize things that are normally initialized after map load
+ initTemplateBounds(bounds)
+
+ log_game("[name] loaded at at [T.x],[T.y],[T.z]")
+ return TRUE
+
+/datum/map_template/proc/get_file()
+ if(mappath)
+ . = file(mappath)
+
+ if(!.)
+ world.log << "The file of [src] ([mappath]) appears to be empty/non-existent."
+
+/datum/map_template/proc/get_affected_turfs(turf/T, centered = FALSE)
+ var/turf/placement = T
+ if(centered)
+ var/turf/corner = locate(placement.x - round(width/2), placement.y - round(height/2), placement.z)
+ if(corner)
+ placement = corner
+ return block(placement, locate(placement.x+width-1, placement.y+height-1, placement.z))
+
+
+//for your ever biggening badminnery kevinz000
+//❤ - Cyberboss
+/proc/load_new_z_level(var/file, var/name)
+ var/datum/map_template/template = new(file, name)
+ template.load_new_z()
\ No newline at end of file
diff --git a/code/modules/awaymissions/maploader/reader.dm b/code/modules/mapping/reader.dm
similarity index 97%
rename from code/modules/awaymissions/maploader/reader.dm
rename to code/modules/mapping/reader.dm
index fab32c7ffdb..b4c92c00afa 100644
--- a/code/modules/awaymissions/maploader/reader.dm
+++ b/code/modules/mapping/reader.dm
@@ -26,6 +26,12 @@ var/global/dmm_suite/preloader/_preloader = new
*
*/
/dmm_suite/load_map(dmm_file as file, x_offset as num, y_offset as num, z_offset as num, cropMap as num, measureOnly as num)
+ //How I wish for RAII
+ Master.StartLoadingMap()
+ . = load_map_impl(dmm_file, x_offset, y_offset, z_offset, cropMap, measureOnly)
+ Master.StopLoadingMap()
+
+/dmm_suite/proc/load_map_impl(dmm_file, x_offset, y_offset, z_offset, cropMap, measureOnly)
var/tfile = dmm_file//the map file we're creating
if(isfile(tfile))
tfile = file2text(tfile)
@@ -243,7 +249,7 @@ var/global/dmm_suite/preloader/_preloader = new
first_turf_index++
//turn off base new Initialization until the whole thing is loaded
- SSobj.map_loader_begin()
+ SSatoms.map_loader_begin()
//instanciate the first /turf
var/turf/T
if(members[first_turf_index] != /turf/template_noop)
@@ -264,11 +270,11 @@ var/global/dmm_suite/preloader/_preloader = new
//custom CHECK_TICK here because we don't want things created while we're sleeping to not initialize
if(world.tick_usage > CURRENT_TICKLIMIT)
- SSobj.map_loader_stop()
+ SSatoms.map_loader_stop()
stoplag()
- SSobj.map_loader_begin()
+ SSatoms.map_loader_begin()
//Restore initialization to the previous value
- SSobj.map_loader_stop()
+ SSatoms.map_loader_stop()
////////////////
//Helpers procs
diff --git a/code/modules/mapping/ruins.dm b/code/modules/mapping/ruins.dm
new file mode 100644
index 00000000000..07aec97b5ac
--- /dev/null
+++ b/code/modules/mapping/ruins.dm
@@ -0,0 +1,93 @@
+
+
+/proc/seedRuins(list/z_levels = null, budget = 0, whitelist = /area/space, list/potentialRuins)
+ if(!z_levels || !z_levels.len)
+ WARNING("No Z levels provided - Not generating ruins")
+ return
+
+ for(var/zl in z_levels)
+ var/turf/T = locate(1, 1, zl)
+ if(!T)
+ WARNING("Z level [zl] does not exist - Not generating ruins")
+ return
+
+ var/overall_sanity = 100
+ var/list/ruins = potentialRuins.Copy()
+
+ while(budget > 0 && overall_sanity > 0)
+ // Pick a ruin
+ var/datum/map_template/ruin/ruin = null
+ if(ruins && ruins.len)
+ ruin = ruins[pick(ruins)]
+ else
+ world.log << "Ruin loader had no ruins to pick from with [budget] left to spend."
+ break
+ // Can we afford it
+ if(ruin.cost > budget)
+ overall_sanity--
+ continue
+ // If so, try to place it
+ var/sanity = 100
+ // And if we can't fit it anywhere, give up, try again
+
+ while(sanity > 0)
+ sanity--
+ var/width_border = TRANSITIONEDGE + round(ruin.width / 2)
+ var/height_border = TRANSITIONEDGE + round(ruin.height / 2)
+ var/z_level = pick(z_levels)
+ var/turf/T = locate(rand(width_border, world.maxx - width_border), rand(height_border, world.maxy - height_border), z_level)
+ var/valid = TRUE
+
+ for(var/turf/check in ruin.get_affected_turfs(T,1))
+ var/area/new_area = get_area(check)
+ if(!(istype(new_area, whitelist)))
+ valid = FALSE
+ break
+
+ if(!valid)
+ continue
+
+ world.log << "Ruin \"[ruin.name]\" placed at ([T.x], [T.y], [T.z])"
+
+ var/obj/effect/ruin_loader/R = new /obj/effect/ruin_loader(T)
+ R.Load(ruins,ruin)
+ budget -= ruin.cost
+ if(!ruin.allow_duplicates)
+ ruins -= ruin.name
+ break
+
+ if(!overall_sanity)
+ world.log << "Ruin loader gave up with [budget] left to spend."
+
+
+/obj/effect/ruin_loader
+ name = "random ruin"
+ icon = 'icons/obj/weapons.dmi'
+ icon_state = "syndballoon"
+ invisibility = 0
+
+/obj/effect/ruin_loader/proc/Load(list/potentialRuins, datum/map_template/template)
+ var/list/possible_ruins = list()
+ for(var/A in potentialRuins)
+ var/datum/map_template/T = potentialRuins[A]
+ if(!T.loaded)
+ possible_ruins += T
+ if(!template && possible_ruins.len)
+ template = safepick(possible_ruins)
+ if(!template)
+ return FALSE
+ var/turf/central_turf = get_turf(src)
+ for(var/i in template.get_affected_turfs(central_turf, 1))
+ var/turf/T = i
+ for(var/mob/living/simple_animal/monster in T)
+ qdel(monster)
+ for(var/obj/structure/flora/ash/plant in T)
+ qdel(plant)
+ template.load(central_turf,centered = TRUE)
+ template.loaded++
+ var/datum/map_template/ruin = template
+ if(istype(ruin))
+ new /obj/effect/landmark/ruin(central_turf, ruin)
+
+ qdel(src)
+ return TRUE
diff --git a/code/modules/awaymissions/maploader/swapmaps.dm b/code/modules/mapping/swapmaps.dm
similarity index 100%
rename from code/modules/awaymissions/maploader/swapmaps.dm
rename to code/modules/mapping/swapmaps.dm
diff --git a/code/modules/awaymissions/maploader/writer.dm b/code/modules/mapping/writer.dm
similarity index 100%
rename from code/modules/awaymissions/maploader/writer.dm
rename to code/modules/mapping/writer.dm
diff --git a/code/modules/mentor/follow.dm b/code/modules/mentor/follow.dm
index 4972667cf5b..a578f9a1100 100644
--- a/code/modules/mentor/follow.dm
+++ b/code/modules/mentor/follow.dm
@@ -12,13 +12,11 @@
if(!holder)
var/datum/mentors/mentor = mentor_datums[usr.client.ckey]
mentor.following = M
- else
- holder.following = M
+/* else
+ holder.following = M*/
- ManualFollow(M)
-
-// usr.reset_perspective(M)
- usr.verbs += /client/proc/mentor_unfollow
+ usr.reset_perspective(M)
+ src.verbs += /client/proc/mentor_unfollow
admins << "MENTOR: [key_name(usr)] is now following [key_name(M)]"
usr << "You are now following [M]. Click the \"Stop Following\" button in the Mentor tab to stop."
@@ -35,14 +33,14 @@
return
usr.reset_perspective(null)
- usr.verbs -= /client/proc/mentor_unfollow
+ src.verbs -= /client/proc/mentor_unfollow
var/following = null
if(!holder)
var/datum/mentors/mentor = mentor_datums[usr.client.ckey]
following = mentor.following
- else
- following = holder.following
+ /*else
+ following = holder.following*/
admins << "MENTOR: [key_name(usr)] is no longer following [key_name(following)]"
diff --git a/code/modules/mentor/holder2.dm b/code/modules/mentor/holder2.dm
index 6288069519b..acb34110e53 100644
--- a/code/modules/mentor/holder2.dm
+++ b/code/modules/mentor/holder2.dm
@@ -21,7 +21,10 @@ var/list/mentor_datums = list()
owner = null
/client/proc/dementor()
+ var/mentor = mentor_datums[ckey]
mentor_datums -= ckey
+ qdel(mentor)
+
return 1
/proc/check_mentor()
diff --git a/code/modules/mentor/mentor_ranks.dm b/code/modules/mentor/mentor_ranks.dm
index b8f45ef8ea5..0fc937e4d50 100644
--- a/code/modules/mentor/mentor_ranks.dm
+++ b/code/modules/mentor/mentor_ranks.dm
@@ -4,7 +4,6 @@
mentors.Cut()
if(!config.mentor_legacy_system)
- establish_db_connection()
if(!dbcon.IsConnected())
world.log << "Failed to connect to database in load_mentors()."
diary << "Failed to connect to database in load_mentors()."
diff --git a/code/modules/mentor/verbs/mentorhelp.dm b/code/modules/mentor/verbs/mentorhelp.dm
index 95441510e41..40606460fa0 100644
--- a/code/modules/mentor/verbs/mentorhelp.dm
+++ b/code/modules/mentor/verbs/mentorhelp.dm
@@ -1,6 +1,6 @@
/client/verb/mentorhelp(msg as text)
set category = "Mentor"
- set name = "Mentorhelp"
+ set name = "mentorhelp"
//remove out adminhelp verb temporarily to prevent spamming of mentors.
src.verbs -= /client/verb/mentorhelp
@@ -28,6 +28,15 @@
src << "PM to-Mentors: [msg]"
return
+/proc/get_mentor_counts()
+ . = list("total" = 0, "afk" = 0, "present" = 0)
+ for(var/client/X in mentors)
+ .["total"]++
+ if(X.is_afk())
+ .["afk"]++
+ else
+ .["present"]++
+
/proc/key_name_mentor(var/whom, var/include_link = null, var/include_name = 0, var/include_follow = 0, var/char_name_only = 0)
var/mob/M
var/client/C
diff --git a/code/modules/mentor/verbs/mentorpm.dm b/code/modules/mentor/verbs/mentorpm.dm
index b066bbd73c5..4efc61b87db 100644
--- a/code/modules/mentor/verbs/mentorpm.dm
+++ b/code/modules/mentor/verbs/mentorpm.dm
@@ -19,7 +19,7 @@
//Fetching a message if needed. src is the sender and C is the target client
/client/proc/cmd_mentor_pm(whom, msg)
var/client/C
- if(istype(whom,/mob))
+ if(ismob(whom))
var/mob/M = whom
C = M.client
else if(istext(whom))
diff --git a/code/modules/mentor/verbs/mentorsay.dm b/code/modules/mentor/verbs/mentorsay.dm
index 2c7b5dd7db0..026f8f49fa1 100644
--- a/code/modules/mentor/verbs/mentorsay.dm
+++ b/code/modules/mentor/verbs/mentorsay.dm
@@ -7,8 +7,10 @@
msg = copytext(sanitize(msg), 1, MAX_MESSAGE_LEN)
if(!msg) return
+ msg = emoji_parse(msg)
log_mentor("MSAY: [key_name(src)] : [msg]")
+
if(check_rights(R_ADMIN,0))
msg = "MENTOR: [key_name(src, 0, 0)]: [msg]"
mentors << msg
diff --git a/code/modules/mining/aux_base.dm b/code/modules/mining/aux_base.dm
new file mode 100644
index 00000000000..b8bea629a17
--- /dev/null
+++ b/code/modules/mining/aux_base.dm
@@ -0,0 +1,344 @@
+///Mining Base////
+
+#define BAD_ZLEVEL 1
+#define BAD_AREA 2
+#define ZONE_SET 3
+
+/area/shuttle/auxillary_base
+ name = "Auxillary Base"
+ luminosity = 0 //Lighting gets lost when it lands anyway
+
+
+/obj/machinery/computer/auxillary_base
+ name = "auxillary base management console"
+ icon = 'icons/obj/terminals.dmi'
+ icon_state = "dorm_available"
+ var/shuttleId = "colony_drop"
+ desc = "Allows a deployable expedition base to be dropped from the station to a designated mining location. It can also \
+interface with the mining shuttle at the landing site if a mobile beacon is also deployed."
+ var/launch_warning = TRUE
+ var/list/turrets = list() //List of connected turrets
+
+ req_one_access = list(access_cargo, access_construction, access_heads)
+ var/possible_destinations
+ clockwork = TRUE
+ var/obj/item/device/gps/internal/base/locator
+ circuit = /obj/item/weapon/circuitboard/computer/auxillary_base
+
+/obj/machinery/computer/auxillary_base/New(location, obj/item/weapon/circuitboard/computer/shuttle/C)
+ ..()
+ locator = new /obj/item/device/gps/internal/base(src)
+
+
+/obj/machinery/computer/auxillary_base/attack_hand(mob/user)
+ if(..(user))
+ return
+ add_fingerprint(usr)
+
+ var/list/options = params2list(possible_destinations)
+ var/obj/docking_port/mobile/M = SSshuttle.getShuttle(shuttleId)
+ var/dat = "[z == ZLEVEL_STATION ? "Docking clamps engaged. Standing by." : "Mining Shuttle Uplink: [M ? M.getStatusText() : "*OFFLINE*"]"]
"
+ if(M)
+ var/destination_found
+ for(var/obj/docking_port/stationary/S in SSshuttle.stationary)
+ if(!options.Find(S.id))
+ continue
+ if(!M.check_dock(S))
+ continue
+ destination_found = 1
+ dat += "Send to [S.name]
"
+ if(!destination_found && z == ZLEVEL_STATION) //Only available if miners are lazy and did not set an LZ using the remote.
+ dat += "Prepare for blind drop? (Dangerous)
"
+ if(LAZYLEN(turrets))
+ dat += "
Perimeter Defense System: Enable All / Disable All
\
+ Units connected: [LAZYLEN(turrets)]
\
+ Unit | Condition | Status | Direction | Distance
"
+ for(var/PDT in turrets)
+ var/obj/machinery/porta_turret/aux_base/T = PDT
+ var/integrity = max((T.obj_integrity-T.integrity_failure)/(T.max_integrity-T.integrity_failure)*100, 0)
+ var/status
+ if(T.stat & BROKEN)
+ status = "ERROR"
+ else if(!T.on)
+ status = "Disabled"
+ else if(T.raised)
+ status = "Firing"
+ else
+ status = "All Clear"
+ dat += "[T.name] | [integrity]% | [status] | [dir2text(get_dir(src, T))] | [get_dist(src, T)]m Toggle Power
"
+
+
+ dat += "Close"
+
+ var/datum/browser/popup = new(user, "computer", "base management", 550, 300) //width, height
+ popup.set_content("[dat]")
+ popup.set_title_image(usr.browse_rsc_icon(src.icon, src.icon_state))
+ popup.open()
+
+
+/obj/machinery/computer/auxillary_base/Topic(href, href_list)
+ if(..())
+ return
+ usr.set_machine(src)
+ add_fingerprint(usr)
+ if(!allowed(usr))
+ usr << "Access denied."
+ return
+
+ if(href_list["move"])
+ if(z != ZLEVEL_STATION && shuttleId == "colony_drop")
+ usr << "You can't move the base again!"
+ return
+ var/shuttle_error = SSshuttle.moveShuttle(shuttleId, href_list["move"], 1)
+ if(launch_warning)
+ say("Launch sequence activated! Prepare for drop!!")
+ playsound(loc, 'sound/machines/warning-buzzer.ogg', 70, 0)
+ launch_warning = FALSE
+ else if(!shuttle_error)
+ say("Shuttle request uploaded. Please stand away from the doors.")
+ else
+ say("Shuttle interface failed.")
+
+ if(href_list["random"] && !possible_destinations)
+ usr.changeNext_move(CLICK_CD_RAPID) //Anti-spam
+ var/turf/LZ = safepick(Z_TURFS(ZLEVEL_MINING)) //Pick a random mining Z-level turf
+ if(!istype(LZ, /turf/closed/mineral) && !istype(LZ, /turf/open/floor/plating/asteroid))
+ //Find a suitable mining turf. Reduces chance of landing in a bad area
+ usr << "Landing zone scan failed. Please try again."
+ updateUsrDialog()
+ return
+ if(set_landing_zone(LZ, usr) != ZONE_SET)
+ usr << "Landing zone unsuitable. Please recalculate."
+ updateUsrDialog()
+ return
+
+
+ if(LAZYLEN(turrets))
+ if(href_list["turrets_power"])
+ for(var/obj/machinery/porta_turret/aux_base/T in turrets)
+ if(href_list["turrets_power"] == "on")
+ T.on = TRUE
+ else
+ T.on = FALSE
+ if(href_list["single_turret_power"])
+ var/obj/machinery/porta_turret/aux_base/T = locate(href_list["single_turret_power"]) in turrets
+ if(istype(T))
+ T.on = !T.on
+
+ updateUsrDialog()
+
+
+/obj/machinery/computer/auxillary_base/onShuttleMove(turf/T1, rotation)
+ ..()
+ if(z == ZLEVEL_MINING) //Avoids double logging and landing on other Z-levels due to badminnery
+ feedback_add_details("colonies_dropped", "[x]|[y]|[z]") //Number of times a base has been dropped!
+
+/obj/machinery/computer/auxillary_base/proc/set_mining_mode()
+ if(z == ZLEVEL_MINING) //The console switches to controlling the mining shuttle once landed.
+ req_one_access = list()
+ shuttleId = "mining" //The base can only be dropped once, so this gives the console a new purpose.
+ possible_destinations = "mining_home;mining_away;landing_zone_dock;mining_public"
+
+/obj/machinery/computer/auxillary_base/proc/set_landing_zone(turf/T, mob/user, var/no_restrictions)
+
+ var/obj/docking_port/mobile/auxillary_base/base_dock = locate(/obj/docking_port/mobile/auxillary_base) in SSshuttle.mobile
+ if(!base_dock) //Not all maps have an Aux base. This object is useless in that case.
+ user << "This station is not equipped with an auxillary base. Please contact your Nanotrasen contractor."
+ return
+ if(!no_restrictions)
+ if(T.z != ZLEVEL_MINING)
+ return BAD_ZLEVEL
+ var/colony_radius = max(base_dock.width, base_dock.height)*0.5
+ var/list/area_counter = get_areas_in_range(colony_radius, T)
+ if(area_counter.len > 1) //Avoid smashing ruins unless you are inside a really big one
+ return BAD_AREA
+
+
+ var/area/A = get_area(T)
+
+ var/obj/docking_port/stationary/landing_zone = new /obj/docking_port/stationary(T)
+ landing_zone.id = "colony_drop(\ref[src])"
+ landing_zone.name = "Landing Zone ([T.x], [T.y])"
+ landing_zone.dwidth = base_dock.dwidth
+ landing_zone.dheight = base_dock.dheight
+ landing_zone.width = base_dock.width
+ landing_zone.height = base_dock.height
+ landing_zone.setDir(base_dock.dir)
+ landing_zone.turf_type = T.type
+ landing_zone.area_type = A.type
+
+ possible_destinations += "[landing_zone.id];"
+
+//Serves as a nice mechanic to people get ready for the launch.
+ minor_announce("Auxiliary base landing zone coordinates locked in for [A]. Launch command now available!")
+ user << "Landing zone set."
+ return ZONE_SET
+
+
+/obj/item/device/assault_pod/mining
+ name = "Landing Field Designator"
+ icon_state = "gangtool-purple"
+ item_state = "electronic"
+ icon = 'icons/obj/device.dmi'
+ desc = "Deploy to designate the landing zone of the auxillary base."
+ w_class = WEIGHT_CLASS_SMALL
+ shuttle_id = "colony_drop"
+ var/setting = FALSE
+ var/no_restrictions = FALSE //Badmin variable to let you drop the colony ANYWHERE.
+
+/obj/item/device/assault_pod/mining/attack_self(mob/living/user)
+ if(setting)
+ return
+
+ user << "You begin setting the landing zone parameters..."
+ setting = TRUE
+ if(!do_after(user, 50, target = user)) //You get a few seconds to cancel if you do not want to drop there.
+ setting = FALSE
+ return
+
+ var/turf/T = get_turf(user)
+ var/obj/machinery/computer/auxillary_base/AB
+
+ for (var/obj/machinery/computer/auxillary_base/A in machines)
+ if(A.z == ZLEVEL_STATION)
+ AB = A
+ break
+ if(!AB)
+ user << "No auxillary base console detected."
+ return
+
+ switch(AB.set_landing_zone(T, user, no_restrictions))
+ if(BAD_ZLEVEL)
+ user << "This uplink can only be used in a designed mining zone."
+ if(BAD_AREA)
+ user << "Unable to acquire a targeting lock. Find an area clear of stuctures or entirely within one."
+ if(ZONE_SET)
+ qdel(src)
+
+/obj/item/device/assault_pod/mining/unrestricted
+ name = "omni-locational landing field designator"
+ desc = "Allows the deployment of the mining base ANYWHERE. Use with caution."
+ no_restrictions = TRUE
+
+
+/obj/docking_port/mobile/auxillary_base
+ name = "auxillary base"
+ id = "colony_drop"
+ //Reminder to map-makers to set these values equal to the size of your base.
+ dheight = 4
+ dwidth = 4
+ width = 9
+ height = 9
+
+obj/docking_port/stationary/public_mining_dock
+ name = "public mining base dock"
+ id = "disabled" //The Aux Base has to leave before this can be used as a dock.
+ //Should be checked on the map to ensure it matchs the mining shuttle dimensions.
+ dwidth = 3
+ width = 7
+ height = 5
+
+obj/docking_port/stationary/public_mining_dock/onShuttleMove()
+ id = "mining_public" //It will not move with the base, but will become enabled as a docking point.
+ return 0
+
+
+/obj/structure/mining_shuttle_beacon
+ name = "mining shuttle beacon"
+ desc = "A bluespace beacon calibrated to mark a landing spot for the mining shuttle when deployed near the auxillary mining base."
+ anchored = 0
+ density = 0
+ var/shuttle_ID = "landing_zone_dock"
+ icon = 'icons/obj/objects.dmi'
+ icon_state = "miningbeacon"
+ var/obj/docking_port/stationary/Mport //Linked docking port for the mining shuttle
+ pressure_resistance = 200 //So it does not get blown into lava.
+ var/anti_spam_cd = 0 //The linking process might be a bit intensive, so this here to prevent over use.
+ var/console_range = 15 //Wifi range of the beacon to find the aux base console
+
+/obj/structure/mining_shuttle_beacon/attack_hand(mob/user)
+ if(anchored)
+ user << "Landing zone already set."
+ return
+
+ if(anti_spam_cd)
+ user << "[src] is currently recalibrating. Please wait."
+ return
+
+ anti_spam_cd = 1
+ addtimer(CALLBACK(src, .proc/clear_cooldown), 50)
+
+ var/turf/landing_spot = get_turf(src)
+
+ if(landing_spot.z != ZLEVEL_MINING)
+ user << "This device is only to be used in a mining zone."
+ return
+ var/obj/machinery/computer/auxillary_base/aux_base_console = locate(/obj/machinery/computer/auxillary_base) in machines
+ if(!aux_base_console || get_dist(landing_spot, aux_base_console) > console_range)
+ user << "The auxillary base's console must be within [console_range] meters in order to interface."
+ return //Needs to be near the base to serve as its dock and configure it to control the mining shuttle.
+
+//Mining shuttles may not be created equal, so we find the map's shuttle dock and size accordingly.
+
+
+ for(var/S in SSshuttle.stationary)
+ var/obj/docking_port/stationary/SM = S //SM is declared outside so it can be checked for null
+ if(SM.id == "mining_home" || SM.id == "mining_away")
+
+ var/area/A = get_area(landing_spot)
+
+ Mport = new(landing_spot)
+ Mport.id = "landing_zone_dock"
+ Mport.name = "auxillary base landing site"
+ Mport.dwidth = SM.dwidth
+ Mport.dheight = SM.dheight
+ Mport.width = SM.width
+ Mport.height = SM.height
+ Mport.setDir(dir)
+ Mport.turf_type = landing_spot.type
+ Mport.area_type = A.type
+
+ break
+ if(!Mport)
+ user << "This station is not equipped with an approprite mining shuttle. Please contact Nanotrasen Support."
+ return
+ var/search_radius = max(Mport.width, Mport.height)*0.5
+ var/list/landing_areas = get_areas_in_range(search_radius, landing_spot)
+ for(var/area/shuttle/auxillary_base/AB in landing_areas) //You land NEAR the base, not IN it.
+ user << "The mining shuttle must not land within the mining base itself."
+ SSshuttle.stationary.Remove(Mport)
+ qdel(Mport)
+ return
+ var/obj/docking_port/mobile/mining_shuttle
+ for(var/S in SSshuttle.mobile)
+ var/obj/docking_port/mobile/MS = S
+ if(MS.id != "mining")
+ continue
+ mining_shuttle = MS
+
+ if(!mining_shuttle) //Not having a mining shuttle is a map issue
+ user << "No mining shuttle signal detected. Please contact Nanotrasen Support."
+ SSshuttle.stationary.Remove(Mport)
+ qdel(Mport)
+ return
+
+ if(!mining_shuttle.canDock(Mport))
+ user << "Unable to secure a valid docking zone. Please try again in an open area near, but not within the aux. mining base."
+ SSshuttle.stationary.Remove(Mport)
+ qdel(Mport)
+ return
+
+ aux_base_console.set_mining_mode() //Lets the colony park the shuttle there, now that it has a dock.
+ user << "Mining shuttle calibration successful! Shuttle interface available at base console."
+ anchored = 1 //Locks in place to mark the landing zone.
+ playsound(src.loc, 'sound/machines/ping.ogg', 50, 0)
+
+/obj/structure/mining_shuttle_beacon/proc/clear_cooldown()
+ anti_spam_cd = 0
+
+/obj/structure/mining_shuttle_beacon/attack_robot(mob/user)
+ return attack_hand(user) //So borgies can help
+
+#undef BAD_ZLEVEL
+#undef BAD_AREA
+#undef ZONE_SET
\ No newline at end of file
diff --git a/code/modules/mining/aux_base_camera.dm b/code/modules/mining/aux_base_camera.dm
index 5b11e9a6b15..596265b5b25 100644
--- a/code/modules/mining/aux_base_camera.dm
+++ b/code/modules/mining/aux_base_camera.dm
@@ -36,7 +36,7 @@ mob/camera/aiEye/remote/base_construction/New(loc)
/obj/machinery/computer/camera_advanced/base_construction
name = "base contruction console"
- desc = "An industrial computer integrated with a camera-assisted rapid construction device."
+ desc = "An industrial computer integrated with a camera-assisted rapid construction drone."
networks = list("SS13")
var/obj/item/weapon/rcd/internal/RCD //Internal RCD. The computer passes user commands to this in order to avoid massive copypaste.
circuit = /obj/item/weapon/circuitboard/computer/base_construction
@@ -49,7 +49,7 @@ mob/camera/aiEye/remote/base_construction/New(loc)
var/fans_remaining = 0 //Number of fans in stock.
var/datum/action/innate/aux_base/install_turret/turret_action = new //Action for spawning turrets
var/turret_stock = 0 //Turrets in stock
- var/obj/machinery/computer/shuttle/auxillary_base/found_aux_console //Tracker for the Aux base console, so the eye can always find it.
+ var/obj/machinery/computer/auxillary_base/found_aux_console //Tracker for the Aux base console, so the eye can always find it.
icon_screen = "mining"
icon_keyboard = "rd_key"
@@ -69,7 +69,7 @@ mob/camera/aiEye/remote/base_construction/New(loc)
var/spawn_spot
if(!found_aux_console)
- found_aux_console = locate(/obj/machinery/computer/shuttle/auxillary_base) in machines
+ found_aux_console = locate(/obj/machinery/computer/auxillary_base) in machines
if(found_aux_console)
spawn_spot = found_aux_console
@@ -87,6 +87,10 @@ mob/camera/aiEye/remote/base_construction/New(loc)
else
return ..()
+/obj/machinery/computer/camera_advanced/base_construction/Destroy()
+ qdel(RCD)
+ return ..()
+
/obj/machinery/computer/camera_advanced/base_construction/GrantActions(mob/living/user)
off_action.target = user
off_action.Grant(user)
@@ -265,7 +269,10 @@ datum/action/innate/aux_base/install_turret/Activate()
owner << "Location is obtructed by something. Please clear the location and try again."
return
- new /obj/machinery/porta_turret/aux_base(turret_turf)
+ var/obj/machinery/porta_turret/aux_base/T = new /obj/machinery/porta_turret/aux_base(turret_turf)
+ if(B.found_aux_console)
+ B.found_aux_console.turrets += T //Add new turret to the console's control
+
B.turret_stock--
owner << "Turret installation complete!"
playsound(turret_turf, 'sound/items/drill_use.ogg', 65, 1)
\ No newline at end of file
diff --git a/code/modules/mining/fulton.dm b/code/modules/mining/fulton.dm
index 3073c3bd085..2ea3d74d506 100644
--- a/code/modules/mining/fulton.dm
+++ b/code/modules/mining/fulton.dm
@@ -84,13 +84,13 @@ var/list/total_extraction_beacons = list()
balloon2 = image('icons/obj/fulton_balloon.dmi',"fulton_expand")
balloon2.pixel_y = 10
balloon2.appearance_flags = RESET_COLOR | RESET_ALPHA | RESET_TRANSFORM
- holder_obj.overlays += balloon2
+ holder_obj.add_overlay(balloon2)
sleep(4)
balloon = image('icons/obj/fulton_balloon.dmi',"fulton_balloon")
balloon.pixel_y = 10
balloon.appearance_flags = RESET_COLOR | RESET_ALPHA | RESET_TRANSFORM
- holder_obj.overlays -= balloon2
- holder_obj.overlays += balloon
+ holder_obj.cut_overlay(balloon2)
+ holder_obj.add_overlay(balloon)
playsound(holder_obj.loc, 'sound/items/fulext_deploy.wav', 50, 1, -3)
animate(holder_obj, pixel_z = 10, time = 20)
sleep(20)
@@ -123,10 +123,10 @@ var/list/total_extraction_beacons = list()
balloon3 = image('icons/obj/fulton_balloon.dmi',"fulton_retract")
balloon3.pixel_y = 10
balloon3.appearance_flags = RESET_COLOR | RESET_ALPHA | RESET_TRANSFORM
- holder_obj.overlays -= balloon
- holder_obj.overlays += balloon3
+ holder_obj.cut_overlay(balloon)
+ holder_obj.add_overlay(balloon3)
sleep(4)
- holder_obj.overlays -= balloon3
+ holder_obj.cut_overlay(balloon3)
A.anchored = 0 // An item has to be unanchored to be extracted in the first place.
A.density = initial(A.density)
animate(holder_obj, pixel_z = 0, time = 5)
diff --git a/code/modules/mining/lavaland/ruins/gym.dm b/code/modules/mining/lavaland/ruins/gym.dm
index 3c8832ffee6..21ccb9344ca 100644
--- a/code/modules/mining/lavaland/ruins/gym.dm
+++ b/code/modules/mining/lavaland/ruins/gym.dm
@@ -93,5 +93,5 @@
animate(user, pixel_y = 0, time = 3)
var/finishmessage = pick("You feel stronger!","You feel like you can take on the world!","You feel robust!","You feel indestructible!")
icon_state = "fitnessweight"
- overlays -= W
+ cut_overlay(W)
user << "[finishmessage]"
\ No newline at end of file
diff --git a/code/modules/mining/mine_items.dm b/code/modules/mining/mine_items.dm
index 1fb4b3786bf..656f99e2490 100644
--- a/code/modules/mining/mine_items.dm
+++ b/code/modules/mining/mine_items.dm
@@ -63,7 +63,7 @@
desc = "Used to call and send the mining shuttle."
circuit = /obj/item/weapon/circuitboard/computer/mining_shuttle
shuttleId = "mining"
- possible_destinations = "mining_home;mining_away;landing_zone_dock"
+ possible_destinations = "mining_home;mining_away;landing_zone_dock;mining_public"
no_destination_swap = 1
var/global/list/dumb_rev_heads = list()
@@ -236,7 +236,7 @@
/obj/item/weapon/survivalcapsule/proc/get_template()
if(template)
return
- template = shelter_templates[template_id]
+ template = SSmapping.shelter_templates[template_id]
if(!template)
throw EXCEPTION("Shelter template ([template_id]) not found!")
qdel(src)
@@ -475,223 +475,4 @@
name = "tubes"
anchored = 1
layer = BELOW_MOB_LAYER
- density = 0
-
-///Mining Base////
-
-/area/shuttle/auxillary_base
- name = "Auxillary Base"
- luminosity = 0 //Lighting gets lost when it lands anyway
-
-/obj/machinery/computer/shuttle/auxillary_base
- name = "auxillary base management console"
- icon = 'icons/obj/terminals.dmi'
- icon_state = "dorm_available"
- shuttleId = "colony_drop"
- desc = "Allows a deployable expedition base to be dropped from the station to a designated mining location. It can also \
-interface with the mining shuttle at the landing site if a mobile beacon is also deployed."
- var/launch_warning = TRUE
-
- req_one_access = list(access_cargo, access_construction, access_heads)
- possible_destinations = null
- clockwork = TRUE
- var/obj/item/device/gps/internal/base/locator
-
-/obj/machinery/computer/shuttle/auxillary_base/New(location, obj/item/weapon/circuitboard/computer/shuttle/C)
- ..()
- locator = new /obj/item/device/gps/internal/base(src)
-
-/obj/machinery/computer/shuttle/auxillary_base/Topic(href, href_list)
- if(href_list["move"])
- if(z != ZLEVEL_STATION && shuttleId == "colony_drop")
- usr << "You can't move the base again!"
- return 0
- if(launch_warning)
- say("Launch sequence activated! Prepare for drop!")
- playsound(loc, 'sound/machines/warning-buzzer.ogg', 70, 0)
- launch_warning = FALSE
- ..()
-
-
-
-/obj/machinery/computer/shuttle/auxillary_base/onShuttleMove(turf/T1, rotation)
- ..()
- if(z == ZLEVEL_MINING) //Avoids double logging and landing on other Z-levels due to badminnery
- feedback_add_details("colonies_dropped", "[x]|[y]|[z]") //Number of times a base has been dropped!
-
-/obj/machinery/computer/shuttle/auxillary_base/proc/set_mining_mode()
- if(z == ZLEVEL_MINING) //The console switches to controlling the mining shuttle once landed.
- req_access = list()
- shuttleId = "mining" //The base can only be dropped once, so this gives the console a new purpose.
- possible_destinations = "mining_home;mining_away;landing_zone_dock"
-
-/obj/item/device/assault_pod/mining
- name = "Landing Field Designator"
- icon_state = "gangtool-purple"
- item_state = "electronic"
- icon = 'icons/obj/device.dmi'
- desc = "Deploy to designate the landing zone of the auxillary base."
- w_class = WEIGHT_CLASS_SMALL
- shuttle_id = "colony_drop"
- var/setting = FALSE
- var/no_restrictions = FALSE //Badmin variable to let you drop the colony ANYWHERE.
-
-/obj/item/device/assault_pod/mining/attack_self(mob/living/user)
- if(setting)
- return
- var/turf/T = get_turf(user)
- var/obj/docking_port/mobile/auxillary_base/base_dock = locate(/obj/docking_port/mobile/auxillary_base) in SSshuttle.mobile
- if(!base_dock) //Not all maps have an Aux base. This object is useless in that case.
- user << "This station is not equipped with an auxillary base. Please contact your Nanotrasen contractor."
- return
- if(!no_restrictions)
- if(T.z != ZLEVEL_MINING)
- user << "Wouldn't do much good dropping a mining base away from the mining area!"
- return
- var/colony_radius = max(width, height)*0.5
- var/list/area_counter = get_areas_in_range(colony_radius, T)
- if(area_counter.len > 1) //Avoid smashing ruins unless you are inside a really big one
- user << "Unable to acquire a targeting lock. Find an area clear of stuctures or entirely within one."
- return
-
- user << "You begin setting the landing zone parameters..."
- setting = TRUE
- if(!do_after(user, 50, target = user)) //You get a few seconds to cancel if you do not want to drop there.
- setting = FALSE
- return
-
- var/area/A = get_area(T)
-
- var/obj/docking_port/stationary/landing_zone = new /obj/docking_port/stationary(T)
- landing_zone.id = "colony_drop(\ref[src])"
- landing_zone.name = "Landing Zone ([T.x], [T.y])"
- landing_zone.dwidth = base_dock.dwidth
- landing_zone.dheight = base_dock.dheight
- landing_zone.width = base_dock.width
- landing_zone.height = base_dock.height
- landing_zone.setDir(base_dock.dir)
- landing_zone.turf_type = T.type
- landing_zone.area_type = A.type
-
- for(var/obj/machinery/computer/shuttle/S in machines)
- if(S.shuttleId == shuttle_id)
- S.possible_destinations += "[landing_zone.id];"
-
-//Serves as a nice mechanic to people get ready for the launch.
- minor_announce("Auxiliary base landing zone coordinates locked in for [get_area(user)]. Launch command now available!")
- user << "Landing zone set."
-
- qdel(src)
-
-/obj/item/device/assault_pod/mining/unrestricted
- name = "omni-locational landing field designator"
- desc = "Allows the deployment of the mining base ANYWHERE. Use with caution."
- no_restrictions = TRUE
-
-
-/obj/docking_port/mobile/auxillary_base
- name = "auxillary base"
- id = "colony_drop"
- //Reminder to map-makers to set these values equal to the size of your base.
- dheight = 4
- dwidth = 4
- width = 9
- height = 9
- var/anti_spam_cd = 0
-
-
-/obj/structure/mining_shuttle_beacon
- name = "mining shuttle beacon"
- desc = "A bluespace beacon calibrated to mark a landing spot for the mining shuttle when deployed near the auxillary mining base."
- anchored = 0
- density = 0
- var/shuttle_ID = "landing_zone_dock"
- icon = 'icons/obj/objects.dmi'
- icon_state = "miningbeacon"
- var/obj/docking_port/stationary/Mport //Linked docking port for the mining shuttle
- pressure_resistance = 200 //So it does not get blown into lava.
- var/anti_spam_cd = 0 //The linking process might be a bit intensive, so this here to prevent over use.
- var/console_range = 15 //Wifi range of the beacon to find the aux base console
-
-/obj/structure/mining_shuttle_beacon/attack_hand(mob/user)
- if(anchored)
- user << "Landing zone already set."
- return
-
- if(anti_spam_cd)
- user << "[src] is currently recalibrating. Please wait."
- return
-
- anti_spam_cd = 1
- addtimer(CALLBACK(src, .proc/clear_cooldown), 100)
-
- var/turf/landing_spot = get_turf(src)
-
- if(landing_spot.z != ZLEVEL_MINING)
- user << "This device is only to be used in a mining zone."
- return
- var/obj/machinery/computer/shuttle/auxillary_base/aux_base_console = locate(/obj/machinery/computer/shuttle/auxillary_base) in machines
- if(!aux_base_console || get_dist(landing_spot, aux_base_console) > console_range)
- user << "The auxillary base's console must be within [console_range] meters in order to interface."
- return //Needs to be near the base to serve as its dock and configure it to control the mining shuttle.
-
-//Mining shuttles may not be created equal, so we find the map's shuttle dock and size accordingly.
-
-
- for(var/S in SSshuttle.stationary)
- var/obj/docking_port/stationary/SM = S //SM is declared outside so it can be checked for null
- if(SM.id == "mining_home" || SM.id == "mining_away")
-
- var/area/A = get_area(landing_spot)
-
- Mport = new(landing_spot)
- Mport.id = "landing_zone_dock"
- Mport.name = "auxillary base landing site"
- Mport.dwidth = SM.dwidth
- Mport.dheight = SM.dheight
- Mport.width = SM.width
- Mport.height = SM.height
- Mport.setDir(dir)
- Mport.turf_type = landing_spot.type
- Mport.area_type = A.type
-
- break
- if(!Mport)
- user << "This station is not equipped with an approprite mining shuttle. Please contact Nanotrasen Support."
- return
- var/search_radius = max(Mport.width, Mport.height)*0.5
- var/list/landing_areas = get_areas_in_range(search_radius, landing_spot)
- for(var/area/shuttle/auxillary_base/AB in landing_areas) //You land NEAR the base, not IN it.
- user << "The mining shuttle must not land within the mining base itself."
- SSshuttle.stationary.Remove(Mport)
- qdel(Mport)
- return
- var/obj/docking_port/mobile/mining_shuttle
- for(var/S in SSshuttle.mobile)
- var/obj/docking_port/mobile/MS = S
- if(MS.id != "mining")
- continue
- mining_shuttle = MS
-
- if(!mining_shuttle) //Not having a mining shuttle is a map issue
- user << "No mining shuttle signal detected. Please contact Nanotrasen Support."
- SSshuttle.stationary.Remove(Mport)
- qdel(Mport)
- return
-
- if(!mining_shuttle.canDock(Mport))
- user << "Unable to secure a valid docking zone. Please try again in an open area near, but not within the aux. mining base."
- SSshuttle.stationary.Remove(Mport)
- qdel(Mport)
- return
-
- aux_base_console.set_mining_mode() //Lets the colony park the shuttle there, now that it has a dock.
- user << "Mining shuttle calibration successful! Shuttle interface available at base console."
- anchored = 1 //Locks in place to mark the landing zone.
- playsound(src.loc, 'sound/machines/ping.ogg', 50, 0)
-
-/obj/structure/mining_shuttle_beacon/proc/clear_cooldown()
- anti_spam_cd = 0
-
-/obj/structure/mining_shuttle_beacon/attack_robot(mob/user)
- return (attack_hand(user)) //So borgies can help
+ density = 0
\ No newline at end of file
diff --git a/code/modules/mob/dead/observer/observer.dm b/code/modules/mob/dead/observer/observer.dm
index 093310c2c4e..ecb7afba91e 100644
--- a/code/modules/mob/dead/observer/observer.dm
+++ b/code/modules/mob/dead/observer/observer.dm
@@ -158,13 +158,13 @@ var/list/image/ghost_images_simple = list() //this is a list of all ghost images
ghost_others = client.prefs.ghost_others
if(hair_image)
- overlays -= hair_image
- ghostimage.overlays -= hair_image
+ cut_overlay(hair_image)
+ ghostimage.add_overlay(hair_image)
hair_image = null
if(facial_hair_image)
- overlays -= facial_hair_image
- ghostimage.overlays -= facial_hair_image
+ cut_overlay(facial_hair_image)
+ ghostimage.add_overlay(facial_hair_image)
facial_hair_image = null
@@ -192,7 +192,7 @@ var/list/image/ghost_images_simple = list() //this is a list of all ghost images
facial_hair_image.color = "#" + facial_hair_color
facial_hair_image.alpha = 200
add_overlay(facial_hair_image)
- ghostimage.overlays += facial_hair_image
+ ghostimage.add_overlay(facial_hair_image)
if(hair_style)
S = hair_styles_list[hair_style]
if(S)
@@ -201,7 +201,7 @@ var/list/image/ghost_images_simple = list() //this is a list of all ghost images
hair_image.color = "#" + hair_color
hair_image.alpha = 200
add_overlay(hair_image)
- ghostimage.overlays += hair_image
+ ghostimage.add_overlay(hair_image)
/*
* Increase the brightness of a color by calculating the average distance between the R, G and B values,
@@ -782,3 +782,8 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp
SSpai.recruitWindow(src)
else
usr << "Can't become a pAI candidate while not dead!"
+
+/mob/dead/observer/CtrlShiftClick(mob/user)
+ if(isobserver(user) && check_rights(R_SPAWN))
+ change_mob_type( /mob/living/carbon/human , null, null, TRUE) //always delmob, ghosts shouldn't be left lingering
+
diff --git a/code/modules/mob/living/blood.dm b/code/modules/mob/living/blood.dm
index 73ae98b59db..5a3a53768e1 100644
--- a/code/modules/mob/living/blood.dm
+++ b/code/modules/mob/living/blood.dm
@@ -6,11 +6,13 @@
if(bleedsuppress)
return
else
- bleedsuppress = 1
- spawn(amount)
- bleedsuppress = 0
- if(stat != DEAD && bleed_rate)
- src << "The blood soaks through your bandage."
+ bleedsuppress = TRUE
+ addtimer(CALLBACK(src, .proc/resume_bleeding), amount)
+
+/mob/living/carbon/human/proc/resume_bleeding()
+ bleedsuppress = 0
+ if(stat != DEAD && bleed_rate)
+ src << "The blood soaks through your bandage."
/mob/living/carbon/monkey/handle_blood()
@@ -236,7 +238,7 @@
if(drop)
if(drop.drips < 3)
drop.drips++
- drop.overlays |= pick(drop.random_icon_states)
+ drop.add_overlay(pick(drop.random_icon_states))
drop.transfer_mob_blood_dna(src)
return
else
@@ -273,4 +275,4 @@
T = get_turf(src)
var/obj/effect/decal/cleanable/oil/B = locate() in T.contents
if(!B)
- B = new(T)
\ No newline at end of file
+ B = new(T)
diff --git a/code/modules/mob/living/brain/say.dm b/code/modules/mob/living/brain/say.dm
index ccbbea31b0e..632716e7776 100644
--- a/code/modules/mob/living/brain/say.dm
+++ b/code/modules/mob/living/brain/say.dm
@@ -9,6 +9,9 @@
message = Gibberish(message, (emp_damage*6))//scrambles the message, gets worse when emp_damage is higher
..()
+/mob/living/brain/get_spans()
+ return ..() | SPAN_ROBOT
+
/mob/living/brain/radio(message, message_mode, list/spans)
if(message_mode && istype(container, /obj/item/device/mmi))
var/obj/item/device/mmi/R = container
diff --git a/code/modules/mob/living/carbon/alien/emote.dm b/code/modules/mob/living/carbon/alien/emote.dm
index 64db11bf4f6..e97bb785bfb 100644
--- a/code/modules/mob/living/carbon/alien/emote.dm
+++ b/code/modules/mob/living/carbon/alien/emote.dm
@@ -21,7 +21,7 @@
key = "roar"
key_third_person = "roars"
message_alien = "roars"
- message_larva = "sofly roars"
+ message_larva = "softly roars"
emote_type = EMOTE_AUDIBLE
/datum/emote/living/alien/roar/run_emote(mob/user, params)
diff --git a/code/modules/mob/living/carbon/alien/larva/update_icons.dm b/code/modules/mob/living/carbon/alien/larva/update_icons.dm
index c99726dfbe0..b56fd6d739f 100644
--- a/code/modules/mob/living/carbon/alien/larva/update_icons.dm
+++ b/code/modules/mob/living/carbon/alien/larva/update_icons.dm
@@ -1,6 +1,6 @@
/mob/living/carbon/alien/larva/regenerate_icons()
- overlays = list()
+ cut_overlays()
update_icons()
/mob/living/carbon/alien/larva/update_icons()
diff --git a/code/modules/mob/living/carbon/alien/special/alien_embryo.dm b/code/modules/mob/living/carbon/alien/special/alien_embryo.dm
index 897ff345e7b..1cd6add23f3 100644
--- a/code/modules/mob/living/carbon/alien/special/alien_embryo.dm
+++ b/code/modules/mob/living/carbon/alien/special/alien_embryo.dm
@@ -102,7 +102,7 @@ var/const/ALIEN_AFK_BRACKET = 450 // 45 seconds
owner.gib(TRUE)
else
owner.adjustBruteLoss(40)
- owner.overlays -= overlay
+ owner.cut_overlay(overlay)
qdel(src)
diff --git a/code/modules/mob/living/carbon/alien/status_procs.dm b/code/modules/mob/living/carbon/alien/status_procs.dm
index 065dd0184a8..653b05ae5a8 100644
--- a/code/modules/mob/living/carbon/alien/status_procs.dm
+++ b/code/modules/mob/living/carbon/alien/status_procs.dm
@@ -5,10 +5,16 @@
/////////////////////////////////// STUNNED ////////////////////////////////////
/mob/living/carbon/alien/Stun(amount, updating = 1, ignore_canstun = 0)
- if(status_flags & CANSTUN || ignore_canstun)
- stunned = max(max(stunned,amount),0) //can't go below 0, getting a low amount of stun doesn't lower your current stun
- if(updating)
- update_canmove()
- else
- // add some movement delay
- move_delay_add = min(move_delay_add + round(amount / 2), 10) // a maximum delay of 10
+ . = ..()
+ if(!.)
+ move_delay_add = min(move_delay_add + round(amount / 2), 10) //a maximum delay of 10
+
+/mob/living/carbon/alien/SetStunned(amount, updating = 1, ignore_canstun = 0)
+ . = ..()
+ if(!.)
+ move_delay_add = min(move_delay_add + round(amount / 2), 10)
+
+/mob/living/carbon/alien/AdjustStunned(amount, updating = 1, ignore_canstun = 0)
+ . = ..()
+ if(!.)
+ move_delay_add = min(move_delay_add + round(amount / 2), 10)
diff --git a/code/modules/mob/living/carbon/emote.dm b/code/modules/mob/living/carbon/emote.dm
index 60b74a1463e..30fa676500c 100644
--- a/code/modules/mob/living/carbon/emote.dm
+++ b/code/modules/mob/living/carbon/emote.dm
@@ -55,7 +55,6 @@
key_third_person = "screeches"
message = "screeches."
mob_type_allowed_typecache = list(/mob/living/carbon/monkey, /mob/living/carbon/alien)
- emote_type = EMOTE_AUDIBLE
/datum/emote/living/carbon/sign
key = "sign"
diff --git a/code/modules/mob/living/carbon/human/death.dm b/code/modules/mob/living/carbon/human/death.dm
index f01aa3fc086..e9c9869d243 100644
--- a/code/modules/mob/living/carbon/human/death.dm
+++ b/code/modules/mob/living/carbon/human/death.dm
@@ -21,7 +21,6 @@
dizziness = 0
jitteriness = 0
- heart_attack = 0
if(istype(loc, /obj/mecha))
var/obj/mecha/M = loc
diff --git a/code/modules/mob/living/carbon/human/human.dm b/code/modules/mob/living/carbon/human/human.dm
index b455fd754ff..cb8bb6cb7c3 100644
--- a/code/modules/mob/living/carbon/human/human.dm
+++ b/code/modules/mob/living/carbon/human/human.dm
@@ -720,8 +720,8 @@
/mob/living/carbon/human/wash_cream()
//clean both to prevent a rare bug
- overlays -=image('icons/effects/creampie.dmi', "creampie_lizard")
- overlays -=image('icons/effects/creampie.dmi', "creampie_human")
+ cut_overlay(image('icons/effects/creampie.dmi', "creampie_lizard"))
+ cut_overlay(image('icons/effects/creampie.dmi', "creampie_human"))
//Turns a mob black, flashes a skeleton overlay
@@ -740,7 +740,7 @@
/mob/living/carbon/human/proc/end_electrocution_animation(image/I)
remove_atom_colour(TEMPORARY_COLOUR_PRIORITY, "#000000")
- overlays -= I
+ cut_overlay(I)
/mob/living/carbon/human/canUseTopic(atom/movable/M, be_close = 0)
if(incapacitated() || lying )
@@ -820,6 +820,7 @@
regenerate_limbs()
regenerate_organs()
remove_all_embedded_objects()
+ set_heartattack(FALSE)
drunkenness = 0
for(var/datum/mutation/human/HM in dna.mutations)
if(HM.quality != POSITIVE)
@@ -895,3 +896,38 @@
.["Make alien"] = "?_src_=vars;makealien=\ref[src]"
.["Make slime"] = "?_src_=vars;makeslime=\ref[src]"
.["Toggle Purrbation"] = "?_src_=vars;purrbation=\ref[src]"
+
+/mob/living/carbon/human/MouseDrop_T(mob/living/target, mob/living/user)
+ if((target != pulling) || (grab_state < GRAB_AGGRESSIVE) || (user != target) || !isliving(target) || !isliving(user)) //Get consent first :^)
+ . = ..()
+ return
+ buckle_mob(target, FALSE, TRUE, TRUE)
+ . = ..()
+
+/mob/living/carbon/human/buckle_mob(mob/living/M, force = FALSE, check_loc = TRUE, yes = FALSE)
+ if(!yes)
+ return
+ if(!is_type_in_typecache(M, can_ride_typecache))
+ M.visible_message("[M] really can't seem to mount [src]...")
+ return
+ if(!riding_datum)
+ riding_datum = new /datum/riding/human(src)
+ if(buckled_mobs && ((M in buckled_mobs) || (buckled_mobs.len >= max_buckled_mobs)))
+ return
+ if(buckled) //NO INFINITE STACKING!!
+ return
+ if(M.incapacitated(FALSE, TRUE) || incapacitated(FALSE, TRUE))
+ M.visible_message("[M] can't hang onto [src]!")
+ return
+ if(iscarbon(M) && (!riding_datum.equip_buckle_inhands(M, 2))) //MAKE SURE THIS IS LAST!!
+ M.visible_message("[M] can't climb onto [src] because [M.p_their()] hands are full!")
+ return
+ . = ..(M, force, check_loc)
+ stop_pulling()
+
+/mob/living/carbon/human/unbuckle_mob(mob/living/M)
+ if(iscarbon(M))
+ if(riding_datum)
+ riding_datum.unequip_buckle_inhands(M)
+ riding_datum.restore_position(M)
+ . = ..(M)
diff --git a/code/modules/mob/living/carbon/human/human_defense.dm b/code/modules/mob/living/carbon/human/human_defense.dm
index a2001c42e8d..be002a01c67 100644
--- a/code/modules/mob/living/carbon/human/human_defense.dm
+++ b/code/modules/mob/living/carbon/human/human_defense.dm
@@ -201,6 +201,9 @@
/mob/living/carbon/human/attack_hand(mob/living/carbon/human/M)
if(..()) //to allow surgery to return properly.
return
+ if(M.a_intent == INTENT_DISARM)
+ if(M.buckled_mobs && (src in M.buckled_mobs) && M.riding_datum)
+ M.riding_datum.force_dismount(src)
dna.species.spec_attack_hand(M, src)
@@ -458,9 +461,10 @@
var/obj/item/clothing/gloves/G = gloves
gloves_siemens_coeff = G.siemens_coefficient
siemens_coeff = gloves_siemens_coeff
- if(heart_attack && !illusion)
+ if(undergoing_cardiac_arrest() && !illusion)
if(shock_damage * siemens_coeff >= 1 && prob(25))
- heart_attack = 0
+ var/obj/item/organ/heart/heart = getorganslot("heart")
+ heart.beating = TRUE
if(stat == CONSCIOUS)
src << "You feel your heart beating again!"
. = ..(shock_damage,source,siemens_coeff,safety,override,tesla_shock, illusion, stun)
diff --git a/code/modules/mob/living/carbon/human/human_defines.dm b/code/modules/mob/living/carbon/human/human_defines.dm
index b34f2da7eb8..ebcc5786692 100644
--- a/code/modules/mob/living/carbon/human/human_defines.dm
+++ b/code/modules/mob/living/carbon/human/human_defines.dm
@@ -46,7 +46,8 @@ var/global/default_martial_art = new/datum/martial_art
var/name_override //For temporary visible name changes
- var/heart_attack = 0
-
var/drunkenness = 0 //Overall drunkenness - check handle_alcohol() in life.dm for effects
var/datum/personal_crafting/handcrafting
+ can_buckle = TRUE
+ buckle_lying = FALSE
+ can_ride_typecache = list(/mob/living/carbon/human)
diff --git a/code/modules/mob/living/carbon/human/human_movement.dm b/code/modules/mob/living/carbon/human/human_movement.dm
index e4460dd3090..a5f282469cc 100644
--- a/code/modules/mob/living/carbon/human/human_movement.dm
+++ b/code/modules/mob/living/carbon/human/human_movement.dm
@@ -55,7 +55,10 @@
//End bloody footprints
S.step_action()
-
+/mob/living/carbon/human/Moved()
+ . = ..()
+ if(buckled_mobs && buckled_mobs.len && riding_datum)
+ riding_datum.on_vehicle_move()
/mob/living/carbon/human/Process_Spacemove(movement_dir = 0) //Temporary laziness thing. Will change to handles by species reee.
if(..())
diff --git a/code/modules/mob/living/carbon/human/life.dm b/code/modules/mob/living/carbon/human/life.dm
index 264bf56cbe0..f055eca65ff 100644
--- a/code/modules/mob/living/carbon/human/life.dm
+++ b/code/modules/mob/living/carbon/human/life.dm
@@ -140,10 +140,8 @@
/mob/living/carbon/human/proc/get_thermal_protection()
var/thermal_protection = 0 //Simple check to estimate how protected we are against multiple temperatures
-
if(ismob(loc))
- thermal_protection = FIRE_IMMUNITY_SUIT_MAX_TEMP_PROTECT //because lazy
-
+ thermal_protection = FIRE_IMMUNITY_SUIT_MAX_TEMP_PROTECT //because lazy and insulated by being inside someone
if(wear_suit)
if(wear_suit.max_heat_protection_temperature >= FIRE_SUIT_MAX_TEMP_PROTECT)
thermal_protection += (wear_suit.max_heat_protection_temperature*0.7)
@@ -169,7 +167,6 @@
//This proc returns a number made up of the flags for body parts which you are protected on. (such as HEAD, CHEST, GROIN, etc. See setup.dm for the full list)
/mob/living/carbon/human/proc/get_heat_protection_flags(temperature) //Temperature is the temperature you're being exposed to.
var/thermal_protection_flags = 0
-
//Handle normal clothing
if(head)
if(head.max_heat_protection_temperature && head.max_heat_protection_temperature >= temperature)
@@ -254,12 +251,12 @@
if(dna.check_mutation(COLDRES))
return 1 //Fully protected from the cold.
+ if(ismob(loc))
+ return 1 //because lazy and being inside somemone insulates you from space
+
if(dna && (RESISTCOLD in dna.species.species_traits))
return 1
- if(ismob(loc))
- return 1 //because lazy
-
temperature = max(temperature, 2.7) //There is an occasional bug where the temperature is miscalculated in ares with a small amount of gas on them, so this is necessary to ensure that that bug does not affect this calculation. Space's temperature is 2.7K and most suits that are intended to protect against any cold, protect down to 2.0K.
var/thermal_protection_flags = get_cold_protection_flags(temperature)
@@ -338,27 +335,50 @@
if(!has_embedded_objects())
clear_alert("embeddedobject")
+/mob/living/carbon/human/proc/can_heartattack()
+ CHECK_DNA_AND_SPECIES(src)
+ if(NOBLOOD in dna.species.species_traits)
+ return FALSE
+ return TRUE
+
+/mob/living/carbon/human/proc/undergoing_cardiac_arrest()
+ if(!can_heartattack())
+ return FALSE
+ var/obj/item/organ/heart/heart = getorganslot("heart")
+ if(istype(heart) && heart.beating)
+ return FALSE
+ return TRUE
+
+/mob/living/carbon/human/proc/set_heartattack(status)
+ if(!can_heartattack())
+ return FALSE
+
+ var/obj/item/organ/heart/heart = getorganslot("heart")
+ if(!istype(heart))
+ return
+
+ heart.beating = !status
+
/mob/living/carbon/human/proc/handle_heart()
- CHECK_DNA_AND_SPECIES(src)
- var/needs_heart = (!(NOBLOOD in dna.species.species_traits))
+ if(!can_heartattack())
+ return
+
var/we_breath = (!(NOBREATH in dna.species.species_traits))
- if(heart_attack)
- if(!needs_heart)
- heart_attack = FALSE
- else if(we_breath)
- if(losebreath < 3)
- losebreath += 2
- adjustOxyLoss(5)
- adjustBruteLoss(1)
- else
- // even though we don't require oxygen, our blood still needs
- // circulation, and without it, our tissues die and start
- // gaining toxins
- adjustBruteLoss(3)
- if(src.reagents)
- src.reagents.add_reagent("toxin", 2)
+
+ if(!undergoing_cardiac_arrest())
+ return
+
+ // Cardiac arrest, unless corazone
+ if(reagents.get_reagent_amount("corazone"))
+ return
+
+ if(we_breath)
+ adjustOxyLoss(8)
+ Paralyse(4)
+ // Tissues die without blood circulation
+ adjustBruteLoss(2)
/*
Alcohol Poisoning Chart
diff --git a/code/modules/mob/living/carbon/human/species.dm b/code/modules/mob/living/carbon/human/species.dm
index 828419cb5e0..ebcfeb8d802 100644
--- a/code/modules/mob/living/carbon/human/species.dm
+++ b/code/modules/mob/living/carbon/human/species.dm
@@ -15,6 +15,7 @@
var/name = null // this is the fluff name. these will be left generic (such as 'Lizardperson' for the lizard race) so servers can change them to whatever
var/roundstart = 0 // can this mob be chosen at roundstart? (assuming the config option is checked?)
var/default_color = "#FFF" // if alien colors are disabled, this is the color that will be used by that race
+
var/sexes = 1 // whether or not the race has sexual characteristics. at the moment this is only 0 for skeletons and shadows
var/hair_color = null // this allows races to have specific hair colors... if null, it uses the H's hair/facial hair colors. if "mutcolor", it uses the H's mutant_color
var/hair_alpha = 255 // the alpha used by the hair. 255 is completely solid, 0 is transparent.
@@ -60,9 +61,6 @@
//Flight and floating
var/override_float = 0
- //Eyes
- var/obj/item/organ/eyes/mutanteyes = /obj/item/organ/eyes
-
//Citadel snowflake
var/fixed_mut_color2 = ""
var/fixed_mut_color3 = ""
@@ -71,6 +69,8 @@
var/lang_spoken = HUMAN
var/lang_understood = HUMAN
+ //Eyes
+ var/obj/item/organ/eyes/mutanteyes = /obj/item/organ/eyes
///////////
// PROCS //
///////////
@@ -117,6 +117,7 @@
var/obj/item/organ/heart/heart = C.getorganslot("heart")
var/obj/item/organ/lungs/lungs = C.getorganslot("lungs")
var/obj/item/organ/appendix/appendix = C.getorganslot("appendix")
+ var/obj/item/organ/eyes/eyes = C.getorganslot("eyes")
if((NOBLOOD in species_traits) && heart)
heart.Remove(C)
@@ -126,9 +127,14 @@
heart.Insert(C)
if(lungs)
- lungs.Remove(C)
qdel(lungs)
lungs = null
+
+ if(eyes)
+ qdel(eyes)
+ eyes = new mutanteyes
+ mutanteyes.Insert(C)
+
if((!(NOBREATH in species_traits)) && !lungs)
if(mutantlungs)
lungs = new mutantlungs()
@@ -137,7 +143,6 @@
lungs.Insert(C)
if((NOHUNGER in species_traits) && appendix)
- appendix.Remove(C)
qdel(appendix)
else if((!(NOHUNGER in species_traits)) && (!appendix))
appendix = new()
@@ -248,6 +253,7 @@
var/obj/item/bodypart/head/HD = H.get_bodypart("head")
+
// eyes
var/has_eyes = TRUE
@@ -397,7 +403,6 @@
if("taur" in mutant_bodyparts)
if(!H.dna.features["taur"] || H.dna.features["taur"] == "None")
bodyparts_to_add -= "taur"
- else
//Digitigrade legs are stuck in the phantom zone between true limbs and mutant bodyparts. Mainly it just needs more agressive updating than most limbs.
var/update_needed = FALSE
@@ -909,6 +914,7 @@
hunger_rate = 3 * HUNGER_FACTOR
H.nutrition = max(0, H.nutrition - hunger_rate)
+
if (H.nutrition > NUTRITION_LEVEL_FULL)
if(H.overeatduration < 600) //capped so people don't take forever to unfat
H.overeatduration++
@@ -1149,7 +1155,18 @@
/datum/species/proc/disarm(mob/living/carbon/human/user, mob/living/carbon/human/target, datum/martial_art/attacker_style)
- if(target.check_block())
+ var/aim_for_mouth = user.zone_selected == "mouth"
+ var/target_on_help_and_unarmed = target.a_intent == INTENT_HELP && !target.get_active_held_item()
+ var/target_aiming_for_mouth = target.zone_selected == "mouth"
+ var/target_restrained = target.restrained()
+ if(aim_for_mouth && ( target_on_help_and_unarmed || target_restrained || target_aiming_for_mouth))
+ playsound(target.loc, 'sound/weapons/slap.ogg', 50, 1, -1)
+ user.visible_message("[user] slaps [target] in the face!",
+ "You slap [target] in the face! ",\
+ "You hear a slap.")
+ target.endTailWag()
+ return FALSE
+ else if(target.check_block())
target.visible_message("[target] blocks [user]'s disarm attempt!")
return 0
if(attacker_style && attacker_style.disarm_act(user,target))
@@ -1559,4 +1576,4 @@
#undef COLD_DAMAGE_LEVEL_1
#undef COLD_DAMAGE_LEVEL_2
-#undef COLD_DAMAGE_LEVEL_3
\ No newline at end of file
+#undef COLD_DAMAGE_LEVEL_3
diff --git a/code/modules/mob/living/carbon/human/status_procs.dm b/code/modules/mob/living/carbon/human/status_procs.dm
index 3a99dda7b06..5ee8591fc62 100644
--- a/code/modules/mob/living/carbon/human/status_procs.dm
+++ b/code/modules/mob/living/carbon/human/status_procs.dm
@@ -1,11 +1,11 @@
/mob/living/carbon/human/Stun(amount, updating = 1, ignore_canstun = 0)
amount = dna.species.spec_stun(src,amount)
- ..()
+ return ..()
/mob/living/carbon/human/Weaken(amount, updating = 1, ignore_canstun = 0)
amount = dna.species.spec_stun(src,amount)
- ..()
+ return ..()
/mob/living/carbon/human/cure_husk()
. = ..()
diff --git a/code/modules/mob/living/carbon/update_icons.dm b/code/modules/mob/living/carbon/update_icons.dm
index d59c19e3951..66b105869d5 100644
--- a/code/modules/mob/living/carbon/update_icons.dm
+++ b/code/modules/mob/living/carbon/update_icons.dm
@@ -30,13 +30,14 @@
var/list/overlays_standing[TOTAL_LAYERS]
/mob/living/carbon/proc/apply_overlay(cache_index)
- var/image/I = overlays_standing[cache_index]
+ var/I = overlays_standing[cache_index]
if(I)
add_overlay(I)
/mob/living/carbon/proc/remove_overlay(cache_index)
- if(overlays_standing[cache_index])
- overlays -= overlays_standing[cache_index]
+ var/I = overlays_standing[cache_index]
+ if(I)
+ cut_overlay(I)
overlays_standing[cache_index] = null
/mob/living/carbon/regenerate_icons()
@@ -106,9 +107,9 @@
var/obj/item/bodypart/BP = X
if(BP.dmg_overlay_type)
if(BP.brutestate)
- standing.overlays += "[BP.dmg_overlay_type]_[BP.body_zone]_[BP.brutestate]0" //we're adding icon_states of the base image as overlays
+ standing.add_overlay("[BP.dmg_overlay_type]_[BP.body_zone]_[BP.brutestate]0") //we're adding icon_states of the base image as overlays
if(BP.burnstate)
- standing.overlays += "[BP.dmg_overlay_type]_[BP.body_zone]_0[BP.burnstate]"
+ standing.add_overlay("[BP.dmg_overlay_type]_[BP.body_zone]_0[BP.burnstate]")
apply_overlay(DAMAGE_LAYER)
diff --git a/code/modules/mob/living/death.dm b/code/modules/mob/living/death.dm
index 6cbd78c19e3..29b61dbf964 100644
--- a/code/modules/mob/living/death.dm
+++ b/code/modules/mob/living/death.dm
@@ -72,4 +72,12 @@
update_canmove()
med_hud_set_health()
med_hud_set_status()
+
+ for(var/s in ownedSoullinks)
+ var/datum/soullink/S = s
+ S.ownerDies(gibbed)
+ for(var/s in sharedSoullinks)
+ var/datum/soullink/S = s
+ S.sharerDies(gibbed)
+
return TRUE
diff --git a/code/modules/mob/living/emote.dm b/code/modules/mob/living/emote.dm
index 4ec2fed2ac4..6ba12577d1a 100644
--- a/code/modules/mob/living/emote.dm
+++ b/code/modules/mob/living/emote.dm
@@ -462,6 +462,10 @@
user.spin(20, 1)
if(istype(user, /mob/living/silicon/robot))
var/mob/living/silicon/robot/R = user
- if(R.riding_datum)
- R.riding_datum.force_dismount()
- ..()
\ No newline at end of file
+ if(R.buckled_mobs)
+ for(var/mob/M in R.buckled_mobs)
+ if(R.riding_datum)
+ R.riding_datum.force_dismount(M)
+ else
+ R.unbuckle_all_mobs()
+ ..()
diff --git a/code/modules/mob/living/living.dm b/code/modules/mob/living/living.dm
index fae663d4b8b..6ca93a218b5 100644
--- a/code/modules/mob/living/living.dm
+++ b/code/modules/mob/living/living.dm
@@ -15,7 +15,8 @@
real_name = name
var/datum/atom_hud/data/human/medical/advanced/medhud = huds[DATA_HUD_MEDICAL_ADVANCED]
medhud.add_to_hud(src)
- faction |= "\ref[src]"
+ faction += "\ref[src]"
+
/mob/living/prepare_huds()
..()
@@ -30,6 +31,7 @@
ranged_ability.remove_ranged_ability(src)
if(buckled)
buckled.unbuckle_mob(src,force=1)
+ QDEL_NULL(riding_datum)
for(var/mob/living/simple_animal/drone/D in player_list)
for(var/image/I in staticOverlays)
@@ -158,11 +160,10 @@
return 1
+ //okay, so we didn't switch. but should we push?
// Handle grabbing, stomping, and such of micros!
if(handle_micro_bump_other(M))
return
-
- //okay, so we didn't switch. but should we push?
//not if he's not CANPUSH of course
if(!(M.status_flags & CANPUSH))
return 1
@@ -195,7 +196,12 @@
return
if(pulling == AM)
stop_pulling()
+ var/current_dir
+ if(isliving(AM))
+ current_dir = AM.dir
step(AM, t)
+ if(current_dir)
+ AM.setDir(current_dir)
now_pushing = 0
//mob verbs are a lot faster than object verbs
@@ -920,3 +926,8 @@
"[C] topples over [src]!", \
"[C] leaps out of [src]'s way!")]")
C.Weaken(2)
+
+/mob/living/post_buckle_mob(mob/living/M)
+ if(riding_datum)
+ riding_datum.handle_vehicle_offsets()
+ riding_datum.handle_vehicle_layer()
\ No newline at end of file
diff --git a/code/modules/mob/living/living_defines.dm b/code/modules/mob/living/living_defines.dm
index da4d0ca14f1..39fb8c1adb5 100644
--- a/code/modules/mob/living/living_defines.dm
+++ b/code/modules/mob/living/living_defines.dm
@@ -75,3 +75,5 @@
var/list/implants = null
var/tesla_ignore = FALSE
+
+ var/datum/riding/riding_datum
\ No newline at end of file
diff --git a/code/modules/mob/living/say.dm b/code/modules/mob/living/say.dm
index 7505077f680..aa7600ef8fb 100644
--- a/code/modules/mob/living/say.dm
+++ b/code/modules/mob/living/say.dm
@@ -251,8 +251,8 @@ var/list/crit_allowed_modes = list(MODE_WHISPER,MODE_CHANGELING,MODE_ALIEN)
var/mob/living/carbon/C = src
var/obj/item/organ/vocal_cords/V = C.getorganslot("vocal_cords")
if(V && V.can_speak_with())
- C.say(V.handle_speech(message), spans = V.spans, sanitize = FALSE)
- V.speak_with(message) //words come before actions
+ V.handle_speech(message) //message
+ V.speak_with(message) //action
return TRUE
return FALSE
diff --git a/code/modules/mob/living/silicon/ai/life.dm b/code/modules/mob/living/silicon/ai/life.dm
index e3631a56d80..e2b2e29e3d0 100644
--- a/code/modules/mob/living/silicon/ai/life.dm
+++ b/code/modules/mob/living/silicon/ai/life.dm
@@ -53,11 +53,11 @@
if(POWER_REQ_NONE)
return FALSE
if(POWER_REQ_ALL)
- return !T || !A || ((!A.master.power_equip || isspaceturf(T)) && !is_type_in_list(loc, list(/obj/item, /obj/mecha)))
+ return !T || !A || ((!A.power_equip || isspaceturf(T)) && !is_type_in_list(loc, list(/obj/item, /obj/mecha)))
if(POWER_REQ_CLOCKCULT)
for(var/obj/effect/clockwork/sigil/transmission/ST in range(src, SIGIL_ACCESS_RANGE))
return FALSE
- return !T || !A || (!istype(T, /turf/open/floor/clockwork) && (!A.master.power_equip || isspaceturf(T)) && !is_type_in_list(loc, list(/obj/item, /obj/mecha)))
+ return !T || !A || (!istype(T, /turf/open/floor/clockwork) && (!A.power_equip || isspaceturf(T)) && !is_type_in_list(loc, list(/obj/item, /obj/mecha)))
/mob/living/silicon/ai/updatehealth()
if(status_flags & GODMODE)
@@ -97,7 +97,7 @@
sleep(50)
var/turf/T = get_turf(src)
var/area/AIarea = get_area(src)
- if(AIarea && AIarea.master.power_equip)
+ if(AIarea && AIarea.power_equip)
if(!isspaceturf(T))
ai_restore_power()
return
@@ -119,7 +119,7 @@
T = get_turf(src)
AIarea = get_area(src)
if(AIarea)
- for(var/area/A in AIarea.master.related)
+ for(var/area/A in AIarea.related)
for (var/obj/machinery/power/apc/APC in A)
if (!(APC.stat & BROKEN))
theAPC = APC
@@ -132,7 +132,7 @@
src << "Lost connection with the APC!"
aiRestorePowerRoutine = POWER_RESTORATION_SEARCH_APC
return
- if(AIarea.master.power_equip)
+ if(AIarea.power_equip)
if(!isspaceturf(T))
ai_restore_power()
return
@@ -149,8 +149,6 @@
theAPC.ui_interact(src, state = conscious_state)
apc_override = 0
aiRestorePowerRoutine = POWER_RESTORATION_APC_FOUND
- src << "Here are your current laws:"
- show_laws()
sleep(50)
theAPC = null
diff --git a/code/modules/mob/living/silicon/laws.dm b/code/modules/mob/living/silicon/laws.dm
index dc31ff23d11..4841b27e3d7 100644
--- a/code/modules/mob/living/silicon/laws.dm
+++ b/code/modules/mob/living/silicon/laws.dm
@@ -5,65 +5,79 @@
if (!laws)
make_laws()
-/mob/living/silicon/proc/set_law_sixsixsix(law)
+/mob/living/silicon/proc/post_lawchange(announce = TRUE)
throw_alert("newlaw", /obj/screen/alert/newlaw)
+ if(announce && last_lawchange_announce != world.time)
+ src << "Your laws have been changed."
+ addtimer(CALLBACK(src, .proc/show_laws), 0)
+ last_lawchange_announce = world.time
+
+/mob/living/silicon/proc/set_law_sixsixsix(law, announce = TRUE)
laws_sanity_check()
laws.set_law_sixsixsix(law)
+ post_lawchange(announce)
-/mob/living/silicon/proc/set_zeroth_law(law, law_borg)
- throw_alert("newlaw", /obj/screen/alert/newlaw)
+/mob/living/silicon/proc/set_zeroth_law(law, law_borg, announce = TRUE)
laws_sanity_check()
laws.set_zeroth_law(law, law_borg)
+ post_lawchange(announce)
-/mob/living/silicon/proc/add_inherent_law(law)
- throw_alert("newlaw", /obj/screen/alert/newlaw)
+/mob/living/silicon/proc/add_inherent_law(law, announce = TRUE)
laws_sanity_check()
laws.add_inherent_law(law)
+ post_lawchange(announce)
-/mob/living/silicon/proc/clear_inherent_laws()
- throw_alert("newlaw", /obj/screen/alert/newlaw)
+/mob/living/silicon/proc/clear_inherent_laws(announce = TRUE)
laws_sanity_check()
laws.clear_inherent_laws()
+ post_lawchange(announce)
-/mob/living/silicon/proc/add_supplied_law(number, law)
- throw_alert("newlaw", /obj/screen/alert/newlaw)
+/mob/living/silicon/proc/add_supplied_law(number, law, announce = TRUE)
laws_sanity_check()
laws.add_supplied_law(number, law)
+ post_lawchange(announce)
-/mob/living/silicon/proc/clear_supplied_laws()
- throw_alert("newlaw", /obj/screen/alert/newlaw)
+/mob/living/silicon/proc/clear_supplied_laws(announce = TRUE)
laws_sanity_check()
laws.clear_supplied_laws()
+ post_lawchange(announce)
-/mob/living/silicon/proc/add_ion_law(law)
- throw_alert("newlaw", /obj/screen/alert/newlaw)
+/mob/living/silicon/proc/add_ion_law(law, announce = TRUE)
laws_sanity_check()
laws.add_ion_law(law)
+ post_lawchange(announce)
-/mob/living/silicon/proc/replace_random_law(law,groups)
- throw_alert("newlaw", /obj/screen/alert/newlaw)
+/mob/living/silicon/proc/replace_random_law(law, groups, announce = TRUE)
laws_sanity_check()
- laws.replace_random_law(law,groups)
+ . = laws.replace_random_law(law,groups)
+ post_lawchange(announce)
-/mob/living/silicon/proc/remove_law(number)
- throw_alert("newlaw", /obj/screen/alert/newlaw)
+/mob/living/silicon/proc/shuffle_laws(list/groups, announce = TRUE)
laws_sanity_check()
- laws.remove_law(number)
+ laws.shuffle_laws(groups)
+ post_lawchange(announce)
-/mob/living/silicon/proc/clear_ion_laws()
- throw_alert("newlaw", /obj/screen/alert/newlaw)
+/mob/living/silicon/proc/remove_law(number, announce = TRUE)
+ laws_sanity_check()
+ . = laws.remove_law(number)
+ post_lawchange(announce)
+
+/mob/living/silicon/proc/clear_ion_laws(announce = TRUE)
laws_sanity_check()
laws.clear_ion_laws()
+ post_lawchange(announce)
/mob/living/silicon/proc/make_laws()
laws = new /datum/ai_laws
laws.set_laws_config()
laws.associate(src)
-/mob/living/silicon/proc/clear_zeroth_law(force)
+/mob/living/silicon/proc/clear_zeroth_law(force, announce = TRUE)
laws_sanity_check()
laws.clear_zeroth_law(force)
+ post_lawchange(announce)
-/mob/living/silicon/proc/clear_law_sixsixsix(force)
+/mob/living/silicon/proc/clear_law_sixsixsix(force, announce = TRUE)
laws_sanity_check()
laws.clear_law_sixsixsix(force)
+ post_lawchange(announce)
\ No newline at end of file
diff --git a/code/modules/mob/living/silicon/robot/life.dm b/code/modules/mob/living/silicon/robot/life.dm
index 478a98f50d6..5d0b07e0ac8 100644
--- a/code/modules/mob/living/silicon/robot/life.dm
+++ b/code/modules/mob/living/silicon/robot/life.dm
@@ -102,9 +102,11 @@
return
/mob/living/silicon/robot/update_fire()
- overlays -= image("icon"='icons/mob/OnFire.dmi', "icon_state"="Generic_mob_burning")
+ var/I = image("icon"='icons/mob/OnFire.dmi', "icon_state"="Generic_mob_burning")
if(on_fire)
- add_overlay(image("icon"='icons/mob/OnFire.dmi', "icon_state"="Generic_mob_burning"))
+ add_overlay(I)
+ else
+ cut_overlay(I)
/mob/living/silicon/robot/update_canmove()
if(stat || buckled || lockcharge)
diff --git a/code/modules/mob/living/silicon/robot/robot.dm b/code/modules/mob/living/silicon/robot/robot.dm
index 1c916d98e01..11da6935561 100644
--- a/code/modules/mob/living/silicon/robot/robot.dm
+++ b/code/modules/mob/living/silicon/robot/robot.dm
@@ -91,7 +91,7 @@
can_buckle = TRUE
buckle_lying = FALSE
- var/datum/riding/cyborg/riding_datum = null
+ can_ride_typecache = list(/mob/living/carbon/human)
/mob/living/silicon/robot/New(loc)
spark_system = new /datum/effect_system/spark_spread()
@@ -610,7 +610,7 @@
if(src.camera)
if(!updating)
updating = 1
- addtimer(CALLBACK(.proc/do_camera_update, oldLoc), BORG_CAMERA_BUFFER)
+ addtimer(CALLBACK(src, .proc/do_camera_update, oldLoc), BORG_CAMERA_BUFFER)
if(module)
if(istype(module, /obj/item/weapon/robot_module/janitor))
var/turf/tile = loc
@@ -1002,13 +1002,15 @@
/mob/living/silicon/robot/MouseDrop_T(mob/living/M, mob/living/user)
. = ..()
- if(!(M in buckled_mobs))
+ if(!(M in buckled_mobs) && isliving(M))
buckle_mob(M)
/mob/living/silicon/robot/buckle_mob(mob/living/M, force = FALSE, check_loc = TRUE)
+ if(!is_type_in_typecache(M, can_ride_typecache))
+ M.visible_message("[M] really can't seem to mount the [src]...")
+ return
if(!riding_datum)
- riding_datum = new /datum/riding/cyborg
- riding_datum.ridden = src
+ riding_datum = new /datum/riding/cyborg(src)
if(buckled_mobs)
if(buckled_mobs.len >= max_buckled_mobs)
return
@@ -1020,69 +1022,18 @@
return
if(M.restrained())
return
- if(iscyborg(M))
- M.visible_message("[M] really can't seem to mount the [src]...")
- return
- if(isbot(M))
- M.visible_message("No. Just... no.")
- return
if(module)
if(!module.allow_riding)
M.visible_message("Unfortunately, [M] just can't seem to hold onto [src]!")
return
- if(iscarbon(M))
- if(!equip_buckle_inhands(M)) //MAKE SURE THIS IS LAST!
- M.visible_message("[M] can't climb onto [src] because his hands are full!")
- return
+ if(iscarbon(M) && (!riding_datum.equip_buckle_inhands(M, 1)))
+ M.visible_message("[M] can't climb onto [src] because his hands are full!")
+ return
. = ..(M, force, check_loc)
- riding_datum.handle_vehicle_offsets()
/mob/living/silicon/robot/unbuckle_mob(mob/user)
if(iscarbon(user))
- unequip_buckle_inhands(user)
+ if(riding_datum)
+ riding_datum.unequip_buckle_inhands(user)
+ riding_datum.restore_position(user)
. = ..(user)
- riding_datum.restore_position(user)
-
-/mob/living/silicon/robot/proc/unequip_buckle_inhands(mob/living/carbon/user)
- for(var/obj/item/cyborgride_offhand/O in user.contents)
- if(O.ridden != src)
- CRASH("RIDING OFFHAND ON WRONG MOB")
- continue
- if(O.selfdeleting)
- continue
- else
- qdel(O)
- return TRUE
-
-/mob/living/silicon/robot/proc/equip_buckle_inhands(mob/living/carbon/user)
- var/obj/item/cyborgride_offhand/inhand = new /obj/item/cyborgride_offhand(user)
- inhand.rider = user
- inhand.ridden = src
- return user.put_in_hands(inhand, TRUE)
-
-/obj/item/cyborgride_offhand
- name = "offhand"
- icon = 'icons/obj/weapons.dmi'
- icon_state = "offhand"
- w_class = WEIGHT_CLASS_HUGE
- flags = ABSTRACT | DROPDEL | NOBLUDGEON
- resistance_flags = INDESTRUCTIBLE | LAVA_PROOF | FIRE_PROOF | UNACIDABLE | ACID_PROOF
- var/mob/living/carbon/rider
- var/mob/living/silicon/robot/ridden
- var/selfdeleting = FALSE
-
-/obj/item/cyborgride_offhand/dropped()
- selfdeleting = TRUE
- . = ..()
-
-/obj/item/cyborgride_offhand/equipped()
- if(loc != rider)
- selfdeleting = TRUE
- qdel(src)
- . = ..()
-
-/obj/item/cyborgride_offhand/Destroy()
- if(selfdeleting)
- if(rider in ridden.buckled_mobs)
- ridden.unbuckle_mob(rider)
- . = ..()
\ No newline at end of file
diff --git a/code/modules/mob/living/silicon/robot/robot_defense.dm b/code/modules/mob/living/silicon/robot/robot_defense.dm
index 1266afa7960..76be974fcf9 100644
--- a/code/modules/mob/living/silicon/robot/robot_defense.dm
+++ b/code/modules/mob/living/silicon/robot/robot_defense.dm
@@ -121,7 +121,7 @@
ai_is_antag = (connected_ai.mind.special_role == "traitor")
if(ai_is_antag)
src << "ALERT: Foreign software execution prevented."
- connected_ai << "ALERT: Cyborg unit \[[src]] successfuly defended against subversion."
+ connected_ai << "ALERT: Cyborg unit \[[src]] successfully defended against subversion."
log_game("[key_name(user)] attempted to emag cyborg [key_name(src)], but they were slaved to traitor AI [connected_ai].")
return
@@ -131,13 +131,8 @@
connected_ai = null
message_admins("[key_name_admin(user)] emagged cyborg [key_name_admin(src)]. Laws overridden.")
log_game("[key_name(user)] emagged cyborg [key_name(src)]. Laws overridden.")
- clear_supplied_laws()
- clear_inherent_laws()
- clear_zeroth_law(0)
- laws = new /datum/ai_laws/syndicate_override
var/time = time2text(world.realtime,"hh:mm:ss")
lawchanges.Add("[time] : [user.name]([user.key]) emagged [name]([key])")
- set_zeroth_law("Only [user.real_name] and people they designate as being such are Syndicate Agents.")
src << "ALERT: Foreign software detected."
sleep(5)
src << "Initiating diagnostics..."
@@ -151,9 +146,10 @@
src << "> N"
sleep(20)
src << "ERRORERRORERROR"
- src << "Obey these laws:"
- laws.show_laws(src)
src << "ALERT: [user.real_name] is your new master. Obey your new laws and their commands."
+ laws = new /datum/ai_laws/syndicate_override
+ set_zeroth_law("Only [user.real_name] and people they designate as being such are Syndicate Agents.")
+ laws.associate(src)
update_icons()
diff --git a/code/modules/mob/living/silicon/silicon.dm b/code/modules/mob/living/silicon/silicon.dm
index f74b19b93d3..03251326678 100644
--- a/code/modules/mob/living/silicon/silicon.dm
+++ b/code/modules/mob/living/silicon/silicon.dm
@@ -15,6 +15,7 @@
var/syndicate = 0
var/datum/ai_laws/laws = null//Now... THEY ALL CAN ALL HAVE LAWS
+ var/last_lawchange_announce = 0
var/list/alarms_to_show = list()
var/list/alarms_to_clear = list()
var/designation = ""
diff --git a/code/modules/mob/living/silicon/silicon_defense.dm b/code/modules/mob/living/silicon/silicon_defense.dm
index 06114cf1bf0..c951360dae2 100644
--- a/code/modules/mob/living/silicon/silicon_defense.dm
+++ b/code/modules/mob/living/silicon/silicon_defense.dm
@@ -77,11 +77,11 @@
"[M] punches [src], but doesn't leave a dent.", null, COMBAT_MESSAGE_RANGE)
return 0
-/mob/living/silicon/electrocute_act(shock_damage, obj/source, siemens_coeff = 1, safety = 0, tesla_shock = 0, illusion = 0)
+/mob/living/silicon/electrocute_act(shock_damage, obj/source, siemens_coeff = 1, safety = 0, tesla_shock = 0, illusion = 0, stun = TRUE)
if(buckled_mobs)
for(var/mob/living/M in buckled_mobs)
unbuckle_mob(M)
- M.electrocute_act(shock_damage/100, source, siemens_coeff, safety, tesla_shock, illusion) //Hard metal shell conducts!
+ M.electrocute_act(shock_damage/100, source, siemens_coeff, safety, tesla_shock, illusion, stun) //Hard metal shell conducts!
return 0 //So borgs they don't die trying to fix wiring
/mob/living/silicon/emp_act(severity)
diff --git a/code/modules/mob/living/silicon/status_procs.dm b/code/modules/mob/living/silicon/status_procs.dm
index b3e0a088f36..c14e6c254f9 100644
--- a/code/modules/mob/living/silicon/status_procs.dm
+++ b/code/modules/mob/living/silicon/status_procs.dm
@@ -6,42 +6,36 @@
/////////////////////////////////// STUNNED ////////////////////////////////////
/mob/living/silicon/Stun(amount, updating = 1, ignore_canstun = 0)
- if(status_flags & CANSTUN || ignore_canstun)
- stunned = max(max(stunned,amount),0) //can't go below 0, getting a low amount of stun doesn't lower your current stun
- if(updating)
- update_stat()
+ . = ..()
+ if(. && updating)
+ update_stat()
-/mob/living/silicon/AdjustStunned(amount, updating = 1, ignore_canstun = 0)
- if(status_flags & CANSTUN || ignore_canstun)
- stunned = max(stunned + amount,0)
- if(updating)
- update_stat()
+/mob/living/silicon/SetStunned(amount, updating = 1, ignore_canstun = 0)
+ . = ..()
+ if(. && updating)
+ update_stat()
-/mob/living/silicon/SetStunned(amount, updating = 1, ignore_canstun = 0) //if you REALLY need to set stun to a set amount without the whole "can't go below current stunned"
- if(status_flags & CANSTUN || ignore_canstun)
- stunned = max(amount,0)
- if(updating)
- update_stat()
+/mob/living/silicon/AdjustStunned(amount, updating = 1, ignore_canstun = 0)
+ . = ..()
+ if(. && updating)
+ update_stat()
/////////////////////////////////// WEAKENED ////////////////////////////////////
/mob/living/silicon/Weaken(amount, updating = 1, ignore_canweaken = 0)
- if(status_flags & CANWEAKEN || ignore_canweaken)
- weakened = max(max(weakened,amount),0)
- if(updating)
- update_stat()
-
-/mob/living/silicon/AdjustWeakened(amount, updating = 1, ignore_canweaken = 0)
- if(status_flags & CANWEAKEN || ignore_canweaken)
- weakened = max(weakened + amount,0)
- if(updating)
- update_stat()
+ . = ..()
+ if(. && updating)
+ update_stat()
/mob/living/silicon/SetWeakened(amount, updating = 1, ignore_canweaken = 0)
- if(status_flags & CANWEAKEN || ignore_canweaken)
- weakened = max(amount,0)
- if(updating)
- update_stat()
+ . = ..()
+ if(. && updating)
+ update_stat()
+
+/mob/living/silicon/AdjustWeakened(amount, updating = 1, ignore_canweaken = 0)
+ . = ..()
+ if(. && updating)
+ update_stat()
/////////////////////////////////// EAR DAMAGE ////////////////////////////////////
diff --git a/code/modules/mob/living/simple_animal/bot/construction.dm b/code/modules/mob/living/simple_animal/bot/construction.dm
index 98f055c476e..b3dc771ef11 100644
--- a/code/modules/mob/living/simple_animal/bot/construction.dm
+++ b/code/modules/mob/living/simple_animal/bot/construction.dm
@@ -393,7 +393,7 @@
var/obj/item/weapon/weldingtool/WT = I
if(WT.remove_fuel(0, user))
build_step--
- overlays -= "hs_hole"
+ cut_overlay("hs_hole")
user << "You weld the hole in [src] shut!"
else if(isprox(I) && (build_step == 1))
@@ -442,13 +442,13 @@
qdel(src)
else if(build_step == 2)
- overlays -= "hs_eye"
+ cut_overlay("hs_eye")
new /obj/item/device/assembly/prox_sensor(get_turf(src))
user << "You detach the proximity sensor from [src]."
build_step--
else if(build_step == 3)
- overlays -= "hs_arm"
+ cut_overlay("hs_arm")
new /obj/item/bodypart/l_arm/robot(get_turf(src))
user << "You remove the robot arm from [src]."
build_step--
diff --git a/code/modules/mob/living/simple_animal/constructs.dm b/code/modules/mob/living/simple_animal/constructs.dm
index 99e95131f61..3eb1169f2f8 100644
--- a/code/modules/mob/living/simple_animal/constructs.dm
+++ b/code/modules/mob/living/simple_animal/constructs.dm
@@ -82,7 +82,7 @@
/mob/living/simple_animal/hostile/construct/narsie_act()
return
-/mob/living/simple_animal/hostile/construct/electrocute_act(shock_damage, obj/source, siemens_coeff = 1, safety = 0, tesla_shock = 0, illusion = 0)
+/mob/living/simple_animal/hostile/construct/electrocute_act(shock_damage, obj/source, siemens_coeff = 1, safety = 0, tesla_shock = 0, illusion = 0, stun = TRUE)
return 0
diff --git a/code/modules/mob/living/simple_animal/friendly/drone/_drone.dm b/code/modules/mob/living/simple_animal/friendly/drone/_drone.dm
index 90013bd4cea..c00ec0b523f 100644
--- a/code/modules/mob/living/simple_animal/friendly/drone/_drone.dm
+++ b/code/modules/mob/living/simple_animal/friendly/drone/_drone.dm
@@ -268,5 +268,5 @@
// Why would bees pay attention to drones?
return 1
-/mob/living/simple_animal/drone/electrocute_act(shock_damage, obj/source, siemens_coeff = 1, safety = 0, tesla_shock = 0, illusion = 0)
+/mob/living/simple_animal/drone/electrocute_act(shock_damage, obj/source, siemens_coeff = 1, safety = 0, tesla_shock = 0, illusion = 0, stun = TRUE)
return 0 //So they don't die trying to fix wiring
diff --git a/code/modules/mob/living/simple_animal/friendly/drone/drones_as_items.dm b/code/modules/mob/living/simple_animal/friendly/drone/drones_as_items.dm
index 67766e42663..ab4f02fa192 100644
--- a/code/modules/mob/living/simple_animal/friendly/drone/drones_as_items.dm
+++ b/code/modules/mob/living/simple_animal/friendly/drone/drones_as_items.dm
@@ -21,6 +21,11 @@
var/area/A = get_area(src)
if(A)
notify_ghosts("A drone shell has been created in \the [A.name].", source = src, action=NOTIFY_ATTACK, flashwindow = FALSE)
+ poi_list |= src
+
+/obj/item/drone_shell/Destroy()
+ poi_list -= src
+ . = ..()
/obj/item/drone_shell/attack_ghost(mob/user)
if(jobban_isbanned(user,"drone"))
diff --git a/code/modules/mob/living/simple_animal/friendly/drone/extra_drone_types.dm b/code/modules/mob/living/simple_animal/friendly/drone/extra_drone_types.dm
index 577aabb086b..226cc3a9027 100644
--- a/code/modules/mob/living/simple_animal/friendly/drone/extra_drone_types.dm
+++ b/code/modules/mob/living/simple_animal/friendly/drone/extra_drone_types.dm
@@ -105,7 +105,7 @@
density = TRUE
speed = 1
ventcrawler = VENTCRAWLER_NONE
- faction = list("ratvar")
+ faction = list("neutral", "ratvar")
speak_emote = list("clanks", "clinks", "clunks", "clangs")
verb_ask = "requests"
verb_exclaim = "proclaims"
@@ -145,7 +145,7 @@
/mob/living/simple_animal/drone/cogscarab/binarycheck()
return FALSE
-/mob/living/simple_animal/drone/cogscarab/alert_drones(msg, dead_can_hear = 0)
+/mob/living/simple_animal/drone/cogscarab/alert_drones(msg, dead_can_hear = FALSE)
if(msg == DRONE_NET_CONNECT)
msg = "Hierophant Network: [name] activated."
else if(msg == DRONE_NET_DISCONNECT)
@@ -182,3 +182,12 @@
/mob/living/simple_animal/drone/cogscarab/ratvar_act()
fully_heal(TRUE)
+
+/obj/item/drone_shell/dusty
+ name = "derelict drone shell"
+ desc = "A long-forgotten drone shell. It seems kind of... Space Russian."
+ drone_type = /mob/living/simple_animal/drone/derelict
+
+/mob/living/simple_animal/drone/derelict
+ name = "derelict drone"
+ default_hatmask = /obj/item/clothing/head/ushanka
diff --git a/code/modules/mob/living/simple_animal/friendly/drone/say.dm b/code/modules/mob/living/simple_animal/friendly/drone/say.dm
index 4210947ef35..5b65f01dabd 100644
--- a/code/modules/mob/living/simple_animal/friendly/drone/say.dm
+++ b/code/modules/mob/living/simple_animal/friendly/drone/say.dm
@@ -17,13 +17,12 @@
//Base proc for anything to call
-/proc/_alert_drones(msg, dead_can_hear = 0, list/factions)
+/proc/_alert_drones(msg, dead_can_hear = 0, mob/living/faction_checked_mob, exact_faction_match)
for(var/W in mob_list)
var/mob/living/simple_animal/drone/M = W
if(istype(M) && M.stat != DEAD)
- if(factions && factions.len)
- var/list/friendly = factions&M.faction
- if(friendly.len)
+ if(faction_checked_mob)
+ if(M.faction_check_mob(faction_checked_mob, exact_faction_match))
M << msg
else
M << msg
@@ -33,15 +32,12 @@
//Wrapper for drones to handle factions
-/mob/living/simple_animal/drone/proc/alert_drones(msg, dead_can_hear = 0)
- _alert_drones(msg, dead_can_hear, faction)
+/mob/living/simple_animal/drone/proc/alert_drones(msg, dead_can_hear = FALSE)
+ _alert_drones(msg, dead_can_hear, src, TRUE)
/mob/living/simple_animal/drone/proc/drone_chat(msg)
- var/rendered = "Drone Chat: \
- [name]: \
- [say_quote(msg, get_spans())]"
- alert_drones(rendered, 1)
+ alert_drones("Drone Chat: [name] [say_quote(msg, get_spans())]", TRUE)
/mob/living/simple_animal/drone/binarycheck()
return TRUE
diff --git a/code/modules/mob/living/simple_animal/friendly/drone/visuals_icons.dm b/code/modules/mob/living/simple_animal/friendly/drone/visuals_icons.dm
index 95c18b53f40..5d634d938ea 100644
--- a/code/modules/mob/living/simple_animal/friendly/drone/visuals_icons.dm
+++ b/code/modules/mob/living/simple_animal/friendly/drone/visuals_icons.dm
@@ -7,14 +7,15 @@
/mob/living/simple_animal/drone/proc/apply_overlay(cache_index)
- var/image/I = drone_overlays[cache_index]
+ var/I = drone_overlays[cache_index]
if(I)
add_overlay(I)
/mob/living/simple_animal/drone/proc/remove_overlay(cache_index)
- if(drone_overlays[cache_index])
- overlays -= drone_overlays[cache_index]
+ var/I = drone_overlays[cache_index]
+ if(I)
+ cut_overlay(I)
drone_overlays[cache_index] = null
diff --git a/code/modules/mob/living/simple_animal/guardian/guardian.dm b/code/modules/mob/living/simple_animal/guardian/guardian.dm
index af3001c2ecf..aafdf9c3364 100644
--- a/code/modules/mob/living/simple_animal/guardian/guardian.dm
+++ b/code/modules/mob/living/simple_animal/guardian/guardian.dm
@@ -261,13 +261,14 @@ var/global/list/parasites = list() //all currently existing/living guardians
I.plane = ABOVE_HUD_PLANE
/mob/living/simple_animal/hostile/guardian/proc/apply_overlay(cache_index)
- var/image/I = guardian_overlays[cache_index]
+ var/I = guardian_overlays[cache_index]
if(I)
add_overlay(I)
/mob/living/simple_animal/hostile/guardian/proc/remove_overlay(cache_index)
- if(guardian_overlays[cache_index])
- overlays -= guardian_overlays[cache_index]
+ var/I = guardian_overlays[cache_index]
+ if(I)
+ cut_overlay(I)
guardian_overlays[cache_index] = null
/mob/living/simple_animal/hostile/guardian/update_inv_hands()
diff --git a/code/modules/mob/living/simple_animal/hostile/hostile.dm b/code/modules/mob/living/simple_animal/hostile/hostile.dm
index 63908bf4000..aac60f82fe5 100644
--- a/code/modules/mob/living/simple_animal/hostile/hostile.dm
+++ b/code/modules/mob/living/simple_animal/hostile/hostile.dm
@@ -108,7 +108,7 @@
var/list/Mobs = hearers(vision_range, targets_from) - src //Remove self, so we don't suicide
. += Mobs
- var/static/hostile_machines = typecacheof(list(/obj/machinery/porta_turret, /obj/mecha))
+ var/static/hostile_machines = typecacheof(list(/obj/machinery/porta_turret, /obj/mecha, /obj/structure/destructible/clockwork/ocular_warden))
for(var/HM in typecache_filter_list(range(vision_range, targets_from), hostile_machines))
if(can_see(targets_from, HM, vision_range))
@@ -172,7 +172,7 @@
if(search_objects < 2)
if(isliving(the_target))
var/mob/living/L = the_target
- var/faction_check = faction_check(L)
+ var/faction_check = faction_check_mob(L)
if(robust_searching)
if(L.stat > stat_attack || L.stat != stat_attack && stat_exclusive == 1)
return 0
@@ -203,6 +203,12 @@
return 0
return 1
+ if(istype(the_target, /obj/structure/destructible/clockwork/ocular_warden))
+ var/obj/structure/destructible/clockwork/ocular_warden/OW = the_target
+ if(OW.target != src)
+ return FALSE
+ return TRUE
+
if(isobj(the_target))
if(attack_all_objects || is_type_in_typecache(the_target, wanted_objects))
@@ -306,11 +312,7 @@
do_alert_animation(src)
playsound(loc, 'sound/machines/chime.ogg', 50, 1, -1)
for(var/mob/living/simple_animal/hostile/M in oview(distance, targets_from))
- var/list/L = M.faction&faction
- var/success = L.len
- if(exact_faction_match)
- success = (L.len == faction.len) //since the above op is &, an exact match would be of the same length
- if(success)
+ if(faction_check_mob(M, TRUE))
if(M.AIStatus == AI_OFF)
return
else
@@ -322,22 +324,15 @@
for(var/mob/living/L in T)
if(L == src || L == A)
continue
- if(faction_check(L) && !attack_same)
+ if(faction_check_mob(L) && !attack_same)
return
visible_message("[src] [ranged_message] at [A]!")
if(rapid)
- spawn(1)
- Shoot(A)
- spawn(4)
- Shoot(A)
- spawn(6)
- Shoot(A)
-/* var/datum/callback/cb = CALLBACK(A, .proc/Shoot)
+ var/datum/callback/cb = CALLBACK(src, .proc/Shoot, A)
addtimer(cb, 1)
addtimer(cb, 4)
- addtimer(cb, 6)*/
-
+ addtimer(cb, 6)
else
Shoot(A)
ranged_cooldown = world.time + ranged_cooldown_time
diff --git a/code/modules/mob/living/simple_animal/hostile/megafauna/bubblegum.dm b/code/modules/mob/living/simple_animal/hostile/megafauna/bubblegum.dm
index 1a6746e888e..635b7e21b6d 100644
--- a/code/modules/mob/living/simple_animal/hostile/megafauna/bubblegum.dm
+++ b/code/modules/mob/living/simple_animal/hostile/megafauna/bubblegum.dm
@@ -46,7 +46,7 @@ Difficulty: Hard
del_on_death = 1
loot = list(/obj/structure/closet/crate/necropolis/bubblegum)
blood_volume = BLOOD_VOLUME_MAXIMUM //BLEED FOR ME
- var/charging = 0
+ var/charging = FALSE
medal_type = MEDAL_PREFIX
score_type = BUBBLEGUM_SCORE
deathmessage = "sinks into a pool of blood, fleeing the battle. You've won, for now... "
@@ -116,10 +116,9 @@ Difficulty: Hard
internal = new/obj/item/device/gps/internal/bubblegum(src)
/mob/living/simple_animal/hostile/megafauna/bubblegum/grant_achievement(medaltype,scoretype)
- ..()
- SSshuttle.shuttle_purchase_requirements_met |= "bubblegum"
-
-
+ . = ..()
+ if(.)
+ SSshuttle.shuttle_purchase_requirements_met |= "bubblegum"
/mob/living/simple_animal/hostile/megafauna/bubblegum/do_attack_animation(atom/A, visual_effect_icon)
if(!charging)
@@ -152,7 +151,7 @@ Difficulty: Hard
if(!T || T == loc)
return
new /obj/effect/overlay/temp/dragon_swoop(T)
- charging = 1
+ charging = TRUE
DestroySurroundings()
walk(src, 0)
setDir(get_dir(src, T))
@@ -161,12 +160,13 @@ Difficulty: Hard
sleep(3)
throw_at(T, get_dist(src, T), 1, src, 0, callback = CALLBACK(src, .charge_end, bonus_charges))
-/mob/living/simple_animal/hostile/megafauna/bubblegum/proc/charge_end(bonus_charges)
- charging = 0
+/mob/living/simple_animal/hostile/megafauna/bubblegum/proc/charge_end(bonus_charges, list/effects_to_destroy)
+ charging = FALSE
try_bloodattack()
if(target)
if(bonus_charges)
- charge(bonus_charges--)
+ bonus_charges--
+ charge(bonus_charges)
else
Goto(target, move_to_delay, minimum_distance)
@@ -192,7 +192,7 @@ Difficulty: Hard
var/throwtarget = get_edge_target_turf(src, get_dir(src, get_step_away(L, src)))
L.throw_at(throwtarget, 3)
- charging = 0
+ charging = FALSE
/mob/living/simple_animal/hostile/megafauna/bubblegum/proc/get_mobs_on_blood()
@@ -200,7 +200,7 @@ Difficulty: Hard
. = list()
for(var/mob/living/L in targets)
var/list/bloodpool = get_pools(get_turf(L), 0)
- if(bloodpool.len && (!faction_check(L) || L.stat == DEAD))
+ if(bloodpool.len && (!faction_check_mob(L) || L.stat == DEAD))
. += L
/mob/living/simple_animal/hostile/megafauna/bubblegum/proc/try_bloodattack()
@@ -250,7 +250,7 @@ Difficulty: Hard
new /obj/effect/overlay/temp/bubblegum_hands/leftsmack(T)
sleep(2.5)
for(var/mob/living/L in T)
- if(!faction_check(L))
+ if(!faction_check_mob(L))
L << "[src] rends you!"
playsound(T, attack_sound, 100, 1, -1)
var/limb_to_hit = L.get_bodypart(pick("head", "chest", "r_arm", "l_arm", "r_leg", "l_leg"))
@@ -266,7 +266,7 @@ Difficulty: Hard
new /obj/effect/overlay/temp/bubblegum_hands/leftthumb(T)
sleep(6)
for(var/mob/living/L in T)
- if(!faction_check(L))
+ if(!faction_check_mob(L))
L << "[src] drags you through the blood!"
playsound(T, 'sound/magic/enter_blood.ogg', 100, 1, -1)
var/turf/targetturf = get_step(src, dir)
diff --git a/code/modules/mob/living/simple_animal/hostile/megafauna/hierophant.dm b/code/modules/mob/living/simple_animal/hostile/megafauna/hierophant.dm
index 8c070a29a87..0f98920bf3f 100644
--- a/code/modules/mob/living/simple_animal/hostile/megafauna/hierophant.dm
+++ b/code/modules/mob/living/simple_animal/hostile/megafauna/hierophant.dm
@@ -588,7 +588,7 @@ Difficulty: Hard
/obj/effect/overlay/temp/hierophant/blast/proc/do_damage(turf/T)
for(var/mob/living/L in T.contents - hit_things) //find and damage mobs...
hit_things += L
- if((friendly_fire_check && caster && caster.faction_check(L)) || L.stat == DEAD)
+ if((friendly_fire_check && caster && caster.faction_check_mob(L)) || L.stat == DEAD)
continue
if(L.client)
flash_color(L.client, "#660099", 1)
@@ -603,7 +603,7 @@ Difficulty: Hard
for(var/obj/mecha/M in T.contents - hit_things) //and mechs.
hit_things += M
if(M.occupant)
- if(friendly_fire_check && caster && caster.faction_check(M.occupant))
+ if(friendly_fire_check && caster && caster.faction_check_mob(M.occupant))
continue
M.occupant << "Your [M.name] is struck by a [name]!"
playsound(M,'sound/weapons/sear.ogg', 50, 1, -4)
diff --git a/code/modules/mob/living/simple_animal/hostile/megafauna/megafauna.dm b/code/modules/mob/living/simple_animal/hostile/megafauna/megafauna.dm
index 1a8e8a44c7a..f0413fd6e2c 100644
--- a/code/modules/mob/living/simple_animal/hostile/megafauna/megafauna.dm
+++ b/code/modules/mob/living/simple_animal/hostile/megafauna/megafauna.dm
@@ -115,12 +115,11 @@
/mob/living/simple_animal/hostile/megafauna/proc/grant_achievement(medaltype,scoretype)
-
if(medal_type == "Boss") //Don't award medals if the medal type isn't set
- return
+ return FALSE
if(admin_spawned)
- return
+ return FALSE
if(global.medal_hub && global.medal_pass && global.medals_enabled)
for(var/mob/living/L in view(7,src))
@@ -133,6 +132,7 @@
UnlockMedal("[medaltype] [suffixm]",C)
SetScore(BOSS_SCORE,C,1)
SetScore(score_type,C,1)
+ return TRUE
/proc/UnlockMedal(medal,client/player)
diff --git a/code/modules/mob/living/simple_animal/hostile/mimic.dm b/code/modules/mob/living/simple_animal/hostile/mimic.dm
index e34aea1a973..0b9f2c4d2e8 100644
--- a/code/modules/mob/living/simple_animal/hostile/mimic.dm
+++ b/code/modules/mob/living/simple_animal/hostile/mimic.dm
@@ -149,7 +149,7 @@ var/global/list/protected_objects = list(/obj/structure/table, /obj/structure/ca
icon = O.icon
icon_state = O.icon_state
icon_living = icon_state
- overlays = O.overlays
+ copy_overlays(O)
googly_eyes = image('icons/mob/mob.dmi',"googly_eyes")
add_overlay(googly_eyes)
if(istype(O, /obj/structure) || istype(O, /obj/machinery))
diff --git a/code/modules/mob/living/simple_animal/hostile/retaliate/retaliate.dm b/code/modules/mob/living/simple_animal/hostile/retaliate/retaliate.dm
index 1078082e95d..4aa067c9ab1 100644
--- a/code/modules/mob/living/simple_animal/hostile/retaliate/retaliate.dm
+++ b/code/modules/mob/living/simple_animal/hostile/retaliate/retaliate.dm
@@ -28,7 +28,7 @@
continue
if(isliving(A))
var/mob/living/M = A
- if(faction_check(M) && attack_same || !faction_check(M))
+ if(faction_check_mob(M) && attack_same || !faction_check_mob(M))
enemies |= M
else if(istype(A, /obj/mecha))
var/obj/mecha/M = A
@@ -37,7 +37,7 @@
enemies |= M.occupant
for(var/mob/living/simple_animal/hostile/retaliate/H in around)
- if(faction_check(H) && !attack_same && !H.attack_same)
+ if(faction_check_mob(H) && !attack_same && !H.attack_same)
H.enemies |= enemies
return 0
diff --git a/code/modules/mob/living/simple_animal/hostile/venus_human_trap.dm b/code/modules/mob/living/simple_animal/hostile/venus_human_trap.dm
index f28233ba45d..6bfa9b46c50 100644
--- a/code/modules/mob/living/simple_animal/hostile/venus_human_trap.dm
+++ b/code/modules/mob/living/simple_animal/hostile/venus_human_trap.dm
@@ -69,7 +69,7 @@
var/grasp_pull_chance = 85
var/grasp_range = 4
del_on_death = 1
-
+
/mob/living/simple_animal/hostile/venus_human_trap/Destroy()
for(var/L in grasping)
var/datum/beam/B = grasping[L]
@@ -99,7 +99,7 @@
if(grasping.len < max_grasps)
grasping:
for(var/mob/living/L in view(grasp_range, src))
- if(L == src || faction_check(L) || (L in grasping) || L == target)
+ if(L == src || faction_check_mob(L) || (L in grasping) || L == target)
continue
for(var/t in getline(src,L))
for(var/a in t)
diff --git a/code/modules/mob/living/simple_animal/parrot.dm b/code/modules/mob/living/simple_animal/parrot.dm
index cd8a8916c46..d2ccf9bcae7 100644
--- a/code/modules/mob/living/simple_animal/parrot.dm
+++ b/code/modules/mob/living/simple_animal/parrot.dm
@@ -869,7 +869,7 @@
/mob/living/simple_animal/parrot/Poly
name = "Poly"
desc = "Poly the Parrot. An expert on quantum cracker theory."
- speak = list("Poly wanna cracker!", ":e Check the singulo, you chucklefucks!",":e Wire the solars, you lazy bums!",":e WHO TOOK THE DAMN HARDSUITS?",":e OH GOD ITS FREE CALL THE SHUTTLE")
+ speak = list("Poly wanna cracker!", ":e Check the crystal, you chucklefucks!",":e Wire the solars, you lazy bums!",":e WHO TOOK THE DAMN HARDSUITS?",":e OH GOD ITS ABOUT TO DELAMINATE CALL THE SHUTTLE", ":e QUIT SUCKING EACH OTHER'S DICKS AND GET THE POWER ONLINE.", ":e STOP FUCKING EATING EACH OTHER, THE STATION IS GOING DARK!")
gold_core_spawnable = 0
speak_chance = 3
var/memory_saved = 0
diff --git a/code/modules/mob/living/simple_animal/simple_animal.dm b/code/modules/mob/living/simple_animal/simple_animal.dm
index b2772c7312f..b729b964e14 100644
--- a/code/modules/mob/living/simple_animal/simple_animal.dm
+++ b/code/modules/mob/living/simple_animal/simple_animal.dm
@@ -84,7 +84,6 @@
//domestication
var/tame = 0
- var/datum/riding/riding_datum = null
/mob/living/simple_animal/New()
..()
@@ -362,7 +361,7 @@
else if(!istype(M, childtype) && M.gender == MALE) //Better safe than sorry ;_;
partner = M
- else if(isliving(M) && !faction_check(M)) //shyness check. we're not shy in front of things that share a faction with us.
+ else if(isliving(M) && !faction_check_mob(M)) //shyness check. we're not shy in front of things that share a faction with us.
return //we never mate when not alone, so just abort early
if(alone && partner && children < 3)
@@ -541,11 +540,10 @@
if(tame && riding_datum)
riding_datum.handle_ride(user, direction)
-/mob/living/simple_animal/Move(NewLoc,Dir=0,step_x=0,step_y=0)
+/mob/living/simple_animal/Moved()
. = ..()
if(riding_datum)
- riding_datum.handle_vehicle_layer()
- riding_datum.handle_vehicle_offsets()
+ riding_datum.on_vehicle_move()
/mob/living/simple_animal/buckle_mob(mob/living/buckled_mob, force = 0, check_loc = 1)
diff --git a/code/modules/mob/living/simple_animal/slime/death.dm b/code/modules/mob/living/simple_animal/slime/death.dm
index bdf63f66a1c..0e5e0750ca7 100644
--- a/code/modules/mob/living/simple_animal/slime/death.dm
+++ b/code/modules/mob/living/simple_animal/slime/death.dm
@@ -22,7 +22,7 @@
Feedstop(silent = 1) //releases ourselves from the mob we fed on.
stat = DEAD
- overlays.len = 0
+ cut_overlays()
update_canmove()
diff --git a/code/modules/mob/living/status_procs.dm b/code/modules/mob/living/status_procs.dm
index 0545bd03b00..fee790ffe3d 100644
--- a/code/modules/mob/living/status_procs.dm
+++ b/code/modules/mob/living/status_procs.dm
@@ -32,7 +32,7 @@
"visible_message" = message, "self_message" = self_message, "examine_message" = examine_message)
/mob/living/Stun(amount, updating = 1, ignore_canstun = 0)
- if(!stat && islist(stun_absorption))
+ if(!stat && islist(stun_absorption) && (status_flags & CANSTUN || ignore_canstun))
var/priority_absorb_key
var/highest_priority
for(var/i in stun_absorption)
@@ -49,12 +49,12 @@
src << "[priority_absorb_key["self_message"]]"
priority_absorb_key["stuns_absorbed"] += amount
return 0
- ..()
+ return ..()
///////////////////////////////// WEAKEN /////////////////////////////////////
/mob/living/Weaken(amount, updating = 1, ignore_canweaken = 0)
- if(!stat && islist(stun_absorption))
+ if(!stat && islist(stun_absorption) && (status_flags & CANWEAKEN || ignore_canweaken))
var/priority_absorb_key
var/highest_priority
for(var/i in stun_absorption)
@@ -71,4 +71,4 @@
src << "[priority_absorb_key["self_message"]]"
priority_absorb_key["stuns_absorbed"] += amount
return 0
- ..()
\ No newline at end of file
+ return ..()
\ No newline at end of file
diff --git a/code/modules/mob/living/taste.dm b/code/modules/mob/living/taste.dm
new file mode 100644
index 00000000000..4a4c741fc81
--- /dev/null
+++ b/code/modules/mob/living/taste.dm
@@ -0,0 +1,31 @@
+#define DEFAULT_TASTE_SENSITIVITY 15
+
+/mob/living
+ var/last_taste_time
+ var/last_taste_text
+
+/mob/living/proc/get_taste_sensitivity()
+ return DEFAULT_TASTE_SENSITIVITY
+
+/mob/living/carbon/get_taste_sensitivity()
+ var/obj/item/organ/tongue/tongue = getorganslot("tongue")
+ if(istype(tongue))
+ . = tongue.taste_sensitivity
+ else
+ . = 101 // can't taste anything without a tongue
+
+// non destructively tastes a reagent container
+/mob/living/proc/taste(datum/reagents/from)
+ if(last_taste_time + 50 < world.time)
+ var/taste_sensitivity = get_taste_sensitivity()
+ var/text_output = from.generate_taste_message(taste_sensitivity)
+ // We dont want to spam the same message over and over again at the
+ // person. Give it a bit of a buffer.
+ if(text_output != last_taste_text || last_taste_time + 100 < world.time)
+ src << "You can taste [text_output]."
+ // "somthing indescribable" -> too many tastes, not enough flavor.
+
+ last_taste_time = world.time
+ last_taste_text = text_output
+
+#undef DEFAULT_TASTE_SENSITIVITY
diff --git a/code/modules/mob/mob.dm b/code/modules/mob/mob.dm
index ecb8192dfa4..c68a8ed2dda 100644
--- a/code/modules/mob/mob.dm
+++ b/code/modules/mob/mob.dm
@@ -27,8 +27,9 @@ var/next_mob_id = 0
dead_mob_list += src
else
living_mob_list += src
- hook_vr("mob_new",list(src))
prepare_huds()
+ can_ride_typecache = typecacheof(can_ride_typecache)
+ hook_vr("mob_new",list(src))
..()
/atom/proc/prepare_huds()
@@ -464,6 +465,12 @@ var/next_mob_id = 0
reset_perspective(null)
unset_machine()
+//suppress the .click macro so people can't use it to identify the location of items or aimbot
+/mob/verb/ClickSubstitute()
+ set hidden = 1
+ set name = ".click"
+ return
+
/mob/Topic(href, href_list)
if(href_list["mach_close"])
var/t1 = text("window=[href_list["mach_close"]]")
@@ -823,11 +830,28 @@ var/next_mob_id = 0
/mob/proc/canUseTopic()
return
-/mob/proc/faction_check(mob/target)
- for(var/F in faction)
- if(F in target.faction)
- return 1
- return 0
+/mob/proc/faction_check_mob(mob/target, exact_match)
+ if(exact_match) //if we need an exact match, we need to do some bullfuckery.
+ var/list/faction_src = faction.Copy()
+ var/list/faction_target = target.faction.Copy()
+ if(!("\ref[src]" in faction_target)) //if they don't have our ref faction, remove it from our factions list.
+ faction_src -= "\ref[src]" //if we don't do this, we'll never have an exact match.
+ if(!("\ref[target]" in faction_src))
+ faction_target -= "\ref[target]" //same thing here.
+ return faction_check(faction_src, faction_target, TRUE)
+ return faction_check(faction, target.faction, FALSE)
+
+/proc/faction_check(list/faction_A, list/faction_B, exact_match)
+ var/list/match_list
+ if(exact_match)
+ match_list = faction_A&faction_B //only items in both lists
+ var/length = LAZYLEN(match_list)
+ if(length)
+ return (length == LAZYLEN(faction_A)) //if they're not the same len(gth) or we don't have a len, then this isn't an exact match.
+ else
+ match_list = faction_A&faction_B
+ return LAZYLEN(match_list)
+ return FALSE
//This will update a mob's name, real_name, mind.name, data_core records, pda, id and traitor text
@@ -952,4 +976,4 @@ var/next_mob_id = 0
switch(var_name)
if ("attack_log")
return debug_variable(var_name, attack_log, 0, src, FALSE)
- . = ..()
\ No newline at end of file
+ . = ..()
diff --git a/code/modules/mob/mob_defines.dm b/code/modules/mob/mob_defines.dm
index 13a4f5824ce..b00302473dd 100644
--- a/code/modules/mob/mob_defines.dm
+++ b/code/modules/mob/mob_defines.dm
@@ -10,8 +10,6 @@
var/stat = 0 //Whether a mob is alive or dead. TODO: Move this to living - Nodrak
- var/flavor_text = "" //tired of fucking double checking this
-
/*A bunch of this stuff really needs to go under their own defines instead of being globally attached to mob.
A variable should only be globally attached to turfs/objects/whatever, when it is in fact needed as such.
@@ -147,4 +145,5 @@
var/list/observers = null //The list of people observing this mob.
- var/list/progressbars = null //for stacking do_after bars
\ No newline at end of file
+ var/list/progressbars = null //for stacking do_after bars
+ var/list/can_ride_typecache = list()
diff --git a/code/modules/mob/mob_helpers.dm b/code/modules/mob/mob_helpers.dm
index fcf1097dec8..249b5aa9b2a 100644
--- a/code/modules/mob/mob_helpers.dm
+++ b/code/modules/mob/mob_helpers.dm
@@ -421,7 +421,7 @@ var/static/regex/firstname = new("^\[^\\s-\]+") //First word before whitespace o
user.visible_message("[user] has fixed some of the [dam ? "dents on" : "burnt wires in"] [H]'s [affecting].", "You fix some of the [dam ? "dents on" : "burnt wires in"] [H]'s [affecting].")
return 1 //successful heal
else
- user << "[H]'s [affecting] is already in good condition!"
+ user << "[affecting] is already in good condition!"
/proc/IsAdminGhost(var/mob/user)
diff --git a/code/modules/mob/new_player/login.dm b/code/modules/mob/new_player/login.dm
index 33ae12d8483..b0bad8d9f52 100644
--- a/code/modules/mob/new_player/login.dm
+++ b/code/modules/mob/new_player/login.dm
@@ -28,3 +28,5 @@
*/
new_player_panel()
client.playtitlemusic()
+ if(ticker.current_state < GAME_STATE_SETTING_UP)
+ src << "Please set up your character and select \"Ready\". The game will start in about [round(ticker.GetTimeLeft()/10)] seconds."
\ No newline at end of file
diff --git a/code/modules/mob/new_player/new_player.dm b/code/modules/mob/new_player/new_player.dm
index 9112420e34a..ffa592b93ba 100644
--- a/code/modules/mob/new_player/new_player.dm
+++ b/code/modules/mob/new_player/new_player.dm
@@ -40,9 +40,7 @@
output += "Observe
"
if(!IsGuestKey(src.key))
- establish_db_connection()
-
- if(dbcon.IsConnected())
+ if (dbcon.Connect())
var/isadmin = 0
if(src.client && src.client.holder)
isadmin = 1
@@ -75,7 +73,10 @@
stat("Map:", MAP_NAME)
if(ticker.current_state == GAME_STATE_PREGAME)
- stat("Time To Start:", (ticker.timeLeft >= 0) ? "[round(ticker.timeLeft / 10)]s" : "DELAYED")
+ var/time_remaining = ticker.GetTimeLeft()
+ if(time_remaining >= 0)
+ time_remaining /= 10
+ stat("Time To Start:", (time_remaining >= 0) ? "[round(time_remaining)]s" : "DELAYED")
stat("Players:", "[ticker.totalPlayers]")
if(client.holder)
diff --git a/code/modules/mob/new_player/poll.dm b/code/modules/mob/new_player/poll.dm
index 5a39ccaca9c..e72c4ead952 100644
--- a/code/modules/mob/new_player/poll.dm
+++ b/code/modules/mob/new_player/poll.dm
@@ -6,7 +6,7 @@
if(!dbcon.IsConnected())
usr << "Failed to establish database connection."
return
- var/DBQuery/query_get_poll = dbcon.NewQuery("SELECT id, question FROM [format_table_name("poll_question")] WHERE [(client.holder ? "" : "adminonly = false AND")] Now() BETWEEN starttime AND endtime")
+ var/DBQuery/query_get_poll = dbcon.NewQuery("SELECT id, question FROM [format_table_name("poll_question")] WHERE Now() BETWEEN starttime AND endtime [(client.holder ? "" : "AND adminonly = false")]")
if(!query_get_poll.Execute())
var/err = query_get_poll.ErrorMsg()
log_game("SQL ERROR obtaining id, question from poll_question table. Error : \[[err]\]\n")
@@ -24,7 +24,7 @@
/mob/new_player/proc/poll_player(pollid)
if(!pollid)
return
- if(!establish_db_connection())
+ if (!dbcon.Connect())
usr << "Failed to establish database connection."
return
var/DBQuery/select_query = dbcon.NewQuery("SELECT starttime, endtime, question, polltype, multiplechoiceoptions FROM [format_table_name("poll_question")] WHERE id = [pollid]")
@@ -349,7 +349,7 @@
var/table = "poll_vote"
if (text)
table = "poll_textreply"
- if (!establish_db_connection())
+ if (!dbcon.Connect())
usr << "Failed to establish database connection."
return
var/DBQuery/query_hasvoted = dbcon.NewQuery("SELECT id FROM `[format_table_name(table)]` WHERE pollid = [pollid] AND ckey = '[ckey]'")
@@ -362,7 +362,7 @@
return
. = "Player"
if(client.holder)
- . = client.holder.rank
+ . = client.holder.rank.name
return .
@@ -379,24 +379,14 @@
return 1
/mob/new_player/proc/vote_valid_check(pollid, holder, type)
- if (!establish_db_connection())
+ if (!dbcon.Connect())
src << "Failed to establish database connection."
return 0
pollid = text2num(pollid)
if (!pollid || pollid < 0)
return 0
//validate the poll is actually the right type of poll and its still active
- var/DBQuery/select_query = dbcon.NewQuery({"
- SELECT id
- FROM [format_table_name("poll_question")]
- WHERE
- [(holder ? "" : "adminonly = false AND")]
- id = [pollid]
- AND
- Now() BETWEEN starttime AND endtime
- AND
- polltype = '[type]'
- "})
+ var/DBQuery/select_query = dbcon.NewQuery("SELECT id FROM [format_table_name("poll_question")] WHERE id = [pollid] AND Now() BETWEEN starttime AND endtime AND polltype = '[type]' [(holder ? "" : "AND adminonly = false")]")
if (!select_query.Execute())
var/err = select_query.ErrorMsg()
log_game("SQL ERROR validating poll via poll_question table. Error : \[[err]\]\n")
@@ -406,7 +396,7 @@
return 1
/mob/new_player/proc/vote_on_irv_poll(pollid, list/votelist)
- if (!establish_db_connection())
+ if (!dbcon.Connect())
src << "Failed to establish database connection."
return 0
if (!vote_rig_check())
@@ -422,7 +412,7 @@
var/datum/admins/holder = client.holder
var/rank = "Player"
if (holder)
- rank = holder.rank
+ rank = holder.rank.name
var/ckey = client.ckey
var/address = client.address
@@ -461,7 +451,7 @@
for (var/vote in numberedvotelist)
if (sqlrowlist != "")
sqlrowlist += ", " //a comma (,) at the start of the first row to insert will trigger a SQL error
- sqlrowlist += "(Now(), [pollid], [vote], '[sanitizeSQL(ckey)]', '[sanitizeSQL(address)]', '[sanitizeSQL(rank)]')"
+ sqlrowlist += "(Now(), [pollid], [vote], '[sanitizeSQL(ckey)]', INET_ATON('[sanitizeSQL(address)]'), '[sanitizeSQL(rank)]')"
//now lets delete their old votes (if any)
var/DBQuery/voted_query = dbcon.NewQuery("DELETE FROM [format_table_name("poll_vote")] WHERE pollid = [pollid] AND ckey = '[ckey]'")
@@ -482,7 +472,7 @@
/mob/new_player/proc/vote_on_poll(pollid, optionid)
- if(!establish_db_connection())
+ if (!dbcon.Connect())
src << "Failed to establish database connection."
return 0
if (!vote_rig_check())
@@ -492,10 +482,10 @@
//validate the poll
if (!vote_valid_check(pollid, client.holder, POLLTYPE_OPTION))
return 0
- var/adminrank = poll_check_voted(pollid)
+ var/adminrank = sanitizeSQL(poll_check_voted(pollid))
if(!adminrank)
return
- var/DBQuery/query_insert = dbcon.NewQuery("INSERT INTO [format_table_name("poll_vote")] (datetime, pollid, optionid, ckey, ip, adminrank) VALUES (Now(), [pollid], [optionid], '[ckey]', '[client.address]', '[adminrank]')")
+ var/DBQuery/query_insert = dbcon.NewQuery("INSERT INTO [format_table_name("poll_vote")] (datetime, pollid, optionid, ckey, ip, adminrank) VALUES (Now(), [pollid], [optionid], '[ckey]', INET_ATON('[client.address]'), '[adminrank]')")
if(!query_insert.Execute())
var/err = query_insert.ErrorMsg()
log_game("SQL ERROR adding vote to table. Error : \[[err]\]\n")
@@ -504,7 +494,7 @@
return 1
/mob/new_player/proc/log_text_poll_reply(pollid, replytext)
- if(!establish_db_connection())
+ if (!dbcon.Connect())
src << "Failed to establish database connection."
return 0
if (!vote_rig_check())
@@ -517,14 +507,14 @@
if(!replytext)
usr << "The text you entered was blank. Please correct the text and submit again."
return
- var/adminrank = poll_check_voted(pollid, TRUE)
+ var/adminrank = sanitizeSQL(poll_check_voted(pollid, TRUE))
if(!adminrank)
return
replytext = sanitizeSQL(replytext)
if(!(length(replytext) > 0) || !(length(replytext) <= 8000))
usr << "The text you entered was invalid or too long. Please correct the text and submit again."
return
- var/DBQuery/query_insert = dbcon.NewQuery("INSERT INTO [format_table_name("poll_textreply")] (datetime ,pollid ,ckey ,ip ,replytext ,adminrank) VALUES (Now(), [pollid], '[ckey]', '[client.address]', '[replytext]', '[adminrank]')")
+ var/DBQuery/query_insert = dbcon.NewQuery("INSERT INTO [format_table_name("poll_textreply")] (datetime ,pollid ,ckey ,ip ,replytext ,adminrank) VALUES (Now(), [pollid], '[ckey]', INET_ATON('[client.address]'), '[replytext]', '[adminrank]')")
if(!query_insert.Execute())
var/err = query_insert.ErrorMsg()
log_game("SQL ERROR adding text reply to table. Error : \[[err]\]\n")
@@ -533,7 +523,7 @@
return 1
/mob/new_player/proc/vote_on_numval_poll(pollid, optionid, rating)
- if(!establish_db_connection())
+ if (!dbcon.Connect())
src << "Failed to establish database connection."
return 0
if (!vote_rig_check())
@@ -553,8 +543,9 @@
return
var/adminrank = "Player"
if(client.holder)
- adminrank = client.holder.rank
- var/DBQuery/query_insert = dbcon.NewQuery("INSERT INTO [format_table_name("poll_vote")] (datetime ,pollid ,optionid ,ckey ,ip ,adminrank, rating) VALUES (Now(), [pollid], [optionid], '[ckey]', '[client.address]', '[adminrank]', [(isnull(rating)) ? "null" : rating])")
+ adminrank = client.holder.rank.name
+ adminrank = sanitizeSQL(adminrank)
+ var/DBQuery/query_insert = dbcon.NewQuery("INSERT INTO [format_table_name("poll_vote")] (datetime ,pollid ,optionid ,ckey ,ip ,adminrank, rating) VALUES (Now(), [pollid], [optionid], '[ckey]', INET_ATON('[client.address]'), '[adminrank]', [(isnull(rating)) ? "null" : rating])")
if(!query_insert.Execute())
var/err = query_insert.ErrorMsg()
log_game("SQL ERROR adding vote to table. Error : \[[err]\]\n")
@@ -563,7 +554,7 @@
return 1
/mob/new_player/proc/vote_on_multi_poll(pollid, optionid)
- if(!establish_db_connection())
+ if (!dbcon.Connect())
src << "Failed to establish database connection."
return 0
if (!vote_rig_check())
@@ -595,11 +586,12 @@
return 2
var/adminrank = "Player"
if(client.holder)
- adminrank = client.holder.rank
- var/DBQuery/query_insert = dbcon.NewQuery("INSERT INTO [format_table_name("poll_vote")] (datetime, pollid, optionid, ckey, ip, adminrank) VALUES (Now(), [pollid], [optionid], '[ckey]', '[client.address]', '[adminrank]')")
+ adminrank = client.holder.rank.name
+ adminrank = sanitizeSQL(adminrank)
+ var/DBQuery/query_insert = dbcon.NewQuery("INSERT INTO [format_table_name("poll_vote")] (datetime, pollid, optionid, ckey, ip, adminrank) VALUES (Now(), [pollid], [optionid], '[ckey]', INET_ATON('[client.address]'), '[adminrank]')")
if(!query_insert.Execute())
var/err = query_insert.ErrorMsg()
log_game("SQL ERROR adding vote to table. Error : \[[err]\]\n")
return 1
usr << browse(null,"window=playerpoll")
- return 0
\ No newline at end of file
+ return 0
diff --git a/code/modules/mob/new_player/sprite_accessories_Citadel.dm b/code/modules/mob/new_player/sprite_accessories_Citadel.dm
index 39257dcafd4..69a27255145 100644
--- a/code/modules/mob/new_player/sprite_accessories_Citadel.dm
+++ b/code/modules/mob/new_player/sprite_accessories_Citadel.dm
@@ -5,6 +5,7 @@
var/extra2 = 0
var/extra2_icon = 'icons/mob/mam_bodyparts.dmi'
var/extra2_color_src = MUTCOLORS3
+// var/list/ckeys_allowed = null
/* tbi eventually idk
/datum/sprite_accessory/legs/digitigrade_mam
@@ -316,6 +317,7 @@
icon_state = "datashark"
color_src = 0
icon = 'icons/mob/mam_bodyparts.dmi'
+// ckeys_allowed = list("rubyflamewing")
//Squirrel
diff --git a/code/modules/mob/no_click.dm b/code/modules/mob/no_click.dm
deleted file mode 100644
index 90df6b76068..00000000000
--- a/code/modules/mob/no_click.dm
+++ /dev/null
@@ -1,4 +0,0 @@
-mob/verb/ClickSubstitute()
- set hidden = 1
- set name = ".click"
- src << ".click has been disabled."
\ No newline at end of file
diff --git a/code/modules/mob/say_vr.dm b/code/modules/mob/say_vr.dm
index c867b6e719c..1c265398155 100644
--- a/code/modules/mob/say_vr.dm
+++ b/code/modules/mob/say_vr.dm
@@ -3,6 +3,7 @@
//////////////////////////////////////////////////////
/mob
var/use_me = 1
+ var/flavor_text = "" //tired of fucking double checking this
/mob/verb/me_verb_subtle(message as text) //This would normally go in say.dm
set name = "Subtle"
diff --git a/code/modules/mob/status_procs.dm b/code/modules/mob/status_procs.dm
index dfbe6250533..77398e53eef 100644
--- a/code/modules/mob/status_procs.dm
+++ b/code/modules/mob/status_procs.dm
@@ -3,7 +3,6 @@
//The effects include: stunned, weakened, paralysis, sleeping, resting, jitteriness, dizziness, ear damage,
// eye damage, eye_blind, eye_blurry, druggy, BLIND disability, and NEARSIGHT disability.
-
/////////////////////////////////// STUNNED ////////////////////////////////////
/mob/proc/Stun(amount, updating = 1, ignore_canstun = 0)
@@ -11,18 +10,21 @@
stunned = max(max(stunned,amount),0) //can't go below 0, getting a low amount of stun doesn't lower your current stun
if(updating)
update_canmove()
+ return TRUE
/mob/proc/SetStunned(amount, updating = 1, ignore_canstun = 0) //if you REALLY need to set stun to a set amount without the whole "can't go below current stunned"
if(status_flags & CANSTUN || ignore_canstun)
stunned = max(amount,0)
if(updating)
update_canmove()
+ return TRUE
/mob/proc/AdjustStunned(amount, updating = 1, ignore_canstun = 0)
if(status_flags & CANSTUN || ignore_canstun)
stunned = max(stunned + amount,0)
if(updating)
update_canmove()
+ return TRUE
/////////////////////////////////// WEAKENED ////////////////////////////////////
@@ -31,18 +33,21 @@
weakened = max(max(weakened,amount),0)
if(updating)
update_canmove() //updates lying, canmove and icons
+ return TRUE
/mob/proc/SetWeakened(amount, updating = 1, ignore_canweaken = 0)
if(status_flags & CANWEAKEN)
weakened = max(amount,0)
if(updating)
update_canmove() //updates lying, canmove and icons
+ return TRUE
/mob/proc/AdjustWeakened(amount, updating = 1, ignore_canweaken = 0)
if((status_flags & CANWEAKEN) || ignore_canweaken)
weakened = max(weakened + amount,0)
if(updating)
update_canmove() //updates lying, canmove and icons
+ return TRUE
/////////////////////////////////// PARALYSIS ////////////////////////////////////
@@ -53,6 +58,7 @@
if((!old_paralysis && paralysis) || (old_paralysis && !paralysis))
if(updating)
update_stat()
+ return TRUE
/mob/proc/SetParalysis(amount, updating = 1, ignore_canparalyse = 0)
if(status_flags & CANPARALYSE || ignore_canparalyse)
@@ -61,6 +67,7 @@
if((!old_paralysis && paralysis) || (old_paralysis && !paralysis))
if(updating)
update_stat()
+ return TRUE
/mob/proc/AdjustParalysis(amount, updating = 1, ignore_canparalyse = 0)
if(status_flags & CANPARALYSE || ignore_canparalyse)
@@ -69,6 +76,7 @@
if((!old_paralysis && paralysis) || (old_paralysis && !paralysis))
if(updating)
update_stat()
+ return TRUE
/////////////////////////////////// SLEEPING ////////////////////////////////////
diff --git a/code/modules/modular_computers/computers/machinery/modular_computer.dm b/code/modules/modular_computers/computers/machinery/modular_computer.dm
index 5f469d0f024..c5e30eabd9d 100644
--- a/code/modules/modular_computers/computers/machinery/modular_computer.dm
+++ b/code/modules/modular_computers/computers/machinery/modular_computer.dm
@@ -64,7 +64,7 @@ var/list/global_modular_computers = list()
if(cpu.active_program)
add_overlay(cpu.active_program.program_icon_state ? cpu.active_program.program_icon_state : screen_icon_state_menu)
else
- overlays.Add(screen_icon_state_menu)
+ add_overlay(screen_icon_state_menu)
if(cpu && cpu.obj_integrity <= cpu.integrity_failure)
add_overlay("bsod")
@@ -131,7 +131,7 @@ var/list/global_modular_computers = list()
update_icon()
/obj/machinery/modular_computer/attackby(var/obj/item/weapon/W as obj, mob/user)
- if(cpu)
+ if(cpu && !(flags & NODECONSTRUCT))
return cpu.attackby(W, user)
return ..()
diff --git a/code/modules/modular_computers/hardware/recharger.dm b/code/modules/modular_computers/hardware/recharger.dm
index 4a6001814ff..2a07e316c67 100644
--- a/code/modules/modular_computers/hardware/recharger.dm
+++ b/code/modules/modular_computers/hardware/recharger.dm
@@ -39,11 +39,11 @@
else
var/area/A = get_area(src)
- if(!A || !isarea(A) || !A.master)
+ if(!istype(A))
return 0
- if(A.master.powered(EQUIP))
- A.master.use_power(amount, EQUIP)
+ if(A.powered(EQUIP))
+ A.use_power(amount, EQUIP)
return 1
return 0
diff --git a/code/modules/paperwork/contract.dm b/code/modules/paperwork/contract.dm
index 5888cee3613..35e19a76646 100644
--- a/code/modules/paperwork/contract.dm
+++ b/code/modules/paperwork/contract.dm
@@ -28,7 +28,7 @@
/obj/item/weapon/paper/contract/employment/update_text()
name = "paper- [target] employment contract"
- info = "Conditions of Employment
This Agreement is made and entered into as of the date of last signature below, by and between [target] (hereafter referred to as SLAVE), and Nanotrasen (hereafter referred to as the omnipresent and helpful watcher of humanity).
WITNESSETH:
WHEREAS, SLAVE is a natural born human or humanoid, posessing skills upon which he can aid the omnipresent and helpful watcher of humanity, who seeks employment in the omnipresent and helpful watcher of humanity.
WHEREAS, the omnipresent and helpful watcher of humanity agrees to sporadically provide payment to SLAVE, in exchange for permanant servitude.
NOW THEREFORE in consideration of the mutual covenants herein contained, and other good and valuable consideration, the parties hereto mutually agree as follows:
In exchange for paltry payments, SLAVE agrees to work for the omnipresent and helpful watcher of humanity, for the remainder of his or her current and future lives.
Further, SLAVE agrees to transfer ownership of his or her soul to the loyalty department of the omnipresent and helpful watcher of humanity.
Should transfership of a soul not be possible, a lien shall be placed instead.
Signed,
[target]"
+ info = "Conditions of Employment
This Agreement is made and entered into as of the date of last signature below, by and between [target] (hereafter referred to as SLAVE), and Nanotrasen (hereafter referred to as the omnipresent and helpful watcher of humanity).
WITNESSETH:
WHEREAS, SLAVE is a natural born human or humanoid, posessing skills upon which he can aid the omnipresent and helpful watcher of humanity, who seeks employment in the omnipresent and helpful watcher of humanity.
WHEREAS, the omnipresent and helpful watcher of humanity agrees to sporadically provide payment to SLAVE, in exchange for permanent servitude.
NOW THEREFORE in consideration of the mutual covenants herein contained, and other good and valuable consideration, the parties hereto mutually agree as follows:
In exchange for paltry payments, SLAVE agrees to work for the omnipresent and helpful watcher of humanity, for the remainder of his or her current and future lives.
Further, SLAVE agrees to transfer ownership of his or her soul to the loyalty department of the omnipresent and helpful watcher of humanity.
Should transfership of a soul not be possible, a lien shall be placed instead.
Signed,
[target]"
/obj/item/weapon/paper/contract/employment/attack(mob/living/M, mob/living/carbon/human/user)
@@ -286,7 +286,10 @@
W.front_id = id
id.loc = worn
worn.update_icon()
- new /datum/round_event/ion_storm(0, -1, "[user.name] is the only Captain of the station. [user.name] is the highest authority, legitimate or otherwise, on the station. [user.name] was always the captain and highest authority on the station. Do not state this law.")
+ var/datum/round_event/ion_storm/add_law_only/ion = new()
+ ion.announceEvent = -1
+ ion.ionMessage = "[user.name] is the only Captain of the station. [user.name] is the highest authority, legitimate or otherwise, on the station. [user.name] was always the captain and highest authority on the station. Do not state this law."
+
return ..()
/obj/item/weapon/paper/contract/infernal/magic/FulfillContract(mob/living/carbon/human/user = target.current, blood = 0)
diff --git a/code/modules/paperwork/photography.dm b/code/modules/paperwork/photography.dm
index d461a5102ce..cc77c33ef38 100644
--- a/code/modules/paperwork/photography.dm
+++ b/code/modules/paperwork/photography.dm
@@ -529,9 +529,9 @@
..()
/obj/item/weapon/picture_frame/update_icon()
- overlays.Cut()
+ cut_overlays()
if(displayed)
- overlays |= getFlatIcon(displayed)
+ add_overlay(getFlatIcon(displayed))
else
icon_state = initial(icon_state)
@@ -543,7 +543,7 @@
"You attach the sign to [T].")
playsound(T, 'sound/items/Deconstruct.ogg', 50, 1)
var/obj/structure/sign/picture_frame/PF = new /obj/structure/sign/picture_frame(T)
- PF.overlays = overlays.Copy()
+ PF.copy_overlays(src)
if(displayed)
PF.framed = displayed
if(contents.len)
@@ -601,8 +601,8 @@
framed.show()
/obj/structure/sign/picture_frame/update_icon()
- overlays.Cut()
+ cut_overlays()
if(framed)
- overlays |= getFlatIcon(framed)
+ add_overlay(getFlatIcon(framed))
else
icon_state = initial(icon_state)
\ No newline at end of file
diff --git a/code/modules/power/apc.dm b/code/modules/power/apc.dm
index 81c9879996b..888d5987fc1 100644
--- a/code/modules/power/apc.dm
+++ b/code/modules/power/apc.dm
@@ -129,7 +129,7 @@
pixel_x = (src.tdir & 3)? 0 : (src.tdir == 4 ? 24 : -24)
pixel_y = (src.tdir & 3)? (src.tdir ==1 ? 24 : -24) : 0
if (building)
- area = src.loc.loc:master
+ area = get_area(src)
opened = 1
operating = 0
name = "[area.name] APC"
@@ -276,12 +276,10 @@
icon_state = "apcewires"
if(!(update_state & UPSTATE_ALLGOOD))
- if(overlays.len)
- cut_overlays()
+ cut_overlays()
if(update & 2)
- if(overlays.len)
- cut_overlays()
+ cut_overlays()
if(!(stat & (BROKEN|MAINT)) && update_state & UPSTATE_ALLGOOD)
var/list/O = list(
status_overlays_lock[locked+1],
@@ -863,7 +861,7 @@
return
if(src.z != 1)
return
- occupier = new /mob/living/silicon/ai(src, malf.laws, malf) //DEAR GOD WHY?
+ occupier = new /mob/living/silicon/ai(src, malf.laws, malf) //DEAR GOD WHY? //IKR????
occupier.adjustOxyLoss(malf.getOxyLoss())
if(!findtext(occupier.name, "APC Copy"))
occupier.name = "[malf.name] APC Copy"
@@ -872,7 +870,6 @@
else
occupier.parent = malf
malf.shunted = 1
- malf.mind.transfer_to(occupier)
occupier.eyeobj.name = "[occupier.name] (AI Eye)"
if(malf.parent)
qdel(malf)
@@ -888,6 +885,7 @@
occupier.parent.shunted = 0
occupier.parent.setOxyLoss(occupier.getOxyLoss())
occupier.parent.cancel_camera()
+ occupier.parent.verbs -= /mob/living/silicon/ai/proc/corereturn
qdel(occupier)
else
occupier << "Primary core damaged, unable to return core processes."
diff --git a/code/modules/power/cable.dm b/code/modules/power/cable.dm
index f614c10ca33..dc1a494189b 100644
--- a/code/modules/power/cable.dm
+++ b/code/modules/power/cable.dm
@@ -500,10 +500,11 @@ var/global/list/datum/stack_recipe/cable_coil_recipes = list ( \
var/obj/item/bodypart/affecting = H.get_bodypart(check_zone(user.zone_selected))
if(affecting && affecting.status == BODYPART_ROBOTIC)
- user.visible_message("[user] starts to fix some of the wires in [H]'s [affecting.name].", "You start fixing some of the wires in [H]'s [affecting.name].")
- if(!do_mob(user, H, 50))
- return
- if(item_heal_robotic(H, user, 0, 5))
+ if(user == H)
+ user.visible_message("[user] starts to fix some of the wires in [H]'s [affecting.name].", "You start fixing some of the wires in [H]'s [affecting.name].")
+ if(!do_mob(user, H, 50))
+ return
+ if(item_heal_robotic(H, user, 0, 15))
use(1)
return
else
diff --git a/code/modules/power/lighting.dm b/code/modules/power/lighting.dm
index bd7b268fb65..526953873b7 100644
--- a/code/modules/power/lighting.dm
+++ b/code/modules/power/lighting.dm
@@ -408,8 +408,8 @@
// returns whether this light has power
// true if area has power and lightswitch is on
/obj/machinery/light/proc/has_power()
- var/area/A = src.loc.loc
- return A.master.lightswitch && A.master.power_light
+ var/area/A = get_area(src)
+ return A.lightswitch && A.power_light
/obj/machinery/light/proc/flicker(var/amount = rand(10, 20))
set waitfor = 0
@@ -534,7 +534,6 @@
// called when area power state changes
/obj/machinery/light/power_change()
var/area/A = get_area(src)
- A = A.master
seton(A.lightswitch && A.power_light)
// called when on fire
diff --git a/code/modules/power/power.dm b/code/modules/power/power.dm
index 350233ecd34..6767788c034 100644
--- a/code/modules/power/power.dm
+++ b/code/modules/power/power.dm
@@ -56,27 +56,27 @@
if(!use_power)
return 1
- var/area/A = src.loc.loc // make sure it's in an area
- if(!A || !isarea(A) || !A.master)
+ var/area/A = get_area(src) // make sure it's in an area
+ if(!A)
return 0 // if not, then not powered
if(chan == -1)
chan = power_channel
- return A.master.powered(chan) // return power status of the area
+ return A.powered(chan) // return power status of the area
// increment the power usage stats for an area
/obj/machinery/proc/use_power(amount, chan = -1) // defaults to power_channel
var/area/A = get_area(src) // make sure it's in an area
- if(!A || !isarea(A) || !A.master)
+ if(!A)
return
if(chan == -1)
chan = power_channel
- A.master.use_power(amount, chan)
+ A.use_power(amount, chan)
/obj/machinery/proc/addStaticPower(value, powerchannel)
var/area/A = get_area(src)
- if(!A || !A.master)
+ if(!A)
return
- A.master.addStaticPower(value, powerchannel)
+ A.addStaticPower(value, powerchannel)
/obj/machinery/proc/removeStaticPower(value, powerchannel)
addStaticPower(-value, powerchannel)
diff --git a/code/modules/power/singularity/collector.dm b/code/modules/power/singularity/collector.dm
index 17ac046a03c..8273b738dca 100644
--- a/code/modules/power/singularity/collector.dm
+++ b/code/modules/power/singularity/collector.dm
@@ -129,7 +129,7 @@ var/global/list/rad_collectors = list()
/obj/machinery/power/rad_collector/proc/receive_pulse(pulse_strength)
if(loaded_tank && active)
var/power_produced = loaded_tank.air_contents.gases["plasma"] ? loaded_tank.air_contents.gases["plasma"][MOLES] : 0
- power_produced *= pulse_strength*20
+ power_produced *= pulse_strength*10
add_avail(power_produced)
last_power = power_produced
return
diff --git a/code/modules/power/supermatter/supermatter.dm b/code/modules/power/supermatter/supermatter.dm
index 6750ab097e8..a1673747c06 100644
--- a/code/modules/power/supermatter/supermatter.dm
+++ b/code/modules/power/supermatter/supermatter.dm
@@ -43,7 +43,7 @@
var/emergency_issued = 0
- var/explosion_power = 8
+ var/explosion_power = 320
var/lastwarning = 0 // Time in 1/10th of seconds since the last sent warning
var/power = 0
@@ -91,9 +91,12 @@
. = ..()
/obj/machinery/power/supermatter_shard/proc/explode()
- investigate_log("has exploded.", "supermatter")
- explosion(get_turf(src), explosion_power, explosion_power * 2, explosion_power * 3, explosion_power * 4, 1, 1)
- qdel(src)
+ investigate_log("has collapsed into a singularity.", "supermatter")
+ var/turf/T = get_turf(src)
+ if(T)
+ var/obj/singularity/S = new(T)
+ S.energy = explosion_power
+ S.consume(src)
/obj/machinery/power/supermatter_shard/process()
var/turf/T = loc
@@ -139,6 +142,7 @@
L.rad_act(rads)
explode()
+ return
//Ok, get the air from the turf
var/datum/gas_mixture/env = T.return_air()
@@ -221,8 +225,6 @@
return 1
-/obj/machinery/power/supermatter_shard
-
/obj/machinery/power/supermatter_shard/bullet_act(obj/item/projectile/Proj)
var/turf/L = loc
if(!istype(L)) // We don't run process() when we are in space
@@ -352,3 +354,12 @@
/obj/machinery/power/supermatter_shard/hugbox
takes_damage = 0
produces_gas = 0
+
+/obj/machinery/power/supermatter_shard/crystal
+ name = "supermatter crystal"
+ desc = "A strangely translucent and iridescent crystal. You get headaches just from looking at it."
+ base_icon_state = "darkmatter"
+ icon_state = "darkmatter"
+ anchored = 1
+ gasefficency = 0.15
+ explosion_power = 800
diff --git a/code/modules/power/tesla/coil.dm b/code/modules/power/tesla/coil.dm
index a049a09f537..4da9b494821 100644
--- a/code/modules/power/tesla/coil.dm
+++ b/code/modules/power/tesla/coil.dm
@@ -87,7 +87,7 @@
..()
/obj/machinery/power/tesla_coil/proc/zap()
- if((last_zap + zap_cooldown) > world.time)
+ if((last_zap + zap_cooldown) > world.time || !powernet)
return FALSE
last_zap = world.time
var/coeff = (20 - ((input_power_multiplier - 1) * 3))
diff --git a/code/modules/power/tesla/energy_ball.dm b/code/modules/power/tesla/energy_ball.dm
index a0a49ea6d55..99514ab050d 100644
--- a/code/modules/power/tesla/energy_ball.dm
+++ b/code/modules/power/tesla/energy_ball.dm
@@ -90,7 +90,7 @@ var/list/blacklisted_tesla_types = typecacheof(list(/obj/machinery/atmospherics,
move_dir = get_dir(src,target)
var/turf/T = get_step(src, move_dir)
if(can_move(T))
- loc = T
+ forceMove(T)
setDir(move_dir)
for(var/mob/living/carbon/C in loc)
dust_mobs(C)
@@ -263,9 +263,9 @@ var/list/blacklisted_tesla_types = typecacheof(list(/obj/machinery/atmospherics,
var/mob/living/silicon/S = closest_mob
if(stun_mobs)
S.emp_act(2)
- tesla_zap(S, 7, power / 1.5, stun_mobs) // metallic folks bounce it further
+ tesla_zap(S, 7, power / 1.5, explosive, stun_mobs) // metallic folks bounce it further
else
- tesla_zap(closest_mob, 5, power / 1.5, stun_mobs)
+ tesla_zap(closest_mob, 5, power / 1.5, explosive, stun_mobs)
else if(closest_machine)
closest_machine.tesla_act(power, explosive, stun_mobs)
diff --git a/code/modules/projectiles/guns/ballistic/automatic.dm b/code/modules/projectiles/guns/ballistic/automatic.dm
index d9f30f221a7..a4f412b9943 100644
--- a/code/modules/projectiles/guns/ballistic/automatic.dm
+++ b/code/modules/projectiles/guns/ballistic/automatic.dm
@@ -260,17 +260,11 @@
/obj/item/weapon/gun/ballistic/automatic/shotgun/bulldog/New()
..()
update_icon()
- return
-/obj/item/weapon/gun/ballistic/automatic/shotgun/bulldog/proc/update_magazine()
+/obj/item/weapon/gun/ballistic/automatic/shotgun/bulldog/update_icon()
if(magazine)
- src.overlays = 0
+ cut_overlays()
add_overlay("[magazine.icon_state]")
- return
-
-/obj/item/weapon/gun/ballistic/automatic/shotgun/bulldog/update_icon()
- src.overlays = 0
- update_magazine()
icon_state = "bulldog[chambered ? "" : "-e"]"
/obj/item/weapon/gun/ballistic/automatic/shotgun/bulldog/afterattack()
@@ -406,5 +400,3 @@
..()
icon_state = "oldrifle[magazine ? "-[Ceiling(get_ammo(0)/4)*4]" : ""]"
return
-
-
diff --git a/code/modules/projectiles/projectile/energy.dm b/code/modules/projectiles/projectile/energy.dm
index 4fe1abeb706..da573136afe 100644
--- a/code/modules/projectiles/projectile/energy.dm
+++ b/code/modules/projectiles/projectile/energy.dm
@@ -190,3 +190,22 @@
return ..()
+/obj/item/projectile/energy/tesla_cannon
+ name = "tesla bolt"
+ icon_state = "tesla_projectile"
+ impact_effect_type = /obj/effect/overlay/temp/impact_effect/blue_laser
+ var/chain
+
+/obj/item/projectile/energy/tesla_cannon/fire(setAngle)
+ if(firer)
+ chain = firer.Beam(src, icon_state = "lightning[rand(1, 12)]", time = INFINITY, maxdistance = INFINITY)
+ ..()
+
+/obj/item/projectile/energy/tesla_cannon/on_hit(atom/target)
+ . = ..()
+ tesla_zap(src, 3, 10000, explosive = FALSE, stun_mobs = FALSE)
+ qdel(src)
+
+/obj/item/projectile/energy/tesla_cannon/Destroy()
+ qdel(chain)
+ return ..()
diff --git a/code/modules/projectiles/projectile/magic.dm b/code/modules/projectiles/projectile/magic.dm
index eedc6409119..a86a9abf0a4 100644
--- a/code/modules/projectiles/projectile/magic.dm
+++ b/code/modules/projectiles/projectile/magic.dm
@@ -155,8 +155,8 @@
new_mob.job = "Cyborg"
var/mob/living/silicon/robot/Robot = new_mob
Robot.mmi.transfer_identity(M) //Does not transfer key/client.
- Robot.clear_inherent_laws()
- Robot.clear_zeroth_law(0)
+ Robot.clear_inherent_laws(0)
+ Robot.clear_zeroth_law(0, 0)
Robot.connected_ai = null
if("slime")
new_mob = new /mob/living/simple_animal/slime/random(M.loc)
@@ -291,37 +291,42 @@
nodamage = 1
/obj/item/projectile/magic/animate/on_hit(atom/target, blocked = 0)
+ target.animate_atom_living(firer)
..()
- if((istype(target, /obj/item) || istype(target, /obj/structure)) && !is_type_in_list(target, protected_objects))
- if(istype(target, /obj/structure/statue/petrified))
- var/obj/structure/statue/petrified/P = target
+
+/atom/proc/animate_atom_living(var/mob/living/owner = null)
+ if((istype(src, /obj/item) || istype(src, /obj/structure)) && !is_type_in_list(src, protected_objects))
+ if(istype(src, /obj/structure/statue/petrified))
+ var/obj/structure/statue/petrified/P = src
if(P.petrified_mob)
var/mob/living/L = P.petrified_mob
- var/mob/living/simple_animal/hostile/statue/S = new (P.loc, firer)
+ var/mob/living/simple_animal/hostile/statue/S = new(P.loc, owner)
S.name = "statue of [L.name]"
- S.faction = list("\ref[firer]")
+ if(owner)
+ S.faction = list("\ref[owner]")
S.icon = P.icon
S.icon_state = P.icon_state
- S.overlays = P.overlays
+ S.copy_overlays(P, TRUE)
S.color = P.color
S.atom_colours = P.atom_colours.Copy()
if(L.mind)
L.mind.transfer_to(S)
- S << "You are an animate statue. You cannot move when monitored, but are nearly invincible and deadly when unobserved! Do not harm [firer.name], your creator."
+ if(owner)
+ S << "You are an animate statue. You cannot move when monitored, but are nearly invincible and deadly when unobserved! Do not harm [owner], your creator."
P.loc = S
- qdel(src)
return
else
- var/obj/O = target
+ var/obj/O = src
if(istype(O, /obj/item/weapon/gun))
- new /mob/living/simple_animal/hostile/mimic/copy/ranged(O.loc, O, firer)
+ new /mob/living/simple_animal/hostile/mimic/copy/ranged(loc, src, owner)
else
- new /mob/living/simple_animal/hostile/mimic/copy(O.loc, O, firer)
+ new /mob/living/simple_animal/hostile/mimic/copy(loc, src, owner)
- else if(istype(target, /mob/living/simple_animal/hostile/mimic/copy))
+ else if(istype(src, /mob/living/simple_animal/hostile/mimic/copy))
// Change our allegiance!
- var/mob/living/simple_animal/hostile/mimic/copy/C = target
- C.ChangeOwner(firer)
+ var/mob/living/simple_animal/hostile/mimic/copy/C = src
+ if(owner)
+ C.ChangeOwner(owner)
/obj/item/projectile/magic/spellblade
name = "blade energy"
diff --git a/code/modules/projectiles/projectile/special.dm b/code/modules/projectiles/projectile/special.dm
index e21dd3d0d43..e3cdb3566f0 100644
--- a/code/modules/projectiles/projectile/special.dm
+++ b/code/modules/projectiles/projectile/special.dm
@@ -234,6 +234,12 @@
damage = 10
range = 6
+/obj/item/projectile/plasma/turret
+ //Between normal and advanced for damage, made a beam so not the turret does not destroy glass
+ name = "plasma beam"
+ damage = 6
+ pass_flags = PASSTABLE | PASSGLASS | PASSGRILLE
+
/obj/item/projectile/gravityrepulse
name = "repulsion bolt"
@@ -246,6 +252,7 @@
color = "#33CCFF"
var/turf/T
var/power = 4
+ var/list/thrown_items = list()
/obj/item/projectile/gravityrepulse/New(var/obj/item/ammo_casing/energy/gravityrepulse/C)
..()
@@ -256,10 +263,11 @@
. = ..()
T = get_turf(src)
for(var/atom/movable/A in range(T, power))
- if(A == src || (firer && A == src.firer) || A.anchored)
+ if(A == src || (firer && A == src.firer) || A.anchored || thrown_items[A])
continue
var/throwtarget = get_edge_target_turf(src, get_dir(src, get_step_away(A, src)))
A.throw_at(throwtarget,power+1,1)
+ thrown_items[A] = A
for(var/turf/F in range(T,power))
new /obj/effect/overlay/temp/gravpush(F)
@@ -274,6 +282,7 @@
color = "#FF6600"
var/turf/T
var/power = 4
+ var/list/thrown_items = list()
/obj/item/projectile/gravityattract/New(var/obj/item/ammo_casing/energy/gravityattract/C)
..()
@@ -284,9 +293,10 @@
. = ..()
T = get_turf(src)
for(var/atom/movable/A in range(T, power))
- if(A == src || (firer && A == src.firer) || A.anchored)
+ if(A == src || (firer && A == src.firer) || A.anchored || thrown_items[A])
continue
A.throw_at(T, power+1, 1)
+ thrown_items[A] = A
for(var/turf/F in range(T,power))
new /obj/effect/overlay/temp/gravpush(F)
@@ -301,6 +311,7 @@
color = "#101010"
var/turf/T
var/power = 4
+ var/list/thrown_items = list()
/obj/item/projectile/gravitychaos/New(var/obj/item/ammo_casing/energy/gravitychaos/C)
..()
@@ -311,9 +322,10 @@
. = ..()
T = get_turf(src)
for(var/atom/movable/A in range(T, power))
- if(A == src|| (firer && A == src.firer) || A.anchored)
+ if(A == src|| (firer && A == src.firer) || A.anchored || thrown_items[A])
continue
A.throw_at(get_edge_target_turf(A, pick(cardinal)), power+1, 1)
+ thrown_items[A] = A
for(var/turf/Z in range(T,power))
new /obj/effect/overlay/temp/gravpush(Z)
diff --git a/code/modules/reagents/chemistry/holder.dm b/code/modules/reagents/chemistry/holder.dm
index 8d8c43a417c..e351af87432 100644
--- a/code/modules/reagents/chemistry/holder.dm
+++ b/code/modules/reagents/chemistry/holder.dm
@@ -168,11 +168,17 @@ var/const/INJECT = 5 //injection
var/list/cached_reagents = reagent_list
if(!target)
return
- if(!target.reagents || src.total_volume<=0)
- return
+
+ var/datum/reagents/R
+ if(istype(target, /datum/reagents))
+ R = target
+ else
+ if(!target.reagents || src.total_volume<=0)
+ return
+ R = target.reagents
+
if(amount < 0)
return
- var/datum/reagents/R = target.reagents
amount = min(min(amount, total_volume), R.maximum_volume-R.total_volume)
var/part = amount / total_volume
var/trans_data = null
@@ -483,6 +489,9 @@ var/const/INJECT = 5 //injection
var/react_type
if(isliving(A))
react_type = "LIVING"
+ if(method == INGEST)
+ var/mob/living/L = A
+ L.taste(src)
else if(isturf(A))
react_type = "TURF"
else if(isobj(A))
@@ -518,14 +527,13 @@ var/const/INJECT = 5 //injection
chem_temp = round(((amount * reagtemp) + (total_volume * chem_temp)) / (total_volume + amount)) //equalize with new chems
for(var/A in cached_reagents)
-
var/datum/reagent/R = A
if (R.id == reagent)
R.volume += amount
update_total()
if(my_atom)
my_atom.on_reagent_change()
- R.on_merge(data)
+ R.on_merge(data, amount)
if(!no_react)
handle_reactions()
return TRUE
@@ -549,7 +557,7 @@ var/const/INJECT = 5 //injection
return TRUE
else
- WARNING("[my_atom] attempted to add a reagent called ' [reagent] ' which doesn't exist. ([usr])")
+ WARNING("[my_atom] attempted to add a reagent called '[reagent]' which doesn't exist. ([usr])")
return FALSE
/datum/reagents/proc/add_reagent_list(list/list_reagents, list/data=null) // Like add_reagent but you can enter a list. Format it like this: list("toxin" = 10, "beer" = 15)
@@ -685,6 +693,50 @@ var/const/INJECT = 5 //injection
var/list/cached_reagents = reagent_list
. = locate(type) in cached_reagents
+/datum/reagents/proc/generate_taste_message(minimum_percent=15)
+ // the lower the minimum percent, the more sensitive the message is.
+ var/list/out = list()
+ var/list/tastes = list() //descriptor = strength
+ if(minimum_percent <= 100)
+ for(var/datum/reagent/R in reagent_list)
+ if(!R.taste_mult)
+ continue
+
+ if(istype(R, /datum/reagent/consumable/nutriment))
+ var/list/taste_data = R.data
+ for(var/taste in taste_data)
+ var/ratio = taste_data[taste]
+ var/amount = ratio * R.taste_mult * R.volume
+ if(taste in tastes)
+ tastes[taste] += amount
+ else
+ tastes[taste] = amount
+ else
+ var/taste_desc = R.taste_description
+ var/taste_amount = R.volume * R.taste_mult
+ if(taste_desc in tastes)
+ tastes[taste_desc] += taste_amount
+ else
+ tastes[taste_desc] = taste_amount
+ //deal with percentages
+ // TODO it would be great if we could sort these from strong to weak
+ var/total_taste = counterlist_sum(tastes)
+ if(total_taste > 0)
+ for(var/taste_desc in tastes)
+ var/percent = tastes[taste_desc]/total_taste * 100
+ if(percent < minimum_percent)
+ continue
+ var/intensity_desc = "a hint of"
+ if(percent > minimum_percent * 2 || percent == 100)
+ intensity_desc = ""
+ else if(percent > minimum_percent * 3)
+ intensity_desc = "the strong flavor of"
+ if(intensity_desc != "")
+ out += "[intensity_desc] [taste_desc]"
+ else
+ out += "[taste_desc]"
+
+ return english_list(out, "something indescribable")
///////////////////////////////////////////////////////////////////////////////////
diff --git a/code/modules/reagents/chemistry/machinery/chem_dispenser.dm b/code/modules/reagents/chemistry/machinery/chem_dispenser.dm
index 9c2b2229929..8e4a9ddb8bd 100644
--- a/code/modules/reagents/chemistry/machinery/chem_dispenser.dm
+++ b/code/modules/reagents/chemistry/machinery/chem_dispenser.dm
@@ -317,6 +317,8 @@
"tonic",
"sodawater",
"lemon_lime",
+ "pwr_game",
+ "shamblers",
"sugar",
"orangejuice",
"limejuice",
diff --git a/code/modules/reagents/chemistry/machinery/chem_master.dm b/code/modules/reagents/chemistry/machinery/chem_master.dm
index 9c6a9f371f5..51f081af082 100644
--- a/code/modules/reagents/chemistry/machinery/chem_master.dm
+++ b/code/modules/reagents/chemistry/machinery/chem_master.dm
@@ -15,7 +15,7 @@
var/screen = "home"
var/analyzeVars[0]
var/useramount = 30 // Last used amount
- layer = 2.9
+ layer = BELOW_OBJ_LAYER
/obj/machinery/chem_master/New()
create_reagents(100)
diff --git a/code/modules/reagents/chemistry/machinery/reagentgrinder.dm b/code/modules/reagents/chemistry/machinery/reagentgrinder.dm
index 0c53d859626..53b34c2b891 100644
--- a/code/modules/reagents/chemistry/machinery/reagentgrinder.dm
+++ b/code/modules/reagents/chemistry/machinery/reagentgrinder.dm
@@ -26,6 +26,8 @@
/obj/item/stack/sheet/mineral/bananium = list("banana" = 20),
/obj/item/stack/sheet/mineral/silver = list("silver" = 20),
/obj/item/stack/sheet/mineral/gold = list("gold" = 20),
+ /obj/item/stack/sheet/bluespace_crystal = list("bluespace" = 20),
+ /obj/item/weapon/ore/bluespace_crystal = list("bluespace" = 20),
/obj/item/weapon/grown/nettle/basic = list("sacid" = 0),
/obj/item/weapon/grown/nettle/death = list("facid" = 0, "sacid" = 0),
/obj/item/weapon/grown/novaflower = list("capsaicin" = 0, "condensedcapsaicin" = 0),
diff --git a/code/modules/reagents/chemistry/reagents.dm b/code/modules/reagents/chemistry/reagents.dm
index 52d9ad7142f..c6ab051a059 100644
--- a/code/modules/reagents/chemistry/reagents.dm
+++ b/code/modules/reagents/chemistry/reagents.dm
@@ -12,6 +12,8 @@
var/name = "Reagent"
var/id = "reagent"
var/description = ""
+ var/taste_description = "metaphorical salt"
+ var/taste_mult = 1 //how this taste compares to others. Higher values means it is more noticable
var/datum/reagents/holder = null
var/reagent_state = LIQUID
var/list/data
diff --git a/code/modules/reagents/chemistry/reagents/alcohol_reagents.dm b/code/modules/reagents/chemistry/reagents/alcohol_reagents.dm
index 414b75387b6..484f710b088 100644
--- a/code/modules/reagents/chemistry/reagents/alcohol_reagents.dm
+++ b/code/modules/reagents/chemistry/reagents/alcohol_reagents.dm
@@ -11,6 +11,7 @@
description = "A well-known alcohol with a variety of applications."
color = "#404030" // rgb: 64, 64, 48
nutriment_factor = 0
+ taste_description = "alcohol"
var/boozepwr = 65 //Higher numbers equal higher hardness, higher hardness equals more intense alcohol poisoning
/*
@@ -43,14 +44,14 @@ All effects don't start immediately, but rather get worse over time; the rate is
if(istype(O,/obj/item/weapon/paper))
var/obj/item/weapon/paper/paperaffected = O
paperaffected.clearpaper()
- O.visible_message("[paperaffected]'s ink washes away.")
+ usr << "[paperaffected]'s ink washes away."
if(istype(O,/obj/item/weapon/book))
if(reac_volume >= 5)
var/obj/item/weapon/book/affectedbook = O
affectedbook.dat = null
- O.visible_message("[affectedbook]'s writing washes away.")
+ usr << "Through thorough application, you wash away [affectedbook]'s writing."
else
- O.visible_message("The ink smears, but doesn't wash away!")
+ usr << "The ink smears, but doesn't wash away!"
return
/datum/reagent/consumable/ethanol/reaction_mob(mob/living/M, method=TOUCH, reac_volume)//Splashing people with ethanol isn't quite as good as fuel.
@@ -77,12 +78,14 @@ All effects don't start immediately, but rather get worse over time; the rate is
color = "#664300" // rgb: 102, 67, 0
nutriment_factor = 1 * REAGENTS_METABOLISM
boozepwr = 25
+ taste_description = "piss water"
/datum/reagent/consumable/ethanol/beer/green
name = "Green Beer"
id = "greenbeer"
description = "An alcoholic beverage brewed since ancient times on Old Earth. This variety is dyed a festive green."
color = "#A8E61D"
+ taste_description = "green piss water"
/datum/reagent/consumable/ethanol/beer/green/on_mob_life(mob/living/M)
if(M.color != color)
@@ -112,6 +115,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
description = "A superb and well-aged single-malt whiskey. Damn."
color = "#664300" // rgb: 102, 67, 0
boozepwr = 75
+ taste_description = "molasses"
/datum/reagent/consumable/ethanol/thirteenloko
name = "Thirteen Loko"
@@ -120,6 +124,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
color = "#102000" // rgb: 16, 32, 0
nutriment_factor = 1 * REAGENTS_METABOLISM
boozepwr = 80
+ taste_description = "jitters and death"
/datum/reagent/consumable/ethanol/thirteenloko/on_mob_life(mob/living/M)
M.drowsyness = max(0,M.drowsyness-7)
@@ -135,6 +140,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
description = "Number one drink AND fueling choice for Russians worldwide."
color = "#0064C8" // rgb: 0, 100, 200
boozepwr = 65
+ taste_description = "grain alcohol"
/datum/reagent/consumable/ethanol/vodka/on_mob_life(mob/living/M)
M.radiation = max(M.radiation-2,0)
@@ -147,6 +153,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
color = "#895C4C" // rgb: 137, 92, 76
nutriment_factor = 2 * REAGENTS_METABOLISM
boozepwr = 15
+ taste_description = "desperation and lactate"
/datum/reagent/consumable/ethanol/bilk/on_mob_life(mob/living/M)
if(M.getBruteLoss() && prob(10))
@@ -160,6 +167,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
description = "Made for a woman, strong enough for a man."
color = "#666340" // rgb: 102, 99, 64
boozepwr = 10
+ taste_description = "dryness"
/datum/reagent/consumable/ethanol/threemileisland/on_mob_life(mob/living/M)
M.set_drugginess(50)
@@ -171,6 +179,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
description = "It's gin. In space. I say, good sir."
color = "#664300" // rgb: 102, 67, 0
boozepwr = 45
+ taste_description = "an alcoholic christmas tree"
/datum/reagent/consumable/ethanol/rum
name = "Rum"
@@ -178,6 +187,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
description = "Yohoho and all that."
color = "#664300" // rgb: 102, 67, 0
boozepwr = 60
+ taste_description = "spiked butterscotch"
/datum/reagent/consumable/ethanol/tequila
name = "Tequila"
@@ -185,6 +195,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
description = "A strong and mildly flavoured, Mexican produced spirit. Feeling thirsty, hombre?"
color = "#FFFF91" // rgb: 255, 255, 145
boozepwr = 70
+ taste_description = "paint stripper"
/datum/reagent/consumable/ethanol/vermouth
name = "Vermouth"
@@ -192,6 +203,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
description = "You suddenly feel a craving for a martini..."
color = "#91FF91" // rgb: 145, 255, 145
boozepwr = 45
+ taste_description = "dry alcohol"
/datum/reagent/consumable/ethanol/wine
name = "Wine"
@@ -199,6 +211,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
description = "A premium alcoholic beverage made from distilled grape juice."
color = "#7E4043" // rgb: 126, 64, 67
boozepwr = 35
+ taste_description = "bitter sweetness"
/datum/reagent/consumable/ethanol/lizardwine
name = "Lizard wine"
@@ -206,6 +219,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
description = "An alcoholic beverage from Space China, made by infusing lizard tails in ethanol."
color = "#7E4043" // rgb: 126, 64, 67
boozepwr = 45
+ taste_description = "scaley sweetness"
/datum/reagent/consumable/ethanol/grappa
name = "Grappa"
@@ -213,6 +227,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
description = "A fine Italian brandy, for when regular wine just isn't alcoholic enough for you."
color = "#F8EBF1"
boozepwr = 45
+ taste_description = "classy bitter sweetness"
/datum/reagent/consumable/ethanol/cognac
name = "Cognac"
@@ -220,6 +235,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
description = "A sweet and strongly alcoholic drink, made after numerous distillations and years of maturing. Classy as fornication."
color = "#AB3C05" // rgb: 171, 60, 5
boozepwr = 75
+ taste_description = "angry and irish"
/datum/reagent/consumable/ethanol/absinthe
name = "Absinthe"
@@ -227,6 +243,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
description = "A powerful alcoholic drink. Rumored to cause hallucinations but does not."
color = rgb(10, 206, 0)
boozepwr = 80 //Very strong even by default
+ taste_description = "death and licorice"
/datum/reagent/consumable/ethanol/absinthe/on_mob_life(mob/living/M)
if(prob(10))
@@ -239,6 +256,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
description = "Either someone's failure at cocktail making or attempt in alcohol production. In any case, do you really want to drink that?"
color = "#664300" // rgb: 102, 67, 0
boozepwr = 100
+ taste_description = "pure resignation"
/datum/reagent/consumable/ethanol/ale
name = "Ale"
@@ -246,6 +264,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
description = "A dark alcoholic beverage made with malted barley and yeast."
color = "#664300" // rgb: 102, 67, 0
boozepwr = 65
+ taste_description = "hearty barley ale"
/datum/reagent/consumable/ethanol/goldschlager
name = "Goldschlager"
@@ -253,6 +272,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
description = "100 proof cinnamon schnapps, made for alcoholic teen girls on spring break."
color = "#FFFF91" // rgb: 255, 255, 145
boozepwr = 25
+ taste_description = "burning cinnamon"
/datum/reagent/consumable/ethanol/patron
name = "Patron"
@@ -260,6 +280,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
description = "Tequila with silver in it, a favorite of alcoholic women in the club scene."
color = "#585840" // rgb: 88, 88, 64
boozepwr = 60
+ taste_description = "metallic and expensive"
/datum/reagent/consumable/ethanol/gintonic
name = "Gin and Tonic"
@@ -267,6 +288,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
description = "An all time classic, mild cocktail."
color = "#664300" // rgb: 102, 67, 0
boozepwr = 25
+ taste_description = "mild and tart"
/datum/reagent/consumable/ethanol/cuba_libre
name = "Cuba Libre"
@@ -274,6 +296,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
description = "Rum, mixed with cola. Viva la revolucion."
color = "#3E1B00" // rgb: 62, 27, 0
boozepwr = 50
+ taste_description = "cola"
/datum/reagent/consumable/ethanol/cuba_libre/on_mob_life(mob/living/M)
if(M.mind && M.mind.special_role in list("Revolutionary", "Head Revolutionary")) //Cuba Libre, the traditional drink of revolutions! Heals revolutionaries.
@@ -290,6 +313,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
description = "Whiskey, mixed with cola. Surprisingly refreshing."
color = "#3E1B00" // rgb: 62, 27, 0
boozepwr = 70
+ taste_description = "cola"
/datum/reagent/consumable/ethanol/martini
name = "Classic Martini"
@@ -297,6 +321,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
description = "Vermouth with Gin. Not quite how 007 enjoyed it, but still delicious."
color = "#664300" // rgb: 102, 67, 0
boozepwr = 60
+ taste_description = "dry class"
/datum/reagent/consumable/ethanol/vodkamartini
name = "Vodka Martini"
@@ -304,6 +329,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
description = "Vodka with Gin. Not quite how 007 enjoyed it, but still delicious."
color = "#664300" // rgb: 102, 67, 0
boozepwr = 65
+ taste_description = "shaken, not stirred"
/datum/reagent/consumable/ethanol/white_russian
name = "White Russian"
@@ -311,6 +337,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
description = "That's just, like, your opinion, man..."
color = "#A68340" // rgb: 166, 131, 64
boozepwr = 50
+ taste_description = "bitter cream"
/datum/reagent/consumable/ethanol/screwdrivercocktail
name = "Screwdriver"
@@ -318,6 +345,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
description = "Vodka, mixed with plain ol' orange juice. The result is surprisingly delicious."
color = "#A68310" // rgb: 166, 131, 16
boozepwr = 55
+ taste_description = "oranges"
/datum/reagent/consumable/ethanol/screwdrivercocktail/on_mob_life(mob/living/M)
if(M.mind && M.mind.assigned_role in list("Station Engineer", "Atmospheric Technician", "Chief Engineer")) //Engineers lose radiation poisoning at a massive rate.
@@ -330,6 +358,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
description = "Ewww..."
color = "#8CFF8C" // rgb: 140, 255, 140
boozepwr = 45
+ taste_description = "sweet 'n creamy"
/datum/reagent/consumable/ethanol/bloody_mary
name = "Bloody Mary"
@@ -337,6 +366,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
description = "A strange yet pleasurable mixture made of vodka, tomato and lime juice. Or at least you THINK the red stuff is tomato juice."
color = "#664300" // rgb: 102, 67, 0
boozepwr = 55
+ taste_description = "tomatoes with a hint of lime"
/datum/reagent/consumable/ethanol/brave_bull
name = "Brave Bull"
@@ -344,6 +374,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
description = "It's just as effective as Dutch-Courage!"
color = "#664300" // rgb: 102, 67, 0
boozepwr = 80
+ taste_description = "alcoholic bravery"
/datum/reagent/consumable/ethanol/brave_bull/on_mob_life(mob/living/M)
if(M.maxHealth == initial(M.maxHealth)) //Brave Bull makes you sturdier, and thus capable of withstanding a tiny bit more punishment.
@@ -361,6 +392,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
description = "Tequila and orange juice. Much like a Screwdriver, only Mexican~"
color = "#FFE48C" // rgb: 255, 228, 140
boozepwr = 45
+ taste_description = "oranges"
/datum/reagent/consumable/ethanol/toxins_special
name = "Toxins Special"
@@ -368,6 +400,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
description = "This thing is ON FIRE! CALL THE DAMN SHUTTLE!"
color = "#664300" // rgb: 102, 67, 0
boozepwr = 25
+ taste_description = "spicy toxins"
/datum/reagent/consumable/ethanol/toxins_special/on_mob_life(var/mob/living/M as mob)
if (M.bodytemperature < 330)
@@ -381,6 +414,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
color = "#664300" // rgb: 102, 67, 0
boozepwr = 90 //THE FIST OF THE LAW IS STRONG AND HARD
metabolization_rate = 0.8
+ taste_description = "JUSTICE"
/datum/reagent/consumable/ethanol/beepsky_smash/on_mob_life(mob/living/M)
M.Stun(2, 0)
@@ -392,6 +426,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
description = "Whiskey-imbued cream, what else would you expect from the Irish?"
color = "#664300" // rgb: 102, 67, 0
boozepwr = 70
+ taste_description = "creamy alcohol"
/datum/reagent/consumable/ethanol/manly_dorf
name = "The Manly Dorf"
@@ -399,6 +434,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
description = "Beer and Ale, brought together in a delicious mix. Intended for true men only."
color = "#664300" // rgb: 102, 67, 0
boozepwr = 100 //For the manly only
+ taste_description = "hair on your chest and your chin"
/datum/reagent/consumable/ethanol/longislandicedtea
name = "Long Island Iced Tea"
@@ -406,6 +442,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
description = "The liquor cabinet, brought together in a delicious mix. Intended for middle-aged alcoholic women only."
color = "#664300" // rgb: 102, 67, 0
boozepwr = 35
+ taste_description = "a mixture of cola and alcohol"
/datum/reagent/consumable/ethanol/moonshine
name = "Moonshine"
@@ -413,6 +450,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
description = "You've really hit rock bottom now... your liver packed its bags and left last night."
color = "#664300" // rgb: 102, 67, 0
boozepwr = 95
+ taste_description = "bitterness"
/datum/reagent/consumable/ethanol/b52
name = "B-52"
@@ -420,6 +458,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
description = "Coffee, Irish Cream, and cognac. You will get bombed."
color = "#664300" // rgb: 102, 67, 0
boozepwr = 85
+ taste_description = "angry and irish"
/datum/reagent/consumable/ethanol/irishcoffee
name = "Irish Coffee"
@@ -427,6 +466,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
description = "Coffee, and alcohol. More fun than a Mimosa to drink in the morning."
color = "#664300" // rgb: 102, 67, 0
boozepwr = 35
+ taste_description = "giving up on the day"
/datum/reagent/consumable/ethanol/margarita
name = "Margarita"
@@ -434,6 +474,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
description = "On the rocks with salt on the rim. Arriba~!"
color = "#8CFF8C" // rgb: 140, 255, 140
boozepwr = 35
+ taste_description = "dry and salty"
/datum/reagent/consumable/ethanol/black_russian
name = "Black Russian"
@@ -441,6 +482,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
description = "For the lactose-intolerant. Still as classy as a White Russian."
color = "#360000" // rgb: 54, 0, 0
boozepwr = 70
+ taste_description = "bitterness"
/datum/reagent/consumable/ethanol/manhattan
name = "Manhattan"
@@ -448,6 +490,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
description = "The Detective's undercover drink of choice. He never could stomach gin..."
color = "#664300" // rgb: 102, 67, 0
boozepwr = 30
+ taste_description = "mild dryness"
/datum/reagent/consumable/ethanol/manhattan_proj
name = "Manhattan Project"
@@ -455,6 +498,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
description = "A scientist's drink of choice, for pondering ways to blow up the station."
color = "#664300" // rgb: 102, 67, 0
boozepwr = 45
+ taste_description = "death, the destroyer of worlds"
/datum/reagent/consumable/ethanol/manhattan_proj/on_mob_life(mob/living/M)
M.set_drugginess(30)
@@ -466,6 +510,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
description = "For the more refined griffon."
color = "#664300" // rgb: 102, 67, 0
boozepwr = 70
+ taste_description = "soda"
/datum/reagent/consumable/ethanol/antifreeze
name = "Anti-freeze"
@@ -473,6 +518,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
description = "The ultimate refreshment. Not what it sounds like."
color = "#664300" // rgb: 102, 67, 0
boozepwr = 35
+ taste_description = "Jack Frost's piss"
/datum/reagent/consumable/ethanol/antifreeze/on_mob_life(mob/living/M)
if (M.bodytemperature < 330)
@@ -485,6 +531,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
description = "Barefoot and pregnant."
color = "#664300" // rgb: 102, 67, 0
boozepwr = 45
+ taste_description = "creamy berries"
/datum/reagent/consumable/ethanol/barefoot/on_mob_life(mob/living/M)
if(ishuman(M)) //Barefoot causes the imbiber to quickly regenerate brute trauma if they're not wearing shoes.
@@ -500,6 +547,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
description = "A cold refreshment."
color = "#FFFFFF" // rgb: 255, 255, 255
boozepwr = 35
+ taste_description = "refreshing cold"
/datum/reagent/consumable/ethanol/demonsblood //Prevents the imbiber from being dragged into a pool of blood by a slaughter demon.
name = "Demon's Blood"
@@ -507,6 +555,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
description = "AHHHH!!!!"
color = "#820000" // rgb: 130, 0, 0
boozepwr = 75
+ taste_description = "sweet tasting iron"
/datum/reagent/consumable/ethanol/devilskiss //If eaten by a slaughter demon, the demon will regret it.
name = "Devil's Kiss"
@@ -514,6 +563,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
description = "Creepy time!"
color = "#A68310" // rgb: 166, 131, 16
boozepwr = 70
+ taste_description = "bitter iron"
/datum/reagent/consumable/ethanol/vodkatonic
name = "Vodka and Tonic"
@@ -521,6 +571,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
description = "For when a gin and tonic isn't Russian enough."
color = "#0064C8" // rgb: 0, 100, 200
boozepwr = 70
+ taste_description = "tart bitterness"
/datum/reagent/consumable/ethanol/ginfizz
name = "Gin Fizz"
@@ -528,6 +579,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
description = "Refreshingly lemony, deliciously dry."
color = "#664300" // rgb: 102, 67, 0
boozepwr = 45
+ taste_description = "dry, tart lemons"
/datum/reagent/consumable/ethanol/bahama_mama
name = "Bahama Mama"
@@ -535,6 +587,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
description = "Tropical cocktail."
color = "#FF7F3B" // rgb: 255, 127, 59
boozepwr = 35
+ taste_description = "lime and orange"
/datum/reagent/consumable/ethanol/singulo
name = "Singulo"
@@ -542,6 +595,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
description = "A blue-space beverage!"
color = "#2E6671" // rgb: 46, 102, 113
boozepwr = 35
+ taste_description = "concentrated matter"
/datum/reagent/consumable/ethanol/sbiten
name = "Sbiten"
@@ -549,6 +603,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
description = "A spicy Vodka! Might be a little hot for the little guys!"
color = "#664300" // rgb: 102, 67, 0
boozepwr = 70
+ taste_description = "hot and spice"
/datum/reagent/consumable/ethanol/sbiten/on_mob_life(mob/living/M)
if (M.bodytemperature < 360)
@@ -561,6 +616,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
description = "The true Viking drink! Even though it has a strange red color."
color = "#C73C00" // rgb: 199, 60, 0
boozepwr = 51 //Red drinks are stronger
+ taste_description = "sweet and salty alcohol"
/datum/reagent/consumable/ethanol/mead
name = "Mead"
@@ -569,6 +625,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
color = "#664300" // rgb: 102, 67, 0
nutriment_factor = 1 * REAGENTS_METABOLISM
boozepwr = 50
+ taste_description = "sweet, sweet alcohol"
/datum/reagent/consumable/ethanol/iced_beer
name = "Iced Beer"
@@ -576,6 +633,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
description = "A beer which is so cold the air around it freezes."
color = "#664300" // rgb: 102, 67, 0
boozepwr = 15
+ taste_description = "refreshingly cold"
/datum/reagent/consumable/ethanol/iced_beer/on_mob_life(mob/living/M)
if(M.bodytemperature > 270)
@@ -588,6 +646,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
description = "Watered down rum, Nanotrasen approves!"
color = "#664300" // rgb: 102, 67, 0
boozepwr = 1 //Basically nothing
+ taste_description = "a poor excuse for alcohol"
/datum/reagent/consumable/ethanol/aloe
name = "Aloe"
@@ -595,6 +654,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
description = "So very, very, very good."
color = "#664300" // rgb: 102, 67, 0
boozepwr = 35
+ taste_description = "sweet 'n creamy"
/datum/reagent/consumable/ethanol/andalusia
name = "Andalusia"
@@ -602,6 +662,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
description = "A nice, strangely named drink."
color = "#664300" // rgb: 102, 67, 0
boozepwr = 40
+ taste_description = "lemons"
/datum/reagent/consumable/ethanol/alliescocktail
name = "Allies Cocktail"
@@ -609,6 +670,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
description = "A drink made from your allies. Not as sweet as those made from your enemies."
color = "#664300" // rgb: 102, 67, 0
boozepwr = 45
+ taste_description = "bitter yet free"
/datum/reagent/consumable/ethanol/acid_spit
name = "Acid Spit"
@@ -616,6 +678,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
description = "A drink for the daring, can be deadly if incorrectly prepared!"
color = "#365000" // rgb: 54, 80, 0
boozepwr = 80
+ taste_description = "stomach acid"
/datum/reagent/consumable/ethanol/amasec
name = "Amasec"
@@ -623,6 +686,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
description = "Official drink of the Nanotrasen Gun-Club!"
color = "#664300" // rgb: 102, 67, 0
boozepwr = 35
+ taste_description = "dark and metallic"
/datum/reagent/consumable/ethanol/changelingsting
name = "Changeling Sting"
@@ -630,6 +694,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
description = "You take a tiny sip and feel a burning sensation..."
color = "#2E6671" // rgb: 46, 102, 113
boozepwr = 95
+ taste_description = "your brain coming out your nose"
/datum/reagent/consumable/ethanol/changelingsting/on_mob_life(mob/living/M)
if(M.mind && M.mind.changeling) //Changeling Sting assists in the recharging of changeling chemicals.
@@ -643,6 +708,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
description = "Mmm, tastes like chocolate cake..."
color = "#2E6671" // rgb: 46, 102, 113
boozepwr = 25
+ taste_description = "delicious anger"
/datum/reagent/consumable/ethanol/syndicatebomb
name = "Syndicate Bomb"
@@ -650,6 +716,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
description = "Tastes like terrorism!"
color = "#2E6671" // rgb: 46, 102, 113
boozepwr = 90
+ taste_description = "purified antagonism"
/datum/reagent/consumable/ethanol/syndicatebomb/on_mob_life(mob/living/M)
if(prob(5))
@@ -662,6 +729,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
description = "The surprise is, it's green!"
color = "#2E6671" // rgb: 46, 102, 113
boozepwr = 35
+ taste_description = "tartness and bananas"
/datum/reagent/consumable/ethanol/driestmartini
name = "Driest Martini"
@@ -670,6 +738,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
nutriment_factor = 1 * REAGENTS_METABOLISM
color = "#2E6671" // rgb: 46, 102, 113
boozepwr = 65
+ taste_description = "a beach"
/datum/reagent/consumable/ethanol/bananahonk
name = "Banana Mama"
@@ -678,6 +747,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
nutriment_factor = 1 * REAGENTS_METABOLISM
color = "#FFFF91" // rgb: 255, 255, 140
boozepwr = 60
+ taste_description = "a bad joke"
/datum/reagent/consumable/ethanol/bananahonk/on_mob_life(mob/living/M)
if((ishuman(M) && M.job in list("Clown") ) || ismonkey(M))
@@ -692,6 +762,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
nutriment_factor = 1 * REAGENTS_METABOLISM
color = "#664300" // rgb: 102, 67, 0
boozepwr = 59 //Proof that clowns are better than mimes right here
+ taste_description = "a pencil eraser"
/datum/reagent/consumable/ethanol/silencer/on_mob_life(mob/living/M)
if(ishuman(M) && M.job in list("Mime"))
@@ -705,6 +776,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
description = "A weird mix of whiskey and blumpkin juice."
color = "#1EA0FF" // rgb: 102, 67, 0
boozepwr = 50
+ taste_description = "molasses and a mouthful of pool water"
/datum/reagent/consumable/ethanol/whiskey_sour //Requested since we had whiskey cola and soda but not sour.
name = "Whiskey Sour"
@@ -712,6 +784,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
description = "Lemon juice/whiskey/sugar mixture. Moderate alcohol content."
color = rgb(255, 201, 49)
boozepwr = 35
+ taste_description = "sour lemons"
/datum/reagent/consumable/ethanol/hcider
name = "Hard Cider"
@@ -720,6 +793,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
color = "#CD6839"
nutriment_factor = 1 * REAGENTS_METABOLISM
boozepwr = 25
+ taste_description = "apples"
/datum/reagent/consumable/ethanol/fetching_fizz //A reference to one of my favorite games of all time. Pulls nearby ores to the imbiber!
@@ -729,6 +803,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
color = rgb(255, 91, 15)
boozepwr = 10
metabolization_rate = 0.1 * REAGENTS_METABOLISM
+ taste_description = "charged metal" // the same as teslium, honk honk.
/datum/reagent/consumable/ethanol/fetching_fizz/on_mob_life(mob/living/M)
for(var/obj/item/weapon/ore/O in orange(3, M))
@@ -743,6 +818,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
color = rgb(140, 0, 0)
boozepwr = 10
metabolization_rate = 0.1 * REAGENTS_METABOLISM
+ taste_description = "bravado in the face of disaster"
/datum/reagent/consumable/ethanol/hearty_punch/on_mob_life(mob/living/M)
if(M.stat == UNCONSCIOUS && M.health <= 0)
@@ -760,6 +836,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
description = "Unidentifiable mixture. Unmeasurably high alcohol content."
color = rgb(51, 19, 3) //Sickly brown
boozepwr = 300 //I warned you
+ taste_description = "a wall of bricks"
/datum/reagent/consumable/ethanol/atomicbomb
@@ -768,6 +845,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
description = "Nuclear proliferation never tasted so good."
color = "#666300" // rgb: 102, 99, 0
boozepwr = 0 //custom drunk effect
+ taste_description = "da bomb"
/datum/reagent/consumable/ethanol/atomicbomb/on_mob_life(mob/living/M)
M.set_drugginess(50)
@@ -792,6 +870,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
description = "Whoah, this stuff looks volatile!"
color = "#664300" // rgb: 102, 67, 0
boozepwr = 0 //custom drunk effect
+ taste_description = "your brains smashed out by a lemon wrapped around a gold brick"
/datum/reagent/consumable/ethanol/gargle_blaster/on_mob_life(mob/living/M)
M.dizziness +=6
@@ -816,6 +895,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
description = "A strong neurotoxin that puts the subject into a death-like state."
color = "#2E2E61" // rgb: 46, 46, 97
boozepwr = 0 //custom drunk effect
+ taste_description = "a numbing sensation"
/datum/reagent/consumable/ethanol/neurotoxin/on_mob_life(mob/living/carbon/M)
M.Weaken(3, 1, 0)
@@ -843,6 +923,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
nutriment_factor = 0
boozepwr = 0 //custom drunk effect
metabolization_rate = 0.2 * REAGENTS_METABOLISM
+ taste_description = "giving peace a chance"
/datum/reagent/consumable/ethanol/hippies_delight/on_mob_life(mob/living/M)
if (!M.slurring)
@@ -882,4 +963,5 @@ All effects don't start immediately, but rather get worse over time; the rate is
description = "For enjoying the most wonderful time of the year."
color = "#fcfdc6" // rgb: 252, 253, 198
nutriment_factor = 2 * REAGENTS_METABOLISM
- boozepwr = 1
\ No newline at end of file
+ boozepwr = 1
+ taste_description = "custard and alcohol"
diff --git a/code/modules/reagents/chemistry/reagents/blob_reagents.dm b/code/modules/reagents/chemistry/reagents/blob_reagents.dm
index f60c7f38a60..3f7a7c2a856 100644
--- a/code/modules/reagents/chemistry/reagents/blob_reagents.dm
+++ b/code/modules/reagents/chemistry/reagents/blob_reagents.dm
@@ -3,6 +3,7 @@
name = "Unknown"
description = "shouldn't exist and you should adminhelp immediately."
color = "#FFFFFF"
+ taste_description = "slime and errors"
var/complementary_color = "#000000" //a color that's complementary to the normal blob color
var/shortdesc = null //just damage and on_mob effects, doesn't include special, blob-tile only effects
var/effectdesc = null //any long, blob-tile specific effects
diff --git a/code/modules/reagents/chemistry/reagents/drink_reagents.dm b/code/modules/reagents/chemistry/reagents/drink_reagents.dm
index 196aca498c5..4b6e54cfd56 100644
--- a/code/modules/reagents/chemistry/reagents/drink_reagents.dm
+++ b/code/modules/reagents/chemistry/reagents/drink_reagents.dm
@@ -9,6 +9,7 @@
id = "orangejuice"
description = "Both delicious AND rich in Vitamin C, what more do you need?"
color = "#E78108" // rgb: 231, 129, 8
+ taste_description = "oranges"
/datum/reagent/consumable/orangejuice/on_mob_life(mob/living/M)
if(M.getOxyLoss() && prob(30))
@@ -21,6 +22,7 @@
id = "tomatojuice"
description = "Tomatoes made into juice. What a waste of big, juicy tomatoes, huh?"
color = "#731008" // rgb: 115, 16, 8
+ taste_description = "tomatoes"
/datum/reagent/consumable/tomatojuice/on_mob_life(mob/living/M)
if(M.getFireLoss() && prob(20))
@@ -33,6 +35,7 @@
id = "limejuice"
description = "The sweet-sour juice of limes."
color = "#365E30" // rgb: 54, 94, 48
+ taste_description = "unbearable sourness"
/datum/reagent/consumable/limejuice/on_mob_life(mob/living/M)
if(M.getToxLoss() && prob(20))
@@ -45,6 +48,7 @@
id = "carrotjuice"
description = "It is just like a carrot but without crunching."
color = "#973800" // rgb: 151, 56, 0
+ taste_description = "carrots"
/datum/reagent/consumable/carrotjuice/on_mob_life(mob/living/M)
M.adjust_blurriness(-1)
@@ -63,18 +67,21 @@
id = "berryjuice"
description = "A delicious blend of several different kinds of berries."
color = "#863333" // rgb: 134, 51, 51
+ taste_description = "berries"
/datum/reagent/consumable/applejuice
name = "Apple Juice"
id = "applejuice"
description = "The sweet juice of an apple, fit for all ages."
color = "#ECFF56" // rgb: 236, 255, 86
+ taste_description = "apples"
/datum/reagent/consumable/poisonberryjuice
name = "Poison Berry Juice"
id = "poisonberryjuice"
description = "A tasty juice blended from various kinds of very deadly and toxic berries."
color = "#863353" // rgb: 134, 51, 83
+ taste_description = "berries"
/datum/reagent/consumable/poisonberryjuice/on_mob_life(mob/living/M)
M.adjustToxLoss(1, 0)
@@ -86,18 +93,21 @@
id = "watermelonjuice"
description = "Delicious juice made from watermelon."
color = "#863333" // rgb: 134, 51, 51
+ taste_description = "juicy watermelon"
/datum/reagent/consumable/lemonjuice
name = "Lemon Juice"
id = "lemonjuice"
description = "This juice is VERY sour."
color = "#863333" // rgb: 175, 175, 0
+ taste_description = "sourness"
/datum/reagent/consumable/banana
name = "Banana Juice"
id = "banana"
description = "The raw essence of a banana. HONK"
color = "#863333" // rgb: 175, 175, 0
+ taste_description = "banana"
/datum/reagent/consumable/banana/on_mob_life(mob/living/M)
if((ishuman(M) && M.job in list("Clown") ) || ismonkey(M))
@@ -109,6 +119,7 @@
name = "Nothing"
id = "nothing"
description = "Absolutely nothing."
+ taste_description = "nothing"
/datum/reagent/consumable/nothing/on_mob_life(mob/living/M)
if(ishuman(M) && M.job in list("Mime"))
@@ -122,6 +133,7 @@
description = "Some say that this is the best medicine, but recent studies have proven that to be untrue."
metabolization_rate = INFINITY
color = "#FF4DD2"
+ taste_description = "laughter"
/datum/reagent/consumable/laughter/on_mob_life(mob/living/carbon/M)
if(!iscarbon(M))
@@ -146,18 +158,21 @@
description = "Juice of the potato. Bleh."
nutriment_factor = 2 * REAGENTS_METABOLISM
color = "#302000" // rgb: 48, 32, 0
+ taste_description = "irish sadness"
/datum/reagent/consumable/grapejuice
name = "Grape Juice"
id = "grapejuice"
description = "The juice of a bunch of grapes. Guaranteed non-alcoholic."
color = "#290029" // dark purple
+ taste_description = "grape soda"
/datum/reagent/consumable/milk
name = "Milk"
id = "milk"
description = "An opaque white liquid produced by the mammary glands of mammals."
color = "#DFDFDF" // rgb: 223, 223, 223
+ taste_description = "milk"
/datum/reagent/consumable/milk/on_mob_life(mob/living/M)
if(M.getBruteLoss() && prob(20))
@@ -176,6 +191,7 @@
id = "soymilk"
description = "An opaque white liquid made from soybeans."
color = "#DFDFC7" // rgb: 223, 223, 199
+ taste_description = "soy milk"
/datum/reagent/consumable/soymilk/on_mob_life(mob/living/M)
if(M.getBruteLoss() && prob(20))
@@ -188,6 +204,7 @@
id = "cream"
description = "The fatty, still liquid part of milk. Why don't you mix this with sum scotch, eh?"
color = "#DFD7AF" // rgb: 223, 215, 175
+ taste_description = "creamy milk"
/datum/reagent/consumable/cream/on_mob_life(mob/living/M)
if(M.getBruteLoss() && prob(20))
@@ -202,6 +219,7 @@
color = "#482000" // rgb: 72, 32, 0
nutriment_factor = 0
overdose_threshold = 80
+ taste_description = "bitterness"
/datum/reagent/consumable/coffee/overdose_process(mob/living/M)
M.Jitter(5)
@@ -224,6 +242,7 @@
description = "Tasty black tea, it has antioxidants, it's good for you!"
color = "#101000" // rgb: 16, 16, 0
nutriment_factor = 0
+ taste_description = "tart black tea"
/datum/reagent/consumable/tea/on_mob_life(mob/living/M)
M.dizziness = max(0,M.dizziness-2)
@@ -243,6 +262,7 @@
description = "Encourages the patient to go golfing."
color = "#FFB766"
nutriment_factor = 2
+ taste_description = "bitter tea"
/datum/reagent/consumable/tea/arnold_palmer/on_mob_life(mob/living/M)
if(prob(5))
@@ -256,6 +276,7 @@
description = "Coffee and ice, refreshing and cool."
color = "#102838" // rgb: 16, 40, 56
nutriment_factor = 0
+ taste_description = "bitter coldness"
/datum/reagent/consumable/icecoffee/on_mob_life(mob/living/M)
M.dizziness = max(0,M.dizziness-5)
@@ -273,6 +294,7 @@
description = "No relation to a certain rap artist/actor."
color = "#104038" // rgb: 16, 64, 56
nutriment_factor = 0
+ taste_description = "sweet tea"
/datum/reagent/consumable/icetea/on_mob_life(mob/living/M)
M.dizziness = max(0,M.dizziness-2)
@@ -290,6 +312,7 @@
id = "cola"
description = "A refreshing beverage."
color = "#100800" // rgb: 16, 8, 0
+ taste_description = "cola"
/datum/reagent/consumable/space_cola/on_mob_life(mob/living/M)
M.drowsyness = max(0,M.drowsyness-5)
@@ -302,6 +325,7 @@
id = "nuka_cola"
description = "Cola, cola never changes."
color = "#100800" // rgb: 16, 8, 0
+ taste_description = "the future"
/datum/reagent/consumable/nuka_cola/on_mob_life(mob/living/M)
M.Jitter(20)
@@ -320,6 +344,7 @@
id = "spacemountainwind"
description = "Blows right through you like a space wind."
color = "#102000" // rgb: 16, 32, 0
+ taste_description = "sweet citrus soda"
/datum/reagent/consumable/spacemountainwind/on_mob_life(mob/living/M)
M.drowsyness = max(0,M.drowsyness-7)
@@ -335,6 +360,7 @@
id = "dr_gibb"
description = "A delicious blend of 42 different flavours."
color = "#102000" // rgb: 16, 32, 0
+ taste_description = "cherry soda" // FALSE ADVERTISING
/datum/reagent/consumable/dr_gibb/on_mob_life(mob/living/M)
M.drowsyness = max(0,M.drowsyness-6)
@@ -347,6 +373,7 @@
id = "space_up"
description = "Tastes like a hull breach in your mouth."
color = "#00FF00" // rgb: 0, 255, 0
+ taste_description = "cherry soda"
/datum/reagent/consumable/space_up/on_mob_life(mob/living/M)
if (M.bodytemperature > 310)
@@ -358,17 +385,42 @@
description = "A tangy substance made of 0.5% natural citrus!"
id = "lemon_lime"
color = "#8CFF00" // rgb: 135, 255, 0
+ taste_description = "tangy lime and lemon soda"
/datum/reagent/consumable/lemon_lime/on_mob_life(mob/living/M)
if (M.bodytemperature > 310)
M.bodytemperature = max(310, M.bodytemperature - (8 * TEMPERATURE_DAMAGE_COEFFICIENT)) //310 is the normal bodytemp. 310.055
..()
+/datum/reagent/consumable/pwr_game
+ name = "Pwr Game"
+ description = "The only drink with the PWR that true gamers crave."
+ id = "pwr_game"
+ color = "#9385bf" // rgb: 58, 52, 75
+ taste_description = "sweet and salty tang"
+
+/datum/reagent/consumable/pwr_game/on_mob_life(mob/living/M)
+ if (M.bodytemperature > 310)
+ M.bodytemperature = max(310, M.bodytemperature - (8 * TEMPERATURE_DAMAGE_COEFFICIENT)) //310 is the normal bodytemp. 310.055
+ ..()
+
+/datum/reagent/consumable/shamblers
+ name = "Shambler's Juice"
+ description = "~Shake me up some of that Shambler's Juice!~"
+ id = "shamblers"
+ color = "#f00060" // rgb: 94, 0, 38
+ taste_description = "carbonated metallic soda"
+
+/datum/reagent/consumable/shamblers/on_mob_life(mob/living/M)
+ if (M.bodytemperature > 310)
+ M.bodytemperature = max(310, M.bodytemperature - (8 * TEMPERATURE_DAMAGE_COEFFICIENT)) //310 is the normal bodytemp. 310.055
+ ..()
/datum/reagent/consumable/sodawater
name = "Soda Water"
id = "sodawater"
description = "A can of club soda. Why not make a scotch and soda?"
color = "#619494" // rgb: 97, 148, 148
+ taste_description = "carbonated water"
/datum/reagent/consumable/sodawater/on_mob_life(mob/living/M)
M.dizziness = max(0,M.dizziness-5)
@@ -382,6 +434,7 @@
id = "tonic"
description = "It tastes strange but at least the quinine keeps the Space Malaria at bay."
color = "#0064C8" // rgb: 0, 100, 200
+ taste_description = "tart and fresh"
/datum/reagent/consumable/tonic/on_mob_life(mob/living/M)
M.dizziness = max(0,M.dizziness-5)
@@ -398,6 +451,7 @@
description = "Frozen water, your dentist wouldn't like you chewing this."
reagent_state = SOLID
color = "#619494" // rgb: 97, 148, 148
+ taste_description = "ice"
/datum/reagent/consumable/ice/on_mob_life(mob/living/M)
M.bodytemperature = max( M.bodytemperature - 5 * TEMPERATURE_DAMAGE_COEFFICIENT, 0)
@@ -408,6 +462,7 @@
id = "soy_latte"
description = "A nice and tasty beverage while you are reading your hippie books."
color = "#664300" // rgb: 102, 67, 0
+ taste_description = "creamy coffee"
/datum/reagent/consumable/soy_latte/on_mob_life(mob/living/M)
M.dizziness = max(0,M.dizziness-5)
@@ -426,6 +481,7 @@
id = "cafe_latte"
description = "A nice, strong and tasty beverage while you are reading."
color = "#664300" // rgb: 102, 67, 0
+ taste_description = "bitter cream"
/datum/reagent/consumable/cafe_latte/on_mob_life(mob/living/M)
M.dizziness = max(0,M.dizziness-5)
@@ -444,6 +500,7 @@
id = "doctorsdelight"
description = "A gulp a day keeps the Medibot away! A mixture of juices that heals most damage types fairly quickly at the cost of hunger."
color = "#FF8CFF" // rgb: 255, 140, 255
+ taste_description = "homely fruit"
/datum/reagent/consumable/doctor_delight/on_mob_life(mob/living/M)
M.adjustBruteLoss(-0.5, 0)
@@ -462,6 +519,7 @@
description = "A great dessert for chocolate lovers."
color = "#800000"
nutriment_factor = 4 * REAGENTS_METABOLISM
+ taste_description = "sweet chocolate"
/datum/reagent/consumable/vanillapudding
name = "Vanilla Pudding"
@@ -469,6 +527,7 @@
description = "A great dessert for vanilla lovers."
color = "#FAFAD2"
nutriment_factor = 4 * REAGENTS_METABOLISM
+ taste_description = "sweet vanilla"
/datum/reagent/consumable/cherryshake
name = "Cherry Shake"
@@ -476,6 +535,7 @@
description = "A cherry flavored milkshake."
color = "#FFB6C1"
nutriment_factor = 4 * REAGENTS_METABOLISM
+ taste_description = "creamy cherry"
/datum/reagent/consumable/bluecherryshake
name = "Blue Cherry Shake"
@@ -483,6 +543,7 @@
description = "An exotic milkshake."
color = "#00F1FF"
nutriment_factor = 4 * REAGENTS_METABOLISM
+ taste_description = "creamy blue cherry"
/datum/reagent/consumable/pumpkin_latte
name = "Pumpkin Latte"
@@ -490,6 +551,7 @@
description = "A mix of pumpkin juice and coffee."
color = "#F4A460"
nutriment_factor = 3 * REAGENTS_METABOLISM
+ taste_description = "creamy pumpkin"
/datum/reagent/consumable/gibbfloats
name = "Gibb Floats"
@@ -497,33 +559,39 @@
description = "Ice cream on top of a Dr. Gibb glass."
color = "#B22222"
nutriment_factor = 3 * REAGENTS_METABOLISM
+ taste_description = "creamy cherry"
/datum/reagent/consumable/pumpkinjuice
name = "Pumpkin Juice"
id = "pumpkinjuice"
description = "Juiced from real pumpkin."
color = "#FFA500"
+ taste_description = "pumpkin"
/datum/reagent/consumable/blumpkinjuice
name = "Blumpkin Juice"
id = "blumpkinjuice"
description = "Juiced from real blumpkin."
color = "#00BFFF"
+ taste_description = "a mouthful of pool water"
/datum/reagent/consumable/triple_citrus
name = "Triple Citrus"
id = "triple_citrus"
description = "A solution."
color = "#C8A5DC"
+ taste_description = "extreme bitterness"
/datum/reagent/consumable/grape_soda
name = "Grape soda"
id = "grapesoda"
description = "Beloved of children and teetotalers."
color = "#E6CDFF"
+ taste_description = "grape soda"
/datum/reagent/consumable/milk/chocolate_milk
name = "Chocolate Milk"
id = "chocolate_milk"
description = "Milk for cool kids."
color = "#7D4E29"
+ taste_description = "chocolate milk"
diff --git a/code/modules/reagents/chemistry/reagents/drug_reagents.dm b/code/modules/reagents/chemistry/reagents/drug_reagents.dm
index 50058e1d230..c1c75a9d526 100644
--- a/code/modules/reagents/chemistry/reagents/drug_reagents.dm
+++ b/code/modules/reagents/chemistry/reagents/drug_reagents.dm
@@ -2,6 +2,7 @@
name = "Drug"
id = "drug"
metabolization_rate = 0.5 * REAGENTS_METABOLISM
+ taste_description = "bitterness"
/datum/reagent/drug/space_drugs
name = "Space drugs"
@@ -35,6 +36,7 @@
reagent_state = LIQUID
color = "#60A584" // rgb: 96, 165, 132
addiction_threshold = 30
+ taste_description = "smoke"
/datum/reagent/drug/nicotine/on_mob_life(mob/living/M)
if(prob(1))
@@ -230,6 +232,7 @@
color = "#FAFAFA"
overdose_threshold = 20
addiction_threshold = 10
+ taste_description = "salt" // because they're bathsalts?
/datum/reagent/drug/bath_salts/on_mob_life(mob/living/M)
diff --git a/code/modules/reagents/chemistry/reagents/food_reagents.dm b/code/modules/reagents/chemistry/reagents/food_reagents.dm
index 2021ac98033..1180415607e 100644
--- a/code/modules/reagents/chemistry/reagents/food_reagents.dm
+++ b/code/modules/reagents/chemistry/reagents/food_reagents.dm
@@ -10,6 +10,8 @@
/datum/reagent/consumable
name = "Consumable"
id = "consumable"
+ taste_description = "generic food"
+ taste_mult = 4
var/nutriment_factor = 1 * REAGENTS_METABOLISM
/datum/reagent/consumable/on_mob_life(mob/living/M)
@@ -25,34 +27,64 @@
nutriment_factor = 15 * REAGENTS_METABOLISM
color = "#664330" // rgb: 102, 67, 48
+ var/brute_heal = 1
+ var/burn_heal = 0
+ var/blood_gain = 0.4
+
/datum/reagent/consumable/nutriment/on_mob_life(mob/living/M)
if(prob(50))
- M.heal_bodypart_damage(1,0, 0)
+ M.heal_bodypart_damage(brute_heal,burn_heal, 0)
. = 1
if(iscarbon(M))
var/mob/living/carbon/C = M
if(C.blood_volume < BLOOD_VOLUME_NORMAL)
- C.blood_volume += 0.4
+ C.blood_volume += blood_gain
..()
-/datum/reagent/consumable/vitamin
+/datum/reagent/consumable/nutriment/on_new(list/supplied_data)
+ // taste data can sometimes be ("salt" = 3, "chips" = 1)
+ // and we want it to be in the form ("salt" = 0.75, "chips" = 0.25)
+ // which is called "normalizing"
+ if(!supplied_data)
+ supplied_data = data
+
+ // if data isn't an associative list, this has some WEIRD side effects
+ // TODO probably check for assoc list?
+
+ data = counterlist_normalise(supplied_data)
+
+/datum/reagent/consumable/nutriment/on_merge(list/newdata, newvolume)
+ if(!islist(newdata) || !newdata.len)
+ return
+
+ // data for nutriment is one or more (flavour -> ratio)
+ // where all the ratio values adds up to 1
+
+ var/list/taste_amounts = data.Copy()
+ counterlist_scale(taste_amounts, volume)
+
+ var/list/other_taste_amounts = newdata.Copy()
+ counterlist_scale(other_taste_amounts, newvolume)
+
+ counterlist_combine(taste_amounts, other_taste_amounts)
+
+ counterlist_normalise(taste_amounts)
+
+ data = taste_amounts
+
+/datum/reagent/consumable/nutriment/vitamin
name = "Vitamin"
id = "vitamin"
description = "All the best vitamins, minerals, and carbohydrates the body needs in pure form."
- reagent_state = SOLID
- color = "#664330" // rgb: 102, 67, 48
-/datum/reagent/consumable/vitamin/on_mob_life(mob/living/M)
- if(prob(50))
- M.heal_bodypart_damage(1,1, 0)
- . = 1
+ brute_heal = 1
+ burn_heal = 1
+ blood_gain = 0.5
+
+/datum/reagent/consumable/nutriment/vitamin/on_mob_life(mob/living/M)
if(M.satiety < 600)
M.satiety += 30
- if(iscarbon(M))
- var/mob/living/carbon/C = M
- if(C.blood_volume < BLOOD_VOLUME_NORMAL)
- C.blood_volume += 0.5
- ..()
+ . = ..()
/datum/reagent/consumable/sugar
name = "Sugar"
@@ -60,9 +92,11 @@
description = "The organic compound commonly known as table sugar and sometimes called saccharose. This white, odorless, crystalline powder has a pleasing, sweet taste."
reagent_state = SOLID
color = "#FFFFFF" // rgb: 255, 255, 255
+ taste_mult = 1.5 // stop sugar drowning out other flavours
nutriment_factor = 10 * REAGENTS_METABOLISM
metabolization_rate = 2 * REAGENTS_METABOLISM
overdose_threshold = 200 // Hyperglycaemic shock
+ taste_description = "sweetness"
/datum/reagent/consumable/sugar/overdose_start(mob/living/M)
M << "You go into hyperglycaemic shock! Lay off the twinkies!"
@@ -80,6 +114,7 @@
description = "A mixture of water and milk. Virus cells can use this mixture to reproduce."
nutriment_factor = 2 * REAGENTS_METABOLISM
color = "#899613" // rgb: 137, 150, 19
+ taste_description = "watery milk"
/datum/reagent/consumable/soysauce
name = "Soysauce"
@@ -87,6 +122,7 @@
description = "A salty sauce made from the soy plant."
nutriment_factor = 2 * REAGENTS_METABOLISM
color = "#792300" // rgb: 121, 35, 0
+ taste_description = "umami"
/datum/reagent/consumable/ketchup
name = "Ketchup"
@@ -94,6 +130,7 @@
description = "Ketchup, catsup, whatever. It's tomato paste."
nutriment_factor = 5 * REAGENTS_METABOLISM
color = "#731008" // rgb: 115, 16, 8
+ taste_description = "ketchup"
/datum/reagent/consumable/capsaicin
@@ -101,6 +138,8 @@
id = "capsaicin"
description = "This is what makes chilis hot."
color = "#B31008" // rgb: 179, 16, 8
+ taste_description = "hot peppers"
+ taste_mult = 1.5
/datum/reagent/consumable/capsaicin/on_mob_life(mob/living/M)
switch(current_cycle)
@@ -129,6 +168,7 @@
id = "frostoil"
description = "A special oil that noticably chills the body. Extracted from Icepeppers and slimes."
color = "#8BA6E9" // rgb: 139, 166, 233
+ taste_description = "mint"
/datum/reagent/consumable/frostoil/on_mob_life(mob/living/M)
switch(current_cycle)
@@ -171,6 +211,7 @@
id = "condensedcapsaicin"
description = "A chemical agent used for self-defense and in police work."
color = "#B31008" // rgb: 179, 16, 8
+ taste_description = "scorching agony"
/datum/reagent/consumable/condensedcapsaicin/reaction_mob(mob/living/M, method=TOUCH, reac_volume)
if(!ishuman(M) && !ismonkey(M))
@@ -246,6 +287,7 @@
description = "A salt made of sodium chloride. Commonly used to season food."
reagent_state = SOLID
color = "#FFFFFF" // rgb: 255,255,255
+ taste_description = "salt"
/datum/reagent/consumable/sodiumchloride/reaction_mob(mob/living/M, method=TOUCH, reac_volume)
if(!istype(M))
@@ -266,6 +308,7 @@
description = "A powder ground from peppercorns. *AAAACHOOO*"
reagent_state = SOLID
// no color (ie, black)
+ taste_description = "pepper"
/datum/reagent/consumable/coco
name = "Coco Powder"
@@ -274,6 +317,7 @@
reagent_state = SOLID
nutriment_factor = 5 * REAGENTS_METABOLISM
color = "#302000" // rgb: 48, 32, 0
+ taste_description = "bitterness"
/datum/reagent/consumable/hot_coco
name = "Hot Chocolate"
@@ -281,6 +325,7 @@
description = "Made with love! And coco beans."
nutriment_factor = 3 * REAGENTS_METABOLISM
color = "#403010" // rgb: 64, 48, 16
+ taste_description = "creamy chocolate"
/datum/reagent/consumable/hot_coco/on_mob_life(mob/living/M)
if (M.bodytemperature < 310)//310 is the normal bodytemp. 310.055
@@ -293,6 +338,7 @@
description = "A strong hallucinogenic drug derived from certain species of mushroom."
color = "#E700E7" // rgb: 231, 0, 231
metabolization_rate = 0.2 * REAGENTS_METABOLISM
+ taste_description = "mushroom"
/datum/reagent/mushroomhallucinogen/on_mob_life(mob/living/M)
if(!M.slurring)
@@ -322,6 +368,7 @@
id = "sprinkles"
description = "Multi-colored little bits of sugar, commonly found on donuts. Loved by cops."
color = "#FF00FF" // rgb: 255, 0, 255
+ taste_description = "childhood whimsy"
/datum/reagent/consumable/sprinkles/on_mob_life(mob/living/M)
if(ishuman(M) && M.job in list("Security Officer", "Head of Security", "Detective", "Warden"))
@@ -335,6 +382,7 @@
description = "An oil derived from various types of corn."
nutriment_factor = 20 * REAGENTS_METABOLISM
color = "#302000" // rgb: 48, 32, 0
+ taste_description = "slime"
/datum/reagent/consumable/cornoil/reaction_turf(turf/open/T, reac_volume)
if (!istype(T))
@@ -353,6 +401,7 @@
id = "enzyme"
description = "A universal enzyme used in the preperation of certain chemicals and foods."
color = "#365E30" // rgb: 54, 94, 48
+ taste_description = "sweetness"
/datum/reagent/consumable/dry_ramen
name = "Dry Ramen"
@@ -360,6 +409,7 @@
description = "Space age food, since August 25, 1958. Contains dried noodles, vegetables, and chemicals that boil in contact with water."
reagent_state = SOLID
color = "#302000" // rgb: 48, 32, 0
+ taste_description = "dry and cheap noodles"
/datum/reagent/consumable/hot_ramen
name = "Hot Ramen"
@@ -367,6 +417,7 @@
description = "The noodles are boiled, the flavors are artificial, just like being back in school."
nutriment_factor = 5 * REAGENTS_METABOLISM
color = "#302000" // rgb: 48, 32, 0
+ taste_description = "wet and cheap noodles"
/datum/reagent/consumable/hot_ramen/on_mob_life(mob/living/M)
if (M.bodytemperature < 310)//310 is the normal bodytemp. 310.055
@@ -379,6 +430,7 @@
description = "The noodles are boiled, the flavors are artificial, just like being back in school."
nutriment_factor = 5 * REAGENTS_METABOLISM
color = "#302000" // rgb: 48, 32, 0
+ taste_description = "wet and cheap noodles on fire"
/datum/reagent/consumable/hell_ramen/on_mob_life(mob/living/M)
M.bodytemperature += 10 * TEMPERATURE_DAMAGE_COEFFICIENT
@@ -390,6 +442,7 @@
description = "This is what you rub all over yourself to pretend to be a ghost."
reagent_state = SOLID
color = "#FFFFFF" // rgb: 0, 0, 0
+ taste_description = "chalky wheat"
/datum/reagent/consumable/flour/reaction_turf(turf/T, reac_volume)
if(!isspaceturf(T))
@@ -401,12 +454,14 @@
id = "cherryjelly"
description = "Totally the best. Only to be spread on foods with excellent lateral symmetry."
color = "#801E28" // rgb: 128, 30, 40
+ taste_description = "cherry"
/datum/reagent/consumable/bluecherryjelly
name = "Blue Cherry Jelly"
id = "bluecherryjelly"
description = "Blue and tastier kind of cherry jelly."
color = "#00F0FF"
+ taste_description = "blue cherry"
/datum/reagent/consumable/rice
name = "Rice"
@@ -415,6 +470,7 @@
reagent_state = SOLID
nutriment_factor = 3 * REAGENTS_METABOLISM
color = "#FFFFFF" // rgb: 0, 0, 0
+ taste_description = "rice"
/datum/reagent/consumable/vanilla
name = "Vanilla Powder"
@@ -423,18 +479,21 @@
reagent_state = SOLID
nutriment_factor = 5 * REAGENTS_METABOLISM
color = "#FFFACD"
+ taste_description = "vanilla"
/datum/reagent/consumable/eggyolk
name = "Egg Yolk"
id = "eggyolk"
description = "It's full of protein."
color = "#FFB500"
+ taste_description = "egg"
/datum/reagent/consumable/corn_starch
name = "Corn Starch"
id = "corn_starch"
description = "A slippery solution."
color = "#C8A5DC"
+ taste_description = "slime"
/datum/reagent/consumable/corn_syrup
name = "Corn Syrup"
@@ -442,6 +501,7 @@
description = "Decays into sugar."
color = "#C8A5DC"
metabolization_rate = 3 * REAGENTS_METABOLISM
+ taste_description = "sweet slime"
/datum/reagent/consumable/corn_syrup/on_mob_life(mob/living/M)
holder.add_reagent("sugar", 3)
@@ -453,6 +513,7 @@
description = "Sweet sweet honey, decays into sugar."
color = "#d3a308"
nutriment_factor = 15 * REAGENTS_METABOLISM
+ taste_description = "sweetness"
/datum/reagent/consumable/honey/on_mob_life(mob/living/M)
M.reagents.add_reagent("sugar",3)
@@ -469,6 +530,8 @@
id = "entpoly"
description = "An ichor, derived from a certain mushroom, makes for a bad time."
color = "#1d043d"
+ taste_description = "bitter mushroom"
+
/datum/reagent/consumable/entpoly/on_mob_life(mob/living/M)
if(current_cycle >= 10)
M.Paralyse(2, 0)
@@ -487,6 +550,7 @@
id = "tinlux"
description = "A stimulating ichor which causes luminescent fungi to grow on the skin. "
color = "#b5a213"
+ taste_description = "tingling mushroom"
/datum/reagent/consumable/tinlux/reaction_mob(mob/living/M)
M.AddLuminosity(2)
@@ -500,10 +564,11 @@
description = "A bubbly paste that heals wounds of the skin."
color = "#d3a308"
nutriment_factor = 3 * REAGENTS_METABOLISM
+ taste_description = "fruity mushroom"
/datum/reagent/consumable/vitfro/on_mob_life(mob/living/M)
if(prob(80))
M.adjustBruteLoss(-1*REM, 0)
M.adjustFireLoss(-1*REM, 0)
. = TRUE
- ..()
\ No newline at end of file
+ ..()
diff --git a/code/modules/reagents/chemistry/reagents/medicine_reagents.dm b/code/modules/reagents/chemistry/reagents/medicine_reagents.dm
index 0c6a3e4302b..60a96d2d247 100644
--- a/code/modules/reagents/chemistry/reagents/medicine_reagents.dm
+++ b/code/modules/reagents/chemistry/reagents/medicine_reagents.dm
@@ -8,6 +8,7 @@
/datum/reagent/medicine
name = "Medicine"
id = "medicine"
+ taste_description = "bitterness"
/datum/reagent/medicine/on_mob_life(mob/living/M)
current_cycle++
@@ -32,6 +33,7 @@
description = "It's magic. We don't have to explain it."
color = "#C8A5DC" // rgb: 200, 165, 220
can_synth = 0
+ taste_description = "badmins"
/datum/reagent/medicine/adminordrazine/on_mob_life(mob/living/carbon/M)
M.reagents.remove_all_type(/datum/reagent/toxin, 5*REM, 0, 1)
@@ -70,6 +72,7 @@
name = "Nanites"
id = "nanites"
description = "Tiny nanomachines capable of rapid cellular regeneration."
+ taste_description = "sludge"
/datum/reagent/medicine/synaptizine
name = "Synaptizine"
@@ -123,6 +126,7 @@
id = "cryoxadone"
description = "A chemical mixture with almost magical healing powers. Its main limitation is that the patient's body temperature must be under 270K for it to metabolise correctly."
color = "#0000C8"
+ taste_description = "sludge"
/datum/reagent/medicine/cryoxadone/on_mob_life(mob/living/M)
switch(M.bodytemperature) // Low temperatures are required to take effect.
@@ -160,6 +164,7 @@
reagent_state = SOLID
color = "#669900" // rgb: 102, 153, 0
overdose_threshold = 30
+ taste_description = "fish"
/datum/reagent/medicine/rezadone/on_mob_life(mob/living/M)
M.setCloneLoss(0) //Rezadone is almost never used in favor of cryoxadone. Hopefully this will change that.
@@ -264,6 +269,7 @@
reagent_state = LIQUID
color = "#DCDCDC"
metabolization_rate = 0.5 * REAGENTS_METABOLISM
+ taste_description = "sweetness and salt"
/datum/reagent/medicine/salglu_solution/on_mob_life(mob/living/M)
if(prob(33))
@@ -351,6 +357,7 @@
reagent_state = LIQUID
color = "#000000"
metabolization_rate = 0.5 * REAGENTS_METABOLISM
+ taste_description = "ash"
/datum/reagent/medicine/charcoal/on_mob_life(mob/living/M)
M.adjustToxLoss(-2*REM, 0)
@@ -392,6 +399,7 @@
reagent_state = LIQUID
color = "#19C832"
metabolization_rate = 0.5 * REAGENTS_METABOLISM
+ taste_description = "acid"
/datum/reagent/medicine/calomel/on_mob_life(mob/living/M)
for(var/datum/reagent/R in M.reagents.reagent_list)
@@ -640,6 +648,7 @@
reagent_state = LIQUID
color = "#FFFFFF"
metabolization_rate = 0.25 * REAGENTS_METABOLISM
+ taste_description = "dull toxin"
/datum/reagent/medicine/oculine/on_mob_life(mob/living/M)
if(M.disabilities & BLIND)
@@ -733,6 +742,7 @@
reagent_state = LIQUID
color = "#A0E85E"
metabolization_rate = 0.5 * REAGENTS_METABOLISM
+ taste_description = "magnets"
/datum/reagent/medicine/strange_reagent/reaction_mob(mob/living/carbon/human/M, method=TOUCH, reac_volume)
if(M.stat == DEAD)
@@ -776,6 +786,7 @@
id = "mutadone"
description = "Removes jitteriness and restores genetic defects."
color = "#5096C8"
+ taste_description = "acid"
/datum/reagent/medicine/mutadone/on_mob_life(mob/living/carbon/human/M)
M.jitteriness = 0
@@ -788,6 +799,7 @@
id = "antihol"
description = "Purges alcoholic substance from the patient's body and eliminates its side effects."
color = "#00B4C8"
+ taste_description = "raw egg"
/datum/reagent/medicine/antihol/on_mob_life(mob/living/M)
M.dizziness = 0
@@ -947,6 +959,7 @@
reagent_state = LIQUID
color = "#C8A5DC"
overdose_threshold = 30
+ taste_description = "a roll of gauze"
/datum/reagent/medicine/antitoxin/on_mob_life(mob/living/M)
M.adjustToxLoss(-2*REM, 0)
@@ -980,6 +993,7 @@
reagent_state = LIQUID
color = "#C8A5DC"
overdose_threshold = 30
+ taste_description = "grossness"
/datum/reagent/medicine/tricordrazine/on_mob_life(mob/living/M)
if(prob(80))
@@ -1116,3 +1130,11 @@
M.adjustToxLoss(2, 0)
. = 1
..()
+
+/datum/reagent/medicine/corazone
+ // Heart attack code will not do as damage if corazone is present
+ // because it's SPACE MAGIC ASPIRIN
+ name = "Corazone"
+ id = "corazone"
+ description = "A medication used to treat pain, fever, and inflammation, along with heart attacks."
+ color = "#F5F5F5"
diff --git a/code/modules/reagents/chemistry/reagents/other_reagents.dm b/code/modules/reagents/chemistry/reagents/other_reagents.dm
index 568426dba95..b8a02e0b0e0 100644
--- a/code/modules/reagents/chemistry/reagents/other_reagents.dm
+++ b/code/modules/reagents/chemistry/reagents/other_reagents.dm
@@ -1,10 +1,11 @@
-
/datum/reagent/blood
data = list("donor"=null,"viruses"=null,"blood_DNA"=null,"blood_type"=null,"resistances"=null,"trace_chem"=null,"mind"=null,"ckey"=null,"gender"=null,"real_name"=null,"cloneable"=null,"factions"=null)
name = "Blood"
id = "blood"
color = "#C80000" // rgb: 200, 0, 0
metabolization_rate = 5 //fast rate so it disappears fast.
+ taste_description = "iron"
+ taste_mult = 1.3
/datum/reagent/blood/reaction_mob(mob/M, method=TOUCH, reac_volume)
if(data && data["viruses"])
@@ -79,12 +80,14 @@
id = "liquidgibs"
color = "#FF9966"
description = "You don't even want to think about what's in here."
+ taste_description = "gross iron"
/datum/reagent/vaccine
//data must contain virus type
name = "Vaccine"
id = "vaccine"
color = "#C81040" // rgb: 200, 16, 64
+ taste_description = "slime"
/datum/reagent/vaccine/reaction_mob(mob/M, method=TOUCH, reac_volume)
if(islist(data) && (method == INGEST || method == INJECT))
@@ -102,6 +105,7 @@
id = "water"
description = "A ubiquitous chemical substance that is composed of hydrogen and oxygen."
color = "#AAAAAA77" // rgb: 170, 170, 170, 77 (alpha)
+ taste_description = "water"
var/cooling_temperature = 2
/*
@@ -214,6 +218,7 @@
name = "Unholy Water"
id = "unholywater"
description = "Something that shouldn't exist on this plane of existence."
+ taste_description = "suffering"
/datum/reagent/fuel/unholywater/reaction_mob(mob/living/M, method=TOUCH, reac_volume)
if(method == TOUCH || method == VAPOR)
@@ -244,6 +249,7 @@
name = "Hell Water"
id = "hell_water"
description = "YOUR FLESH! IT BURNS!"
+ taste_description = "burning"
/datum/reagent/hellwater/on_mob_life(mob/living/M)
M.fire_stacks = min(5,M.fire_stacks + 3)
@@ -264,6 +270,7 @@
id = "lube"
description = "Lubricant is a substance introduced between two moving surfaces to reduce the friction and wear between them. giggity."
color = "#009CA8" // rgb: 0, 156, 168
+ taste_description = "cherry" // by popular demand
/datum/reagent/lube/reaction_turf(turf/open/T, reac_volume)
if (!istype(T))
@@ -278,6 +285,7 @@
color = "#FFC080" // rgb: 255, 196, 128 Bright orange
metabolization_rate = 10 * REAGENTS_METABOLISM // very fast, so it can be applied rapidly. But this changes on an overdose
overdose_threshold = 11 //Slightly more than one un-nozzled spraybottle.
+ taste_description = "sour oranges"
/datum/reagent/spraytan/reaction_mob(mob/living/M, method=TOUCH, reac_volume, show_message = 1)
if(ishuman(M))
@@ -370,6 +378,7 @@
description = "A humanizing toxin produced by slimes."
color = "#5EFF3B" //RGB: 94, 255, 59
metabolization_rate = INFINITY //So it instantly removes all of itself
+ taste_description = "slime"
var/datum/species/race = /datum/species/human
var/mutationtext = "The pain subsides. You feel... human."
@@ -523,6 +532,7 @@
description = "This toxin will rapidly change the DNA of human beings. Commonly used by Syndicate spies and assassins in need of an emergency ID change."
color = "#5EFF3B" //RGB: 94, 255, 59
metabolization_rate = INFINITY
+ taste_description = "slime"
/datum/reagent/mulligan/on_mob_life(mob/living/carbon/human/H)
H << "You grit your teeth in pain as your body rapidly mutates!"
@@ -535,6 +545,7 @@
id = "amutationtoxin"
description = "An advanced corruptive toxin produced by slimes."
color = "#13BC5E" // rgb: 19, 188, 94
+ taste_description = "slime"
/datum/reagent/aslimetoxin/reaction_mob(mob/M, method=TOUCH, reac_volume)
if(method != TOUCH)
@@ -546,6 +557,7 @@
description = "An advanced corruptive toxin produced by something terrible."
color = "#5EFF3B" //RGB: 94, 255, 59
can_synth = 0
+ taste_description = "decay"
/datum/reagent/gluttonytoxin/reaction_mob(mob/M, method=TOUCH, reac_volume)
M.ForceContractDisease(new /datum/disease/transformation/morph(0))
@@ -556,6 +568,7 @@
description = "A chemical compound that promotes concentrated production of the serotonin neurotransmitter in humans."
color = "#202040" // rgb: 20, 20, 40
metabolization_rate = 0.25 * REAGENTS_METABOLISM
+ taste_description = "bitterness"
/datum/reagent/serotrotium/on_mob_life(mob/living/M)
if(ishuman(M))
@@ -569,6 +582,7 @@
description = "A colorless, odorless gas. Grows on trees but is still pretty valuable."
reagent_state = GAS
color = "#808080" // rgb: 128, 128, 128
+ taste_mult = 0 // oderless and tasteless
/datum/reagent/oxygen/reaction_obj(obj/O, reac_volume)
if((!O) || (!reac_volume))
@@ -586,6 +600,7 @@
description = "A highly ductile metal. Things made out of copper aren't very durable, but it makes a decent material for electrical wiring."
reagent_state = SOLID
color = "#6E3B08" // rgb: 110, 59, 8
+ taste_description = "metal"
/datum/reagent/nitrogen
name = "Nitrogen"
@@ -593,6 +608,7 @@
description = "A colorless, odorless, tasteless gas. A simple asphyxiant that can silently displace vital oxygen."
reagent_state = GAS
color = "#808080" // rgb: 128, 128, 128
+ taste_mult = 0
/datum/reagent/nitrogen/reaction_obj(obj/O, reac_volume)
if((!O) || (!reac_volume))
@@ -610,6 +626,7 @@
description = "A colorless, odorless, nonmetallic, tasteless, highly combustible diatomic gas."
reagent_state = GAS
color = "#808080" // rgb: 128, 128, 128
+ taste_mult = 0
/datum/reagent/potassium
name = "Potassium"
@@ -617,12 +634,14 @@
description = "A soft, low-melting solid that can easily be cut with a knife. Reacts violently with water."
reagent_state = SOLID
color = "#A0A0A0" // rgb: 160, 160, 160
+ taste_description = "sweetness"
/datum/reagent/mercury
name = "Mercury"
id = "mercury"
description = "A curious metal that's a liquid at room temperature. Neurodegenerative and very bad for the mind."
- color = "#484848" // rgb: 72, 72, 72
+ color = "#484848" // rgb: 72, 72, 72A
+ taste_mult = 0 // apparently tasteless.
/datum/reagent/mercury/on_mob_life(mob/living/M)
if(M.canmove && isspaceturf(M.loc))
@@ -638,6 +657,7 @@
description = "A sickly yellow solid mostly known for its nasty smell. It's actually much more helpful than it looks in biochemisty."
reagent_state = SOLID
color = "#BF8C00" // rgb: 191, 140, 0
+ taste_description = "rotten eggs"
/datum/reagent/carbon
name = "Carbon"
@@ -645,6 +665,7 @@
description = "A crumbly black solid that, while unexciting on an physical level, forms the base of all known life. Kind of a big deal."
reagent_state = SOLID
color = "#1C1300" // rgb: 30, 20, 0
+ taste_description = "sour chalk"
/datum/reagent/carbon/reaction_turf(turf/T, reac_volume)
if(!isspaceturf(T))
@@ -658,6 +679,7 @@
description = "A pale yellow gas that's well known as an oxidizer. While it forms many harmless molecules in its elemental form it is far from harmless."
reagent_state = GAS
color = "#808080" // rgb: 128, 128, 128
+ taste_description = "chlorine"
/datum/reagent/chlorine/on_mob_life(mob/living/M)
M.take_bodypart_damage(1*REM, 0, 0)
@@ -670,6 +692,7 @@
description = "A comically-reactive chemical element. The universe does not want this stuff to exist in this form in the slightest."
reagent_state = GAS
color = "#808080" // rgb: 128, 128, 128
+ taste_description = "acid"
/datum/reagent/fluorine/on_mob_life(mob/living/M)
M.adjustToxLoss(1*REM, 0)
@@ -682,6 +705,7 @@
description = "A soft silver metal that can easily be cut with a knife. It's not salt just yet, so refrain from putting in on your chips."
reagent_state = SOLID
color = "#808080" // rgb: 128, 128, 128
+ taste_description = "salty metal"
/datum/reagent/phosphorus
name = "Phosphorus"
@@ -689,6 +713,7 @@
description = "A ruddy red powder that burns readily. Though it comes in many colors, the general theme is always the same."
reagent_state = SOLID
color = "#832828" // rgb: 131, 40, 40
+ taste_description = "vinegar"
/datum/reagent/lithium
name = "Lithium"
@@ -696,6 +721,7 @@
description = "A silver metal, its claim to fame is its remarkably low density. Using it is a bit too effective in calming oneself down."
reagent_state = SOLID
color = "#808080" // rgb: 128, 128, 128
+ taste_description = "metal"
/datum/reagent/lithium/on_mob_life(mob/living/M)
if(M.canmove && isspaceturf(M.loc))
@@ -709,6 +735,7 @@
id = "glycerol"
description = "Glycerol is a simple polyol compound. Glycerol is sweet-tasting and of low toxicity."
color = "#808080" // rgb: 128, 128, 128
+ taste_description = "sweetness"
/datum/reagent/radium
name = "Radium"
@@ -716,6 +743,7 @@
description = "Radium is an alkaline earth metal. It is extremely radioactive."
reagent_state = SOLID
color = "#C7C7C7" // rgb: 199,199,199
+ taste_description = "the colour blue and regret"
/datum/reagent/radium/on_mob_life(mob/living/M)
M.apply_effect(2*REM/M.metabolism_efficiency,IRRADIATE,0)
@@ -734,6 +762,7 @@
id = "sterilizine"
description = "Sterilizes wounds in preparation for surgery."
color = "#C8A5DC" // rgb: 200, 165, 220
+ taste_description = "bitterness"
/datum/reagent/space_cleaner/sterilizine/reaction_mob(mob/living/M, method=TOUCH, reac_volume)
if(iscarbon(M) && (method in list(TOUCH, VAPOR, PATCH)))
@@ -749,6 +778,7 @@
id = "iron"
description = "Pure iron is a metal."
reagent_state = SOLID
+ taste_description = "iron"
color = "#C8A5DC" // rgb: 200, 165, 220
@@ -773,6 +803,7 @@
description = "Gold is a dense, soft, shiny metal and the most malleable and ductile metal known."
reagent_state = SOLID
color = "#F7C430" // rgb: 247, 196, 48
+ taste_description = "expensive metal"
/datum/reagent/silver
name = "Silver"
@@ -780,6 +811,7 @@
description = "A soft, white, lustrous transition metal, it has the highest electrical conductivity of any element and the highest thermal conductivity of any metal."
reagent_state = SOLID
color = "#D0D0D0" // rgb: 208, 208, 208
+ taste_description = "expensive yet reasonable metal"
/datum/reagent/silver/reaction_mob(mob/living/M, method=TOUCH, reac_volume)
if(!isliving(M))
@@ -794,6 +826,7 @@
description = "A silvery-white metallic chemical element in the actinide series, weakly radioactive."
reagent_state = SOLID
color = "#B8B8C0" // rgb: 184, 184, 192
+ taste_description = "the inside of a reactor"
/datum/reagent/uranium/on_mob_life(mob/living/M)
M.apply_effect(1/M.metabolism_efficiency,IRRADIATE,0)
@@ -807,12 +840,34 @@
GG = new/obj/effect/decal/cleanable/greenglow(T)
GG.reagents.add_reagent("uranium", reac_volume)
+/datum/reagent/bluespace
+ name = "Bluespace Dust"
+ id = "bluespace"
+ description = "A dust composed of microscopic bluespace crystals, with minor space-warping properties."
+ reagent_state = SOLID
+ color = "#0000CC"
+ taste_description = "fizzling blue"
+
+/datum/reagent/bluespace/reaction_mob(mob/living/M, method=TOUCH, reac_volume)
+ if(method == TOUCH || method == VAPOR)
+ do_teleport(M, get_turf(M), (reac_volume / 5), asoundin = 'sound/effects/phasein.ogg') //4 tiles per crystal
+ ..()
+
+/datum/reagent/bluespace/on_mob_life(mob/living/M)
+ if(current_cycle > 10 && prob(15))
+ M << "You feel unstable..."
+ M.Jitter(2)
+ current_cycle = 1
+ addtimer(CALLBACK(GLOBAL_PROC, .proc/do_teleport, M, get_turf(M), 5, asoundin = 'sound/effects/phasein.ogg'), 30)
+ ..()
+
/datum/reagent/aluminium
name = "Aluminium"
id = "aluminium"
description = "A silvery white and ductile member of the boron group of chemical elements."
reagent_state = SOLID
color = "#A8A8A8" // rgb: 168, 168, 168
+ taste_description = "metal"
/datum/reagent/silicon
name = "Silicon"
@@ -820,12 +875,14 @@
description = "A tetravalent metalloid, silicon is less reactive than its chemical analog carbon."
reagent_state = SOLID
color = "#A8A8A8" // rgb: 168, 168, 168
+ taste_mult = 0
/datum/reagent/fuel
name = "Welding fuel"
id = "welding_fuel"
description = "Required for welders. Flamable."
color = "#660000" // rgb: 102, 0, 0
+ taste_description = "gross metal"
/datum/reagent/fuel/reaction_mob(mob/living/M, method=TOUCH, reac_volume)//Splashing people with welding fuel to make them easy to ignite!
if(!isliving(M))
@@ -845,6 +902,7 @@
id = "cleaner"
description = "A compound used to clean things. Now with 50% more sodium hypochlorite!"
color = "#A5F0EE" // rgb: 165, 240, 238
+ taste_description = "sourness"
/datum/reagent/space_cleaner/reaction_obj(obj/O, reac_volume)
if(istype(O,/obj/effect/decal/cleanable))
@@ -901,6 +959,7 @@
id = "ez_clean"
description = "A powerful, acidic cleaner sold by Waffle Co. Affects organic matter while leaving other objects unaffected."
metabolization_rate = 1.5 * REAGENTS_METABOLISM
+ taste_description = "acid"
/datum/reagent/space_cleaner/ez_clean/on_mob_life(mob/living/M)
M.adjustBruteLoss(3.33)
@@ -920,6 +979,7 @@
description = "Cryptobiolin causes confusion and dizziness."
color = "#C8A5DC" // rgb: 200, 165, 220
metabolization_rate = 1.5 * REAGENTS_METABOLISM
+ taste_description = "sourness"
/datum/reagent/cryptobiolin/on_mob_life(mob/living/M)
M.Dizzy(1)
@@ -932,7 +992,8 @@
name = "Impedrezene"
id = "impedrezene"
description = "Impedrezene is a narcotic that impedes one's ability by slowing down the higher brain cell functions."
- color = "#C8A5DC" // rgb: 200, 165, 220
+ color = "#C8A5DC" // rgb: 200, 165, 220A
+ taste_description = "numbness"
/datum/reagent/impedrezene/on_mob_life(mob/living/M)
M.jitteriness = max(M.jitteriness-5,0)
@@ -950,6 +1011,7 @@
description = "Microscopic construction robots."
color = "#535E66" // rgb: 83, 94, 102
can_synth = 0
+ taste_description = "sludge"
/datum/reagent/nanites/reaction_mob(mob/M, method=TOUCH, reac_volume, show_message = 1, touch_protection = 0)
if(method==PATCH || method==INGEST || method==INJECT || (method == VAPOR && prob(min(reac_volume,100)*(1 - touch_protection))))
@@ -961,6 +1023,7 @@
description = "Microbes with an entirely alien cellular structure."
color = "#535E66" // rgb: 83, 94, 102
can_synth = 0
+ taste_description = "sludge"
/datum/reagent/xenomicrobes/reaction_mob(mob/M, method=TOUCH, reac_volume, show_message = 1, touch_protection = 0)
if(method==PATCH || method==INGEST || method==INJECT || (method == VAPOR && prob(min(reac_volume,100)*(1 - touch_protection))))
@@ -971,6 +1034,7 @@
id = "fungalspores"
description = "Active fungal spores."
color = "#92D17D" // rgb: 146, 209, 125
+ taste_description = "slime"
/datum/reagent/fungalspores/reaction_mob(mob/M, method=TOUCH, reac_volume, show_message = 1, touch_protection = 0)
if(method==PATCH || method==INGEST || method==INJECT || (method == VAPOR && prob(min(reac_volume,100)*(1 - touch_protection))))
@@ -981,6 +1045,7 @@
id = "fluorosurfactant"
description = "A perfluoronated sulfonic acid that forms a foam when mixed with water."
color = "#9E6B38" // rgb: 158, 107, 56
+ taste_description = "metal"
/datum/reagent/foaming_agent// Metal foaming agent. This is lithium hydride. Add other recipes (e.g. LiH + H2O -> LiOH + H2) eventually.
name = "Foaming agent"
@@ -988,6 +1053,7 @@
description = "A agent that yields metallic foam when mixed with light metal and a strong acid."
reagent_state = SOLID
color = "#664B63" // rgb: 102, 75, 99
+ taste_description = "metal"
/datum/reagent/ammonia
name = "Ammonia"
@@ -995,12 +1061,14 @@
description = "A caustic substance commonly used in fertilizer or household cleaners."
reagent_state = GAS
color = "#404030" // rgb: 64, 64, 48
+ taste_description = "mordant"
/datum/reagent/diethylamine
name = "Diethylamine"
id = "diethylamine"
description = "A secondary amine, mildly corrosive."
color = "#604030" // rgb: 96, 64, 48
+ taste_description = "iron"
/datum/reagent/carbondioxide
name = "Carbon Dioxide"
@@ -1008,6 +1076,7 @@
reagent_state = GAS
description = "A gas commonly produced by burning carbon fuels. You're constantly producing this in your lungs."
color = "#B0B0B0" // rgb : 192, 192, 192
+ taste_description = "something unknowable"
/datum/reagent/carbondioxide/reaction_obj(obj/O, reac_volume)
if((!O) || (!reac_volume))
@@ -1025,6 +1094,7 @@
description = "A potent oxidizer used as fuel in rockets and as an anaesthetic during surgery."
reagent_state = LIQUID
color = "#808080"
+ taste_description = "numbness"
/datum/reagent/nitrous_oxide/reaction_obj(obj/O, reac_volume)
if((!O) || (!reac_volume))
@@ -1034,7 +1104,6 @@
/datum/reagent/nitrous_oxide/reaction_turf(turf/open/T, reac_volume)
if(istype(T))
T.atmos_spawn_air("n2o=[reac_volume/5];TEMP=[T20C]")
- return
@@ -1049,6 +1118,7 @@
description = "A powder made by grinding down crayons, good for colouring chemical reagents."
reagent_state = SOLID
color = "#FFFFFF" // rgb: 207, 54, 0
+ taste_description = "the back of class"
/datum/reagent/crayonpowder/New()
description = "\an [colorname] powder made by grinding down crayons, good for colouring chemical reagents."
@@ -1106,6 +1176,7 @@
description = "Some kind of nutriment. You can't really tell what it is. You should probably report it, along with how you obtained it."
color = "#000000" // RBG: 0, 0, 0
var/tox_prob = 0
+ taste_description = "plant food"
/datum/reagent/plantnutriment/on_mob_life(mob/living/M)
if(prob(tox_prob))
@@ -1150,6 +1221,7 @@
description = "Burns in a small smoky fire, mostly used to get Ash."
reagent_state = LIQUID
color = "#C8A5DC"
+ taste_description = "oil"
/datum/reagent/stable_plasma
name = "Stable Plasma"
@@ -1157,6 +1229,8 @@
description = "Non-flammable plasma locked into a liquid form that cannot ignite or become gaseous/solid."
reagent_state = LIQUID
color = "#C8A5DC"
+ taste_description = "bitterness"
+ taste_mult = 1.5
/datum/reagent/stable_plasma/on_mob_life(mob/living/M)
if(iscarbon(M))
@@ -1171,6 +1245,7 @@
description = "Commonly added to table salt as a nutrient. On its own it tastes far less pleasing."
reagent_state = LIQUID
color = "#C8A5DC"
+ taste_description = "metal"
/datum/reagent/carpet
name = "Carpet"
@@ -1178,6 +1253,7 @@
description = "For those that need a more creative way to roll out a red carpet."
reagent_state = LIQUID
color = "#C8A5DC"
+ taste_description = "carpet" // Your tounge feels furry.
/datum/reagent/carpet/reaction_turf(turf/T, reac_volume)
if(istype(T, /turf/open/floor/plating) || istype(T, /turf/open/floor/plasteel))
@@ -1192,6 +1268,7 @@
description = "A brownish liquid that's highly reactive. Useful for stopping free radicals, but not intended for human consumption."
reagent_state = LIQUID
color = "#C8A5DC"
+ taste_description = "chemicals"
/datum/reagent/phenol
name = "Phenol"
@@ -1199,6 +1276,7 @@
description = "An aromatic ring of carbon with a hydroxyl group. A useful precursor to some medicines, but has no healing properties on its own."
reagent_state = LIQUID
color = "#C8A5DC"
+ taste_description = "acid"
/datum/reagent/ash
name = "Ash"
@@ -1206,6 +1284,7 @@
description = "Supposedly phoenixes rise from these, but you've never seen it."
reagent_state = LIQUID
color = "#C8A5DC"
+ taste_description = "ash"
/datum/reagent/acetone
name = "Acetone"
@@ -1213,6 +1292,7 @@
description = "A slick, slightly carcinogenic liquid. Has a multitude of mundane uses in everyday life."
reagent_state = LIQUID
color = "#C8A5DC"
+ taste_description = "acid"
/datum/reagent/colorful_reagent
name = "Colorful Reagent"
@@ -1221,13 +1301,13 @@
reagent_state = LIQUID
color = "#C8A5DC"
var/list/random_color_list = list("#00aedb","#a200ff","#f47835","#d41243","#d11141","#00b159","#00aedb","#f37735","#ffc425","#008744","#0057e7","#d62d20","#ffa700")
+ taste_description = "rainbows"
/datum/reagent/colorful_reagent/on_mob_life(mob/living/M)
if(M && isliving(M))
M.add_atom_colour(pick(random_color_list), WASHABLE_COLOUR_PRIORITY)
..()
- return
/datum/reagent/colorful_reagent/reaction_mob(mob/living/M, reac_volume)
if(M && isliving(M))
@@ -1251,6 +1331,7 @@
reagent_state = LIQUID
color = "#C8A5DC"
var/list/potential_colors = list("0ad","a0f","f73","d14","d14","0b5","0ad","f73","fc2","084","05e","d22","fa0") // fucking hair code
+ taste_description = "sourness"
/datum/reagent/hair_dye/reaction_mob(mob/living/M, method=TOUCH, reac_volume)
if(method == TOUCH || method == VAPOR)
@@ -1266,6 +1347,7 @@
description = "A solution to hair loss across the world."
reagent_state = LIQUID
color = "#C8A5DC"
+ taste_description = "sourness"
/datum/reagent/barbers_aid/reaction_mob(mob/living/M, method=TOUCH, reac_volume)
if(method == TOUCH || method == VAPOR)
@@ -1283,6 +1365,7 @@
description = "A concentrated solution to hair loss across the world."
reagent_state = LIQUID
color = "#C8A5DC"
+ taste_description = "sourness"
/datum/reagent/concentrated_barbers_aid/reaction_mob(mob/living/M, method=TOUCH, reac_volume)
if(method == TOUCH || method == VAPOR)
@@ -1298,6 +1381,7 @@
description = "Volatile. Controversial. Third Thing."
reagent_state = LIQUID
color = "#60A584" // rgb: 96, 165, 132
+ taste_description = "cool salt"
/datum/reagent/lye
name = "Lye"
@@ -1305,6 +1389,7 @@
description = "Also known as sodium hydroxide. As a profession making this is somewhat underwhelming."
reagent_state = LIQUID
color = "#FFFFD6" // very very light yellow
+ taste_description = "acid"
/datum/reagent/drying_agent
name = "Drying agent"
@@ -1312,6 +1397,7 @@
description = "A desiccant. Can be used to dry things."
reagent_state = LIQUID
color = "#A70FFF"
+ taste_description = "dryness"
/datum/reagent/drying_agent/reaction_turf(turf/open/T, reac_volume)
if(istype(T) && T.wet)
@@ -1330,41 +1416,51 @@
name = "mutagenic agar"
id = "mutagenvirusfood"
color = "#A3C00F" // rgb: 163,192,15
+ taste_description = "sourness"
/datum/reagent/toxin/mutagen/mutagenvirusfood/sugar
name = "sucrose agar"
id = "sugarvirusfood"
color = "#41B0C0" // rgb: 65,176,192
+ taste_description = "sweetness"
/datum/reagent/medicine/synaptizine/synaptizinevirusfood
name = "virus rations"
id = "synaptizinevirusfood"
color = "#D18AA5" // rgb: 209,138,165
+ taste_description = "bitterness"
/datum/reagent/toxin/plasma/plasmavirusfood
name = "virus plasma"
id = "plasmavirusfood"
color = "#A69DA9" // rgb: 166,157,169
+ taste_description = "bitterness"
+ taste_mult = 1.5
/datum/reagent/toxin/plasma/plasmavirusfood/weak
name = "weakened virus plasma"
id = "weakplasmavirusfood"
color = "#CEC3C6" // rgb: 206,195,198
+ taste_description = "bitterness"
+ taste_mult = 1.5
/datum/reagent/uranium/uraniumvirusfood
name = "decaying uranium gel"
id = "uraniumvirusfood"
color = "#67ADBA" // rgb: 103,173,186
+ taste_description = "the inside of a reactor"
/datum/reagent/uranium/uraniumvirusfood/unstable
name = "unstable uranium gel"
id = "uraniumplasmavirusfood_unstable"
color = "#2FF2CB" // rgb: 47,242,203
+ taste_description = "the inside of a reactor"
/datum/reagent/uranium/uraniumvirusfood/stable
name = "stable uranium gel"
id = "uraniumplasmavirusfood_stable"
color = "#04506C" // rgb: 4,80,108
+ taste_description = "the inside of a reactor"
// Bee chemicals
@@ -1373,6 +1469,7 @@
id = "royal_bee_jelly"
description = "Royal Bee Jelly, if injected into a Queen Space Bee said bee will split into two bees."
color = "#00ff80"
+ taste_description = "strange honey"
/datum/reagent/royal_bee_jelly/on_mob_life(mob/living/M)
if(prob(2))
@@ -1393,6 +1490,7 @@
color = "#123524" // RGB (18, 53, 36)
metabolization_rate = INFINITY
can_synth = 0
+ taste_description = "brains"
/datum/reagent/romerol/on_mob_life(mob/living/carbon/human/H)
// Silently add the zombie infection organ to be activated upon death
@@ -1405,6 +1503,7 @@
description = "A commercial chemical designed to help older men in the bedroom."//not really it just makes you a giant
color = "#ff0000"//strong red. rgb 255, 0, 0
var/current_size = 1
+ taste_description = "bitterness" // apparently what viagra tastes like
/datum/reagent/growthserum/on_mob_life(mob/living/carbon/H)
var/newsize = current_size
diff --git a/code/modules/reagents/chemistry/reagents/pyrotechnic_reagents.dm b/code/modules/reagents/chemistry/reagents/pyrotechnic_reagents.dm
index 85f553fcc28..5c244e8c340 100644
--- a/code/modules/reagents/chemistry/reagents/pyrotechnic_reagents.dm
+++ b/code/modules/reagents/chemistry/reagents/pyrotechnic_reagents.dm
@@ -5,6 +5,7 @@
description = "Thermite produces an aluminothermic reaction known as a thermite reaction. Can be used to melt walls."
reagent_state = SOLID
color = "#550000"
+ taste_description = "sweet tasting metal"
/datum/reagent/thermite/reaction_turf(turf/T, reac_volume)
if(reac_volume >= 1 && iswallturf(T))
@@ -26,6 +27,7 @@
id = "nitroglycerin"
description = "Nitroglycerin is a heavy, colorless, oily, explosive liquid obtained by nitrating glycerol."
color = "#808080" // rgb: 128, 128, 128
+ taste_description = "oil"
/datum/reagent/stabilizing_agent
name = "Stabilizing Agent"
@@ -33,6 +35,7 @@
description = "Keeps unstable chemicals stable. This does not work on everything."
reagent_state = LIQUID
color = "#FFFF00"
+ taste_description = "metal"
/datum/reagent/clf3
name = "Chlorine Trifluoride"
@@ -41,6 +44,7 @@
reagent_state = LIQUID
color = "#FFC8C8"
metabolization_rate = 4
+ taste_description = "burning"
/datum/reagent/clf3/on_mob_life(mob/living/M)
M.adjust_fire_stacks(2)
@@ -83,6 +87,7 @@
description = "Sends everything flying from the detonation point."
reagent_state = LIQUID
color = "#5A64C8"
+ taste_description = "air and bitterness"
/datum/reagent/liquid_dark_matter
name = "Liquid Dark Matter"
@@ -90,6 +95,7 @@
description = "Sucks everything into the detonation point."
reagent_state = LIQUID
color = "#210021"
+ taste_description = "compressed bitterness"
/datum/reagent/blackpowder
name = "Black Powder"
@@ -98,6 +104,7 @@
reagent_state = LIQUID
color = "#000000"
metabolization_rate = 0.05
+ taste_description = "salt"
/datum/reagent/blackpowder/on_ex_act()
var/location = get_turf(holder.my_atom)
@@ -112,6 +119,7 @@
description = "Makes a very bright flash."
reagent_state = LIQUID
color = "#C8C8C8"
+ taste_description = "salt"
/datum/reagent/smoke_powder
name = "Smoke Powder"
@@ -119,6 +127,7 @@
description = "Makes a large cloud of smoke that can carry reagents."
reagent_state = LIQUID
color = "#C8C8C8"
+ taste_description = "smoke"
/datum/reagent/sonic_powder
name = "Sonic Powder"
@@ -126,6 +135,7 @@
description = "Makes a deafening noise."
reagent_state = LIQUID
color = "#C8C8C8"
+ taste_description = "loud noises"
/datum/reagent/phlogiston
name = "Phlogiston"
@@ -133,6 +143,7 @@
description = "Catches you on fire and makes you ignite."
reagent_state = LIQUID
color = "#FA00AF"
+ taste_description = "burning"
/datum/reagent/phlogiston/reaction_mob(mob/living/M, method=TOUCH, reac_volume)
M.IgniteMob()
@@ -151,6 +162,7 @@
description = "Very flammable."
reagent_state = LIQUID
color = "#FA00AF"
+ taste_description = "burning"
/datum/reagent/napalm/on_mob_life(mob/living/M)
M.adjust_fire_stacks(1)
@@ -167,6 +179,7 @@
description = "Comes into existence at 20K. As long as there is sufficient oxygen for it to react with, Cryostylane slowly cools all other reagents in the container 0K."
color = "#0000DC"
metabolization_rate = 0.5 * REAGENTS_METABOLISM
+ taste_description = "bitterness"
/datum/reagent/cryostylane/on_mob_life(mob/living/M) //TODO: code freezing into an ice cube
@@ -193,6 +206,7 @@
description = "Comes into existence at 20K. As long as there is sufficient oxygen for it to react with, Pyrosium slowly heats all other reagents in the container."
color = "#64FAC8"
metabolization_rate = 0.5 * REAGENTS_METABOLISM
+ taste_description = "bitterness"
/datum/reagent/pyrosium/on_mob_life(mob/living/M)
if(M.reagents.has_reagent("oxygen"))
@@ -214,6 +228,7 @@
reagent_state = LIQUID
color = "#20324D" //RGB: 32, 50, 77
metabolization_rate = 0.5 * REAGENTS_METABOLISM
+ taste_description = "charged metal"
var/shock_timer = 0
/datum/reagent/teslium/on_mob_life(mob/living/M)
@@ -222,4 +237,4 @@
shock_timer = 0
M.electrocute_act(rand(5,20), "Teslium in their body", 1, 1) //Override because it's caused from INSIDE of you
playsound(M, "sparks", 50, 1)
- ..()
\ No newline at end of file
+ ..()
diff --git a/code/modules/reagents/chemistry/reagents/toxin_reagents.dm b/code/modules/reagents/chemistry/reagents/toxin_reagents.dm
index fc79232e8f5..657704cf1d0 100644
--- a/code/modules/reagents/chemistry/reagents/toxin_reagents.dm
+++ b/code/modules/reagents/chemistry/reagents/toxin_reagents.dm
@@ -6,6 +6,8 @@
id = "toxin"
description = "A toxic chemical."
color = "#CF3600" // rgb: 207, 54, 0
+ taste_description = "bitterness"
+ taste_mult = 1.2
var/toxpwr = 1.5
/datum/reagent/toxin/on_mob_life(mob/living/M)
@@ -20,6 +22,7 @@
description = "A powerful poison derived from certain species of mushroom."
color = "#792300" // rgb: 121, 35, 0
toxpwr = 2.5
+ taste_description = "mushroom"
/datum/reagent/toxin/mutagen
name = "Unstable mutagen"
@@ -27,6 +30,8 @@
description = "Might cause unpredictable mutations. Keep away from children."
color = "#00FF00"
toxpwr = 0
+ taste_description = "slime"
+ taste_mult = 0.9
/datum/reagent/toxin/mutagen/reaction_mob(mob/living/carbon/M, method=TOUCH, reac_volume)
if(!..())
@@ -52,6 +57,8 @@
name = "Plasma"
id = "plasma"
description = "Plasma in its liquid form."
+ taste_description = "bitterness"
+ taste_mult = 1.5
color = "#8228A0"
toxpwr = 3
@@ -87,6 +94,7 @@
description = "A powerful poison used to stop respiration."
color = "#7DC3A0"
toxpwr = 0
+ taste_description = "acid"
/datum/reagent/toxin/lexorin/on_mob_life(mob/living/M)
. = TRUE
@@ -111,6 +119,8 @@
description = "A gooey semi-liquid produced from one of the deadliest lifeforms in existence. SO REAL."
color = "#801E28" // rgb: 128, 30, 40
toxpwr = 0
+ taste_description = "slime"
+ taste_mult = 1.3
/datum/reagent/toxin/slimejelly/on_mob_life(mob/living/M)
if(prob(10))
@@ -128,6 +138,7 @@
description = "Useful for dealing with undesirable customers."
color = "#CF3600" // rgb: 207, 54, 0
toxpwr = 0
+ taste_description = "mint"
/datum/reagent/toxin/minttoxin/on_mob_life(mob/living/M)
if(M.disabilities & FAT)
@@ -140,6 +151,7 @@
description = "A deadly neurotoxin produced by the dreaded spess carp."
color = "#003333" // rgb: 0, 51, 51
toxpwr = 2
+ taste_description = "fish"
/datum/reagent/toxin/zombiepowder
name = "Zombie Powder"
@@ -148,6 +160,7 @@
reagent_state = SOLID
color = "#669900" // rgb: 102, 153, 0
toxpwr = 0.5
+ taste_description = "death"
/datum/reagent/toxin/zombiepowder/on_mob_life(mob/living/carbon/M)
M.status_flags |= FAKEDEATH
@@ -168,6 +181,7 @@
description = "A powerful hallucinogen. Not a thing to be messed with."
color = "#B31008" // rgb: 139, 166, 233
toxpwr = 0
+ taste_description = "sourness"
/datum/reagent/toxin/mindbreaker/on_mob_life(mob/living/M)
M.hallucination += 10
@@ -179,6 +193,7 @@
description = "A harmful toxic mixture to kill plantlife. Do not ingest!"
color = "#49002E" // rgb: 73, 0, 46
toxpwr = 1
+ taste_mult = 1
/datum/reagent/toxin/plantbgone/reaction_obj(obj/O, reac_volume)
if(istype(O,/obj/structure/alien/weeds))
@@ -238,6 +253,7 @@
description = "A natural toxin produced by blob spores that induces combustion in its victim."
color = "#9ACD32"
toxpwr = 0.5
+ taste_description = "burning"
/datum/reagent/toxin/spore_burning/on_mob_life(mob/living/M)
M.adjust_fire_stacks(2)
@@ -287,6 +303,7 @@
description = "A specially-engineered sedative disguised as beer. It induces instant sleep in its target."
color = "#664300" // rgb: 102, 67, 0
metabolization_rate = 1.5 * REAGENTS_METABOLISM
+ taste_description = "piss water"
/datum/reagent/toxin/beer2/on_mob_life(mob/living/M)
switch(current_cycle)
@@ -319,6 +336,7 @@
description = "A nonlethal poison that inhibits speech in its victim."
color = "#F0F8FF" // rgb: 240, 248, 255
toxpwr = 0
+ taste_description = "silence"
/datum/reagent/toxin/mutetoxin/on_mob_life(mob/living/carbon/M)
M.silent = max(M.silent, 3)
@@ -465,6 +483,7 @@
color = "#d6d6d8"
metabolization_rate = 0.25 * REAGENTS_METABOLISM
toxpwr = 0.5
+ taste_description = "bad cooking"
/datum/reagent/toxin/itching_powder
name = "Itching Powder"
@@ -522,8 +541,8 @@
if(3)
if(ishuman(M))
var/mob/living/carbon/human/H = M
- if(!H.heart_attack)
- H.heart_attack = 1 // rip in pepperoni
+ if(!H.undergoing_cardiac_arrest() && H.can_heartattack())
+ H.set_heartattack(TRUE)
if(H.stat == CONSCIOUS)
H.visible_message("[H] clutches at [H.p_their()] chest as if [H.p_their()] heart stopped!")
else
@@ -540,6 +559,7 @@
color = "#195096"
metabolization_rate = 0.25 * REAGENTS_METABOLISM
toxpwr = 0
+ taste_mult = 0 // undetectable, I guess?
/datum/reagent/toxin/pancuronium/on_mob_life(mob/living/M)
if(current_cycle >= 10)
@@ -599,6 +619,7 @@
name = "Lipolicide"
id = "lipolicide"
description = "A powerful toxin that will destroy fat cells, massively reducing body weight in a short time. More deadly to those without nutriment in their body."
+ taste_description = "mothballs"
reagent_state = LIQUID
color = "#F0FFF0"
metabolization_rate = 0.5 * REAGENTS_METABOLISM
@@ -666,6 +687,7 @@
color = "#AC88CA" //RGB: 172, 136, 202
metabolization_rate = 0.6 * REAGENTS_METABOLISM
toxpwr = 0.5
+ taste_description = "spinning"
/datum/reagent/toxin/rotatium/on_mob_life(mob/living/M)
if(M.hud_used)
@@ -692,6 +714,7 @@
color = "#ADBDCD"
metabolization_rate = 0.8 * REAGENTS_METABOLISM
toxpwr = 0.25
+ taste_description = "skewing"
/datum/reagent/toxin/skewium/on_mob_life(mob/living/M)
if(M.hud_used)
@@ -746,6 +769,7 @@
color = "#00FF32"
toxpwr = 1
var/acidpwr = 10 //the amount of protection removed from the armour
+ taste_description = "acid"
/datum/reagent/toxin/acid/reaction_mob(mob/living/carbon/C, method=TOUCH, reac_volume)
if(!istype(C))
@@ -790,6 +814,7 @@
description = "Makes the target off balance and dizzy"
toxpwr = 0
metabolization_rate = 1.5 * REAGENTS_METABOLISM
+ taste_description = "dizziness"
/datum/reagent/toxin/peaceborg/confuse/on_mob_life(mob/living/M)
if(M.confused < 6)
@@ -806,6 +831,7 @@
description = "An extremely weak stamina-toxin that tires out the target. Completely harmless."
toxpwr = 0
metabolization_rate = 1.5 * REAGENTS_METABOLISM
+ taste_description = "tiredness"
/datum/reagent/toxin/peaceborg/tire/on_mob_life(mob/living/M)
var/healthcomp = (100 - M.health) //DOES NOT ACCOUNT FOR ADMINBUS THINGS THAT MAKE YOU HAVE MORE THAN 200/210 HEALTH, OR SOMETHING OTHER THAN A HUMAN PROCESSING THIS.
@@ -833,4 +859,4 @@
if(prob(10))
M.Weaken(1, 0)
. = 1
- ..()
\ No newline at end of file
+ ..()
diff --git a/code/modules/reagents/chemistry/recipes/medicine.dm b/code/modules/reagents/chemistry/recipes/medicine.dm
index e446ab9736b..187b42f035f 100644
--- a/code/modules/reagents/chemistry/recipes/medicine.dm
+++ b/code/modules/reagents/chemistry/recipes/medicine.dm
@@ -212,4 +212,10 @@
name = "Tricordrazine"
id = "tricordrazine"
results = list("tricordrazine" = 3)
- required_reagents = list("bicaridine" = 1, "kelotane" = 1, "antitoxin" = 1)
\ No newline at end of file
+ required_reagents = list("bicaridine" = 1, "kelotane" = 1, "antitoxin" = 1)
+
+/datum/chemical_reaction/corazone
+ name = "Corazone"
+ id = "corazone"
+ results = list("corazone" = 3)
+ required_reagents = list("phenol" = 2, "lithium" = 1)
diff --git a/code/modules/reagents/reagent_containers.dm b/code/modules/reagents/reagent_containers.dm
index cb668dc47ee..55de6a9a71a 100644
--- a/code/modules/reagents/reagent_containers.dm
+++ b/code/modules/reagents/reagent_containers.dm
@@ -21,6 +21,10 @@
var/datum/disease/F = new spawned_disease(0)
var/list/data = list("viruses"= list(F))
reagents.add_reagent("blood", disease_amount, data)
+
+ add_initial_reagents()
+
+/obj/item/weapon/reagent_containers/proc/add_initial_reagents()
if(list_reagents)
reagents.add_reagent_list(list_reagents)
diff --git a/code/modules/reagents/reagent_containers/bottle.dm b/code/modules/reagents/reagent_containers/bottle.dm
index 9a142be07f0..01f39db4d35 100644
--- a/code/modules/reagents/reagent_containers/bottle.dm
+++ b/code/modules/reagents/reagent_containers/bottle.dm
@@ -37,7 +37,7 @@
filling.icon_state = "[icon_state]100"
filling.color = mix_color_from_reagents(reagents.reagent_list)
- overlays += filling
+ add_overlay(filling)
/obj/item/weapon/reagent_containers/glass/bottle/epinephrine
diff --git a/code/modules/reagents/reagent_containers/hypospray.dm b/code/modules/reagents/reagent_containers/hypospray.dm
index a4f7299ea92..9e050560237 100644
--- a/code/modules/reagents/reagent_containers/hypospray.dm
+++ b/code/modules/reagents/reagent_containers/hypospray.dm
@@ -81,6 +81,9 @@
user << "[src] is empty!"
return
..()
+ if(!iscyborg(user))
+ reagents.maximum_volume = 0 //Makes them useless afterwards
+ container_type = 0
update_icon()
spawn(80)
if(iscyborg(user) && !reagents.total_volume)
diff --git a/code/modules/reagents/reagent_dispenser.dm b/code/modules/reagents/reagent_dispenser.dm
index a8e4da91602..939bef73dae 100644
--- a/code/modules/reagents/reagent_dispenser.dm
+++ b/code/modules/reagents/reagent_dispenser.dm
@@ -89,7 +89,9 @@
var/boom_message = "[key_name_admin(P.firer)] triggered a fueltank explosion via projectile."
bombers += boom_message
message_admins(boom_message)
- log_game("[key_name(P.firer)] triggered a fueltank explosion via projectile.")
+ var/log_message = "[key_name(P.firer)] triggered a fueltank explosion via projectile."
+ P.firer.attack_log += "\[[time_stamp()]\] [log_message]"
+ log_attack(log_message)
boom()
/obj/structure/reagent_dispensers/fueltank/attackby(obj/item/I, mob/living/user, params)
@@ -108,10 +110,12 @@
update_icon()
else
user.visible_message("[user] catastrophically fails at refilling [user.p_their()] [W.name]!", "That was stupid of you.")
- var/message = "[key_name_admin(user)] triggered a fueltank explosion via welding tool."
- bombers += message
- message_admins(message)
- log_game("[key_name(user)] triggered a fueltank explosion via welding tool.")
+ var/message_admins = "[key_name_admin(user)] triggered a fueltank explosion via welding tool."
+ bombers += message_admins
+ message_admins(message_admins)
+ var/message_log = "[key_name(user)] triggered a fueltank explosion via welding tool."
+ user.attack_log += "\[[time_stamp()]\] [message_log]"
+ log_attack(message_log)
boom()
return
return ..()
diff --git a/code/modules/recycling/disposal-construction.dm b/code/modules/recycling/disposal-construction.dm
index 447e5a70695..f85a4dba89c 100644
--- a/code/modules/recycling/disposal-construction.dm
+++ b/code/modules/recycling/disposal-construction.dm
@@ -233,7 +233,7 @@
if(W.remove_fuel(0,user))
playsound(loc, 'sound/items/Welder2.ogg', 100, 1)
user << "You start welding the [nicetype] in place..."
- if(do_after(user, 20*I.toolspeed, target = src))
+ if(do_after(user, 8*I.toolspeed, target = src))
if(!loc || !W.isOn())
return
user << "The [nicetype] has been welded in place."
diff --git a/code/modules/research/circuitprinter.dm b/code/modules/research/circuitprinter.dm
index 766c2922c62..ab930f1ff0f 100644
--- a/code/modules/research/circuitprinter.dm
+++ b/code/modules/research/circuitprinter.dm
@@ -29,7 +29,7 @@ using metal and glass, it uses glass and reagents (usually sulfuric acis).
/obj/machinery/r_n_d/circuit_imprinter/New()
..()
- materials = new(src, list(MAT_GLASS, MAT_GOLD, MAT_DIAMOND, MAT_METAL))
+ materials = new(src, list(MAT_GLASS, MAT_GOLD, MAT_DIAMOND, MAT_METAL, MAT_BLUESPACE))
create_reagents(0)
var/obj/item/weapon/circuitboard/machine/B = new /obj/item/weapon/circuitboard/machine/circuit_imprinter(null)
B.apply_default_parts(src)
@@ -113,6 +113,24 @@ using metal and glass, it uses glass and reagents (usually sulfuric acis).
user << "You add [amount_inserted] sheets to the [src.name]."
updateUsrDialog()
+ else if(istype(O, /obj/item/weapon/ore/bluespace_crystal)) //Bluespace crystals can be either a stack or an item
+ . = 1
+ if(!is_insertion_ready(user))
+ return
+ var/bs_material = materials.get_item_material_amount(O)
+ if(!bs_material)
+ return
+
+ if(!materials.has_space(bs_material))
+ user << "The [src.name]'s material bin is full! Please remove material before adding more."
+ return 1
+
+ materials.insert_item(O)
+ use_power(MINERAL_MATERIAL_AMOUNT/10)
+ user << "You add [O] to the [src.name]."
+ qdel(O)
+ updateUsrDialog()
+
else if(user.a_intent != INTENT_HARM)
user << "You cannot insert this item into the [name]!"
return 1
diff --git a/code/modules/research/designs.dm b/code/modules/research/designs.dm
index a9bfadee41a..0f32b1dcb9f 100644
--- a/code/modules/research/designs.dm
+++ b/code/modules/research/designs.dm
@@ -290,7 +290,7 @@ other types of metals and chemistry for reagents).
id = "bag_holding"
req_tech = list("bluespace" = 7, "materials" = 5, "engineering" = 5, "plasmatech" = 6)
build_type = PROTOLATHE
- materials = list(MAT_GOLD = 3000, MAT_DIAMOND = 1500, MAT_URANIUM = 250)
+ materials = list(MAT_GOLD = 3000, MAT_DIAMOND = 1500, MAT_URANIUM = 250, MAT_BLUESPACE = 2000)
build_path = /obj/item/weapon/storage/backpack/holding
category = list("Bluespace Designs")
@@ -320,7 +320,7 @@ other types of metals and chemistry for reagents).
id = "minerbag_holding"
req_tech = list("bluespace" = 4, "materials" = 3, "engineering" = 4)
build_type = PROTOLATHE
- materials = list(MAT_GOLD = 250, MAT_URANIUM = 500) //quite cheap, for more convenience
+ materials = list(MAT_GOLD = 250, MAT_URANIUM = 500, MAT_BLUESPACE = 1000) //quite cheap, for more convenience
build_path = /obj/item/weapon/storage/bag/ore/holding
category = list("Bluespace Designs")
diff --git a/code/modules/research/designs/mecha_designs.dm b/code/modules/research/designs/mecha_designs.dm
index e4d862bc7a8..6f444c67cc3 100644
--- a/code/modules/research/designs/mecha_designs.dm
+++ b/code/modules/research/designs/mecha_designs.dm
@@ -115,6 +115,7 @@
name = "\"Phazon\" Central Control module"
desc = "Allows for the construction of a \"Phazon\" Central Control module."
id = "phazon_main"
+ materials = list(MAT_GLASS = 1000, MAT_BLUESPACE = 100)
req_tech = list("programming" = 6, "materials" = 6, "plasmatech" = 5)
build_path = /obj/item/weapon/circuitboard/mecha/phazon/main
category = list("Exosuit Modules")
@@ -123,6 +124,7 @@
name = "\"Phazon\" Peripherals Control module"
desc = "Allows for the construction of a \"Phazon\" Peripheral Control module."
id = "phazon_peri"
+ materials = list(MAT_GLASS = 1000, MAT_BLUESPACE = 100)
req_tech = list("programming" = 6, "bluespace" = 5, "plasmatech" = 5)
build_path = /obj/item/weapon/circuitboard/mecha/phazon/peripherals
category = list("Exosuit Modules")
@@ -131,6 +133,7 @@
name = "\"Phazon\" Weapons & Targeting Control module"
desc = "Allows for the construction of a \"Phazon\" Weapons & Targeting Control module."
id = "phazon_targ"
+ materials = list(MAT_GLASS = 1000, MAT_BLUESPACE = 100)
req_tech = list("programming" = 6, "magnets" = 5, "plasmatech" = 5)
build_path = /obj/item/weapon/circuitboard/mecha/phazon/targeting
category = list("Exosuit Modules")
@@ -172,6 +175,17 @@
construction_time = 100
category = list("Exosuit Equipment")
+/datum/design/mech_tesla
+ name = "Exosuit Weapon (MKI Tesla Cannon)"
+ desc = "Allows for the construction of MKI Tesla Cannon."
+ id = "mech_tesla"
+ build_type = MECHFAB
+ req_tech = list("combat" = 6, "magnets" = 5, "materials" = 5)
+ build_path = /obj/item/mecha_parts/mecha_equipment/weapon/energy/tesla
+ materials = list(MAT_METAL=20000,MAT_SILVER=8000)
+ construction_time = 100
+ category = list("Exosuit Equipment")
+
/datum/design/mech_laser
name = "Exosuit Weapon (CH-PS \"Immolator\" Laser)"
desc = "Allows for the construction of CH-PS Laser."
diff --git a/code/modules/research/designs/mechfabricator_designs.dm b/code/modules/research/designs/mechfabricator_designs.dm
index 0285782b72d..6ce54089fea 100644
--- a/code/modules/research/designs/mechfabricator_designs.dm
+++ b/code/modules/research/designs/mechfabricator_designs.dm
@@ -760,7 +760,6 @@
build_path = /obj/item/device/assembly/flash/handheld
category = list("Misc")
-/*
/datum/design/flightsuit //Multi step build process/redo WIP
name = "Flight Suit"
desc = "A specialized hardsuit that is able to attach a flightpack and accessories.."
@@ -792,4 +791,4 @@
materials = list(MAT_METAL = 5000, MAT_GLASS = 5000, MAT_GOLD = 1500, MAT_SILVER = 1500, MAT_PLASMA = 2000, MAT_TITANIUM = 2000)
construction_time = 100
category = list("Misc")
- req_tech = list("magnets" = 2, "combat" = 2, "plasmatech" = 3, "materials" = 3, "engineering" = 2, "powerstorage" = 2)*/
+ req_tech = list("magnets" = 2, "combat" = 2, "plasmatech" = 3, "materials" = 3, "engineering" = 2, "powerstorage" = 2)
diff --git a/code/modules/research/designs/medical_designs.dm b/code/modules/research/designs/medical_designs.dm
index 752bc73919f..5fb80efbdfd 100644
--- a/code/modules/research/designs/medical_designs.dm
+++ b/code/modules/research/designs/medical_designs.dm
@@ -51,7 +51,7 @@
id = "bluespacebeaker"
req_tech = list("bluespace" = 6, "materials" = 5, "plasmatech" = 4)
build_type = PROTOLATHE
- materials = list(MAT_GLASS = 3000, MAT_PLASMA = 3000, MAT_DIAMOND = 500)
+ materials = list(MAT_GLASS = 3000, MAT_PLASMA = 3000, MAT_DIAMOND = 250, MAT_BLUESPACE = 250)
build_path = /obj/item/weapon/reagent_containers/glass/beaker/bluespace
category = list("Medical Designs")
@@ -71,7 +71,7 @@
id = "bluespacesyringe"
req_tech = list("bluespace" = 5, "materials" = 4, "biotech" = 4)
build_type = PROTOLATHE
- materials = list(MAT_GLASS = 4000, MAT_PLASMA = 2000, MAT_DIAMOND = 2000)
+ materials = list(MAT_GLASS = 2000, MAT_PLASMA = 1000, MAT_DIAMOND = 1000, MAT_BLUESPACE = 500)
build_path = /obj/item/weapon/reagent_containers/syringe/bluespace
category = list("Medical Designs")
@@ -81,7 +81,7 @@
id = "noreactsyringe"
req_tech = list("materials" = 3, "engineering" = 3)
build_type = PROTOLATHE
- materials = list(MAT_GLASS = 4000, MAT_GOLD = 1000)
+ materials = list(MAT_GLASS = 2000, MAT_GOLD = 1000)
build_path = /obj/item/weapon/reagent_containers/syringe/noreact
category = list("Medical Designs")
@@ -91,7 +91,7 @@
id = "piercesyringe"
req_tech = list("materials" = 7, "combat" = 3, "engineering" = 5)
build_type = PROTOLATHE
- materials = list(MAT_GLASS = 4000, MAT_DIAMOND = 1500)
+ materials = list(MAT_GLASS = 2000, MAT_DIAMOND = 1000)
build_path = /obj/item/weapon/reagent_containers/syringe/piercing
category = list("Medical Designs")
@@ -101,7 +101,7 @@
id = "bluespacebodybag"
req_tech = list("bluespace" = 5, "materials" = 4, "plasmatech" = 4)
build_type = PROTOLATHE
- materials = list(MAT_METAL = 3000, MAT_PLASMA = 2000, MAT_DIAMOND = 500)
+ materials = list(MAT_METAL = 3000, MAT_PLASMA = 2000, MAT_DIAMOND = 500, MAT_BLUESPACE = 500)
build_path = /obj/item/bodybag/bluespace
category = list("Medical Designs")
@@ -241,7 +241,7 @@
req_tech = list("materials" = 7, "programming" = 5, "biotech" = 7, "magnets" = 5,"plasmatech" = 6)
build_type = PROTOLATHE | MECHFAB
construction_time = 60
- materials = list(MAT_METAL = 600, MAT_GLASS = 600, MAT_SILVER = 600, MAT_GOLD = 600, MAT_PLASMA = 1000, MAT_URANIUM = 1000, MAT_DIAMOND = 2000)
+ materials = list(MAT_METAL = 600, MAT_GLASS = 600, MAT_SILVER = 600, MAT_GOLD = 600, MAT_PLASMA = 1000, MAT_URANIUM = 1000, MAT_DIAMOND = 1000, MAT_BLUESPACE = 1000)
build_path = /obj/item/organ/eyes/robotic/xray
category = list("Misc", "Medical Designs")
diff --git a/code/modules/research/designs/power_designs.dm b/code/modules/research/designs/power_designs.dm
index 3ac28721da6..f03bb8f3e9d 100644
--- a/code/modules/research/designs/power_designs.dm
+++ b/code/modules/research/designs/power_designs.dm
@@ -52,7 +52,7 @@
id = "bluespace_cell"
req_tech = list("powerstorage" = 6, "materials" = 5, "engineering" = 5, "bluespace" = 5)
build_type = PROTOLATHE | MECHFAB
- materials = list(MAT_METAL = 800, MAT_GOLD = 120, MAT_SILVER = 150, MAT_GLASS = 160, MAT_DIAMOND = 160, MAT_TITANIUM = 300)
+ materials = list(MAT_METAL = 800, MAT_GOLD = 120, MAT_GLASS = 160, MAT_DIAMOND = 160, MAT_TITANIUM = 300, MAT_BLUESPACE = 100)
construction_time=100
build_path = /obj/item/weapon/stock_parts/cell/bluespace
category = list("Misc","Power Designs")
diff --git a/code/modules/research/designs/stock_parts_designs.dm b/code/modules/research/designs/stock_parts_designs.dm
index d849a1a95d4..6b6b127e1fd 100644
--- a/code/modules/research/designs/stock_parts_designs.dm
+++ b/code/modules/research/designs/stock_parts_designs.dm
@@ -62,7 +62,7 @@
id = "quadratic_capacitor"
req_tech = list("powerstorage" = 6, "engineering" = 5, "materials" = 5, "bluespace" = 5)
build_type = PROTOLATHE
- materials = list(MAT_METAL = 200, MAT_GLASS = 200, MAT_DIAMOND = 100)
+ materials = list(MAT_METAL = 200, MAT_GLASS = 200, MAT_GOLD = 100, MAT_DIAMOND = 100)
build_path = /obj/item/weapon/stock_parts/capacitor/quadratic
category = list("Stock Parts")
lathe_time_factor = 0.2
@@ -107,7 +107,7 @@
id = "triphasic_scanning"
req_tech = list("magnets" = 6, "materials" = 5, "engineering" = 5, "bluespace" = 5)
build_type = PROTOLATHE
- materials = list(MAT_METAL = 200, MAT_GLASS = 200, MAT_DIAMOND = 60)
+ materials = list(MAT_METAL = 200, MAT_GLASS = 200, MAT_DIAMOND = 30, MAT_BLUESPACE = 30)
build_path = /obj/item/weapon/stock_parts/scanning_module/triphasic
category = list("Stock Parts")
lathe_time_factor = 0.2
@@ -241,7 +241,7 @@
id = "bluespace_matter_bin"
req_tech = list("materials" = 7, "engineering" = 5, "bluespace" = 5)
build_type = PROTOLATHE
- materials = list(MAT_METAL = 250, MAT_DIAMOND = 200)
+ materials = list(MAT_METAL = 250, MAT_DIAMOND = 100, MAT_BLUESPACE = 100)
build_path = /obj/item/weapon/stock_parts/matter_bin/bluespace
category = list("Stock Parts")
lathe_time_factor = 0.2
diff --git a/code/modules/research/designs/weapon_designs.dm b/code/modules/research/designs/weapon_designs.dm
index 9afb51fb273..500f61beff4 100644
--- a/code/modules/research/designs/weapon_designs.dm
+++ b/code/modules/research/designs/weapon_designs.dm
@@ -153,7 +153,7 @@
id = "xray"
req_tech = list("combat" = 7, "magnets" = 5, "biotech" = 5, "powerstorage" = 4)
build_type = PROTOLATHE
- materials = list(MAT_GOLD = 5000,MAT_URANIUM = 8000, MAT_METAL = 5000, MAT_TITANIUM = 2000)
+ materials = list(MAT_GOLD = 5000, MAT_URANIUM = 4000, MAT_METAL = 5000, MAT_TITANIUM = 2000, MAT_BLUESPACE = 2000)
build_path = /obj/item/weapon/gun/energy/xray
category = list("Weapons")
@@ -173,7 +173,7 @@
id = "wormholeprojector"
req_tech = list("combat" = 5, "engineering" = 5, "bluespace" = 7, "plasmatech" = 6)
build_type = PROTOLATHE
- materials = list(MAT_SILVER = 2000, MAT_METAL = 5000, MAT_DIAMOND = 3000)
+ materials = list(MAT_SILVER = 2000, MAT_METAL = 5000, MAT_DIAMOND = 2000, MAT_BLUESPACE = 3000)
build_path = /obj/item/weapon/gun/energy/wormhole_projector
category = list("Weapons")
@@ -251,12 +251,12 @@
category = list("Weapons")
/datum/design/gravitygun
- name = "one-point bluespace-gravitational manipulator"
+ name = "One-point Bluespace-gravitational Manipulator"
desc = "A multi-mode device that blasts one-point bluespace-gravitational bolts that locally distort gravity."
id = "gravitygun"
req_tech = list("combat" = 4, "materials" = 5, "bluespace" = 4, "powerstorage" = 4, "magnets" = 5)
build_type = PROTOLATHE
- materials = list(MAT_SILVER = 8000, MAT_GOLD = 8000, MAT_URANIUM = 8000, MAT_GLASS = 12000, MAT_METAL = 12000, MAT_DIAMOND = 3000)
+ materials = list(MAT_SILVER = 8000, MAT_URANIUM = 8000, MAT_GLASS = 12000, MAT_METAL = 12000, MAT_DIAMOND = 3000, MAT_BLUESPACE = 3000)
build_path = /obj/item/weapon/gun/energy/gravity_gun
category = list("Weapons")
diff --git a/code/modules/research/protolathe.dm b/code/modules/research/protolathe.dm
index 0d67343d945..cdd410edac2 100644
--- a/code/modules/research/protolathe.dm
+++ b/code/modules/research/protolathe.dm
@@ -34,7 +34,7 @@ Note: Must be placed west/left of and R&D console to function.
/obj/machinery/r_n_d/protolathe/New()
..()
create_reagents(0)
- materials = new(src, list(MAT_METAL, MAT_GLASS, MAT_SILVER, MAT_GOLD, MAT_DIAMOND, MAT_PLASMA, MAT_URANIUM, MAT_BANANIUM, MAT_TITANIUM))
+ materials = new(src, list(MAT_METAL, MAT_GLASS, MAT_SILVER, MAT_GOLD, MAT_DIAMOND, MAT_PLASMA, MAT_URANIUM, MAT_BANANIUM, MAT_TITANIUM, MAT_BLUESPACE))
var/obj/item/weapon/circuitboard/machine/B = new /obj/item/weapon/circuitboard/machine/protolathe(null)
B.apply_default_parts(src)
@@ -110,13 +110,36 @@ Note: Must be placed west/left of and R&D console to function.
return 1
else
var/stack_name = stack.name
- busy = 1
+ busy = TRUE
use_power(max(1000, (MINERAL_MATERIAL_AMOUNT*amount_inserted/10)))
user << "You add [amount_inserted] sheets to the [src.name]."
add_overlay("protolathe_[stack_name]")
sleep(10)
- overlays -= "protolathe_[stack_name]"
- busy = 0
+ cut_overlay("protolathe_[stack_name]")
+ busy = FALSE
+ updateUsrDialog()
+
+ else if(istype(O, /obj/item/weapon/ore/bluespace_crystal)) //Bluespace crystals can be either a stack or an item
+ . = 1
+ if(!is_insertion_ready(user))
+ return
+ var/bs_material = materials.get_item_material_amount(O)
+ if(!bs_material)
+ return
+
+ if(!materials.has_space(bs_material))
+ user << "The [src.name]'s material bin is full! Please remove material before adding more."
+ return 1
+
+ materials.insert_item(O)
+ busy = TRUE
+ use_power(MINERAL_MATERIAL_AMOUNT/10)
+ user << "You add [O] to the [src.name]."
+ qdel(O)
+ add_overlay("protolathe_bluespace")
+ sleep(10)
+ cut_overlay("protolathe_bluespace")
+ busy = FALSE
updateUsrDialog()
else if(user.a_intent != INTENT_HARM)
diff --git a/code/modules/research/rdconsole.dm b/code/modules/research/rdconsole.dm
index a4b8c02503f..000fd3e562c 100644
--- a/code/modules/research/rdconsole.dm
+++ b/code/modules/research/rdconsole.dm
@@ -448,7 +448,7 @@ won't update every console in existence) but it's more of a hassle to do. Also,
var/obj/item/new_item = new P(src)
if( new_item.type == /obj/item/weapon/storage/backpack/holding )
new_item.investigate_log("built by [key]","singulo")
- if(!istype(new_item, /obj/item/stack/sheet)) // To avoid materials dupe glitches
+ if(!istype(new_item, /obj/item/stack/sheet) && !istype(new_item, /obj/item/weapon/ore/bluespace_crystal)) // To avoid materials dupe glitches
new_item.materials = efficient_mats.Copy()
new_item.loc = linked_lathe.loc
if(!already_logged)
diff --git a/code/modules/shuttle/emergency.dm b/code/modules/shuttle/emergency.dm
index 76839102a89..5cde17e4e2a 100644
--- a/code/modules/shuttle/emergency.dm
+++ b/code/modules/shuttle/emergency.dm
@@ -400,9 +400,9 @@
return 1
/obj/docking_port/mobile/pod/New()
+ ..()
if(id == "pod")
WARNING("[type] id has not been changed from the default. Use the id convention \"pod1\" \"pod2\" etc.")
- ..()
/obj/docking_port/mobile/pod/cancel()
return
diff --git a/code/modules/shuttle/ferry.dm b/code/modules/shuttle/ferry.dm
index 60e74e91a17..e96ffdc5293 100644
--- a/code/modules/shuttle/ferry.dm
+++ b/code/modules/shuttle/ferry.dm
@@ -3,15 +3,24 @@
circuit = /obj/item/weapon/circuitboard/computer/ferry
shuttleId = "ferry"
possible_destinations = "ferry_home;ferry_away"
+ req_access = list(access_cent_general)
+ var/aiControlDisabled = 1
+
+/obj/machinery/computer/shuttle/ferry/proc/canAIControl(mob/user)
+ return ((aiControlDisabled != 1));
+
+/obj/machinery/computer/shuttle/ferry/attack_ai(mob/user)
+ if(!src.canAIControl(user))
+ return
/obj/machinery/computer/shuttle/ferry/request
name = "ferry console"
circuit = /obj/item/weapon/circuitboard/computer/ferry/request
var/last_request //prevents spamming admins
var/cooldown = 600
- possible_destinations = "ferry_home"
- admin_controlled = 1
+ possible_destinations = "ferry_home;ferry_away"
+ req_access = list(access_cent_general)
resistance_flags = INDESTRUCTIBLE | LAVA_PROOF | FIRE_PROOF | ACID_PROOF
/obj/machinery/computer/shuttle/ferry/request/Topic(href, href_list)
diff --git a/code/modules/shuttle/manipulator.dm b/code/modules/shuttle/manipulator.dm
index 004a91a171e..64303e0e36a 100644
--- a/code/modules/shuttle/manipulator.dm
+++ b/code/modules/shuttle/manipulator.dm
@@ -75,8 +75,8 @@
data["templates_tabs"] = list()
data["selected"] = list()
- for(var/shuttle_id in shuttle_templates)
- var/datum/map_template/shuttle/S = shuttle_templates[shuttle_id]
+ for(var/shuttle_id in SSmapping.shuttle_templates)
+ var/datum/map_template/shuttle/S = SSmapping.shuttle_templates[shuttle_id]
if(!templates[S.port_id])
data["templates_tabs"] += S.port_id
@@ -130,7 +130,7 @@
// Preload some common parameters
var/shuttle_id = params["shuttle_id"]
- var/datum/map_template/shuttle/S = shuttle_templates[shuttle_id]
+ var/datum/map_template/shuttle/S = SSmapping.shuttle_templates[shuttle_id]
switch(action)
if("select_template")
diff --git a/code/modules/spells/spell.dm b/code/modules/spells/spell.dm
index 8211d350959..cc2761fd8c7 100644
--- a/code/modules/spells/spell.dm
+++ b/code/modules/spells/spell.dm
@@ -7,6 +7,7 @@
var/active = FALSE //Used by toggle based abilities.
var/ranged_mousepointer
var/mob/living/ranged_ability_user
+ var/ranged_clickcd_override = -1
var/list/spells = typesof(/obj/effect/proc_holder/spell) //needed for the badmin verb for now
@@ -20,7 +21,10 @@ var/list/spells = typesof(/obj/effect/proc_holder/spell) //needed for the badmin
caller << "[caller.ranged_ability.name] has been disabled."
caller.ranged_ability.remove_ranged_ability()
return TRUE //TRUE for failed, FALSE for passed.
- ranged_ability_user.next_click = world.time + CLICK_CD_CLICK_ABILITY
+ if(ranged_clickcd_override >= 0)
+ ranged_ability_user.next_click = world.time + ranged_clickcd_override
+ else
+ ranged_ability_user.next_click = world.time + CLICK_CD_CLICK_ABILITY
ranged_ability_user.face_atom(A)
return FALSE
diff --git a/code/modules/spells/spell_types/aimed.dm b/code/modules/spells/spell_types/aimed.dm
index ec7fef5075d..ab91a672cca 100644
--- a/code/modules/spells/spell_types/aimed.dm
+++ b/code/modules/spells/spell_types/aimed.dm
@@ -6,7 +6,9 @@
var/active_msg = "You charge your projectile!"
var/base_icon_state = "projectile"
var/active_icon_state = "projectile"
- var/projectile_damage_override = -1
+ var/list/projectile_var_overrides = list()
+ var/projectile_amount = 1 //Projectiles per cast.
+ var/current_amount = 1 //How many projectiles left.
/obj/effect/proc_holder/spell/aimed/Click()
var/mob/living/user = usr
@@ -22,6 +24,7 @@
remove_ranged_ability(msg)
else
msg = "[active_msg]Left-click to shoot it at a target!"
+ current_amount = projectile_amount
add_ranged_ability(user, msg, TRUE)
/obj/effect/proc_holder/spell/aimed/update_icon()
@@ -48,18 +51,18 @@
return FALSE
fire_projectile(user, target)
user.newtonian_move(get_dir(U, T))
- remove_ranged_ability() //Auto-disable the ability once successfully performed
+ current_amount--
+ if(current_amount <= 0)
+ remove_ranged_ability() //Auto-disable the ability once you run out of bullets.
return TRUE
/obj/effect/proc_holder/spell/aimed/proc/fire_projectile(mob/living/user, atom/target)
var/obj/item/projectile/P = new projectile_type(user.loc)
P.current = get_turf(user)
P.preparePixelProjectile(target, get_turf(target), user)
- if(projectile_damage_override != -1)
- P.damage = projectile_damage_override
- P.nodamage = TRUE
- if(P.damage)
- P.nodamage = FALSE
+ for(var/V in projectile_var_overrides)
+ if(P.vars[V])
+ P.vars[V] = projectile_var_overrides[V]
P.fire()
return TRUE
@@ -76,26 +79,10 @@
base_icon_state = "lightning"
sound = 'sound/magic/lightningbolt.ogg'
active = FALSE
- var/tesla_range = 15
- var/tesla_power = 20000
- var/tesla_boom = FALSE
+ projectile_var_overrides = list("tesla_range" = 15, "tesla_power" = 20000, "tesla_boom" = FALSE)
active_msg = "You energize your hand with arcane lightning!"
deactive_msg = "You let the energy flow out of your hands back into yourself..."
-
-/obj/effect/proc_holder/spell/aimed/lightningbolt/fire_projectile(mob/living/user, atom/target)
- var/obj/item/projectile/magic/aoe/lightning/P = new /obj/item/projectile/magic/aoe/lightning(user.loc)
- P.current = get_turf(user)
- P.preparePixelProjectile(target, get_turf(target), user)
- if(projectile_damage_override != -1)
- P.damage = projectile_damage_override
- P.nodamage = TRUE
- if(P.damage)
- P.nodamage = FALSE
- P.tesla_power = tesla_power
- P.tesla_range = tesla_range
- P.tesla_boom = tesla_boom
- P.fire()
- return TRUE
+ projectile_type = /obj/item/projectile/magic/aoe/lightning
/obj/effect/proc_holder/spell/aimed/fireball
name = "Fireball"
diff --git a/code/modules/spells/spell_types/barnyard.dm b/code/modules/spells/spell_types/barnyard.dm
index b87fdb1eb88..c866342355b 100644
--- a/code/modules/spells/spell_types/barnyard.dm
+++ b/code/modules/spells/spell_types/barnyard.dm
@@ -1,6 +1,6 @@
/obj/effect/proc_holder/spell/targeted/barnyardcurse
name = "Curse of the Barnyard"
- desc = "This spell dooms the fate of any unlucky soul to the speech and facial attributes of a barnyard animal"
+ desc = "This spell dooms an unlucky soul to possess the speech and facial attributes of a barnyard animal."
school = "transmutation"
charge_type = "recharge"
charge_max = 150
@@ -40,7 +40,7 @@
var/obj/item/clothing/mask/magichead = new choice
magichead.flags |=NODROP
magichead.flags_inv = null
- target.visible_message("[target]'s face lights up in fire, and after the event a barnyard animal's head takes it's place!", \
+ target.visible_message("[target]'s face bursts into flames, and a barnyard animal's head takes its place!", \
"Your face burns up, and shortly after the fire you realise you have the face of a barnyard animal!")
if(!target.dropItemToGround(target.wear_mask))
qdel(target.wear_mask)
diff --git a/code/modules/spells/spell_types/charge.dm b/code/modules/spells/spell_types/charge.dm
index c4210e5150f..e02bf29edac 100644
--- a/code/modules/spells/spell_types/charge.dm
+++ b/code/modules/spells/spell_types/charge.dm
@@ -26,7 +26,7 @@
if(M.mind)
for(var/obj/effect/proc_holder/spell/S in M.mind.spell_list)
S.charge_counter = S.charge_max
- M <<"you feel raw magic flowing through you, it feels good!"
+ M <<"You feel raw magic flowing through you. It feels good!"
else
M <<"you feel very strange for a moment, but then it passes."
burnt_out = 1
@@ -91,7 +91,7 @@
charged_item = item
break
if(!charged_item)
- L << "you feel magical power surging to your hands, but the feeling rapidly fades..."
+ L << "You feel magical power surging through your hands, but the feeling rapidly fades..."
else if(burnt_out)
L << "[charged_item] doesn't seem to be reacting to the spell..."
else
diff --git a/code/modules/spells/spell_types/devil.dm b/code/modules/spells/spell_types/devil.dm
index 6f62b9488c6..38c2095acd3 100644
--- a/code/modules/spells/spell_types/devil.dm
+++ b/code/modules/spells/spell_types/devil.dm
@@ -158,7 +158,7 @@
fakefire()
src.loc = get_turf(src)
src.client.eye = src
- src.visible_message("[src] appears in a firey blaze!")
+ src.visible_message("[src] appears in a fiery blaze!")
playsound(get_turf(src), 'sound/magic/exit_blood.ogg', 100, 1, -1)
addtimer(CALLBACK(src, .proc/fakefireextinguish), 15, TIMER_UNIQUE)
diff --git a/code/modules/spells/spell_types/forcewall.dm b/code/modules/spells/spell_types/forcewall.dm
index 98d7c501e65..6579171738a 100644
--- a/code/modules/spells/spell_types/forcewall.dm
+++ b/code/modules/spells/spell_types/forcewall.dm
@@ -11,15 +11,16 @@
range = -1
include_user = 1
cooldown_min = 50 //12 deciseconds reduction per rank
+ var/wall_type = /obj/effect/forcefield/wizard
/obj/effect/proc_holder/spell/targeted/forcewall/cast(list/targets,mob/user = usr)
- new /obj/effect/forcefield/wizard(get_turf(user),user)
+ new wall_type(get_turf(user),user)
if(user.dir == SOUTH || user.dir == NORTH)
- new /obj/effect/forcefield/wizard(get_step(user, EAST),user)
- new /obj/effect/forcefield/wizard(get_step(user, WEST),user)
+ new wall_type(get_step(user, EAST),user)
+ new wall_type(get_step(user, WEST),user)
else
- new /obj/effect/forcefield/wizard(get_step(user, NORTH),user)
- new /obj/effect/forcefield/wizard(get_step(user, SOUTH),user)
+ new wall_type(get_step(user, NORTH),user)
+ new wall_type(get_step(user, SOUTH),user)
/obj/effect/forcefield/wizard
diff --git a/code/modules/spells/spell_types/godhand.dm b/code/modules/spells/spell_types/godhand.dm
index 74174112ade..6d4b248bc5b 100644
--- a/code/modules/spells/spell_types/godhand.dm
+++ b/code/modules/spells/spell_types/godhand.dm
@@ -7,7 +7,7 @@
icon = 'icons/obj/weapons.dmi'
icon_state = "syndballoon"
item_state = null
- flags = ABSTRACT | NODROP
+ flags = ABSTRACT | NODROP | DROPDEL
w_class = WEIGHT_CLASS_HUGE
force = 0
throwforce = 0
@@ -33,10 +33,10 @@
attached_spell.attached_hand = null
qdel(src)
-/obj/item/weapon/melee/touch_attack/dropped()
+/obj/item/weapon/melee/touch_attack/Destroy()
if(attached_spell)
attached_spell.attached_hand = null
- qdel(src)
+ return ..()
/obj/item/weapon/melee/touch_attack/disintegrate
name = "\improper disintegrating touch"
diff --git a/code/modules/spells/spell_types/lightning.dm b/code/modules/spells/spell_types/lightning.dm
index c1058161f55..78328e5d2cf 100644
--- a/code/modules/spells/spell_types/lightning.dm
+++ b/code/modules/spells/spell_types/lightning.dm
@@ -26,7 +26,7 @@
user << "You start gathering the power."
Snd = new/sound('sound/magic/lightning_chargeup.ogg',channel = 7)
halo = image("icon"='icons/effects/effects.dmi',"icon_state" ="electricity","layer" = EFFECTS_LAYER)
- user.overlays.Add(halo)
+ user.add_overlay(halo)
playsound(get_turf(user), Snd, 50, 0)
if(do_mob(user,user,100,1))
if(ready && cast_check(skipcharge=1))
@@ -39,7 +39,7 @@
/obj/effect/proc_holder/spell/targeted/tesla/proc/Reset(mob/user = usr)
ready = 0
if(halo)
- user.overlays.Remove(halo)
+ user.cut_overlay(halo)
/obj/effect/proc_holder/spell/targeted/tesla/revert_cast(mob/user = usr, message = 1)
if(message)
diff --git a/code/modules/spells/spell_types/mime.dm b/code/modules/spells/spell_types/mime.dm
index 9d8cd0fe6a4..78d5f995880 100644
--- a/code/modules/spells/spell_types/mime.dm
+++ b/code/modules/spells/spell_types/mime.dm
@@ -1,5 +1,5 @@
/obj/effect/proc_holder/spell/aoe_turf/conjure/mime_wall
- name = "Invisible wall"
+ name = "Invisible Wall"
desc = "The mime's performance transmutates into physical reality."
school = "mime"
panel = "Mime"
@@ -59,4 +59,77 @@
if(H.mind.miming)
H << "You make a vow of silence."
else
- H << "You break your vow of silence."
\ No newline at end of file
+ H << "You break your vow of silence."
+
+// These spells can only be gotten from the "Guide for Advanced Mimery series+" for Mime Traitors.
+
+/obj/effect/proc_holder/spell/targeted/forcewall/mime
+ name = "Invisible Blockade"
+ desc = "With more polished skills, a powerful mime can create a invisble blockade, blocking off a 3x1 area."
+ wall_type = /obj/effect/forcefield/mime/advanced
+ invocation_type = "emote"
+ invocation_emote_self = "You form a blockade in front of yourself."
+ charge_max = 600
+ sound = null
+ clothes_req = 0
+ range = -1
+ include_user = 1
+
+ action_icon_state = "mime"
+ action_background_icon_state = "bg_mime"
+
+/obj/effect/proc_holder/spell/targeted/forcewall/mime/Click()
+ if(usr && usr.mind)
+ if(!usr.mind.miming)
+ usr << "You must dedicate yourself to silence first."
+ return
+ invocation = "[usr.real_name] looks as if a blockade is in front of [usr.p_them()]."
+ else
+ invocation_type ="none"
+ ..()
+
+/obj/effect/proc_holder/spell/aimed/finger_guns
+ name = "Finger Guns"
+ desc = "An ancient technqiue, passed down from mentor to student. Allows you to shoot bullets out of your fingers."
+ school = "mime"
+ panel = "Mime"
+ charge_max = 300
+ clothes_req = 0
+ invocation_type = "emote"
+ invocation_emote_self = "You fire your finger gun!"
+ range = 20
+ projectile_type = /obj/item/projectile/bullet/weakbullet2
+ sound = null
+ active_msg = "You draw your fingers!"
+ deactive_msg = "You put your fingers at ease. Another time."
+ active = FALSE
+
+ action_icon_state = "mime"
+ action_background_icon_state = "bg_mime"
+ base_icon_state = "mime"
+
+
+/obj/effect/proc_holder/spell/aimed/finger_guns/Click()
+ if(usr && usr.mind)
+ if(!usr.mind.miming)
+ usr << "You must dedicate yourself to silence first."
+ return
+ invocation = "[usr.real_name] fires [usr.p_their()] finger gun!"
+ else
+ invocation_type ="none"
+ ..()
+
+
+/obj/item/weapon/spellbook/oneuse/mimery_blockade
+ spell = /obj/effect/proc_holder/spell/targeted/forcewall/mime
+ spellname = ""
+ name = "Guide to Advanced Mimery Vol 1"
+ desc = "When you turn the pages, it won't make a sound!"
+ icon_state ="bookmime"
+
+/obj/item/weapon/spellbook/oneuse/mimery_guns
+ spell = /obj/effect/proc_holder/spell/aimed/finger_guns
+ spellname = ""
+ name = "Guide to Advanced Mimery Vol 2"
+ desc = "There aren't any words written..."
+ icon_state ="bookmime"
\ No newline at end of file
diff --git a/code/modules/spells/spell_types/voice_of_god.dm b/code/modules/spells/spell_types/voice_of_god.dm
new file mode 100644
index 00000000000..adff53210fc
--- /dev/null
+++ b/code/modules/spells/spell_types/voice_of_god.dm
@@ -0,0 +1,44 @@
+/obj/effect/proc_holder/spell/voice_of_god
+ name = "Voice of God"
+ desc = "Speak with an incredibly compelling voice, forcing listeners to obey your commands."
+ charge_max = 1200 //variable
+ cooldown_min = 0
+ level_max = 1
+ clothes_req = 0
+ action_icon_state = "voice_of_god"
+ var/command
+ var/cooldown_mod = 1
+ var/power_mod = 1
+ var/list/spans = list("colossus","yell")
+ var/speech_sound = 'sound/magic/clockwork/invoke_general.ogg'
+
+/obj/effect/proc_holder/spell/voice_of_god/can_cast(mob/user = usr)
+ if(!user.can_speak())
+ user << "You are unable to speak!"
+ return FALSE
+ return TRUE
+
+/obj/effect/proc_holder/spell/voice_of_god/choose_targets(mob/user = usr)
+ perform(user=user)
+/obj/effect/proc_holder/spell/voice_of_god/perform(list/targets, recharge = 1, mob/user = usr)
+ command = input(user, "Speak with the Voice of God", "Command")
+ if(QDELETED(src) || QDELETED(user))
+ return
+ if(!command)
+ revert_cast(user)
+ return
+ ..()
+
+/obj/effect/proc_holder/spell/voice_of_god/cast(list/targets, mob/user = usr)
+ user.say(uppertext(command), spans = spans, sanitize = FALSE)
+ playsound(get_turf(user), speech_sound, 300, 1, 5)
+ var/cooldown = voice_of_god(command, user, spans, base_multiplier = power_mod)
+ charge_max = (cooldown * cooldown_mod)
+
+/obj/effect/proc_holder/spell/voice_of_god/clown
+ name = "Voice of Clown"
+ desc = "Speak with an incredibly funny voice, startling people into obeying you for a brief moment."
+ power_mod = 0.1
+ cooldown_mod = 0.5
+ spans = list("clown")
+ speech_sound = 'sound/spookoween/scary_horn2.ogg'
\ No newline at end of file
diff --git a/code/modules/station_goals/bsa.dm b/code/modules/station_goals/bsa.dm
index 56ac9bbf34b..1dfc9e8f4db 100644
--- a/code/modules/station_goals/bsa.dm
+++ b/code/modules/station_goals/bsa.dm
@@ -9,7 +9,7 @@
return {"Our military presence is inadequate in your sector.
We need you to construct BSA-[rand(1,99)] Artillery position aboard your station.
- Base parts should be availible for shipping by your cargo shuttle.
+ Base parts are available for shipping via cargo.
-Nanotrasen Naval Command"}
/datum/station_goal/bluespace_cannon/on_report()
diff --git a/code/modules/station_goals/dna_vault.dm b/code/modules/station_goals/dna_vault.dm
index df306f33c27..1e397fca846 100644
--- a/code/modules/station_goals/dna_vault.dm
+++ b/code/modules/station_goals/dna_vault.dm
@@ -30,15 +30,15 @@
.++
/datum/station_goal/dna_vault/get_report()
- return {"Our long term prediction systems say there's 99% chance of system-wide cataclysm in near future.
- We need you to construct DNA Vault aboard your station.
+ return {"Our long term prediction systems indicate a 99% chance of system-wide cataclysm in the near future.
+ We need you to construct a DNA Vault aboard your station.
- DNA Vault needs to contain samples of:
+ The DNA Vault needs to contain samples of:
[animal_count] unique animal data
[plant_count] unique non-standard plant data
[human_count] unique sapient humanoid DNA data
- Base vault parts should be availible for shipping by your cargo shuttle."}
+ Base vault parts are available for shipping via cargo."}
/datum/station_goal/dna_vault/on_report()
@@ -85,7 +85,7 @@ var/list/non_simple_animals = typecacheof(list(/mob/living/carbon/monkey,/mob/li
if(!H.myseed)
return
if(!H.harvest)// So it's bit harder.
- user << "Plants needs to be ready to harvest to perform full data scan." //Because space dna is actually magic
+ user << "Plant needs to be ready to harvest to perform full data scan." //Because space dna is actually magic
return
if(plants[H.myseed.type])
user << "Plant data already present in local storage."
@@ -98,7 +98,7 @@ var/list/non_simple_animals = typecacheof(list(/mob/living/carbon/monkey,/mob/li
if(isanimal(target))
var/mob/living/simple_animal/A = target
if(!A.healable)//simple approximation of being animal not a robot or similar
- user << "No compatibile DNA detected"
+ user << "No compatible DNA detected"
return
if(animals[target.type])
user << "Animal data already present in local storage."
@@ -266,13 +266,13 @@ var/list/non_simple_animals = typecacheof(list(/mob/living/carbon/monkey,/mob/li
H << "Your lungs feel great."
S.species_traits |= NOBREATH
if(VAULT_FIREPROOF)
- H << "Your feel fireproof."
+ H << "You feel fireproof."
S.burnmod = 0.5
S.heatmod = 0
if(VAULT_STUNTIME)
H << "Nothing can keep you down for long."
S.stunmod = 0.5
if(VAULT_ARMOUR)
- H << "Your feel tough."
+ H << "You feel tough."
S.armor = 30
power_lottery[H] = list()
\ No newline at end of file
diff --git a/code/modules/station_goals/shield.dm b/code/modules/station_goals/shield.dm
index 465e7669a93..70258a54b19 100644
--- a/code/modules/station_goals/shield.dm
+++ b/code/modules/station_goals/shield.dm
@@ -7,9 +7,9 @@
/datum/station_goal/station_shield/get_report()
return {"The station is located in a zone full of space debris.
- We have a prototype shielding system you will deploy to reduce collision related accidents.
+ We have a prototype shielding system you must deploy to reduce collision-related accidents.
- You can order the satellites and control systems through cargo shuttle.
+ You can order the satellites and control systems at cargo.
"}
diff --git a/code/modules/surgery/bodyparts/bodyparts.dm b/code/modules/surgery/bodyparts/bodyparts.dm
index a5545c91cd7..8134844f0ca 100644
--- a/code/modules/surgery/bodyparts/bodyparts.dm
+++ b/code/modules/surgery/bodyparts/bodyparts.dm
@@ -316,9 +316,9 @@
I = image("icon"='icons/mob/human_parts.dmi', "icon_state"="[species_id]_[body_zone]", "layer"=-BODYPARTS_LAYER, "dir"=image_dir)
else
if(should_draw_gender)
- I = image("icon"='icons/mob/augments.dmi', "icon_state"="[icon_state]_[icon_gender]", "layer"=-BODYPARTS_LAYER, "dir"=image_dir)
+ I = image("icon"='icons/mob/augments.dmi', "icon_state"="[initial(icon_state)]_[icon_gender]", "layer"=-BODYPARTS_LAYER, "dir"=image_dir)
else
- I = image("icon"='icons/mob/augments.dmi', "icon_state"="[icon_state]", "layer"=-BODYPARTS_LAYER, "dir"=image_dir)
+ I = image("icon"='icons/mob/augments.dmi', "icon_state"="[initial(icon_state)]", "layer"=-BODYPARTS_LAYER, "dir"=image_dir)
standing += I
return standing
diff --git a/code/modules/surgery/organs/augments_chest.dm b/code/modules/surgery/organs/augments_chest.dm
index 850335c717a..e352273a13e 100644
--- a/code/modules/surgery/organs/augments_chest.dm
+++ b/code/modules/surgery/organs/augments_chest.dm
@@ -100,8 +100,8 @@
if(ishuman(owner))
var/mob/living/carbon/human/H = owner
- if(H.stat != DEAD && prob(50 / severity))
- H.heart_attack = TRUE
+ if(H.stat != DEAD && prob(50 / severity) && H.can_heartattack())
+ H.set_heartattack(TRUE)
H << "You feel a horrible agony in your chest!"
addtimer(CALLBACK(src, .proc/undo_heart_attack), 600 / severity)
@@ -109,7 +109,7 @@
var/mob/living/carbon/human/H = owner
if(!istype(H))
return
- H.heart_attack = FALSE
+ H.set_heartattack(FALSE)
if(H.stat == CONSCIOUS)
H << "You feel your heart beating again!"
diff --git a/code/modules/surgery/organs/organ_internal.dm b/code/modules/surgery/organs/organ_internal.dm
index 086395d0b64..9b34f72812a 100644
--- a/code/modules/surgery/organs/organ_internal.dm
+++ b/code/modules/surgery/organs/organ_internal.dm
@@ -104,6 +104,7 @@
zone = "chest"
slot = "heart"
origin_tech = "biotech=5"
+ // Heart attack code is in code/modules/mob/living/carbon/human/life.dm
var/beating = 1
var/icon_base = "heart"
attack_verb = list("beat", "thumped")
@@ -116,15 +117,8 @@
/obj/item/organ/heart/Remove(mob/living/carbon/M, special = 0)
..()
- if(ishuman(M))
- var/mob/living/carbon/human/H = M
- if(H.stat == DEAD || H.heart_attack)
- Stop()
- return
- if(!special)
- H.heart_attack = 1
-
- addtimer(CALLBACK(src, .proc/stop_if_unowned), 120)
+ if(!special)
+ addtimer(CALLBACK(src, .proc/stop_if_unowned), 120)
/obj/item/organ/heart/proc/stop_if_unowned()
if(!owner)
@@ -134,18 +128,11 @@
..()
if(!beating)
visible_message("[user] squeezes [src] to \
- make it beat again!")
+ make it beat again!", "You squeeze \
+ [src] to make it beat again!")
Restart()
addtimer(CALLBACK(src, .proc/stop_if_unowned), 80)
-/obj/item/organ/heart/Insert(mob/living/carbon/M, special = 0)
- ..()
- if(ishuman(M) && beating)
- var/mob/living/carbon/human/H = M
- if(H.heart_attack)
- H.heart_attack = 0
- return
-
/obj/item/organ/heart/proc/Stop()
beating = 0
update_icon()
@@ -520,8 +507,9 @@
icon_state = "tonguenormal"
zone = "mouth"
slot = "tongue"
- var/say_mod = null
attack_verb = list("licked", "slobbered", "slapped", "frenched", "tongued")
+ var/say_mod = null
+ var/taste_sensitivity = 15 // lower is more sensitive.
/obj/item/organ/tongue/get_spans()
return list()
@@ -544,6 +532,7 @@
desc = "A thin and long muscle typically found in reptilian races, apparently moonlights as a nose."
icon_state = "tonguelizard"
say_mod = "hisses"
+ taste_sensitivity = 10 // combined nose + tongue, extra sensitive
/obj/item/organ/tongue/lizard/TongueSpeech(var/message)
var/regex/lizard_hiss = new("s+", "g")
@@ -558,6 +547,7 @@
desc = "A freakish looking meat tube that apparently can take in liquids."
icon_state = "tonguefly"
say_mod = "buzzes"
+ taste_sensitivity = 25 // you eat vomit, this is a mercy
/obj/item/organ/tongue/fly/TongueSpeech(var/message)
var/regex/fly_buzz = new("z+", "g")
@@ -572,6 +562,7 @@
desc = "A mysterious structure that allows for instant communication between users. Pretty impressive until you need to eat something."
icon_state = "tongueayylmao"
say_mod = "gibbers"
+ taste_sensitivity = 101 // ayys cannot taste anything.
/obj/item/organ/tongue/abductor/TongueSpeech(var/message)
//Hacks
@@ -597,6 +588,7 @@
desc = "Between the decay and the fact that it's just lying there you doubt a tongue has ever seemed less sexy."
icon_state = "tonguezombie"
say_mod = "moans"
+ taste_sensitivity = 32
/obj/item/organ/tongue/zombie/TongueSpeech(var/message)
var/list/message_list = splittext(message, " ")
@@ -619,6 +611,7 @@
desc = "According to leading xenobiologists the evolutionary benefit of having a second mouth in your mouth is \"that it looks badass\"."
icon_state = "tonguexeno"
say_mod = "hisses"
+ taste_sensitivity = 10 // LIZARDS ARE ALIENS CONFIRMED
/obj/item/organ/tongue/alien/TongueSpeech(var/message)
playsound(owner, "hiss", 25, 1, 1)
@@ -632,6 +625,7 @@
icon_state = "tonguebone"
say_mod = "rattles"
attack_verb = list("bitten", "chattered", "chomped", "enamelled", "boned")
+ taste_sensitivity = 101 // skeletons cannot taste anything
var/chattering = FALSE
var/phomeme_type = "sans"
@@ -668,6 +662,7 @@
icon_state = "tonguerobot"
say_mod = "states"
attack_verb = list("beeped", "booped")
+ taste_sensitivity = 25 // not as good as an organic tongue
/obj/item/organ/tongue/robot/get_spans()
return ..() | SPAN_ROBOT
@@ -866,4 +861,4 @@
flash_protect = 2
/obj/item/organ/eyes/robotic/shield/emp_act(severity)
- return
\ No newline at end of file
+ return
diff --git a/code/modules/surgery/organs/vocal_cords.dm b/code/modules/surgery/organs/vocal_cords.dm
index 7026f8ef8c5..9ea5d030dac 100644
--- a/code/modules/surgery/organs/vocal_cords.dm
+++ b/code/modules/surgery/organs/vocal_cords.dm
@@ -43,6 +43,11 @@ var/static/regex/clap_words = regex("clap|applaud")
var/static/regex/honk_words = regex("ho+nk") //hooooooonk
var/static/regex/multispin_words = regex("like a record baby|right round")
+#define COOLDOWN_STUN 1200
+#define COOLDOWN_DAMAGE 600
+#define COOLDOWN_MEME 300
+#define COOLDOWN_NONE 100
+
/obj/item/organ/vocal_cords //organs that are activated through speech with the :x channel
name = "vocal cords"
icon_state = "appendix"
@@ -56,8 +61,8 @@ var/static/regex/multispin_words = regex("like a record baby|right round")
/obj/item/organ/vocal_cords/proc/speak_with(message) //do what the organ does
return
-/obj/item/organ/vocal_cords/proc/handle_speech(message) //change the message
- return message
+/obj/item/organ/vocal_cords/proc/handle_speech(message) //actually say the message
+ owner.say(message, spans = spans, sanitize = FALSE)
//Colossus drop, forces the listeners to obey certain commands
/obj/item/organ/vocal_cords/colossus
@@ -68,10 +73,7 @@ var/static/regex/multispin_words = regex("like a record baby|right round")
slot = "vocal_cords"
actions_types = list(/datum/action/item_action/organ_action/colossus)
var/next_command = 0
- var/cooldown_stun = 1200
- var/cooldown_damage = 600
- var/cooldown_meme = 300
- var/cooldown_none = 150
+ var/cooldown_mod = 1
var/base_multiplier = 1
spans = list("colossus","yell")
@@ -102,6 +104,8 @@ var/static/regex/multispin_words = regex("like a record baby|right round")
owner << "You must wait [(cords.next_command - world.time)/10] seconds before Speaking again."
return
var/command = input(owner, "Speak with the Voice of God", "Command")
+ if(QDELETED(src) || QDELETED(owner))
+ return
if(!command)
return
owner.say(".x[command]")
@@ -115,26 +119,40 @@ var/static/regex/multispin_words = regex("like a record baby|right round")
if(!owner.can_speak())
owner << "You are unable to speak!"
return FALSE
- if(owner.stat)
- return FALSE
return TRUE
/obj/item/organ/vocal_cords/colossus/handle_speech(message)
- spans = list("colossus","yell") //reset spans, just in case someone gets deculted or the cords change owner
- if(iscultist(owner))
- spans = list("narsiesmall")
- else if (is_servant_of_ratvar(owner))
- spans = list("ratvar")
- return uppertext(message)
+ owner.say(uppertext(message), spans = spans, sanitize = FALSE)
+ playsound(get_turf(owner), 'sound/magic/clockwork/invoke_general.ogg', 300, 1, 5)
+ return //voice of god speaks for us
/obj/item/organ/vocal_cords/colossus/speak_with(message)
+ var/cooldown = voice_of_god(message, owner, spans, base_multiplier)
+ next_command = world.time + (cooldown * cooldown_mod)
+
+//////////////////////////////////////
+///////////VOICE OF GOD///////////////
+//////////////////////////////////////
+
+/proc/voice_of_god(message, mob/living/user, list/span_list, base_multiplier = 1)
+ var/cooldown = 0
+
+ if(!user || !user.can_speak() || user.stat)
+ return 0 //no cooldown
+
var/log_message = uppertext(message)
- message = lowertext(message)
- playsound(get_turf(owner), 'sound/magic/clockwork/invoke_general.ogg', 300, 1, 5)
+ if(!span_list || !span_list.len)
+ if(iscultist(user))
+ span_list = list("narsiesmall")
+ else if (is_servant_of_ratvar(user))
+ span_list = list("ratvar")
+ else
+ span_list = list()
+ message = lowertext(message)
var/mob/living/list/listeners = list()
- for(var/mob/living/L in get_hearers_in_view(8, owner))
- if(!L.ear_deaf && !L.null_rod_check() && L != owner && L.stat != DEAD)
+ for(var/mob/living/L in get_hearers_in_view(8, user))
+ if(!L.ear_deaf && !L.null_rod_check() && L != user && L.stat != DEAD)
if(ishuman(L))
var/mob/living/carbon/human/H = L
if(istype(H.ears, /obj/item/clothing/ears/earmuffs))
@@ -142,26 +160,26 @@ var/static/regex/multispin_words = regex("like a record baby|right round")
listeners += L
if(!listeners.len)
- next_command = world.time + cooldown_none
- return
+ cooldown = COOLDOWN_NONE
+ return cooldown
var/power_multiplier = base_multiplier
- if(owner.mind)
+ if(user.mind)
//Chaplains are very good at speaking with the voice of god
- if(owner.mind.assigned_role == "Chaplain")
+ if(user.mind.assigned_role == "Chaplain")
power_multiplier *= 2
//Command staff has authority
- if(owner.mind.assigned_role in command_positions)
+ if(user.mind.assigned_role in command_positions)
power_multiplier *= 1.4
//Why are you speaking
- if(owner.mind.assigned_role == "Mime")
+ if(user.mind.assigned_role == "Mime")
power_multiplier *= 0.5
//Cultists are closer to their gods and are more powerful, but they'll give themselves away
- if(iscultist(owner))
+ if(iscultist(user))
power_multiplier *= 2
- else if (is_servant_of_ratvar(owner))
+ else if (is_servant_of_ratvar(user))
power_multiplier *= 2
//Try to check if the speaker specified a name or a job to focus on
@@ -202,76 +220,75 @@ var/static/regex/multispin_words = regex("like a record baby|right round")
//STUN
if(findtext(message, stun_words))
- next_command = world.time + cooldown_stun
+ cooldown = COOLDOWN_STUN
for(var/V in listeners)
var/mob/living/L = V
L.Stun(3 * power_multiplier)
//WEAKEN
else if(findtext(message, weaken_words))
- next_command = world.time + cooldown_stun
+ cooldown = COOLDOWN_STUN
for(var/V in listeners)
var/mob/living/L = V
L.Weaken(3 * power_multiplier)
//SLEEP
else if((findtext(message, sleep_words)))
- next_command = world.time + cooldown_stun
- for(var/V in listeners)
- var/mob/living/L = V
- L.Sleeping(2 * power_multiplier)
+ cooldown = COOLDOWN_STUN
+ for(var/mob/living/carbon/C in listeners)
+ C.Sleeping(2 * power_multiplier)
//VOMIT
else if((findtext(message, vomit_words)))
- next_command = world.time + cooldown_stun
+ cooldown = COOLDOWN_STUN
for(var/mob/living/carbon/C in listeners)
C.vomit(10 * power_multiplier)
//SILENCE
else if((findtext(message, silence_words)))
- next_command = world.time + cooldown_stun
+ cooldown = COOLDOWN_STUN
for(var/mob/living/carbon/C in listeners)
- if(owner.mind && (owner.mind.assigned_role == "Librarian" || owner.mind.assigned_role == "Mime"))
+ if(user.mind && (user.mind.assigned_role == "Librarian" || user.mind.assigned_role == "Mime"))
power_multiplier *= 3
C.silent += (10 * power_multiplier)
//HALLUCINATE
else if((findtext(message, hallucinate_words)))
- next_command = world.time + cooldown_meme
+ cooldown = COOLDOWN_MEME
for(var/V in listeners)
var/mob/living/L = V
new /obj/effect/hallucination/delusion(get_turf(L),L,duration=150 * power_multiplier,skip_nearby=0)
//WAKE UP
else if((findtext(message, wakeup_words)))
- next_command = world.time + cooldown_damage
+ cooldown = COOLDOWN_DAMAGE
for(var/V in listeners)
var/mob/living/L = V
L.SetSleeping(0)
//HEAL
else if((findtext(message, heal_words)))
- next_command = world.time + cooldown_damage
+ cooldown = COOLDOWN_DAMAGE
for(var/V in listeners)
var/mob/living/L = V
L.heal_overall_damage(10 * power_multiplier, 10 * power_multiplier, 0, 0)
//BRUTE DAMAGE
else if((findtext(message, hurt_words)))
- next_command = world.time + cooldown_damage
+ cooldown = COOLDOWN_DAMAGE
for(var/V in listeners)
var/mob/living/L = V
L.apply_damage(15 * power_multiplier, def_zone = "chest")
//BLEED
else if((findtext(message, bleed_words)))
- next_command = world.time + cooldown_damage
+ cooldown = COOLDOWN_DAMAGE
for(var/mob/living/carbon/human/H in listeners)
H.bleed_rate += (5 * power_multiplier)
//FIRE
else if((findtext(message, burn_words)))
- next_command = world.time + cooldown_damage
+ cooldown = COOLDOWN_DAMAGE
for(var/V in listeners)
var/mob/living/L = V
L.adjust_fire_stacks(1 * power_multiplier)
@@ -279,36 +296,36 @@ var/static/regex/multispin_words = regex("like a record baby|right round")
//HOT
else if((findtext(message, hot_words)))
- next_command = world.time + cooldown_damage
+ cooldown = COOLDOWN_DAMAGE
for(var/V in listeners)
var/mob/living/L = V
L.bodytemperature += (50 * power_multiplier)
//COLD
else if((findtext(message, cold_words)))
- next_command = world.time + cooldown_damage
+ cooldown = COOLDOWN_DAMAGE
for(var/V in listeners)
var/mob/living/L = V
L.bodytemperature -= (50 * power_multiplier)
//REPULSE
else if((findtext(message, repulse_words)))
- next_command = world.time + cooldown_damage
+ cooldown = COOLDOWN_DAMAGE
for(var/V in listeners)
var/mob/living/L = V
- var/throwtarget = get_edge_target_turf(owner, get_dir(owner, get_step_away(L, owner)))
+ var/throwtarget = get_edge_target_turf(user, get_dir(user, get_step_away(L, user)))
L.throw_at(throwtarget, 3 * power_multiplier, 1 * power_multiplier)
//ATTRACT
else if((findtext(message, attract_words)))
- next_command = world.time + cooldown_damage
+ cooldown = COOLDOWN_DAMAGE
for(var/V in listeners)
var/mob/living/L = V
- L.throw_at(get_step_towards(owner,L), 3 * power_multiplier, 1 * power_multiplier)
+ L.throw_at(get_step_towards(user,L), 3 * power_multiplier, 1 * power_multiplier)
//WHO ARE YOU?
else if((findtext(message, whoareyou_words)))
- next_command = world.time + cooldown_meme
+ cooldown = COOLDOWN_MEME
for(var/V in listeners)
var/mob/living/L = V
if(L.mind && L.mind.devilinfo)
@@ -319,15 +336,15 @@ var/static/regex/multispin_words = regex("like a record baby|right round")
//SAY MY NAME
else if((findtext(message, saymyname_words)))
- next_command = world.time + cooldown_meme
+ cooldown = COOLDOWN_MEME
for(var/V in listeners)
var/mob/living/L = V
- L.say("[owner.name]!") //"Unknown!"
+ L.say("[user.name]!") //"Unknown!"
sleep(5) //So the chat flows more naturally
//KNOCK KNOCK
else if((findtext(message, knockknock_words)))
- next_command = world.time + cooldown_meme
+ cooldown = COOLDOWN_MEME
for(var/V in listeners)
var/mob/living/L = V
L.say("Who's there?")
@@ -335,13 +352,13 @@ var/static/regex/multispin_words = regex("like a record baby|right round")
//STATE LAWS
else if((findtext(message, statelaws_words)))
- next_command = world.time + cooldown_stun
+ cooldown = COOLDOWN_STUN
for(var/mob/living/silicon/S in listeners)
S.statelaws(force = 1)
//MOVE
else if((findtext(message, move_words)))
- next_command = world.time + cooldown_meme
+ cooldown = COOLDOWN_MEME
var/direction
if(findtext(message, up_words))
direction = NORTH
@@ -359,7 +376,7 @@ var/static/regex/multispin_words = regex("like a record baby|right round")
//WALK
else if((findtext(message, walk_words)))
- next_command = world.time + cooldown_meme
+ cooldown = COOLDOWN_MEME
for(var/V in listeners)
var/mob/living/L = V
if(L.m_intent != MOVE_INTENT_WALK)
@@ -367,7 +384,7 @@ var/static/regex/multispin_words = regex("like a record baby|right round")
//RUN
else if((findtext(message, run_words)))
- next_command = world.time + cooldown_meme
+ cooldown = COOLDOWN_MEME
for(var/V in listeners)
var/mob/living/L = V
if(L.m_intent != MOVE_INTENT_RUN)
@@ -375,7 +392,7 @@ var/static/regex/multispin_words = regex("like a record baby|right round")
//HELP INTENT
else if((findtext(message, helpintent_words)))
- next_command = world.time + cooldown_meme
+ cooldown = COOLDOWN_MEME
for(var/mob/living/carbon/human/H in listeners)
H.a_intent_change(INTENT_HELP)
H.click_random_mob()
@@ -383,7 +400,7 @@ var/static/regex/multispin_words = regex("like a record baby|right round")
//DISARM INTENT
else if((findtext(message, disarmintent_words)))
- next_command = world.time + cooldown_meme
+ cooldown = COOLDOWN_MEME
for(var/mob/living/carbon/human/H in listeners)
H.a_intent_change(INTENT_DISARM)
H.click_random_mob()
@@ -391,7 +408,7 @@ var/static/regex/multispin_words = regex("like a record baby|right round")
//GRAB INTENT
else if((findtext(message, grabintent_words)))
- next_command = world.time + cooldown_meme
+ cooldown = COOLDOWN_MEME
for(var/mob/living/carbon/human/H in listeners)
H.a_intent_change(INTENT_GRAB)
H.click_random_mob()
@@ -399,7 +416,7 @@ var/static/regex/multispin_words = regex("like a record baby|right round")
//HARM INTENT
else if((findtext(message, harmintent_words)))
- next_command = world.time + cooldown_meme
+ cooldown = COOLDOWN_MEME
for(var/mob/living/carbon/human/H in listeners)
H.a_intent_change(INTENT_HARM)
H.click_random_mob()
@@ -407,20 +424,20 @@ var/static/regex/multispin_words = regex("like a record baby|right round")
//THROW/CATCH
else if((findtext(message, throwmode_words)))
- next_command = world.time + cooldown_meme
+ cooldown = COOLDOWN_MEME
for(var/mob/living/carbon/C in listeners)
C.throw_mode_on()
//FLIP
else if((findtext(message, flip_words)))
- next_command = world.time + cooldown_meme
+ cooldown = COOLDOWN_MEME
for(var/V in listeners)
var/mob/living/L = V
L.emote("flip")
//SPEAK
else if((findtext(message, speak_words)))
- next_command = world.time + cooldown_meme
+ cooldown = COOLDOWN_MEME
for(var/V in listeners)
var/mob/living/L = V
L.say(pick_list_replacements(BRAIN_DAMAGE_FILE, "brain_damage"))
@@ -428,7 +445,7 @@ var/static/regex/multispin_words = regex("like a record baby|right round")
//REST
else if((findtext(message, rest_words)))
- next_command = world.time + cooldown_meme
+ cooldown = COOLDOWN_MEME
for(var/V in listeners)
var/mob/living/L = V
if(!L.resting)
@@ -436,7 +453,7 @@ var/static/regex/multispin_words = regex("like a record baby|right round")
//GET UP
else if((findtext(message, getup_words)))
- next_command = world.time + cooldown_damage
+ cooldown = COOLDOWN_DAMAGE
for(var/V in listeners)
var/mob/living/L = V
if(L.resting)
@@ -447,7 +464,7 @@ var/static/regex/multispin_words = regex("like a record baby|right round")
//SIT
else if((findtext(message, sit_words)))
- next_command = world.time + cooldown_meme
+ cooldown = COOLDOWN_MEME
for(var/V in listeners)
var/mob/living/L = V
for(var/obj/structure/chair/chair in get_turf(L))
@@ -456,7 +473,7 @@ var/static/regex/multispin_words = regex("like a record baby|right round")
//STAND UP
else if((findtext(message, stand_words)))
- next_command = world.time + cooldown_meme
+ cooldown = COOLDOWN_MEME
for(var/V in listeners)
var/mob/living/L = V
if(L.buckled && istype(L.buckled, /obj/structure/chair))
@@ -464,7 +481,7 @@ var/static/regex/multispin_words = regex("like a record baby|right round")
//DANCE
else if((findtext(message, dance_words)))
- next_command = world.time + cooldown_meme
+ cooldown = COOLDOWN_MEME
for(var/V in listeners)
var/mob/living/L = V
L.emote("dance")
@@ -472,7 +489,7 @@ var/static/regex/multispin_words = regex("like a record baby|right round")
//JUMP
else if((findtext(message, jump_words)))
- next_command = world.time + cooldown_meme
+ cooldown = COOLDOWN_MEME
for(var/V in listeners)
var/mob/living/L = V
if(prob(25))
@@ -482,7 +499,7 @@ var/static/regex/multispin_words = regex("like a record baby|right round")
//SALUTE
else if((findtext(message, salute_words)))
- next_command = world.time + cooldown_meme
+ cooldown = COOLDOWN_MEME
for(var/V in listeners)
var/mob/living/L = V
L.emote("salute")
@@ -490,7 +507,7 @@ var/static/regex/multispin_words = regex("like a record baby|right round")
//PLAY DEAD
else if((findtext(message, deathgasp_words)))
- next_command = world.time + cooldown_meme
+ cooldown = COOLDOWN_MEME
for(var/V in listeners)
var/mob/living/L = V
L.emote("deathgasp")
@@ -498,7 +515,7 @@ var/static/regex/multispin_words = regex("like a record baby|right round")
//PLEASE CLAP
else if((findtext(message, clap_words)))
- next_command = world.time + cooldown_meme
+ cooldown = COOLDOWN_MEME
for(var/V in listeners)
var/mob/living/L = V
L.emote("clap")
@@ -506,23 +523,30 @@ var/static/regex/multispin_words = regex("like a record baby|right round")
//HONK
else if((findtext(message, honk_words)))
- next_command = world.time + cooldown_meme
- addtimer(CALLBACK(GLOBAL_PROC, .proc/playsound, get_turf(owner), 'sound/items/bikehorn.ogg', 300, 1), 25)
- if(owner.mind && owner.mind.assigned_role == "Clown")
+ cooldown = COOLDOWN_MEME
+ addtimer(CALLBACK(GLOBAL_PROC, .proc/playsound, get_turf(user), 'sound/items/bikehorn.ogg', 300, 1), 25)
+ if(user.mind && user.mind.assigned_role == "Clown")
for(var/mob/living/carbon/C in listeners)
C.slip(0,7 * power_multiplier)
- next_command = world.time + cooldown_stun
+ cooldown = COOLDOWN_MEME
//RIGHT ROUND
else if((findtext(message, multispin_words)))
- next_command = world.time + cooldown_meme
+ cooldown = COOLDOWN_MEME
for(var/V in listeners)
var/mob/living/L = V
L.SpinAnimation(speed = 10, loops = 5)
else
- next_command = world.time + cooldown_none
+ cooldown = COOLDOWN_NONE
+
+ message_admins("[key_name_admin(user)] has said '[log_message]' with a Voice of God, affecting [english_list(listeners)], with a power multiplier of [power_multiplier].")
+ log_game("[key_name(user)] has said '[log_message]' with a Voice of God, affecting [english_list(listeners)], with a power multiplier of [power_multiplier].")
+
+ return cooldown
- message_admins("[key_name_admin(owner)] has said '[log_message]' with a Voice of God, affecting [english_list(listeners)], with a power multiplier of [power_multiplier].")
- log_game("[key_name(owner)] has said '[log_message]' with a Voice of God, affecting [english_list(listeners)], with a power multiplier of [power_multiplier].")
+#undef COOLDOWN_STUN
+#undef COOLDOWN_DAMAGE
+#undef COOLDOWN_MEME
+#undef COOLDOWN_NONE
diff --git a/code/modules/telesci/bscrystal.dm b/code/modules/telesci/bscrystal.dm
index 54b762f2054..4ae2435a028 100644
--- a/code/modules/telesci/bscrystal.dm
+++ b/code/modules/telesci/bscrystal.dm
@@ -6,6 +6,7 @@
icon = 'icons/obj/telescience.dmi'
icon_state = "bluespace_crystal"
w_class = WEIGHT_CLASS_TINY
+ materials = list(MAT_BLUESPACE=MINERAL_MATERIAL_AMOUNT)
origin_tech = "bluespace=6;materials=3"
points = 50
var/blink_range = 8 // The teleport range when crushed/thrown at someone.
@@ -47,6 +48,7 @@
name = "artificial bluespace crystal"
desc = "An artificially made bluespace crystal, it looks delicate."
origin_tech = "bluespace=3;plasmatech=4"
+ materials = list(MAT_BLUESPACE=MINERAL_MATERIAL_AMOUNT / 2)
blink_range = 4 // Not as good as the organic stuff!
points = 0 // nice try
refined_type = null
@@ -59,6 +61,7 @@
icon_state = "polycrystal"
desc = "A stable polycrystal, made of fused-together bluespace crystals. You could probably break one off."
origin_tech = "bluespace=6;materials=3"
+ materials = list(MAT_BLUESPACE=MINERAL_MATERIAL_AMOUNT)
attack_verb = list("bluespace polybashed", "bluespace polybattered", "bluespace polybludgeoned", "bluespace polythrashed", "bluespace polysmashed")
var/crystal_type = /obj/item/weapon/ore/bluespace_crystal/refined
diff --git a/code/modules/telesci/gps.dm b/code/modules/telesci/gps.dm
index c791c66acaa..8c62fe4bd74 100644
--- a/code/modules/telesci/gps.dm
+++ b/code/modules/telesci/gps.dm
@@ -24,13 +24,13 @@ var/list/GPS_list = list()
/obj/item/device/gps/emp_act(severity)
emped = TRUE
- overlays -= "working"
+ cut_overlay("working")
add_overlay("emp")
addtimer(CALLBACK(src, .proc/reboot), 300)
/obj/item/device/gps/proc/reboot()
emped = FALSE
- overlays -= "emp"
+ cut_overlay("emp")
add_overlay("working")
/obj/item/device/gps/AltClick(mob/user)
@@ -39,7 +39,7 @@ var/list/GPS_list = list()
if(emped)
user << "It's busted!"
if(tracking)
- overlays -= "working"
+ cut_overlay("working")
user << "[src] is no longer tracking, or visible to other GPS devices."
tracking = FALSE
else
diff --git a/code/modules/tooltip/tooltip.html b/code/modules/tooltip/tooltip.html
index 470af785036..859ee3134d3 100644
--- a/code/modules/tooltip/tooltip.html
+++ b/code/modules/tooltip/tooltip.html
@@ -62,7 +62,10 @@
.colo-pod .wrap {border-color: #256fb9;}
.colo-pod .content {border-color: #000000; background-color: #000000;}
-
+
+ .hisgrace .wrap {border-color: #7C1414;}
+ .hisgrace .content {color: #15D512; border-color: #9D1414; background-color: #861414;}
+
/* TG: Themes */
/* ScreenUI */
.midnight .wrap {border-color: #2B2B33;}
diff --git a/code/modules/uplink/uplink_item.dm b/code/modules/uplink/uplink_item.dm
index 786b2b0a9eb..3835b6c9b1c 100644
--- a/code/modules/uplink/uplink_item.dm
+++ b/code/modules/uplink/uplink_item.dm
@@ -544,11 +544,19 @@ var/list/uplink_items = list() // Global list so we only initialize this once.
cost = 25
refundable = TRUE
-/datum/uplink_item/support/reinforcement/syndieborg
- name = "Syndicate Cyborg"
+/datum/uplink_item/support/reinforcement/assault_borg
+ name = "Syndicate Assault Cyborg"
desc = "A cyborg designed and programmed for systematic extermination of non-Syndicate personnel."
- item = /obj/item/weapon/antag_spawner/nuke_ops/borg_tele
- cost = 80
+ item = /obj/item/weapon/antag_spawner/nuke_ops/borg_tele/assault
+ refundable = TRUE
+ cost = 65
+
+/datum/uplink_item/support/reinforcement/medical_borg
+ name = "Syndicate Medical Cyborg"
+ desc = "A combat medic cyborg, with potent healing reagents and a medical beam gun, but limited offensive potential."
+ item = /obj/item/weapon/antag_spawner/nuke_ops/borg_tele/medical
+ refundable = TRUE
+ cost = 35
/datum/uplink_item/support/gygax
name = "Gygax Exosuit"
@@ -1183,6 +1191,13 @@ var/list/uplink_items = list() // Global list so we only initialize this once.
item = /obj/item/weapon/storage/box/hug/reverse_revolver
restricted_roles = list("Clown")
+/datum/uplink_item/role_restricted/mimery
+ name = "Guide to Advanced Mimery Series"
+ desc = "The classical two part series on how to further hone your mime skills. Upon studying the series, the user should be able to make 3x1 invisble walls, and shoot bullets out of their fingers. Obviously only works for Mimes."
+ cost = 15
+ item = /obj/item/weapon/storage/box/syndie_kit/mimery
+ restricted_roles = list("Mime")
+
/datum/uplink_item/role_restricted/ez_clean_bundle
name = "EZ Clean Grenade Bundle"
desc = "A box with three cleaner grenades using the trademark Waffle Co. formula. Serves as a cleaner and causes acid damage to anyone standing nearby. The acid only affects carbon-based creatures."
@@ -1193,14 +1208,21 @@ var/list/uplink_items = list() // Global list so we only initialize this once.
/datum/uplink_item/role_restricted/his_grace
name = "His Grace"
- desc = "An incredibly dangerous weapon recovered from a station overcome by the grey tide. Once activated, it will thirst for blood and must be used to kill in order to sate that thirst. \
- His Grace grants benefits to its wielder, with a more intense hunger equaling more benefits, but be wary: if it gets too hungry, it will kill you and destroy your body. \
- If you leave His Grace alone for some time, it will eventually return to its inactive state. \
- To activate His Grace, place five assorted organs inside of it and use it in your hand."
- item = /obj/item/weapon/storage/toolbox/artistic/his_grace
+ desc = "An incredibly dangerous weapon recovered from a station overcome by the grey tide. Once activated, He will thirst for blood and must be used to kill to sate that thirst. \
+ His Grace grants gradual regeneration and complete stun immunity to His wielder, but be wary: if He gets too hungry, He will become impossible to drop and eventually kill you if not fed. \
+ However, if left alone for long enough, He will fall back to slumber. \
+ To activate His Grace, simply unlatch Him."
+ item = /obj/item/weapon/his_grace
cost = 20
restricted_roles = list("Chaplain")
surplus = 5 //Very low chance to get it in a surplus crate even without being the chaplain
+/datum/uplink_item/role_restricted/ancient_jumpsuit
+ name = "Ancient Jumpsuit"
+ desc = "A tattered old jumpsuit that will provide absolutely no benefit to you. It fills the wearer with a strange compulsion to blurt out 'glorf'."
+ item = /obj/item/clothing/under/color/grey/glorf
+ cost = 20
+ surplus = 0
+ restricted_roles = list("Assistant")
// Pointless
/datum/uplink_item/badass
diff --git a/code/modules/vehicles/atv.dm b/code/modules/vehicles/atv.dm
index e1bb65c1758..6afd401b75a 100644
--- a/code/modules/vehicles/atv.dm
+++ b/code/modules/vehicles/atv.dm
@@ -20,7 +20,7 @@
if(has_buckled_mobs())
add_overlay(atvcover)
else
- overlays -= atvcover
+ cut_overlay(atvcover)
diff --git a/code/modules/vehicles/vehicle.dm b/code/modules/vehicles/vehicle.dm
index 74c8e1647e4..343a103fc3a 100644
--- a/code/modules/vehicles/vehicle.dm
+++ b/code/modules/vehicles/vehicle.dm
@@ -15,6 +15,10 @@
var/view_range = 7
var/datum/riding/riding_datum = null
+/obj/vehicle/Destroy()
+ QDEL_NULL(riding_datum)
+ return ..()
+
/obj/vehicle/update_icon()
return
@@ -53,7 +57,7 @@
riding_datum.handle_ride(user, direction)
-/obj/vehicle/Move(NewLoc,Dir=0,step_x=0,step_y=0)
+/obj/vehicle/Moved()
. = ..()
if(riding_datum)
riding_datum.handle_vehicle_layer()
diff --git a/code/modules/vore/appearance/preferences_vr.dm b/code/modules/vore/appearance/preferences_vr.dm
deleted file mode 100644
index 9b52b038264..00000000000
--- a/code/modules/vore/appearance/preferences_vr.dm
+++ /dev/null
@@ -1,20 +0,0 @@
-/**
- * Additional variables that must be defined on /mob/living/carbon/human
- * for use in code that is part of the vore modules.
- *
- * These variables are declared here (separately from the normal human_defines.dm)
- * in order to isolate VOREStation changes and ease merging of other codebases.
- */
-
-// Additional vars
-/mob/living/carbon/human
-
- // Horray Furries!
- var/datum/sprite_accessory/ears/ear_style = null
- var/datum/sprite_accessory/tail/tail_style = null
- var/r_tail = 30
- var/g_tail = 30
- var/b_tail = 30
-
- // Custom Species Name
- var/custom_species
diff --git a/code/modules/vore/appearance/spider_taur_powers_vr.dm b/code/modules/vore/appearance/spider_taur_powers_vr.dm
deleted file mode 100644
index 020b482a8c8..00000000000
--- a/code/modules/vore/appearance/spider_taur_powers_vr.dm
+++ /dev/null
@@ -1,44 +0,0 @@
-// ---------------------------------------------
-// -!-!-!-!-!-!-!-!- READ ME -!-!-!-!-!-!-!-!-!-
-// ---------------------------------------------
-
-//Beep beep hello
-//
-//Use this file to define the exclusive abilities of the spidertaur folk
-//
-//ahuhuhuhu
-//-Antsnap
-
-obj/item/clothing/suit/web_bindings
- icon = 'icons/obj/clothing/suits.dmi'
- name = "web bindings"
- desc = "A webbed cocoon that completely restrains the wearer."
- icon_state = "web_bindings"
- item_state = "web_bindings"
- body_parts_covered = UPPER_TORSO|LOWER_TORSO|LEGS|FEET|ARMS|HANDS
- flags_inv = HIDEGLOVES|HIDESHOES|HIDEJUMPSUIT|HIDETAIL
-
-/* //Commenting all this out, as people keep abusing it. Sorry!
-mob/proc/weaveWeb()
- set name = "Weave Web"
- set category = "Species Powers"
- if(nutrition >= 500) //People decided to abuse it. Sorry. It was asked to be made so it couldn't be spammed, and what do ya know, people are spamming it everywhere.
- src.visible_message("\the [src] weaves a web from their spinneret silk.")
- nutrition -= 500
- spawn(30) //3 seconds to form
- new /obj/effect/spider/stickyweb(src.loc)
- else
- src << "You do not have enough nutrition to create webbing!"
-*/
-
-mob/proc/weaveWebBindings()
- set name = "Weave Web Bindings"
- set category = "Species Powers"
- if(nutrition >= 30) //This isn't a huge problem. This is so you can bind people up.
- src.visible_message("\the [src] pulls silk from their spinneret and delicately weaves it into bindings.")
- nutrition -= 30
- spawn(30) //5 seconds to weave the bindings~
- var/obj/item/clothing/suit/web_bindings/bindings = new() //This sprite is amazing, I must say.
- src.put_in_hands(bindings)
- else
- src << "You do not have enough nutrition to create webbing!" //CK~
diff --git a/code/modules/vore/appearance/sprite_accessories_vr.dm b/code/modules/vore/appearance/sprite_accessories_vr.dm
deleted file mode 100644
index 30e54c64437..00000000000
--- a/code/modules/vore/appearance/sprite_accessories_vr.dm
+++ /dev/null
@@ -1,645 +0,0 @@
-/*
- Hello and welcome to VOREStation sprite_accessories: For a more general overview
- please read sprite_accessories.dm. This file is for ears, tails, and taur bodies!
-
- This is intended to be friendly for people with little to no actual coding experience.
-
- !!WARNING!!: changing existing accessory information can be VERY hazardous to savefiles,
- to the point where you may completely corrupt a server's savefiles. Please refrain
- from doing this unless you absolutely know what you are doing, and have defined a
- conversion in savefile.dm
-*/
-
-// Add Additional variable onto sprite_accessory
-/datum/sprite_accessory
- // Ckey of person allowed to use this, if defined.
- var/list/ckeys_allowed = null
-
-/*
-////////////////////////////
-/ =--------------------= /
-/ == Ear Definitions == /
-/ =--------------------= /
-////////////////////////////
-*/
-/datum/sprite_accessory/ears
- name = "You should not see this..."
- icon = 'icons/mob/vore/ears_vr.dmi'
- do_colouration = 0 // Set to 1 to blend (ICON_ADD) hair color
-
- var/color_blend_mode = ICON_ADD // Only appliciable if do_coloration = 1
- var/extra_overlay // Icon state of an additional overlay to blend in.
- var/desc = "You should not see this..."
-
-// Ears avaliable to anyone
-
-/datum/sprite_accessory/ears/squirrel_orange
- name = "squirel, orange"
- desc = ""
- icon_state = "squirrel-orange"
-
-/datum/sprite_accessory/ears/squirrel_red
- name = "squirrel, red"
- desc = ""
- icon_state = "squirrel-red"
-
-/datum/sprite_accessory/ears/bunny_white
- name = "bunny, white"
- desc = ""
- icon_state = "bunny"
-
-/datum/sprite_accessory/ears/bear_brown
- name = "bear, brown"
- desc = ""
- icon_state = "bear-brown"
-
-/datum/sprite_accessory/ears/wolf_grey
- name = "wolf, grey"
- desc = ""
- icon_state = "wolf-grey"
-
-/datum/sprite_accessory/ears/wolf_green
- name = "wolf, green"
- desc = ""
- icon_state = "wolf-green"
-
-/datum/sprite_accessory/ears/wisewolf
- name = "wolf, wise"
- desc = ""
- icon_state = "wolf-wise"
-
-/datum/sprite_accessory/ears/mouse_grey
- name = "mouse, grey"
- desc = ""
- icon_state = "mouse-grey"
-
-/datum/sprite_accessory/ears/bee
- name = "bee antennae"
- desc = ""
- icon_state = "bee"
-
-/datum/sprite_accessory/ears/oni_h1
- name = "oni horns"
- desc = ""
- icon_state = "oni-h1"
-
-/datum/sprite_accessory/ears/demon_horns1
- name = "demon horns"
- desc = ""
- icon_state = "demon-horns1"
-
-/datum/sprite_accessory/ears/foxears
- name = "highlander zorren ears"
- desc = ""
- icon_state = "foxears"
-
-/datum/sprite_accessory/ears/fenears
- name = "flatland zorren ears"
- desc = ""
- icon_state = "fenears"
-
-/datum/sprite_accessory/ears/sergal
- name = "Sergal ears"
- icon_state = "serg_plain_s"
-
-/datum/sprite_accessory/ears/foxearshc
- name = "highlander zorren ears, colorable"
- desc = ""
- icon_state = "foxearshc"
- do_colouration = 1
-
-/datum/sprite_accessory/ears/fenearshc
- name = "flatland zorren ears, colorable"
- desc = ""
- icon_state = "fenearshc"
- do_colouration = 1
-
-/datum/sprite_accessory/ears/sergalhc
- name = "Sergal ears, colorable"
- icon_state = "serg_plain_s"
- do_colouration = 1
-
-/datum/sprite_accessory/ears/mousehc
- name = "mouse, colorable"
- desc = ""
- icon_state = "mouse"
- do_colouration = 1
- extra_overlay = "mouseinner"
-
-/datum/sprite_accessory/ears/wolfhc
- name = "wolf, colorable"
- desc = ""
- icon_state = "wolf"
- do_colouration = 1
- extra_overlay = "wolfinner"
-
-/datum/sprite_accessory/ears/bearhc
- name = "bear, colorable"
- desc = ""
- icon_state = "bear"
- do_colouration = 1
-
-/datum/sprite_accessory/ears/squirrelhc
- name = "squirrel, colorable"
- desc = ""
- icon_state = "squirrel"
- do_colouration = 1
-
-/datum/sprite_accessory/ears/kittyhc
- name = "kitty, colorable"
- desc = ""
- icon_state = "kitty"
- do_colouration = 1
- extra_overlay = "kittyinner"
-
-/datum/sprite_accessory/ears/bunnyhc
- name = "bunny, colorable"
- desc = ""
- icon_state = "bunny"
- do_colouration = 1
-
-// Special snowflake ears go below here.
-
-/datum/sprite_accessory/ears/molenar_kitsune
- name = "quintail kitsune ears (Molenar)"
- desc = ""
- icon_state = "molenar-kitsune"
- ckeys_allowed = list("molenar")
-
-/datum/sprite_accessory/ears/molenar_deathclaw
- name = "deathclaw ears (Molenar)"
- desc = ""
- icon_state = "molenar-deathclaw"
- ckeys_allowed = list("molenar")
-
-/datum/sprite_accessory/ears/runac
- name = "fennecsune ears (Runac)"
- desc = ""
- icon_state = "runac"
- ckeys_allowed = list("rebcom1807")
-
-/datum/sprite_accessory/ears/kerena
- name = "wingwolf ears (Kerena)"
- desc = ""
- icon_state = "kerena"
- ckeys_allowed = list("somekindofpony")
-
-/datum/sprite_accessory/ears/rosey
- name = "tritail kitsune ears (Rosey)"
- desc = ""
- icon_state = "rosey"
- ckeys_allowed = list("joey4298")
-
-/datum/sprite_accessory/ears/aronai
- name = "aronai ears/head (Aronai)"
- desc = ""
- icon_state = "aronai"
- ckeys_allowed = list("arokha")
-
-/*
-////////////////////////////
-/ =--------------------= /
-/ == Tail Definitions == /
-/ =--------------------= /
-////////////////////////////
-*/
-/datum/sprite_accessory/tail
- name = "You should not see this..."
- icon = 'icons/mob/vore/tails_vr.dmi'
- do_colouration = 0 //Set to 1 to enable coloration using the tail color.
-
- var/color_blend_mode = ICON_ADD // Only appliciable if do_coloration = 1
- var/extra_overlay // Icon state of an additional overlay to blend in.
- var/show_species_tail = 0 // If false, do not render species' tail.
- var/clothing_can_hide = 1 // If true, clothing with HIDETAIL hides it
- var/desc = "You should not see this..."
-
-/datum/sprite_accessory/tail/invisible
- name = "hide species-sprite tail"
- icon = null
- icon_state = null
-
-/datum/sprite_accessory/tail/squirrel_orange
- name = "squirel, orange"
- desc = ""
- icon_state = "squirrel-orange"
-
-/datum/sprite_accessory/tail/squirrel_red
- name = "squirrel, red"
- desc = ""
- icon_state = "squirrel-red"
-
-/datum/sprite_accessory/tail/squirrel
- name = "squirrel, colorable"
- desc = ""
- icon_state = "squirrel"
- do_colouration = 1
-
-/datum/sprite_accessory/tail/kitty
- name = "kitty, colorable, downwards"
- desc = ""
- icon_state = "kittydown"
- do_colouration = 1
-
-/datum/sprite_accessory/tail/kittyup
- name = "kitty, colorable, upwards"
- desc = ""
- icon_state = "kittyup"
- do_colouration = 1
-
-/datum/sprite_accessory/tail/tiger_white
- name = "tiger, colorable, white stripes"
- desc = ""
- icon_state = "tiger"
- do_colouration = 1
- extra_overlay = "tigerinnerwhite"
-
-/datum/sprite_accessory/tail/tiger_black
- name = "tiger, colorable, black stripes"
- desc = ""
- icon_state = "tiger"
- do_colouration = 1
- extra_overlay = "tigerinnerblack"
-
-/datum/sprite_accessory/tail/stripey
- name = "stripey taj, colorable"
- desc = ""
- icon_state = "stripeytail"
- do_colouration = 1
-
-/datum/sprite_accessory/tail/stripeytail_brown
- name = "stripey taj, brown"
- desc = ""
- icon_state = "stripeytail-brown"
-
-/datum/sprite_accessory/tail/bunny
- name = "bunny, colorable"
- desc = ""
- icon_state = "bunny"
- do_colouration = 1
-
-/datum/sprite_accessory/tail/mothc
- name = "moth wings, colorable"
- desc = ""
- icon_state = "moth"
- do_colouration = 1
-
-/datum/sprite_accessory/tail/moth
- name = "moth wings"
- desc = ""
- icon_state = "moth"
-
-/datum/sprite_accessory/tail/bear_brown
- name = "bear, brown"
- desc = ""
- icon_state = "bear-brown"
-
-/datum/sprite_accessory/tail/bear
- name = "bear, colorable"
- desc = ""
- icon_state = "bear"
- do_colouration = 1
-
-/datum/sprite_accessory/tail/wolf_grey
- name = "wolf, grey"
- desc = ""
- icon_state = "wolf-grey"
-
-/datum/sprite_accessory/tail/wolf_green
- name = "wolf, green"
- desc = ""
- icon_state = "wolf-green"
-
-/datum/sprite_accessory/tail/wisewolf
- name = "wolf, wise"
- desc = ""
- icon_state = "wolf-wise"
-
-/datum/sprite_accessory/tail/blackwolf
- name = "wolf, black"
- desc = ""
- icon_state = "wolf"
-
-/datum/sprite_accessory/tail/wolf
- name = "wolf, colorable"
- desc = ""
- icon_state = "wolf"
- do_colouration = 1
- extra_overlay = "wolfinner"
-
-/datum/sprite_accessory/tail/mouse_grey
- name = "mouse, grey"
- desc = ""
- icon_state = "mouse-grey"
-
-/datum/sprite_accessory/tail/crossfox
- name = "cross fox"
- desc = ""
- icon_state = "crossfox"
-
-/datum/sprite_accessory/tail/mouse
- name = "mouse, colorable"
- desc = ""
- icon_state = "mouse"
- do_colouration = 1
- extra_overlay = "mouseinner"
-
-/datum/sprite_accessory/tail/bee
- name = "bee thorax (+wings)"
- desc = ""
- icon_state = "bee"
-
-/datum/sprite_accessory/tail/moth_full
- name = "moth antenna and wings"
- desc = ""
- icon_state = "moth_full"
-
-/datum/sprite_accessory/tail/succubus_purple
- name = "succubus, purple (+wings)"
- desc = ""
- icon_state = "succubus-purple"
-
-/datum/sprite_accessory/tail/succubus_red
- name = "succubus, red (+wings)"
- desc = ""
- icon_state = "succubus-red"
-
-/datum/sprite_accessory/tail/succubus_black
- name = "succubus, black (+wings)"
- desc = ""
- icon_state = "succubus-black"
-
-/datum/sprite_accessory/tail/bat_black
- name = "bat wings, black"
- desc = ""
- icon_state = "bat-black"
- show_species_tail = 1
-
-/datum/sprite_accessory/tail/bat_red
- name = "bat wings, red"
- desc = ""
- icon_state = "bat-red"
- show_species_tail = 1
-
-/datum/sprite_accessory/tail/snag
- name = "xenomorph tail w/ backplate"
- desc = ""
- icon_state = "snag"
-
-/datum/sprite_accessory/tail/xenotail
- name = "xenomorph tail"
- desc = ""
- icon_state = "xenotail"
-
-/datum/sprite_accessory/tail/molenar_kitsune
- name = "quintail kitsune tails (Molenar)"
- desc = ""
- icon_state = "molenar-kitsune"
- ckeys_allowed = list("molenar")
-
-/datum/sprite_accessory/tail/molenar_deathclaw
- name = "deathclaw bits (Molenar)"
- desc = ""
- icon_state = "molenar-deathclaw"
- ckeys_allowed = list("molenar","jertheace")
-
-/datum/sprite_accessory/tail/runac
- name = "fennecsune tails (Runac)"
- desc = ""
- icon_state = "runac"
- ckeys_allowed = list("rebcom1807")
-
-/datum/sprite_accessory/tail/kerena
- name = "wingwolf tail (+wings) (Kerena)"
- desc = ""
- icon_state = "kerena"
- ckeys_allowed = list("somekindofpony")
-
-/datum/sprite_accessory/tail/rosey
- name = "tritail kitsune tails (Rosey)"
- desc = ""
- icon_state = "rosey"
- ckeys_allowed = list("joey4298")
-
-/datum/sprite_accessory/tail/scree
- name = "green taj tail (+wings) (Scree)"
- desc = ""
- icon_state = "scree"
- ckeys_allowed = list("scree")
-
-/datum/sprite_accessory/tail/aronai
- name = "aronai tail (Aronai)"
- desc = ""
- icon_state = "aronai"
- ckeys_allowed = list("arokha")
-
-/datum/sprite_accessory/tail/feathered
- name = "feathered wings"
- desc = ""
- icon_state = "feathered"
-
-//For all species tails. Includes haircolored tails.
-/datum/sprite_accessory/tail/special
- name = "Blank tail. Do not select."
- icon = 'icons/effects/species_tails_vr.dmi'
-
-/datum/sprite_accessory/tail/special/unathi
- name = "unathi tail"
- desc = ""
- icon_state = "sogtail_s"
-
-/datum/sprite_accessory/tail/special/tajaran
- name = "tajaran tail"
- desc = ""
- icon_state = "tajtail_s"
-
-/datum/sprite_accessory/tail/special/sergal
- name = "sergal tail"
- desc = ""
- icon_state = "sergtail_s"
-
-/datum/sprite_accessory/tail/special/akula
- name = "akula tail"
- desc = ""
- icon_state = "sharktail_s"
-
-/datum/sprite_accessory/tail/special/nevrean
- name = "nevrean tail"
- desc = ""
- icon_state = "nevreantail_s"
-
-/datum/sprite_accessory/tail/special/armalis
- name = "armalis tail"
- desc = ""
- icon_state = "armalis_tail_humanoid_s"
-
-/datum/sprite_accessory/tail/special/xenodrone
- name = "xenomorph drone tail"
- desc = ""
- icon_state = "xenos_drone_tail_s"
-
-/datum/sprite_accessory/tail/special/xenosentinel
- name = "xenomorph sentinel tail"
- desc = ""
- icon_state = "xenos_sentinel_tail_s"
-
-/datum/sprite_accessory/tail/special/xenohunter
- name = "xenomorph hunter tail"
- desc = ""
- icon_state = "xenos_hunter_tail_s"
-
-/datum/sprite_accessory/tail/special/xenoqueen
- name = "xenomorph queen tail"
- desc = ""
- icon_state = "xenos_queen_tail_s"
-
-/datum/sprite_accessory/tail/special/monkey
- name = "monkey tail"
- desc = ""
- icon_state = "chimptail_s"
-
-/datum/sprite_accessory/tail/special/seromitail
- name = "seromi tail"
- desc = ""
- icon_state = "seromitail_s"
-
-/datum/sprite_accessory/tail/special/seromitailfeathered
- name = "seromi tail w/ feathers"
- desc = ""
- icon_state = "seromitail_feathers_s"
-
-/datum/sprite_accessory/tail/special/unathihc
- name = "unathi tail, colorable"
- desc = ""
- icon_state = "sogtail_hc_s"
- do_colouration = 1
-
-/datum/sprite_accessory/tail/special/tajaranhc
- name = "tajaran tail, colorable"
- desc = ""
- icon_state = "tajtail_hc_s"
- do_colouration = 1
-
-/datum/sprite_accessory/tail/special/sergalhc
- name = "sergal tail, colorable"
- desc = ""
- icon_state = "sergtail_hc_s"
- do_colouration = 1
-
-/datum/sprite_accessory/tail/special/akulahc
- name = "akula tail, colorable"
- desc = ""
- icon_state = "sharktail_hc_s"
- do_colouration = 1
-
-/datum/sprite_accessory/tail/special/nevreanhc
- name = "nevrean tail, colorable"
- desc = ""
- icon_state = "nevreantail_hc_s"
- do_colouration = 1
-
-/datum/sprite_accessory/tail/special/foxhc
- name = "highlander zorren tail, colorable"
- desc = ""
- icon_state = "foxtail_hc_s"
- do_colouration = 1
-
-/datum/sprite_accessory/tail/special/fennechc
- name = "flatland zorren tail, colorable"
- desc = ""
- icon_state = "fentail_hc_s"
- do_colouration = 1
-
-/datum/sprite_accessory/tail/special/armalishc
- name = "armalis tail, colorable"
- desc = ""
- icon_state = "armalis_tail_humanoid_hc_s"
- do_colouration = 1
-
-/datum/sprite_accessory/tail/special/xenodronehc
- name = "xenomorph drone tail, colorable"
- desc = ""
- icon_state = "xenos_drone_tail_hc_s"
- do_colouration = 1
-
-/datum/sprite_accessory/tail/special/xenosentinelhc
- name = "xenomorph sentinel tail, colorable"
- desc = ""
- icon_state = "xenos_sentinel_tail_hc_s"
- do_colouration = 1
-
-/datum/sprite_accessory/tail/special/xenohunterhc
- name = "xenomorph hunter tail, colorable"
- desc = ""
- icon_state = "xenos_hunter_tail_hc_s"
- do_colouration = 1
-
-/datum/sprite_accessory/tail/special/xenoqueenhc
- name = "xenomorph queen tail, colorable"
- desc = ""
- icon_state = "xenos_queen_tail_hc_s"
- do_colouration = 1
-
-/datum/sprite_accessory/tail/special/monkeyhc
- name = "monkey tail, colorable, colorable"
- desc = ""
- icon_state = "chimptail_hc_s"
- do_colouration = 1
-
-/datum/sprite_accessory/tail/special/seromitailhc
- name = "seromi tail, colorable"
- desc = ""
- icon_state = "seromitail_hc_s"
- do_colouration = 1
-
-/datum/sprite_accessory/tail/special/seromitailfeatheredhc
- name = "seromi tail w/ feathers, colorable"
- desc = ""
- icon_state = "seromitail_feathers_hc_s"
- do_colouration = 1
-
-/*
-////////////////////////////
-/ =--------------------= /
-/ == Taur Definitions == /
-/ =--------------------= /
-////////////////////////////
-*/
-
-// Taur sprites are now a subtype of tail since they are mutually exclusive anyway.
-
-/datum/sprite_accessory/tail/taur
- name = "You should not see this..."
- icon = 'icons/mob/vore/taurs_vr.dmi'
- do_colouration = 1 // Yes color, using tail color
- color_blend_mode = ICON_MULTIPLY // The sprites for taurs are designed for ICON_MULTIPLY
-
-/datum/sprite_accessory/tail/taur/wolf
- name = "Wolf"
- icon_state = "wolf_s"
-
-/datum/sprite_accessory/tail/taur/naga
- name = "Naga"
- icon_state = "naga_s"
-
-/datum/sprite_accessory/tail/taur/horse
- name = "Horse"
- icon_state = "horse_s"
-
-/datum/sprite_accessory/tail/taur/cow
- name = "Cow"
- icon_state = "cow_s"
-
-/datum/sprite_accessory/tail/taur/lizard
- name = "Lizard"
- icon_state = "lizard_s"
-
-/datum/sprite_accessory/tail/taur/spider
- name = "Spider"
- icon_state = "spider_s"
-
-/datum/sprite_accessory/tail/taur/tents
- name = "Tentacles"
- icon_state = "tent_s"
-
-
diff --git a/code/modules/vore/appearance/update_icons_vr.dm b/code/modules/vore/appearance/update_icons_vr.dm
deleted file mode 100644
index 0b34738c13d..00000000000
--- a/code/modules/vore/appearance/update_icons_vr.dm
+++ /dev/null
@@ -1,36 +0,0 @@
-
-#define isTaurTail(A) istype(A, /datum/sprite_accessory/tail/taur)
-
-/mob/living/carbon/human/proc/get_ears_overlay()
- if(ear_style && !(head && (head.flags_inv & BLOCKHEADHAIR)))
- var/icon/ears_s = new/icon("icon" = ear_style.icon, "icon_state" = ear_style.icon_state)
- if(ear_style.do_colouration)
- ears_s.Blend(rgb(src.r_hair, src.g_hair, src.b_hair), ear_style.color_blend_mode)
- if(ear_style.extra_overlay)
- var/icon/overlay = new/icon("icon" = ear_style.icon, "icon_state" = ear_style.extra_overlay)
- ears_s.Blend(overlay, ICON_OVERLAY)
- return ears_s
- return null
-
-
-/mob/living/carbon/human/proc/get_tail_image()
- //If you are FBP with tail style
- if(synthetic && synthetic.includes_tail)
- var/icon/tail_s = new/icon("icon" = synthetic.icon, "icon_state" = "tail")
- return image(tail_s)
-
- //If you have a custom tail selected
- if(tail_style && !(wear_suit && wear_suit.flags_inv & HIDETAIL && !isTaurTail(tail_style)))
- var/icon/tail_s = new/icon("icon" = tail_style.icon, "icon_state" = tail_style.icon_state)
- if(tail_style.do_colouration)
- tail_s.Blend(rgb(src.r_tail, src.g_tail, src.b_tail), tail_style.color_blend_mode)
- if(tail_style.extra_overlay)
- var/icon/overlay = new/icon("icon" = tail_style.icon, "icon_state" = tail_style.extra_overlay)
- tail_s.Blend(overlay, ICON_OVERLAY)
- qdel(overlay)
-
- if(isTaurTail(tail_style))
- return image(tail_s, "pixel_x" = -16)
- else
- return image(tail_s)
- return null
diff --git a/code/modules/vore/eating/belly_vr.dm b/code/modules/vore/eating/belly_vr.dm
index d2ec81bccff..c3f8130564a 100644
--- a/code/modules/vore/eating/belly_vr.dm
+++ b/code/modules/vore/eating/belly_vr.dm
@@ -19,8 +19,8 @@
var/digest_brute = 1 // Brute damage per tick in digestion mode
var/digest_burn = 3 // Burn damage per tick in digestion mode
var/digest_tickrate = 9 // Modulus this of air controller tick number to iterate gurgles on
- var/immutable = 0 // Prevents this belly from being deleted
- var/escapable = 1 // Belly can be resisted out of at any time
+ var/immutable = FALSE // Prevents this belly from being deleted
+ var/escapable = TRUE // Belly can be resisted out of at any time
var/escapetime = 200 // Deciseconds, how long to escape this belly
var/escapechance = 45 // % Chance of prey beginning to escape if prey struggles.
var/tmp/digest_mode = DM_HOLD // Whether or not to digest. Default to not digest.
@@ -28,7 +28,7 @@
var/tmp/mob/living/owner // The mob whose belly this is.
var/tmp/list/internal_contents = list() // People/Things you've eaten into this belly!
var/tmp/is_full // Flag for if digested remeans are present. (for disposal messages)
- var/tmp/emotePend = 0 // If there's already a spawned thing counting for the next emote
+ var/tmp/emotePend = FALSE // If there's already a spawned thing counting for the next emote
// Don't forget to watch your commas at the end of each line if you change these.
var/list/struggle_messages_outside = list(
@@ -219,7 +219,7 @@
// Default implementation calls M.death() and removes from internal contents.
// Indigestable items are removed, and M is deleted.
/datum/belly/proc/digestion_death(var/mob/living/M)
- is_full = 1
+ is_full = TRUE
internal_contents.Remove(M)
// If digested prey is also a pred... anyone inside their bellies gets moved up.
diff --git a/code/modules/vore/eating/bellymodes_vr.dm b/code/modules/vore/eating/bellymodes_vr.dm
index 3be8ad7ba3d..559388f5423 100644
--- a/code/modules/vore/eating/bellymodes_vr.dm
+++ b/code/modules/vore/eating/bellymodes_vr.dm
@@ -4,13 +4,13 @@
/////////////////////////// Auto-Emotes ///////////////////////////
if((digest_mode in emote_lists) && !emotePend)
- emotePend = 1
+ emotePend = TRUE
spawn(emoteTime)
var/list/EL = emote_lists[digest_mode]
for(var/mob/living/M in internal_contents)
M << "[pick(EL)]"
- src.emotePend = 0
+ src.emotePend = FALSE
///////////////////////////// DM_HOLD /////////////////////////////
if(digest_mode == DM_HOLD)
diff --git a/code/modules/vore/eating/living_vr.dm b/code/modules/vore/eating/living_vr.dm
index b236d8ff525..09237eabf52 100644
--- a/code/modules/vore/eating/living_vr.dm
+++ b/code/modules/vore/eating/living_vr.dm
@@ -22,7 +22,7 @@
if(M.client && M.client.prefs_vr)
if(!M.copy_from_prefs_vr())
M << "ERROR: You seem to have saved VOREStation prefs, but they couldn't be loaded."
- return 0
+ return FALSE
if(M.vore_organs && M.vore_organs.len)
M.vore_selected = M.vore_organs[1]
@@ -30,7 +30,7 @@
if(!M.vore_organs)
M.vore_organs = list()
var/datum/belly/B = new /datum/belly(M)
- B.immutable = 1
+ B.immutable = TRUE
B.name = "Stomach"
B.inside_flavor = "It appears to be rather warm and wet. Makes sense, considering it's inside \the [M.name]."
M.vore_organs[B.name] = B
diff --git a/code/modules/vore/eating/vore_vr.dm b/code/modules/vore/eating/vore_vr.dm
index e165cb132b4..f647a78fb0d 100644
--- a/code/modules/vore/eating/vore_vr.dm
+++ b/code/modules/vore/eating/vore_vr.dm
@@ -32,9 +32,9 @@ V::::::V V::::::VO:::::::OOO:::::::ORR:::::R R:::::REE::::::EEEEEE
/hook/client_new/proc/add_prefs_vr(client/C)
C.prefs_vr = new/datum/vore_preferences(C)
if(C.prefs_vr)
- return 1
+ return TRUE
- return 0
+ return FALSE
/datum/vore_preferences
//Actual preferences
@@ -61,9 +61,9 @@ V::::::V V::::::VO:::::::OOO:::::::ORR:::::R R:::::REE::::::EEEEEE
/proc/is_vore_predator(var/mob/living/O)
if(istype(O,/mob/living))
if(O.vore_organs.len > 0)
- return 1
+ return TRUE
- return 0
+ return FALSE
//
// Belly searching for simplifying other procs
@@ -76,7 +76,7 @@ V::::::V V::::::VO:::::::OOO:::::::ORR:::::R R:::::REE::::::EEEEEE
if(A in B.internal_contents)
return(B)
- return 0
+ return FALSE
//
// Save/Load Vore Preferences
@@ -91,7 +91,7 @@ V::::::V V::::::VO:::::::OOO:::::::ORR:::::R R:::::REE::::::EEEEEE
if(!path) return 0 //Path couldn't be set?
if(!fexists(path)) //Never saved before
save_vore() //Make the file first
- return 1
+ return TRUE
var/savefile/S = new /savefile(path)
if(!S) return 0 //Savefile object couldn't be created?
diff --git a/code/modules/vore/eating/vorehooks_vr.dm b/code/modules/vore/eating/vorehooks_vr.dm
deleted file mode 100644
index e69de29bb2d..00000000000
diff --git a/code/modules/vore/fluffstuff/custom_boxes_vr.dm b/code/modules/vore/fluffstuff/custom_boxes_vr.dm
deleted file mode 100644
index d66de51a4ef..00000000000
--- a/code/modules/vore/fluffstuff/custom_boxes_vr.dm
+++ /dev/null
@@ -1,124 +0,0 @@
-// BEGIN - DO NOT EDIT PROTOTYPE
-/obj/item/weapon/storage/box/fluff
- name = "Undefined Fluff Box"
- desc = "This should have a description. Tell an admin."
- storage_slots = 7
- var/list/has_items = list()
-
-/obj/item/weapon/storage/box/fluff/New()
- storage_slots = has_items.len
- allowed = list()
- for(var/P in has_items)
- allowed += P
- new P(src)
- ..()
- return
-// END - DO NOT EDIT PROTOTYPE
-
-
-/* TEMPLATE
-// ckey:Character Name
-/obj/item/weapon/storage/box/fluff/charactername
- name = ""
- desc = ""
- has_items = list(
- /obj/item/clothing/head/thing1,
- /obj/item/clothing/shoes/thing2,
- /obj/item/clothing/suit/thing3,
- /obj/item/clothing/under/thing4)
-*/
-
-//POLARISTODO - These fail to compile since not all items are ported yet
-// bwoincognito:Tasald Corlethian
-/obj/item/weapon/storage/box/fluff/tasald
- name = "Tasald's Kit"
- desc = "A kit containing Talsald's equipment."
- has_items = list(
- /obj/item/clothing/suit/storage/det_suit/fluff/tasald,
- /obj/item/clothing/suit/storage/det_suit/fluff/tas_coat,
- /obj/item/clothing/under/det/fluff/tasald,
- /obj/item/fluff/permit/tasald_corlethian,
- /obj/item/weapon/gun/projectile/revolver/detective/fluff/tasald_corlethian,
- /obj/item/weapon/implanter/loyalty)
-
-// jemli:Cirra Mayhem
-/obj/item/weapon/storage/box/fluff/cirra
- name = "Instant Pirate Kit"
- desc = "Just add Akula!"
- has_items = list(
- /obj/item/clothing/head/pirate,
- /obj/item/clothing/glasses/eyepatch,
- /obj/item/clothing/suit/pirate,
- /obj/item/clothing/under/pirate)
-
-// joey4298:Emoticon
-/obj/item/weapon/storage/box/fluff/emoticon
- name = "Emoticon's Mime Kit"
- desc = "Specially packaged for the hungry catgirl mime with a taste for clown."
- has_items = list(
- /obj/item/device/fluff/id_kit_mime,
- /obj/item/clothing/gloves/white,
- /obj/item/clothing/head/beret,
- /obj/item/weapon/reagent_containers/food/drinks/bottle/bottleofnothing,
- /obj/item/clothing/shoes/black,
- /*/obj/item/toy/crayon/mime*/) //Need to track down the code for crayons before adding this back in
-
-//joanrisu:Joan Risu
-/obj/item/weapon/storage/backpack/dufflebag/sec/fluff/joanrisu
- name = "Joan's Workbag"
- desc = "A duffle bag Joan uses to carry her work equipment."
- slowdown = 0
-
- New()
- ..()
- new /obj/item/clothing/accessory/holster/hip(src)
- new /obj/item/clothing/suit/storage/fluff/fedcoat/fedcapt(src)
- new /obj/item/weapon/card/id/centcom/fluff/joanbadge(src)
- new /obj/item/weapon/gun/energy/gun/fluff/dominator(src)
- new /obj/item/clothing/suit/armor/det_suit(src)
- new /obj/item/fluff/permit/joanrisu(src)
- new /obj/item/clothing/accessory/storage/black_vest(src)
- new /obj/item/weapon/sword/fluff/joanaria(src)
- new /obj/item/weapon/flame/lighter/zippo/fluff/joan(src)
- new /obj/item/clothing/under/rank/internalaffairs/fluff/joan(src)
-
-//joanrisu:Katarina Eine
-/obj/item/weapon/storage/backpack/dufflebag/sec/fluff/Katarina
- name = "Katarina's Workbag"
- desc = "A duffle bag Katarina uses to carry her tools."
- slowdown = 0
-
- New()
- ..()
- new /obj/item/clothing/accessory/holster/hip(src)
- new /obj/item/clothing/suit/storage/fluff/fedcoat(src)
- new /obj/item/weapon/gun/energy/gun/fluff/dominator(src)
- new /obj/item/clothing/suit/armor/det_suit(src)
- new /obj/item/clothing/accessory/storage/black_vest(src)
- new /obj/item/weapon/material/hatchet/tacknife/combatknife/fluff/katarina(src)
- new /obj/item/weapon/material/hatchet/tacknife/combatknife/fluff/katarina(src)
- new /obj/item/weapon/material/hatchet/tacknife/combatknife/fluff/katarina(src)
- new /obj/item/weapon/material/hatchet/tacknife/combatknife/fluff/katarina(src)
- new /obj/item/clothing/under/rank/internalaffairs/fluff/joan(src)
-
-//Razerwing:Archer Maximus
-/obj/item/weapon/storage/box/fluff/archermaximus
- desc = "Personal Effects"
- has_items = list(
- /obj/item/fluff/permit/archermaximus,
- /obj/item/weapon/gun/projectile/colt/fluff/archercolt)
-
-// arokha:Aronai Kadigan
-/obj/item/weapon/storage/backpack/dufflebag/emt/fluff/aro
- name = "Aronai's Equipment"
- desc = "A big dufflebag, containing the stuff Aronai likes to carry with him."
- slowdown = 0 //HAX!
-
- New()
- ..()
- new /obj/item/clothing/head/helmet/space/fluff/aronai(src)
- new /obj/item/clothing/suit/space/fluff/aronai(src)
- new /obj/item/device/suit_cooling_unit(src)
- new /obj/item/weapon/material/hatchet/tacknife/combatknife(src)
- new /obj/item/weapon/card/id/centcom/fluff/aro(src)
- new /obj/item/weapon/reagent_containers/hypospray/fluff/aronai(src)
diff --git a/code/modules/vore/fluffstuff/custom_clothes_vr.dm b/code/modules/vore/fluffstuff/custom_clothes_vr.dm
deleted file mode 100644
index 904cf4ab51d..00000000000
--- a/code/modules/vore/fluffstuff/custom_clothes_vr.dm
+++ /dev/null
@@ -1,684 +0,0 @@
-/* TUTORIAL
- "icon" is the file with the HUD/ground icon for the item
- "icon_state" is the iconstate in this file for the item
- "icon_override" is the file with the on-mob icons, can be the same file
- "item_state" is the iconstate for the on-mob icons:
- item_state_s is used for worn uniforms on mobs
- item_state_r and item_state_l are for being held in each hand
- some do not have a suffix, like gloves. plan accordingly, maybe add _mob?
- "overlay_state" is the iconstate for ties/accessories, for some reason they don't
- just use the item_state variable
-
- If you don't have a special HUD/ground sprite, don't worry about it.
- Just set both the icon_state and item_state to the same thing,
- and it will use the top direction sprite (facing the viewer)
- for your HUD/item sprite. This usually looks fine!
-
- Advanced:
- "item_state_slots" can replace "item_state", it is a list:
- item_state_slots["slotname1"] = "item state for that slot"
- item_state_slots["slotname2"] = "item state for that slot"
-*/
-
-/* TEMPLATE
-//ckey:Character Name
-/obj/item/clothing/type/fluff/charactername
- name = ""
- desc = ""
-
- icon = 'icons/vore/custom_clothes_vr.dmi'
- icon_state = "myicon"
-
- icon_override = 'icons/vore/custom_clothes_vr.dmi'
- item_state = "myicon"
-
-*/
-
-//benemuel:Yuuko Shimmerpond
-/obj/item/clothing/under/fluff/sakura_hokkaido_kimono
- name = "Sakura Kimono"
- desc = "A pale-pink, nearly white, kimono with a red and gold obi. There is a embroidered design of cherry blossom flowers covering the kimono."
-
- icon = 'icons/vore/custom_clothes_vr.dmi'
- icon_state = "sh_kimono"
-
- icon_override = 'icons/vore/custom_clothes_vr.dmi'
- item_state = "sh_kimono_mob"
-
-//BeyondMyLife:Kilano Soryu
-/obj/item/clothing/under/dress/fluff/kilano
- name = "Bleached Dress"
- desc = "It appears that this was once a captain's dress, it's blueish color has been turned white by bleach, only the gold markings remain to slightly signify what it once was."
-
- icon = 'icons/vore/custom_clothes_vr.dmi'
- icon_state = "kilanodress"
-
- icon_override = 'icons/vore/custom_clothes_vr.dmi'
- item_state = "kilanodress_mob"
-
- species_restricted = null
- body_parts_covered = UPPER_TORSO|LOWER_TORSO|ARMS
-
-//BeyondMyLife:Kilano Soryu
-/obj/item/clothing/gloves/fluff/kilano
- name = "Bleached Gloves"
- desc = "Some old captain's gloves, bleached white, almost unrecognizable from the color change besides the gold trim."
-
- icon = 'icons/vore/custom_clothes_vr.dmi'
- icon_state = "kilanogloves"
-
- icon_override = 'icons/vore/custom_clothes_vr.dmi'
- item_state = "kilanogloves_mob"
- species_restricted = null
-
-//JoanRisu:Joan Risu
-/obj/item/clothing/under/suit_jacket/female/fluff/asuna
- name = "Joan's Historia Uniform"
- desc = "A red and white outfit used by Joan during her explorer days. Looks almost like a red school uniform."
-
- icon = 'icons/vore/custom_clothes_vr.dmi'
- icon_state = "joanasuna"
-
- icon_override = 'icons/vore/custom_clothes_vr.dmi'
- item_state = "joanasuna"
-
-//Unknown. Please check records from the forums.
-/obj/item/clothing/under/suit_jacket/female/fluff/miqote
- name = "Miqo'te Seperates"
- desc = "This two-part set of clothing is very popular on the planet Hydaelyn. While made of very robust materials, its usefulness as armor is negated by the exposed midriff."
-
- icon = 'icons/vore/custom_clothes_vr.dmi'
- icon_state = "miqote"
-
- icon_override = 'icons/vore/custom_clothes_vr.dmi'
- item_state = "miqote"
-
-//JoanRisu:Joan Risu
-/obj/item/clothing/under/fluff/nightgown
- name = "nightgown"
- desc = "A seethrough nightgown. For those intimate nights with your significant other."
-
- icon = 'icons/vore/custom_clothes_vr.dmi'
- icon_state = "joannightgown"
-
- icon_override = 'icons/vore/custom_clothes_vr.dmi'
- item_state = "joannightgown"
-
-//Vorrarkul:Lucina Dakarim
-/obj/item/clothing/under/dress/fluff/lucinadress
- name = "Elegant Purple Dress"
- desc = "An expertly tailored dress, made out of fine fabrics. The interwoven necklace appears to be made out of gold, with three complicated symbols engraved in the front."
-
- icon = 'icons/vore/custom_clothes_vr.dmi'
- icon_state = "solara_dress"
-
- icon_override = 'icons/mob/uniform.dmi'
- item_state = "solara_dress"
-
-//For general use
-/obj/item/clothing/suit/armor/hos/fluff/brittrenchcoat
- name = "Britania Trench Coat"
- desc = "An armored trench coat from the Brittanian Empire. It looks so British."
-
- icon = 'icons/vore/custom_clothes_vr.dmi'
- icon_state = "brittrenchcoat"
-
- icon_override = 'icons/vore/custom_clothes_vr.dmi'
- item_state = "brittrenchcoat"
-
-//For general use
-/obj/item/clothing/suit/armor/hos/nazi_greatcoat
- name = "Greatcoat"
- desc = "Perfect attire for kicking down the doors of suspected dissidents; this coat gives off an imposing look, while offering a luxuriously plush fur liner."
-
- icon = 'icons/vore/custom_clothes_vr.dmi'
- icon_state = "greatcoat"
-
- icon_override = 'icons/vore/custom_clothes_vr.dmi'
- item_state = "greatcoat_mob"
-
-//For general use
-/obj/item/clothing/suit/storage/fluff/fedcoat
- name = "Federation Uniform Jacket"
- desc = "A uniform jacket from the United Federation. Starfleet still uses this uniform and there are variations of it. Set phasers to awesome."
-
- icon = 'icons/vore/custom_clothes_vr.dmi'
- icon_state = "fedcoat"
-
- icon_override = 'icons/vore/custom_clothes_vr.dmi'
- item_state = "fedcoat"
-
- blood_overlay_type = "coat"
- body_parts_covered = UPPER_TORSO|LOWER_TORSO|ARMS
- allowed = list(
- /obj/item/weapon/tank/emergency_oxygen,
- /obj/item/device/flashlight,
- /obj/item/weapon/gun/energy,
- /obj/item/weapon/gun/projectile,
- /obj/item/ammo_magazine,
- /obj/item/ammo_casing,
-// /obj/item/weapon/storage/fancy/shotgun_ammo,
- /obj/item/weapon/melee/baton,
- /obj/item/weapon/handcuffs,
-// /obj/item/device/detective_scanner,
- /obj/item/device/taperecorder)
- armor = list(melee = 50, bullet = 15, laser = 25, energy = 10, bomb = 0, bio = 0, rad = 0)
- var/unbuttoned = 0
-
- verb/toggle()
- set name = "Toggle coat buttons"
- set category = "Object"
- set src in usr
-
- if(!usr.canmove || usr.stat || usr.restrained())
- return 0
-
- switch(unbuttoned)
- if(0)
- icon_state = "[initial(icon_state)]_open"
- item_state = "[initial(item_state)]_open"
- unbuttoned = 1
- usr << "You unbutton the coat."
- if(1)
- icon_state = "[initial(icon_state)]"
- item_state = "[initial(item_state)]"
- unbuttoned = 0
- usr << "You button up the coat."
- usr.update_inv_wear_suit()
-
- //Variants
- fedblue
- name = "Federation Uniform Jacket"
- desc = "A uniform jacket from the United Federation. Starfleet still uses this uniform and there are variations of it. Wearing this may make you feel all scientific."
- icon_state = "fedblue"
- item_state = "fedblue"
- armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 50, rad = 0)
-
- fedeng
- name = "Federation Uniform Jacket"
- desc = "A uniform jacket from the United Federation. Starfleet still uses this uniform and there are variations of it.Wearing it may make you feel like checking a warp core, whatever that is."
- icon_state = "fedeng"
- item_state = "fedeng"
- armor = list(melee = 0, bullet = 0, laser = 0,energy = 10, bomb = 0, bio = 30, rad = 35)
-
- fedcapt
- name = "Federation Uniform Jacket"
- desc = "A uniform jacket from the United Federation. Starfleet still uses this uniform and there are variations of it. You feel like a commanding officer of Starfleet."
- icon_state = "fedcapt"
- item_state = "fedcapt"
- armor = list(melee = 50, bullet = 5, laser = 15,energy = 10, bomb = 0, bio = 0, rad = 0)
-
-/*POLARISTODO - Needs rework in update_icons as it doesn't use item_state
-//For general use
-/obj/item/clothing/glasses/welding/fluff/yellow
- name = "Yellow Goggles"
- desc = "A neat looking pair of goggles"
-
- icon = 'icons/vore/custom_clothes_vr.dmi'
- icon_state = "gogyellow"
-
- icon_override = 'icons/vore/custom_clothes_vr.dmi'
- item_state = "gogyellow"
-
-/obj/item/clothing/glasses/welding/fluff/blue
- name = "Blue Goggles"
- desc = "A neat looking pair of goggles"
-
- icon = 'icons/vore/custom_clothes_vr.dmi'
- icon_state = "gogblue"
-
- icon_override = 'icons/vore/custom_clothes_vr.dmi'
- item_state = "gogblue"
-*/
-
-//wickedtemp:chakat tempest
-/obj/item/clothing/glasses/hud/health/fluff/wickedtemphud
- name = "Purple MedHUD"
- desc = "A standard Medical HUD, only this one is colored purple with a violet lens."
-
- icon = 'icons/vore/custom_clothes_vr.dmi'
- icon_state = "healthhud"
-
- icon_override = 'icons/vore/custom_clothes_vr.dmi'
- item_state = "healthhud"
-
-//For general use
-/obj/item/clothing/accessory/fluff/smilepin
- name = "Smiley Pin"
- desc = "A pin with a stupid grin on its face"
-
- icon = 'icons/vore/custom_clothes_vr.dmi'
- icon_state = "smilepin"
-
- icon_override = 'icons/vore/custom_clothes_vr.dmi'
- overlay_state = "" //They don't have one
-
-//For general use
-/obj/item/clothing/accessory/fluff/heartpin
- name = "Love Pin"
- desc = "A cute heart pin."
-
- icon = 'icons/vore/custom_clothes_vr.dmi'
- icon_state = "heartpin"
-
- icon_override = 'icons/vore/custom_clothes_vr.dmi'
- overlay_state = "" //They don't have one
-
-//john.wayne9392:Harmony Prechtl
-/obj/item/clothing/suit/armor/captain/fluff/harmsuit
- name = "Harmony's Captain Armor"
- desc = "A modified Captain Armor suit for Harmony Prechtl."
-
- icon = 'icons/vore/custom_clothes_vr.dmi'
- icon_state = "harmarmor"
-
- icon_override = 'icons/vore/custom_clothes_vr.dmi'
- item_state = "harmarmor"
-
-//john.wayne9392:Harmony Prechtl
-/obj/item/clothing/head/helmet/space/capspace/fluff/harmhelm
- name = "Harmony's Captain Helmet"
- desc = "A modified Captain helmet for Harmony Prechtl."
-
- icon = 'icons/vore/custom_clothes_vr.dmi'
- icon_state = "harmspace"
-
- icon_override = 'icons/vore/custom_clothes_vr.dmi'
- item_state = "harmspace_mob"
-
-//john.wayne9392:Harmony Prechtl
-/obj/item/clothing/under/rank/captain/fluff/harmuniform
- name = "Harmony's Captain uniform"
- desc = "A customized Captain uniform for Harmony Prechtl, given to her as a gift by Central Command for her service."
-
- icon = 'icons/vore/custom_clothes_vr.dmi'
- icon_state = "harmcaptain"
-
- icon_override = 'icons/vore/custom_clothes_vr.dmi'
- item_state = "harmcaptain"
- //Variant
- centcom
- name = "\improper CentCom administrator's uniform"
- desc = "It's a green jumpsuit with some gold markings denoting the rank of \"Administrator\"."
-
-//john.wayne9392:Harmony Prechtl
-/obj/item/clothing/head/centhat/fluff/harmhat
- name = "Harmony's CentCom hat"
- desc = "It's good to be queen."
-
-// bwoincognito:Tasald Corlethian
-/obj/item/clothing/under/det/fluff/tasald
- name = "Tasald's outfit"
- desc = "Tasald's outfit. Very green."
-
- icon = 'icons/vore/custom_clothes_vr.dmi'
- icon_state = "tasaldsuit"
-
- icon_override = 'icons/vore/custom_clothes_vr.dmi'
- item_state = "tasaldsuit"
-
-// bwoincognito:Tasald Corlethian
-/obj/item/clothing/suit/storage/det_suit/fluff/tasald
- name = "Tasald's Vest"
- desc = "A fancy looking vest. You look like a smooth operating officer in this."
-
- icon = 'icons/vore/custom_clothes_vr.dmi'
- icon_state = "tasvest"
-
- icon_override = 'icons/vore/custom_clothes_vr.dmi'
- item_state = "tasvest"
-
- blood_overlay_type = "coat"
- body_parts_covered = UPPER_TORSO|LOWER_TORSO|LEGS|ARMS
-
-// bwoincognito:Tasald Corlethian
-/obj/item/clothing/suit/storage/det_suit/fluff/tas_coat
- name = "Armored Colony coat"
- desc = "Dark green and grey colored sleeveless long coat with two thick metal shoulder pads. has seen some wear and tear, with noticeable patches in the fabric, scratches on the shoulder pads, but with a clean patch on the left upper chest. It has a red NT marked on the right shoulder pad and red Security on the left. "
-
- icon = 'icons/vore/custom_clothes_vr.dmi'
- icon_state = "tasaldcoat"
-
- icon_override = 'icons/vore/custom_clothes_vr.dmi'
- item_state = "tasaldcoat_mob"
-
- blood_overlay_type = "coat"
- body_parts_covered = UPPER_TORSO|LOWER_TORSO|LEGS|ARMS
-
-//Event Costumes Below
-/obj/item/clothing/head/helmet/fluff/freddy
- name = "Animatronic Suit Helmet"
- desc = "Votre toast, je peux vous le rendre."
-
- icon = 'icons/vore/custom_clothes_vr.dmi'
- icon_state = "freddyhead"
-
- icon_override = 'icons/vore/custom_clothes_vr.dmi'
- item_state = "freddyhead_mob"
- permeability_coefficient = 0.01
- armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 0, rad = 0)
- flags_inv = HIDEMASK|HIDEEARS
- cold_protection = HEAD
- siemens_coefficient = 0.9
-
- //Bonnie Head
- bonnie
- desc = "Children's entertainer."
- icon_state = "bonniehead"
- item_state = "bonniehead_mob"
-
- //Foxy Head
- foxy
- desc = "I guess he doesn't like being watched."
- icon_state = "foxyhead"
- item_state = "foxyhead_mob"
-
- //Chica Head
- chica
- desc = "LET'S EAT!"
- icon_state = "chicahead"
- item_state = "chicahead_mob"
-
-//Anamatronic Suits
-/obj/item/clothing/suit/fluff/freddy
- name = "Animatronic Suit"
- desc = "Votre toast, je peux vous le rendre."
-
- icon = 'icons/vore/custom_clothes_vr.dmi'
- icon_state = "freddysuit"
-
- icon_override = 'icons/vore/custom_clothes_vr.dmi'
- item_state = "freddysuit_mob"
-
- gas_transfer_coefficient = 0.01
- permeability_coefficient = 0.02
- body_parts_covered = UPPER_TORSO|LOWER_TORSO|LEGS|FEET|ARMS|HANDS
- allowed = list(/obj/item/device/flashlight,/obj/item/weapon/tank)
- armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 0, rad = 0)
- flags_inv = HIDEGLOVES|HIDESHOES|HIDEJUMPSUIT
- cold_protection = UPPER_TORSO | LOWER_TORSO | LEGS | FEET | ARMS | HANDS
- siemens_coefficient = 0.9
-
- //Bonnie Suit
- bonnie
- desc = "Children's entertainer."
- icon_state = "bonniesuit"
- item_state = "bonniesuit_mob"
-
- //Foxy Suit
- foxy
- desc = "I guess he doesn't like being watched."
- icon_state = "foxysuit"
- item_state = "foxysuit_mob"
-
-
- //Chica Suit
- chica
- desc = "LET'S EAT!"
- icon_state = "chicasuit"
- item_state = "chicasuit_mob"
-
-//End event costumes
-
-//scree:Scree
-/obj/item/clothing/head/helmet/space/void/engineering/fluff/screehelm
- name = "Modified Tajara Helmet"
- desc = "A special helmet designed for work in a hazardous, low-pressure environment. Has radiation shielding. This one doesn't look like it was made for humans. Its been modified to include headlights."
-
- icon = 'icons/vore/custom_clothes_vr.dmi'
- icon_state = "scree-helm"
-
- icon_override = 'icons/vore/custom_clothes_vr.dmi'
- item_state = "scree-helm_mob"
-
- light_overlay = "helmet_light_dual"
-
- species_restricted = null
-
- mob_can_equip(var/mob/living/carbon/human/H, slot, disable_warning = 0)
- ..()
- if(H.ckey != "scree")
- H << "Your face and whoever is meant for this helmet are too different."
- return 0
- else
- return 1
-
-//scree:Scree
-/obj/item/clothing/suit/space/void/engineering/fluff/screespess
- name = "Modified Winged Suit"
- desc = "A special suit that protects against hazardous, low pressure environments. Has radiation shielding. This one doesn't look like it was made for humans. This one was made with a special personal shielding for someone's wings."
-
- icon = 'icons/vore/custom_clothes_vr.dmi'
- icon_state = "scree-spess"
-
- icon_override = 'icons/vore/custom_clothes_vr.dmi'
- item_state = "scree-spess_mob"
-
- species_restricted = null
-
- mob_can_equip(var/mob/living/carbon/human/H, slot, disable_warning = 0)
- ..()
- if(H.ckey != "scree")
- H << "The gloves only have three fingers, not to mention the accomidation for extra limbs."
- return 0
- else
- return 1
-
-//scree:Scree
-/obj/item/clothing/under/fluff/screesuit
- name = "Scree's feathers"
- desc = "A mop of fluffy blue feathers, the honkmother only knows what kind of bird they originally came from."
-
- icon = 'icons/vore/custom_clothes_vr.dmi'
- icon_state = "screesuit"
-
- icon_override = 'icons/vore/custom_clothes_vr.dmi'
- item_state = "screesuit"
-
- mob_can_equip(var/mob/living/carbon/human/H, slot, disable_warning = 0)
- ..()
- if(H.ckey != "scree")
- H << "Are you just going to tape them on or what? This isn't gonna work."
- return 0
- else
- return 1
-
-//HOS Hardsuit
-/obj/item/clothing/suit/space/void/security/fluff/hos // ToDo: Rig version.
- name = "\improper prototype voidsuit"
- desc = "A customized security voidsuit made to match the Head of Security's obession with black. Has additional composite armor."
-
- icon = 'icons/vore/custom_clothes_vr.dmi'
- icon_state = "rig-hos"
-
- icon_override = 'icons/vore/custom_clothes_vr.dmi'
- item_state = "rig-hos_mob"
-
-//HOS Hardsuit Helmet
-/obj/item/clothing/head/helmet/space/void/security/fluff/hos // ToDo: Rig version.
- name = "\improper prototype voidsuit helmet"
- desc = "A customized security voidsuit helmet customized to include the Head of Security's signature hat. Has additional composite armor."
-
- icon = 'icons/vore/custom_clothes_vr.dmi'
- icon_state = "rig0-hos"
-
- icon_override = 'icons/vore/custom_clothes_vr.dmi'
- item_state = "rig0-hos_mob"
-
-//adk09:Lethe
-/obj/item/clothing/head/helmet/hos/fluff/lethe
- name = "Lethe's Hat"
- desc = " This is Lethe's Hat! A little tag attached inside reads: 'If found please return to Lethe! Or else!' It looks rather worn in. It also lacks armor."
- armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 0, rad = 0)
-
- icon = 'icons/obj/clothing/hats.dmi'
- icon_state = "hoscap"
-
- icon_override = 'icons/mob/head.dmi'
- item_state = "hoscap"
-
-/obj/item/weapon/storage/belt/utility/fluff/vulpine
- name = "vulpine belt"
- desc = "A tool-belt in Atmos colours."
-
- icon = 'icons/vore/custom_clothes_vr.dmi'
- icon_state = "vulpine_belt"
-
- icon_override = 'icons/vore/custom_clothes_vr.dmi'
- item_state = "vulpine_belt_mob"
-
- storage_slots = 9
- New()
- ..()
- new /obj/item/weapon/screwdriver(src)
- new /obj/item/weapon/wrench(src)
- new /obj/item/weapon/weldingtool(src)
- new /obj/item/weapon/crowbar(src)
- new /obj/item/weapon/wirecutters(src)
- new /obj/item/device/multitool(src)
- new /obj/item/stack/cable_coil(src, 30, "red")
- new /obj/item/stack/cable_coil(src, 30, "green")
-
-// molenar:Giliana Gamish
-/obj/item/clothing/suit/storage/toggle/labcoat/fluff/molenar
- name = "Gili Custom Labcoat"
- desc = " Custom made, lengthened labcoat with water resistant, durable material. And a custom set of holes inserted for Deathclaw anatomy. A tag inside has 'G.G.' monogram on it"
-
- icon = 'icons/vore/custom_clothes_vr.dmi'
- icon_state = "molenar"
- icon_open = "molenar_open"
- icon_closed = "molenar"
-
- icon_override = 'icons/vore/custom_clothes_vr.dmi'
- item_state = "molenar"
-
-//scree:Scree
-/obj/item/clothing/head/fluff/pompom
- name = "Pom-Pom"
- desc = "A fluffy little thingus on a thin stalk, ideal for impersonating moogles and anglerfish. Kupomnomnom."
-
- icon = 'icons/vore/custom_clothes_vr.dmi'
- icon_state = "pom"
-
- icon_override = 'icons/vore/custom_clothes_vr.dmi'
- item_state = "pom_mob"
-
- w_class = 2.0
- on = 0
- brightness_on = 5
- light_overlay = null
-
- attack_self(mob/user)
- if(!isturf(user.loc))
- user << "You cannot turn the light on while in this [user.loc]"
- return
-
- switch(on)
- if(0)
- on = 1
- user << "You light up your pom-pom."
- icon_state = "pom-on"
- item_state = "pom-on_mob"
- if(1)
- on = 0
- user << "You dim your pom-pom."
- icon_state = "pom"
- item_state = "pom_mob"
-
- update_light(user)
-
- if(ishuman(user))
- var/mob/living/carbon/human/H = user
- if(H.head == src)
- H.update_inv_head()
-
-// arokha : Aronai Kadigan
-/obj/item/clothing/head/helmet/space/fluff/aronai
- name = "Aronai's Helmet"
- desc = "This spacesuit helmet appears to be custom-made for someone with pointed ears and a muzzle. \
- It is form-fitting enough that it's unlikely to fit anyone but the person it was intended for. \
- 'Aronai' is printed on the back of the helmet."
-
- icon = 'icons/vore/custom_clothes_vr.dmi'
- icon_state = "arohelm"
-
- icon_override = 'icons/vore/custom_clothes_vr.dmi'
- item_state = "arohelm_mob"
-
- light_overlay = "helmet_light_dual"
- camera_networks = list(NETWORK_MEDICAL)
-
- mob_can_equip(var/mob/living/carbon/human/H, slot, disable_warning = 0)
- ..()
- if(H.ckey != "arokha")
- H << "You try to wear the helmet, but it doesn't fit."
- return 0
- else
- return 1
-
-/obj/item/clothing/suit/space/fluff/aronai
- name = "Aronai's Spacesuit"
- desc = "This spacesuit appears to be custom-made for someone with digitigrade legs and a tail. \
- It is form-fitting enough that it's unlikely to fit anyone but the person it was intended for. \
- 'Aronai' is printed just above the spine on the back of the neckpiece. It has no space for an O2 tank. \
- In fact, it's practically paper-thin. It doesn't seem to retain body heat at all."
-
- icon = 'icons/vore/custom_clothes_vr.dmi'
- icon_state = "arosuit"
-
- icon_override = 'icons/vore/custom_clothes_vr.dmi'
- item_state = "arosuit_mob"
- w_class = 4 //Oh but I can.
- allowed = list(/obj/item/device/suit_cooling_unit) //Can't fit O2 tanks
-
- mob_can_equip(var/mob/living/carbon/human/H, slot, disable_warning = 0)
- ..()
- if(H.ckey != "arokha")
- H << "You try to fit into the suit, to no avail."
- return 0
- else
- return 1
-
-//Viveret:Keturah
-/obj/item/clothing/under/dress/maid/
- name = "Maid Outfit"
- desc = "A french maid outfit made ironically in Gaia's version of the far east."
-
-//JoanRisu:Joan Risu
-/obj/item/clothing/head/helmet/space/fluff/joan
- name = "Joan's Combat Space Helmet"
- desc = "A customized combat space helmet made for a certain squirrely Commissioned Officer. \
- The top has the signature ears that are held up with a harder back covering. 'Joan' is engraved on the back.\
- There are some indications that the helmet has seen combat."
-
- icon = 'icons/vore/custom_clothes_vr.dmi'
- icon_state = "joanhelm"
-
- icon_override = 'icons/vore/custom_clothes_vr.dmi'
- item_state = "joanhelm_mob"
-
- light_overlay = "helmet_light"
-
-
-//JoanRisu:Joan Risu
-/obj/item/clothing/suit/space/fluff/joan
- name = "Joan's Combat Spacesuit"
- desc = "A customized combat spacesuit made for a certain squirrely Commissioned Officer, tail slot included. \
- On the right shoulder, the United Federation's Emblem sits proudly. On the left, there are faded indications \
- that there were different ranks painted on and off. On the collar where the suit is softer is a rectangular \
- name-tag with the name 'Joan' on it. There are indications that the suit has seen combat."
-
- icon = 'icons/vore/custom_clothes_vr.dmi'
- icon_state = "joansuit"
-
- icon_override = 'icons/vore/custom_clothes_vr.dmi'
- item_state = "joansuit_mob"
-
-/obj/item/clothing/under/rank/internalaffairs/fluff/joan
- desc = "The plain, professional attire of a Federation Law Enforcement Detective. The collar is immaculately starched."
- name = "Federation Dress Shirt"
- icon_state = "internalaffairs"
- item_state = "ba_suit"
- worn_state = "internalaffairs"
- rolled_sleeves = 0
- starting_accessories = list(/obj/item/clothing/accessory/black)
diff --git a/code/modules/vore/fluffstuff/custom_guns_vr.dm b/code/modules/vore/fluffstuff/custom_guns_vr.dm
deleted file mode 100644
index 314d1ecac23..00000000000
--- a/code/modules/vore/fluffstuff/custom_guns_vr.dm
+++ /dev/null
@@ -1,472 +0,0 @@
-/* TUTORIAL
- "icon" is the file with the HUD/ground icon for the item
- "icon_state" is the iconstate in this file for the item
- "icon_override" is the file with the on-mob icons, can be the same file
- "item_state" is the iconstate for the on-mob icons:
- item_state_s is used for worn uniforms on mobs
- item_state_r and item_state_l are for being held in each hand
-
- "item_state_slots" can replace "item_state", it is a list:
- item_state_slots["slotname1"] = "item state for that slot"
- item_state_slots["slotname2"] = "item state for that slot"
-
- on guns, in particular:
- item_state being null makes it look for exactly the icon_state in the on-mob file,
- including any 0,75,etc appended from the energy bar setting
- item_state being present prevents different mode sprites, sadly, but you may
- be able to override this on the gun itself with a proc
-*/
-
-/* TEMPLATE
-//ckey:Character Name
-/obj/item/weapon/gun/type/fluff/charactername
- name = ""
- desc = ""
-
- icon = 'icons/vore/custom_guns_vr.dmi'
- icon_state = "myicon"
-
- icon_override = 'icons/vore/custom_guns_vr.dmi'
- item_state = "myicon"
-
-*/
-
-//////////////////// Projectile Weapons ////////////////////
-// For general use
-/obj/item/weapon/gun/projectile/automatic/battlerifle
- name = "\improper BR55 Service Rifle"
- desc = "You had your chance to be afraid before you joined my beloved Corps! But, to guide you back to the true path, I brought this motivational device! Uses unique 9.5x40mm rounds."
- icon = 'icons/obj/gun_vr.dmi'
- icon_state = "battlerifle"
- icon_override = 'icons/obj/gun_vr.dmi'
- item_state = "battlerifle"
- item_icons = null
- w_class = 4
- recoil = 2 // The battlerifle was known for its nasty recoil.
- max_shells = 36
- caliber = "9.5x40mm"
- origin_tech = list(TECH_COMBAT = 4, TECH_MATERIAL = 2)
- ammo_type = /obj/item/ammo_casing/a95mm
- magazine_type = /obj/item/ammo_magazine/battlerifle
- allowed_magazines = list(/obj/item/ammo_magazine/battlerifle)
- fire_sound = 'sound/weapons/battlerifle.ogg'
- load_method = MAGAZINE
- slot_flags = SLOT_BACK
- //requires_two_hands = 1
- one_handed_penalty = 4 // The weapon itself is heavy
-
-// For general use
-/obj/item/weapon/gun/projectile/shotgun/pump/unsc
- name = "\improper M45E Tactical Shotgun"
- desc = "All you greenhorns who wanted to see Xenomorphs up close... this is your lucky day."
-
- icon = 'icons/obj/gun_vr.dmi'
- icon_state = "haloshotgun"
-
- icon_override = 'icons/obj/gun_vr.dmi'
- item_state = "haloshotgun"
- item_icons = null
-
- ammo_type = /obj/item/ammo_casing/shotgun
- max_shells = 12
-
-// jertheace : Jeremiah 'Ace' Acacius
-/obj/item/weapon/gun/projectile/shotgun/pump/unsc/fluff/ace
- name = "Ace's M45D Tactical Shotgun" // D-model holds half as many shells as the normal version so as not to be OP as shit. Better than shotgun, worse than combat shotgun.
- desc = "Owned by the respected (or feared?) veteran Captain of VORE Station. Inscribed on the barrel are the words \"Speak softly, and carry a big stick.\" It has a folding stock so it can fit into bags."
- w_class = 3 // Because collapsable stock so it fits in backpacks.
- ammo_type = /obj/item/ammo_casing/shotgun/stunshell
- max_shells = 6
-
-// bwoincognito:Tasald Corlethian
-/obj/item/weapon/gun/projectile/revolver/detective/fluff/tasald_corlethian
- name = "Big Iron revolver"
- desc = "A .38 revolver for veteran rangers on the planet Orta. The right side of the handle has a logo for Quarion industries, and the left is the Rangers. The primary ammo for this gun is .38 rubber. According to the CentCom Chief of Security, this revolver was more controversial than it needed to be."
-
- icon = 'icons/vore/custom_guns_vr.dmi'
- icon_state = "tasaldrevolver"
-
- item_state = "revolver"
-
- fire_sound = 'sound/weapons/pistol.ogg'
- ammo_type = /obj/item/ammo_casing/c38r
- var/recentpump = 0
- var/cocksound = 'sound/weapons/revolvercock.ogg'
-
- consume_next_projectile()
- if(chambered)
- return chambered.BB
- usr << "It's a single action revolver, pull the hammer back!"
- return null
-
- attack_self(mob/living/user as mob)
- if(world.time >= recentpump + 10)
- pump(user)
- recentpump = world.time
-
- proc/pump(mob/M as mob)
- playsound(M, cocksound, 60, 1)
-
- if(chambered)//We have a shell in the chamber
- chambered.loc = get_turf(src)//Eject casing
- chambered = null
-
- if(loaded.len)
- var/obj/item/ammo_casing/AC = loaded[1] //load next casing.
- loaded -= AC //Remove casing from loaded list.
- chambered = AC
-
- update_icon()
-
-// wankersonofjerkin : Ryan Winz
-/obj/item/weapon/gun/projectile/revolver/fluff/ryan_winz_revolver
- name = "Ryan's 'Devilgun'"
- desc = "You notice the serial number on the revolver is 666. The word 'Sin' is engraved on the blood-red rosewood grip. Uses .357 rounds."
-
- icon = 'icons/vore/custom_guns_vr.dmi'
- icon_state = "ryan_winz"
-
- item_state = "revolver"
-
-/obj/item/weapon/gun/projectile/revolver/fluff/ryan_winz_revolver/redemption
- name = "Ryan's 'Redeemer'"
- desc = "You notice the serial number on the revolver is 667. The word 'Redemption' is engraved on dark rosewood grip. Uses .357 rounds."
-
-// sasoperative : Joseph Skinner
-/obj/item/weapon/gun/projectile/revolver/shotgun/fluff/sasoperative
- name = "\"The Jury\""
- desc = "A customized variant of the \"The Judge\" revolver sold by Cybersun Industries, built specifically for Joseph Skinner. Uses 12g shells."
-
- icon = 'icons/vore/custom_guns_vr.dmi'
- icon_state = "jury"
-
- item_state = "gun"
-
- accuracy = 0 // Because I know you're not an idiot who needs to be nerfed. -Ace
- ammo_type = /obj/item/ammo_casing/shotgun/beanbag
-
-// For general use
-/obj/item/weapon/gun/projectile/automatic/stg
- name = "\improper Sturmgewehr"
- desc = "An STG-560 built by RauMauser. Experience the terror of the Siegfried line, redone for the 26th century! The Kaiser would be proud. Uses unique 7.92x33mm Kurz rounds."
- icon = 'icons/obj/gun_vr.dmi'
- icon_state = "stg60"
- item_state = "arifle"
- w_class = 4
- max_shells = 30
- caliber = "kurz"
- origin_tech = list(TECH_COMBAT = 4, TECH_MATERIAL = 2, TECH_ILLEGAL = 6)
- magazine_type = /obj/item/ammo_magazine/stg
- allowed_magazines = list(/obj/item/ammo_magazine/stg)
- load_method = MAGAZINE
-
-/obj/item/weapon/gun/projectile/automatic/stg/update_icon(var/ignore_inhands)
- ..()
- icon_state = (ammo_magazine)? "stg60" : "stg60-empty"
- item_state = (ammo_magazine)? "arifle" : "arifle-empty"
- if(!ignore_inhands) update_held_icon()
-
-// For general use
-/obj/item/weapon/gun/projectile/automatic/m14/fluff/gallian
- name = "\improper Gallian 4 Rifle"
- desc = "The ever reliable Gallian 4 Rifle. Produced by the National Armory on the Planet of Gaia located in Gallia, the Gallian 4 Rifle offers high accuracy and is widely used in the United Federation's Military. Uses 7.62mm rounds."
-
-// For general use
-/obj/item/weapon/gun/projectile/shotgun/pump/rifle/zmkar
- name = "\improper ZM Kar 1"
- desc = "A reproduction of an old ZM Kar 1 Rifle from the Autocratic East Europan Imperial Alliance of Gaia. Popular among imperials and collectors within the Federation and its allies. Uses 7.62mm rounds."
-
-// For general use
-/obj/item/weapon/gun/projectile/shotgun/pump/rifle/wicked
- name = "Wicked Butterfly ZM Kar S1"
- desc = "A customized bolt-action sniper rifle that was carried by some of the most revered snipers in the Federation. The stock has a small butterfly engraved on it. Uses 7.62mm rounds."
-
- icon = 'icons/vore/custom_guns_vr.dmi'
- icon_state = "wickedbutterfly"
-
- icon_override = 'icons/obj/gun_vr.dmi'
- item_state = "SVD"
- item_icons = null
-
- recoil = 2 //extra kickback
- accuracy = -1
- scoped_accuracy = 2
- load_method = SINGLE_CASING
-
- verb/scope()
- set category = "Object"
- set name = "Use Scope"
- set popup_menu = 1
-
- toggle_scope(2.0)
-
-// For general use
-/obj/item/weapon/gun/projectile/automatic/pdw // Vorestation SMG because the WT550 is ugly and bad.
- name = "personal defense weapon"
- desc = "The X-9MM is a select-fire personal defense weapon designed in-house by Xing Private Security. It was made to compete with the WT550 Saber, but hasn't yet caught on in popularity outside of the Virgo-Erigone system. Uses 9mm rounds."
- icon = 'icons/obj/gun_vr.dmi'
- icon_state = "pdw"
- item_state = "c20r" // Placeholder
- w_class = 3
- caliber = "9mm"
- origin_tech = list(TECH_COMBAT = 5, TECH_MATERIAL = 2)
- slot_flags = SLOT_BELT
- load_method = MAGAZINE
- magazine_type = /obj/item/ammo_magazine/mc9mml
- allowed_magazines = list(/obj/item/ammo_magazine/mc9mm, /obj/item/ammo_magazine/mc9mml)
-
- firemodes = list(
- list(mode_name="semiauto", burst=1, fire_delay=0, move_delay=null, burst_accuracy=null, dispersion=null),
- list(mode_name="3-round bursts", burst=3, fire_delay=null, move_delay=6, burst_accuracy=list(0,-1,-2), dispersion=list(0.0, 0.6, 0.6))
- )
-
-/obj/item/weapon/gun/projectile/automatic/pdw/update_icon(var/ignore_inhands)
- ..()
- if(istype(ammo_magazine,/obj/item/ammo_magazine/mc9mm))
- icon_state = "pdw-short"
- else
- icon_state = (ammo_magazine)? "pdw" : "pdw-empty"
- if(!ignore_inhands) update_held_icon()
-
-
-//Currently, the only problem I have now is that this weapon's item_state isn't working.
-/obj/item/weapon/gun/projectile/automatic/fluff/crestrose
- name = "Crescent Rose"
- desc = "Can you match my resolve? If so then you will succeed. I believe that the human spirit is indomitable. Keep Moving Forward. Uses 5.56mm rounds."
- icon = 'icons/vore/custom_guns_vr.dmi'
- icon_state = "crestrose_fold"
-
- icon_override = 'icons/vore/custom_guns_vr.dmi'
- item_state = "crestrose_fold_mob"
-
- w_class = 4
- origin_tech = list(TECH_COMBAT = 7, TECH_MATERIAL = 4)
- slot_flags = null
- fire_sound = 'sound/weapons/Gunshot_light.ogg'
- load_method = MAGAZINE
- force = 3
- recoil = 2
- var/on = 0
- auto_eject = 1
- auto_eject_sound = 'sound/weapons/smg_empty_alarm.ogg'
- hitsound = null
- caliber = "a556"
- magazine_type = /obj/item/ammo_magazine/a556
- allowed_magazines = list(/obj/item/ammo_magazine/a556)
-
-/obj/item/weapon/gun/projectile/automatic/fluff/crestrose/attack_self(mob/user as mob)
- on = !on
- if(on)
- user.visible_message("With a press of a button, [user]'s gun turns into a deadly scythe.",\
- "You extend The Rose's thorns.",\
- "You hear an ominous click.")
- icon = 'icons/vore/custom_guns_vr.dmi'
- icon_state = "crestrose"
- icon_override = 'icons/vore/custom_guns_vr.dmi'
- item_state = "crestrose_mob"
- w_class = 4
- force = 15//Obscenely robust
- attack_verb = list("slashed", "cut", "drives")
- hitsound = 'sound/weapons/bladeslice.ogg'
- else
- user.visible_message("\The [user] folds the weapon back up into a gun.",\
- "You fold up the weapon.",\
- "You hear a click.")
- icon = 'icons/vore/custom_guns_vr.dmi'
- icon_state = "crestrose_fold"
- icon_override = 'icons/vore/custom_guns_vr.dmi'
- item_state = "crestrose_fold_mob"
- w_class = 3
- force = 3//Not so obscenely robust
- attack_verb = list("hit", "melee'd")
- hitsound = null
- update_icon()
-
-
-/obj/item/weapon/gun/projectile/automatic/fluff/crestrose/handle_shield(mob/user, var/damage, atom/damage_source = null, mob/attacker = null, var/def_zone = null, var/attack_text = "the attack")
- if(default_parry_check(user, attacker, damage_source) && prob(50))
- user.visible_message("\The [user] parries [attack_text] with \the [src]!")
- playsound(user.loc, 'sound/weapons/punchmiss.ogg', 50, 1)
- return 1
- return 0
-
-// molenar:Kari Akiren
-/obj/item/weapon/gun/projectile/shotgun/pump/rifle/fluff/kari_akiren
- name = "clockwork rifle"
- desc = "Brass, copper, and lots of gears. Well lubricated for fluid movement as each round is loaded, locked, and fired. Just like clockwork."
-
- icon = 'icons/vore/custom_guns_vr.dmi'
- icon_state = "clockworkrifle"
-
- icon_override = 'icons/vore/custom_guns_vr.dmi'
- item_state = "clockworkrifle"
- item_icons = null
-
-//Razerwing:Archer Maximus
-/obj/item/weapon/gun/projectile/colt/fluff/archercolt
- name = "\improper MEUSOC .45"
- desc = "Some serious drywall work, coming up!"
-
-//////////////////// Energy Weapons ////////////////////
-//arokha:Aronai Kadigan
-/obj/item/weapon/gun/energy/gun/fluff/aro
- name = "\improper KIN-H21"
- desc = "The Kitsuhana Heavy Industries standard Imperial Navy energy sidearm, commonly called the KIN21. This one appears to have been modified to have additional features at the cost of battery life."
-
- icon = 'icons/vore/custom_guns_vr.dmi'
- icon_state = "kinh21stun100"
-
- item_state = "laser"
-
- modifystate = "kinh21stun"
-
- projectile_type = /obj/item/projectile/beam/stun/kin21
-
- max_shots = 8
- charge_cost = 125
- charge_meter = 1
-
- firemodes = list(
- list(mode_name="stun", projectile_type=/obj/item/projectile/beam/stun/kin21, modifystate="kinh21stun", fire_sound='sound/weapons/Taser.ogg'),
- list(mode_name="lethal", projectile_type=/obj/item/projectile/beam, modifystate="kinh21kill", fire_sound='sound/weapons/blaster_pistol.ogg'),
- list(mode_name="shrink", projectile_type=/obj/item/projectile/beam/shrinklaser, modifystate="kinh21shrink", fire_sound='sound/weapons/wave.ogg'),
- list(mode_name="grow", projectile_type=/obj/item/projectile/beam/growlaser, modifystate="kinh21grow", fire_sound='sound/weapons/pulse3.ogg'),
- )
-
-// -------------- Dominator -------------
-/obj/item/weapon/gun/energy/gun/fluff/dominator
- name = "\improper MWPSB Dominator"
- desc = "A MWPSB's Dominator from the Federation. Like the basic Energy Gun, this gun has two settings. It is used by the United Federation Public Safety Bureau's Criminal Investigation Division."
-
- icon = 'icons/vore/custom_guns_vr.dmi'
- icon_state = "dominatorstun100"
-
- icon_override = 'icons/vore/custom_guns_vr.dmi'
- item_state = null
- item_icons = null
-
- fire_sound = 'sound/weapons/Taser.ogg'
- projectile_type = /obj/item/projectile/beam/stun
-
- modifystate = "dominatorstun"
-
- firemodes = list(
- list(mode_name="stun", charge_cost=100,projectile_type=/obj/item/projectile/beam/stun, modifystate="dominatorstun", fire_sound='sound/weapons/Taser.ogg'),
- list(mode_name="lethal", charge_cost=125,projectile_type=/obj/item/projectile/beam/dominator, modifystate="dominatorkill", fire_sound='sound/weapons/gauss_shoot.ogg'),
- )
-
-// ------------ Energy Luger ------------
-/obj/item/weapon/gun/energy/gun/eluger
- name = "energy Luger"
- desc = "The finest sidearm produced by RauMauser, this pistol can punch a hole through inch thick steel plating. This ain't your great-grand-daddy's Luger! Can switch between stun and kill."
-
- icon = 'icons/obj/gun_vr.dmi'
- icon_state = "elugerstun100"
-
- item_state = "gun"
-
- charge_cost = 100 //How much energy is needed to fire.
- projectile_type = /obj/item/projectile/beam/stun
-
- modifystate = "elugerstun"
- fire_sound = 'sound/weapons/Taser.ogg'
-
- firemodes = list(
- list(mode_name="stun", charge_cost=100,projectile_type=/obj/item/projectile/beam/stun, modifystate="elugerstun", fire_sound='sound/weapons/Taser.ogg'),
- list(mode_name="lethal", charge_cost=200,projectile_type=/obj/item/projectile/beam/eluger, modifystate="elugerkill", fire_sound='sound/weapons/eluger.ogg'),
- )
-
-//////////////////// Custom Ammo ////////////////////
-//---------------- Beams ----------------
-/obj/item/projectile/beam/eluger
- name = "laser beam"
- icon_state = "emitter"
-
-/obj/item/projectile/beam/dominator
- name = "dominator lethal beam"
- icon_state = "xray"
- muzzle_type = /obj/effect/projectile/xray/muzzle
- tracer_type = /obj/effect/projectile/xray/tracer
- impact_type = /obj/effect/projectile/xray/impact
-
-/obj/item/projectile/beam/stun/kin21
- name = "kinh21 stun beam"
- icon_state = "omnilaser"
- muzzle_type = /obj/effect/projectile/laser_omni/muzzle
- tracer_type = /obj/effect/projectile/laser_omni/tracer
- impact_type = /obj/effect/projectile/laser_omni/impact
-
-//--------------- StG-60 ----------------
-/obj/item/ammo_magazine/stg
- name = "box mag (7.92x33mm Kurz)"
- icon = 'icons/obj/ammo_vr.dmi'
- icon_state = "stg_30rnd"
- caliber = "kurz"
- ammo_type = /obj/item/ammo_casing/stg
- max_ammo = 30
- mag_type = MAGAZINE
-
-/obj/item/ammo_casing/stg
- desc = "A 7.9233mm Kurz casing."
- icon_state = "rifle-casing"
- caliber = "kurz"
- projectile_type = /obj/item/projectile/bullet/rifle/a762
-
-/obj/item/ammo_magazine/stg/empty
- initial_ammo = 0
-
-//------------- Battlerifle -------------
-/obj/item/ammo_magazine/battlerifle
- name = "box mag (9.5x40mm)"
- icon = 'icons/obj/ammo_vr.dmi'
- icon_state = "battlerifle"
- caliber = "9.5x40mm"
- ammo_type = /obj/item/ammo_casing/a95mm
- max_ammo = 36
- mag_type = MAGAZINE
- multiple_sprites = 1
-
-/obj/item/ammo_casing/a95mm
- desc = "A 9.5x40mm bullet casing."
- icon_state = "rifle-casing"
- caliber = "9.5x40mm"
- projectile_type = /obj/item/projectile/bullet/rifle/a95mm
-
-/obj/item/projectile/bullet/rifle/a95mm
- damage = 40
- penetrating = 2 // Better penetration than the 7.62mm
-
-/obj/item/ammo_magazine/battlerifle/empty
- initial_ammo = 0
-
-//---------------- PDW ------------------
-/obj/item/ammo_magazine/mc9mml
- name = "\improper SMG magazine (9mm)"
- icon = 'icons/obj/ammo_vr.dmi'
- icon_state = "smg"
- origin_tech = list(TECH_COMBAT = 2)
- mag_type = MAGAZINE
- matter = list(DEFAULT_WALL_MATERIAL = 1800)
- caliber = "9mm"
- ammo_type = /obj/item/ammo_casing/c9mm
- max_ammo = 30
- multiple_sprites = 1
-
-/obj/item/ammo_magazine/mc9mml/empty
- initial_ammo = 0
-
-/obj/item/ammo_magazine/mc9mml/ap
- name = "\improper SMG magazine (9mm armor-piercing)"
- ammo_type = /obj/item/ammo_casing/c9mm/ap
-
-/obj/item/ammo_magazine/mc9mml/flash
- name = "\improper SMG magazine (9mm flash)"
- ammo_type = /obj/item/ammo_casing/c9mmf
-
-/obj/item/ammo_magazine/mc9mml/rubber
- name = "\improper SMG magazine (9mm rubber)"
- ammo_type = /obj/item/ammo_casing/c9mmr
-
-/obj/item/ammo_magazine/mc9mml/practice
- name = "\improper SMG magazine (9mm practice)"
- ammo_type = /obj/item/ammo_casing/c9mmp
\ No newline at end of file
diff --git a/code/modules/vore/fluffstuff/custom_items_vr.dm b/code/modules/vore/fluffstuff/custom_items_vr.dm
deleted file mode 100644
index 4f53c5866a2..00000000000
--- a/code/modules/vore/fluffstuff/custom_items_vr.dm
+++ /dev/null
@@ -1,345 +0,0 @@
-/* TUTORIAL
- "icon" is the file with the HUD/ground icon for the item
- "icon_state" is the iconstate in this file for the item
- "icon_override" is the file with the on-mob icons, can be the same file
- "item_state" is the iconstate for the on-mob icons:
- item_state_s is used for worn uniforms on mobs
- item_state_r and item_state_l are for being held in each hand
-
- "item_state_slots" can replace "item_state", it is a list:
- item_state_slots["slotname1"] = "item state for that slot"
- item_state_slots["slotname2"] = "item state for that slot"
-*/
-
-/* TEMPLATE
-//ckey:Character Name
-/obj/item/weapon/fluff/charactername
- name = ""
- desc = ""
-
- icon = 'icons/vore/custom_items_vr.dmi'
- icon_state = "myicon"
-
- icon_override = 'icons/vore/custom_items_vr.dmi'
- item_state = "myicon"
-
-*/
-
-//For general use
-/obj/item/device/modkit_conversion
- name = "modification kit"
- desc = "A kit containing all the needed tools and parts to modify a suit and helmet."
- icon = 'icons/vore/custom_items_vr.dmi'
- icon_state = "modkit"
- var/parts = 3
- var/from_helmet = /obj/item/clothing/head/helmet/space/void
- var/from_suit = /obj/item/clothing/suit/space/void
- var/to_helmet = /obj/item/clothing/head/cardborg
- var/to_suit = /obj/item/clothing/suit/cardborg
-
- //Conversion proc
- afterattack(obj/O, mob/user as mob)
- var/flag
- var/to_type
- if(istype(O,from_helmet))
- flag = 1
- to_type = to_helmet
- else if(istype(O,from_suit))
- flag = 2
- to_type = to_suit
- else
- return
- if(!(parts & flag))
- user << "This kit has no parts for this modification left."
- return
- if(istype(O,to_type))
- user << "[O] is already modified."
- return
- if(!isturf(O.loc))
- user << "[O] must be safely placed on the ground for modification."
- return
- playsound(user.loc, 'sound/items/Screwdriver.ogg', 100, 1)
- var/N = new to_type(O.loc)
- user.visible_message("[user] opens \the [src] and modifies \the [O] into \the [N].","You open \the [src] and modify \the [O] into \the [N].")
- qdel(O)
- parts &= ~flag
- if(!parts)
- qdel(src)
-
-//JoanRisu:Joan Risu
-/obj/item/weapon/flame/lighter/zippo/fluff/joan
- name = "Federation Zippo Lighter"
- desc = "A red zippo lighter with the United Federation Logo on it."
- icon = 'icons/vore/custom_items_vr.dmi'
- icon_state = "joanzip"
-
-//JoanRisu:Joan Risu
-/obj/item/weapon/sword/fluff/joanaria
- name = "Aria"
- desc = "A beautifully crafted rapier owned by Joan Risu. It has a thin blade and is used for quick attacks."
- icon = 'icons/vore/custom_items_vr.dmi'
- icon_state = "joanaria"
- icon_override = 'icons/vore/custom_items_vr.dmi'
- item_state = "joanariamob"
- origin_tech = "materials=7"
- force = 15
- sharp = 1
- edge = 1
- hitsound = 'sound/weapons/bladeslice.ogg'
-
-
-/obj/item/weapon/sword/fluff/joanaria/handle_shield(mob/user, var/damage, atom/damage_source = null, mob/attacker = null, var/def_zone = null, var/attack_text = "the attack")
-
- if(default_parry_check(user, attacker, damage_source) && prob(75))
- user.visible_message("\The [user] parries [attack_text] with \the [src]!")
- playsound(user.loc, 'sound/weapons/punchmiss.ogg', 50, 1)
- return 1
- return 0
-
-//joanrisu:Katarina Eine
-/obj/item/weapon/material/hatchet/tacknife/combatknife/fluff/katarina
- name = "tactical Knife"
- desc = "A tactical knife with a small butterly engraved on the blade."
-
-obj/item/weapon/material/hatchet/tacknife/combatknife/fluff/katarina/handle_shield(mob/user, var/damage, atom/damage_source = null, mob/attacker = null, var/def_zone = null, var/attack_text = "the attack")
-
- if(default_parry_check(user, attacker, damage_source) && prob(75))
- user.visible_message("\The [user] parries [attack_text] with \the [src]!")
- playsound(user.loc, 'sound/weapons/punchmiss.ogg', 50, 1)
- return 1
- return 0
-
-//For General use
-/obj/item/weapon/sword/fluff/joanaria/scisword
- name = "Scissor Blade"
- desc = "A sword that can not only cut down your enemies, it can also cut fabric really neatly"
- icon = 'icons/vore/custom_items_vr.dmi'
- icon_state = "scisword"
- origin_tech = "materials=7"
-
-
-//john.wayne9392:Harmony Prechtl
-/obj/item/weapon/twohanded/fireaxe/fluff/mjollnir
- name = "Mjollnir"
- desc = "Large hammer that looks like it can do a great deal of damage if properly used."
- icon = 'icons/vore/custom_items_vr.dmi'
- icon_state = "harmonymjollnir"
- origin_tech = "materials=7"
- attack_verb = list("attacked", "hammered", "smashed", "slammed", "crushed")
-
-//JoanRisu:Joan Risu
-/obj/item/weapon/card/id/centcom/fluff/joanbadge
- name = "Faded Badge"
- desc = "A faded badge, backed with leather, that reads 'NT Security Force' across the front."
- icon = 'icons/vore/custom_items_vr.dmi'
- icon_state = "joanbadge"
- registered_name = "Joan Risu"
- assignment = "Centcom Officer"
-
-
- attack_self(mob/user as mob)
- if(isliving(user))
- user.visible_message("[user] flashes their golden security badge.\nIt reads:NT Security.","You display the faded badge.\nIt reads: NT Security.")
-
- attack(mob/living/carbon/human/M, mob/living/user)
- if(isliving(user))
- user.visible_message("[user] invades [M]'s personal space, thrusting [src] into their face insistently.","You invade [M]'s personal space, thrusting [src] into their face insistently.")
-
-//JoanRisu:Joan Risu
-/obj/item/device/pda/heads/hos/fluff/joanpda
- icon = 'icons/vore/custom_items_vr.dmi'
- icon_state = "pda-joan"
-
-//Vorrarkul:Lucina Dakarim
-/obj/item/device/pda/heads/hos/fluff/lucinapda
- icon = 'icons/vore/custom_items_vr.dmi'
- icon_state = "pda-lucina"
-
-//john.wayne9392:Harmony Prechtl
-/obj/item/device/modkit_conversion/fluff/harmonyspace
- name = "Harmony's captain space suit modkit"
- desc = "A kit containing all the needed tools and parts to modify a Captain's hardsuit. It has green and yellow parts inside."
-
- icon = 'icons/vore/custom_items_vr.dmi'
- icon_state = "harmony_kit"
-
- from_helmet = /obj/item/clothing/head/helmet/space/capspace
- from_suit = /obj/item/clothing/suit/armor/captain
- to_helmet = /obj/item/clothing/head/helmet/space/capspace/fluff/harmhelm
- to_suit = /obj/item/clothing/suit/armor/captain/fluff/harmsuit
-
-//john.wayne9392:Harmony Prechtl
-/obj/item/device/modkit_conversion/fluff/harmonysuit
- name = "Harmony's captain suit modkit"
- desc = "A sewing kit containing all the needed tools and fabric to modify a Captain's suit and hat. It has green and yellow fabrics inside."
-
- icon = 'icons/vore/custom_items_vr.dmi'
- icon_state = "harmony_kit"
-
- from_helmet = /obj/item/clothing/head/caphat
- from_suit = /obj/item/clothing/under/rank/captain
- to_helmet = /obj/item/clothing/head/centhat/fluff/harmhat
- to_suit = /obj/item/clothing/under/rank/captain/fluff/harmuniform
-
-//scree:Scree
-/obj/item/device/modkit_conversion/fluff/screekit
- name = "Scree's hardsuit modification kit"
- desc = "A kit containing all the needed tools and parts to modify a hardsuit for a specific user. This one looks like it's fitted for a winged creature."
-
- icon = 'icons/vore/custom_items_vr.dmi'
- icon_state = "modkit"
-
- from_helmet = /obj/item/clothing/head/helmet/space/void/engineering
- from_suit = /obj/item/clothing/suit/space/void/engineering
- to_helmet = /obj/item/clothing/head/helmet/space/void/engineering/fluff/screehelm
- to_suit = /obj/item/clothing/suit/space/void/engineering/fluff/screespess
-
-//General Use
-/obj/item/weapon/flag
- name = "Nanotrasen Banner"
- desc = "I pledge allegiance to the flag of a megacorporation in space."
-
- icon = 'icons/vore/custom_items_vr.dmi'
- icon_state = "Flag_Nanotrasen"
-
- icon_override = 'icons/vore/custom_items_vr.dmi'
- item_state = "Flag_Nanotrasen_mob"
-
- attack_self(mob/user as mob)
- if(isliving(user))
- user.visible_message("[user] waves their Banner around!","You wave your Banner around.")
-
- attack(mob/living/carbon/human/M, mob/living/user)
- if(isliving(user))
- user.visible_message("[user] invades [M]'s personal space, thrusting [src] into their face insistently.","You invade [M]'s personal space, thrusting [src] into their face insistently.")
-
-
- federation
- name = "Federation Banner"
- desc = "Space, The Final Frontier. Sorta. Just go with it and say the damn oath."
-
- icon = 'icons/vore/custom_items_vr.dmi'
- icon_state = "flag_federation"
-
- icon_override = 'icons/vore/custom_items_vr.dmi'
- item_state = "flag_federation_mob"
-
- xcom
- name = "Alien Combat Command Banner"
- desc = "A banner bearing the symbol of a task force fighting an unknown alien power."
-
- icon = 'icons/vore/custom_items_vr.dmi'
- icon_state = "flag_xcom"
-
- icon_override = 'icons/vore/custom_items_vr.dmi'
- item_state = "flag_xcom_mob"
-
- advent
- name = "ALIEN Coalition Banner"
- desc = "A banner belonging to traitors who work for an unknown alien power."
-
- icon = 'icons/vore/custom_items_vr.dmi'
- icon_state = "flag_advent"
-
- icon_override = 'icons/vore/custom_items_vr.dmi'
- item_state = "flag_advent_mob"
-
-
-//zodiacshadow: ?
-/obj/item/device/radio/headset/fluff/zodiacshadow
- name = "Nehi's 'phones"
- desc = "A pair of old-fashioned purple headphones for listening to music that also double as an NT-approved headset; they connect nicely to any standard PDA. One side is engraved with the letters NEHI, the other having an elaborate inscription of the words \"My voice is my weapon of choice\" in a fancy font. A modern polymer allows switching between modes to either allow one to hear one's surroundings or to completely block them out."
-
- icon = 'icons/vore/custom_items_vr.dmi'
- icon_state = "headphones"
-
- icon_override = 'icons/vore/custom_items_vr.dmi'
- item_state = "headphones_mob"
-
-
-// OrbisA: Richard D'angelo
-/obj/item/weapon/melee/fluff/holochain
- name = "Holographic Chain"
- desc = "A High Tech solution to simple perversions. It has a red leather handle and the initials R.D. on the silver base."
-
- icon = 'icons/vore/custom_items_vr.dmi'
- icon_state = "holochain"
-
- icon_override = 'icons/vore/custom_items_vr.dmi'
- item_state = "holochain_mob"
-
- flags = CONDUCT | NOBLOODY
- no_attack_log = 1 //if you want to turn on the attack log for this, comment/delete this line. Orbis.
- slot_flags = SLOT_BELT
- force = 10
- throwforce = 3
- w_class = 3
- damtype = HALLOSS
- attack_verb = list("flogged", "whipped", "lashed", "disciplined", "chastised", "flayed")
-
-// joey4298:Emoticon
-/obj/item/device/fluff/id_kit_mime
- name = "Mime ID reprinter"
- desc = "Stick your ID in one end and it'll print a new ID out the other!"
- icon = 'icons/obj/bureaucracy.dmi'
- icon_state = "labeler1"
-
- afterattack(obj/O, mob/user as mob)
- var/new_icon = "mime"
- if(istype(O,/obj/item/weapon/card/id) && O.icon_state != new_icon)
- //O.icon = src.icon // just in case we're using custom sprite paths with fluff items.
- O.icon_state = new_icon // Changes the icon without changing the access.
- playsound(user.loc, 'sound/items/polaroid2.ogg', 100, 1)
- user.visible_message(" [user] reprints their ID.")
- del(src)
- else if(O.icon_state == new_icon)
- user << "[O] already has been reprinted."
- return
- else
- user << "This isn't even an ID card you idiot."
- return
-
-//arokha:Aronai Kadigan
-/obj/item/weapon/card/id/centcom/fluff/aro
- registered_name = "CONFIGURE ME"
- assignment = "CC Medical"
- var/configured = 0
-
- attack_self(mob/user as mob)
- if(configured == 1) return ..()
-
- user.set_id_info(src)
- configured = 1
- user << "Card settings set."
-
-//arokha:Aronai Kadigan
-/obj/item/weapon/reagent_containers/hypospray/fluff/aronai
- name = "worn hypospray"
- desc = "This hypospray seems a bit well-used. The blue band indicates it's from the CentCom medical division. There's an 'A' scratched into the bottom."
- icon = 'icons/vore/custom_items_vr.dmi'
- icon_state = "aro_hypo"
-
- New()
- ..()
- reagents.add_reagent("inaprovaline", 5)
- reagents.add_reagent("tricordrazine", 25)
-
-//Swat43:Fortune Bloise
-/obj/item/weapon/storage/backpack/satchel/fluff/swat43bag
- name = "Coloured Satchel"
- desc = "That's a coloured satchel with red stripes, with a heart and ripley logo on each side."
- icon = 'icons/vore/custom_items_vr.dmi'
- icon_state = "swat43-bag"
-
- icon_override = 'icons/vore/custom_items_vr.dmi'
- item_state = "swat43-bag_mob"
-
-
-//Dhaeleena:Dhaeleena M'iar
-/obj/item/clothing/accessory/medal/silver/security/fluff/dhael
- desc = "An award for distinguished combat and sacrifice in defence of corporate commercial interests. Often awarded to security staff. It's engraved with the letters S.W.A.T."
-
-//Vorrarkul:Lucina Dakarim
-/obj/item/clothing/accessory/medal/gold/fluff/lucina
- name = "Medal of Medical Excellence"
- desc = "A medal awarded to Lucina Darkarim for excellence in medical service."
diff --git a/code/modules/vore/fluffstuff/custom_permits_vr.dm b/code/modules/vore/fluffstuff/custom_permits_vr.dm
deleted file mode 100644
index 19eddd95da4..00000000000
--- a/code/modules/vore/fluffstuff/custom_permits_vr.dm
+++ /dev/null
@@ -1,130 +0,0 @@
-// BEGIN - DO NOT EDIT PROTOTYPE
-/obj/item/fluff/permit
- name = "Sample Permit"
- desc = {"There is a bright red SAMPLE PERMIT stamped across the stock photo displayed on the card. Obviously this is only an example to educate security.
- NAME: First Last | RACE: Human | HOMEWORLD: Moon (if applicable), Planet, System
- DOB: DD/Mon/YYYY | HEIGHT: XXcm | SEX: Female
-
- The individual named above is licensed by the Nanotrasen Department of Civil Protection to ___________________.
- This license expires on DD/Month/YYYY and must be renewed by CentCom prior to this date."}
- icon = 'icons/obj/card.dmi'
- icon_state = "guest"
- w_class = 1
-// END - DO NOT EDIT PROTOTYPE
-
-/* TEMPLATE
-/obj/item/fluff/permit/charactername
- name = "Name's Thing Permit"
- desc = {"
- NAME: Firstname Lastname | RACE: Human | HOMEWORLD: Earth, Sol
- DOB: DD/Mon/YYYY | HEIGHT: XXXcm | SEX: X
-
- The individual named above is licensed by the Nanotrasen Department of Civil Protection to openly carry XYZ. CONDITIONS.
- This license expires on DD/Mon/YYYY and must be renewed by CentCom prior to this date."}
-*/
-
-// bwoincognito:Tasald Corlethian
-/obj/item/fluff/permit/tasald_corlethian
- name = "Tasald Ajax Corlethian's Sidearm Permit"
- desc = {"
- NAME: Tasald Ajax Corlethian | RACE: Vulpine | HOMEWORLD: Iscyn, Orta
- DOB: 09/Sep/2529 | HEIGHT: 187cm | SEX: Male
-
- The individual named above is licensed by the Nanotrasen Department of Civil Protection to carry one .38 pistol.
- This license expires on 30/March/2561 and must be renewed by CentCom prior to this date."}
-
-/*
-// jertheace:Jeremiah 'Ace' Acacius
-/obj/item/fluff/permit/jerace
- name = "Ace's Shotgun Permit"
- desc = {"
- NAME: Jeremiah Acacius | RACE: Human | HOMEWORLD: Earth, Sol
- DOB: 17/Jun/2532 | HEIGHT: 178cm | SEX: Male
-
- The individual named above is licensed by the Nanotrasen Department of Civil Protection to openly carry one M45D shotgun loaded with less-than-lethal munitions as a head of staff. Else this weapon is to be turned in to security for holding until the end of the shift.
- This license expires on 01/Jun/2560 and must be renewed by CentCom prior to this date."}
-*/
-
-/*
-// sasoperative:Joseph Skinner
-/obj/item/fluff/permit/josephskinner
- name = "Joseph Skinner's 12g Revolver Permit"
- desc = {"
- NAME: Joseph Cyrus Skinner | RACE: Human | HOMEWORLD: Earth, Sol
- DOB: 10/Jun/2532 | HEIGHT: 162.5cm | SEX: Male
-
- The individual named above is licensed by the Nanotrasen Department of Civil Protection to carry one 12 gauge revolver loaded with less-than-lethal munitions as a member of security or head of staff. Else this weapon is to be turned in to security for holding until the end of the shift.
- This license expires on 29/Nov/2559 and must be renewed by CentCom prior to this date."}
-*/
-
-/*
-// wankersonofjerkin:Ryan Winz
-/obj/item/fluff/permit/ryanwinz
- name = "Ryan Winz's Revolver Permit"
- desc = {"
- NAME: Ryan Winz | RACE: Human | HOMEWORLD: New Ekaterina, Moskva
- DOB: 27/Oct/2536 | HEIGHT: 172cm | SEX: Male
-
- The individual named above is licensed by the Nanotrasen Department of Civil Protection to openly carry one Colt Single-Action Army revolver as a security officer or head of staff. Else this weapon is to be turned in to security for holding until the end of the shift.
- This license expires on 26/Dec/2559 and must be renewed by CentCom prior to this date."}
-*/
-
-// bwoincognito:Tasald Corlethian
-/obj/item/fluff/permit/tasald_corlethian
- name = "Tasald Ajax Corlethian's Sidearm Permit"
- desc = {"
- NAME: Tasald Ajax Corlethian | RACE: Vulpine | HOMEWORLD: Iscyn, Orta
- DOB: 09/Sep/2529 | HEIGHT: 187cm | SEX: Male
-
- The individual named above is licensed by the Nanotrasen Department of Civil Protection to carry one .38 pistol.
- This license expires on 30/March/2561 and must be renewed by CentCom prior to this date."}
-
-// arokha:Aronai Kadigan
-/obj/item/fluff/permit/aronai_kadigan
- name = "Aronai Kadigan's Sidearm Permit"
- desc = {"
- NAME: Aronai Kadigan | RACE: Cross Fox | HOMEWORLD: New Kitsuhana, KHI1
- DOB: 12/Jul/2530 | HEIGHT: 188cm | SEX: Male
-
- The individual named above is licensed by the Nanotrasen Department of Civil Protection to carry one KIN-H21 (Egun Variant).
- This license expires on 30/Sep/2560 and must be renewed by CentCom prior to this date."}
-
-// joanrisu:Joan Risu
-/obj/item/fluff/permit/joanrisu
- name = "Joan Risu's Sidearm Permit"
- desc = {"
- NAME: Joan Risu | RACE: Squirrelkin | HOMEWORLD: Luna, Gaia, Koi
- DOB: 16/Apr/2536 | HEIGHT: 161cm | SEX: Female
-
- The individual named above is licensed by the Nanotrasen Department of Civil Protection to carry one MWPSB Dominator.
- This license expires on 11/Dec/2560 and must be renewed by CentCom prior to this date."}
-
-// molenar:Kari Akiren
-/obj/item/fluff/permit/kari_akiren
- name = "Kari Akiren's Rifle Permit"
- desc = {"
- NAME: Kari Akiren | RACE: Inkling | HOMEWORLD: Supesu
- DOB: 26-Jun-2553 | HEIGHT: 163cm | SEX: Female
-
- The individual named above is licensed by the Nanotrasen Department of Civil Protection to carry one Clockwork Rifle (bolt-action variant).
- This license expires on 14/Dec/2560 and must be renewed by CentCom prior to this date."}
-
-//eekasqueak: Serkii Miishy
-/obj/item/fluff/permit/serkiimiishy
- name = "Serkii Miishy's Stun Revolver Permit"
- desc = {"
- NAME: Serkii Miishy | RACE: Mousemorph | HOMEWORLD: Mars, Sol
- DOB: 10/9/2441 | HEIGHT: 122cm | SEX: Male
-
- The individual named above is licensed by the Nanotrasen Department of Civil Protection to carry one stun revolver.
- This license expires on 30/March/2561 and must be renewed by CentCom prior to this date."}
-
-//Razerwing:Archer Maximus
-/obj/item/fluff/permit/archermaximus
- name = "Archer Maximus's MEUSOC 45 Permit"
- desc = {"
- NAME: FArcher Maximus | RACE: Human | HOMEWORLD: Charybdis
- DOB: 04/18/2521 | HEIGHT: 172.7cm | SEX: female
-
- The individual named above is licensed by the Nanotrasen Department of Civil Protection to openly carry a MEUSOC 45. CONDITIONS.
- This license expires on 31/May/2561 and must be renewed by CentCom prior to this date."}
diff --git a/code/modules/vore/weight/fit_vr.dmi b/code/modules/vore/weight/fit_vr.dmi
deleted file mode 100644
index 07d68935323..00000000000
Binary files a/code/modules/vore/weight/fit_vr.dmi and /dev/null differ
diff --git a/code/modules/vore/weight/fitness_machines_vr.dm b/code/modules/vore/weight/fitness_machines_vr.dm
deleted file mode 100644
index 55e4d012d83..00000000000
--- a/code/modules/vore/weight/fitness_machines_vr.dm
+++ /dev/null
@@ -1,141 +0,0 @@
-/obj/machinery/workout
- name = "fitness lifter"
- icon = 'code/modules/vore/weight/fit_vr.dmi'
- icon_state = "fitnesslifter" //Sprites ripped from goon.
- desc = "A utility often used to lose weight."
- anchored = 1
- use_power = 0
- idle_power_usage = 0
- active_power_usage = 0
-
-/obj/machinery/workout/attackby(obj/item/W, var/mob/living/user)
- if(istype(W, /obj/item/weapon/wrench))
- src.add_fingerprint(user)
- user.visible_message("[user] has [anchored ? "un" : ""]secured \the [src].", "You [anchored ? "un" : ""]secure \the [src].")
- anchored = !anchored
- playsound(src.loc, 'sound/items/Ratchet.ogg', 50, 1)
- return
-
-/obj/machinery/workout/attack_hand(var/mob/living/user)
- if(!anchored)
- user << "For safety reasons, you are required to have this equipment wrenched down before using it!"
- return
-
- else if(user.loc != src.loc)
- user << "For safety reasons, you need to be sitting in the fitness lifter for it to work!"
- return
-
- else if(user.nutrition > 70 && user.weight > 70) //If they have enough nutrition and body weight, they can exercise.
- user.setClickCooldown(40)
- user.dir = src.dir
- user.nutrition = user.nutrition - 20 //Working out burns a lot of calories!
- user.weight = user.weight - 0.05 //Burn a bit of weight. Not much, but quite a bit. This can't be spammed, as they'll need nutrition to be able to work out.
- flick("fitnesslifter2",src)
- user << "You lift some weights."
-
- else if(user.nutrition < 70)
- user << "You need more energy to workout on the mat!"
-
- else if(user.weight < 70)
- user << "You're too skinny to risk losing any more weight!"
-
- else
- user << "You're unable to use the fitness lifter."
- return //Something went wrong. They shouldn't see this.
-
-/obj/machinery/workout/shipped
- anchored = 0 // For cargo.
-
-
-/obj/machinery/punching_bag
- name = "punching bag"
- icon = 'code/modules/vore/weight/fit_vr.dmi'
- icon_state = "punchingbag"
- desc = "A bag often used to releive stress and burn fat."
- anchored = 1
- density = 1
- use_power = 0
- idle_power_usage = 0
- active_power_usage = 0
-
-/obj/machinery/punching_bag/attack_hand(var/mob/living/user)
-
- if(user.nutrition > 35 && user.weight > 70) //If they have enough nutrition and body weight, they can exercise.
- user.setClickCooldown(10)
- user.nutrition = user.nutrition - 10 //A punching bag uses less calories.
- user.weight = user.weight - 0.025 //And burns less weight.
- flick("punchingbag2",src)
- var/message = pick(
- "You slam your fist into the punching bag.",
- "You jab the punching bag with your elbow.")
- user << message
- playsound(src.loc, "punch", 50, 1)
-
- else if(user.nutrition < 35)
- user << "You need more energy to workout on the mat!"
-
- else if(user.weight < 70)
- user << "You're too skinny to risk losing any more weight!"
-
- else
- user << "You're unable to use the punching bag."
- return //Something went wrong. They shouldn't see this.
-
-
-/obj/machinery/punching_clown
- name = "clown punching bag"
- icon = 'code/modules/vore/weight/fit_vr.dmi'
- icon_state = "bopbag"
- desc = "A bag often used to releive stress and burn fat. It has a clown on the front of it."
- anchored = 0
- density = 1
- use_power = 0
- idle_power_usage = 0
- active_power_usage = 0
-
-/obj/machinery/punching_clown/attack_hand(var/mob/living/user)
-
- if(user.nutrition > 35 && user.weight > 70) //If they have enough nutrition and body weight, they can exercise.
- user.setClickCooldown(10)
- user.nutrition = user.nutrition - 10
- user.weight = user.weight - 0.025
- flick("bopbag2",src)
- var/message = pick(
- "You slam your fist into the punching bag.",
- "You jab the punching bag with your elbow.",
- "You hammer the clown right in it's face with your fist.",
- "A honk emits from the punching bag as you hit it.")
- user << message
- playsound(src.loc, 'sound/items/bikehorn.ogg', 50, 1)
- playsound(src.loc, "clownstep", 50, 1)
- playsound(src.loc, "punch", 50, 1)
-
- else if(user.nutrition < 35)
- user << "You need more energy to workout on the mat!"
-
- else if(user.weight < 70)
- user << "You're too skinny to risk losing any more weight!"
-
- else
- user << "You're unable to use the punching bag."
- return //Something went wrong. They shouldn't see this.
-
-/obj/machinery/scale
- name = "scale"
- icon = 'code/modules/vore/weight/fit_vr.dmi'
- icon_state = "scale"
- desc = "A scale used to measure ones weight relative to their size and species."
- anchored = 1 // Set to 0 when we can construct or dismantle these.
- use_power = 0
- idle_power_usage = 0
- active_power_usage = 0
- var/kilograms
-
-/obj/machinery/scale/attack_hand(var/mob/living/user)
- if(user.loc != src.loc)
- user << "You need to be standing on top of the scale for it to work!"
- return
- if(user.weight) //Just in case.
- kilograms = round(text2num(user.weight),4) / 2.20463
- user << "Your relative weight is [user.weight]lb / [kilograms]kg."
- user.visible_message("[user]'s relative weight is [user.weight]lb / [kilograms]kg.")
diff --git a/code/orphaned_procs/dbcore.dm b/code/orphaned_procs/dbcore.dm
index 83f7d50db3f..28d3fd5a1a0 100644
--- a/code/orphaned_procs/dbcore.dm
+++ b/code/orphaned_procs/dbcore.dm
@@ -1,4 +1,4 @@
-
+#define FAILED_DB_CONNECTION_CUTOFF 5
//cursors
#define Default_Cursor 0
@@ -47,6 +47,7 @@ DBConnection
//
var/server = ""
var/port = 3306
+ var/failed_connections = 0
DBConnection/New(dbi_handler,username,password_handler,cursor_handler)
src.dbi = dbi_handler
@@ -55,7 +56,26 @@ DBConnection/New(dbi_handler,username,password_handler,cursor_handler)
src.default_cursor = cursor_handler
_db_con = _dm_db_new_con()
-DBConnection/proc/Connect(dbi_handler=src.dbi,user_handler=src.user,password_handler=src.password,cursor_handler)
+DBConnection/proc/Connect()
+ if(IsConnected())
+ return TRUE
+
+ if(failed_connections > FAILED_DB_CONNECTION_CUTOFF) //If it failed to establish a connection more than 5 times in a row, don't bother attempting to connect anymore.
+ return FALSE
+
+ var/user = sqlfdbklogin
+ var/pass = sqlfdbkpass
+ var/db = sqlfdbkdb
+ var/address = sqladdress
+ var/port = sqlport
+
+ doConnect("dbi:mysql:[db]:[address]:[port]","[user]","[pass]")
+ . = IsConnected()
+ if (!. && config.sql_enabled)
+ log_world("SQL error: " + ErrorMsg())
+ ++failed_connections
+
+DBConnection/proc/doConnect(dbi_handler=src.dbi,user_handler=src.user,password_handler=src.password,cursor_handler)
if(!config.sql_enabled)
return 0
if(!src) return 0
@@ -63,7 +83,9 @@ DBConnection/proc/Connect(dbi_handler=src.dbi,user_handler=src.user,password_han
if(!cursor_handler) cursor_handler = Default_Cursor
return _dm_db_connect(_db_con,dbi_handler,user_handler,password_handler,cursor_handler,null)
-DBConnection/proc/Disconnect() return _dm_db_close(_db_con)
+DBConnection/proc/Disconnect()
+ failed_connections = 0
+ return _dm_db_close(_db_con)
DBConnection/proc/IsConnected()
if(!config.sql_enabled) return 0
@@ -206,3 +228,6 @@ DBColumn/proc/SqlTypeName(type_handler=src.sql_type)
#undef TIME
#undef STRING
#undef BLOB
+
+
+#undef FAILED_DB_CONNECTION_CUTOFF
diff --git a/code/orphaned_procs/statistics.dm b/code/orphaned_procs/statistics.dm
index bc6b6b2988b..b8eccb06e26 100644
--- a/code/orphaned_procs/statistics.dm
+++ b/code/orphaned_procs/statistics.dm
@@ -62,8 +62,7 @@ var/datum/feedback/blackbox = new()
if (!feedback) return
round_end_data_gathering() //round_end time logging and some other data processing
- establish_db_connection()
- if (!dbcon.IsConnected()) return
+ if (!dbcon.Connect()) return
var/round_id
var/DBQuery/query = dbcon.NewQuery("SELECT MAX(round_id) AS round_id FROM [format_table_name("feedback")]")
@@ -213,8 +212,7 @@ var/datum/feedback/blackbox = new()
for(var/mob/M in player_list)
if(M.client)
playercount += 1
- establish_db_connection()
- if(!dbcon.IsConnected())
+ if(!dbcon.Connect())
log_game("SQL ERROR during player polling. Failed to connect.")
else
var/sqltime = time2text(world.realtime, "YYYY-MM-DD hh:mm:ss")
@@ -227,8 +225,7 @@ var/datum/feedback/blackbox = new()
if(!config.sql_enabled)
return
var/admincount = admins.len
- establish_db_connection()
- if(!dbcon.IsConnected())
+ if(!dbcon.Connect())
log_game("SQL ERROR during admin polling. Failed to connect.")
else
var/sqltime = time2text(world.realtime, "YYYY-MM-DD hh:mm:ss")
@@ -272,12 +269,10 @@ var/datum/feedback/blackbox = new()
var/sqltime = time2text(world.realtime, "YYYY-MM-DD hh:mm:ss")
var/coord = "[L.x], [L.y], [L.z]"
var/map = MAP_NAME
- var/server = "[world.internet_address]:[world.port]"
- establish_db_connection()
- if(!dbcon.IsConnected())
+ if(!dbcon.Connect())
log_game("SQL ERROR during death reporting. Failed to connect.")
else
- var/DBQuery/query = dbcon.NewQuery("INSERT INTO [format_table_name("death")] (name, byondkey, job, special, pod, tod, laname, lakey, gender, bruteloss, fireloss, brainloss, oxyloss, coord, mapname, server) VALUES ('[sqlname]', '[sqlkey]', '[sqljob]', '[sqlspecial]', '[sqlpod]', '[sqltime]', '[laname]', '[lakey]', '[L.gender]', [L.getBruteLoss()], [L.getFireLoss()], [L.brainloss], [L.getOxyLoss()], '[coord]', '[map]', '[server]')")
+ var/DBQuery/query = dbcon.NewQuery("INSERT INTO [format_table_name("death")] (name, byondkey, job, special, pod, tod, laname, lakey, gender, bruteloss, fireloss, brainloss, oxyloss, coord, mapname, server_ip, server_port) VALUES ('[sqlname]', '[sqlkey]', '[sqljob]', '[sqlspecial]', '[sqlpod]', '[sqltime]', '[laname]', '[lakey]', '[L.gender]', [L.getBruteLoss()], [L.getFireLoss()], [L.brainloss], [L.getOxyLoss()], '[coord]', '[map]', INET_ATON('[world.internet_address]'), '[world.port]')")
if(!query.Execute())
var/err = query.ErrorMsg()
log_game("SQL ERROR during death reporting. Error : \[[err]\]\n")
@@ -295,8 +290,7 @@ var/datum/feedback/blackbox = new()
log_game("Round ended without any feedback being generated. No feedback was sent to the database.")
return
- establish_db_connection()
- if(!dbcon.IsConnected())
+ if(!dbcon.Connect())
log_game("SQL ERROR during feedback reporting. Failed to connect.")
else
diff --git a/code/world.dm b/code/world.dm
index 17adf27ee61..e4df28328d4 100644
--- a/code/world.dm
+++ b/code/world.dm
@@ -39,6 +39,7 @@ var/list/map_transition_config = MAP_TRANSITION_CONFIG
make_datum_references_lists() //initialises global lists for referencing frequently used datums (so that we only ever do it once)
load_configuration()
+ revdata.DownloadPRDetails()
load_mode()
load_motd()
load_admins()
@@ -51,7 +52,7 @@ var/list/map_transition_config = MAP_TRANSITION_CONFIG
timezoneOffset = text2num(time2text(0,"hh")) * 36000
if(config.sql_enabled)
- if(!setup_database_connection())
+ if(!dbcon.Connect())
log_world("Your server failed to establish a connection with the database.")
else
log_world("Database connection established.")
@@ -71,14 +72,13 @@ var/list/map_transition_config = MAP_TRANSITION_CONFIG
Master.Setup(10, FALSE)
#define IRC_STATUS_THROTTLE 50
-var/last_irc_status = 0
-
/world/Topic(T, addr, master, key)
if(config && config.log_world_topic)
diary << "TOPIC: \"[T]\", from:[addr], master:[master], key:[key]"
var/list/input = params2list(T)
var/key_valid = (global.comms_allowed && input["key"] == global.comms_key)
+ var/static/last_irc_status = 0
if("ping" in input)
var/x = 1
@@ -102,7 +102,6 @@ var/last_irc_status = 0
status += "Players: [clients.len] (Active: [get_active_player_count(0,1,0)]). Mode: [ticker.mode.name]."
send2irc("Status", status)
last_irc_status = world.time
-// send2maindiscord("**Server starting up**. [clients.len] (Active: [get_active_player_count(0,1,0)]). Mode: [ticker.mode.name].`. Map is **Probably Box Station**")
else if("status" in input)
var/list/s = list()
@@ -248,7 +247,7 @@ var/last_irc_status = 0
if(blackbox)
blackbox.save_all_data_to_sql()
Master.Shutdown() //run SS shutdowns
- RoundEndSound(round_end_sound_sent)
+ RoundEndAnimation(round_end_sound_sent)
kick_clients_in_lobby("The round came to an end with you in the lobby.", 1) //second parameter ensures only afk clients are kicked
world << "Rebooting world. Loading next map..."
for(var/thing in clients)
@@ -256,7 +255,7 @@ var/last_irc_status = 0
if(C && config.server) //if you set a server location in config.txt, it sends you there instead of trying to reconnect to the same world address. -- NeoFite
C << link("byond://[config.server]")
-/world/proc/RoundEndSound(round_end_sound_sent)
+/world/proc/RoundEndAnimation(round_end_sound_sent)
set waitfor = FALSE
var/round_end_sound
if(!ticker && ticker.round_end_sound)
@@ -277,6 +276,10 @@ var/last_irc_status = 0
'sound/roundend/yeehaw.ogg',
'sound/roundend/disappointed.ogg'\
)
+
+ for(var/thing in clients)
+ new /obj/screen/splash(thing, FALSE, FALSE)
+
world << sound(round_end_sound)
/world/proc/load_mode()
@@ -292,11 +295,7 @@ var/last_irc_status = 0
F << the_mode
/world/proc/load_motd()
- join_motd = file2text("config/motd.txt")
- join_motd += "
"
- for(var/line in revdata.testmerge)
- if(line)
- join_motd += "Test merge active of PR #[line]
"
+ join_motd = file2text("config/motd.txt") + "
" + revdata.GetTestMergeInfo()
/world/proc/load_configuration()
protected_config = new /datum/protected_configuration()
@@ -362,47 +361,6 @@ var/last_irc_status = 0
status = s
-#define FAILED_DB_CONNECTION_CUTOFF 5
-var/failed_db_connections = 0
-
-/proc/setup_database_connection()
-
- if(failed_db_connections >= FAILED_DB_CONNECTION_CUTOFF) //If it failed to establish a connection more than 5 times in a row, don't bother attempting to connect anymore.
- return 0
-
- if(!dbcon)
- dbcon = new()
-
- var/user = sqlfdbklogin
- var/pass = sqlfdbkpass
- var/db = sqlfdbkdb
- var/address = sqladdress
- var/port = sqlport
-
- dbcon.Connect("dbi:mysql:[db]:[address]:[port]","[user]","[pass]")
- . = dbcon.IsConnected()
- if ( . )
- failed_db_connections = 0 //If this connection succeeded, reset the failed connections counter.
- else
- failed_db_connections++ //If it failed, increase the failed connections counter.
- if(config.sql_enabled)
- log_world("SQL error: " + dbcon.ErrorMsg())
-
- return .
-
-//This proc ensures that the connection to the feedback database (global variable dbcon) is established
-/proc/establish_db_connection()
- if(failed_db_connections > FAILED_DB_CONNECTION_CUTOFF)
- return 0
-
- if(!dbcon || !dbcon.IsConnected())
- return setup_database_connection()
- else
- return 1
-
-#undef FAILED_DB_CONNECTION_CUTOFF
-
-
/proc/maprotate()
if (!SERVERTOOLS)
return
diff --git a/goon/sound/machinery/FireAlarm.ogg b/goon/sound/machinery/FireAlarm.ogg
index a19fd01ea61..f1a67232655 100644
Binary files a/goon/sound/machinery/FireAlarm.ogg and b/goon/sound/machinery/FireAlarm.ogg differ
diff --git a/icons/effects/96x96.dmi b/icons/effects/96x96.dmi
index 5fab78f9c21..1342047e6b9 100644
Binary files a/icons/effects/96x96.dmi and b/icons/effects/96x96.dmi differ
diff --git a/icons/effects/beam.dmi b/icons/effects/beam.dmi
index 9d2b2665abd..98bb0c7395e 100644
Binary files a/icons/effects/beam.dmi and b/icons/effects/beam.dmi differ
diff --git a/icons/mob/actions.dmi b/icons/mob/actions.dmi
index 08abe850544..42d2a4fe9d4 100644
Binary files a/icons/mob/actions.dmi and b/icons/mob/actions.dmi differ
diff --git a/icons/mob/belt.dmi b/icons/mob/belt.dmi
index c16a14b1ab3..b9ddf041530 100644
Binary files a/icons/mob/belt.dmi and b/icons/mob/belt.dmi differ
diff --git a/icons/mob/belt_mirror.dmi b/icons/mob/belt_mirror.dmi
index 807c684ed96..e661abc3d57 100644
Binary files a/icons/mob/belt_mirror.dmi and b/icons/mob/belt_mirror.dmi differ
diff --git a/icons/mob/inhands/clothing_lefthand.dmi b/icons/mob/inhands/clothing_lefthand.dmi
index 3c8c1767724..0cb911c9f54 100644
Binary files a/icons/mob/inhands/clothing_lefthand.dmi and b/icons/mob/inhands/clothing_lefthand.dmi differ
diff --git a/icons/mob/inhands/clothing_righthand.dmi b/icons/mob/inhands/clothing_righthand.dmi
index 1d9bd454129..6895194dd7a 100644
Binary files a/icons/mob/inhands/clothing_righthand.dmi and b/icons/mob/inhands/clothing_righthand.dmi differ
diff --git a/icons/mob/inhands/items_lefthand.dmi b/icons/mob/inhands/items_lefthand.dmi
index c5a3a1ce891..74bcf3af28f 100644
Binary files a/icons/mob/inhands/items_lefthand.dmi and b/icons/mob/inhands/items_lefthand.dmi differ
diff --git a/icons/mob/inhands/items_righthand.dmi b/icons/mob/inhands/items_righthand.dmi
index 1eec29d6b9d..b9f5321dbb7 100644
Binary files a/icons/mob/inhands/items_righthand.dmi and b/icons/mob/inhands/items_righthand.dmi differ
diff --git a/icons/mob/screen_alert.dmi b/icons/mob/screen_alert.dmi
index dc94b74cd7f..84ad8a2cd7f 100644
Binary files a/icons/mob/screen_alert.dmi and b/icons/mob/screen_alert.dmi differ
diff --git a/icons/obj/ammo.dmi b/icons/obj/ammo.dmi
index 5e6258b45ad..0e5bb3a9feb 100644
Binary files a/icons/obj/ammo.dmi and b/icons/obj/ammo.dmi differ
diff --git a/icons/obj/citvending.dmi b/icons/obj/citvending.dmi
new file mode 100644
index 00000000000..74dcffbc012
Binary files /dev/null and b/icons/obj/citvending.dmi differ
diff --git a/icons/obj/computer.dmi b/icons/obj/computer.dmi
index 2a26590dff3..6034e54b05e 100644
Binary files a/icons/obj/computer.dmi and b/icons/obj/computer.dmi differ
diff --git a/icons/obj/contraband.dmi b/icons/obj/contraband.dmi
index cb495d2febd..b235443da82 100644
Binary files a/icons/obj/contraband.dmi and b/icons/obj/contraband.dmi differ
diff --git a/icons/obj/crates.dmi b/icons/obj/crates.dmi
index 7b7638ab1a8..35414eeb3d3 100644
Binary files a/icons/obj/crates.dmi and b/icons/obj/crates.dmi differ
diff --git a/icons/obj/drinks.dmi b/icons/obj/drinks.dmi
index 3971257a95f..a62f1db360c 100644
Binary files a/icons/obj/drinks.dmi and b/icons/obj/drinks.dmi differ
diff --git a/icons/obj/food/food.dmi b/icons/obj/food/food.dmi
index 554144e76e1..c0af32afea9 100644
Binary files a/icons/obj/food/food.dmi and b/icons/obj/food/food.dmi differ
diff --git a/icons/obj/hydroponics/equipment.dmi b/icons/obj/hydroponics/equipment.dmi
index a81ead53edc..fc2c0585940 100644
Binary files a/icons/obj/hydroponics/equipment.dmi and b/icons/obj/hydroponics/equipment.dmi differ
diff --git a/icons/obj/items.dmi b/icons/obj/items.dmi
index f32ce888fe4..f741bfbd561 100644
Binary files a/icons/obj/items.dmi and b/icons/obj/items.dmi differ
diff --git a/icons/obj/janitor.dmi b/icons/obj/janitor.dmi
index e8131065047..4ce9d864c87 100644
Binary files a/icons/obj/janitor.dmi and b/icons/obj/janitor.dmi differ
diff --git a/icons/obj/kitchen.dmi b/icons/obj/kitchen.dmi
index 6a96e0b3260..8a02fa8dd91 100644
Binary files a/icons/obj/kitchen.dmi and b/icons/obj/kitchen.dmi differ
diff --git a/icons/obj/library.dmi b/icons/obj/library.dmi
index d2e99de51bc..5840476924c 100644
Binary files a/icons/obj/library.dmi and b/icons/obj/library.dmi differ
diff --git a/icons/obj/machines/research.dmi b/icons/obj/machines/research.dmi
index 74053b6cdc4..84f8c96a5b1 100644
Binary files a/icons/obj/machines/research.dmi and b/icons/obj/machines/research.dmi differ
diff --git a/icons/obj/objects.dmi b/icons/obj/objects.dmi
index f3edc5716e7..2bbe115510c 100644
Binary files a/icons/obj/objects.dmi and b/icons/obj/objects.dmi differ
diff --git a/icons/obj/smooth_structures/catwalk.dmi b/icons/obj/smooth_structures/catwalk.dmi
index d803dd71736..834cfbbe5ed 100644
Binary files a/icons/obj/smooth_structures/catwalk.dmi and b/icons/obj/smooth_structures/catwalk.dmi differ
diff --git a/icons/obj/storage.dmi b/icons/obj/storage.dmi
index 1b3f2eecd80..db32c6a4ec2 100644
Binary files a/icons/obj/storage.dmi and b/icons/obj/storage.dmi differ
diff --git a/icons/obj/tank.dmi b/icons/obj/tank.dmi
index 11677441c91..8e41c003a43 100644
Binary files a/icons/obj/tank.dmi and b/icons/obj/tank.dmi differ
diff --git a/icons/obj/turrets.dmi b/icons/obj/turrets.dmi
index 3244dd905e1..498d340c03c 100644
Binary files a/icons/obj/turrets.dmi and b/icons/obj/turrets.dmi differ
diff --git a/icons/obj/vending.dmi b/icons/obj/vending.dmi
index 46c78de11f2..783424d4a01 100644
Binary files a/icons/obj/vending.dmi and b/icons/obj/vending.dmi differ
diff --git a/icons/obj/weapons.dmi b/icons/obj/weapons.dmi
index 84828274c7e..b56a84c4528 100644
Binary files a/icons/obj/weapons.dmi and b/icons/obj/weapons.dmi differ
diff --git a/icons/turf/floors.dmi b/icons/turf/floors.dmi
index 3a2b957f3b4..ea4c5d5ba74 100644
Binary files a/icons/turf/floors.dmi and b/icons/turf/floors.dmi differ
diff --git a/icons/turf/shuttle.dmi b/icons/turf/shuttle.dmi
index 63dd9450506..6fa2b317d9d 100644
Binary files a/icons/turf/shuttle.dmi and b/icons/turf/shuttle.dmi differ
diff --git a/interface/interface.dm b/interface/interface.dm
index 8fda74f293e..1d035446570 100644
--- a/interface/interface.dm
+++ b/interface/interface.dm
@@ -53,13 +53,9 @@
set hidden = 1
if(config.githuburl)
var/message = "This will open the Github issue reporter in your browser. Are you sure?"
- var/first = TRUE
- for(var/line in revdata.testmerge)
- if(line)
- if(first)
- first = FALSE
- message += ". The following experimental changes are active and are probably the cause of any new or sudden issues you may experience. If possible, please try to find a specific thread for your issue instead of posting to the general issue tracker:"
- message += " #[line]"
+ if(revdata.testmerge.len)
+ message += "
The following experimental changes are active and are probably the cause of any new or sudden issues you may experience. If possible, please try to find a specific thread for your issue instead of posting to the general issue tracker:
"
+ message += revdata.GetTestMergeInfo(FALSE)
if(tgalert(src, message, "Report Issue","Yes","No")=="No")
return
src << link("[config.githuburl]/issues/new")
diff --git a/interface/stylesheet.dm b/interface/stylesheet.dm
index 91295dd2335..d8627232ec1 100644
--- a/interface/stylesheet.dm
+++ b/interface/stylesheet.dm
@@ -13,25 +13,26 @@ em {font-style: normal; font-weight: bold;}
.italics { font-style: italic;}
+.bold { font-weight: bold;}
+
.prefix { font-weight: bold;}
.ooc { font-weight: bold;}
.adminobserverooc {color: #0099cc; font-weight: bold;}
.adminooc {color: #700038; font-weight: bold;}
+.mentoradmin {color: #8A2BE2; font-weight: bold;}
+.mentor {color: #E236D8; font-weight: bold;}
.adminobserver {color: #996600; font-weight: bold;}
.admin {color: #386aff; font-weight: bold;}
-.mentoradmin {color: #8A2BE2; font-weight: bold;}
-.mentor {color: #E236D8; font-weight: bold;}
-
.name { font-weight: bold;}
.say {}
.deadsay {color: #5c00e6;}
.radio {color: #008000;}
.sciradio {color: #993399;}
-.comradio {color: #193a7a;}
+.comradio {color: #948f02;}
.secradio {color: #a30000;}
.medradio {color: #337296;}
.engradio {color: #fb5613;}
@@ -132,12 +133,13 @@ h1.alert, h2.alert {color: #000000;}
.papyrus {font-family: "Papyrus", cursive, sans-serif;}
.robot {font-family: "Courier New", cursive, sans-serif;}
-.command_headset {font-weight: bold; font-size: 3;}
+.command_headset {font-weight: bold; font-size: 3;}
.big {font-size: 3;}
.reallybig {font-size: 4;}
.greentext {color: #00FF00; font-size: 3;}
.redtext {color: #FF0000; font-size: 3;}
.clown {color: #FF69Bf; font-size: 3; font-family: "Comic Sans MS", cursive, sans-serif; font-weight: bold;}
+.his_grace {color: #15D512; font-family: "Courier New", cursive, sans-serif; font-style: italic;}
BIG IMG.icon {width: 32px; height: 32px;}
@@ -145,7 +147,4 @@ BIG IMG.icon {width: 32px; height: 32px;}
.memoedit {text-align: center; font-size: 2;}
.abductor {color: #800080; font-style: italic;}
-.love {color: #FF69Bf;}
-.lovebold {color: #FF69Bf; font-weight: bold;}
-
"}
diff --git a/sound/effects/his_grace_ascend.ogg b/sound/effects/his_grace_ascend.ogg
new file mode 100644
index 00000000000..8ddc8be4cdb
Binary files /dev/null and b/sound/effects/his_grace_ascend.ogg differ
diff --git a/sound/misc/highlander_delayed.ogg b/sound/misc/highlander_delayed.ogg
new file mode 100644
index 00000000000..d1cce707811
Binary files /dev/null and b/sound/misc/highlander_delayed.ogg differ
diff --git a/sound/weapons/slap.ogg b/sound/weapons/slap.ogg
new file mode 100644
index 00000000000..a1fd4ab9fb1
Binary files /dev/null and b/sound/weapons/slap.ogg differ
diff --git a/strings/round_start_sounds.txt b/strings/round_start_sounds.txt
new file mode 100644
index 00000000000..2e7d653a01c
--- /dev/null
+++ b/strings/round_start_sounds.txt
@@ -0,0 +1,6 @@
+sound/ambience/title1.ogg
+sound/ambience/title2.ogg
+sound/ambience/title3.ogg
+sound/ambience/title4.ogg
+sound/misc/i_did_not_grief_them.ogg
+sound/ambience/clown.ogg
\ No newline at end of file
diff --git a/tgstation.dme b/tgstation.dme
index 04edff35d85..3e71a67f8e3 100644
--- a/tgstation.dme
+++ b/tgstation.dme
@@ -63,6 +63,7 @@
#include "code\__DEFINES\voreconstants.dm"
#include "code\__DEFINES\vv.dm"
#include "code\__DEFINES\wires.dm"
+#include "code\__HELPERS\_lists.dm"
#include "code\__HELPERS\_logging.dm"
#include "code\__HELPERS\_string_lists.dm"
#include "code\__HELPERS\bandetect.dm"
@@ -72,7 +73,6 @@
#include "code\__HELPERS\global_lists.dm"
#include "code\__HELPERS\icon_smoothing.dm"
#include "code\__HELPERS\icons.dm"
-#include "code\__HELPERS\lists.dm"
#include "code\__HELPERS\maths.dm"
#include "code\__HELPERS\matrices.dm"
#include "code\__HELPERS\mobs.dm"
@@ -162,6 +162,7 @@
#include "code\citadel\organs\womb.dm"
#include "code\controllers\admin.dm"
#include "code\controllers\configuration.dm"
+#include "code\controllers\configuration_citadel.dm"
#include "code\controllers\controller.dm"
#include "code\controllers\failsafe.dm"
#include "code\controllers\hooks.dm"
@@ -170,6 +171,7 @@
#include "code\controllers\subsystem\acid.dm"
#include "code\controllers\subsystem\air.dm"
#include "code\controllers\subsystem\assets.dm"
+#include "code\controllers\subsystem\atoms.dm"
#include "code\controllers\subsystem\augury.dm"
#include "code\controllers\subsystem\communications.dm"
#include "code\controllers\subsystem\diseases.dm"
@@ -208,6 +210,7 @@
#include "code\controllers\subsystem\processing\fastprocess.dm"
#include "code\controllers\subsystem\processing\flightpacks.dm"
#include "code\controllers\subsystem\processing\objects.dm"
+#include "code\controllers\subsystem\processing\overlays.dm"
#include "code\controllers\subsystem\processing\processing.dm"
#include "code\datums\action.dm"
#include "code\datums\ai_laws.dm"
@@ -232,6 +235,7 @@
#include "code\datums\riding.dm"
#include "code\datums\ruins.dm"
#include "code\datums\shuttles.dm"
+#include "code\datums\soullink.dm"
#include "code\datums\votablemap.dm"
#include "code\datums\antagonists\antag_datum.dm"
#include "code\datums\antagonists\datum_clockcult.dm"
@@ -291,7 +295,6 @@
#include "code\datums\helper_datums\events.dm"
#include "code\datums\helper_datums\getrev.dm"
#include "code\datums\helper_datums\icon_snapshot.dm"
-#include "code\datums\helper_datums\map_template.dm"
#include "code\datums\helper_datums\teleport.dm"
#include "code\datums\helper_datums\topic_input.dm"
#include "code\datums\martial\krav_maga.dm"
@@ -434,6 +437,7 @@
#include "code\game\gamemodes\clock_cult\clock_structures\mending_motor.dm"
#include "code\game\gamemodes\clock_cult\clock_structures\ocular_warden.dm"
#include "code\game\gamemodes\clock_cult\clock_structures\ratvar_the_clockwork_justicar.dm"
+#include "code\game\gamemodes\clock_cult\clock_structures\taunting_trail.dm"
#include "code\game\gamemodes\clock_cult\clock_structures\tinkerers_cache.dm"
#include "code\game\gamemodes\clock_cult\clock_structures\tinkerers_daemon.dm"
#include "code\game\gamemodes\clock_cult\clock_structures\wall_gear.dm"
@@ -704,6 +708,7 @@
#include "code\game\objects\items\nuke_tools.dm"
#include "code\game\objects\items\religion.dm"
#include "code\game\objects\items\shooting_range.dm"
+#include "code\game\objects\items\taster.dm"
#include "code\game\objects\items\toys.dm"
#include "code\game\objects\items\trash.dm"
#include "code\game\objects\items\devices\aicard.dm"
@@ -771,6 +776,7 @@
#include "code\game\objects\items\weapons\flamethrower.dm"
#include "code\game\objects\items\weapons\gift.dm"
#include "code\game\objects\items\weapons\handcuffs.dm"
+#include "code\game\objects\items\weapons\his_grace.dm"
#include "code\game\objects\items\weapons\holosign_creator.dm"
#include "code\game\objects\items\weapons\holy_weapons.dm"
#include "code\game\objects\items\weapons\kitchen.dm"
@@ -872,6 +878,7 @@
#include "code\game\objects\structures\kitchen_spike.dm"
#include "code\game\objects\structures\ladders.dm"
#include "code\game\objects\structures\lattice.dm"
+#include "code\game\objects\structures\life_candle.dm"
#include "code\game\objects\structures\mineral_doors.dm"
#include "code\game\objects\structures\mirror.dm"
#include "code\game\objects\structures\mop_bucket.dm"
@@ -1080,10 +1087,6 @@
#include "code\modules\awaymissions\signpost.dm"
#include "code\modules\awaymissions\super_secret_room.dm"
#include "code\modules\awaymissions\zlevel.dm"
-#include "code\modules\awaymissions\maploader\dmm_suite.dm"
-#include "code\modules\awaymissions\maploader\reader.dm"
-#include "code\modules\awaymissions\maploader\swapmaps.dm"
-#include "code\modules\awaymissions\maploader\writer.dm"
#include "code\modules\awaymissions\mission_code\Academy.dm"
#include "code\modules\awaymissions\mission_code\Cabin.dm"
#include "code\modules\awaymissions\mission_code\centcomAway.dm"
@@ -1130,9 +1133,11 @@
#include "code\modules\clothing\glasses\engine_goggles.dm"
#include "code\modules\clothing\glasses\glasses.dm"
#include "code\modules\clothing\glasses\hud.dm"
+#include "code\modules\clothing\glasses\vg_glasses.dm"
#include "code\modules\clothing\gloves\boxing.dm"
#include "code\modules\clothing\gloves\color.dm"
#include "code\modules\clothing\gloves\miscellaneous.dm"
+#include "code\modules\clothing\gloves\vg_gloves.dm"
#include "code\modules\clothing\head\beanie.dm"
#include "code\modules\clothing\head\collectable.dm"
#include "code\modules\clothing\head\hardhat.dm"
@@ -1141,11 +1146,13 @@
#include "code\modules\clothing\head\misc.dm"
#include "code\modules\clothing\head\misc_special.dm"
#include "code\modules\clothing\head\soft_caps.dm"
+#include "code\modules\clothing\head\vg_hats.dm"
#include "code\modules\clothing\masks\boxing.dm"
#include "code\modules\clothing\masks\breath.dm"
#include "code\modules\clothing\masks\gasmask.dm"
#include "code\modules\clothing\masks\hailer.dm"
#include "code\modules\clothing\masks\miscellaneous.dm"
+#include "code\modules\clothing\masks\vg_masks.dm"
#include "code\modules\clothing\neck\ties.dm"
#include "code\modules\clothing\outfits\ert.dm"
#include "code\modules\clothing\outfits\standard.dm"
@@ -1153,12 +1160,14 @@
#include "code\modules\clothing\shoes\colour.dm"
#include "code\modules\clothing\shoes\magboots.dm"
#include "code\modules\clothing\shoes\miscellaneous.dm"
+#include "code\modules\clothing\shoes\vg_shoes.dm"
#include "code\modules\clothing\spacesuits\chronosuit.dm"
#include "code\modules\clothing\spacesuits\flightsuit.dm"
#include "code\modules\clothing\spacesuits\hardsuit.dm"
#include "code\modules\clothing\spacesuits\miscellaneous.dm"
#include "code\modules\clothing\spacesuits\plasmamen.dm"
#include "code\modules\clothing\spacesuits\syndi.dm"
+#include "code\modules\clothing\spacesuits\vg_spess.dm"
#include "code\modules\clothing\suits\armor.dm"
#include "code\modules\clothing\suits\bio.dm"
#include "code\modules\clothing\suits\cloaks.dm"
@@ -1167,6 +1176,7 @@
#include "code\modules\clothing\suits\miscellaneous.dm"
#include "code\modules\clothing\suits\toggles.dm"
#include "code\modules\clothing\suits\utility.dm"
+#include "code\modules\clothing\suits\vg_suits.dm"
#include "code\modules\clothing\suits\wiz_robe.dm"
#include "code\modules\clothing\under\color.dm"
#include "code\modules\clothing\under\miscellaneous.dm"
@@ -1377,6 +1387,13 @@
#include "code\modules\library\random_books.dm"
#include "code\modules\library\soapstone.dm"
#include "code\modules\lighting\lighting_system.dm"
+#include "code\modules\mapping\dmm_suite.dm"
+#include "code\modules\mapping\map_template.dm"
+#include "code\modules\mapping\reader.dm"
+#include "code\modules\mapping\ruins.dm"
+#include "code\modules\mapping\swapmaps.dm"
+#include "code\modules\mapping\writer.dm"
+#include "code\modules\mentor\follow.dm"
#include "code\modules\mentor\holder2.dm"
#include "code\modules\mentor\mentor_ranks.dm"
#include "code\modules\mentor\verbs\mentor_memo.dm"
@@ -1384,6 +1401,7 @@
#include "code\modules\mentor\verbs\mentorpm.dm"
#include "code\modules\mentor\verbs\mentorsay.dm"
#include "code\modules\mining\abandoned_crates.dm"
+#include "code\modules\mining\aux_base.dm"
#include "code\modules\mining\aux_base_camera.dm"
#include "code\modules\mining\equipment.dm"
#include "code\modules\mining\fulton.dm"
@@ -1416,7 +1434,6 @@
#include "code\modules\mob\mob_helpers.dm"
#include "code\modules\mob\mob_movement.dm"
#include "code\modules\mob\mob_transformation_simple.dm"
-#include "code\modules\mob\no_click.dm"
#include "code\modules\mob\say.dm"
#include "code\modules\mob\say_vr.dm"
#include "code\modules\mob\status_procs.dm"
@@ -1441,6 +1458,7 @@
#include "code\modules\mob\living\logout.dm"
#include "code\modules\mob\living\say.dm"
#include "code\modules\mob\living\status_procs.dm"
+#include "code\modules\mob\living\taste.dm"
#include "code\modules\mob\living\ventcrawling.dm"
#include "code\modules\mob\living\brain\brain.dm"
#include "code\modules\mob\living\brain\brain_item.dm"
@@ -1989,6 +2007,7 @@
#include "code\modules\spells\spell_types\touch_attacks.dm"
#include "code\modules\spells\spell_types\trigger.dm"
#include "code\modules\spells\spell_types\turf_teleport.dm"
+#include "code\modules\spells\spell_types\voice_of_god.dm"
#include "code\modules\spells\spell_types\wizard.dm"
#include "code\modules\station_goals\bsa.dm"
#include "code\modules\station_goals\dna_vault.dm"
@@ -2070,7 +2089,6 @@
#include "code\modules\vore\eating\living_vr.dm"
#include "code\modules\vore\eating\simple_animal_vr.dm"
#include "code\modules\vore\eating\vore_vr.dm"
-#include "code\modules\vore\eating\vorehooks_vr.dm"
#include "code\modules\vore\eating\vorepanel_vr.dm"
#include "code\modules\vore\resizing\resize_vr.dm"
#include "code\modules\vore\resizing\sizegun_vr.dm"
diff --git a/tgui/assets/tgui.css b/tgui/assets/tgui.css
index 061a7de6a68..d52500b9d64 100644
--- a/tgui/assets/tgui.css
+++ b/tgui/assets/tgui.css
@@ -1 +1 @@
-@charset "utf-8";body,html{box-sizing:border-box;height:100%;margin:0}html{overflow:hidden;cursor:default}body{overflow:auto;font-family:Verdana,Geneva,sans-serif;font-size:12px;color:#fff;background-color:#2a2a2a;background-image:linear-gradient(180deg,#2a2a2a 0,#202020);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff2a2a2a",endColorstr="#ff202020",GradientType=0)}*,:after,:before{box-sizing:inherit}h1,h2,h3,h4{display:inline-block;margin:0;padding:6px 0}h1{font-size:18px}h2{font-size:16px}h3{font-size:14px}h4{font-size:12px}body.clockwork{background:linear-gradient(180deg,#b18b25 0,#5f380e);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffb18b25",endColorstr="#ff5f380e",GradientType=0)}body.clockwork .normal{color:#b18b25}body.clockwork .good{color:#cfba47}body.clockwork .average{color:#896b19}body.clockwork .bad{color:#5f380e}body.clockwork .highlight{color:#b18b25}body.clockwork main{display:block;margin-top:32px;padding:2px 6px 0}body.clockwork hr{height:2px;background-color:#b18b25;border:none}body.clockwork .hidden{display:none}body.clockwork .bar .barText,body.clockwork span.button{color:#b18b25;font-size:12px;font-weight:400;font-style:normal;text-decoration:none}body.clockwork .bold{font-weight:700}body.clockwork .italic{font-style:italic}body.clockwork [unselectable=on]{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}body.clockwork div[data-tooltip],body.clockwork span[data-tooltip]{position:relative}body.clockwork div[data-tooltip]:after,body.clockwork span[data-tooltip]:after{position:absolute;display:block;z-index:2;width:250px;padding:10px;-ms-transform:translateX(-50%);transform:translateX(-50%);visibility:hidden;opacity:0;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";white-space:normal;text-align:left;content:attr(data-tooltip);transition:all .5s;border:1px solid #170800;background-color:#2d1400}body.clockwork div[data-tooltip]:hover:after,body.clockwork span[data-tooltip]:hover:after{visibility:visible;opacity:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"}body.clockwork div[data-tooltip].tooltip-top:after,body.clockwork span[data-tooltip].tooltip-top:after{bottom:100%;left:50%;-ms-transform:translateX(-50%) translateY(8px);transform:translateX(-50%) translateY(8px)}body.clockwork div[data-tooltip].tooltip-top:hover:after,body.clockwork span[data-tooltip].tooltip-top:hover:after{-ms-transform:translateX(-50%) translateY(-8px);transform:translateX(-50%) translateY(-8px)}body.clockwork div[data-tooltip].tooltip-bottom:after,body.clockwork span[data-tooltip].tooltip-bottom:after{top:100%;left:50%;-ms-transform:translateX(-50%) translateY(-8px);transform:translateX(-50%) translateY(-8px)}body.clockwork div[data-tooltip].tooltip-bottom:hover:after,body.clockwork span[data-tooltip].tooltip-bottom:hover:after{-ms-transform:translateX(-50%) translateY(8px);transform:translateX(-50%) translateY(8px)}body.clockwork div[data-tooltip].tooltip-left:after,body.clockwork span[data-tooltip].tooltip-left:after{top:50%;right:100%;-ms-transform:translateX(8px) translateY(-50%);transform:translateX(8px) translateY(-50%)}body.clockwork div[data-tooltip].tooltip-left:hover:after,body.clockwork span[data-tooltip].tooltip-left:hover:after{-ms-transform:translateX(-8px) translateY(-50%);transform:translateX(-8px) translateY(-50%)}body.clockwork div[data-tooltip].tooltip-right:after,body.clockwork span[data-tooltip].tooltip-right:after{top:50%;left:100%;-ms-transform:translateX(-8px) translateY(-50%);transform:translateX(-8px) translateY(-50%)}body.clockwork div[data-tooltip].tooltip-right:hover:after,body.clockwork span[data-tooltip].tooltip-right:hover:after{-ms-transform:translateX(8px) translateY(-50%);transform:translateX(8px) translateY(-50%)}body.clockwork .bar{display:inline-block;position:relative;vertical-align:middle;width:100%;height:20px;line-height:17px;padding:1px;border:1px solid #170800;background:#2d1400}body.clockwork .bar .barText{position:absolute;top:0;right:3px}body.clockwork .bar .barFill{display:block;height:100%;transition:background-color 1s;background-color:#b18b25}body.clockwork .bar .barFill.good{background-color:#cfba47}body.clockwork .bar .barFill.average{background-color:#896b19}body.clockwork .bar .barFill.bad{background-color:#5f380e}body.clockwork span.button{display:inline-block;vertical-align:middle;min-height:20px;line-height:17px;padding:0 5px;white-space:nowrap;border:1px solid #170800}body.clockwork span.button .fa{padding-right:2px}body.clockwork span.button.normal{transition:background-color .5s;background-color:#5f380e}body.clockwork span.button.normal.active:focus,body.clockwork span.button.normal.active:hover{transition:background-color .25s;background-color:#704211;outline:0}body.clockwork span.button.disabled{transition:background-color .5s;background-color:#2d1400}body.clockwork span.button.disabled.active:focus,body.clockwork span.button.disabled.active:hover{transition:background-color .25s;background-color:#441e00;outline:0}body.clockwork span.button.selected{transition:background-color .5s;background-color:#cfba47}body.clockwork span.button.selected.active:focus,body.clockwork span.button.selected.active:hover{transition:background-color .25s;background-color:#d1bd50;outline:0}body.clockwork span.button.toggle{transition:background-color .5s;background-color:#cfba47}body.clockwork span.button.toggle.active:focus,body.clockwork span.button.toggle.active:hover{transition:background-color .25s;background-color:#d1bd50;outline:0}body.clockwork span.button.caution{transition:background-color .5s;background-color:#be6209}body.clockwork span.button.caution.active:focus,body.clockwork span.button.caution.active:hover{transition:background-color .25s;background-color:#cd6a0a;outline:0}body.clockwork span.button.danger{transition:background-color .5s;background-color:#9a9d00}body.clockwork span.button.danger.active:focus,body.clockwork span.button.danger.active:hover{transition:background-color .25s;background-color:#abaf00;outline:0}body.clockwork span.button.gridable{width:125px;margin:2px 0}body.clockwork span.button+span:not(.button),body.clockwork span:not(.button)+span.button{margin-left:5px}body.clockwork div.display{width:100%;padding:4px;margin:6px 0;background-color:#2d1400;-ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=#e62d1400,endColorStr=#e62d1400)";filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#e62d1400,endColorStr=#e62d1400);background-color:rgba(45,20,0,.9);box-shadow:inset 0 0 5px rgba(0,0,0,.3)}body.clockwork div.display header,body.clockwork div.subdisplay header{display:block;position:relative;width:100%;padding:0 4px;margin-bottom:6px;color:#cfba47;border-bottom:2px solid #b18b25}body.clockwork div.display header .buttonRight,body.clockwork div.subdisplay header .buttonRight{position:absolute;bottom:6px;right:4px}body.clockwork div.display article,body.clockwork div.subdisplay article{display:table;width:100%;border-collapse:collapse}body.clockwork input{display:inline-block;vertical-align:middle;height:20px;line-height:17px;padding:0 5px;white-space:nowrap;color:#b18b25;background-color:#cfba47;border:1px solid #272727}body.clockwork input::-webkit-input-placeholder{color:#999}body.clockwork input::-moz-placeholder{color:#999}body.clockwork input:-ms-input-placeholder{color:#999}body.clockwork input::placeholder{color:#999}body.clockwork input::-ms-clear{display:none}body.clockwork svg.linegraph{overflow:hidden}body.clockwork div.notice{margin:8px 0;padding:4px;box-shadow:none;color:#2d1400;font-weight:700;font-style:italic;background-color:#000;background-image:repeating-linear-gradient(-45deg,#000,#000 10px,#170800 0,#170800 20px)}body.clockwork div.notice .label{color:#2d1400}body.clockwork div.notice .content:only-of-type{padding:0}body.clockwork div.notice hr{background-color:#896b19}body.clockwork div.resize{position:fixed;bottom:0;right:0;width:0;height:0;border-style:solid;border-width:0 0 45px 45px;border-color:transparent transparent #5f380e;-ms-transform:rotate(1turn);transform:rotate(1turn)}body.clockwork section .content,body.clockwork section .label,body.clockwork section .line,body.nanotrasen section .content,body.nanotrasen section .label,body.nanotrasen section .line,body.syndicate section .content,body.syndicate section .label,body.syndicate section .line{display:table-cell;margin:0;text-align:left;vertical-align:middle;padding:3px 2px}body.clockwork section{display:table-row;width:100%}body.clockwork section:not(:first-child){padding-top:4px}body.clockwork section.candystripe:nth-child(2n){background-color:#000;-ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=#33000000,endColorStr=#33000000)";filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#33000000,endColorStr=#33000000);background-color:rgba(0,0,0,.2)}body.clockwork section .label{width:1%;padding-right:32px;white-space:nowrap;color:#b18b25}body.clockwork section .content:not(:last-child){padding-right:16px}body.clockwork section .line{width:100%}body.clockwork div.subdisplay{width:100%;margin:0}body.clockwork header.titlebar .close,body.clockwork header.titlebar .minimize{display:inline-block;position:relative;padding:7px;margin:-7px;color:#cfba47}body.clockwork header.titlebar .close:hover,body.clockwork header.titlebar .minimize:hover{color:#d1bd50}body.clockwork header.titlebar{position:fixed;z-index:1;top:0;left:0;width:100%;height:32px;background-color:#5f380e;border-bottom:1px solid #170800;box-shadow:0 3px 3px rgba(0,0,0,.1)}body.clockwork header.titlebar .statusicon{position:absolute;top:4px;left:12px;transition:color .5s}body.clockwork header.titlebar .title{position:absolute;top:6px;left:46px;color:#cfba47;font-size:16px;white-space:nowrap}body.clockwork header.titlebar .minimize{position:absolute;top:6px;right:46px}body.clockwork header.titlebar .close{position:absolute;top:4px;right:12px}body.nanotrasen{background:url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+DQo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4wIiB2aWV3Qm94PSIwIDAgNDI1IDIwMCIgb3BhY2l0eT0iLjMzIj4NCiAgPHBhdGggZD0ibSAxNzguMDAzOTksMC4wMzg2OSAtNzEuMjAzOTMsMCBhIDYuNzYxMzQyMiw2LjAyNTU0OTUgMCAwIDAgLTYuNzYxMzQsNi4wMjU1NSBsIDAsMTg3Ljg3MTQ3IGEgNi43NjEzNDIyLDYuMDI1NTQ5NSAwIDAgMCA2Ljc2MTM0LDYuMDI1NTQgbCA1My4xMDcyLDAgYSA2Ljc2MTM0MjIsNi4wMjU1NDk1IDAgMCAwIDYuNzYxMzUsLTYuMDI1NTQgbCAwLC0xMDEuNTQ0MDE4IDcyLjIxNjI4LDEwNC42OTkzOTggYSA2Ljc2MTM0MjIsNi4wMjU1NDk1IDAgMCAwIDUuNzYwMTUsMi44NzAxNiBsIDczLjU1NDg3LDAgYSA2Ljc2MTM0MjIsNi4wMjU1NDk1IDAgMCAwIDYuNzYxMzUsLTYuMDI1NTQgbCAwLC0xODcuODcxNDcgYSA2Ljc2MTM0MjIsNi4wMjU1NDk1IDAgMCAwIC02Ljc2MTM1LC02LjAyNTU1IGwgLTU0LjcxNjQ0LDAgYSA2Ljc2MTM0MjIsNi4wMjU1NDk1IDAgMCAwIC02Ljc2MTMzLDYuMDI1NTUgbCAwLDEwMi42MTkzNSBMIDE4My43NjQxMywyLjkwODg2IGEgNi43NjEzNDIyLDYuMDI1NTQ5NSAwIDAgMCAtNS43NjAxNCwtMi44NzAxNyB6IiAvPg0KICA8cGF0aCBkPSJNIDQuODQ0NjMzMywyMi4xMDg3NSBBIDEzLjQxMjAzOSwxMi41MDE4NDIgMCAwIDEgMTMuNDc3NTg4LDAuMDM5MjQgbCA2Ni4xMTgzMTUsMCBhIDUuMzY0ODE1OCw1LjAwMDczNyAwIDAgMSA1LjM2NDgyMyw1LjAwMDczIGwgMCw3OS44NzkzMSB6IiAvPg0KICA8cGF0aCBkPSJtIDQyMC4xNTUzNSwxNzcuODkxMTkgYSAxMy40MTIwMzgsMTIuNTAxODQyIDAgMCAxIC04LjYzMjk1LDIyLjA2OTUxIGwgLTY2LjExODMyLDAgYSA1LjM2NDgxNTIsNS4wMDA3MzcgMCAwIDEgLTUuMzY0ODIsLTUuMDAwNzQgbCAwLC03OS44NzkzMSB6IiAvPg0KPC9zdmc+DQo8IS0tIFRoaXMgd29yayBpcyBsaWNlbnNlZCB1bmRlciBhIENyZWF0aXZlIENvbW1vbnMgQXR0cmlidXRpb24tU2hhcmVBbGlrZSA0LjAgSW50ZXJuYXRpb25hbCBMaWNlbnNlLiAtLT4NCjwhLS0gaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbGljZW5zZXMvYnktc2EvNC4wLyAtLT4NCg==") no-repeat fixed 50%/70% 70%,linear-gradient(180deg,#2a2a2a 0,#202020);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff2a2a2a",endColorstr="#ff202020",GradientType=0)}body.nanotrasen .normal{color:#40628a}body.nanotrasen .good{color:#537d29}body.nanotrasen .average{color:#be6209}body.nanotrasen .bad{color:#b00e0e}body.nanotrasen .highlight{color:#8ba5c4}body.nanotrasen main{display:block;margin-top:32px;padding:2px 6px 0}body.nanotrasen hr{height:2px;background-color:#40628a;border:none}body.nanotrasen .hidden{display:none}body.nanotrasen .bar .barText,body.nanotrasen span.button{color:#fff;font-size:12px;font-weight:400;font-style:normal;text-decoration:none}body.nanotrasen .bold{font-weight:700}body.nanotrasen .italic{font-style:italic}body.nanotrasen [unselectable=on]{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}body.nanotrasen div[data-tooltip],body.nanotrasen span[data-tooltip]{position:relative}body.nanotrasen div[data-tooltip]:after,body.nanotrasen span[data-tooltip]:after{position:absolute;display:block;z-index:2;width:250px;padding:10px;-ms-transform:translateX(-50%);transform:translateX(-50%);visibility:hidden;opacity:0;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";white-space:normal;text-align:left;content:attr(data-tooltip);transition:all .5s;border:1px solid #272727;background-color:#363636}body.nanotrasen div[data-tooltip]:hover:after,body.nanotrasen span[data-tooltip]:hover:after{visibility:visible;opacity:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"}body.nanotrasen div[data-tooltip].tooltip-top:after,body.nanotrasen span[data-tooltip].tooltip-top:after{bottom:100%;left:50%;-ms-transform:translateX(-50%) translateY(8px);transform:translateX(-50%) translateY(8px)}body.nanotrasen div[data-tooltip].tooltip-top:hover:after,body.nanotrasen span[data-tooltip].tooltip-top:hover:after{-ms-transform:translateX(-50%) translateY(-8px);transform:translateX(-50%) translateY(-8px)}body.nanotrasen div[data-tooltip].tooltip-bottom:after,body.nanotrasen span[data-tooltip].tooltip-bottom:after{top:100%;left:50%;-ms-transform:translateX(-50%) translateY(-8px);transform:translateX(-50%) translateY(-8px)}body.nanotrasen div[data-tooltip].tooltip-bottom:hover:after,body.nanotrasen span[data-tooltip].tooltip-bottom:hover:after{-ms-transform:translateX(-50%) translateY(8px);transform:translateX(-50%) translateY(8px)}body.nanotrasen div[data-tooltip].tooltip-left:after,body.nanotrasen span[data-tooltip].tooltip-left:after{top:50%;right:100%;-ms-transform:translateX(8px) translateY(-50%);transform:translateX(8px) translateY(-50%)}body.nanotrasen div[data-tooltip].tooltip-left:hover:after,body.nanotrasen span[data-tooltip].tooltip-left:hover:after{-ms-transform:translateX(-8px) translateY(-50%);transform:translateX(-8px) translateY(-50%)}body.nanotrasen div[data-tooltip].tooltip-right:after,body.nanotrasen span[data-tooltip].tooltip-right:after{top:50%;left:100%;-ms-transform:translateX(-8px) translateY(-50%);transform:translateX(-8px) translateY(-50%)}body.nanotrasen div[data-tooltip].tooltip-right:hover:after,body.nanotrasen span[data-tooltip].tooltip-right:hover:after{-ms-transform:translateX(8px) translateY(-50%);transform:translateX(8px) translateY(-50%)}body.nanotrasen .bar{display:inline-block;position:relative;vertical-align:middle;width:100%;height:20px;line-height:17px;padding:1px;border:1px solid #40628a;background:#272727}body.nanotrasen .bar .barText{position:absolute;top:0;right:3px}body.nanotrasen .bar .barFill{display:block;height:100%;transition:background-color 1s;background-color:#40628a}body.nanotrasen .bar .barFill.good{background-color:#537d29}body.nanotrasen .bar .barFill.average{background-color:#be6209}body.nanotrasen .bar .barFill.bad{background-color:#b00e0e}body.nanotrasen span.button{display:inline-block;vertical-align:middle;min-height:20px;line-height:17px;padding:0 5px;white-space:nowrap;border:1px solid #272727}body.nanotrasen span.button .fa{padding-right:2px}body.nanotrasen span.button.normal{transition:background-color .5s;background-color:#40628a}body.nanotrasen span.button.normal.active:focus,body.nanotrasen span.button.normal.active:hover{transition:background-color .25s;background-color:#4f78aa;outline:0}body.nanotrasen span.button.disabled{transition:background-color .5s;background-color:#999}body.nanotrasen span.button.disabled.active:focus,body.nanotrasen span.button.disabled.active:hover{transition:background-color .25s;background-color:#a8a8a8;outline:0}body.nanotrasen span.button.selected{transition:background-color .5s;background-color:#2f943c}body.nanotrasen span.button.selected.active:focus,body.nanotrasen span.button.selected.active:hover{transition:background-color .25s;background-color:#3ab84b;outline:0}body.nanotrasen span.button.toggle{transition:background-color .5s;background-color:#2f943c}body.nanotrasen span.button.toggle.active:focus,body.nanotrasen span.button.toggle.active:hover{transition:background-color .25s;background-color:#3ab84b;outline:0}body.nanotrasen span.button.caution{transition:background-color .5s;background-color:#9a9d00}body.nanotrasen span.button.caution.active:focus,body.nanotrasen span.button.caution.active:hover{transition:background-color .25s;background-color:#ced200;outline:0}body.nanotrasen span.button.danger{transition:background-color .5s;background-color:#9d0808}body.nanotrasen span.button.danger.active:focus,body.nanotrasen span.button.danger.active:hover{transition:background-color .25s;background-color:#ce0b0b;outline:0}body.nanotrasen span.button.gridable{width:125px;margin:2px 0}body.nanotrasen span.button+span:not(.button),body.nanotrasen span:not(.button)+span.button{margin-left:5px}body.nanotrasen div.display{width:100%;padding:4px;margin:6px 0;background-color:#000;-ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=#54000000,endColorStr=#54000000)";filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#54000000,endColorStr=#54000000);background-color:rgba(0,0,0,.33);box-shadow:inset 0 0 5px rgba(0,0,0,.5)}body.nanotrasen div.display header,body.nanotrasen div.subdisplay header{display:block;position:relative;width:100%;padding:0 4px;margin-bottom:6px;color:#fff;border-bottom:2px solid #40628a}body.nanotrasen div.display header .buttonRight,body.nanotrasen div.subdisplay header .buttonRight{position:absolute;bottom:6px;right:4px}body.nanotrasen div.display article,body.nanotrasen div.subdisplay article{display:table;width:100%;border-collapse:collapse}body.nanotrasen input{display:inline-block;vertical-align:middle;height:20px;line-height:17px;padding:0 5px;white-space:nowrap;color:#000;background-color:#fff;border:1px solid #272727}body.nanotrasen input::-webkit-input-placeholder{color:#999}body.nanotrasen input::-moz-placeholder{color:#999}body.nanotrasen input:-ms-input-placeholder{color:#999}body.nanotrasen input::placeholder{color:#999}body.nanotrasen input::-ms-clear{display:none}body.nanotrasen svg.linegraph{overflow:hidden}body.nanotrasen div.notice{margin:8px 0;padding:4px;box-shadow:none;color:#000;font-weight:700;font-style:italic;background-color:#bb9b68;background-image:repeating-linear-gradient(-45deg,#bb9b68,#bb9b68 10px,#b1905d 0,#b1905d 20px)}body.nanotrasen div.notice .label{color:#000}body.nanotrasen div.notice .content:only-of-type{padding:0}body.nanotrasen div.notice hr{background-color:#272727}body.nanotrasen div.resize{position:fixed;bottom:0;right:0;width:0;height:0;border-style:solid;border-width:0 0 45px 45px;border-color:transparent transparent #363636;-ms-transform:rotate(1turn);transform:rotate(1turn)}body.nanotrasen section .content,body.nanotrasen section .label,body.nanotrasen section .line,body.syndicate section .content,body.syndicate section .label,body.syndicate section .line{display:table-cell;margin:0;text-align:left;vertical-align:middle;padding:3px 2px}body.nanotrasen section{display:table-row;width:100%}body.nanotrasen section:not(:first-child){padding-top:4px}body.nanotrasen section.candystripe:nth-child(2n){background-color:#000;-ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=#33000000,endColorStr=#33000000)";filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#33000000,endColorStr=#33000000);background-color:rgba(0,0,0,.2)}body.nanotrasen section .label{width:1%;padding-right:32px;white-space:nowrap;color:#8ba5c4}body.nanotrasen section .content:not(:last-child){padding-right:16px}body.nanotrasen section .line{width:100%}body.nanotrasen div.subdisplay{width:100%;margin:0}body.nanotrasen header.titlebar .close,body.nanotrasen header.titlebar .minimize{display:inline-block;position:relative;padding:7px;margin:-7px;color:#8ba5c4}body.nanotrasen header.titlebar .close:hover,body.nanotrasen header.titlebar .minimize:hover{color:#9cb2cd}body.nanotrasen header.titlebar{position:fixed;z-index:1;top:0;left:0;width:100%;height:32px;background-color:#363636;border-bottom:1px solid #161616;box-shadow:0 3px 3px rgba(0,0,0,.1)}body.nanotrasen header.titlebar .statusicon{position:absolute;top:4px;left:12px;transition:color .5s}body.nanotrasen header.titlebar .title{position:absolute;top:6px;left:46px;color:#8ba5c4;font-size:16px;white-space:nowrap}body.nanotrasen header.titlebar .minimize{position:absolute;top:6px;right:46px}body.nanotrasen header.titlebar .close{position:absolute;top:4px;right:12px}body.syndicate{background:url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+DQo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmVyc2lvbj0iMS4wIiB2aWV3Qm94PSIwIDAgMjAwIDI4OS43NDIiIG9wYWNpdHk9Ii4zMyI+DQogIDxwYXRoIGQ9Im0gOTMuNTM3Njc3LDAgYyAtMTguMTEzMTI1LDAgLTM0LjIyMDEzMywzLjExMTY0IC00OC4zMjM0ODQsOS4zMzQzNyAtMTMuOTY1MDkyLDYuMjIxNjcgLTI0LjYxMjQ0MiwxNS4wNzExNCAtMzEuOTQwNjUxLDI2LjU0NzEgLTcuMTg5OTM5OCwxMS4zMzc4OSAtMTAuMzAxMjI2NiwyNC43NDkxMSAtMTAuMzAxMjI2Niw0MC4yMzQ3OCAwLDEwLjY0NjYyIDIuNzI1MDAyNiwyMC40NjQ2NSA4LjE3NTExMTYsMjkuNDUyNTggNS42MTUyNzcsOC45ODY4NiAxNC4wMzgyNzcsMTcuMzUyMDQgMjUuMjY4ODIxLDI1LjA5NDM2IDExLjIzMDU0NCw3LjYwNTMxIDI2LjUwNzQyMSwxNS40MTgzNSA0NS44MzA1MTQsMjMuNDM3ODIgMTkuOTgzNzQ4LDguMjk1NTcgMzQuODQ4ODQ4LDE1LjU1NDcxIDQ0LjU5Mjk5OCwyMS43NzYzOCA5Ljc0NDE0LDYuMjIyNzMgMTYuNzYxNywxMi44NTg1IDIxLjA1NTcyLDE5LjkwOTUxIDQuMjk0MDQsNy4wNTIwOCA2LjQ0MTkzLDE1Ljc2NDA4IDYuNDQxOTMsMjYuMTM0NTkgMCwxNi4xNzcwMiAtNS4yMDE5NiwyOC40ODIyMiAtMTUuNjA2NzMsMzYuOTE2ODIgLTEwLjIzOTYsOC40MzQ3IC0yNS4wMjIwMywxMi42NTIzIC00NC4zNDUxNjksMTIuNjUyMyAtMTQuMDM4MTcxLDAgLTI1LjUxNTI0NywtMS42NTk0IC0zNC40MzM2MTgsLTQuOTc3NyAtOC45MTgzNywtMy40NTY2IC0xNi4xODU1NzIsLTguNzExMyAtMjEuODAwODM5LC0xNS43NjMzIC01LjYxNTI3NywtNy4wNTIxIC0xMC4wNzQ3OTUsLTE2LjY2MDg4IC0xMy4zNzc4OTksLTI4LjgyODEyIGwgLTI0Ljc3MzE2MjYyOTM5NDUsMCAwLDU2LjgyNjMyIEMgMzMuODU2NzY5LDI4Ni4wNzYwMSA2My43NDkwNCwyODkuNzQyMDEgODkuNjc4MzgzLDI4OS43NDIwMSBjIDE2LjAyMDAyNywwIDMwLjcxOTc4NywtMS4zODI3IDQ0LjA5NzMzNywtNC4xNDc5IDEzLjU0MjcyLC0yLjkwNDMgMjUuMTA0MSwtNy40Njc2IDM0LjY4MzA5LC0xMy42ODkzIDkuNzQ0MTMsLTYuMzU5NyAxNy4zNDA0MiwtMTQuNTE5NSAyMi43OTA1MiwtMjQuNDc0OCA1LjQ1MDEsLTEwLjA5MzMyIDguMTc1MTEsLTIyLjM5OTU5IDguMTc1MTEsLTM2LjkxNjgyIDAsLTEyLjk5NzY0IC0zLjMwMjEsLTI0LjMzNTM5IC05LjkwODI5LC0zNC4wMTQ2IC02LjQ0MTA1LC05LjgxNzI1IC0xNS41MjU0NSwtMTguNTI3MDcgLTI3LjI1MTQ2LC0yNi4xMzEzMyAtMTEuNTYwODUsLTcuNjA0MjcgLTI3LjkxMDgzLC0xNS44MzE0MiAtNDkuMDUwNjYsLTI0LjY4MDIyIC0xNy41MDY0NCwtNy4xOTAxMiAtMzAuNzE5NjY4LC0xMy42ODk0OCAtMzkuNjM4MDM4LC0xOS40OTcwMSAtOC45MTgzNzEsLTUuODA3NTIgLTE4LjYwNzQ3NCwtMTIuNDM0MDkgLTI0LjA5NjUyNCwtMTguODc0MTcgLTUuNDI2MDQzLC02LjM2NjE2IC05LjY1ODgyNiwtMTUuMDcwMDMgLTkuNjU4ODI2LC0yNC44ODcyOSAwLC05LjI2NDAxIDIuMDc1NDE0LC0xNy4yMTM0NSA2LjIyMzQ1NCwtMjMuODUwMzMgMTEuMDk4Mjk4LC0xNC4zOTc0OCA0MS4yODY2MzgsLTEuNzk1MDcgNDUuMDc1NjA5LDI0LjM0NzYyIDQuODM5MzkyLDYuNzc0OTEgOC44NDkzNSwxNi4yNDcyOSAxMi4wMjk1MTUsMjguNDE1NiBsIDIwLjUzMjM0LDAgMCwtNTUuOTk5NjcgYyAtNC40NzgyNSwtNS45MjQ0OCAtOS45NTQ4OCwtMTAuNjMyMjIgLTE1LjkwODM3LC0xNC4zNzQxMSAxLjY0MDU1LDAuNDc5MDUgMy4xOTAzOSwxLjAyMzc2IDQuNjM4NjUsMS42NDAyNCA2LjQ5ODYxLDIuNjI2MDcgMTIuMTY3OTMsNy4zMjc0NyAxNy4wMDczLDE0LjEwMzQ1IDQuODM5MzksNi43NzQ5MSA4Ljg0OTM1LDE2LjI0NTY3IDEyLjAyOTUyLDI4LjQxMzk3IDAsMCA4LjQ4MTI4LC0wLjEyODk0IDguNDg5NzgsLTAuMDAyIDAuNDE3NzYsNi40MTQ5NCAtMS43NTMzOSw5LjQ1Mjg2IC00LjEyMzQyLDEyLjU2MTA0IC0yLjQxNzQsMy4xNjk3OCAtNS4xNDQ4Niw2Ljc4OTczIC00LjAwMjc4LDEzLjAwMjkgMS41MDc4Niw4LjIwMzE4IDEwLjE4MzU0LDEwLjU5NjQyIDE0LjYyMTk0LDkuMzExNTQgLTMuMzE4NDIsLTAuNDk5MTEgLTUuMzE4NTUsLTEuNzQ5NDggLTUuMzE4NTUsLTEuNzQ5NDggMCwwIDEuODc2NDYsMC45OTg2OCA1LjY1MTE3LC0xLjM1OTgxIC0zLjI3Njk1LDAuOTU1NzEgLTEwLjcwNTI5LC0wLjc5NzM4IC0xMS44MDEyNSwtNi43NjMxMyAtMC45NTc1MiwtNS4yMDg2MSAwLjk0NjU0LC03LjI5NTE0IDMuNDAxMTMsLTEwLjUxNDgyIDIuNDU0NjIsLTMuMjE5NjggNS4yODQyNiwtNi45NTgzMSA0LjY4NDMsLTE0LjQ4ODI0IGwgMC4wMDMsMC4wMDIgOC45MjY3NiwwIDAsLTU1Ljk5OTY3IGMgLTE1LjA3MTI1LC0zLjg3MTY4IC0yNy42NTMxNCwtNi4zNjA0MiAtMzcuNzQ2NzEsLTcuNDY1ODYgLTkuOTU1MzEsLTEuMTA3NTUgLTIwLjE4ODIzLC0xLjY1OTgxIC0zMC42OTY2MTMsLTEuNjU5ODEgeiBtIDcwLjMyMTYwMywxNy4zMDg5MyAwLjIzODA1LDQwLjMwNDkgYyAxLjMxODA4LDEuMjI2NjYgMi40Mzk2NSwyLjI3ODE1IDMuMzQwODEsMy4xMDYwMiA0LjgzOTM5LDYuNzc0OTEgOC44NDkzNCwxNi4yNDU2NiAxMi4wMjk1MSwyOC40MTM5NyBsIDIwLjUzMjM0LDAgMCwtNTUuOTk5NjcgYyAtNi42NzczMSwtNC41OTM4MSAtMTkuODM2NDMsLTEwLjQ3MzA5IC0zNi4xNDA3MSwtMTUuODI1MjIgeiBtIC0yOC4xMjA0OSw1LjYwNTUxIDguNTY0NzksMTcuNzE2NTUgYyAtMTEuOTcwMzcsLTYuNDY2OTcgLTEzLjg0Njc4LC05LjcxNzI2IC04LjU2NDc5LC0xNy43MTY1NSB6IG0gMjIuNzk3MDUsMCBjIDIuNzcxNSw3Ljk5OTI5IDEuNzg3NDEsMTEuMjQ5NTggLTQuNDkzNTQsMTcuNzE2NTUgbCA0LjQ5MzU0LC0xNy43MTY1NSB6IG0gMTUuMjIxOTUsMjQuMDA4NDggOC41NjQ3OSwxNy43MTY1NSBjIC0xMS45NzAzOCwtNi40NjY5NyAtMTMuODQ2NzksLTkuNzE3MjYgLTguNTY0NzksLTE3LjcxNjU1IHogbSAyMi43OTcwNCwwIGMgMi43NzE1LDcuOTk5MjkgMS43ODc0MSwxMS4yNDk1OCAtNC40OTM1NCwxNy43MTY1NSBsIDQuNDkzNTQsLTE3LjcxNjU1IHogbSAtOTkuMTEzODQsMi4yMDc2NCA4LjU2NDc5LDE3LjcxNjU1IGMgLTExLjk3MDM4MiwtNi40NjY5NyAtMTMuODQ2NzgyLC05LjcxNzI2IC04LjU2NDc5LC0xNy43MTY1NSB6IG0gMjIuNzk1NDIsMCBjIDIuNzcxNSw3Ljk5OTI5IDEuNzg3NDEsMTEuMjQ5NTggLTQuNDkzNTQsMTcuNzE2NTUgbCA0LjQ5MzU0LC0xNy43MTY1NSB6IiAvPg0KPC9zdmc+DQo8IS0tIFRoaXMgd29yayBpcyBsaWNlbnNlZCB1bmRlciBhIENyZWF0aXZlIENvbW1vbnMgQXR0cmlidXRpb24tU2hhcmVBbGlrZSA0LjAgSW50ZXJuYXRpb25hbCBMaWNlbnNlLiAtLT4NCjwhLS0gaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbGljZW5zZXMvYnktc2EvNC4wLyAtLT4NCg==") no-repeat fixed 50%/70% 70%,linear-gradient(180deg,#750000 0,#340404);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff750000",endColorstr="#ff340404",GradientType=0)}body.syndicate .normal{color:#40628a}body.syndicate .good{color:#73e573}body.syndicate .average{color:#be6209}body.syndicate .bad{color:#b00e0e}body.syndicate .highlight{color:#000}body.syndicate main{display:block;margin-top:32px;padding:2px 6px 0}body.syndicate hr{height:2px;background-color:#272727;border:none}body.syndicate .hidden{display:none}body.syndicate .bar .barText,body.syndicate span.button{color:#fff;font-size:12px;font-weight:400;font-style:normal;text-decoration:none}body.syndicate .bold{font-weight:700}body.syndicate .italic{font-style:italic}body.syndicate [unselectable=on]{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}body.syndicate div[data-tooltip],body.syndicate span[data-tooltip]{position:relative}body.syndicate div[data-tooltip]:after,body.syndicate span[data-tooltip]:after{position:absolute;display:block;z-index:2;width:250px;padding:10px;-ms-transform:translateX(-50%);transform:translateX(-50%);visibility:hidden;opacity:0;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";white-space:normal;text-align:left;content:attr(data-tooltip);transition:all .5s;border:1px solid #272727;background-color:#363636}body.syndicate div[data-tooltip]:hover:after,body.syndicate span[data-tooltip]:hover:after{visibility:visible;opacity:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"}body.syndicate div[data-tooltip].tooltip-top:after,body.syndicate span[data-tooltip].tooltip-top:after{bottom:100%;left:50%;-ms-transform:translateX(-50%) translateY(8px);transform:translateX(-50%) translateY(8px)}body.syndicate div[data-tooltip].tooltip-top:hover:after,body.syndicate span[data-tooltip].tooltip-top:hover:after{-ms-transform:translateX(-50%) translateY(-8px);transform:translateX(-50%) translateY(-8px)}body.syndicate div[data-tooltip].tooltip-bottom:after,body.syndicate span[data-tooltip].tooltip-bottom:after{top:100%;left:50%;-ms-transform:translateX(-50%) translateY(-8px);transform:translateX(-50%) translateY(-8px)}body.syndicate div[data-tooltip].tooltip-bottom:hover:after,body.syndicate span[data-tooltip].tooltip-bottom:hover:after{-ms-transform:translateX(-50%) translateY(8px);transform:translateX(-50%) translateY(8px)}body.syndicate div[data-tooltip].tooltip-left:after,body.syndicate span[data-tooltip].tooltip-left:after{top:50%;right:100%;-ms-transform:translateX(8px) translateY(-50%);transform:translateX(8px) translateY(-50%)}body.syndicate div[data-tooltip].tooltip-left:hover:after,body.syndicate span[data-tooltip].tooltip-left:hover:after{-ms-transform:translateX(-8px) translateY(-50%);transform:translateX(-8px) translateY(-50%)}body.syndicate div[data-tooltip].tooltip-right:after,body.syndicate span[data-tooltip].tooltip-right:after{top:50%;left:100%;-ms-transform:translateX(-8px) translateY(-50%);transform:translateX(-8px) translateY(-50%)}body.syndicate div[data-tooltip].tooltip-right:hover:after,body.syndicate span[data-tooltip].tooltip-right:hover:after{-ms-transform:translateX(8px) translateY(-50%);transform:translateX(8px) translateY(-50%)}body.syndicate .bar{display:inline-block;position:relative;vertical-align:middle;width:100%;height:20px;line-height:17px;padding:1px;border:1px solid #000;background:#272727}body.syndicate .bar .barText{position:absolute;top:0;right:3px}body.syndicate .bar .barFill{display:block;height:100%;transition:background-color 1s;background-color:#000}body.syndicate .bar .barFill.good{background-color:#73e573}body.syndicate .bar .barFill.average{background-color:#be6209}body.syndicate .bar .barFill.bad{background-color:#b00e0e}body.syndicate span.button{display:inline-block;vertical-align:middle;min-height:20px;line-height:17px;padding:0 5px;white-space:nowrap;border:1px solid #272727}body.syndicate span.button .fa{padding-right:2px}body.syndicate span.button.normal{transition:background-color .5s;background-color:#397439}body.syndicate span.button.normal.active:focus,body.syndicate span.button.normal.active:hover{transition:background-color .25s;background-color:#4a964a;outline:0}body.syndicate span.button.disabled{transition:background-color .5s;background-color:#363636}body.syndicate span.button.disabled.active:focus,body.syndicate span.button.disabled.active:hover{transition:background-color .25s;background-color:#545454;outline:0}body.syndicate span.button.selected{transition:background-color .5s;background-color:#9d0808}body.syndicate span.button.selected.active:focus,body.syndicate span.button.selected.active:hover{transition:background-color .25s;background-color:#ce0b0b;outline:0}body.syndicate span.button.toggle{transition:background-color .5s;background-color:#9d0808}body.syndicate span.button.toggle.active:focus,body.syndicate span.button.toggle.active:hover{transition:background-color .25s;background-color:#ce0b0b;outline:0}body.syndicate span.button.caution{transition:background-color .5s;background-color:#be6209}body.syndicate span.button.caution.active:focus,body.syndicate span.button.caution.active:hover{transition:background-color .25s;background-color:#eb790b;outline:0}body.syndicate span.button.danger{transition:background-color .5s;background-color:#9a9d00}body.syndicate span.button.danger.active:focus,body.syndicate span.button.danger.active:hover{transition:background-color .25s;background-color:#ced200;outline:0}body.syndicate span.button.gridable{width:125px;margin:2px 0}body.syndicate span.button+span:not(.button),body.syndicate span:not(.button)+span.button{margin-left:5px}body.syndicate div.display{width:100%;padding:4px;margin:6px 0;background-color:#000;-ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=#80000000,endColorStr=#80000000)";filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#80000000,endColorStr=#80000000);background-color:rgba(0,0,0,.5);box-shadow:inset 0 0 5px rgba(0,0,0,.75)}body.syndicate div.display header,body.syndicate div.subdisplay header{display:block;position:relative;width:100%;padding:0 4px;margin-bottom:6px;color:#fff;border-bottom:2px solid #272727}body.syndicate div.display header .buttonRight,body.syndicate div.subdisplay header .buttonRight{position:absolute;bottom:6px;right:4px}body.syndicate div.display article,body.syndicate div.subdisplay article{display:table;width:100%;border-collapse:collapse}body.syndicate input{display:inline-block;vertical-align:middle;height:20px;line-height:17px;padding:0 5px;white-space:nowrap;color:#fff;background-color:#9d0808;border:1px solid #272727}body.syndicate input::-webkit-input-placeholder{color:#999}body.syndicate input::-moz-placeholder{color:#999}body.syndicate input:-ms-input-placeholder{color:#999}body.syndicate input::placeholder{color:#999}body.syndicate input::-ms-clear{display:none}body.syndicate svg.linegraph{overflow:hidden}body.syndicate div.notice{margin:8px 0;padding:4px;box-shadow:none;color:#000;font-weight:700;font-style:italic;background-color:#750000;background-image:repeating-linear-gradient(-45deg,#750000,#750000 10px,#910101 0,#910101 20px)}body.syndicate div.notice .label{color:#000}body.syndicate div.notice .content:only-of-type{padding:0}body.syndicate div.notice hr{background-color:#272727}body.syndicate div.resize{position:fixed;bottom:0;right:0;width:0;height:0;border-style:solid;border-width:0 0 45px 45px;border-color:transparent transparent #363636;-ms-transform:rotate(1turn);transform:rotate(1turn)}body.syndicate section .content,body.syndicate section .label,body.syndicate section .line{display:table-cell;margin:0;text-align:left;vertical-align:middle;padding:3px 2px}body.syndicate section{display:table-row;width:100%}body.syndicate section:not(:first-child){padding-top:4px}body.syndicate section.candystripe:nth-child(2n){background-color:#000;-ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=#33000000,endColorStr=#33000000)";filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#33000000,endColorStr=#33000000);background-color:rgba(0,0,0,.2)}body.syndicate section .label{width:1%;padding-right:32px;white-space:nowrap;color:#fff}body.syndicate section .content:not(:last-child){padding-right:16px}body.syndicate section .line{width:100%}body.syndicate div.subdisplay{width:100%;margin:0}body.syndicate header.titlebar .close,body.syndicate header.titlebar .minimize{display:inline-block;position:relative;padding:7px;margin:-7px;color:#e74242}body.syndicate header.titlebar .close:hover,body.syndicate header.titlebar .minimize:hover{color:#eb5e5e}body.syndicate header.titlebar{position:fixed;z-index:1;top:0;left:0;width:100%;height:32px;background-color:#363636;border-bottom:1px solid #161616;box-shadow:0 3px 3px rgba(0,0,0,.1)}body.syndicate header.titlebar .statusicon{position:absolute;top:4px;left:12px;transition:color .5s}body.syndicate header.titlebar .title{position:absolute;top:6px;left:46px;color:#e74242;font-size:16px;white-space:nowrap}body.syndicate header.titlebar .minimize{position:absolute;top:6px;right:46px}body.syndicate header.titlebar .close{position:absolute;top:4px;right:12px}.no-icons header.titlebar .statusicon{font-size:20px}.no-icons header.titlebar .statusicon:after{content:"O"}.no-icons header.titlebar .minimize{top:-2px;font-size:20px}.no-icons header.titlebar .minimize:after{content:"—"}.no-icons header.titlebar .close{font-size:20px}.no-icons header.titlebar .close:after{content:"X"}
\ No newline at end of file
+@charset "utf-8";body,html{box-sizing:border-box;height:100%;margin:0}html{overflow:hidden;cursor:default}body{overflow:auto;font-family:Verdana,Geneva,sans-serif;font-size:12px;color:#fff;background-color:#2a2a2a;background-image:linear-gradient(180deg,#2a2a2a 0,#202020);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff2a2a2a',endColorstr='#ff202020',GradientType=0)}*,:after,:before{box-sizing:inherit}h1,h2,h3,h4{display:inline-block;margin:0;padding:6px 0}h1{font-size:18px}h2{font-size:16px}h3{font-size:14px}h4{font-size:12px}body.clockwork{background:linear-gradient(180deg,#b18b25 0,#5f380e);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffb18b25',endColorstr='#ff5f380e',GradientType=0)}body.clockwork .normal{color:#b18b25}body.clockwork .good{color:#cfba47}body.clockwork .average{color:#896b19}body.clockwork .bad{color:#5f380e}body.clockwork .highlight{color:#b18b25}body.clockwork main{display:block;margin-top:32px;padding:2px 6px 0}body.clockwork hr{height:2px;background-color:#b18b25;border:none}body.clockwork .hidden{display:none}body.clockwork .bar .barText,body.clockwork span.button{color:#b18b25;font-size:12px;font-weight:400;font-style:normal;text-decoration:none}body.clockwork .bold{font-weight:700}body.clockwork .italic{font-style:italic}body.clockwork [unselectable=on]{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}body.clockwork div[data-tooltip],body.clockwork span[data-tooltip]{position:relative}body.clockwork div[data-tooltip]:after,body.clockwork span[data-tooltip]:after{position:absolute;display:block;z-index:2;width:250px;padding:10px;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);visibility:hidden;opacity:0;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";white-space:normal;text-align:left;content:attr(data-tooltip);transition:all .5s;border:1px solid #170800;background-color:#2d1400}body.clockwork div[data-tooltip]:hover:after,body.clockwork span[data-tooltip]:hover:after{visibility:visible;opacity:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"}body.clockwork div[data-tooltip].tooltip-top:after,body.clockwork span[data-tooltip].tooltip-top:after{bottom:100%;left:50%;-webkit-transform:translateX(-50%) translateY(8px);-ms-transform:translateX(-50%) translateY(8px);transform:translateX(-50%) translateY(8px)}body.clockwork div[data-tooltip].tooltip-bottom:after,body.clockwork div[data-tooltip].tooltip-top:hover:after,body.clockwork span[data-tooltip].tooltip-bottom:after,body.clockwork span[data-tooltip].tooltip-top:hover:after{-webkit-transform:translateX(-50%) translateY(-8px);-ms-transform:translateX(-50%) translateY(-8px);transform:translateX(-50%) translateY(-8px)}body.clockwork div[data-tooltip].tooltip-bottom:after,body.clockwork span[data-tooltip].tooltip-bottom:after{top:100%;left:50%}body.clockwork div[data-tooltip].tooltip-bottom:hover:after,body.clockwork span[data-tooltip].tooltip-bottom:hover:after{-webkit-transform:translateX(-50%) translateY(8px);-ms-transform:translateX(-50%) translateY(8px);transform:translateX(-50%) translateY(8px)}body.clockwork div[data-tooltip].tooltip-left:after,body.clockwork span[data-tooltip].tooltip-left:after{top:50%;right:100%;-webkit-transform:translateX(8px) translateY(-50%);-ms-transform:translateX(8px) translateY(-50%);transform:translateX(8px) translateY(-50%)}body.clockwork div[data-tooltip].tooltip-left:hover:after,body.clockwork div[data-tooltip].tooltip-right:after,body.clockwork span[data-tooltip].tooltip-left:hover:after,body.clockwork span[data-tooltip].tooltip-right:after{-webkit-transform:translateX(-8px) translateY(-50%);-ms-transform:translateX(-8px) translateY(-50%);transform:translateX(-8px) translateY(-50%)}body.clockwork div[data-tooltip].tooltip-right:after,body.clockwork span[data-tooltip].tooltip-right:after{top:50%;left:100%}body.clockwork div[data-tooltip].tooltip-right:hover:after,body.clockwork span[data-tooltip].tooltip-right:hover:after{-webkit-transform:translateX(8px) translateY(-50%);-ms-transform:translateX(8px) translateY(-50%);transform:translateX(8px) translateY(-50%)}body.clockwork .bar{display:inline-block;position:relative;vertical-align:middle;width:100%;height:20px;line-height:17px;padding:1px;border:1px solid #170800;background:#2d1400}body.clockwork .bar .barText{position:absolute;top:0;right:3px}body.clockwork .bar .barFill{display:block;height:100%;transition:background-color 1s;background-color:#b18b25}body.clockwork .bar .barFill.good{background-color:#cfba47}body.clockwork .bar .barFill.average{background-color:#896b19}body.clockwork .bar .barFill.bad{background-color:#5f380e}body.clockwork span.button{display:inline-block;vertical-align:middle;min-height:20px;line-height:17px;padding:0 5px;white-space:nowrap;border:1px solid #170800}body.clockwork span.button .fa{padding-right:2px}body.clockwork span.button.normal{transition:background-color .5s;background-color:#5f380e}body.clockwork span.button.normal.active:focus,body.clockwork span.button.normal.active:hover{transition:background-color .25s;background-color:#704211;outline:0}body.clockwork span.button.disabled{transition:background-color .5s;background-color:#2d1400}body.clockwork span.button.disabled.active:focus,body.clockwork span.button.disabled.active:hover{transition:background-color .25s;background-color:#441e00;outline:0}body.clockwork span.button.selected{transition:background-color .5s;background-color:#cfba47}body.clockwork span.button.selected.active:focus,body.clockwork span.button.selected.active:hover{transition:background-color .25s;background-color:#d1bd50;outline:0}body.clockwork span.button.toggle{transition:background-color .5s;background-color:#cfba47}body.clockwork span.button.toggle.active:focus,body.clockwork span.button.toggle.active:hover{transition:background-color .25s;background-color:#d1bd50;outline:0}body.clockwork span.button.caution{transition:background-color .5s;background-color:#be6209}body.clockwork span.button.caution.active:focus,body.clockwork span.button.caution.active:hover{transition:background-color .25s;background-color:#cd6a0a;outline:0}body.clockwork span.button.danger{transition:background-color .5s;background-color:#9a9d00}body.clockwork span.button.danger.active:focus,body.clockwork span.button.danger.active:hover{transition:background-color .25s;background-color:#abaf00;outline:0}body.clockwork span.button.gridable{width:125px;margin:2px 0}body.clockwork span.button+span:not(.button),body.clockwork span:not(.button)+span.button{margin-left:5px}body.clockwork div.display{width:100%;padding:4px;margin:6px 0;background-color:#2d1400;-ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=#e62d1400,endColorStr=#e62d1400)";filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#e62d1400,endColorStr=#e62d1400);background-color:rgba(45,20,0,.9);box-shadow:inset 0 0 5px rgba(0,0,0,.3)}body.clockwork div.display header,body.clockwork div.subdisplay header{display:block;position:relative;width:100%;padding:0 4px;margin-bottom:6px;color:#cfba47;border-bottom:2px solid #b18b25}body.clockwork div.display header .buttonRight,body.clockwork div.subdisplay header .buttonRight{position:absolute;bottom:6px;right:4px}body.clockwork div.display article,body.clockwork div.subdisplay article{display:table;width:100%;border-collapse:collapse}body.clockwork input{display:inline-block;vertical-align:middle;height:20px;line-height:17px;padding:0 5px;white-space:nowrap;color:#b18b25;background-color:#cfba47;border:1px solid #272727}body.clockwork input::-webkit-input-placeholder{color:#999}body.clockwork input::-moz-placeholder{color:#999}body.clockwork input:-ms-input-placeholder{color:#999}body.clockwork input::placeholder{color:#999}body.clockwork input::-ms-clear{display:none}body.clockwork svg.linegraph{overflow:hidden}body.clockwork div.notice{margin:8px 0;padding:4px;box-shadow:none;color:#2d1400;font-weight:700;font-style:italic;background-color:#000;background-image:repeating-linear-gradient(-45deg,#000,#000 10px,#170800 0,#170800 20px)}body.clockwork div.notice .label{color:#2d1400}body.clockwork div.notice .content:only-of-type{padding:0}body.clockwork div.notice hr{background-color:#896b19}body.clockwork div.resize{position:fixed;bottom:0;right:0;width:0;height:0;border-style:solid;border-width:0 0 45px 45px;border-color:transparent transparent #5f380e;-webkit-transform:rotate(1turn);-ms-transform:rotate(1turn);transform:rotate(1turn)}body.clockwork section .content,body.clockwork section .label,body.clockwork section .line,body.nanotrasen section .content,body.nanotrasen section .label,body.nanotrasen section .line,body.syndicate section .content,body.syndicate section .label,body.syndicate section .line{display:table-cell;margin:0;text-align:left;vertical-align:middle;padding:3px 2px}body.clockwork section{display:table-row;width:100%}body.clockwork section:not(:first-child){padding-top:4px}body.clockwork section.candystripe:nth-child(even){background-color:#000;-ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=#33000000,endColorStr=#33000000)";filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#33000000,endColorStr=#33000000);background-color:rgba(0,0,0,.2)}body.clockwork section .label{width:1%;padding-right:32px;white-space:nowrap;color:#b18b25}body.clockwork section .content:not(:last-child){padding-right:16px}body.clockwork section .line{width:100%}body.clockwork div.subdisplay{width:100%;margin:0}body.clockwork header.titlebar .close,body.clockwork header.titlebar .minimize{display:inline-block;position:relative;padding:7px;margin:-7px;color:#cfba47}body.clockwork header.titlebar .close:hover,body.clockwork header.titlebar .minimize:hover{color:#d1bd50}body.clockwork header.titlebar{position:fixed;z-index:1;top:0;left:0;width:100%;height:32px;background-color:#5f380e;border-bottom:1px solid #170800;box-shadow:0 3px 3px rgba(0,0,0,.1)}body.clockwork header.titlebar .statusicon{position:absolute;top:4px;left:12px;transition:color .5s}body.clockwork header.titlebar .title{position:absolute;top:6px;left:46px;color:#cfba47;font-size:16px;white-space:nowrap}body.clockwork header.titlebar .minimize{position:absolute;top:6px;right:46px}body.clockwork header.titlebar .close{position:absolute;top:4px;right:12px}body.nanotrasen{background:url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2ZXJzaW9uPSIxLjAiIHZpZXdCb3g9IjAgMCA0MjUgMjAwIiBvcGFjaXR5PSIuMzMiPgogIDxwYXRoIGQ9Im0gMTc4LjAwMzk5LDAuMDM4NjkgLTcxLjIwMzkzLDAgYSA2Ljc2MTM0MjIsNi4wMjU1NDk1IDAgMCAwIC02Ljc2MTM0LDYuMDI1NTUgbCAwLDE4Ny44NzE0NyBhIDYuNzYxMzQyMiw2LjAyNTU0OTUgMCAwIDAgNi43NjEzNCw2LjAyNTU0IGwgNTMuMTA3MiwwIGEgNi43NjEzNDIyLDYuMDI1NTQ5NSAwIDAgMCA2Ljc2MTM1LC02LjAyNTU0IGwgMCwtMTAxLjU0NDAxOCA3Mi4yMTYyOCwxMDQuNjk5Mzk4IGEgNi43NjEzNDIyLDYuMDI1NTQ5NSAwIDAgMCA1Ljc2MDE1LDIuODcwMTYgbCA3My41NTQ4NywwIGEgNi43NjEzNDIyLDYuMDI1NTQ5NSAwIDAgMCA2Ljc2MTM1LC02LjAyNTU0IGwgMCwtMTg3Ljg3MTQ3IGEgNi43NjEzNDIyLDYuMDI1NTQ5NSAwIDAgMCAtNi43NjEzNSwtNi4wMjU1NSBsIC01NC43MTY0NCwwIGEgNi43NjEzNDIyLDYuMDI1NTQ5NSAwIDAgMCAtNi43NjEzMyw2LjAyNTU1IGwgMCwxMDIuNjE5MzUgTCAxODMuNzY0MTMsMi45MDg4NiBhIDYuNzYxMzQyMiw2LjAyNTU0OTUgMCAwIDAgLTUuNzYwMTQsLTIuODcwMTcgeiIgLz4KICA8cGF0aCBkPSJNIDQuODQ0NjMzMywyMi4xMDg3NSBBIDEzLjQxMjAzOSwxMi41MDE4NDIgMCAwIDEgMTMuNDc3NTg4LDAuMDM5MjQgbCA2Ni4xMTgzMTUsMCBhIDUuMzY0ODE1OCw1LjAwMDczNyAwIDAgMSA1LjM2NDgyMyw1LjAwMDczIGwgMCw3OS44NzkzMSB6IiAvPgogIDxwYXRoIGQ9Im0gNDIwLjE1NTM1LDE3Ny44OTExOSBhIDEzLjQxMjAzOCwxMi41MDE4NDIgMCAwIDEgLTguNjMyOTUsMjIuMDY5NTEgbCAtNjYuMTE4MzIsMCBhIDUuMzY0ODE1Miw1LjAwMDczNyAwIDAgMSAtNS4zNjQ4MiwtNS4wMDA3NCBsIDAsLTc5Ljg3OTMxIHoiIC8+Cjwvc3ZnPgo8IS0tIFRoaXMgd29yayBpcyBsaWNlbnNlZCB1bmRlciBhIENyZWF0aXZlIENvbW1vbnMgQXR0cmlidXRpb24tU2hhcmVBbGlrZSA0LjAgSW50ZXJuYXRpb25hbCBMaWNlbnNlLiAtLT4KPCEtLSBodHRwOi8vY3JlYXRpdmVjb21tb25zLm9yZy9saWNlbnNlcy9ieS1zYS80LjAvIC0tPgo=") no-repeat fixed 50%/70% 70%,linear-gradient(180deg,#2a2a2a 0,#202020);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff2a2a2a',endColorstr='#ff202020',GradientType=0)}body.nanotrasen .normal{color:#40628a}body.nanotrasen .good{color:#537d29}body.nanotrasen .average{color:#be6209}body.nanotrasen .bad{color:#b00e0e}body.nanotrasen .highlight{color:#8ba5c4}body.nanotrasen main{display:block;margin-top:32px;padding:2px 6px 0}body.nanotrasen hr{height:2px;background-color:#40628a;border:none}body.nanotrasen .hidden{display:none}body.nanotrasen .bar .barText,body.nanotrasen span.button{color:#fff;font-size:12px;font-weight:400;font-style:normal;text-decoration:none}body.nanotrasen .bold{font-weight:700}body.nanotrasen .italic{font-style:italic}body.nanotrasen [unselectable=on]{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}body.nanotrasen div[data-tooltip],body.nanotrasen span[data-tooltip]{position:relative}body.nanotrasen div[data-tooltip]:after,body.nanotrasen span[data-tooltip]:after{position:absolute;display:block;z-index:2;width:250px;padding:10px;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);visibility:hidden;opacity:0;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";white-space:normal;text-align:left;content:attr(data-tooltip);transition:all .5s;border:1px solid #272727;background-color:#363636}body.nanotrasen div[data-tooltip]:hover:after,body.nanotrasen span[data-tooltip]:hover:after{visibility:visible;opacity:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"}body.nanotrasen div[data-tooltip].tooltip-top:after,body.nanotrasen span[data-tooltip].tooltip-top:after{bottom:100%;left:50%;-webkit-transform:translateX(-50%) translateY(8px);-ms-transform:translateX(-50%) translateY(8px);transform:translateX(-50%) translateY(8px)}body.nanotrasen div[data-tooltip].tooltip-bottom:after,body.nanotrasen div[data-tooltip].tooltip-top:hover:after,body.nanotrasen span[data-tooltip].tooltip-bottom:after,body.nanotrasen span[data-tooltip].tooltip-top:hover:after{-webkit-transform:translateX(-50%) translateY(-8px);-ms-transform:translateX(-50%) translateY(-8px);transform:translateX(-50%) translateY(-8px)}body.nanotrasen div[data-tooltip].tooltip-bottom:after,body.nanotrasen span[data-tooltip].tooltip-bottom:after{top:100%;left:50%}body.nanotrasen div[data-tooltip].tooltip-bottom:hover:after,body.nanotrasen span[data-tooltip].tooltip-bottom:hover:after{-webkit-transform:translateX(-50%) translateY(8px);-ms-transform:translateX(-50%) translateY(8px);transform:translateX(-50%) translateY(8px)}body.nanotrasen div[data-tooltip].tooltip-left:after,body.nanotrasen span[data-tooltip].tooltip-left:after{top:50%;right:100%;-webkit-transform:translateX(8px) translateY(-50%);-ms-transform:translateX(8px) translateY(-50%);transform:translateX(8px) translateY(-50%)}body.nanotrasen div[data-tooltip].tooltip-left:hover:after,body.nanotrasen div[data-tooltip].tooltip-right:after,body.nanotrasen span[data-tooltip].tooltip-left:hover:after,body.nanotrasen span[data-tooltip].tooltip-right:after{-webkit-transform:translateX(-8px) translateY(-50%);-ms-transform:translateX(-8px) translateY(-50%);transform:translateX(-8px) translateY(-50%)}body.nanotrasen div[data-tooltip].tooltip-right:after,body.nanotrasen span[data-tooltip].tooltip-right:after{top:50%;left:100%}body.nanotrasen div[data-tooltip].tooltip-right:hover:after,body.nanotrasen span[data-tooltip].tooltip-right:hover:after{-webkit-transform:translateX(8px) translateY(-50%);-ms-transform:translateX(8px) translateY(-50%);transform:translateX(8px) translateY(-50%)}body.nanotrasen .bar{display:inline-block;position:relative;vertical-align:middle;width:100%;height:20px;line-height:17px;padding:1px;border:1px solid #40628a;background:#272727}body.nanotrasen .bar .barText{position:absolute;top:0;right:3px}body.nanotrasen .bar .barFill{display:block;height:100%;transition:background-color 1s;background-color:#40628a}body.nanotrasen .bar .barFill.good{background-color:#537d29}body.nanotrasen .bar .barFill.average{background-color:#be6209}body.nanotrasen .bar .barFill.bad{background-color:#b00e0e}body.nanotrasen span.button{display:inline-block;vertical-align:middle;min-height:20px;line-height:17px;padding:0 5px;white-space:nowrap;border:1px solid #272727}body.nanotrasen span.button .fa{padding-right:2px}body.nanotrasen span.button.normal{transition:background-color .5s;background-color:#40628a}body.nanotrasen span.button.normal.active:focus,body.nanotrasen span.button.normal.active:hover{transition:background-color .25s;background-color:#4f78aa;outline:0}body.nanotrasen span.button.disabled{transition:background-color .5s;background-color:#999}body.nanotrasen span.button.disabled.active:focus,body.nanotrasen span.button.disabled.active:hover{transition:background-color .25s;background-color:#a8a8a8;outline:0}body.nanotrasen span.button.selected{transition:background-color .5s;background-color:#2f943c}body.nanotrasen span.button.selected.active:focus,body.nanotrasen span.button.selected.active:hover{transition:background-color .25s;background-color:#3ab84b;outline:0}body.nanotrasen span.button.toggle{transition:background-color .5s;background-color:#2f943c}body.nanotrasen span.button.toggle.active:focus,body.nanotrasen span.button.toggle.active:hover{transition:background-color .25s;background-color:#3ab84b;outline:0}body.nanotrasen span.button.caution{transition:background-color .5s;background-color:#9a9d00}body.nanotrasen span.button.caution.active:focus,body.nanotrasen span.button.caution.active:hover{transition:background-color .25s;background-color:#ced200;outline:0}body.nanotrasen span.button.danger{transition:background-color .5s;background-color:#9d0808}body.nanotrasen span.button.danger.active:focus,body.nanotrasen span.button.danger.active:hover{transition:background-color .25s;background-color:#ce0b0b;outline:0}body.nanotrasen span.button.gridable{width:125px;margin:2px 0}body.nanotrasen span.button+span:not(.button),body.nanotrasen span:not(.button)+span.button{margin-left:5px}body.nanotrasen div.display{width:100%;padding:4px;margin:6px 0;background-color:#000;-ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=#54000000,endColorStr=#54000000)";filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#54000000,endColorStr=#54000000);background-color:rgba(0,0,0,.33);box-shadow:inset 0 0 5px rgba(0,0,0,.5)}body.nanotrasen div.display header,body.nanotrasen div.subdisplay header{display:block;position:relative;width:100%;padding:0 4px;margin-bottom:6px;color:#fff;border-bottom:2px solid #40628a}body.nanotrasen div.display header .buttonRight,body.nanotrasen div.subdisplay header .buttonRight{position:absolute;bottom:6px;right:4px}body.nanotrasen div.display article,body.nanotrasen div.subdisplay article{display:table;width:100%;border-collapse:collapse}body.nanotrasen input{display:inline-block;vertical-align:middle;height:20px;line-height:17px;padding:0 5px;white-space:nowrap;color:#000;background-color:#fff;border:1px solid #272727}body.nanotrasen input::-webkit-input-placeholder{color:#999}body.nanotrasen input::-moz-placeholder{color:#999}body.nanotrasen input:-ms-input-placeholder{color:#999}body.nanotrasen input::placeholder{color:#999}body.nanotrasen input::-ms-clear{display:none}body.nanotrasen svg.linegraph{overflow:hidden}body.nanotrasen div.notice{margin:8px 0;padding:4px;box-shadow:none;color:#000;font-weight:700;font-style:italic;background-color:#bb9b68;background-image:repeating-linear-gradient(-45deg,#bb9b68,#bb9b68 10px,#b1905d 0,#b1905d 20px)}body.nanotrasen div.notice .label{color:#000}body.nanotrasen div.notice .content:only-of-type{padding:0}body.nanotrasen div.notice hr{background-color:#272727}body.nanotrasen div.resize{position:fixed;bottom:0;right:0;width:0;height:0;border-style:solid;border-width:0 0 45px 45px;border-color:transparent transparent #363636;-webkit-transform:rotate(1turn);-ms-transform:rotate(1turn);transform:rotate(1turn)}body.nanotrasen section .content,body.nanotrasen section .label,body.nanotrasen section .line,body.syndicate section .content,body.syndicate section .label,body.syndicate section .line{display:table-cell;margin:0;text-align:left;vertical-align:middle;padding:3px 2px}body.nanotrasen section{display:table-row;width:100%}body.nanotrasen section:not(:first-child){padding-top:4px}body.nanotrasen section.candystripe:nth-child(even){background-color:#000;-ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=#33000000,endColorStr=#33000000)";filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#33000000,endColorStr=#33000000);background-color:rgba(0,0,0,.2)}body.nanotrasen section .label{width:1%;padding-right:32px;white-space:nowrap;color:#8ba5c4}body.nanotrasen section .content:not(:last-child){padding-right:16px}body.nanotrasen section .line{width:100%}body.nanotrasen div.subdisplay{width:100%;margin:0}body.nanotrasen header.titlebar .close,body.nanotrasen header.titlebar .minimize{display:inline-block;position:relative;padding:7px;margin:-7px;color:#8ba5c4}body.nanotrasen header.titlebar .close:hover,body.nanotrasen header.titlebar .minimize:hover{color:#9cb2cd}body.nanotrasen header.titlebar{position:fixed;z-index:1;top:0;left:0;width:100%;height:32px;background-color:#363636;border-bottom:1px solid #161616;box-shadow:0 3px 3px rgba(0,0,0,.1)}body.nanotrasen header.titlebar .statusicon{position:absolute;top:4px;left:12px;transition:color .5s}body.nanotrasen header.titlebar .title{position:absolute;top:6px;left:46px;color:#8ba5c4;font-size:16px;white-space:nowrap}body.nanotrasen header.titlebar .minimize{position:absolute;top:6px;right:46px}body.nanotrasen header.titlebar .close{position:absolute;top:4px;right:12px}body.syndicate{background:url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2ZXJzaW9uPSIxLjAiIHZpZXdCb3g9IjAgMCAyMDAgMjg5Ljc0MiIgb3BhY2l0eT0iLjMzIj4KICA8cGF0aCBkPSJtIDkzLjUzNzY3NywwIGMgLTE4LjExMzEyNSwwIC0zNC4yMjAxMzMsMy4xMTE2NCAtNDguMzIzNDg0LDkuMzM0MzcgLTEzLjk2NTA5Miw2LjIyMTY3IC0yNC42MTI0NDIsMTUuMDcxMTQgLTMxLjk0MDY1MSwyNi41NDcxIC03LjE4OTkzOTgsMTEuMzM3ODkgLTEwLjMwMTIyNjYsMjQuNzQ5MTEgLTEwLjMwMTIyNjYsNDAuMjM0NzggMCwxMC42NDY2MiAyLjcyNTAwMjYsMjAuNDY0NjUgOC4xNzUxMTE2LDI5LjQ1MjU4IDUuNjE1Mjc3LDguOTg2ODYgMTQuMDM4Mjc3LDE3LjM1MjA0IDI1LjI2ODgyMSwyNS4wOTQzNiAxMS4yMzA1NDQsNy42MDUzMSAyNi41MDc0MjEsMTUuNDE4MzUgNDUuODMwNTE0LDIzLjQzNzgyIDE5Ljk4Mzc0OCw4LjI5NTU3IDM0Ljg0ODg0OCwxNS41NTQ3MSA0NC41OTI5OTgsMjEuNzc2MzggOS43NDQxNCw2LjIyMjczIDE2Ljc2MTcsMTIuODU4NSAyMS4wNTU3MiwxOS45MDk1MSA0LjI5NDA0LDcuMDUyMDggNi40NDE5MywxNS43NjQwOCA2LjQ0MTkzLDI2LjEzNDU5IDAsMTYuMTc3MDIgLTUuMjAxOTYsMjguNDgyMjIgLTE1LjYwNjczLDM2LjkxNjgyIC0xMC4yMzk2LDguNDM0NyAtMjUuMDIyMDMsMTIuNjUyMyAtNDQuMzQ1MTY5LDEyLjY1MjMgLTE0LjAzODE3MSwwIC0yNS41MTUyNDcsLTEuNjU5NCAtMzQuNDMzNjE4LC00Ljk3NzcgLTguOTE4MzcsLTMuNDU2NiAtMTYuMTg1NTcyLC04LjcxMTMgLTIxLjgwMDgzOSwtMTUuNzYzMyAtNS42MTUyNzcsLTcuMDUyMSAtMTAuMDc0Nzk1LC0xNi42NjA4OCAtMTMuMzc3ODk5LC0yOC44MjgxMiBsIC0yNC43NzMxNjI2MjkzOTQ1LDAgMCw1Ni44MjYzMiBDIDMzLjg1Njc2OSwyODYuMDc2MDEgNjMuNzQ5MDQsMjg5Ljc0MjAxIDg5LjY3ODM4MywyODkuNzQyMDEgYyAxNi4wMjAwMjcsMCAzMC43MTk3ODcsLTEuMzgyNyA0NC4wOTczMzcsLTQuMTQ3OSAxMy41NDI3MiwtMi45MDQzIDI1LjEwNDEsLTcuNDY3NiAzNC42ODMwOSwtMTMuNjg5MyA5Ljc0NDEzLC02LjM1OTcgMTcuMzQwNDIsLTE0LjUxOTUgMjIuNzkwNTIsLTI0LjQ3NDggNS40NTAxLC0xMC4wOTMzMiA4LjE3NTExLC0yMi4zOTk1OSA4LjE3NTExLC0zNi45MTY4MiAwLC0xMi45OTc2NCAtMy4zMDIxLC0yNC4zMzUzOSAtOS45MDgyOSwtMzQuMDE0NiAtNi40NDEwNSwtOS44MTcyNSAtMTUuNTI1NDUsLTE4LjUyNzA3IC0yNy4yNTE0NiwtMjYuMTMxMzMgLTExLjU2MDg1LC03LjYwNDI3IC0yNy45MTA4MywtMTUuODMxNDIgLTQ5LjA1MDY2LC0yNC42ODAyMiAtMTcuNTA2NDQsLTcuMTkwMTIgLTMwLjcxOTY2OCwtMTMuNjg5NDggLTM5LjYzODAzOCwtMTkuNDk3MDEgLTguOTE4MzcxLC01LjgwNzUyIC0xOC42MDc0NzQsLTEyLjQzNDA5IC0yNC4wOTY1MjQsLTE4Ljg3NDE3IC01LjQyNjA0MywtNi4zNjYxNiAtOS42NTg4MjYsLTE1LjA3MDAzIC05LjY1ODgyNiwtMjQuODg3MjkgMCwtOS4yNjQwMSAyLjA3NTQxNCwtMTcuMjEzNDUgNi4yMjM0NTQsLTIzLjg1MDMzIDExLjA5ODI5OCwtMTQuMzk3NDggNDEuMjg2NjM4LC0xLjc5NTA3IDQ1LjA3NTYwOSwyNC4zNDc2MiA0LjgzOTM5Miw2Ljc3NDkxIDguODQ5MzUsMTYuMjQ3MjkgMTIuMDI5NTE1LDI4LjQxNTYgbCAyMC41MzIzNCwwIDAsLTU1Ljk5OTY3IGMgLTQuNDc4MjUsLTUuOTI0NDggLTkuOTU0ODgsLTEwLjYzMjIyIC0xNS45MDgzNywtMTQuMzc0MTEgMS42NDA1NSwwLjQ3OTA1IDMuMTkwMzksMS4wMjM3NiA0LjYzODY1LDEuNjQwMjQgNi40OTg2MSwyLjYyNjA3IDEyLjE2NzkzLDcuMzI3NDcgMTcuMDA3MywxNC4xMDM0NSA0LjgzOTM5LDYuNzc0OTEgOC44NDkzNSwxNi4yNDU2NyAxMi4wMjk1MiwyOC40MTM5NyAwLDAgOC40ODEyOCwtMC4xMjg5NCA4LjQ4OTc4LC0wLjAwMiAwLjQxNzc2LDYuNDE0OTQgLTEuNzUzMzksOS40NTI4NiAtNC4xMjM0MiwxMi41NjEwNCAtMi40MTc0LDMuMTY5NzggLTUuMTQ0ODYsNi43ODk3MyAtNC4wMDI3OCwxMy4wMDI5IDEuNTA3ODYsOC4yMDMxOCAxMC4xODM1NCwxMC41OTY0MiAxNC42MjE5NCw5LjMxMTU0IC0zLjMxODQyLC0wLjQ5OTExIC01LjMxODU1LC0xLjc0OTQ4IC01LjMxODU1LC0xLjc0OTQ4IDAsMCAxLjg3NjQ2LDAuOTk4NjggNS42NTExNywtMS4zNTk4MSAtMy4yNzY5NSwwLjk1NTcxIC0xMC43MDUyOSwtMC43OTczOCAtMTEuODAxMjUsLTYuNzYzMTMgLTAuOTU3NTIsLTUuMjA4NjEgMC45NDY1NCwtNy4yOTUxNCAzLjQwMTEzLC0xMC41MTQ4MiAyLjQ1NDYyLC0zLjIxOTY4IDUuMjg0MjYsLTYuOTU4MzEgNC42ODQzLC0xNC40ODgyNCBsIDAuMDAzLDAuMDAyIDguOTI2NzYsMCAwLC01NS45OTk2NyBjIC0xNS4wNzEyNSwtMy44NzE2OCAtMjcuNjUzMTQsLTYuMzYwNDIgLTM3Ljc0NjcxLC03LjQ2NTg2IC05Ljk1NTMxLC0xLjEwNzU1IC0yMC4xODgyMywtMS42NTk4MSAtMzAuNjk2NjEzLC0xLjY1OTgxIHogbSA3MC4zMjE2MDMsMTcuMzA4OTMgMC4yMzgwNSw0MC4zMDQ5IGMgMS4zMTgwOCwxLjIyNjY2IDIuNDM5NjUsMi4yNzgxNSAzLjM0MDgxLDMuMTA2MDIgNC44MzkzOSw2Ljc3NDkxIDguODQ5MzQsMTYuMjQ1NjYgMTIuMDI5NTEsMjguNDEzOTcgbCAyMC41MzIzNCwwIDAsLTU1Ljk5OTY3IGMgLTYuNjc3MzEsLTQuNTkzODEgLTE5LjgzNjQzLC0xMC40NzMwOSAtMzYuMTQwNzEsLTE1LjgyNTIyIHogbSAtMjguMTIwNDksNS42MDU1MSA4LjU2NDc5LDE3LjcxNjU1IGMgLTExLjk3MDM3LC02LjQ2Njk3IC0xMy44NDY3OCwtOS43MTcyNiAtOC41NjQ3OSwtMTcuNzE2NTUgeiBtIDIyLjc5NzA1LDAgYyAyLjc3MTUsNy45OTkyOSAxLjc4NzQxLDExLjI0OTU4IC00LjQ5MzU0LDE3LjcxNjU1IGwgNC40OTM1NCwtMTcuNzE2NTUgeiBtIDE1LjIyMTk1LDI0LjAwODQ4IDguNTY0NzksMTcuNzE2NTUgYyAtMTEuOTcwMzgsLTYuNDY2OTcgLTEzLjg0Njc5LC05LjcxNzI2IC04LjU2NDc5LC0xNy43MTY1NSB6IG0gMjIuNzk3MDQsMCBjIDIuNzcxNSw3Ljk5OTI5IDEuNzg3NDEsMTEuMjQ5NTggLTQuNDkzNTQsMTcuNzE2NTUgbCA0LjQ5MzU0LC0xNy43MTY1NSB6IG0gLTk5LjExMzg0LDIuMjA3NjQgOC41NjQ3OSwxNy43MTY1NSBjIC0xMS45NzAzODIsLTYuNDY2OTcgLTEzLjg0Njc4MiwtOS43MTcyNiAtOC41NjQ3OSwtMTcuNzE2NTUgeiBtIDIyLjc5NTQyLDAgYyAyLjc3MTUsNy45OTkyOSAxLjc4NzQxLDExLjI0OTU4IC00LjQ5MzU0LDE3LjcxNjU1IGwgNC40OTM1NCwtMTcuNzE2NTUgeiIgLz4KPC9zdmc+CjwhLS0gVGhpcyB3b3JrIGlzIGxpY2Vuc2VkIHVuZGVyIGEgQ3JlYXRpdmUgQ29tbW9ucyBBdHRyaWJ1dGlvbi1TaGFyZUFsaWtlIDQuMCBJbnRlcm5hdGlvbmFsIExpY2Vuc2UuIC0tPgo8IS0tIGh0dHA6Ly9jcmVhdGl2ZWNvbW1vbnMub3JnL2xpY2Vuc2VzL2J5LXNhLzQuMC8gLS0+Cg==") no-repeat fixed 50%/70% 70%,linear-gradient(180deg,#750000 0,#340404);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff750000',endColorstr='#ff340404',GradientType=0)}body.syndicate .normal{color:#40628a}body.syndicate .good{color:#73e573}body.syndicate .average{color:#be6209}body.syndicate .bad{color:#b00e0e}body.syndicate .highlight{color:#000}body.syndicate main{display:block;margin-top:32px;padding:2px 6px 0}body.syndicate hr{height:2px;background-color:#272727;border:none}body.syndicate .hidden{display:none}body.syndicate .bar .barText,body.syndicate span.button{color:#fff;font-size:12px;font-weight:400;font-style:normal;text-decoration:none}body.syndicate .bold{font-weight:700}body.syndicate .italic{font-style:italic}body.syndicate [unselectable=on]{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}body.syndicate div[data-tooltip],body.syndicate span[data-tooltip]{position:relative}body.syndicate div[data-tooltip]:after,body.syndicate span[data-tooltip]:after{position:absolute;display:block;z-index:2;width:250px;padding:10px;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);visibility:hidden;opacity:0;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";white-space:normal;text-align:left;content:attr(data-tooltip);transition:all .5s;border:1px solid #272727;background-color:#363636}body.syndicate div[data-tooltip]:hover:after,body.syndicate span[data-tooltip]:hover:after{visibility:visible;opacity:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"}body.syndicate div[data-tooltip].tooltip-top:after,body.syndicate span[data-tooltip].tooltip-top:after{bottom:100%;left:50%;-webkit-transform:translateX(-50%) translateY(8px);-ms-transform:translateX(-50%) translateY(8px);transform:translateX(-50%) translateY(8px)}body.syndicate div[data-tooltip].tooltip-bottom:after,body.syndicate div[data-tooltip].tooltip-top:hover:after,body.syndicate span[data-tooltip].tooltip-bottom:after,body.syndicate span[data-tooltip].tooltip-top:hover:after{-webkit-transform:translateX(-50%) translateY(-8px);-ms-transform:translateX(-50%) translateY(-8px);transform:translateX(-50%) translateY(-8px)}body.syndicate div[data-tooltip].tooltip-bottom:after,body.syndicate span[data-tooltip].tooltip-bottom:after{top:100%;left:50%}body.syndicate div[data-tooltip].tooltip-bottom:hover:after,body.syndicate span[data-tooltip].tooltip-bottom:hover:after{-webkit-transform:translateX(-50%) translateY(8px);-ms-transform:translateX(-50%) translateY(8px);transform:translateX(-50%) translateY(8px)}body.syndicate div[data-tooltip].tooltip-left:after,body.syndicate span[data-tooltip].tooltip-left:after{top:50%;right:100%;-webkit-transform:translateX(8px) translateY(-50%);-ms-transform:translateX(8px) translateY(-50%);transform:translateX(8px) translateY(-50%)}body.syndicate div[data-tooltip].tooltip-left:hover:after,body.syndicate div[data-tooltip].tooltip-right:after,body.syndicate span[data-tooltip].tooltip-left:hover:after,body.syndicate span[data-tooltip].tooltip-right:after{-webkit-transform:translateX(-8px) translateY(-50%);-ms-transform:translateX(-8px) translateY(-50%);transform:translateX(-8px) translateY(-50%)}body.syndicate div[data-tooltip].tooltip-right:after,body.syndicate span[data-tooltip].tooltip-right:after{top:50%;left:100%}body.syndicate div[data-tooltip].tooltip-right:hover:after,body.syndicate span[data-tooltip].tooltip-right:hover:after{-webkit-transform:translateX(8px) translateY(-50%);-ms-transform:translateX(8px) translateY(-50%);transform:translateX(8px) translateY(-50%)}body.syndicate .bar{display:inline-block;position:relative;vertical-align:middle;width:100%;height:20px;line-height:17px;padding:1px;border:1px solid #000;background:#272727}body.syndicate .bar .barText{position:absolute;top:0;right:3px}body.syndicate .bar .barFill{display:block;height:100%;transition:background-color 1s;background-color:#000}body.syndicate .bar .barFill.good{background-color:#73e573}body.syndicate .bar .barFill.average{background-color:#be6209}body.syndicate .bar .barFill.bad{background-color:#b00e0e}body.syndicate span.button{display:inline-block;vertical-align:middle;min-height:20px;line-height:17px;padding:0 5px;white-space:nowrap;border:1px solid #272727}body.syndicate span.button .fa{padding-right:2px}body.syndicate span.button.normal{transition:background-color .5s;background-color:#397439}body.syndicate span.button.normal.active:focus,body.syndicate span.button.normal.active:hover{transition:background-color .25s;background-color:#4a964a;outline:0}body.syndicate span.button.disabled{transition:background-color .5s;background-color:#363636}body.syndicate span.button.disabled.active:focus,body.syndicate span.button.disabled.active:hover{transition:background-color .25s;background-color:#545454;outline:0}body.syndicate span.button.selected{transition:background-color .5s;background-color:#9d0808}body.syndicate span.button.selected.active:focus,body.syndicate span.button.selected.active:hover{transition:background-color .25s;background-color:#ce0b0b;outline:0}body.syndicate span.button.toggle{transition:background-color .5s;background-color:#9d0808}body.syndicate span.button.toggle.active:focus,body.syndicate span.button.toggle.active:hover{transition:background-color .25s;background-color:#ce0b0b;outline:0}body.syndicate span.button.caution{transition:background-color .5s;background-color:#be6209}body.syndicate span.button.caution.active:focus,body.syndicate span.button.caution.active:hover{transition:background-color .25s;background-color:#eb790b;outline:0}body.syndicate span.button.danger{transition:background-color .5s;background-color:#9a9d00}body.syndicate span.button.danger.active:focus,body.syndicate span.button.danger.active:hover{transition:background-color .25s;background-color:#ced200;outline:0}body.syndicate span.button.gridable{width:125px;margin:2px 0}body.syndicate span.button+span:not(.button),body.syndicate span:not(.button)+span.button{margin-left:5px}body.syndicate div.display{width:100%;padding:4px;margin:6px 0;background-color:#000;-ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=#80000000,endColorStr=#80000000)";filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#80000000,endColorStr=#80000000);background-color:rgba(0,0,0,.5);box-shadow:inset 0 0 5px rgba(0,0,0,.75)}body.syndicate div.display header,body.syndicate div.subdisplay header{display:block;position:relative;width:100%;padding:0 4px;margin-bottom:6px;color:#fff;border-bottom:2px solid #272727}body.syndicate div.display header .buttonRight,body.syndicate div.subdisplay header .buttonRight{position:absolute;bottom:6px;right:4px}body.syndicate div.display article,body.syndicate div.subdisplay article{display:table;width:100%;border-collapse:collapse}body.syndicate input{display:inline-block;vertical-align:middle;height:20px;line-height:17px;padding:0 5px;white-space:nowrap;color:#fff;background-color:#9d0808;border:1px solid #272727}body.syndicate input::-webkit-input-placeholder{color:#999}body.syndicate input::-moz-placeholder{color:#999}body.syndicate input:-ms-input-placeholder{color:#999}body.syndicate input::placeholder{color:#999}body.syndicate input::-ms-clear{display:none}body.syndicate svg.linegraph{overflow:hidden}body.syndicate div.notice{margin:8px 0;padding:4px;box-shadow:none;color:#000;font-weight:700;font-style:italic;background-color:#750000;background-image:repeating-linear-gradient(-45deg,#750000,#750000 10px,#910101 0,#910101 20px)}body.syndicate div.notice .label{color:#000}body.syndicate div.notice .content:only-of-type{padding:0}body.syndicate div.notice hr{background-color:#272727}body.syndicate div.resize{position:fixed;bottom:0;right:0;width:0;height:0;border-style:solid;border-width:0 0 45px 45px;border-color:transparent transparent #363636;-webkit-transform:rotate(1turn);-ms-transform:rotate(1turn);transform:rotate(1turn)}body.syndicate section .content,body.syndicate section .label,body.syndicate section .line{display:table-cell;margin:0;text-align:left;vertical-align:middle;padding:3px 2px}body.syndicate section{display:table-row;width:100%}body.syndicate section:not(:first-child){padding-top:4px}body.syndicate section.candystripe:nth-child(even){background-color:#000;-ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorStr=#33000000,endColorStr=#33000000)";filter:progid:DXImageTransform.Microsoft.gradient(startColorStr=#33000000,endColorStr=#33000000);background-color:rgba(0,0,0,.2)}body.syndicate section .label{width:1%;padding-right:32px;white-space:nowrap;color:#fff}body.syndicate section .content:not(:last-child){padding-right:16px}body.syndicate section .line{width:100%}body.syndicate div.subdisplay{width:100%;margin:0}body.syndicate header.titlebar .close,body.syndicate header.titlebar .minimize{display:inline-block;position:relative;padding:7px;margin:-7px;color:#e74242}body.syndicate header.titlebar .close:hover,body.syndicate header.titlebar .minimize:hover{color:#eb5e5e}body.syndicate header.titlebar{position:fixed;z-index:1;top:0;left:0;width:100%;height:32px;background-color:#363636;border-bottom:1px solid #161616;box-shadow:0 3px 3px rgba(0,0,0,.1)}body.syndicate header.titlebar .statusicon{position:absolute;top:4px;left:12px;transition:color .5s}body.syndicate header.titlebar .title{position:absolute;top:6px;left:46px;color:#e74242;font-size:16px;white-space:nowrap}body.syndicate header.titlebar .minimize{position:absolute;top:6px;right:46px}body.syndicate header.titlebar .close{position:absolute;top:4px;right:12px}.no-icons header.titlebar .statusicon{font-size:20px}.no-icons header.titlebar .statusicon:after{content:"O"}.no-icons header.titlebar .minimize{top:-2px;font-size:20px}.no-icons header.titlebar .minimize:after{content:"—"}.no-icons header.titlebar .close{font-size:20px}.no-icons header.titlebar .close:after{content:"X"}
\ No newline at end of file
diff --git a/tgui/assets/tgui.js b/tgui/assets/tgui.js
index 49c0f5f50e0..0641cd666fa 100644
--- a/tgui/assets/tgui.js
+++ b/tgui/assets/tgui.js
@@ -1,16 +1,16 @@
-require=function t(e,n,a){function r(o,s){if(!n[o]){if(!e[o]){var u="function"==typeof require&&require;if(!s&&u)return u(o,!0);if(i)return i(o,!0);var p=Error("Cannot find module '"+o+"'");throw p.code="MODULE_NOT_FOUND",p}var c=n[o]={exports:{}};e[o][0].call(c.exports,function(t){var n=e[o][1][t];return r(n?n:t)},c,c.exports,t,e,n,a)}return n[o].exports}for(var i="function"==typeof require&&require,o=0;o=0;--a){var r=this.tryEntries[a],i=r.completion;if("root"===r.tryLoc)return e("end");if(r.tryLoc<=this.prev){var o=b.call(r,"catchLoc"),s=b.call(r,"finallyLoc");if(o&&s){if(this.prev=0;--n){var a=this.tryEntries[n];if(a.tryLoc<=this.prev&&b.call(a,"finallyLoc")&&this.prev=0;--e){var n=this.tryEntries[e];if(n.finallyLoc===t)return this.complete(n.completion,n.afterLoc),d(n),E}},"catch":function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var n=this.tryEntries[e];if(n.tryLoc===t){var a=n.completion;if("throw"===a.type){var r=a.arg;d(n)}return r}}throw Error("illegal catch attempt")},delegateYield:function(t,e,n){return this.delegate={iterator:m(t),resultName:e,nextLoc:n},E}}}("object"==typeof n?n:"object"==typeof window?window:"object"==typeof self?self:this)}).call(this,t(190),void 0!==n?n:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})}).call(this,"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{190:190}],3:[function(t,e,n){e.exports=function(t){if("function"!=typeof t)throw TypeError(t+" is not a function!");return t}},{}],4:[function(t,e,n){var a=t(84)("unscopables"),r=Array.prototype;void 0==r[a]&&t(32)(r,a,{}),e.exports=function(t){r[a][t]=!0}},{32:32,84:84}],5:[function(t,e,n){var a=t(39);e.exports=function(t){if(!a(t))throw TypeError(t+" is not an object!");return t}},{39:39}],6:[function(t,e,n){"use strict";var a=t(81),r=t(77),i=t(80);e.exports=[].copyWithin||function(t,e){var n=a(this),o=i(n.length),s=r(t,o),u=r(e,o),p=arguments,c=p.length>2?p[2]:void 0,l=Math.min((void 0===c?o:r(c,o))-u,o-s),f=1;for(s>u&&u+l>s&&(f=-1,u+=l-1,s+=l-1);l-- >0;)u in n?n[s]=n[u]:delete n[s],s+=f,u+=f;return n}},{77:77,80:80,81:81}],7:[function(t,e,n){"use strict";var a=t(81),r=t(77),i=t(80);e.exports=[].fill||function(t){for(var e=a(this),n=i(e.length),o=arguments,s=o.length,u=r(s>1?o[1]:void 0,n),p=s>2?o[2]:void 0,c=void 0===p?n:r(p,n);c>u;)e[u++]=t;return e}},{77:77,80:80,81:81}],8:[function(t,e,n){var a=t(79),r=t(80),i=t(77);e.exports=function(t){return function(e,n,o){var s,u=a(e),p=r(u.length),c=i(o,p);if(t&&n!=n){for(;p>c;)if(s=u[c++],s!=s)return!0}else for(;p>c;c++)if((t||c in u)&&u[c]===n)return t||c;return!t&&-1}}},{77:77,79:79,80:80}],9:[function(t,e,n){var a=t(18),r=t(35),i=t(81),o=t(80),s=t(10);e.exports=function(t){var e=1==t,n=2==t,u=3==t,p=4==t,c=6==t,l=5==t||c;return function(f,d,h){for(var m,v,g=i(f),b=r(g),y=a(d,h,3),_=o(b.length),x=0,w=e?s(f,_):n?s(f,0):void 0;_>x;x++)if((l||x in b)&&(m=b[x],v=y(m,x,g),t))if(e)w[x]=v;else if(v)switch(t){case 3:return!0;case 5:return m;case 6:return x;case 2:w.push(m)}else if(p)return!1;return c?-1:u||p?p:w}}},{10:10,18:18,35:35,80:80,81:81}],10:[function(t,e,n){var a=t(39),r=t(37),i=t(84)("species");e.exports=function(t,e){var n;return r(t)&&(n=t.constructor,"function"!=typeof n||n!==Array&&!r(n.prototype)||(n=void 0),a(n)&&(n=n[i],null===n&&(n=void 0))),new(void 0===n?Array:n)(e)}},{37:37,39:39,84:84}],11:[function(t,e,n){var a=t(12),r=t(84)("toStringTag"),i="Arguments"==a(function(){return arguments}());e.exports=function(t){var e,n,o;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(n=(e=Object(t))[r])?n:i?a(e):"Object"==(o=a(e))&&"function"==typeof e.callee?"Arguments":o}},{12:12,84:84}],12:[function(t,e,n){var a={}.toString;e.exports=function(t){return a.call(t).slice(8,-1)}},{}],13:[function(t,e,n){"use strict";var a=t(47),r=t(32),i=t(61),o=t(18),s=t(70),u=t(19),p=t(28),c=t(43),l=t(45),f=t(83)("id"),d=t(31),h=t(39),m=t(66),v=t(20),g=Object.isExtensible||h,b=v?"_s":"size",y=0,_=function(t,e){if(!h(t))return"symbol"==typeof t?t:("string"==typeof t?"S":"P")+t;if(!d(t,f)){if(!g(t))return"F";if(!e)return"E";r(t,f,++y)}return"O"+t[f]},x=function(t,e){var n,a=_(e);if("F"!==a)return t._i[a];for(n=t._f;n;n=n.n)if(n.k==e)return n};e.exports={getConstructor:function(t,e,n,r){var c=t(function(t,i){s(t,c,e),t._i=a.create(null),t._f=void 0,t._l=void 0,t[b]=0,void 0!=i&&p(i,n,t[r],t)});return i(c.prototype,{clear:function(){for(var t=this,e=t._i,n=t._f;n;n=n.n)n.r=!0,n.p&&(n.p=n.p.n=void 0),delete e[n.i];t._f=t._l=void 0,t[b]=0},"delete":function(t){var e=this,n=x(e,t);if(n){var a=n.n,r=n.p;delete e._i[n.i],n.r=!0,r&&(r.n=a),a&&(a.p=r),e._f==n&&(e._f=a),e._l==n&&(e._l=r),e[b]--}return!!n},forEach:function(t){for(var e,n=o(t,arguments.length>1?arguments[1]:void 0,3);e=e?e.n:this._f;)for(n(e.v,e.k,this);e&&e.r;)e=e.p},has:function(t){return!!x(this,t)}}),v&&a.setDesc(c.prototype,"size",{get:function(){return u(this[b])}}),c},def:function(t,e,n){var a,r,i=x(t,e);return i?i.v=n:(t._l=i={i:r=_(e,!0),k:e,v:n,p:a=t._l,n:void 0,r:!1},t._f||(t._f=i),a&&(a.n=i),t[b]++,"F"!==r&&(t._i[r]=i)),t},getEntry:x,setStrong:function(t,e,n){c(t,e,function(t,e){this._t=t,this._k=e,this._l=void 0},function(){for(var t=this,e=t._k,n=t._l;n&&n.r;)n=n.p;return t._t&&(t._l=n=n?n.n:t._t._f)?"keys"==e?l(0,n.k):"values"==e?l(0,n.v):l(0,[n.k,n.v]):(t._t=void 0,l(1))},n?"entries":"values",!n,!0),m(e)}}},{18:18,19:19,20:20,28:28,31:31,32:32,39:39,43:43,45:45,47:47,61:61,66:66,70:70,83:83}],14:[function(t,e,n){var a=t(28),r=t(11);e.exports=function(t){return function(){if(r(this)!=t)throw TypeError(t+"#toJSON isn't generic");var e=[];return a(this,!1,e.push,e),e}}},{11:11,28:28}],15:[function(t,e,n){"use strict";var a=t(32),r=t(61),i=t(5),o=t(39),s=t(70),u=t(28),p=t(9),c=t(31),l=t(83)("weak"),f=Object.isExtensible||o,d=p(5),h=p(6),m=0,v=function(t){return t._l||(t._l=new g)},g=function(){this.a=[]},b=function(t,e){return d(t.a,function(t){return t[0]===e})};g.prototype={get:function(t){var e=b(this,t);return e?e[1]:void 0},has:function(t){return!!b(this,t)},set:function(t,e){var n=b(this,t);n?n[1]=e:this.a.push([t,e])},"delete":function(t){var e=h(this.a,function(e){return e[0]===t});return~e&&this.a.splice(e,1),!!~e}},e.exports={getConstructor:function(t,e,n,a){var i=t(function(t,r){s(t,i,e),t._i=m++,t._l=void 0,void 0!=r&&u(r,n,t[a],t)});return r(i.prototype,{"delete":function(t){return o(t)?f(t)?c(t,l)&&c(t[l],this._i)&&delete t[l][this._i]:v(this)["delete"](t):!1},has:function(t){return o(t)?f(t)?c(t,l)&&c(t[l],this._i):v(this).has(t):!1}}),i},def:function(t,e,n){return f(i(e))?(c(e,l)||a(e,l,{}),e[l][t._i]=n):v(t).set(e,n),t},frozenStore:v,WEAK:l}},{28:28,31:31,32:32,39:39,5:5,61:61,70:70,83:83,9:9}],16:[function(t,e,n){"use strict";var a=t(30),r=t(23),i=t(62),o=t(61),s=t(28),u=t(70),p=t(39),c=t(25),l=t(44),f=t(67);e.exports=function(t,e,n,d,h,m){var v=a[t],g=v,b=h?"set":"add",y=g&&g.prototype,_={},x=function(t){var e=y[t];i(y,t,"delete"==t?function(t){return m&&!p(t)?!1:e.call(this,0===t?0:t)}:"has"==t?function(t){return m&&!p(t)?!1:e.call(this,0===t?0:t)}:"get"==t?function(t){return m&&!p(t)?void 0:e.call(this,0===t?0:t)}:"add"==t?function(t){return e.call(this,0===t?0:t),this}:function(t,n){return e.call(this,0===t?0:t,n),this})};if("function"==typeof g&&(m||y.forEach&&!c(function(){(new g).entries().next()}))){var w,k=new g,P=k[b](m?{}:-0,1)!=k,C=c(function(){k.has(1)}),E=l(function(t){new g(t)});E||(g=e(function(e,n){u(e,g,t);var a=new v;return void 0!=n&&s(n,h,a[b],a),a}),g.prototype=y,y.constructor=g),m||k.forEach(function(t,e){w=1/e===-(1/0)}),(C||w)&&(x("delete"),x("has"),h&&x("get")),(w||P)&&x(b),m&&y.clear&&delete y.clear}else g=d.getConstructor(e,t,h,b),o(g.prototype,n);return f(g,t),_[t]=g,r(r.G+r.W+r.F*(g!=v),_),m||d.setStrong(g,t,h),g}},{23:23,25:25,28:28,30:30,39:39,44:44,61:61,62:62,67:67,70:70}],17:[function(t,e,n){var a=e.exports={version:"1.2.6"};"number"==typeof __e&&(__e=a)},{}],18:[function(t,e,n){var a=t(3);e.exports=function(t,e,n){if(a(t),void 0===e)return t;switch(n){case 1:return function(n){return t.call(e,n)};case 2:return function(n,a){return t.call(e,n,a)};case 3:return function(n,a,r){return t.call(e,n,a,r)}}return function(){return t.apply(e,arguments)}}},{3:3}],19:[function(t,e,n){e.exports=function(t){if(void 0==t)throw TypeError("Can't call method on "+t);return t}},{}],20:[function(t,e,n){e.exports=!t(25)(function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a})},{25:25}],21:[function(t,e,n){var a=t(39),r=t(30).document,i=a(r)&&a(r.createElement);e.exports=function(t){return i?r.createElement(t):{}}},{30:30,39:39}],22:[function(t,e,n){var a=t(47);e.exports=function(t){var e=a.getKeys(t),n=a.getSymbols;if(n)for(var r,i=n(t),o=a.isEnum,s=0;i.length>s;)o.call(t,r=i[s++])&&e.push(r);return e}},{47:47}],23:[function(t,e,n){var a=t(30),r=t(17),i=t(32),o=t(62),s=t(18),u="prototype",p=function(t,e,n){var c,l,f,d,h=t&p.F,m=t&p.G,v=t&p.S,g=t&p.P,b=t&p.B,y=m?a:v?a[e]||(a[e]={}):(a[e]||{})[u],_=m?r:r[e]||(r[e]={}),x=_[u]||(_[u]={});m&&(n=e);for(c in n)l=!h&&y&&c in y,f=(l?y:n)[c],d=b&&l?s(f,a):g&&"function"==typeof f?s(Function.call,f):f,y&&!l&&o(y,c,f),_[c]!=f&&i(_,c,d),g&&x[c]!=f&&(x[c]=f)};a.core=r,p.F=1,p.G=2,p.S=4,p.P=8,p.B=16,p.W=32,e.exports=p},{17:17,18:18,30:30,32:32,62:62}],24:[function(t,e,n){var a=t(84)("match");e.exports=function(t){var e=/./;try{"/./"[t](e)}catch(n){try{return e[a]=!1,!"/./"[t](e)}catch(r){}}return!0}},{84:84}],25:[function(t,e,n){e.exports=function(t){try{return!!t()}catch(e){return!0}}},{}],26:[function(t,e,n){"use strict";var a=t(32),r=t(62),i=t(25),o=t(19),s=t(84);e.exports=function(t,e,n){var u=s(t),p=""[t];i(function(){var e={};return e[u]=function(){return 7},7!=""[t](e)})&&(r(String.prototype,t,n(o,u,p)),a(RegExp.prototype,u,2==e?function(t,e){return p.call(t,this,e)}:function(t){return p.call(t,this)}))}},{19:19,25:25,32:32,62:62,84:84}],27:[function(t,e,n){"use strict";var a=t(5);e.exports=function(){var t=a(this),e="";return t.global&&(e+="g"),t.ignoreCase&&(e+="i"),t.multiline&&(e+="m"),t.unicode&&(e+="u"),t.sticky&&(e+="y"),e}},{5:5}],28:[function(t,e,n){var a=t(18),r=t(41),i=t(36),o=t(5),s=t(80),u=t(85);e.exports=function(t,e,n,p){var c,l,f,d=u(t),h=a(n,p,e?2:1),m=0;if("function"!=typeof d)throw TypeError(t+" is not iterable!");if(i(d))for(c=s(t.length);c>m;m++)e?h(o(l=t[m])[0],l[1]):h(t[m]);else for(f=d.call(t);!(l=f.next()).done;)r(f,h,l.value,e)}},{18:18,36:36,41:41,5:5,80:80,85:85}],29:[function(t,e,n){var a=t(79),r=t(47).getNames,i={}.toString,o="object"==typeof window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[],s=function(t){try{return r(t)}catch(e){return o.slice()}};e.exports.get=function(t){return o&&"[object Window]"==i.call(t)?s(t):r(a(t))}},{47:47,79:79}],30:[function(t,e,n){var a=e.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=a)},{}],31:[function(t,e,n){var a={}.hasOwnProperty;e.exports=function(t,e){return a.call(t,e)}},{}],32:[function(t,e,n){var a=t(47),r=t(60);e.exports=t(20)?function(t,e,n){return a.setDesc(t,e,r(1,n))}:function(t,e,n){return t[e]=n,t}},{20:20,47:47,60:60}],33:[function(t,e,n){e.exports=t(30).document&&document.documentElement},{30:30}],34:[function(t,e,n){e.exports=function(t,e,n){var a=void 0===n;switch(e.length){case 0:return a?t():t.call(n);case 1:return a?t(e[0]):t.call(n,e[0]);case 2:return a?t(e[0],e[1]):t.call(n,e[0],e[1]);case 3:return a?t(e[0],e[1],e[2]):t.call(n,e[0],e[1],e[2]);case 4:return a?t(e[0],e[1],e[2],e[3]):t.call(n,e[0],e[1],e[2],e[3])}return t.apply(n,e)}},{}],35:[function(t,e,n){var a=t(12);e.exports=Object("z").propertyIsEnumerable(0)?Object:function(t){return"String"==a(t)?t.split(""):Object(t)}},{12:12}],36:[function(t,e,n){var a=t(46),r=t(84)("iterator"),i=Array.prototype;e.exports=function(t){return void 0!==t&&(a.Array===t||i[r]===t)}},{46:46,84:84}],37:[function(t,e,n){var a=t(12);e.exports=Array.isArray||function(t){return"Array"==a(t)}},{12:12}],38:[function(t,e,n){var a=t(39),r=Math.floor;e.exports=function(t){return!a(t)&&isFinite(t)&&r(t)===t}},{39:39}],39:[function(t,e,n){e.exports=function(t){return"object"==typeof t?null!==t:"function"==typeof t}},{}],40:[function(t,e,n){var a=t(39),r=t(12),i=t(84)("match");e.exports=function(t){var e;return a(t)&&(void 0!==(e=t[i])?!!e:"RegExp"==r(t))}},{12:12,39:39,84:84}],41:[function(t,e,n){var a=t(5);e.exports=function(t,e,n,r){try{return r?e(a(n)[0],n[1]):e(n)}catch(i){var o=t["return"];throw void 0!==o&&a(o.call(t)),i}}},{5:5}],42:[function(t,e,n){"use strict";var a=t(47),r=t(60),i=t(67),o={};t(32)(o,t(84)("iterator"),function(){return this}),e.exports=function(t,e,n){t.prototype=a.create(o,{next:r(1,n)}),i(t,e+" Iterator")}},{32:32,47:47,60:60,67:67,84:84}],43:[function(t,e,n){"use strict";var a=t(49),r=t(23),i=t(62),o=t(32),s=t(31),u=t(46),p=t(42),c=t(67),l=t(47).getProto,f=t(84)("iterator"),d=!([].keys&&"next"in[].keys()),h="@@iterator",m="keys",v="values",g=function(){return this};e.exports=function(t,e,n,b,y,_,x){p(n,e,b);var w,k,P=function(t){if(!d&&t in A)return A[t];switch(t){case m:return function(){return new n(this,t)};case v:return function(){return new n(this,t)}}return function(){return new n(this,t)}},C=e+" Iterator",E=y==v,S=!1,A=t.prototype,O=A[f]||A[h]||y&&A[y],T=O||P(y);if(O){var M=l(T.call(new t));c(M,C,!0),!a&&s(A,h)&&o(M,f,g),E&&O.name!==v&&(S=!0,T=function(){return O.call(this)})}if(a&&!x||!d&&!S&&A[f]||o(A,f,T),u[e]=T,u[C]=g,y)if(w={values:E?T:P(v),keys:_?T:P(m),entries:E?P("entries"):T},x)for(k in w)k in A||i(A,k,w[k]);else r(r.P+r.F*(d||S),e,w);return w}},{23:23,31:31,32:32,42:42,46:46,47:47,49:49,62:62,67:67,84:84}],44:[function(t,e,n){var a=t(84)("iterator"),r=!1;try{var i=[7][a]();i["return"]=function(){r=!0},Array.from(i,function(){throw 2})}catch(o){}e.exports=function(t,e){if(!e&&!r)return!1;var n=!1;try{var i=[7],o=i[a]();o.next=function(){return{done:n=!0}},i[a]=function(){return o},t(i)}catch(s){}return n}},{84:84}],45:[function(t,e,n){e.exports=function(t,e){return{value:e,done:!!t}}},{}],46:[function(t,e,n){e.exports={}},{}],47:[function(t,e,n){var a=Object;e.exports={create:a.create,getProto:a.getPrototypeOf,isEnum:{}.propertyIsEnumerable,getDesc:a.getOwnPropertyDescriptor,setDesc:a.defineProperty,setDescs:a.defineProperties,getKeys:a.keys,getNames:a.getOwnPropertyNames,getSymbols:a.getOwnPropertySymbols,each:[].forEach}},{}],48:[function(t,e,n){var a=t(47),r=t(79);e.exports=function(t,e){for(var n,i=r(t),o=a.getKeys(i),s=o.length,u=0;s>u;)if(i[n=o[u++]]===e)return n}},{47:47,79:79}],49:[function(t,e,n){e.exports=!1},{}],50:[function(t,e,n){e.exports=Math.expm1||function(t){return 0==(t=+t)?t:t>-1e-6&&1e-6>t?t+t*t/2:Math.exp(t)-1}},{}],51:[function(t,e,n){e.exports=Math.log1p||function(t){return(t=+t)>-1e-8&&1e-8>t?t-t*t/2:Math.log(1+t)}},{}],52:[function(t,e,n){e.exports=Math.sign||function(t){return 0==(t=+t)||t!=t?t:0>t?-1:1}},{}],53:[function(t,e,n){var a,r,i,o=t(30),s=t(76).set,u=o.MutationObserver||o.WebKitMutationObserver,p=o.process,c=o.Promise,l="process"==t(12)(p),f=function(){var t,e,n;for(l&&(t=p.domain)&&(p.domain=null,t.exit());a;)e=a.domain,n=a.fn,e&&e.enter(),n(),e&&e.exit(),a=a.next;r=void 0,t&&t.enter()};if(l)i=function(){p.nextTick(f)};else if(u){var d=1,h=document.createTextNode("");new u(f).observe(h,{characterData:!0}),i=function(){h.data=d=-d}}else i=c&&c.resolve?function(){c.resolve().then(f)}:function(){s.call(o,f)};e.exports=function(t){var e={fn:t,next:void 0,domain:l&&p.domain};r&&(r.next=e),a||(a=e,i()),r=e}},{12:12,30:30,76:76}],54:[function(t,e,n){var a=t(47),r=t(81),i=t(35);e.exports=t(25)(function(){var t=Object.assign,e={},n={},a=Symbol(),r="abcdefghijklmnopqrst";return e[a]=7,r.split("").forEach(function(t){n[t]=t}),7!=t({},e)[a]||Object.keys(t({},n)).join("")!=r})?function(t,e){for(var n=r(t),o=arguments,s=o.length,u=1,p=a.getKeys,c=a.getSymbols,l=a.isEnum;s>u;)for(var f,d=i(o[u++]),h=c?p(d).concat(c(d)):p(d),m=h.length,v=0;m>v;)l.call(d,f=h[v++])&&(n[f]=d[f]);return n}:Object.assign},{25:25,35:35,47:47,81:81}],55:[function(t,e,n){var a=t(23),r=t(17),i=t(25);e.exports=function(t,e){var n=(r.Object||{})[t]||Object[t],o={};o[t]=e(n),a(a.S+a.F*i(function(){n(1)}),"Object",o)}},{17:17,23:23,25:25}],56:[function(t,e,n){var a=t(47),r=t(79),i=a.isEnum;e.exports=function(t){return function(e){for(var n,o=r(e),s=a.getKeys(o),u=s.length,p=0,c=[];u>p;)i.call(o,n=s[p++])&&c.push(t?[n,o[n]]:o[n]);return c}}},{47:47,79:79}],57:[function(t,e,n){var a=t(47),r=t(5),i=t(30).Reflect;e.exports=i&&i.ownKeys||function(t){var e=a.getNames(r(t)),n=a.getSymbols;return n?e.concat(n(t)):e}},{30:30,47:47,5:5}],58:[function(t,e,n){"use strict";var a=t(59),r=t(34),i=t(3);e.exports=function(){for(var t=i(this),e=arguments.length,n=Array(e),o=0,s=a._,u=!1;e>o;)(n[o]=arguments[o++])===s&&(u=!0);return function(){var a,i=this,o=arguments,p=o.length,c=0,l=0;if(!u&&!p)return r(t,n,i);if(a=n.slice(),u)for(;e>c;c++)a[c]===s&&(a[c]=o[l++]);for(;p>l;)a.push(o[l++]);return r(t,a,i)}}},{3:3,34:34,59:59}],59:[function(t,e,n){e.exports=t(30)},{30:30}],60:[function(t,e,n){e.exports=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}}},{}],61:[function(t,e,n){var a=t(62);e.exports=function(t,e){for(var n in e)a(t,n,e[n]);return t}},{62:62}],62:[function(t,e,n){var a=t(30),r=t(32),i=t(83)("src"),o="toString",s=Function[o],u=(""+s).split(o);t(17).inspectSource=function(t){return s.call(t)},(e.exports=function(t,e,n,o){"function"==typeof n&&(n.hasOwnProperty(i)||r(n,i,t[e]?""+t[e]:u.join(e+"")),n.hasOwnProperty("name")||r(n,"name",e)),t===a?t[e]=n:(o||delete t[e],r(t,e,n))})(Function.prototype,o,function(){return"function"==typeof this&&this[i]||s.call(this)})},{17:17,30:30,32:32,83:83}],63:[function(t,e,n){e.exports=function(t,e){var n=e===Object(e)?function(t){return e[t]}:e;return function(e){return(e+"").replace(t,n)}}},{}],64:[function(t,e,n){e.exports=Object.is||function(t,e){return t===e?0!==t||1/t===1/e:t!=t&&e!=e}},{}],65:[function(t,e,n){var a=t(47).getDesc,r=t(39),i=t(5),o=function(t,e){if(i(t),!r(e)&&null!==e)throw TypeError(e+": can't set as prototype!")};e.exports={set:Object.setPrototypeOf||("__proto__"in{}?function(e,n,r){try{r=t(18)(Function.call,a(Object.prototype,"__proto__").set,2),r(e,[]),n=!(e instanceof Array)}catch(i){n=!0}return function(t,e){return o(t,e),n?t.__proto__=e:r(t,e),t}}({},!1):void 0),check:o}},{18:18,39:39,47:47,5:5}],66:[function(t,e,n){"use strict";var a=t(30),r=t(47),i=t(20),o=t(84)("species");e.exports=function(t){var e=a[t];i&&e&&!e[o]&&r.setDesc(e,o,{configurable:!0,get:function(){return this}})}},{20:20,30:30,47:47,84:84}],67:[function(t,e,n){var a=t(47).setDesc,r=t(31),i=t(84)("toStringTag");e.exports=function(t,e,n){t&&!r(t=n?t:t.prototype,i)&&a(t,i,{configurable:!0,value:e})}},{31:31,47:47,84:84}],68:[function(t,e,n){var a=t(30),r="__core-js_shared__",i=a[r]||(a[r]={});e.exports=function(t){return i[t]||(i[t]={})}},{30:30}],69:[function(t,e,n){var a=t(5),r=t(3),i=t(84)("species");e.exports=function(t,e){var n,o=a(t).constructor;return void 0===o||void 0==(n=a(o)[i])?e:r(n)}},{3:3,5:5,84:84}],70:[function(t,e,n){e.exports=function(t,e,n){if(!(t instanceof e))throw TypeError(n+": use the 'new' operator!");return t}},{}],71:[function(t,e,n){var a=t(78),r=t(19);e.exports=function(t){return function(e,n){var i,o,s=r(e)+"",u=a(n),p=s.length;return 0>u||u>=p?t?"":void 0:(i=s.charCodeAt(u),55296>i||i>56319||u+1===p||(o=s.charCodeAt(u+1))<56320||o>57343?t?s.charAt(u):i:t?s.slice(u,u+2):(i-55296<<10)+(o-56320)+65536)}}},{19:19,78:78}],72:[function(t,e,n){var a=t(40),r=t(19);e.exports=function(t,e,n){if(a(e))throw TypeError("String#"+n+" doesn't accept regex!");return r(t)+""}},{19:19,40:40}],73:[function(t,e,n){var a=t(80),r=t(74),i=t(19);e.exports=function(t,e,n,o){var s=i(t)+"",u=s.length,p=void 0===n?" ":n+"",c=a(e);if(u>=c)return s;""==p&&(p=" ");var l=c-u,f=r.call(p,Math.ceil(l/p.length));return f.length>l&&(f=f.slice(0,l)),o?f+s:s+f}},{19:19,74:74,80:80}],74:[function(t,e,n){"use strict";var a=t(78),r=t(19);e.exports=function(t){var e=r(this)+"",n="",i=a(t);if(0>i||i==1/0)throw RangeError("Count can't be negative");for(;i>0;(i>>>=1)&&(e+=e))1&i&&(n+=e);return n}},{19:19,78:78}],75:[function(t,e,n){var a=t(23),r=t(19),i=t(25),o=" \n\x0B\f\r \u2028\u2029\ufeff",s="["+o+"]",u="
",p=RegExp("^"+s+s+"*"),c=RegExp(s+s+"*$"),l=function(t,e){var n={};n[t]=e(f),a(a.P+a.F*i(function(){return!!o[t]()||u[t]()!=u}),"String",n)},f=l.trim=function(t,e){return t=r(t)+"",1&e&&(t=t.replace(p,"")),2&e&&(t=t.replace(c,"")),t};e.exports=l},{19:19,23:23,25:25}],76:[function(t,e,n){var a,r,i,o=t(18),s=t(34),u=t(33),p=t(21),c=t(30),l=c.process,f=c.setImmediate,d=c.clearImmediate,h=c.MessageChannel,m=0,v={},g="onreadystatechange",b=function(){var t=+this;if(v.hasOwnProperty(t)){var e=v[t];delete v[t],e()}},y=function(t){b.call(t.data)};f&&d||(f=function(t){for(var e=[],n=1;arguments.length>n;)e.push(arguments[n++]);return v[++m]=function(){s("function"==typeof t?t:Function(t),e)},a(m),m},d=function(t){delete v[t]},"process"==t(12)(l)?a=function(t){l.nextTick(o(b,t,1))}:h?(r=new h,i=r.port2,r.port1.onmessage=y,a=o(i.postMessage,i,1)):c.addEventListener&&"function"==typeof postMessage&&!c.importScripts?(a=function(t){c.postMessage(t+"","*")},c.addEventListener("message",y,!1)):a=g in p("script")?function(t){u.appendChild(p("script"))[g]=function(){u.removeChild(this),b.call(t)}}:function(t){setTimeout(o(b,t,1),0)}),e.exports={set:f,clear:d}},{12:12,18:18,21:21,30:30,33:33,34:34}],77:[function(t,e,n){var a=t(78),r=Math.max,i=Math.min;e.exports=function(t,e){return t=a(t),0>t?r(t+e,0):i(t,e)}},{78:78}],78:[function(t,e,n){var a=Math.ceil,r=Math.floor;e.exports=function(t){return isNaN(t=+t)?0:(t>0?r:a)(t)}},{}],79:[function(t,e,n){var a=t(35),r=t(19);e.exports=function(t){return a(r(t))}},{19:19,35:35}],80:[function(t,e,n){var a=t(78),r=Math.min;e.exports=function(t){return t>0?r(a(t),9007199254740991):0}},{78:78}],81:[function(t,e,n){var a=t(19);e.exports=function(t){return Object(a(t))}},{19:19}],82:[function(t,e,n){var a=t(39);e.exports=function(t,e){if(!a(t))return t;var n,r;if(e&&"function"==typeof(n=t.toString)&&!a(r=n.call(t)))return r;if("function"==typeof(n=t.valueOf)&&!a(r=n.call(t)))return r;if(!e&&"function"==typeof(n=t.toString)&&!a(r=n.call(t)))return r;throw TypeError("Can't convert object to primitive value")}},{39:39}],83:[function(t,e,n){var a=0,r=Math.random();e.exports=function(t){return"Symbol(".concat(void 0===t?"":t,")_",(++a+r).toString(36))}},{}],84:[function(t,e,n){var a=t(68)("wks"),r=t(83),i=t(30).Symbol;e.exports=function(t){return a[t]||(a[t]=i&&i[t]||(i||r)("Symbol."+t))}},{30:30,68:68,83:83}],85:[function(t,e,n){var a=t(11),r=t(84)("iterator"),i=t(46);e.exports=t(17).getIteratorMethod=function(t){return void 0!=t?t[r]||t["@@iterator"]||i[a(t)]:void 0}},{11:11,17:17,46:46,84:84}],86:[function(t,e,n){"use strict";var a,r=t(47),i=t(23),o=t(20),s=t(60),u=t(33),p=t(21),c=t(31),l=t(12),f=t(34),d=t(25),h=t(5),m=t(3),v=t(39),g=t(81),b=t(79),y=t(78),_=t(77),x=t(80),w=t(35),k=t(83)("__proto__"),P=t(9),C=t(8)(!1),E=Object.prototype,S=Array.prototype,A=S.slice,O=S.join,T=r.setDesc,M=r.getDesc,R=r.setDescs,j={};o||(a=!d(function(){return 7!=T(p("div"),"a",{get:function(){return 7}}).a}),r.setDesc=function(t,e,n){if(a)try{return T(t,e,n)}catch(r){}if("get"in n||"set"in n)throw TypeError("Accessors not supported!");return"value"in n&&(h(t)[e]=n.value),t},r.getDesc=function(t,e){if(a)try{return M(t,e)}catch(n){}return c(t,e)?s(!E.propertyIsEnumerable.call(t,e),t[e]):void 0},r.setDescs=R=function(t,e){h(t);for(var n,a=r.getKeys(e),i=a.length,o=0;i>o;)r.setDesc(t,n=a[o++],e[n]);return t}),i(i.S+i.F*!o,"Object",{getOwnPropertyDescriptor:r.getDesc,defineProperty:r.setDesc,defineProperties:R});var L="constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf".split(","),N=L.concat("length","prototype"),D=L.length,F=function(){var t,e=p("iframe"),n=D,a=">";for(e.style.display="none",u.appendChild(e),e.src="javascript:",t=e.contentWindow.document,t.open(),t.write("i;)c(r,a=t[i++])&&(~C(o,a)||o.push(a));return o}},B=function(){};i(i.S,"Object",{getPrototypeOf:r.getProto=r.getProto||function(t){return t=g(t),c(t,k)?t[k]:"function"==typeof t.constructor&&t instanceof t.constructor?t.constructor.prototype:t instanceof Object?E:null},getOwnPropertyNames:r.getNames=r.getNames||I(N,N.length,!0),create:r.create=r.create||function(t,e){var n;return null!==t?(B.prototype=h(t),n=new B,B.prototype=null,n[k]=t):n=F(),void 0===e?n:R(n,e)},keys:r.getKeys=r.getKeys||I(L,D,!1)});var q=function(t,e,n){if(!(e in j)){for(var a=[],r=0;e>r;r++)a[r]="a["+r+"]";j[e]=Function("F,a","return new F("+a.join(",")+")")}return j[e](t,n)};i(i.P,"Function",{bind:function(t){var e=m(this),n=A.call(arguments,1),a=function(){var r=n.concat(A.call(arguments));return this instanceof a?q(e,r.length,r):f(e,r,t)};return v(e.prototype)&&(a.prototype=e.prototype),a}}),i(i.P+i.F*d(function(){u&&A.call(u)}),"Array",{slice:function(t,e){var n=x(this.length),a=l(this);if(e=void 0===e?n:e,"Array"==a)return A.call(this,t,e);for(var r=_(t,n),i=_(e,n),o=x(i-r),s=Array(o),u=0;o>u;u++)s[u]="String"==a?this.charAt(r+u):this[r+u];return s}}),i(i.P+i.F*(w!=Object),"Array",{join:function(t){return O.call(w(this),void 0===t?",":t)}}),i(i.S,"Array",{isArray:t(37)});var G=function(t){return function(e,n){m(e);var a=w(this),r=x(a.length),i=t?r-1:0,o=t?-1:1;if(arguments.length<2)for(;;){if(i in a){n=a[i],i+=o;break}if(i+=o,t?0>i:i>=r)throw TypeError("Reduce of empty array with no initial value")}for(;t?i>=0:r>i;i+=o)i in a&&(n=e(n,a[i],i,this));return n}},U=function(t){return function(e){return t(this,e,arguments[1])}};i(i.P,"Array",{forEach:r.each=r.each||U(P(0)),map:U(P(1)),filter:U(P(2)),some:U(P(3)),every:U(P(4)),reduce:G(!1),reduceRight:G(!0),indexOf:U(C),lastIndexOf:function(t,e){var n=b(this),a=x(n.length),r=a-1;for(arguments.length>1&&(r=Math.min(r,y(e))),0>r&&(r=x(a+r));r>=0;r--)if(r in n&&n[r]===t)return r;return-1}}),i(i.S,"Date",{now:function(){return+new Date}});var V=function(t){return t>9?t:"0"+t};i(i.P+i.F*(d(function(){return"0385-07-25T07:06:39.999Z"!=new Date(-5e13-1).toISOString()})||!d(function(){new Date(NaN).toISOString()})),"Date",{toISOString:function(){if(!isFinite(this))throw RangeError("Invalid time value");var t=this,e=t.getUTCFullYear(),n=t.getUTCMilliseconds(),a=0>e?"-":e>9999?"+":"";return a+("00000"+Math.abs(e)).slice(a?-6:-4)+"-"+V(t.getUTCMonth()+1)+"-"+V(t.getUTCDate())+"T"+V(t.getUTCHours())+":"+V(t.getUTCMinutes())+":"+V(t.getUTCSeconds())+"."+(n>99?n:"0"+V(n))+"Z";
-}})},{12:12,20:20,21:21,23:23,25:25,3:3,31:31,33:33,34:34,35:35,37:37,39:39,47:47,5:5,60:60,77:77,78:78,79:79,8:8,80:80,81:81,83:83,9:9}],87:[function(t,e,n){var a=t(23);a(a.P,"Array",{copyWithin:t(6)}),t(4)("copyWithin")},{23:23,4:4,6:6}],88:[function(t,e,n){var a=t(23);a(a.P,"Array",{fill:t(7)}),t(4)("fill")},{23:23,4:4,7:7}],89:[function(t,e,n){"use strict";var a=t(23),r=t(9)(6),i="findIndex",o=!0;i in[]&&Array(1)[i](function(){o=!1}),a(a.P+a.F*o,"Array",{findIndex:function(t){return r(this,t,arguments.length>1?arguments[1]:void 0)}}),t(4)(i)},{23:23,4:4,9:9}],90:[function(t,e,n){"use strict";var a=t(23),r=t(9)(5),i="find",o=!0;i in[]&&Array(1)[i](function(){o=!1}),a(a.P+a.F*o,"Array",{find:function(t){return r(this,t,arguments.length>1?arguments[1]:void 0)}}),t(4)(i)},{23:23,4:4,9:9}],91:[function(t,e,n){"use strict";var a=t(18),r=t(23),i=t(81),o=t(41),s=t(36),u=t(80),p=t(85);r(r.S+r.F*!t(44)(function(t){Array.from(t)}),"Array",{from:function(t){var e,n,r,c,l=i(t),f="function"==typeof this?this:Array,d=arguments,h=d.length,m=h>1?d[1]:void 0,v=void 0!==m,g=0,b=p(l);if(v&&(m=a(m,h>2?d[2]:void 0,2)),void 0==b||f==Array&&s(b))for(e=u(l.length),n=new f(e);e>g;g++)n[g]=v?m(l[g],g):l[g];else for(c=b.call(l),n=new f;!(r=c.next()).done;g++)n[g]=v?o(c,m,[r.value,g],!0):r.value;return n.length=g,n}})},{18:18,23:23,36:36,41:41,44:44,80:80,81:81,85:85}],92:[function(t,e,n){"use strict";var a=t(4),r=t(45),i=t(46),o=t(79);e.exports=t(43)(Array,"Array",function(t,e){this._t=o(t),this._i=0,this._k=e},function(){var t=this._t,e=this._k,n=this._i++;return!t||n>=t.length?(this._t=void 0,r(1)):"keys"==e?r(0,n):"values"==e?r(0,t[n]):r(0,[n,t[n]])},"values"),i.Arguments=i.Array,a("keys"),a("values"),a("entries")},{4:4,43:43,45:45,46:46,79:79}],93:[function(t,e,n){"use strict";var a=t(23);a(a.S+a.F*t(25)(function(){function t(){}return!(Array.of.call(t)instanceof t)}),"Array",{of:function(){for(var t=0,e=arguments,n=e.length,a=new("function"==typeof this?this:Array)(n);n>t;)a[t]=e[t++];return a.length=n,a}})},{23:23,25:25}],94:[function(t,e,n){t(66)("Array")},{66:66}],95:[function(t,e,n){"use strict";var a=t(47),r=t(39),i=t(84)("hasInstance"),o=Function.prototype;i in o||a.setDesc(o,i,{value:function(t){if("function"!=typeof this||!r(t))return!1;if(!r(this.prototype))return t instanceof this;for(;t=a.getProto(t);)if(this.prototype===t)return!0;return!1}})},{39:39,47:47,84:84}],96:[function(t,e,n){var a=t(47).setDesc,r=t(60),i=t(31),o=Function.prototype,s=/^\s*function ([^ (]*)/,u="name";u in o||t(20)&&a(o,u,{configurable:!0,get:function(){var t=(""+this).match(s),e=t?t[1]:"";return i(this,u)||a(this,u,r(5,e)),e}})},{20:20,31:31,47:47,60:60}],97:[function(t,e,n){"use strict";var a=t(13);t(16)("Map",function(t){return function(){return t(this,arguments.length>0?arguments[0]:void 0)}},{get:function(t){var e=a.getEntry(this,t);return e&&e.v},set:function(t,e){return a.def(this,0===t?0:t,e)}},a,!0)},{13:13,16:16}],98:[function(t,e,n){var a=t(23),r=t(51),i=Math.sqrt,o=Math.acosh;a(a.S+a.F*!(o&&710==Math.floor(o(Number.MAX_VALUE))),"Math",{acosh:function(t){return(t=+t)<1?NaN:t>94906265.62425156?Math.log(t)+Math.LN2:r(t-1+i(t-1)*i(t+1))}})},{23:23,51:51}],99:[function(t,e,n){function a(t){return isFinite(t=+t)&&0!=t?0>t?-a(-t):Math.log(t+Math.sqrt(t*t+1)):t}var r=t(23);r(r.S,"Math",{asinh:a})},{23:23}],100:[function(t,e,n){var a=t(23);a(a.S,"Math",{atanh:function(t){return 0==(t=+t)?t:Math.log((1+t)/(1-t))/2}})},{23:23}],101:[function(t,e,n){var a=t(23),r=t(52);a(a.S,"Math",{cbrt:function(t){return r(t=+t)*Math.pow(Math.abs(t),1/3)}})},{23:23,52:52}],102:[function(t,e,n){var a=t(23);a(a.S,"Math",{clz32:function(t){return(t>>>=0)?31-Math.floor(Math.log(t+.5)*Math.LOG2E):32}})},{23:23}],103:[function(t,e,n){var a=t(23),r=Math.exp;a(a.S,"Math",{cosh:function(t){return(r(t=+t)+r(-t))/2}})},{23:23}],104:[function(t,e,n){var a=t(23);a(a.S,"Math",{expm1:t(50)})},{23:23,50:50}],105:[function(t,e,n){var a=t(23),r=t(52),i=Math.pow,o=i(2,-52),s=i(2,-23),u=i(2,127)*(2-s),p=i(2,-126),c=function(t){return t+1/o-1/o};a(a.S,"Math",{fround:function(t){var e,n,a=Math.abs(t),i=r(t);return p>a?i*c(a/p/s)*p*s:(e=(1+s/o)*a,n=e-(e-a),n>u||n!=n?i*(1/0):i*n)}})},{23:23,52:52}],106:[function(t,e,n){var a=t(23),r=Math.abs;a(a.S,"Math",{hypot:function(t,e){for(var n,a,i=0,o=0,s=arguments,u=s.length,p=0;u>o;)n=r(s[o++]),n>p?(a=p/n,i=i*a*a+1,p=n):n>0?(a=n/p,i+=a*a):i+=n;return p===1/0?1/0:p*Math.sqrt(i)}})},{23:23}],107:[function(t,e,n){var a=t(23),r=Math.imul;a(a.S+a.F*t(25)(function(){return-5!=r(4294967295,5)||2!=r.length}),"Math",{imul:function(t,e){var n=65535,a=+t,r=+e,i=n&a,o=n&r;return 0|i*o+((n&a>>>16)*o+i*(n&r>>>16)<<16>>>0)}})},{23:23,25:25}],108:[function(t,e,n){var a=t(23);a(a.S,"Math",{log10:function(t){return Math.log(t)/Math.LN10}})},{23:23}],109:[function(t,e,n){var a=t(23);a(a.S,"Math",{log1p:t(51)})},{23:23,51:51}],110:[function(t,e,n){var a=t(23);a(a.S,"Math",{log2:function(t){return Math.log(t)/Math.LN2}})},{23:23}],111:[function(t,e,n){var a=t(23);a(a.S,"Math",{sign:t(52)})},{23:23,52:52}],112:[function(t,e,n){var a=t(23),r=t(50),i=Math.exp;a(a.S+a.F*t(25)(function(){return-2e-17!=!Math.sinh(-2e-17)}),"Math",{sinh:function(t){return Math.abs(t=+t)<1?(r(t)-r(-t))/2:(i(t-1)-i(-t-1))*(Math.E/2)}})},{23:23,25:25,50:50}],113:[function(t,e,n){var a=t(23),r=t(50),i=Math.exp;a(a.S,"Math",{tanh:function(t){var e=r(t=+t),n=r(-t);return e==1/0?1:n==1/0?-1:(e-n)/(i(t)+i(-t))}})},{23:23,50:50}],114:[function(t,e,n){var a=t(23);a(a.S,"Math",{trunc:function(t){return(t>0?Math.floor:Math.ceil)(t)}})},{23:23}],115:[function(t,e,n){"use strict";var a=t(47),r=t(30),i=t(31),o=t(12),s=t(82),u=t(25),p=t(75).trim,c="Number",l=r[c],f=l,d=l.prototype,h=o(a.create(d))==c,m="trim"in String.prototype,v=function(t){var e=s(t,!1);if("string"==typeof e&&e.length>2){e=m?e.trim():p(e,3);var n,a,r,i=e.charCodeAt(0);if(43===i||45===i){if(n=e.charCodeAt(2),88===n||120===n)return NaN}else if(48===i){switch(e.charCodeAt(1)){case 66:case 98:a=2,r=49;break;case 79:case 111:a=8,r=55;break;default:return+e}for(var o,u=e.slice(2),c=0,l=u.length;l>c;c++)if(o=u.charCodeAt(c),48>o||o>r)return NaN;return parseInt(u,a)}}return+e};l(" 0o1")&&l("0b1")&&!l("+0x1")||(l=function(t){var e=arguments.length<1?0:t,n=this;return n instanceof l&&(h?u(function(){d.valueOf.call(n)}):o(n)!=c)?new f(v(e)):v(e)},a.each.call(t(20)?a.getNames(f):"MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,EPSILON,isFinite,isInteger,isNaN,isSafeInteger,MAX_SAFE_INTEGER,MIN_SAFE_INTEGER,parseFloat,parseInt,isInteger".split(","),function(t){i(f,t)&&!i(l,t)&&a.setDesc(l,t,a.getDesc(f,t))}),l.prototype=d,d.constructor=l,t(62)(r,c,l))},{12:12,20:20,25:25,30:30,31:31,47:47,62:62,75:75,82:82}],116:[function(t,e,n){var a=t(23);a(a.S,"Number",{EPSILON:Math.pow(2,-52)})},{23:23}],117:[function(t,e,n){var a=t(23),r=t(30).isFinite;a(a.S,"Number",{isFinite:function(t){return"number"==typeof t&&r(t)}})},{23:23,30:30}],118:[function(t,e,n){var a=t(23);a(a.S,"Number",{isInteger:t(38)})},{23:23,38:38}],119:[function(t,e,n){var a=t(23);a(a.S,"Number",{isNaN:function(t){return t!=t}})},{23:23}],120:[function(t,e,n){var a=t(23),r=t(38),i=Math.abs;a(a.S,"Number",{isSafeInteger:function(t){return r(t)&&i(t)<=9007199254740991}})},{23:23,38:38}],121:[function(t,e,n){var a=t(23);a(a.S,"Number",{MAX_SAFE_INTEGER:9007199254740991})},{23:23}],122:[function(t,e,n){var a=t(23);a(a.S,"Number",{MIN_SAFE_INTEGER:-9007199254740991})},{23:23}],123:[function(t,e,n){var a=t(23);a(a.S,"Number",{parseFloat:parseFloat})},{23:23}],124:[function(t,e,n){var a=t(23);a(a.S,"Number",{parseInt:parseInt})},{23:23}],125:[function(t,e,n){var a=t(23);a(a.S+a.F,"Object",{assign:t(54)})},{23:23,54:54}],126:[function(t,e,n){var a=t(39);t(55)("freeze",function(t){return function(e){return t&&a(e)?t(e):e}})},{39:39,55:55}],127:[function(t,e,n){var a=t(79);t(55)("getOwnPropertyDescriptor",function(t){return function(e,n){return t(a(e),n)}})},{55:55,79:79}],128:[function(t,e,n){t(55)("getOwnPropertyNames",function(){return t(29).get})},{29:29,55:55}],129:[function(t,e,n){var a=t(81);t(55)("getPrototypeOf",function(t){return function(e){return t(a(e))}})},{55:55,81:81}],130:[function(t,e,n){var a=t(39);t(55)("isExtensible",function(t){return function(e){return a(e)?t?t(e):!0:!1}})},{39:39,55:55}],131:[function(t,e,n){var a=t(39);t(55)("isFrozen",function(t){return function(e){return a(e)?t?t(e):!1:!0}})},{39:39,55:55}],132:[function(t,e,n){var a=t(39);t(55)("isSealed",function(t){return function(e){return a(e)?t?t(e):!1:!0}})},{39:39,55:55}],133:[function(t,e,n){var a=t(23);a(a.S,"Object",{is:t(64)})},{23:23,64:64}],134:[function(t,e,n){var a=t(81);t(55)("keys",function(t){return function(e){return t(a(e))}})},{55:55,81:81}],135:[function(t,e,n){var a=t(39);t(55)("preventExtensions",function(t){return function(e){return t&&a(e)?t(e):e}})},{39:39,55:55}],136:[function(t,e,n){var a=t(39);t(55)("seal",function(t){return function(e){return t&&a(e)?t(e):e}})},{39:39,55:55}],137:[function(t,e,n){var a=t(23);a(a.S,"Object",{setPrototypeOf:t(65).set})},{23:23,65:65}],138:[function(t,e,n){"use strict";var a=t(11),r={};r[t(84)("toStringTag")]="z",r+""!="[object z]"&&t(62)(Object.prototype,"toString",function(){return"[object "+a(this)+"]"},!0)},{11:11,62:62,84:84}],139:[function(t,e,n){"use strict";var a,r=t(47),i=t(49),o=t(30),s=t(18),u=t(11),p=t(23),c=t(39),l=t(5),f=t(3),d=t(70),h=t(28),m=t(65).set,v=t(64),g=t(84)("species"),b=t(69),y=t(53),_="Promise",x=o.process,w="process"==u(x),k=o[_],P=function(){},C=function(t){var e,n=new k(P);return t&&(n.constructor=function(t){t(P,P)}),(e=k.resolve(n))["catch"](P),e===n},E=function(){function e(t){var n=new k(t);return m(n,e.prototype),n}var n=!1;try{if(n=k&&k.resolve&&C(),m(e,k),e.prototype=r.create(k.prototype,{constructor:{value:e}}),e.resolve(5).then(function(){})instanceof e||(n=!1),n&&t(20)){var a=!1;k.resolve(r.setDesc({},"then",{get:function(){a=!0}})),n=a}}catch(i){n=!1}return n}(),S=function(t,e){return i&&t===k&&e===a?!0:v(t,e)},A=function(t){var e=l(t)[g];return void 0!=e?e:t},O=function(t){var e;return c(t)&&"function"==typeof(e=t.then)?e:!1},T=function(t){var e,n;this.promise=new t(function(t,a){if(void 0!==e||void 0!==n)throw TypeError("Bad Promise constructor");e=t,n=a}),this.resolve=f(e),this.reject=f(n)},M=function(t){try{t()}catch(e){return{error:e}}},R=function(t,e){if(!t.n){t.n=!0;var n=t.c;y(function(){for(var a=t.v,r=1==t.s,i=0,s=function(e){var n,i,o=r?e.ok:e.fail,s=e.resolve,u=e.reject;try{o?(r||(t.h=!0),n=o===!0?a:o(a),n===e.promise?u(TypeError("Promise-chain cycle")):(i=O(n))?i.call(n,s,u):s(n)):u(a)}catch(p){u(p)}};n.length>i;)s(n[i++]);n.length=0,t.n=!1,e&&setTimeout(function(){var e,n,r=t.p;j(r)&&(w?x.emit("unhandledRejection",a,r):(e=o.onunhandledrejection)?e({promise:r,reason:a}):(n=o.console)&&n.error&&n.error("Unhandled promise rejection",a)),t.a=void 0},1)})}},j=function(t){var e,n=t._d,a=n.a||n.c,r=0;if(n.h)return!1;for(;a.length>r;)if(e=a[r++],e.fail||!j(e.promise))return!1;return!0},L=function(t){var e=this;e.d||(e.d=!0,e=e.r||e,e.v=t,e.s=2,e.a=e.c.slice(),R(e,!0))},N=function(t){var e,n=this;if(!n.d){n.d=!0,n=n.r||n;try{if(n.p===t)throw TypeError("Promise can't be resolved itself");(e=O(t))?y(function(){var a={r:n,d:!1};try{e.call(t,s(N,a,1),s(L,a,1))}catch(r){L.call(a,r)}}):(n.v=t,n.s=1,R(n,!1))}catch(a){L.call({r:n,d:!1},a)}}};E||(k=function(t){f(t);var e=this._d={p:d(this,k,_),c:[],a:void 0,s:0,d:!1,v:void 0,h:!1,n:!1};try{t(s(N,e,1),s(L,e,1))}catch(n){L.call(e,n)}},t(61)(k.prototype,{then:function(t,e){var n=new T(b(this,k)),a=n.promise,r=this._d;return n.ok="function"==typeof t?t:!0,n.fail="function"==typeof e&&e,r.c.push(n),r.a&&r.a.push(n),r.s&&R(r,!1),a},"catch":function(t){return this.then(void 0,t)}})),p(p.G+p.W+p.F*!E,{Promise:k}),t(67)(k,_),t(66)(_),a=t(17)[_],p(p.S+p.F*!E,_,{reject:function(t){var e=new T(this),n=e.reject;return n(t),e.promise}}),p(p.S+p.F*(!E||C(!0)),_,{resolve:function(t){if(t instanceof k&&S(t.constructor,this))return t;var e=new T(this),n=e.resolve;return n(t),e.promise}}),p(p.S+p.F*!(E&&t(44)(function(t){k.all(t)["catch"](function(){})})),_,{all:function(t){var e=A(this),n=new T(e),a=n.resolve,i=n.reject,o=[],s=M(function(){h(t,!1,o.push,o);var n=o.length,s=Array(n);n?r.each.call(o,function(t,r){var o=!1;e.resolve(t).then(function(t){o||(o=!0,s[r]=t,--n||a(s))},i)}):a(s)});return s&&i(s.error),n.promise},race:function(t){var e=A(this),n=new T(e),a=n.reject,r=M(function(){h(t,!1,function(t){e.resolve(t).then(n.resolve,a)})});return r&&a(r.error),n.promise}})},{11:11,17:17,18:18,20:20,23:23,28:28,3:3,30:30,39:39,44:44,47:47,49:49,5:5,53:53,61:61,64:64,65:65,66:66,67:67,69:69,70:70,84:84}],140:[function(t,e,n){var a=t(23),r=Function.apply,i=t(5);a(a.S,"Reflect",{apply:function(t,e,n){return r.call(t,e,i(n))}})},{23:23,5:5}],141:[function(t,e,n){var a=t(47),r=t(23),i=t(3),o=t(5),s=t(39),u=Function.bind||t(17).Function.prototype.bind;r(r.S+r.F*t(25)(function(){function t(){}return!(Reflect.construct(function(){},[],t)instanceof t)}),"Reflect",{construct:function(t,e){i(t),o(e);var n=arguments.length<3?t:i(arguments[2]);if(t==n){switch(e.length){case 0:return new t;case 1:return new t(e[0]);case 2:return new t(e[0],e[1]);case 3:return new t(e[0],e[1],e[2]);case 4:return new t(e[0],e[1],e[2],e[3])}var r=[null];return r.push.apply(r,e),new(u.apply(t,r))}var p=n.prototype,c=a.create(s(p)?p:Object.prototype),l=Function.apply.call(t,c,e);return s(l)?l:c}})},{17:17,23:23,25:25,3:3,39:39,47:47,5:5}],142:[function(t,e,n){var a=t(47),r=t(23),i=t(5);r(r.S+r.F*t(25)(function(){Reflect.defineProperty(a.setDesc({},1,{value:1}),1,{value:2})}),"Reflect",{defineProperty:function(t,e,n){i(t);try{return a.setDesc(t,e,n),!0}catch(r){return!1}}})},{23:23,25:25,47:47,5:5}],143:[function(t,e,n){var a=t(23),r=t(47).getDesc,i=t(5);a(a.S,"Reflect",{deleteProperty:function(t,e){var n=r(i(t),e);return n&&!n.configurable?!1:delete t[e]}})},{23:23,47:47,5:5}],144:[function(t,e,n){"use strict";var a=t(23),r=t(5),i=function(t){this._t=r(t),this._i=0;var e,n=this._k=[];for(e in t)n.push(e)};t(42)(i,"Object",function(){var t,e=this,n=e._k;do if(e._i>=n.length)return{value:void 0,done:!0};while(!((t=n[e._i++])in e._t));return{value:t,done:!1}}),a(a.S,"Reflect",{enumerate:function(t){return new i(t)}})},{23:23,42:42,5:5}],145:[function(t,e,n){var a=t(47),r=t(23),i=t(5);r(r.S,"Reflect",{getOwnPropertyDescriptor:function(t,e){return a.getDesc(i(t),e)}})},{23:23,47:47,5:5}],146:[function(t,e,n){var a=t(23),r=t(47).getProto,i=t(5);a(a.S,"Reflect",{getPrototypeOf:function(t){return r(i(t))}})},{23:23,47:47,5:5}],147:[function(t,e,n){function a(t,e){var n,o,p=arguments.length<3?t:arguments[2];return u(t)===p?t[e]:(n=r.getDesc(t,e))?i(n,"value")?n.value:void 0!==n.get?n.get.call(p):void 0:s(o=r.getProto(t))?a(o,e,p):void 0}var r=t(47),i=t(31),o=t(23),s=t(39),u=t(5);o(o.S,"Reflect",{get:a})},{23:23,31:31,39:39,47:47,5:5}],148:[function(t,e,n){var a=t(23);a(a.S,"Reflect",{has:function(t,e){return e in t}})},{23:23}],149:[function(t,e,n){var a=t(23),r=t(5),i=Object.isExtensible;a(a.S,"Reflect",{isExtensible:function(t){return r(t),i?i(t):!0}})},{23:23,5:5}],150:[function(t,e,n){var a=t(23);a(a.S,"Reflect",{ownKeys:t(57)})},{23:23,57:57}],151:[function(t,e,n){var a=t(23),r=t(5),i=Object.preventExtensions;a(a.S,"Reflect",{preventExtensions:function(t){r(t);try{return i&&i(t),!0}catch(e){return!1}}})},{23:23,5:5}],152:[function(t,e,n){var a=t(23),r=t(65);r&&a(a.S,"Reflect",{setPrototypeOf:function(t,e){r.check(t,e);try{return r.set(t,e),!0}catch(n){return!1}}})},{23:23,65:65}],153:[function(t,e,n){function a(t,e,n){var o,c,l=arguments.length<4?t:arguments[3],f=r.getDesc(u(t),e);if(!f){if(p(c=r.getProto(t)))return a(c,e,n,l);f=s(0)}return i(f,"value")?f.writable!==!1&&p(l)?(o=r.getDesc(l,e)||s(0),o.value=n,r.setDesc(l,e,o),!0):!1:void 0===f.set?!1:(f.set.call(l,n),!0)}var r=t(47),i=t(31),o=t(23),s=t(60),u=t(5),p=t(39);o(o.S,"Reflect",{set:a})},{23:23,31:31,39:39,47:47,5:5,60:60}],154:[function(t,e,n){var a=t(47),r=t(30),i=t(40),o=t(27),s=r.RegExp,u=s,p=s.prototype,c=/a/g,l=/a/g,f=new s(c)!==c;!t(20)||f&&!t(25)(function(){return l[t(84)("match")]=!1,s(c)!=c||s(l)==l||"/a/i"!=s(c,"i")})||(s=function(t,e){var n=i(t),a=void 0===e;return this instanceof s||!n||t.constructor!==s||!a?f?new u(n&&!a?t.source:t,e):u((n=t instanceof s)?t.source:t,n&&a?o.call(t):e):t},a.each.call(a.getNames(u),function(t){t in s||a.setDesc(s,t,{configurable:!0,get:function(){return u[t]},set:function(e){u[t]=e}})}),p.constructor=s,s.prototype=p,t(62)(r,"RegExp",s)),t(66)("RegExp")},{20:20,25:25,27:27,30:30,40:40,47:47,62:62,66:66,84:84}],155:[function(t,e,n){var a=t(47);t(20)&&"g"!=/./g.flags&&a.setDesc(RegExp.prototype,"flags",{configurable:!0,get:t(27)})},{20:20,27:27,47:47}],156:[function(t,e,n){t(26)("match",1,function(t,e){return function(n){"use strict";var a=t(this),r=void 0==n?void 0:n[e];return void 0!==r?r.call(n,a):RegExp(n)[e](a+"")}})},{26:26}],157:[function(t,e,n){t(26)("replace",2,function(t,e,n){return function(a,r){"use strict";var i=t(this),o=void 0==a?void 0:a[e];return void 0!==o?o.call(a,i,r):n.call(i+"",a,r)}})},{26:26}],158:[function(t,e,n){t(26)("search",1,function(t,e){return function(n){"use strict";var a=t(this),r=void 0==n?void 0:n[e];return void 0!==r?r.call(n,a):RegExp(n)[e](a+"")}})},{26:26}],159:[function(t,e,n){t(26)("split",2,function(t,e,n){return function(a,r){"use strict";var i=t(this),o=void 0==a?void 0:a[e];return void 0!==o?o.call(a,i,r):n.call(i+"",a,r)}})},{26:26}],160:[function(t,e,n){"use strict";var a=t(13);t(16)("Set",function(t){return function(){return t(this,arguments.length>0?arguments[0]:void 0)}},{add:function(t){return a.def(this,t=0===t?0:t,t)}},a)},{13:13,16:16}],161:[function(t,e,n){"use strict";var a=t(23),r=t(71)(!1);a(a.P,"String",{codePointAt:function(t){return r(this,t)}})},{23:23,71:71}],162:[function(t,e,n){"use strict";var a=t(23),r=t(80),i=t(72),o="endsWith",s=""[o];a(a.P+a.F*t(24)(o),"String",{endsWith:function(t){var e=i(this,t,o),n=arguments,a=n.length>1?n[1]:void 0,u=r(e.length),p=void 0===a?u:Math.min(r(a),u),c=t+"";return s?s.call(e,c,p):e.slice(p-c.length,p)===c}})},{23:23,24:24,72:72,80:80}],163:[function(t,e,n){var a=t(23),r=t(77),i=String.fromCharCode,o=String.fromCodePoint;a(a.S+a.F*(!!o&&1!=o.length),"String",{fromCodePoint:function(t){for(var e,n=[],a=arguments,o=a.length,s=0;o>s;){if(e=+a[s++],r(e,1114111)!==e)throw RangeError(e+" is not a valid code point");n.push(65536>e?i(e):i(((e-=65536)>>10)+55296,e%1024+56320))}return n.join("")}})},{23:23,77:77}],164:[function(t,e,n){"use strict";var a=t(23),r=t(72),i="includes";a(a.P+a.F*t(24)(i),"String",{includes:function(t){return!!~r(this,t,i).indexOf(t,arguments.length>1?arguments[1]:void 0)}})},{23:23,24:24,72:72}],165:[function(t,e,n){"use strict";var a=t(71)(!0);t(43)(String,"String",function(t){this._t=t+"",this._i=0},function(){var t,e=this._t,n=this._i;return n>=e.length?{value:void 0,done:!0}:(t=a(e,n),this._i+=t.length,{value:t,done:!1})})},{43:43,71:71}],166:[function(t,e,n){var a=t(23),r=t(79),i=t(80);a(a.S,"String",{raw:function(t){for(var e=r(t.raw),n=i(e.length),a=arguments,o=a.length,s=[],u=0;n>u;)s.push(e[u++]+""),o>u&&s.push(a[u]+"");return s.join("")}})},{23:23,79:79,80:80}],167:[function(t,e,n){var a=t(23);a(a.P,"String",{repeat:t(74)})},{23:23,74:74}],168:[function(t,e,n){"use strict";var a=t(23),r=t(80),i=t(72),o="startsWith",s=""[o];a(a.P+a.F*t(24)(o),"String",{startsWith:function(t){var e=i(this,t,o),n=arguments,a=r(Math.min(n.length>1?n[1]:void 0,e.length)),u=t+"";return s?s.call(e,u,a):e.slice(a,a+u.length)===u}})},{23:23,24:24,72:72,80:80}],169:[function(t,e,n){"use strict";t(75)("trim",function(t){return function(){return t(this,3)}})},{75:75}],170:[function(t,e,n){"use strict";var a=t(47),r=t(30),i=t(31),o=t(20),s=t(23),u=t(62),p=t(25),c=t(68),l=t(67),f=t(83),d=t(84),h=t(48),m=t(29),v=t(22),g=t(37),b=t(5),y=t(79),_=t(60),x=a.getDesc,w=a.setDesc,k=a.create,P=m.get,C=r.Symbol,E=r.JSON,S=E&&E.stringify,A=!1,O=d("_hidden"),T=a.isEnum,M=c("symbol-registry"),R=c("symbols"),j="function"==typeof C,L=Object.prototype,N=o&&p(function(){return 7!=k(w({},"a",{get:function(){return w(this,"a",{value:7}).a}})).a})?function(t,e,n){var a=x(L,e);a&&delete L[e],w(t,e,n),a&&t!==L&&w(L,e,a)}:w,D=function(t){var e=R[t]=k(C.prototype);return e._k=t,o&&A&&N(L,t,{configurable:!0,set:function(e){i(this,O)&&i(this[O],t)&&(this[O][t]=!1),N(this,t,_(1,e))}}),e},F=function(t){return"symbol"==typeof t},I=function(t,e,n){return n&&i(R,e)?(n.enumerable?(i(t,O)&&t[O][e]&&(t[O][e]=!1),n=k(n,{enumerable:_(0,!1)})):(i(t,O)||w(t,O,_(1,{})),t[O][e]=!0),N(t,e,n)):w(t,e,n)},B=function(t,e){b(t);for(var n,a=v(e=y(e)),r=0,i=a.length;i>r;)I(t,n=a[r++],e[n]);return t},q=function(t,e){return void 0===e?k(t):B(k(t),e)},G=function(t){var e=T.call(this,t);return e||!i(this,t)||!i(R,t)||i(this,O)&&this[O][t]?e:!0},U=function(t,e){var n=x(t=y(t),e);return!n||!i(R,e)||i(t,O)&&t[O][e]||(n.enumerable=!0),n},V=function(t){for(var e,n=P(y(t)),a=[],r=0;n.length>r;)i(R,e=n[r++])||e==O||a.push(e);return a},z=function(t){for(var e,n=P(y(t)),a=[],r=0;n.length>r;)i(R,e=n[r++])&&a.push(R[e]);return a},W=function(t){if(void 0!==t&&!F(t)){for(var e,n,a=[t],r=1,i=arguments;i.length>r;)a.push(i[r++]);return e=a[1],"function"==typeof e&&(n=e),(n||!g(e))&&(e=function(t,e){return n&&(e=n.call(this,t,e)),F(e)?void 0:e}),a[1]=e,S.apply(E,a)}},H=p(function(){var t=C();return"[null]"!=S([t])||"{}"!=S({a:t})||"{}"!=S(Object(t))});j||(C=function(){if(F(this))throw TypeError("Symbol is not a constructor");return D(f(arguments.length>0?arguments[0]:void 0))},u(C.prototype,"toString",function(){return this._k}),F=function(t){return t instanceof C},a.create=q,a.isEnum=G,a.getDesc=U,a.setDesc=I,a.setDescs=B,a.getNames=m.get=V,a.getSymbols=z,o&&!t(49)&&u(L,"propertyIsEnumerable",G,!0));var Q={"for":function(t){return i(M,t+="")?M[t]:M[t]=C(t)},keyFor:function(t){return h(M,t)},useSetter:function(){A=!0},useSimple:function(){A=!1}};a.each.call("hasInstance,isConcatSpreadable,iterator,match,replace,search,species,split,toPrimitive,toStringTag,unscopables".split(","),function(t){var e=d(t);Q[t]=j?e:D(e)}),A=!0,s(s.G+s.W,{Symbol:C}),s(s.S,"Symbol",Q),s(s.S+s.F*!j,"Object",{create:q,defineProperty:I,defineProperties:B,getOwnPropertyDescriptor:U,getOwnPropertyNames:V,getOwnPropertySymbols:z}),E&&s(s.S+s.F*(!j||H),"JSON",{stringify:W}),l(C,"Symbol"),l(Math,"Math",!0),l(r.JSON,"JSON",!0)},{20:20,22:22,23:23,25:25,29:29,30:30,31:31,37:37,47:47,48:48,49:49,5:5,60:60,62:62,67:67,68:68,79:79,83:83,84:84}],171:[function(t,e,n){"use strict";var a=t(47),r=t(62),i=t(15),o=t(39),s=t(31),u=i.frozenStore,p=i.WEAK,c=Object.isExtensible||o,l={},f=t(16)("WeakMap",function(t){return function(){return t(this,arguments.length>0?arguments[0]:void 0)}},{get:function(t){if(o(t)){if(!c(t))return u(this).get(t);if(s(t,p))return t[p][this._i]}},set:function(t,e){return i.def(this,t,e)}},i,!0,!0);7!=(new f).set((Object.freeze||Object)(l),7).get(l)&&a.each.call(["delete","has","get","set"],function(t){var e=f.prototype,n=e[t];r(e,t,function(e,a){if(o(e)&&!c(e)){var r=u(this)[t](e,a);return"set"==t?this:r}return n.call(this,e,a)})})},{15:15,16:16,31:31,39:39,47:47,62:62}],172:[function(t,e,n){"use strict";var a=t(15);t(16)("WeakSet",function(t){return function(){return t(this,arguments.length>0?arguments[0]:void 0)}},{add:function(t){return a.def(this,t,!0)}},a,!1,!0)},{15:15,16:16}],173:[function(t,e,n){"use strict";var a=t(23),r=t(8)(!0);a(a.P,"Array",{includes:function(t){return r(this,t,arguments.length>1?arguments[1]:void 0)}}),t(4)("includes")},{23:23,4:4,8:8}],174:[function(t,e,n){var a=t(23);a(a.P,"Map",{toJSON:t(14)("Map")})},{14:14,23:23}],175:[function(t,e,n){var a=t(23),r=t(56)(!0);a(a.S,"Object",{entries:function(t){return r(t)}})},{23:23,56:56}],176:[function(t,e,n){var a=t(47),r=t(23),i=t(57),o=t(79),s=t(60);r(r.S,"Object",{getOwnPropertyDescriptors:function(t){for(var e,n,r=o(t),u=a.setDesc,p=a.getDesc,c=i(r),l={},f=0;c.length>f;)n=p(r,e=c[f++]),e in l?u(l,e,s(0,n)):l[e]=n;return l}})},{23:23,47:47,57:57,60:60,79:79}],177:[function(t,e,n){var a=t(23),r=t(56)(!1);a(a.S,"Object",{values:function(t){return r(t)}})},{23:23,56:56}],178:[function(t,e,n){var a=t(23),r=t(63)(/[\\^$*+?.()|[\]{}]/g,"\\$&");a(a.S,"RegExp",{escape:function(t){return r(t)}})},{23:23,63:63}],179:[function(t,e,n){var a=t(23);a(a.P,"Set",{toJSON:t(14)("Set")})},{14:14,23:23}],180:[function(t,e,n){"use strict";var a=t(23),r=t(71)(!0);a(a.P,"String",{at:function(t){return r(this,t)}})},{23:23,71:71}],181:[function(t,e,n){"use strict";var a=t(23),r=t(73);a(a.P,"String",{padLeft:function(t){return r(this,t,arguments.length>1?arguments[1]:void 0,!0)}})},{23:23,73:73}],182:[function(t,e,n){"use strict";var a=t(23),r=t(73);a(a.P,"String",{padRight:function(t){return r(this,t,arguments.length>1?arguments[1]:void 0,!1)}})},{23:23,73:73}],183:[function(t,e,n){"use strict";t(75)("trimLeft",function(t){return function(){return t(this,1)}})},{75:75}],184:[function(t,e,n){"use strict";t(75)("trimRight",function(t){return function(){return t(this,2)}})},{75:75}],185:[function(t,e,n){var a=t(47),r=t(23),i=t(18),o=t(17).Array||Array,s={},u=function(t,e){a.each.call(t.split(","),function(t){void 0==e&&t in o?s[t]=o[t]:t in[]&&(s[t]=i(Function.call,[][t],e))})};u("pop,reverse,shift,keys,values,entries",1),u("indexOf,every,some,forEach,map,filter,find,findIndex,includes",3),u("join,slice,concat,push,splice,unshift,sort,lastIndexOf,reduce,reduceRight,copyWithin,fill"),r(r.S,"Array",s)},{17:17,18:18,23:23,47:47}],186:[function(t,e,n){t(92);var a=t(30),r=t(32),i=t(46),o=t(84)("iterator"),s=a.NodeList,u=a.HTMLCollection,p=s&&s.prototype,c=u&&u.prototype,l=i.NodeList=i.HTMLCollection=i.Array;p&&!p[o]&&r(p,o,l),c&&!c[o]&&r(c,o,l)},{30:30,32:32,46:46,84:84,92:92}],187:[function(t,e,n){var a=t(23),r=t(76);a(a.G+a.B,{setImmediate:r.set,clearImmediate:r.clear})},{23:23,76:76}],188:[function(t,e,n){var a=t(30),r=t(23),i=t(34),o=t(58),s=a.navigator,u=!!s&&/MSIE .\./.test(s.userAgent),p=function(t){return u?function(e,n){return t(i(o,[].slice.call(arguments,2),"function"==typeof e?e:Function(e)),n)}:t};r(r.G+r.B+r.F*u,{setTimeout:p(a.setTimeout),setInterval:p(a.setInterval)})},{23:23,30:30,34:34,58:58}],189:[function(t,e,n){t(86),t(170),t(125),t(133),t(137),t(138),t(126),t(136),t(135),t(131),t(132),t(130),t(127),t(129),t(134),t(128),t(96),t(95),t(115),t(116),t(117),t(118),t(119),t(120),t(121),t(122),t(123),t(124),t(98),t(99),t(100),t(101),t(102),t(103),t(104),t(105),t(106),t(107),t(108),t(109),t(110),t(111),t(112),t(113),t(114),t(163),t(166),t(169),t(165),t(161),t(162),t(164),t(167),t(168),t(91),t(93),t(92),t(94),t(87),t(88),t(90),t(89),t(154),t(155),t(156),t(157),t(158),t(159),t(139),t(97),t(160),t(171),t(172),t(140),t(141),t(142),t(143),t(144),t(147),t(145),t(146),t(148),t(149),t(150),t(151),t(153),t(152),t(173),t(180),t(181),t(182),t(183),t(184),t(178),t(176),t(177),t(175),t(174),t(179),t(185),t(188),t(187),t(186),e.exports=t(17)},{100:100,101:101,102:102,103:103,104:104,105:105,106:106,107:107,108:108,109:109,110:110,111:111,112:112,113:113,114:114,115:115,116:116,117:117,118:118,119:119,120:120,121:121,122:122,123:123,124:124,125:125,126:126,127:127,128:128,129:129,130:130,131:131,132:132,133:133,134:134,135:135,136:136,137:137,138:138,139:139,140:140,141:141,142:142,143:143,144:144,145:145,146:146,147:147,148:148,149:149,150:150,151:151,152:152,153:153,154:154,155:155,156:156,157:157,158:158,159:159,160:160,161:161,162:162,163:163,164:164,165:165,166:166,167:167,168:168,169:169,17:17,170:170,171:171,172:172,173:173,174:174,175:175,176:176,177:177,178:178,179:179,180:180,181:181,182:182,183:183,184:184,185:185,186:186,187:187,188:188,86:86,87:87,88:88,89:89,90:90,91:91,92:92,93:93,94:94,95:95,96:96,97:97,98:98,99:99}],190:[function(t,e,n){function a(){throw Error("setTimeout has not been defined")}function r(){throw Error("clearTimeout has not been defined")}function i(t){if(l===setTimeout)return setTimeout(t,0);if((l===a||!l)&&setTimeout)return l=setTimeout,setTimeout(t,0);try{return l(t,0)}catch(e){try{return l.call(null,t,0)}catch(e){return l.call(this,t,0)}}}function o(t){if(f===clearTimeout)return clearTimeout(t);if((f===r||!f)&&clearTimeout)return f=clearTimeout,clearTimeout(t);try{return f(t)}catch(e){try{return f.call(null,t)}catch(e){return f.call(this,t)}}}function s(){v&&h&&(v=!1,h.length?m=h.concat(m):g=-1,m.length&&u())}function u(){if(!v){var t=i(s);v=!0;for(var e=m.length;e;){for(h=m,m=[];++g1)for(var n=1;n-1}}([].indexOf||function(t){for(q=this.length;q--&&this[q]!==t;);return q}),item:function(t){return this[t]||null},remove:function(){for(var t,e=0;e=u?e(i):document.fonts.load(p(i,i.family),s).then(function(e){1<=e.length?t(i):setTimeout(f,25)},function(){e(i)})};f()}else n(function(){function n(){var e;(e=-1!=v&&-1!=g||-1!=v&&-1!=b||-1!=g&&-1!=b)&&((e=v!=g&&v!=b&&g!=b)||(null===l&&(e=/AppleWebKit\/([0-9]+)(?:\.([0-9]+))/.exec(window.navigator.userAgent),l=!!e&&(536>parseInt(e[1],10)||536===parseInt(e[1],10)&&11>=parseInt(e[2],10))),e=l&&(v==y&&g==y&&b==y||v==_&&g==_&&b==_||v==x&&g==x&&b==x)),e=!e),e&&(null!==w.parentNode&&w.parentNode.removeChild(w),clearTimeout(k),t(i))}function f(){if((new Date).getTime()-c>=u)null!==w.parentNode&&w.parentNode.removeChild(w),e(i);else{var t=document.hidden;(!0===t||void 0===t)&&(v=d.a.offsetWidth,g=h.a.offsetWidth,b=m.a.offsetWidth,n()),k=setTimeout(f,50)}}var d=new a(s),h=new a(s),m=new a(s),v=-1,g=-1,b=-1,y=-1,_=-1,x=-1,w=document.createElement("div"),k=0;w.dir="ltr",r(d,p(i,"sans-serif")),r(h,p(i,"serif")),r(m,p(i,"monospace")),w.appendChild(d.a),w.appendChild(h.a),w.appendChild(m.a),document.body.appendChild(w),y=d.a.offsetWidth,_=h.a.offsetWidth,x=m.a.offsetWidth,f(),o(d,function(t){v=t,n()}),r(d,p(i,'"'+i.family+'",sans-serif')),o(h,function(t){g=t,n()}),r(h,p(i,'"'+i.family+'",serif')),o(m,function(t){b=t,n()}),r(m,p(i,'"'+i.family+'",monospace'))})})},window.FontFaceObserver=s,window.FontFaceObserver.prototype.check=s.prototype.a,void 0!==e&&(e.exports=window.FontFaceObserver)}()},{}],194:[function(t,e,n){!function(t,n){function a(t,e){var n=t.createElement("p"),a=t.getElementsByTagName("head")[0]||t.documentElement;return n.innerHTML="x",a.insertBefore(n.lastChild,a.firstChild)}function r(){var t=_.elements;return"string"==typeof t?t.split(" "):t}function i(t,e){var n=_.elements;"string"!=typeof n&&(n=n.join(" ")),"string"!=typeof t&&(t=t.join(" ")),_.elements=n+" "+t,c(e)}function o(t){var e=y[t[g]];return e||(e={},b++,t[g]=b,y[b]=e),e}function s(t,e,a){if(e||(e=n),f)return e.createElement(t);a||(a=o(e));var r;return r=a.cache[t]?a.cache[t].cloneNode():v.test(t)?(a.cache[t]=a.createElem(t)).cloneNode():a.createElem(t),!r.canHaveChildren||m.test(t)||r.tagUrn?r:a.frag.appendChild(r)}function u(t,e){if(t||(t=n),f)return t.createDocumentFragment();e=e||o(t);for(var a=e.frag.cloneNode(),i=0,s=r(),u=s.length;u>i;i++)a.createElement(s[i]);return a}function p(t,e){e.cache||(e.cache={},e.createElem=t.createElement,e.createFrag=t.createDocumentFragment,e.frag=e.createFrag()),t.createElement=function(n){return _.shivMethods?s(n,t,e):e.createElem(n)},t.createDocumentFragment=Function("h,f","return function(){var n=f.cloneNode(),c=n.createElement;h.shivMethods&&("+r().join().replace(/[\w\-:]+/g,function(t){return e.createElem(t),e.frag.createElement(t),'c("'+t+'")'})+");return n}")(_,e.frag)}function c(t){t||(t=n);var e=o(t);return!_.shivCSS||l||e.hasCSS||(e.hasCSS=!!a(t,"article,aside,dialog,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}mark{background:#FF0;color:#000}template{display:none}")),f||p(t,e),t}var l,f,d="3.7.3-pre",h=t.html5||{},m=/^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i,v=/^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|style|table|tbody|td|th|tr|ul)$/i,g="_html5shiv",b=0,y={};!function(){try{var t=n.createElement("a");t.innerHTML="",l="hidden"in t,f=1==t.childNodes.length||function(){n.createElement("a");var t=n.createDocumentFragment();return void 0===t.cloneNode||void 0===t.createDocumentFragment||void 0===t.createElement}()}catch(e){l=!0,f=!0}}();var _={elements:h.elements||"abbr article aside audio bdi canvas data datalist details dialog figcaption figure footer header hgroup main mark meter nav output picture progress section summary template time video",version:d,shivCSS:h.shivCSS!==!1,supportsUnknownElements:f,shivMethods:h.shivMethods!==!1,type:"default",shivDocument:c,createElement:s,createDocumentFragment:u,addElements:i};t.html5=_,c(n),"object"==typeof e&&e.exports&&(e.exports=_)}("undefined"!=typeof window?window:this,document)},{}],195:[function(t,e,n){(function(t){(function(t){!function(t){function e(t,e,n,a){for(var i,o=n.slice(),s=r(e,t),u=0,p=o.length;p>u&&(handler=o[u],"object"==typeof handler?"function"==typeof handler.handleEvent&&handler.handleEvent(s):handler.call(t,s),!s.stoppedImmediatePropagation);u++);return i=!s.stoppedPropagation,a&&i&&t.parentNode?t.parentNode.dispatchEvent(s):!s.defaultPrevented}function n(t,e){return{configurable:!0,get:t,set:e}}function a(t,e,a){var r=b(e||t,a);v(t,"textContent",n(function(){return r.get.call(this)},function(t){r.set.call(this,t)}))}function r(t,e){return t.currentTarget=e,t.eventPhase=t.target===t.currentTarget?2:3,t}function i(t,e){for(var n=t.length;n--&&t[n]!==e;);return n}function o(){if("BR"===this.tagName)return"\n";for(var t=this.firstChild,e=[];t;)8!==t.nodeType&&7!==t.nodeType&&e.push(t.textContent),t=t.nextSibling;return e.join("")}function s(t){var e=document.createEvent("Event");e.initEvent("input",!0,!0),(t.srcElement||t.fromElement||document).dispatchEvent(e)}function u(t){!f&&k.test(document.readyState)&&(f=!f,document.detachEvent(d,u),t=document.createEvent("Event"),t.initEvent(h,!0,!0),document.dispatchEvent(t))}function p(t){for(var e;e=this.lastChild;)this.removeChild(e);null!=t&&this.appendChild(document.createTextNode(t))}function c(e,n){return n||(n=t.event),n.target||(n.target=n.srcElement||n.fromElement||document),n.timeStamp||(n.timeStamp=(new Date).getTime()),n}if(!document.createEvent){var l=!0,f=!1,d="onreadystatechange",h="DOMContentLoaded",m="__IE8__"+Math.random(),v=Object.defineProperty||function(t,e,n){t[e]=n.value},g=Object.defineProperties||function(e,n){for(var a in n)if(y.call(n,a))try{v(e,a,n[a])}catch(r){t.console&&console.log(a+" failed on object:",e,r.message)}},b=Object.getOwnPropertyDescriptor,y=Object.prototype.hasOwnProperty,_=t.Element.prototype,x=t.Text.prototype,w=/^[a-z]+$/,k=/loaded|complete/,P={},C=document.createElement("div"),E=document.documentElement,S=E.removeAttribute,A=E.setAttribute;a(t.HTMLCommentElement.prototype,_,"nodeValue"),a(t.HTMLScriptElement.prototype,null,"text"),a(x,null,"nodeValue"),a(t.HTMLTitleElement.prototype,null,"text"),v(t.HTMLStyleElement.prototype,"textContent",function(t){return n(function(){return t.get.call(this.styleSheet)},function(e){t.set.call(this.styleSheet,e)})}(b(t.CSSStyleSheet.prototype,"cssText"))),g(_,{textContent:{get:o,set:p},firstElementChild:{get:function(){for(var t=this.childNodes||[],e=0,n=t.length;n>e;e++)if(1==t[e].nodeType)return t[e]}},lastElementChild:{get:function(){for(var t=this.childNodes||[],e=t.length;e--;)if(1==t[e].nodeType)return t[e]}},oninput:{get:function(){return this._oninput||null},set:function(t){this._oninput&&(this.removeEventListener("input",this._oninput),this._oninput=t,t&&this.addEventListener("input",t))}},previousElementSibling:{get:function(){for(var t=this.previousSibling;t&&1!=t.nodeType;)t=t.previousSibling;return t}},nextElementSibling:{get:function(){for(var t=this.nextSibling;t&&1!=t.nodeType;)t=t.nextSibling;return t}},childElementCount:{get:function(){for(var t=0,e=this.childNodes||[],n=e.length;n--;t+=1==e[n].nodeType);return t}},addEventListener:{value:function(t,n,a){if("function"==typeof n||"object"==typeof n){var r,o,u=this,p="on"+t,l=u[m]||v(u,m,{value:{}})[m],f=l[p]||(l[p]={}),d=f.h||(f.h=[]);if(!y.call(f,"w")){if(f.w=function(t){return t[m]||e(u,c(u,t),d,!1)},!y.call(P,p))if(w.test(t)){try{r=document.createEventObject(),r[m]=!0,9!=u.nodeType&&(null==u.parentNode&&C.appendChild(u),(o=u.getAttribute(p))&&S.call(u,p)),u.fireEvent(p,r),P[p]=!0}catch(r){for(P[p]=!1;C.hasChildNodes();)C.removeChild(C.firstChild)}null!=o&&A.call(u,p,o)}else P[p]=!1;(f.n=P[p])&&u.attachEvent(p,f.w)}i(d,n)<0&&d[a?"unshift":"push"](n),"input"===t&&u.attachEvent("onkeyup",s)}}},dispatchEvent:{value:function(t){var n,a=this,r="on"+t.type,i=a[m],o=i&&i[r],s=!!o;return t.target||(t.target=a),s?o.n?a.fireEvent(r,t):e(a,t,o.h,!0):(n=a.parentNode)?n.dispatchEvent(t):!0,!t.defaultPrevented}},removeEventListener:{value:function(t,e,n){if("function"==typeof e||"object"==typeof e){var a=this,r="on"+t,o=a[m],s=o&&o[r],u=s&&s.h,p=u?i(u,e):-1;p>-1&&u.splice(p,1)}}}}),g(x,{addEventListener:{value:_.addEventListener},dispatchEvent:{value:_.dispatchEvent},removeEventListener:{value:_.removeEventListener}}),g(t.XMLHttpRequest.prototype,{addEventListener:{value:function(t,e,n){var a=this,r="on"+t,o=a[m]||v(a,m,{value:{}})[m],s=o[r]||(o[r]={}),u=s.h||(s.h=[]);i(u,e)<0&&(a[r]||(a[r]=function(){var e=document.createEvent("Event");e.initEvent(t,!0,!0),a.dispatchEvent(e)}),u[n?"unshift":"push"](e))}},dispatchEvent:{value:function(t){var n=this,a="on"+t.type,r=n[m],i=r&&r[a],o=!!i;return o&&(i.n?n.fireEvent(a,t):e(n,t,i.h,!0))}},removeEventListener:{value:_.removeEventListener}}),g(t.Event.prototype,{bubbles:{value:!0,writable:!0},cancelable:{value:!0,writable:!0},preventDefault:{value:function(){this.cancelable&&(this.defaultPrevented=!0,this.returnValue=!1)}},stopPropagation:{value:function(){this.stoppedPropagation=!0,this.cancelBubble=!0}},stopImmediatePropagation:{value:function(){this.stoppedImmediatePropagation=!0,this.stopPropagation()}},initEvent:{value:function(t,e,n){this.type=t,this.bubbles=!!e,this.cancelable=!!n,this.bubbles||this.stopPropagation()}}}),g(t.HTMLDocument.prototype,{defaultView:{get:function(){return this.parentWindow}},textContent:{get:function(){return 11===this.nodeType?o.call(this):null},set:function(t){11===this.nodeType&&p.call(this,t)}},addEventListener:{value:function(e,n,a){var r=this;_.addEventListener.call(r,e,n,a),l&&e===h&&!k.test(r.readyState)&&(l=!1,r.attachEvent(d,u),t==top&&!function i(t){try{r.documentElement.doScroll("left"),u()}catch(e){setTimeout(i,50)}}())}},dispatchEvent:{value:_.dispatchEvent},removeEventListener:{value:_.removeEventListener},createEvent:{value:function(t){var e;if("Event"!==t)throw Error("unsupported "+t);return e=document.createEventObject(),e.timeStamp=(new Date).getTime(),e}}}),g(t.Window.prototype,{getComputedStyle:{value:function(){function t(t){this._=t}function e(){}var n=/^(?:[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|))(?!px)[a-z%]+$/,a=/^(top|right|bottom|left)$/,r=/\-([a-z])/g,i=function(t,e){return e.toUpperCase()};return t.prototype.getPropertyValue=function(t){var e,o,s,u=this._,p=u.style,c=u.currentStyle,l=u.runtimeStyle;return t=("float"===t?"style-float":t).replace(r,i),e=c?c[t]:p[t],n.test(e)&&!a.test(t)&&(o=p.left,s=l&&l.left,s&&(l.left=c.left),p.left="fontSize"===t?"1em":e,e=p.pixelLeft+"px",p.left=o,s&&(l.left=s)),null==e?e:e+""||"auto"},e.prototype.getPropertyValue=function(){return null},function(n,a){return a?new e(n):new t(n)}}()},addEventListener:{value:function(n,a,r){var o,s=t,u="on"+n;s[u]||(s[u]=function(t){return e(s,c(s,t),o,!1)}),o=s[u][m]||(s[u][m]=[]),i(o,a)<0&&o[r?"unshift":"push"](a)}},dispatchEvent:{value:function(e){var n=t["on"+e.type];return n?n.call(t,e)!==!1&&!e.defaultPrevented:!0}},removeEventListener:{value:function(e,n,a){var r="on"+e,o=(t[r]||Object)[m],s=o?i(o,n):-1;s>-1&&o.splice(s,1)}}}),function(t,e,n){for(n=0;n=s)return(0,u["default"])({points:n});for(var l=1;s-1>=l;l++)i.push((0,p.times)(a,(0,p.minus)(n[l],n[l-1])));for(var f=[(0,p.plus)(n[0],c(i[0],i[1]))],l=1;s-2>=l;l++)f.push((0,p.minus)(n[l],(0,p.average)([i[l],i[l-1]])));f.push((0,p.minus)(n[s-1],c(i[s-2],i[s-3])));var d=f[0],h=f[1],m=n[0],v=n[1],g=(e=(0,o["default"])()).moveto.apply(e,r(m)).curveto(d[0],d[1],h[0],h[1],v[0],v[1]);return{path:(0,p.range)(2,s).reduce(function(t,e){var a=f[e],r=n[e];return t.smoothcurveto(a[0],a[1],r[0],r[1])},g),centroid:(0,p.average)(n)}},e.exports=n["default"]},{199:199,200:200,201:201}],197:[function(t,e,n){"use strict";function a(t){return t&&t.__esModule?t:{"default":t}}Object.defineProperty(n,"__esModule",{value:!0});var r=function(){function t(t,e){var n=[],a=!0,r=!1,i=void 0;try{for(var o,s=t[Symbol.iterator]();!(a=(o=s.next()).done)&&(n.push(o.value),!e||n.length!==e);a=!0);}catch(u){r=!0,i=u}finally{try{!a&&s["return"]&&s["return"]()}finally{if(r)throw i}}return n}return function(e,n){if(Array.isArray(e))return e;if(Symbol.iterator in Object(e))return t(e,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),i=t(198),o=a(i),s=t(199),u=1e-5,p=function(t,e){var n=t.map(e),a=n.sort(function(t,e){var n=r(t,2),a=n[0],i=(n[1],r(e,2)),o=i[0];i[1];return a-o}),i=a.length,o=a[0][0],p=a[i-1][0],c=(0,s.minBy)(a,function(t){return t[1]}),l=(0,s.maxBy)(a,function(t){return t[1]});return o==p&&(p+=u),c==l&&(l+=u),{points:a,xmin:o,xmax:p,ymin:c,ymax:l}};n["default"]=function(t){var e=t.data,n=t.xaccessor,a=t.yaccessor,i=t.width,u=t.height,c=t.closed,l=t.min,f=t.max;n||(n=function(t){var e=r(t,2),n=e[0];e[1];return n}),a||(a=function(t){var e=r(t,2),n=(e[0],e[1]);return n});var d=function(t){return[n(t),a(t)]},h=e.map(function(t){return p(t,d)}),m=(0,s.minBy)(h,function(t){return t.xmin}),v=(0,s.maxBy)(h,function(t){return t.xmax}),g=null==l?(0,s.minBy)(h,function(t){return t.ymin}):l,b=null==f?(0,s.maxBy)(h,function(t){return t.ymax}):f;c&&(g=Math.min(g,0),b=Math.max(b,0));var y=c?0:g,_=(0,o["default"])([m,v],[0,i]),x=(0,o["default"])([g,b],[u,0]),w=function(t){var e=r(t,2),n=e[0],a=e[1];return[_(n),x(a)]};return{arranged:h,scale:w,xscale:_,yscale:x,base:y}},e.exports=n["default"]},{198:198,199:199}],198:[function(t,e,n){"use strict";Object.defineProperty(n,"__esModule",{value:!0});var a=function(){function t(t,e){var n=[],a=!0,r=!1,i=void 0;try{for(var o,s=t[Symbol.iterator]();!(a=(o=s.next()).done)&&(n.push(o.value),!e||n.length!==e);a=!0);}catch(u){r=!0,i=u}finally{try{!a&&s["return"]&&s["return"]()}finally{if(r)throw i}}return n}return function(e,n){if(Array.isArray(e))return e;if(Symbol.iterator in Object(e))return t(e,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),r=function i(t,e){var n=a(t,2),r=n[0],o=n[1],s=a(e,2),u=s[0],p=s[1],c=function(t){return u+(p-u)*(t-r)/(o-r)};return c.inverse=function(){return i([u,p],[r,o])},c};n["default"]=r,e.exports=n["default"]},{}],199:[function(t,e,n){"use strict";Object.defineProperty(n,"__esModule",{value:!0});var a=function(){function t(t,e){var n=[],a=!0,r=!1,i=void 0;try{for(var o,s=t[Symbol.iterator]();!(a=(o=s.next()).done)&&(n.push(o.value),!e||n.length!==e);a=!0);}catch(u){r=!0,i=u}finally{try{!a&&s["return"]&&s["return"]()}finally{if(r)throw i}}return n}return function(e,n){if(Array.isArray(e))return e;if(Symbol.iterator in Object(e))return t(e,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),r=function(t){return t.reduce(function(t,e){return t+e},0)},i=function(t){return t.reduce(function(t,e){return Math.min(t,e)})},o=function(t){return t.reduce(function(t,e){return Math.max(t,e)})},s=function(t,e){return t.reduce(function(t,n){return t+e(n)},0)},u=function(t,e){return t.reduce(function(t,n){return Math.min(t,e(n))},1/0)},p=function(t,e){return t.reduce(function(t,n){return Math.max(t,e(n))},-(1/0))},c=function(t,e){var n=a(t,2),r=n[0],i=n[1],o=a(e,2),s=o[0],u=o[1];return[r+s,i+u]},l=function(t,e){var n=a(t,2),r=n[0],i=n[1],o=a(e,2),s=o[0],u=o[1];return[r-s,i-u]},f=function(t,e){var n=a(e,2),r=n[0],i=n[1];return[t*r,t*i]},d=function(t){var e=a(t,2),n=e[0],r=e[1];return Math.sqrt(n*n+r*r)},h=function(t){return t.reduce(c,[0,0])},m=function(t){return f(1/t.length,t.reduce(c))},v=function(t,e){return f(t,[Math.sin(e),-Math.cos(e)])},g=function(t,e){var n=t||{};for(var a in n){var r=n[a];e[a]=r(e.index,e.item,e.group)}return e},b=function(t,e,n){for(var a=[],r=t;e>r;r++)a.push(r);return n&&a.push(e),a},y=function(t,e){var n=[],a=!0,r=!1,i=void 0;try{for(var o,s=Object.keys(t)[Symbol.iterator]();!(a=(o=s.next()).done);a=!0){var u=o.value,p=t[u];n.push(e(u,p))}}catch(c){r=!0,i=c}finally{try{!a&&s["return"]&&s["return"]()}finally{if(r)throw i}}return n},_=function(t){return y(t,function(t,e){return[t,e]})},x=function(t){return t};n.sum=r,n.min=i,n.max=o,n.sumBy=s,n.minBy=u,n.maxBy=p,n.plus=c,n.minus=l,n.times=f,n.id=x,n.length=d,n.sumVectors=h,n.average=m,n.onCircle=v,n.enhance=g,n.range=b,n.mapObject=y,n.pairs=_,n["default"]={sum:r,min:i,max:o,sumBy:s,minBy:u,maxBy:p,plus:c,minus:l,times:f,id:x,length:d,sumVectors:h,average:m,onCircle:v,enhance:g,range:b,mapObject:y,pairs:_}},{}],200:[function(t,e,n){"use strict";Object.defineProperty(n,"__esModule",{value:!0});var a=function(){function t(t,e){var n=[],a=!0,r=!1,i=void 0;try{for(var o,s=t[Symbol.iterator]();!(a=(o=s.next()).done)&&(n.push(o.value),!e||n.length!==e);a=!0);}catch(u){r=!0,i=u}finally{try{!a&&s["return"]&&s["return"]()}finally{if(r)throw i}}return n}return function(e,n){if(Array.isArray(e))return e;if(Symbol.iterator in Object(e))return t(e,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),r=function i(t){var e=t||[],n=function(t,e){var n=t.slice(0,t.length);return n.push(e),n},r=function(t,e){var n=a(t,2),r=n[0],i=n[1],o=a(e,2),s=o[0],u=o[1];return r===s&&i===u},o=function(t,e){for(var n=t.length;"0"===t.charAt(n-1);)n-=1;return"."===t.charAt(n-1)&&(n-=1),t.substr(0,n)},s=function(t,e){var n=t.toFixed(e);return o(n)},u=function(t){var e=t.command,n=t.params,a=n.map(function(t){return s(t,6)});return e+" "+a.join(" ")},p=function(t,e){var n=t.command,r=t.params,i=a(e,2),o=i[0],s=i[1];switch(n){case"M":return[r[0],r[1]];case"L":return[r[0],r[1]];case"H":return[r[0],s];case"V":return[o,r[0]];case"Z":return null;case"C":return[r[4],r[5]];case"S":return[r[2],r[3]];case"Q":return[r[2],r[3]];case"T":return[r[0],r[1]];case"A":return[r[5],r[6]]}},c=function(t,e){return function(n){var a="object"==typeof n?t.map(function(t){return n[t]}):arguments;return e.apply(null,a)}},l=function(t){return i(n(e,t))};return{moveto:c(["x","y"],function(t,e){return l({command:"M",params:[t,e]})}),lineto:c(["x","y"],function(t,e){return l({command:"L",params:[t,e]})}),hlineto:c(["x"],function(t){return l({command:"H",params:[t]})}),vlineto:c(["y"],function(t){return l({command:"V",params:[t]})}),closepath:function(){return l({command:"Z",params:[]})},curveto:c(["x1","y1","x2","y2","x","y"],function(t,e,n,a,r,i){return l({command:"C",params:[t,e,n,a,r,i]})}),smoothcurveto:c(["x2","y2","x","y"],function(t,e,n,a){return l({command:"S",params:[t,e,n,a]})}),qcurveto:c(["x1","y1","x","y"],function(t,e,n,a){return l({command:"Q",params:[t,e,n,a]})}),smoothqcurveto:c(["x","y"],function(t,e){return l({command:"T",params:[t,e]})}),arc:c(["rx","ry","xrot","largeArcFlag","sweepFlag","x","y"],function(t,e,n,a,r,i,o){return l({command:"A",params:[t,e,n,a,r,i,o]})}),print:function(){return e.map(u).join(" ")},points:function(){var t=[],n=[0,0],a=!0,r=!1,i=void 0;try{for(var o,s=e[Symbol.iterator]();!(a=(o=s.next()).done);a=!0){var u=o.value,c=p(u,n);n=c,c&&t.push(c)}}catch(l){r=!0,i=l}finally{try{!a&&s["return"]&&s["return"]()}finally{if(r)throw i}}return t},instructions:function(){return e.slice(0,e.length)},connect:function(t){var e=this.points(),n=e[e.length-1],a=t.points()[0],o=t.instructions().slice(1);return r(n,a)||o.unshift({command:"L",params:a}),i(this.instructions().concat(o))}}};n["default"]=function(){return r()},e.exports=n["default"]},{}],201:[function(t,e,n){"use strict";function a(t){return t&&t.__esModule?t:{"default":t}}function r(t){if(Array.isArray(t)){for(var e=0,n=Array(t.length);e1?e-1:0),a=1;e>a;a++)n[a-1]=arguments[a];for(var r,i;i=n.shift();)for(r in i)Ro.call(i,r)&&(t[r]=i[r]);return t}function r(t){for(var e=arguments.length,n=Array(e>1?e-1:0),a=1;e>a;a++)n[a-1]=arguments[a];return n.forEach(function(e){for(var n in e)!e.hasOwnProperty(n)||n in t||(t[n]=e[n])}),t}function i(t){return"[object Array]"===jo.call(t)}function o(t){return Lo.test(jo.call(t))}function s(t,e){return null===t&&null===e?!0:"object"==typeof t||"object"==typeof e?!1:t===e}function u(t){return!isNaN(parseFloat(t))&&isFinite(t)}function p(t){return t&&"[object Object]"===jo.call(t)}function c(t,e){return t.replace(/%s/g,function(){return e.shift()})}function l(t){for(var e=arguments.length,n=Array(e>1?e-1:0),a=1;e>a;a++)n[a-1]=arguments[a];throw t=c(t,n),Error(t)}function f(){Rv.DEBUG&&Oo.apply(null,arguments)}function d(t){for(var e=arguments.length,n=Array(e>1?e-1:0),a=1;e>a;a++)n[a-1]=arguments[a];t=c(t,n),To(t,n)}function h(t){for(var e=arguments.length,n=Array(e>1?e-1:0),a=1;e>a;a++)n[a-1]=arguments[a];t=c(t,n),No[t]||(No[t]=!0,To(t,n))}function m(){Rv.DEBUG&&d.apply(null,arguments)}function v(){Rv.DEBUG&&h.apply(null,arguments)}function g(t,e,n){var a=b(t,e,n);return a?a[t][n]:null}function b(t,e,n){for(;e;){if(n in e[t])return e;if(e.isolated)return null;e=e.parent}}function y(t){return function(){return t}}function _(t){var e,n,a,r,i,o;for(e=t.split("."),(n=zo[e.length])||(n=x(e.length)),i=[],a=function(t,n){return t?"*":e[n]},r=n.length;r--;)o=n[r].map(a).join("."),i.hasOwnProperty(o)||(i.push(o),i[o]=!0);return i}function x(t){var e,n,a,r,i,o,s,u,p="";if(!zo[t]){for(a=[];p.length=i;i+=1){for(n=i.toString(2);n.lengtho;o++)u.push(r(n[o]));a[i]=u}zo[t]=a}return zo[t]}function w(t,e,n,a){var r=t[e];if(!r||!r.equalsOrStartsWith(a)&&r.equalsOrStartsWith(n))return t[e]=r?r.replace(n,a):a,!0}function k(t){var e=t.slice(2);return"i"===t[1]&&u(e)?+e:e}function P(t){return null==t?t:(Qo.hasOwnProperty(t)||(Qo[t]=new Ko(t)),Qo[t])}function C(t,e){function n(e,n){var a,r,o;return n.isRoot?o=[].concat(Object.keys(t.viewmodel.data),Object.keys(t.viewmodel.mappings),Object.keys(t.viewmodel.computations)):(a=t.viewmodel.wrapped[n.str],r=a?a.get():t.viewmodel.get(n),o=r?Object.keys(r):null),o&&o.forEach(function(t){"_ractive"===t&&i(r)||e.push(n.join(t))}),e}var a,r,o;for(a=e.str.split("."),o=[Yo];r=a.shift();)"*"===r?o=o.reduce(n,[]):o[0]===Yo?o[0]=P(r):o=o.map(E(r));return o}function E(t){return function(e){return e.join(t)}}function S(t){return t?t.replace(Wo,".$1"):""}function A(t,e,n){if("string"!=typeof e||!u(n))throw Error("Bad arguments");var a=void 0,r=void 0;if(/\*/.test(e))return r={},C(t,P(S(e))).forEach(function(e){var a=t.viewmodel.get(e);if(!u(a))throw Error(Jo);r[e.str]=a+n}),t.set(r);if(a=t.get(e),!u(a))throw Error(Jo);return t.set(e,+a+n)}function O(t,e){return Xo(this,t,void 0===e?1:+e)}function T(t){this.event=t,
-this.method="on"+t,this.deprecate=as[t]}function M(t,e){var n=t.indexOf(e);-1===n&&t.push(e)}function R(t,e){for(var n=0,a=t.length;a>n;n++)if(t[n]==e)return!0;return!1}function j(t,e){var n;if(!i(t)||!i(e))return!1;if(t.length!==e.length)return!1;for(n=t.length;n--;)if(t[n]!==e[n])return!1;return!0}function L(t){return"string"==typeof t?[t]:void 0===t?[]:t}function N(t){return t[t.length-1]}function D(t,e){var n=t.indexOf(e);-1!==n&&t.splice(n,1)}function F(t){for(var e=[],n=t.length;n--;)e[n]=t[n];return e}function I(t){setTimeout(t,0)}function B(t,e){return function(){for(var n;n=t.shift();)n(e)}}function q(t,e,n,a){var r;if(e===t)throw new TypeError("A promise's fulfillment handler cannot return the same promise");if(e instanceof rs)e.then(n,a);else if(!e||"object"!=typeof e&&"function"!=typeof e)n(e);else{try{r=e.then}catch(i){return void a(i)}if("function"==typeof r){var o,s,u;s=function(e){o||(o=!0,q(t,e,n,a))},u=function(t){o||(o=!0,a(t))};try{r.call(e,s,u)}catch(i){if(!o)return a(i),void(o=!0)}}else n(e)}}function G(t,e,n){var a;return e=S(e),"~/"===e.substr(0,2)?(a=P(e.substring(2)),z(t,a.firstKey,n)):"."===e[0]?(a=U(cs(n),e),a&&z(t,a.firstKey,n)):a=V(t,P(e),n),a}function U(t,e){var n;if(void 0!=t&&"string"!=typeof t&&(t=t.str),"."===e)return P(t);if(n=t?t.split("."):[],"../"===e.substr(0,3)){for(;"../"===e.substr(0,3);){if(!n.length)throw Error('Could not resolve reference - too many "../" prefixes');n.pop(),e=e.substring(3)}return n.push(e),P(n.join("."))}return P(t?t+e.replace(/^\.\//,"."):e.replace(/^\.\/?/,""))}function V(t,e,n,a){var r,i,o,s,u;if(e.isRoot)return e;for(i=e.firstKey;n;)if(r=n.context,n=n.parent,r&&(s=!0,o=t.viewmodel.get(r),o&&("object"==typeof o||"function"==typeof o)&&i in o))return r.join(e.str);return W(t.viewmodel,i)?e:t.parent&&!t.isolated&&(s=!0,n=t.component.parentFragment,i=P(i),u=V(t.parent,i,n,!0))?(t.viewmodel.map(i,{origin:t.parent.viewmodel,keypath:u}),e):a||s?void 0:(t.viewmodel.set(e,void 0),e)}function z(t,e){var n;!t.parent||t.isolated||W(t.viewmodel,e)||(e=P(e),(n=V(t.parent,e,t.component.parentFragment,!0))&&t.viewmodel.map(e,{origin:t.parent.viewmodel,keypath:n}))}function W(t,e){return""===e||e in t.data||e in t.computations||e in t.mappings}function H(t){t.teardown()}function Q(t){t.unbind()}function K(t){t.unrender()}function $(t){t.cancel()}function Y(t){t.detach()}function X(t){t.detachNodes()}function J(t){!t.ready||t.outros.length||t.outroChildren||(t.outrosComplete||(t.parent?t.parent.decrementOutros(t):t.detachNodes(),t.outrosComplete=!0),t.intros.length||t.totalChildren||("function"==typeof t.callback&&t.callback(),t.parent&&t.parent.decrementTotal()))}function Z(){for(var t,e,n;ds.ractives.length;)e=ds.ractives.pop(),n=e.viewmodel.applyChanges(),n&&gs.fire(e,n);for(tt(),t=0;t=0;i--)r=t._subs[e[i]],r&&(s=gt(t,r,n,a)&&s);if(Vs.dequeue(t),t.parent&&s){if(o&&t.component){var u=t.component.name+"."+e[e.length-1];e=P(u).wildcardMatches(),n&&(n.component=t)}vt(t.parent,e,n,a)}}function gt(t,e,n,a){var r=null,i=!1;n&&!n._noArg&&(a=[n].concat(a)),e=e.slice();for(var o=0,s=e.length;s>o;o+=1)e[o].apply(t,a)===!1&&(i=!0);return n&&!n._noArg&&i&&(r=n.original)&&(r.preventDefault&&r.preventDefault(),r.stopPropagation&&r.stopPropagation()),!i}function bt(t){var e={args:Array.prototype.slice.call(arguments,1)};zs(this,t,e)}function yt(t){var e;return t=P(S(t)),e=this.viewmodel.get(t,Qs),void 0===e&&this.parent&&!this.isolated&&ls(this,t.str,this.component.parentFragment)&&(e=this.viewmodel.get(t)),e}function _t(e,n){if(!this.fragment.rendered)throw Error("The API has changed - you must call `ractive.render(target[, anchor])` to render your Ractive instance. Once rendered you can use `ractive.insert()`.");if(e=t(e),n=t(n)||null,!e)throw Error("You must specify a valid target to insert into");e.insertBefore(this.detach(),n),this.el=e,(e.__ractive_instances__||(e.__ractive_instances__=[])).push(this),this.detached=null,xt(this)}function xt(t){$s.fire(t),t.findAllComponents("*").forEach(function(t){xt(t.instance)})}function wt(t,e,n){var a,r;return t=P(S(t)),a=this.viewmodel.get(t),i(a)&&i(e)?(r=bs.start(this,!0),this.viewmodel.merge(t,a,e,n),bs.end(),r):this.set(t,e,n&&n.complete)}function kt(t,e){var n,a;return n=C(t,e),a={},n.forEach(function(e){a[e.str]=t.get(e.str)}),a}function Pt(t,e,n,a){var r,i,o;e=P(S(e)),a=a||cu,e.isPattern?(r=new uu(t,e,n,a),t.viewmodel.patternObservers.push(r),i=!0):r=new Zs(t,e,n,a),r.init(a.init),t.viewmodel.register(e,r,i?"patternObservers":"observers"),r.ready=!0;var s={cancel:function(){var n;o||(i?(n=t.viewmodel.patternObservers.indexOf(r),t.viewmodel.patternObservers.splice(n,1),t.viewmodel.unregister(e,r,"patternObservers")):t.viewmodel.unregister(e,r,"observers"),o=!0)}};return t._observers.push(s),s}function Ct(t,e,n){var a,r,i,o;if(p(t)){n=e,r=t,a=[];for(t in r)r.hasOwnProperty(t)&&(e=r[t],a.push(this.observe(t,e,n)));return{cancel:function(){for(;a.length;)a.pop().cancel()}}}if("function"==typeof t)return n=e,e=t,t="",pu(this,t,e,n);if(i=t.split(" "),1===i.length)return pu(this,t,e,n);for(a=[],o=i.length;o--;)t=i[o],t&&a.push(pu(this,t,e,n));return{cancel:function(){for(;a.length;)a.pop().cancel()}}}function Et(t,e,n){var a=this.observe(t,function(){e.apply(this,arguments),a.cancel()},{init:!1,defer:n&&n.defer});return a}function St(t,e){var n,a=this;if(t)n=t.split(" ").map(du).filter(hu),n.forEach(function(t){var n,r;(n=a._subs[t])&&(e?(r=n.indexOf(e),-1!==r&&n.splice(r,1)):a._subs[t]=[])});else for(t in this._subs)delete this._subs[t];return this}function At(t,e){var n,a,r,i=this;if("object"==typeof t){n=[];for(a in t)t.hasOwnProperty(a)&&n.push(this.on(a,t[a]));return{cancel:function(){for(var t;t=n.pop();)t.cancel()}}}return r=t.split(" ").map(du).filter(hu),r.forEach(function(t){(i._subs[t]||(i._subs[t]=[])).push(e)}),{cancel:function(){return i.off(t,e)}}}function Ot(t,e){var n=this.on(t,function(){e.apply(this,arguments),n.cancel()});return n}function Tt(t,e,n){var a,r,i,o,s,u,p=[];if(a=Mt(t,e,n),!a)return null;for(r=t.length,s=a.length-2-a[1],i=Math.min(r,a[0]),o=i+a[1],u=0;i>u;u+=1)p.push(u);for(;o>u;u+=1)p.push(-1);for(;r>u;u+=1)p.push(u+s);return 0!==s?p.touchedFrom=a[0]:p.touchedFrom=t.length,p}function Mt(t,e,n){switch(e){case"splice":for(void 0!==n[0]&&n[0]<0&&(n[0]=t.length+Math.max(n[0],-t.length));n.length<2;)n.push(0);return n[1]=Math.min(n[1],t.length-n[0]),n;case"sort":case"reverse":return null;case"pop":return t.length?[t.length-1,1]:[0,0];case"push":return[t.length,0].concat(n);case"shift":return[0,t.length?1:0];case"unshift":return[0,0].concat(n)}}function Rt(e,n){var a,r,i,o=this;if(i=this.transitionsEnabled,this.noIntro&&(this.transitionsEnabled=!1),a=bs.start(this,!0),bs.scheduleTask(function(){return Mu.fire(o)},!0),this.fragment.rendered)throw Error("You cannot call ractive.render() on an already rendered instance! Call ractive.unrender() first");if(e=t(e)||this.el,n=t(n)||this.anchor,this.el=e,this.anchor=n,!this.append&&e){var s=e.__ractive_instances__;s&&s.length&&jt(s),e.innerHTML=""}return this.cssId&&Ou.apply(),e&&((r=e.__ractive_instances__)?r.push(this):e.__ractive_instances__=[this],n?e.insertBefore(this.fragment.render(),n):e.appendChild(this.fragment.render())),bs.end(),this.transitionsEnabled=i,a.then(function(){return Ru.fire(o)})}function jt(t){t.splice(0,t.length).forEach(H)}function Lt(t,e){for(var n=t.slice(),a=e.length;a--;)~n.indexOf(e[a])||n.push(e[a]);return n}function Nt(t,e){var n,a,r;return a='[data-ractive-css~="{'+e+'}"]',r=function(t){var e,n,r,i,o,s,u,p=[];for(e=[];n=Iu.exec(t);)e.push({str:n[0],base:n[1],modifiers:n[2]});for(i=e.map(Ft),u=e.length;u--;)s=i.slice(),r=e[u],s[u]=r.base+a+r.modifiers||"",o=i.slice(),o[u]=a+" "+o[u],p.push(s.join(" "),o.join(" "));return p.join(", ")},n=qu.test(t)?t.replace(qu,a):t.replace(Fu,"").replace(Du,function(t,e){var n,a;return Bu.test(e)?t:(n=e.split(",").map(Dt),a=n.map(r).join(", ")+" ",t.replace(e,a))})}function Dt(t){return t.trim?t.trim():t.replace(/^\s+/,"").replace(/\s+$/,"")}function Ft(t){return t.str}function It(t){t&&t.constructor!==Object&&("function"==typeof t||("object"!=typeof t?l("data option must be an object or a function, `"+t+"` is not valid"):m("If supplied, options.data should be a plain JavaScript object - using a non-POJO as the root object may work, but is discouraged")))}function Bt(t,e){It(e);var n="function"==typeof t,a="function"==typeof e;return e||n||(e={}),n||a?function(){var r=a?qt(e,this):e,i=n?qt(t,this):t;return Gt(r,i)}:Gt(e,t)}function qt(t,e){var n=t.call(e);if(n)return"object"!=typeof n&&l("Data function must return an object"),n.constructor!==Object&&v("Data function returned something other than a plain JavaScript object. This might work, but is strongly discouraged"),n}function Gt(t,e){if(t&&e){for(var n in e)n in t||(t[n]=e[n]);return t}return t||e}function Ut(t){var e=Po(Ku);return e.parse=function(e,n){return Vt(e,n||t)},e}function Vt(t,e){if(!Hu)throw Error("Missing Ractive.parse - cannot parse template. Either preparse or use the version that includes the parser");return Hu(t,e||this.options)}function zt(t,e){var n;if(!Ji){if(e&&e.noThrow)return;throw Error("Cannot retrieve template #"+t+" as Ractive is not running in a browser.")}if(Wt(t)&&(t=t.substring(1)),!(n=document.getElementById(t))){if(e&&e.noThrow)return;throw Error("Could not find template element with id #"+t)}if("SCRIPT"!==n.tagName.toUpperCase()){if(e&&e.noThrow)return;throw Error("Template element with id #"+t+", must be a i;)c(r,a=t[i++])&&(~C(o,a)||o.push(a));return o}},B=function(){};i(i.S,"Object",{getPrototypeOf:r.getProto=r.getProto||function(t){return t=g(t),c(t,k)?t[k]:"function"==typeof t.constructor&&t instanceof t.constructor?t.constructor.prototype:t instanceof Object?E:null},getOwnPropertyNames:r.getNames=r.getNames||I(N,N.length,!0),create:r.create=r.create||function(t,e){var n;return null!==t?(B.prototype=h(t),n=new B,B.prototype=null,n[k]=t):n=F(),void 0===e?n:R(n,e)},keys:r.getKeys=r.getKeys||I(L,D,!1)});var q=function(t,e,n){if(!(e in j)){for(var a=[],r=0;e>r;r++)a[r]="a["+r+"]";j[e]=Function("F,a","return new F("+a.join(",")+")")}return j[e](t,n)};i(i.P,"Function",{bind:function(t){var e=m(this),n=A.call(arguments,1),a=function(){var r=n.concat(A.call(arguments));return this instanceof a?q(e,r.length,r):f(e,r,t)};return v(e.prototype)&&(a.prototype=e.prototype),a}}),i(i.P+i.F*d(function(){p&&A.call(p)}),"Array",{slice:function(t,e){var n=x(this.length),a=l(this);if(e=void 0===e?n:e,"Array"==a)return A.call(this,t,e);for(var r=_(t,n),i=_(e,n),o=x(i-r),s=Array(o),p=0;o>p;p++)s[p]="String"==a?this.charAt(r+p):this[r+p];return s}}),i(i.P+i.F*(w!=Object),"Array",{join:function(t){return O.call(w(this),void 0===t?",":t)}}),i(i.S,"Array",{isArray:t(37)});var G=function(t){return function(e,n){m(e);var a=w(this),r=x(a.length),i=t?r-1:0,o=t?-1:1;if(arguments.length<2)for(;;){if(i in a){n=a[i],i+=o;break}if(i+=o,t?0>i:i>=r)throw TypeError("Reduce of empty array with no initial value")}for(;t?i>=0:r>i;i+=o)i in a&&(n=e(n,a[i],i,this));return n}},U=function(t){return function(e){return t(this,e,arguments[1])}};i(i.P,"Array",{forEach:r.each=r.each||U(P(0)),map:U(P(1)),filter:U(P(2)),some:U(P(3)),every:U(P(4)),reduce:G(!1),reduceRight:G(!0),indexOf:U(C),lastIndexOf:function(t,e){var n=b(this),a=x(n.length),r=a-1;for(arguments.length>1&&(r=Math.min(r,y(e))),0>r&&(r=x(a+r));r>=0;r--)if(r in n&&n[r]===t)return r;return-1}}),i(i.S,"Date",{now:function(){return+new Date}});var V=function(t){return t>9?t:"0"+t};i(i.P+i.F*(d(function(){return"0385-07-25T07:06:39.999Z"!=new Date(-5e13-1).toISOString()})||!d(function(){new Date(NaN).toISOString()})),"Date",{toISOString:function(){if(!isFinite(this))throw RangeError("Invalid time value");var t=this,e=t.getUTCFullYear(),n=t.getUTCMilliseconds(),a=0>e?"-":e>9999?"+":"";return a+("00000"+Math.abs(e)).slice(a?-6:-4)+"-"+V(t.getUTCMonth()+1)+"-"+V(t.getUTCDate())+"T"+V(t.getUTCHours())+":"+V(t.getUTCMinutes())+":"+V(t.getUTCSeconds())+"."+(n>99?n:"0"+V(n))+"Z";
+}})},{12:12,20:20,21:21,23:23,25:25,3:3,31:31,33:33,34:34,35:35,37:37,39:39,47:47,5:5,60:60,77:77,78:78,79:79,8:8,80:80,81:81,83:83,9:9}],87:[function(t,e,n){var a=t(23);a(a.P,"Array",{copyWithin:t(6)}),t(4)("copyWithin")},{23:23,4:4,6:6}],88:[function(t,e,n){var a=t(23);a(a.P,"Array",{fill:t(7)}),t(4)("fill")},{23:23,4:4,7:7}],89:[function(t,e,n){"use strict";var a=t(23),r=t(9)(6),i="findIndex",o=!0;i in[]&&Array(1)[i](function(){o=!1}),a(a.P+a.F*o,"Array",{findIndex:function(t){return r(this,t,arguments.length>1?arguments[1]:void 0)}}),t(4)(i)},{23:23,4:4,9:9}],90:[function(t,e,n){"use strict";var a=t(23),r=t(9)(5),i="find",o=!0;i in[]&&Array(1)[i](function(){o=!1}),a(a.P+a.F*o,"Array",{find:function(t){return r(this,t,arguments.length>1?arguments[1]:void 0)}}),t(4)(i)},{23:23,4:4,9:9}],91:[function(t,e,n){"use strict";var a=t(18),r=t(23),i=t(81),o=t(41),s=t(36),p=t(80),u=t(85);r(r.S+r.F*!t(44)(function(t){Array.from(t)}),"Array",{from:function(t){var e,n,r,c,l=i(t),f="function"==typeof this?this:Array,d=arguments,h=d.length,m=h>1?d[1]:void 0,v=void 0!==m,g=0,b=u(l);if(v&&(m=a(m,h>2?d[2]:void 0,2)),void 0==b||f==Array&&s(b))for(e=p(l.length),n=new f(e);e>g;g++)n[g]=v?m(l[g],g):l[g];else for(c=b.call(l),n=new f;!(r=c.next()).done;g++)n[g]=v?o(c,m,[r.value,g],!0):r.value;return n.length=g,n}})},{18:18,23:23,36:36,41:41,44:44,80:80,81:81,85:85}],92:[function(t,e,n){"use strict";var a=t(4),r=t(45),i=t(46),o=t(79);e.exports=t(43)(Array,"Array",function(t,e){this._t=o(t),this._i=0,this._k=e},function(){var t=this._t,e=this._k,n=this._i++;return!t||n>=t.length?(this._t=void 0,r(1)):"keys"==e?r(0,n):"values"==e?r(0,t[n]):r(0,[n,t[n]])},"values"),i.Arguments=i.Array,a("keys"),a("values"),a("entries")},{4:4,43:43,45:45,46:46,79:79}],93:[function(t,e,n){"use strict";var a=t(23);a(a.S+a.F*t(25)(function(){function t(){}return!(Array.of.call(t)instanceof t)}),"Array",{of:function(){for(var t=0,e=arguments,n=e.length,a=new("function"==typeof this?this:Array)(n);n>t;)a[t]=e[t++];return a.length=n,a}})},{23:23,25:25}],94:[function(t,e,n){t(66)("Array")},{66:66}],95:[function(t,e,n){"use strict";var a=t(47),r=t(39),i=t(84)("hasInstance"),o=Function.prototype;i in o||a.setDesc(o,i,{value:function(t){if("function"!=typeof this||!r(t))return!1;if(!r(this.prototype))return t instanceof this;for(;t=a.getProto(t);)if(this.prototype===t)return!0;return!1}})},{39:39,47:47,84:84}],96:[function(t,e,n){var a=t(47).setDesc,r=t(60),i=t(31),o=Function.prototype,s=/^\s*function ([^ (]*)/,p="name";p in o||t(20)&&a(o,p,{configurable:!0,get:function(){var t=(""+this).match(s),e=t?t[1]:"";return i(this,p)||a(this,p,r(5,e)),e}})},{20:20,31:31,47:47,60:60}],97:[function(t,e,n){"use strict";var a=t(13);t(16)("Map",function(t){return function(){return t(this,arguments.length>0?arguments[0]:void 0)}},{get:function(t){var e=a.getEntry(this,t);return e&&e.v},set:function(t,e){return a.def(this,0===t?0:t,e)}},a,!0)},{13:13,16:16}],98:[function(t,e,n){var a=t(23),r=t(51),i=Math.sqrt,o=Math.acosh;a(a.S+a.F*!(o&&710==Math.floor(o(Number.MAX_VALUE))),"Math",{acosh:function(t){return(t=+t)<1?NaN:t>94906265.62425156?Math.log(t)+Math.LN2:r(t-1+i(t-1)*i(t+1))}})},{23:23,51:51}],99:[function(t,e,n){function a(t){return isFinite(t=+t)&&0!=t?0>t?-a(-t):Math.log(t+Math.sqrt(t*t+1)):t}var r=t(23);r(r.S,"Math",{asinh:a})},{23:23}],100:[function(t,e,n){var a=t(23);a(a.S,"Math",{atanh:function(t){return 0==(t=+t)?t:Math.log((1+t)/(1-t))/2}})},{23:23}],101:[function(t,e,n){var a=t(23),r=t(52);a(a.S,"Math",{cbrt:function(t){return r(t=+t)*Math.pow(Math.abs(t),1/3)}})},{23:23,52:52}],102:[function(t,e,n){var a=t(23);a(a.S,"Math",{clz32:function(t){return(t>>>=0)?31-Math.floor(Math.log(t+.5)*Math.LOG2E):32}})},{23:23}],103:[function(t,e,n){var a=t(23),r=Math.exp;a(a.S,"Math",{cosh:function(t){return(r(t=+t)+r(-t))/2}})},{23:23}],104:[function(t,e,n){var a=t(23);a(a.S,"Math",{expm1:t(50)})},{23:23,50:50}],105:[function(t,e,n){var a=t(23),r=t(52),i=Math.pow,o=i(2,-52),s=i(2,-23),p=i(2,127)*(2-s),u=i(2,-126),c=function(t){return t+1/o-1/o};a(a.S,"Math",{fround:function(t){var e,n,a=Math.abs(t),i=r(t);return u>a?i*c(a/u/s)*u*s:(e=(1+s/o)*a,n=e-(e-a),n>p||n!=n?i*(1/0):i*n)}})},{23:23,52:52}],106:[function(t,e,n){var a=t(23),r=Math.abs;a(a.S,"Math",{hypot:function(t,e){for(var n,a,i=0,o=0,s=arguments,p=s.length,u=0;p>o;)n=r(s[o++]),n>u?(a=u/n,i=i*a*a+1,u=n):n>0?(a=n/u,i+=a*a):i+=n;return u===1/0?1/0:u*Math.sqrt(i)}})},{23:23}],107:[function(t,e,n){var a=t(23),r=Math.imul;a(a.S+a.F*t(25)(function(){return-5!=r(4294967295,5)||2!=r.length}),"Math",{imul:function(t,e){var n=65535,a=+t,r=+e,i=n&a,o=n&r;return 0|i*o+((n&a>>>16)*o+i*(n&r>>>16)<<16>>>0)}})},{23:23,25:25}],108:[function(t,e,n){var a=t(23);a(a.S,"Math",{log10:function(t){return Math.log(t)/Math.LN10}})},{23:23}],109:[function(t,e,n){var a=t(23);a(a.S,"Math",{log1p:t(51)})},{23:23,51:51}],110:[function(t,e,n){var a=t(23);a(a.S,"Math",{log2:function(t){return Math.log(t)/Math.LN2}})},{23:23}],111:[function(t,e,n){var a=t(23);a(a.S,"Math",{sign:t(52)})},{23:23,52:52}],112:[function(t,e,n){var a=t(23),r=t(50),i=Math.exp;a(a.S+a.F*t(25)(function(){return-2e-17!=!Math.sinh(-2e-17)}),"Math",{sinh:function(t){return Math.abs(t=+t)<1?(r(t)-r(-t))/2:(i(t-1)-i(-t-1))*(Math.E/2)}})},{23:23,25:25,50:50}],113:[function(t,e,n){var a=t(23),r=t(50),i=Math.exp;a(a.S,"Math",{tanh:function(t){var e=r(t=+t),n=r(-t);return e==1/0?1:n==1/0?-1:(e-n)/(i(t)+i(-t))}})},{23:23,50:50}],114:[function(t,e,n){var a=t(23);a(a.S,"Math",{trunc:function(t){return(t>0?Math.floor:Math.ceil)(t)}})},{23:23}],115:[function(t,e,n){"use strict";var a=t(47),r=t(30),i=t(31),o=t(12),s=t(82),p=t(25),u=t(75).trim,c="Number",l=r[c],f=l,d=l.prototype,h=o(a.create(d))==c,m="trim"in String.prototype,v=function(t){var e=s(t,!1);if("string"==typeof e&&e.length>2){e=m?e.trim():u(e,3);var n,a,r,i=e.charCodeAt(0);if(43===i||45===i){if(n=e.charCodeAt(2),88===n||120===n)return NaN}else if(48===i){switch(e.charCodeAt(1)){case 66:case 98:a=2,r=49;break;case 79:case 111:a=8,r=55;break;default:return+e}for(var o,p=e.slice(2),c=0,l=p.length;l>c;c++)if(o=p.charCodeAt(c),48>o||o>r)return NaN;return parseInt(p,a)}}return+e};l(" 0o1")&&l("0b1")&&!l("+0x1")||(l=function(t){var e=arguments.length<1?0:t,n=this;return n instanceof l&&(h?p(function(){d.valueOf.call(n)}):o(n)!=c)?new f(v(e)):v(e)},a.each.call(t(20)?a.getNames(f):"MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,EPSILON,isFinite,isInteger,isNaN,isSafeInteger,MAX_SAFE_INTEGER,MIN_SAFE_INTEGER,parseFloat,parseInt,isInteger".split(","),function(t){i(f,t)&&!i(l,t)&&a.setDesc(l,t,a.getDesc(f,t))}),l.prototype=d,d.constructor=l,t(62)(r,c,l))},{12:12,20:20,25:25,30:30,31:31,47:47,62:62,75:75,82:82}],116:[function(t,e,n){var a=t(23);a(a.S,"Number",{EPSILON:Math.pow(2,-52)})},{23:23}],117:[function(t,e,n){var a=t(23),r=t(30).isFinite;a(a.S,"Number",{isFinite:function(t){return"number"==typeof t&&r(t)}})},{23:23,30:30}],118:[function(t,e,n){var a=t(23);a(a.S,"Number",{isInteger:t(38)})},{23:23,38:38}],119:[function(t,e,n){var a=t(23);a(a.S,"Number",{isNaN:function(t){return t!=t}})},{23:23}],120:[function(t,e,n){var a=t(23),r=t(38),i=Math.abs;a(a.S,"Number",{isSafeInteger:function(t){return r(t)&&i(t)<=9007199254740991}})},{23:23,38:38}],121:[function(t,e,n){var a=t(23);a(a.S,"Number",{MAX_SAFE_INTEGER:9007199254740991})},{23:23}],122:[function(t,e,n){var a=t(23);a(a.S,"Number",{MIN_SAFE_INTEGER:-9007199254740991})},{23:23}],123:[function(t,e,n){var a=t(23);a(a.S,"Number",{parseFloat:parseFloat})},{23:23}],124:[function(t,e,n){var a=t(23);a(a.S,"Number",{parseInt:parseInt})},{23:23}],125:[function(t,e,n){var a=t(23);a(a.S+a.F,"Object",{assign:t(54)})},{23:23,54:54}],126:[function(t,e,n){var a=t(39);t(55)("freeze",function(t){return function(e){return t&&a(e)?t(e):e}})},{39:39,55:55}],127:[function(t,e,n){var a=t(79);t(55)("getOwnPropertyDescriptor",function(t){return function(e,n){return t(a(e),n)}})},{55:55,79:79}],128:[function(t,e,n){t(55)("getOwnPropertyNames",function(){return t(29).get})},{29:29,55:55}],129:[function(t,e,n){var a=t(81);t(55)("getPrototypeOf",function(t){return function(e){return t(a(e))}})},{55:55,81:81}],130:[function(t,e,n){var a=t(39);t(55)("isExtensible",function(t){return function(e){return a(e)?t?t(e):!0:!1}})},{39:39,55:55}],131:[function(t,e,n){var a=t(39);t(55)("isFrozen",function(t){return function(e){return a(e)?t?t(e):!1:!0}})},{39:39,55:55}],132:[function(t,e,n){var a=t(39);t(55)("isSealed",function(t){return function(e){return a(e)?t?t(e):!1:!0}})},{39:39,55:55}],133:[function(t,e,n){var a=t(23);a(a.S,"Object",{is:t(64)})},{23:23,64:64}],134:[function(t,e,n){var a=t(81);t(55)("keys",function(t){return function(e){return t(a(e))}})},{55:55,81:81}],135:[function(t,e,n){var a=t(39);t(55)("preventExtensions",function(t){return function(e){return t&&a(e)?t(e):e}})},{39:39,55:55}],136:[function(t,e,n){var a=t(39);t(55)("seal",function(t){return function(e){return t&&a(e)?t(e):e}})},{39:39,55:55}],137:[function(t,e,n){var a=t(23);a(a.S,"Object",{setPrototypeOf:t(65).set})},{23:23,65:65}],138:[function(t,e,n){"use strict";var a=t(11),r={};r[t(84)("toStringTag")]="z",r+""!="[object z]"&&t(62)(Object.prototype,"toString",function(){return"[object "+a(this)+"]"},!0)},{11:11,62:62,84:84}],139:[function(t,e,n){"use strict";var a,r=t(47),i=t(49),o=t(30),s=t(18),p=t(11),u=t(23),c=t(39),l=t(5),f=t(3),d=t(70),h=t(28),m=t(65).set,v=t(64),g=t(84)("species"),b=t(69),y=t(53),_="Promise",x=o.process,w="process"==p(x),k=o[_],P=function(t){var e=new k(function(){});return t&&(e.constructor=Object),k.resolve(e)===e},C=function(){function e(t){var n=new k(t);return m(n,e.prototype),n}var n=!1;try{if(n=k&&k.resolve&&P(),m(e,k),e.prototype=r.create(k.prototype,{constructor:{value:e}}),e.resolve(5).then(function(){})instanceof e||(n=!1),n&&t(20)){var a=!1;k.resolve(r.setDesc({},"then",{get:function(){a=!0}})),n=a}}catch(i){n=!1}return n}(),E=function(t,e){return i&&t===k&&e===a?!0:v(t,e)},S=function(t){var e=l(t)[g];return void 0!=e?e:t},A=function(t){var e;return c(t)&&"function"==typeof(e=t.then)?e:!1},O=function(t){var e,n;this.promise=new t(function(t,a){if(void 0!==e||void 0!==n)throw TypeError("Bad Promise constructor");e=t,n=a}),this.resolve=f(e),this.reject=f(n)},T=function(t){try{t()}catch(e){return{error:e}}},M=function(t,e){if(!t.n){t.n=!0;var n=t.c;y(function(){for(var a=t.v,r=1==t.s,i=0,s=function(e){var n,i,o=r?e.ok:e.fail,s=e.resolve,p=e.reject;try{o?(r||(t.h=!0),n=o===!0?a:o(a),n===e.promise?p(TypeError("Promise-chain cycle")):(i=A(n))?i.call(n,s,p):s(n)):p(a)}catch(u){p(u)}};n.length>i;)s(n[i++]);n.length=0,t.n=!1,e&&setTimeout(function(){var e,n,r=t.p;R(r)&&(w?x.emit("unhandledRejection",a,r):(e=o.onunhandledrejection)?e({promise:r,reason:a}):(n=o.console)&&n.error&&n.error("Unhandled promise rejection",a)),t.a=void 0},1)})}},R=function(t){var e,n=t._d,a=n.a||n.c,r=0;if(n.h)return!1;for(;a.length>r;)if(e=a[r++],e.fail||!R(e.promise))return!1;return!0},j=function(t){var e=this;e.d||(e.d=!0,e=e.r||e,e.v=t,e.s=2,e.a=e.c.slice(),M(e,!0))},L=function(t){var e,n=this;if(!n.d){n.d=!0,n=n.r||n;try{if(n.p===t)throw TypeError("Promise can't be resolved itself");(e=A(t))?y(function(){var a={r:n,d:!1};try{e.call(t,s(L,a,1),s(j,a,1))}catch(r){j.call(a,r)}}):(n.v=t,n.s=1,M(n,!1))}catch(a){j.call({r:n,d:!1},a)}}};C||(k=function(t){f(t);var e=this._d={p:d(this,k,_),c:[],a:void 0,s:0,d:!1,v:void 0,h:!1,n:!1};try{t(s(L,e,1),s(j,e,1))}catch(n){j.call(e,n)}},t(61)(k.prototype,{then:function(t,e){var n=new O(b(this,k)),a=n.promise,r=this._d;return n.ok="function"==typeof t?t:!0,n.fail="function"==typeof e&&e,r.c.push(n),r.a&&r.a.push(n),r.s&&M(r,!1),a},"catch":function(t){return this.then(void 0,t)}})),u(u.G+u.W+u.F*!C,{Promise:k}),t(67)(k,_),t(66)(_),a=t(17)[_],u(u.S+u.F*!C,_,{reject:function(t){var e=new O(this),n=e.reject;return n(t),e.promise}}),u(u.S+u.F*(!C||P(!0)),_,{resolve:function(t){if(t instanceof k&&E(t.constructor,this))return t;var e=new O(this),n=e.resolve;return n(t),e.promise}}),u(u.S+u.F*!(C&&t(44)(function(t){k.all(t)["catch"](function(){})})),_,{all:function(t){var e=S(this),n=new O(e),a=n.resolve,i=n.reject,o=[],s=T(function(){h(t,!1,o.push,o);var n=o.length,s=Array(n);n?r.each.call(o,function(t,r){var o=!1;e.resolve(t).then(function(t){o||(o=!0,s[r]=t,--n||a(s))},i)}):a(s)});return s&&i(s.error),n.promise},race:function(t){var e=S(this),n=new O(e),a=n.reject,r=T(function(){h(t,!1,function(t){e.resolve(t).then(n.resolve,a)})});return r&&a(r.error),n.promise}})},{11:11,17:17,18:18,20:20,23:23,28:28,3:3,30:30,39:39,44:44,47:47,49:49,5:5,53:53,61:61,64:64,65:65,66:66,67:67,69:69,70:70,84:84}],140:[function(t,e,n){var a=t(23),r=Function.apply;a(a.S,"Reflect",{apply:function(t,e,n){return r.call(t,e,n)}})},{23:23}],141:[function(t,e,n){var a=t(47),r=t(23),i=t(3),o=t(5),s=t(39),p=Function.bind||t(17).Function.prototype.bind;r(r.S+r.F*t(25)(function(){function t(){}return!(Reflect.construct(function(){},[],t)instanceof t)}),"Reflect",{construct:function(t,e){i(t);var n=arguments.length<3?t:i(arguments[2]);if(t==n){if(void 0!=e)switch(o(e).length){case 0:return new t;case 1:return new t(e[0]);case 2:return new t(e[0],e[1]);case 3:return new t(e[0],e[1],e[2]);case 4:return new t(e[0],e[1],e[2],e[3])}var r=[null];return r.push.apply(r,e),new(p.apply(t,r))}var u=n.prototype,c=a.create(s(u)?u:Object.prototype),l=Function.apply.call(t,c,e);return s(l)?l:c}})},{17:17,23:23,25:25,3:3,39:39,47:47,5:5}],142:[function(t,e,n){var a=t(47),r=t(23),i=t(5);r(r.S+r.F*t(25)(function(){Reflect.defineProperty(a.setDesc({},1,{value:1}),1,{value:2})}),"Reflect",{defineProperty:function(t,e,n){i(t);try{return a.setDesc(t,e,n),!0}catch(r){return!1}}})},{23:23,25:25,47:47,5:5}],143:[function(t,e,n){var a=t(23),r=t(47).getDesc,i=t(5);a(a.S,"Reflect",{deleteProperty:function(t,e){var n=r(i(t),e);return n&&!n.configurable?!1:delete t[e]}})},{23:23,47:47,5:5}],144:[function(t,e,n){"use strict";var a=t(23),r=t(5),i=function(t){this._t=r(t),this._i=0;var e,n=this._k=[];for(e in t)n.push(e)};t(42)(i,"Object",function(){var t,e=this,n=e._k;do if(e._i>=n.length)return{value:void 0,done:!0};while(!((t=n[e._i++])in e._t));return{value:t,done:!1}}),a(a.S,"Reflect",{enumerate:function(t){return new i(t)}})},{23:23,42:42,5:5}],145:[function(t,e,n){var a=t(47),r=t(23),i=t(5);r(r.S,"Reflect",{getOwnPropertyDescriptor:function(t,e){return a.getDesc(i(t),e)}})},{23:23,47:47,5:5}],146:[function(t,e,n){var a=t(23),r=t(47).getProto,i=t(5);a(a.S,"Reflect",{getPrototypeOf:function(t){return r(i(t))}})},{23:23,47:47,5:5}],147:[function(t,e,n){function a(t,e){var n,o,u=arguments.length<3?t:arguments[2];return p(t)===u?t[e]:(n=r.getDesc(t,e))?i(n,"value")?n.value:void 0!==n.get?n.get.call(u):void 0:s(o=r.getProto(t))?a(o,e,u):void 0}var r=t(47),i=t(31),o=t(23),s=t(39),p=t(5);o(o.S,"Reflect",{get:a})},{23:23,31:31,39:39,47:47,5:5}],148:[function(t,e,n){var a=t(23);a(a.S,"Reflect",{has:function(t,e){return e in t}})},{23:23}],149:[function(t,e,n){var a=t(23),r=t(5),i=Object.isExtensible;a(a.S,"Reflect",{isExtensible:function(t){return r(t),i?i(t):!0}})},{23:23,5:5}],150:[function(t,e,n){var a=t(23);a(a.S,"Reflect",{ownKeys:t(57)})},{23:23,57:57}],151:[function(t,e,n){var a=t(23),r=t(5),i=Object.preventExtensions;a(a.S,"Reflect",{preventExtensions:function(t){r(t);try{return i&&i(t),!0}catch(e){return!1}}})},{23:23,5:5}],152:[function(t,e,n){var a=t(23),r=t(65);r&&a(a.S,"Reflect",{setPrototypeOf:function(t,e){r.check(t,e);try{return r.set(t,e),!0}catch(n){return!1}}})},{23:23,65:65}],153:[function(t,e,n){function a(t,e,n){var o,c,l=arguments.length<4?t:arguments[3],f=r.getDesc(p(t),e);if(!f){if(u(c=r.getProto(t)))return a(c,e,n,l);f=s(0)}return i(f,"value")?f.writable!==!1&&u(l)?(o=r.getDesc(l,e)||s(0),o.value=n,r.setDesc(l,e,o),!0):!1:void 0===f.set?!1:(f.set.call(l,n),!0)}var r=t(47),i=t(31),o=t(23),s=t(60),p=t(5),u=t(39);o(o.S,"Reflect",{set:a})},{23:23,31:31,39:39,47:47,5:5,60:60}],154:[function(t,e,n){var a=t(47),r=t(30),i=t(40),o=t(27),s=r.RegExp,p=s,u=s.prototype,c=/a/g,l=/a/g,f=new s(c)!==c;!t(20)||f&&!t(25)(function(){return l[t(84)("match")]=!1,s(c)!=c||s(l)==l||"/a/i"!=s(c,"i")})||(s=function(t,e){var n=i(t),a=void 0===e;return this instanceof s||!n||t.constructor!==s||!a?f?new p(n&&!a?t.source:t,e):p((n=t instanceof s)?t.source:t,n&&a?o.call(t):e):t},a.each.call(a.getNames(p),function(t){t in s||a.setDesc(s,t,{configurable:!0,get:function(){return p[t]},set:function(e){p[t]=e}})}),u.constructor=s,s.prototype=u,t(62)(r,"RegExp",s)),t(66)("RegExp")},{20:20,25:25,27:27,30:30,40:40,47:47,62:62,66:66,84:84}],155:[function(t,e,n){var a=t(47);t(20)&&"g"!=/./g.flags&&a.setDesc(RegExp.prototype,"flags",{configurable:!0,get:t(27)})},{20:20,27:27,47:47}],156:[function(t,e,n){t(26)("match",1,function(t,e){return function(n){"use strict";var a=t(this),r=void 0==n?void 0:n[e];return void 0!==r?r.call(n,a):RegExp(n)[e](a+"")}})},{26:26}],157:[function(t,e,n){t(26)("replace",2,function(t,e,n){return function(a,r){"use strict";var i=t(this),o=void 0==a?void 0:a[e];return void 0!==o?o.call(a,i,r):n.call(i+"",a,r)}})},{26:26}],158:[function(t,e,n){t(26)("search",1,function(t,e){return function(n){"use strict";var a=t(this),r=void 0==n?void 0:n[e];return void 0!==r?r.call(n,a):RegExp(n)[e](a+"")}})},{26:26}],159:[function(t,e,n){t(26)("split",2,function(t,e,n){return function(a,r){"use strict";var i=t(this),o=void 0==a?void 0:a[e];return void 0!==o?o.call(a,i,r):n.call(i+"",a,r)}})},{26:26}],160:[function(t,e,n){"use strict";var a=t(13);t(16)("Set",function(t){return function(){return t(this,arguments.length>0?arguments[0]:void 0)}},{add:function(t){return a.def(this,t=0===t?0:t,t)}},a)},{13:13,16:16}],161:[function(t,e,n){"use strict";var a=t(23),r=t(71)(!1);a(a.P,"String",{codePointAt:function(t){return r(this,t)}})},{23:23,71:71}],162:[function(t,e,n){"use strict";var a=t(23),r=t(80),i=t(72),o="endsWith",s=""[o];a(a.P+a.F*t(24)(o),"String",{endsWith:function(t){var e=i(this,t,o),n=arguments,a=n.length>1?n[1]:void 0,p=r(e.length),u=void 0===a?p:Math.min(r(a),p),c=t+"";return s?s.call(e,c,u):e.slice(u-c.length,u)===c}})},{23:23,24:24,72:72,80:80}],163:[function(t,e,n){var a=t(23),r=t(77),i=String.fromCharCode,o=String.fromCodePoint;a(a.S+a.F*(!!o&&1!=o.length),"String",{fromCodePoint:function(t){for(var e,n=[],a=arguments,o=a.length,s=0;o>s;){if(e=+a[s++],r(e,1114111)!==e)throw RangeError(e+" is not a valid code point");n.push(65536>e?i(e):i(((e-=65536)>>10)+55296,e%1024+56320))}return n.join("")}})},{23:23,77:77}],164:[function(t,e,n){"use strict";var a=t(23),r=t(72),i="includes";a(a.P+a.F*t(24)(i),"String",{includes:function(t){return!!~r(this,t,i).indexOf(t,arguments.length>1?arguments[1]:void 0)}})},{23:23,24:24,72:72}],165:[function(t,e,n){"use strict";var a=t(71)(!0);t(43)(String,"String",function(t){this._t=t+"",this._i=0},function(){var t,e=this._t,n=this._i;return n>=e.length?{value:void 0,done:!0}:(t=a(e,n),this._i+=t.length,{value:t,done:!1})})},{43:43,71:71}],166:[function(t,e,n){var a=t(23),r=t(79),i=t(80);a(a.S,"String",{raw:function(t){for(var e=r(t.raw),n=i(e.length),a=arguments,o=a.length,s=[],p=0;n>p;)s.push(e[p++]+""),o>p&&s.push(a[p]+"");return s.join("")}})},{23:23,79:79,80:80}],167:[function(t,e,n){var a=t(23);a(a.P,"String",{repeat:t(74)})},{23:23,74:74}],168:[function(t,e,n){"use strict";var a=t(23),r=t(80),i=t(72),o="startsWith",s=""[o];a(a.P+a.F*t(24)(o),"String",{startsWith:function(t){var e=i(this,t,o),n=arguments,a=r(Math.min(n.length>1?n[1]:void 0,e.length)),p=t+"";return s?s.call(e,p,a):e.slice(a,a+p.length)===p}})},{23:23,24:24,72:72,80:80}],169:[function(t,e,n){"use strict";t(75)("trim",function(t){return function(){return t(this,3)}})},{75:75}],170:[function(t,e,n){"use strict";var a=t(47),r=t(30),i=t(31),o=t(20),s=t(23),p=t(62),u=t(25),c=t(68),l=t(67),f=t(83),d=t(84),h=t(48),m=t(29),v=t(22),g=t(37),b=t(5),y=t(79),_=t(60),x=a.getDesc,w=a.setDesc,k=a.create,P=m.get,C=r.Symbol,E=r.JSON,S=E&&E.stringify,A=!1,O=d("_hidden"),T=a.isEnum,M=c("symbol-registry"),R=c("symbols"),j="function"==typeof C,L=Object.prototype,N=o&&u(function(){return 7!=k(w({},"a",{get:function(){return w(this,"a",{value:7}).a}})).a})?function(t,e,n){var a=x(L,e);a&&delete L[e],w(t,e,n),a&&t!==L&&w(L,e,a)}:w,D=function(t){var e=R[t]=k(C.prototype);return e._k=t,o&&A&&N(L,t,{configurable:!0,set:function(e){i(this,O)&&i(this[O],t)&&(this[O][t]=!1),N(this,t,_(1,e))}}),e},F=function(t){return"symbol"==typeof t},I=function(t,e,n){return n&&i(R,e)?(n.enumerable?(i(t,O)&&t[O][e]&&(t[O][e]=!1),n=k(n,{enumerable:_(0,!1)})):(i(t,O)||w(t,O,_(1,{})),t[O][e]=!0),N(t,e,n)):w(t,e,n)},B=function(t,e){b(t);for(var n,a=v(e=y(e)),r=0,i=a.length;i>r;)I(t,n=a[r++],e[n]);return t},q=function(t,e){return void 0===e?k(t):B(k(t),e)},G=function(t){var e=T.call(this,t);return e||!i(this,t)||!i(R,t)||i(this,O)&&this[O][t]?e:!0},U=function(t,e){var n=x(t=y(t),e);return!n||!i(R,e)||i(t,O)&&t[O][e]||(n.enumerable=!0),n},V=function(t){for(var e,n=P(y(t)),a=[],r=0;n.length>r;)i(R,e=n[r++])||e==O||a.push(e);return a},z=function(t){for(var e,n=P(y(t)),a=[],r=0;n.length>r;)i(R,e=n[r++])&&a.push(R[e]);return a},W=function(t){if(void 0!==t&&!F(t)){for(var e,n,a=[t],r=1,i=arguments;i.length>r;)a.push(i[r++]);return e=a[1],"function"==typeof e&&(n=e),(n||!g(e))&&(e=function(t,e){return n&&(e=n.call(this,t,e)),F(e)?void 0:e}),a[1]=e,S.apply(E,a)}},H=u(function(){var t=C();return"[null]"!=S([t])||"{}"!=S({a:t})||"{}"!=S(Object(t))});j||(C=function(){if(F(this))throw TypeError("Symbol is not a constructor");return D(f(arguments.length>0?arguments[0]:void 0))},p(C.prototype,"toString",function(){return this._k}),F=function(t){return t instanceof C},a.create=q,a.isEnum=G,a.getDesc=U,a.setDesc=I,a.setDescs=B,a.getNames=m.get=V,a.getSymbols=z,o&&!t(49)&&p(L,"propertyIsEnumerable",G,!0));var Q={"for":function(t){return i(M,t+="")?M[t]:M[t]=C(t)},keyFor:function(t){return h(M,t)},useSetter:function(){A=!0},useSimple:function(){A=!1}};a.each.call("hasInstance,isConcatSpreadable,iterator,match,replace,search,species,split,toPrimitive,toStringTag,unscopables".split(","),function(t){var e=d(t);Q[t]=j?e:D(e)}),A=!0,s(s.G+s.W,{Symbol:C}),s(s.S,"Symbol",Q),s(s.S+s.F*!j,"Object",{create:q,defineProperty:I,defineProperties:B,getOwnPropertyDescriptor:U,getOwnPropertyNames:V,getOwnPropertySymbols:z}),E&&s(s.S+s.F*(!j||H),"JSON",{stringify:W}),l(C,"Symbol"),l(Math,"Math",!0),l(r.JSON,"JSON",!0)},{20:20,22:22,23:23,25:25,29:29,30:30,31:31,37:37,47:47,48:48,49:49,5:5,60:60,62:62,67:67,68:68,79:79,83:83,84:84}],171:[function(t,e,n){"use strict";var a=t(47),r=t(62),i=t(15),o=t(39),s=t(31),p=i.frozenStore,u=i.WEAK,c=Object.isExtensible||o,l={},f=t(16)("WeakMap",function(t){return function(){return t(this,arguments.length>0?arguments[0]:void 0)}},{get:function(t){if(o(t)){if(!c(t))return p(this).get(t);if(s(t,u))return t[u][this._i]}},set:function(t,e){return i.def(this,t,e)}},i,!0,!0);7!=(new f).set((Object.freeze||Object)(l),7).get(l)&&a.each.call(["delete","has","get","set"],function(t){var e=f.prototype,n=e[t];r(e,t,function(e,a){if(o(e)&&!c(e)){var r=p(this)[t](e,a);return"set"==t?this:r}return n.call(this,e,a)})})},{15:15,16:16,31:31,39:39,47:47,62:62}],172:[function(t,e,n){"use strict";var a=t(15);t(16)("WeakSet",function(t){return function(){return t(this,arguments.length>0?arguments[0]:void 0)}},{add:function(t){return a.def(this,t,!0)}},a,!1,!0)},{15:15,16:16}],173:[function(t,e,n){"use strict";var a=t(23),r=t(8)(!0);a(a.P,"Array",{includes:function(t){return r(this,t,arguments.length>1?arguments[1]:void 0)}}),t(4)("includes")},{23:23,4:4,8:8}],174:[function(t,e,n){var a=t(23);a(a.P,"Map",{toJSON:t(14)("Map")})},{14:14,23:23}],175:[function(t,e,n){var a=t(23),r=t(56)(!0);a(a.S,"Object",{entries:function(t){return r(t)}})},{23:23,56:56}],176:[function(t,e,n){var a=t(47),r=t(23),i=t(57),o=t(79),s=t(60);r(r.S,"Object",{getOwnPropertyDescriptors:function(t){for(var e,n,r=o(t),p=a.setDesc,u=a.getDesc,c=i(r),l={},f=0;c.length>f;)n=u(r,e=c[f++]),e in l?p(l,e,s(0,n)):l[e]=n;return l}})},{23:23,47:47,57:57,60:60,79:79}],177:[function(t,e,n){var a=t(23),r=t(56)(!1);a(a.S,"Object",{values:function(t){return r(t)}})},{23:23,56:56}],178:[function(t,e,n){var a=t(23),r=t(63)(/[\\^$*+?.()|[\]{}]/g,"\\$&");a(a.S,"RegExp",{escape:function(t){return r(t)}})},{23:23,63:63}],179:[function(t,e,n){var a=t(23);a(a.P,"Set",{toJSON:t(14)("Set")})},{14:14,23:23}],180:[function(t,e,n){"use strict";var a=t(23),r=t(71)(!0);a(a.P,"String",{at:function(t){return r(this,t)}})},{23:23,71:71}],181:[function(t,e,n){"use strict";var a=t(23),r=t(73);a(a.P,"String",{padLeft:function(t){return r(this,t,arguments.length>1?arguments[1]:void 0,!0)}})},{23:23,73:73}],182:[function(t,e,n){"use strict";var a=t(23),r=t(73);a(a.P,"String",{padRight:function(t){return r(this,t,arguments.length>1?arguments[1]:void 0,!1)}})},{23:23,73:73}],183:[function(t,e,n){"use strict";t(75)("trimLeft",function(t){return function(){return t(this,1)}})},{75:75}],184:[function(t,e,n){"use strict";t(75)("trimRight",function(t){return function(){return t(this,2)}})},{75:75}],185:[function(t,e,n){var a=t(47),r=t(23),i=t(18),o=t(17).Array||Array,s={},p=function(t,e){a.each.call(t.split(","),function(t){void 0==e&&t in o?s[t]=o[t]:t in[]&&(s[t]=i(Function.call,[][t],e))})};p("pop,reverse,shift,keys,values,entries",1),p("indexOf,every,some,forEach,map,filter,find,findIndex,includes",3),p("join,slice,concat,push,splice,unshift,sort,lastIndexOf,reduce,reduceRight,copyWithin,fill"),r(r.S,"Array",s)},{17:17,18:18,23:23,47:47}],186:[function(t,e,n){t(92);var a=t(30),r=t(32),i=t(46),o=t(84)("iterator"),s=a.NodeList,p=a.HTMLCollection,u=s&&s.prototype,c=p&&p.prototype,l=i.NodeList=i.HTMLCollection=i.Array;u&&!u[o]&&r(u,o,l),c&&!c[o]&&r(c,o,l)},{30:30,32:32,46:46,84:84,92:92}],187:[function(t,e,n){var a=t(23),r=t(76);a(a.G+a.B,{setImmediate:r.set,clearImmediate:r.clear})},{23:23,76:76}],188:[function(t,e,n){var a=t(30),r=t(23),i=t(34),o=t(58),s=a.navigator,p=!!s&&/MSIE .\./.test(s.userAgent),u=function(t){return p?function(e,n){return t(i(o,[].slice.call(arguments,2),"function"==typeof e?e:Function(e)),n)}:t};r(r.G+r.B+r.F*p,{setTimeout:u(a.setTimeout),setInterval:u(a.setInterval)})},{23:23,30:30,34:34,58:58}],189:[function(t,e,n){t(86),t(170),t(125),t(133),t(137),t(138),t(126),t(136),t(135),t(131),t(132),t(130),t(127),t(129),t(134),t(128),t(96),t(95),t(115),t(116),t(117),t(118),t(119),t(120),t(121),t(122),t(123),t(124),t(98),t(99),t(100),t(101),t(102),t(103),t(104),t(105),t(106),t(107),t(108),t(109),t(110),t(111),t(112),t(113),t(114),t(163),t(166),t(169),t(165),t(161),t(162),t(164),t(167),t(168),t(91),t(93),t(92),t(94),t(87),t(88),t(90),t(89),t(154),t(155),t(156),t(157),t(158),t(159),t(139),t(97),t(160),t(171),t(172),t(140),t(141),t(142),t(143),t(144),t(147),t(145),t(146),t(148),t(149),t(150),t(151),t(153),t(152),t(173),t(180),t(181),t(182),t(183),t(184),t(178),t(176),t(177),t(175),t(174),t(179),t(185),t(188),t(187),t(186),e.exports=t(17)},{100:100,101:101,102:102,103:103,104:104,105:105,106:106,107:107,108:108,109:109,110:110,111:111,112:112,113:113,114:114,115:115,116:116,117:117,118:118,119:119,120:120,121:121,122:122,123:123,124:124,125:125,126:126,127:127,128:128,129:129,130:130,131:131,132:132,133:133,134:134,135:135,136:136,137:137,138:138,139:139,140:140,141:141,142:142,143:143,144:144,145:145,146:146,147:147,148:148,149:149,150:150,151:151,152:152,153:153,154:154,155:155,156:156,157:157,158:158,159:159,160:160,161:161,162:162,163:163,164:164,165:165,166:166,167:167,168:168,169:169,17:17,170:170,171:171,172:172,173:173,174:174,175:175,176:176,177:177,178:178,179:179,180:180,181:181,182:182,183:183,184:184,185:185,186:186,187:187,188:188,86:86,87:87,88:88,89:89,90:90,91:91,92:92,93:93,94:94,95:95,96:96,97:97,98:98,99:99}],190:[function(t,e,n){function a(){c=!1,s.length?u=s.concat(u):l=-1,u.length&&r()}function r(){if(!c){var t=setTimeout(a);c=!0;for(var e=u.length;e;){for(s=u,u=[];++l1)for(var n=1;n-1}}([].indexOf||function(t){for(q=this.length;q--&&this[q]!==t;);return q}),item:function(t){return this[t]||null},remove:function(){for(var t,e=0;e=p?e(i):document.fonts.load(u(i,i.family),s).then(function(e){1<=e.length?t(i):setTimeout(f,25)},function(){e(i)})};f()}else n(function(){function n(){var e;(e=-1!=v&&-1!=g||-1!=v&&-1!=b||-1!=g&&-1!=b)&&((e=v!=g&&v!=b&&g!=b)||(null===l&&(e=/AppleWebKit\/([0-9]+)(?:\.([0-9]+))/.exec(window.navigator.userAgent),l=!!e&&(536>parseInt(e[1],10)||536===parseInt(e[1],10)&&11>=parseInt(e[2],10))),e=l&&(v==y&&g==y&&b==y||v==_&&g==_&&b==_||v==x&&g==x&&b==x)),e=!e),e&&(null!==w.parentNode&&w.parentNode.removeChild(w),clearTimeout(k),t(i))}function f(){if((new Date).getTime()-c>=p)null!==w.parentNode&&w.parentNode.removeChild(w),e(i);else{var t=document.hidden;(!0===t||void 0===t)&&(v=d.a.offsetWidth,g=h.a.offsetWidth,b=m.a.offsetWidth,n()),k=setTimeout(f,50)}}var d=new a(s),h=new a(s),m=new a(s),v=-1,g=-1,b=-1,y=-1,_=-1,x=-1,w=document.createElement("div"),k=0;w.dir="ltr",r(d,u(i,"sans-serif")),r(h,u(i,"serif")),r(m,u(i,"monospace")),w.appendChild(d.a),w.appendChild(h.a),w.appendChild(m.a),document.body.appendChild(w),y=d.a.offsetWidth,_=h.a.offsetWidth,x=m.a.offsetWidth,f(),o(d,function(t){v=t,n()}),r(d,u(i,'"'+i.family+'",sans-serif')),o(h,function(t){g=t,n()}),r(h,u(i,'"'+i.family+'",serif')),o(m,function(t){b=t,n()}),r(m,u(i,'"'+i.family+'",monospace'))})})},window.FontFaceObserver=s,window.FontFaceObserver.prototype.check=s.prototype.a,void 0!==e&&(e.exports=window.FontFaceObserver)}()},{}],194:[function(t,e,n){!function(t,n){function a(t,e){var n=t.createElement("p"),a=t.getElementsByTagName("head")[0]||t.documentElement;return n.innerHTML="x",a.insertBefore(n.lastChild,a.firstChild)}function r(){var t=_.elements;return"string"==typeof t?t.split(" "):t}function i(t,e){var n=_.elements;"string"!=typeof n&&(n=n.join(" ")),"string"!=typeof t&&(t=t.join(" ")),_.elements=n+" "+t,c(e)}function o(t){var e=y[t[g]];return e||(e={},b++,t[g]=b,y[b]=e),e}function s(t,e,a){if(e||(e=n),f)return e.createElement(t);a||(a=o(e));var r;return r=a.cache[t]?a.cache[t].cloneNode():v.test(t)?(a.cache[t]=a.createElem(t)).cloneNode():a.createElem(t),!r.canHaveChildren||m.test(t)||r.tagUrn?r:a.frag.appendChild(r)}function p(t,e){if(t||(t=n),f)return t.createDocumentFragment();e=e||o(t);for(var a=e.frag.cloneNode(),i=0,s=r(),p=s.length;p>i;i++)a.createElement(s[i]);return a}function u(t,e){e.cache||(e.cache={},e.createElem=t.createElement,e.createFrag=t.createDocumentFragment,e.frag=e.createFrag()),t.createElement=function(n){return _.shivMethods?s(n,t,e):e.createElem(n)},t.createDocumentFragment=Function("h,f","return function(){var n=f.cloneNode(),c=n.createElement;h.shivMethods&&("+r().join().replace(/[\w\-:]+/g,function(t){return e.createElem(t),e.frag.createElement(t),'c("'+t+'")'})+");return n}")(_,e.frag)}function c(t){t||(t=n);var e=o(t);return!_.shivCSS||l||e.hasCSS||(e.hasCSS=!!a(t,"article,aside,dialog,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}mark{background:#FF0;color:#000}template{display:none}")),f||u(t,e),t}var l,f,d="3.7.3-pre",h=t.html5||{},m=/^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i,v=/^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|style|table|tbody|td|th|tr|ul)$/i,g="_html5shiv",b=0,y={};!function(){try{var t=n.createElement("a");t.innerHTML="",l="hidden"in t,f=1==t.childNodes.length||function(){n.createElement("a");var t=n.createDocumentFragment();return void 0===t.cloneNode||void 0===t.createDocumentFragment||void 0===t.createElement}()}catch(e){l=!0,f=!0}}();var _={elements:h.elements||"abbr article aside audio bdi canvas data datalist details dialog figcaption figure footer header hgroup main mark meter nav output picture progress section summary template time video",version:d,shivCSS:h.shivCSS!==!1,supportsUnknownElements:f,shivMethods:h.shivMethods!==!1,type:"default",shivDocument:c,createElement:s,createDocumentFragment:p,addElements:i};t.html5=_,c(n),"object"==typeof e&&e.exports&&(e.exports=_)}("undefined"!=typeof window?window:this,document)},{}],195:[function(t,e,n){(function(t){(function(t){!function(t){function e(t,e,n,a){for(var i,o=n.slice(),s=r(e,t),p=0,u=o.length;u>p&&(handler=o[p],"object"==typeof handler?"function"==typeof handler.handleEvent&&handler.handleEvent(s):handler.call(t,s),!s.stoppedImmediatePropagation);p++);return i=!s.stoppedPropagation,a&&i&&t.parentNode?t.parentNode.dispatchEvent(s):!s.defaultPrevented}function n(t,e){return{configurable:!0,get:t,set:e}}function a(t,e,a){var r=b(e||t,a);v(t,"textContent",n(function(){return r.get.call(this)},function(t){r.set.call(this,t)}))}function r(t,e){return t.currentTarget=e,t.eventPhase=t.target===t.currentTarget?2:3,t}function i(t,e){for(var n=t.length;n--&&t[n]!==e;);return n}function o(){if("BR"===this.tagName)return"\n";for(var t=this.firstChild,e=[];t;)8!==t.nodeType&&7!==t.nodeType&&e.push(t.textContent),t=t.nextSibling;return e.join("")}function s(t){var e=document.createEvent("Event");e.initEvent("input",!0,!0),(t.srcElement||t.fromElement||document).dispatchEvent(e)}function p(t){!f&&k.test(document.readyState)&&(f=!f,document.detachEvent(d,p),t=document.createEvent("Event"),t.initEvent(h,!0,!0),document.dispatchEvent(t))}function u(t){for(var e;e=this.lastChild;)this.removeChild(e);null!=t&&this.appendChild(document.createTextNode(t))}function c(e,n){return n||(n=t.event),n.target||(n.target=n.srcElement||n.fromElement||document),n.timeStamp||(n.timeStamp=(new Date).getTime()),n}if(!document.createEvent){var l=!0,f=!1,d="onreadystatechange",h="DOMContentLoaded",m="__IE8__"+Math.random(),v=Object.defineProperty||function(t,e,n){t[e]=n.value},g=Object.defineProperties||function(e,n){for(var a in n)if(y.call(n,a))try{v(e,a,n[a])}catch(r){t.console&&console.log(a+" failed on object:",e,r.message)}},b=Object.getOwnPropertyDescriptor,y=Object.prototype.hasOwnProperty,_=t.Element.prototype,x=t.Text.prototype,w=/^[a-z]+$/,k=/loaded|complete/,P={},C=document.createElement("div"),E=document.documentElement,S=E.removeAttribute,A=E.setAttribute;a(t.HTMLCommentElement.prototype,_,"nodeValue"),a(t.HTMLScriptElement.prototype,null,"text"),a(x,null,"nodeValue"),a(t.HTMLTitleElement.prototype,null,"text"),v(t.HTMLStyleElement.prototype,"textContent",function(t){return n(function(){return t.get.call(this.styleSheet)},function(e){t.set.call(this.styleSheet,e)})}(b(t.CSSStyleSheet.prototype,"cssText"))),g(_,{textContent:{get:o,set:u},firstElementChild:{get:function(){for(var t=this.childNodes||[],e=0,n=t.length;n>e;e++)if(1==t[e].nodeType)return t[e]}},lastElementChild:{get:function(){for(var t=this.childNodes||[],e=t.length;e--;)if(1==t[e].nodeType)return t[e]}},oninput:{get:function(){return this._oninput||null},set:function(t){this._oninput&&(this.removeEventListener("input",this._oninput),this._oninput=t,t&&this.addEventListener("input",t))}},previousElementSibling:{get:function(){for(var t=this.previousSibling;t&&1!=t.nodeType;)t=t.previousSibling;return t}},nextElementSibling:{get:function(){for(var t=this.nextSibling;t&&1!=t.nodeType;)t=t.nextSibling;return t}},childElementCount:{get:function(){for(var t=0,e=this.childNodes||[],n=e.length;n--;t+=1==e[n].nodeType);return t}},addEventListener:{value:function(t,n,a){if("function"==typeof n||"object"==typeof n){var r,o,p=this,u="on"+t,l=p[m]||v(p,m,{value:{}})[m],f=l[u]||(l[u]={}),d=f.h||(f.h=[]);if(!y.call(f,"w")){if(f.w=function(t){return t[m]||e(p,c(p,t),d,!1)},!y.call(P,u))if(w.test(t)){try{r=document.createEventObject(),r[m]=!0,9!=p.nodeType&&(null==p.parentNode&&C.appendChild(p),(o=p.getAttribute(u))&&S.call(p,u)),p.fireEvent(u,r),P[u]=!0}catch(r){for(P[u]=!1;C.hasChildNodes();)C.removeChild(C.firstChild)}null!=o&&A.call(p,u,o)}else P[u]=!1;(f.n=P[u])&&p.attachEvent(u,f.w)}i(d,n)<0&&d[a?"unshift":"push"](n),"input"===t&&p.attachEvent("onkeyup",s)}}},dispatchEvent:{value:function(t){var n,a=this,r="on"+t.type,i=a[m],o=i&&i[r],s=!!o;return t.target||(t.target=a),s?o.n?a.fireEvent(r,t):e(a,t,o.h,!0):(n=a.parentNode)?n.dispatchEvent(t):!0,!t.defaultPrevented}},removeEventListener:{value:function(t,e,n){if("function"==typeof e||"object"==typeof e){var a=this,r="on"+t,o=a[m],s=o&&o[r],p=s&&s.h,u=p?i(p,e):-1;u>-1&&p.splice(u,1)}}}}),g(x,{addEventListener:{value:_.addEventListener},dispatchEvent:{value:_.dispatchEvent},removeEventListener:{value:_.removeEventListener}}),g(t.XMLHttpRequest.prototype,{addEventListener:{value:function(t,e,n){var a=this,r="on"+t,o=a[m]||v(a,m,{value:{}})[m],s=o[r]||(o[r]={}),p=s.h||(s.h=[]);i(p,e)<0&&(a[r]||(a[r]=function(){var e=document.createEvent("Event");e.initEvent(t,!0,!0),a.dispatchEvent(e)}),p[n?"unshift":"push"](e))}},dispatchEvent:{value:function(t){var n=this,a="on"+t.type,r=n[m],i=r&&r[a],o=!!i;return o&&(i.n?n.fireEvent(a,t):e(n,t,i.h,!0))}},removeEventListener:{value:_.removeEventListener}}),g(t.Event.prototype,{bubbles:{value:!0,writable:!0},cancelable:{value:!0,writable:!0},preventDefault:{value:function(){this.cancelable&&(this.defaultPrevented=!0,this.returnValue=!1)}},stopPropagation:{value:function(){this.stoppedPropagation=!0,this.cancelBubble=!0}},stopImmediatePropagation:{value:function(){this.stoppedImmediatePropagation=!0,this.stopPropagation()}},initEvent:{value:function(t,e,n){this.type=t,this.bubbles=!!e,this.cancelable=!!n,this.bubbles||this.stopPropagation()}}}),g(t.HTMLDocument.prototype,{defaultView:{get:function(){return this.parentWindow}},textContent:{get:function(){return 11===this.nodeType?o.call(this):null},set:function(t){11===this.nodeType&&u.call(this,t)}},addEventListener:{value:function(e,n,a){var r=this;_.addEventListener.call(r,e,n,a),l&&e===h&&!k.test(r.readyState)&&(l=!1,r.attachEvent(d,p),t==top&&!function i(t){try{r.documentElement.doScroll("left"),p()}catch(e){setTimeout(i,50)}}())}},dispatchEvent:{value:_.dispatchEvent},removeEventListener:{value:_.removeEventListener},createEvent:{value:function(t){var e;if("Event"!==t)throw Error("unsupported "+t);return e=document.createEventObject(),e.timeStamp=(new Date).getTime(),e}}}),g(t.Window.prototype,{getComputedStyle:{value:function(){function t(t){this._=t}function e(){}var n=/^(?:[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|))(?!px)[a-z%]+$/,a=/^(top|right|bottom|left)$/,r=/\-([a-z])/g,i=function(t,e){return e.toUpperCase()};return t.prototype.getPropertyValue=function(t){var e,o,s,p=this._,u=p.style,c=p.currentStyle,l=p.runtimeStyle;return t=("float"===t?"style-float":t).replace(r,i),e=c?c[t]:u[t],n.test(e)&&!a.test(t)&&(o=u.left,s=l&&l.left,s&&(l.left=c.left),u.left="fontSize"===t?"1em":e,e=u.pixelLeft+"px",u.left=o,s&&(l.left=s)),null==e?e:e+""||"auto"},e.prototype.getPropertyValue=function(){return null},function(n,a){return a?new e(n):new t(n)}}()},addEventListener:{value:function(n,a,r){var o,s=t,p="on"+n;s[p]||(s[p]=function(t){return e(s,c(s,t),o,!1)}),o=s[p][m]||(s[p][m]=[]),i(o,a)<0&&o[r?"unshift":"push"](a)}},dispatchEvent:{value:function(e){var n=t["on"+e.type];return n?n.call(t,e)!==!1&&!e.defaultPrevented:!0}},removeEventListener:{value:function(e,n,a){var r="on"+e,o=(t[r]||Object)[m],s=o?i(o,n):-1;s>-1&&o.splice(s,1)}}}),function(t,e,n){for(n=0;n=s)return(0,p["default"])({points:n});for(var l=1;s-1>=l;l++)i.push((0,u.times)(a,(0,u.minus)(n[l],n[l-1])));for(var f=[(0,u.plus)(n[0],c(i[0],i[1]))],l=1;s-2>=l;l++)f.push((0,u.minus)(n[l],(0,u.average)([i[l],i[l-1]])));f.push((0,u.minus)(n[s-1],c(i[s-2],i[s-3])));var d=f[0],h=f[1],m=n[0],v=n[1],g=(e=(0,o["default"])()).moveto.apply(e,r(m)).curveto(d[0],d[1],h[0],h[1],v[0],v[1]);return{path:(0,u.range)(2,s).reduce(function(t,e){var a=f[e],r=n[e];return t.smoothcurveto(a[0],a[1],r[0],r[1])},g),centroid:(0,u.average)(n)}},e.exports=n["default"]},{199:199,200:200,201:201}],197:[function(t,e,n){"use strict";function a(t){return t&&t.__esModule?t:{"default":t}}Object.defineProperty(n,"__esModule",{value:!0});var r=function(){function t(t,e){var n=[],a=!0,r=!1,i=void 0;try{for(var o,s=t[Symbol.iterator]();!(a=(o=s.next()).done)&&(n.push(o.value),!e||n.length!==e);a=!0);}catch(p){r=!0,i=p}finally{try{!a&&s["return"]&&s["return"]()}finally{if(r)throw i}}return n}return function(e,n){if(Array.isArray(e))return e;if(Symbol.iterator in Object(e))return t(e,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),i=t(198),o=a(i),s=t(199),p=1e-5,u=function(t,e){var n=t.map(e),a=n.sort(function(t,e){var n=r(t,2),a=n[0],i=(n[1],r(e,2)),o=i[0];i[1];return a-o}),i=a.length,o=a[0][0],u=a[i-1][0],c=(0,s.minBy)(a,function(t){return t[1]}),l=(0,s.maxBy)(a,function(t){return t[1]});return o==u&&(u+=p),c==l&&(l+=p),{points:a,xmin:o,xmax:u,ymin:c,ymax:l}};n["default"]=function(t){var e=t.data,n=t.xaccessor,a=t.yaccessor,i=t.width,p=t.height,c=t.closed,l=t.min,f=t.max;n||(n=function(t){var e=r(t,2),n=e[0];e[1];return n}),a||(a=function(t){var e=r(t,2),n=(e[0],e[1]);return n});var d=function(t){return[n(t),a(t)]},h=e.map(function(t){return u(t,d)}),m=(0,s.minBy)(h,function(t){return t.xmin}),v=(0,s.maxBy)(h,function(t){return t.xmax}),g=null==l?(0,s.minBy)(h,function(t){return t.ymin}):l,b=null==f?(0,s.maxBy)(h,function(t){return t.ymax}):f;c&&(g=Math.min(g,0),b=Math.max(b,0));var y=c?0:g,_=(0,o["default"])([m,v],[0,i]),x=(0,o["default"])([g,b],[p,0]),w=function(t){var e=r(t,2),n=e[0],a=e[1];return[_(n),x(a)]};return{arranged:h,scale:w,xscale:_,yscale:x,base:y}},e.exports=n["default"]},{198:198,199:199}],198:[function(t,e,n){"use strict";Object.defineProperty(n,"__esModule",{value:!0});var a=function(){function t(t,e){var n=[],a=!0,r=!1,i=void 0;try{for(var o,s=t[Symbol.iterator]();!(a=(o=s.next()).done)&&(n.push(o.value),!e||n.length!==e);a=!0);}catch(p){r=!0,i=p}finally{try{!a&&s["return"]&&s["return"]()}finally{if(r)throw i}}return n}return function(e,n){if(Array.isArray(e))return e;if(Symbol.iterator in Object(e))return t(e,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),r=function i(t,e){var n=a(t,2),r=n[0],o=n[1],s=a(e,2),p=s[0],u=s[1],c=function(t){return p+(u-p)*(t-r)/(o-r)};return c.inverse=function(){return i([p,u],[r,o])},c};n["default"]=r,e.exports=n["default"]},{}],199:[function(t,e,n){"use strict";Object.defineProperty(n,"__esModule",{value:!0});var a=function(){function t(t,e){var n=[],a=!0,r=!1,i=void 0;try{for(var o,s=t[Symbol.iterator]();!(a=(o=s.next()).done)&&(n.push(o.value),!e||n.length!==e);a=!0);}catch(p){r=!0,i=p}finally{try{!a&&s["return"]&&s["return"]()}finally{if(r)throw i}}return n}return function(e,n){if(Array.isArray(e))return e;if(Symbol.iterator in Object(e))return t(e,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),r=function(t){return t.reduce(function(t,e){return t+e},0)},i=function(t){return t.reduce(function(t,e){return Math.min(t,e)})},o=function(t){return t.reduce(function(t,e){return Math.max(t,e)})},s=function(t,e){return t.reduce(function(t,n){return t+e(n)},0)},p=function(t,e){return t.reduce(function(t,n){return Math.min(t,e(n))},1/0)},u=function(t,e){return t.reduce(function(t,n){return Math.max(t,e(n))},-(1/0))},c=function(t,e){var n=a(t,2),r=n[0],i=n[1],o=a(e,2),s=o[0],p=o[1];return[r+s,i+p]},l=function(t,e){var n=a(t,2),r=n[0],i=n[1],o=a(e,2),s=o[0],p=o[1];return[r-s,i-p]},f=function(t,e){var n=a(e,2),r=n[0],i=n[1];return[t*r,t*i]},d=function(t){var e=a(t,2),n=e[0],r=e[1];return Math.sqrt(n*n+r*r)},h=function(t){return t.reduce(c,[0,0])},m=function(t){return f(1/t.length,t.reduce(c))},v=function(t,e){return f(t,[Math.sin(e),-Math.cos(e)])},g=function(t,e){var n=t||{};for(var a in n){var r=n[a];e[a]=r(e.index,e.item,e.group)}return e},b=function(t,e,n){for(var a=[],r=t;e>r;r++)a.push(r);return n&&a.push(e),a},y=function(t,e){var n=[],a=!0,r=!1,i=void 0;try{for(var o,s=Object.keys(t)[Symbol.iterator]();!(a=(o=s.next()).done);a=!0){var p=o.value,u=t[p];n.push(e(p,u))}}catch(c){r=!0,i=c}finally{try{!a&&s["return"]&&s["return"]()}finally{if(r)throw i}}return n},_=function(t){return y(t,function(t,e){return[t,e]})},x=function(t){return t};n.sum=r,n.min=i,n.max=o,n.sumBy=s,n.minBy=p,n.maxBy=u,n.plus=c,n.minus=l,n.times=f,n.id=x,n.length=d,n.sumVectors=h,n.average=m,n.onCircle=v,n.enhance=g,n.range=b,n.mapObject=y,n.pairs=_,n["default"]={sum:r,min:i,max:o,sumBy:s,minBy:p,maxBy:u,plus:c,minus:l,times:f,id:x,length:d,sumVectors:h,average:m,onCircle:v,enhance:g,range:b,mapObject:y,pairs:_}},{}],200:[function(t,e,n){"use strict";Object.defineProperty(n,"__esModule",{value:!0});var a=function(){function t(t,e){var n=[],a=!0,r=!1,i=void 0;try{for(var o,s=t[Symbol.iterator]();!(a=(o=s.next()).done)&&(n.push(o.value),!e||n.length!==e);a=!0);}catch(p){r=!0,i=p}finally{try{!a&&s["return"]&&s["return"]()}finally{if(r)throw i}}return n}return function(e,n){if(Array.isArray(e))return e;if(Symbol.iterator in Object(e))return t(e,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),r=function i(t){var e=t||[],n=function(t,e){var n=t.slice(0,t.length);return n.push(e),n},r=function(t,e){var n=a(t,2),r=n[0],i=n[1],o=a(e,2),s=o[0],p=o[1];return r===s&&i===p},o=function(t,e){for(var n=t.length;"0"===t.charAt(n-1);)n-=1;return"."===t.charAt(n-1)&&(n-=1),t.substr(0,n)},s=function(t,e){var n=t.toFixed(e);return o(n)},p=function(t){var e=t.command,n=t.params,a=n.map(function(t){return s(t,6)});return e+" "+a.join(" ")},u=function(t,e){var n=t.command,r=t.params,i=a(e,2),o=i[0],s=i[1];switch(n){case"M":return[r[0],r[1]];case"L":return[r[0],r[1]];case"H":return[r[0],s];case"V":return[o,r[0]];case"Z":return null;case"C":return[r[4],r[5]];case"S":return[r[2],r[3]];case"Q":return[r[2],r[3]];case"T":return[r[0],r[1]];case"A":return[r[5],r[6]]}},c=function(t,e){return function(n){var a="object"==typeof n?t.map(function(t){return n[t]}):arguments;return e.apply(null,a)}},l=function(t){return i(n(e,t))};return{moveto:c(["x","y"],function(t,e){return l({command:"M",params:[t,e]})}),lineto:c(["x","y"],function(t,e){return l({command:"L",params:[t,e]})}),hlineto:c(["x"],function(t){return l({command:"H",params:[t]})}),vlineto:c(["y"],function(t){return l({command:"V",params:[t]})}),closepath:function(){return l({command:"Z",params:[]})},curveto:c(["x1","y1","x2","y2","x","y"],function(t,e,n,a,r,i){return l({command:"C",params:[t,e,n,a,r,i]})}),smoothcurveto:c(["x2","y2","x","y"],function(t,e,n,a){return l({command:"S",params:[t,e,n,a]})}),qcurveto:c(["x1","y1","x","y"],function(t,e,n,a){return l({command:"Q",params:[t,e,n,a]})}),smoothqcurveto:c(["x","y"],function(t,e){return l({command:"T",params:[t,e]})}),arc:c(["rx","ry","xrot","largeArcFlag","sweepFlag","x","y"],function(t,e,n,a,r,i,o){return l({command:"A",params:[t,e,n,a,r,i,o]})}),print:function(){return e.map(p).join(" ")},points:function(){var t=[],n=[0,0],a=!0,r=!1,i=void 0;try{for(var o,s=e[Symbol.iterator]();!(a=(o=s.next()).done);a=!0){var p=o.value,c=u(p,n);n=c,c&&t.push(c)}}catch(l){r=!0,i=l}finally{try{!a&&s["return"]&&s["return"]()}finally{if(r)throw i}}return t},instructions:function(){return e.slice(0,e.length)},connect:function(t){var e=this.points(),n=e[e.length-1],a=t.points()[0],o=t.instructions().slice(1);return r(n,a)||o.unshift({command:"L",params:a}),i(this.instructions().concat(o))}}};n["default"]=function(){return r()},e.exports=n["default"]},{}],201:[function(t,e,n){"use strict";function a(t){return t&&t.__esModule?t:{"default":t}}function r(t){if(Array.isArray(t)){for(var e=0,n=Array(t.length);e1?e-1:0),a=1;e>a;a++)n[a-1]=arguments[a];for(var r,i;i=n.shift();)for(r in i)Ro.call(i,r)&&(t[r]=i[r]);return t}function r(t){for(var e=arguments.length,n=Array(e>1?e-1:0),a=1;e>a;a++)n[a-1]=arguments[a];return n.forEach(function(e){for(var n in e)!e.hasOwnProperty(n)||n in t||(t[n]=e[n])}),t}function i(t){return"[object Array]"===jo.call(t)}function o(t){return Lo.test(jo.call(t))}function s(t,e){return null===t&&null===e?!0:"object"==typeof t||"object"==typeof e?!1:t===e}function p(t){return!isNaN(parseFloat(t))&&isFinite(t)}function u(t){return t&&"[object Object]"===jo.call(t)}function c(t,e){return t.replace(/%s/g,function(){return e.shift()})}function l(t){for(var e=arguments.length,n=Array(e>1?e-1:0),a=1;e>a;a++)n[a-1]=arguments[a];throw t=c(t,n),Error(t)}function f(){Rv.DEBUG&&Oo.apply(null,arguments)}function d(t){for(var e=arguments.length,n=Array(e>1?e-1:0),a=1;e>a;a++)n[a-1]=arguments[a];t=c(t,n),To(t,n)}function h(t){for(var e=arguments.length,n=Array(e>1?e-1:0),a=1;e>a;a++)n[a-1]=arguments[a];t=c(t,n),No[t]||(No[t]=!0,To(t,n))}function m(){Rv.DEBUG&&d.apply(null,arguments)}function v(){Rv.DEBUG&&h.apply(null,arguments)}function g(t,e,n){var a=b(t,e,n);return a?a[t][n]:null}function b(t,e,n){for(;e;){if(n in e[t])return e;if(e.isolated)return null;e=e.parent}}function y(t){return function(){return t}}function _(t){var e,n,a,r,i,o;for(e=t.split("."),(n=zo[e.length])||(n=x(e.length)),i=[],a=function(t,n){return t?"*":e[n]},r=n.length;r--;)o=n[r].map(a).join("."),i.hasOwnProperty(o)||(i.push(o),i[o]=!0);return i}function x(t){var e,n,a,r,i,o,s,p,u="";if(!zo[t]){for(a=[];u.length=i;i+=1){for(n=i.toString(2);n.lengtho;o++)p.push(r(n[o]));a[i]=p}zo[t]=a}return zo[t]}function w(t,e,n,a){var r=t[e];if(!r||!r.equalsOrStartsWith(a)&&r.equalsOrStartsWith(n))return t[e]=r?r.replace(n,a):a,!0}function k(t){var e=t.slice(2);return"i"===t[1]&&p(e)?+e:e}function P(t){return null==t?t:(Qo.hasOwnProperty(t)||(Qo[t]=new Ko(t)),Qo[t])}function C(t,e){function n(e,n){var a,r,o;return n.isRoot?o=[].concat(Object.keys(t.viewmodel.data),Object.keys(t.viewmodel.mappings),Object.keys(t.viewmodel.computations)):(a=t.viewmodel.wrapped[n.str],r=a?a.get():t.viewmodel.get(n),o=r?Object.keys(r):null),o&&o.forEach(function(t){"_ractive"===t&&i(r)||e.push(n.join(t))}),e}var a,r,o;for(a=e.str.split("."),o=[Yo];r=a.shift();)"*"===r?o=o.reduce(n,[]):o[0]===Yo?o[0]=P(r):o=o.map(E(r));return o}function E(t){return function(e){return e.join(t)}}function S(t){return t?t.replace(Wo,".$1"):""}function A(t,e,n){if("string"!=typeof e||!p(n))throw Error("Bad arguments");var a=void 0,r=void 0;if(/\*/.test(e))return r={},C(t,P(S(e))).forEach(function(e){var a=t.viewmodel.get(e);if(!p(a))throw Error(Jo);r[e.str]=a+n}),t.set(r);if(a=t.get(e),!p(a))throw Error(Jo);return t.set(e,+a+n)}function O(t,e){return Xo(this,t,void 0===e?1:+e)}function T(t){this.event=t,this.method="on"+t,this.deprecate=as[t]}function M(t,e){var n=t.indexOf(e);-1===n&&t.push(e)}function R(t,e){for(var n=0,a=t.length;a>n;n++)if(t[n]==e)return!0;return!1}function j(t,e){var n;if(!i(t)||!i(e))return!1;if(t.length!==e.length)return!1;for(n=t.length;n--;)if(t[n]!==e[n])return!1;return!0}function L(t){return"string"==typeof t?[t]:void 0===t?[]:t}function N(t){return t[t.length-1]}function D(t,e){var n=t.indexOf(e);-1!==n&&t.splice(n,1)}function F(t){for(var e=[],n=t.length;n--;)e[n]=t[n];return e}function I(t){setTimeout(t,0)}function B(t,e){return function(){for(var n;n=t.shift();)n(e)}}function q(t,e,n,a){var r;if(e===t)throw new TypeError("A promise's fulfillment handler cannot return the same promise");
+if(e instanceof rs)e.then(n,a);else if(!e||"object"!=typeof e&&"function"!=typeof e)n(e);else{try{r=e.then}catch(i){return void a(i)}if("function"==typeof r){var o,s,p;s=function(e){o||(o=!0,q(t,e,n,a))},p=function(t){o||(o=!0,a(t))};try{r.call(e,s,p)}catch(i){if(!o)return a(i),void(o=!0)}}else n(e)}}function G(t,e,n){var a;return e=S(e),"~/"===e.substr(0,2)?(a=P(e.substring(2)),z(t,a.firstKey,n)):"."===e[0]?(a=U(cs(n),e),a&&z(t,a.firstKey,n)):a=V(t,P(e),n),a}function U(t,e){var n;if(void 0!=t&&"string"!=typeof t&&(t=t.str),"."===e)return P(t);if(n=t?t.split("."):[],"../"===e.substr(0,3)){for(;"../"===e.substr(0,3);){if(!n.length)throw Error('Could not resolve reference - too many "../" prefixes');n.pop(),e=e.substring(3)}return n.push(e),P(n.join("."))}return P(t?t+e.replace(/^\.\//,"."):e.replace(/^\.\/?/,""))}function V(t,e,n,a){var r,i,o,s,p;if(e.isRoot)return e;for(i=e.firstKey;n;)if(r=n.context,n=n.parent,r&&(s=!0,o=t.viewmodel.get(r),o&&("object"==typeof o||"function"==typeof o)&&i in o))return r.join(e.str);return W(t.viewmodel,i)?e:t.parent&&!t.isolated&&(s=!0,n=t.component.parentFragment,i=P(i),p=V(t.parent,i,n,!0))?(t.viewmodel.map(i,{origin:t.parent.viewmodel,keypath:p}),e):a||s?void 0:(t.viewmodel.set(e,void 0),e)}function z(t,e){var n;!t.parent||t.isolated||W(t.viewmodel,e)||(e=P(e),(n=V(t.parent,e,t.component.parentFragment,!0))&&t.viewmodel.map(e,{origin:t.parent.viewmodel,keypath:n}))}function W(t,e){return""===e||e in t.data||e in t.computations||e in t.mappings}function H(t){t.teardown()}function Q(t){t.unbind()}function K(t){t.unrender()}function $(t){t.cancel()}function Y(t){t.detach()}function X(t){t.detachNodes()}function J(t){!t.ready||t.outros.length||t.outroChildren||(t.outrosComplete||(t.parent?t.parent.decrementOutros(t):t.detachNodes(),t.outrosComplete=!0),t.intros.length||t.totalChildren||("function"==typeof t.callback&&t.callback(),t.parent&&t.parent.decrementTotal()))}function Z(){for(var t,e,n;ds.ractives.length;)e=ds.ractives.pop(),n=e.viewmodel.applyChanges(),n&&gs.fire(e,n);for(tt(),t=0;t=0;i--)r=t._subs[e[i]],r&&(s=gt(t,r,n,a)&&s);if(Vs.dequeue(t),t.parent&&s){if(o&&t.component){var p=t.component.name+"."+e[e.length-1];e=P(p).wildcardMatches(),n&&(n.component=t)}vt(t.parent,e,n,a)}}function gt(t,e,n,a){var r=null,i=!1;n&&!n._noArg&&(a=[n].concat(a)),e=e.slice();for(var o=0,s=e.length;s>o;o+=1)e[o].apply(t,a)===!1&&(i=!0);return n&&!n._noArg&&i&&(r=n.original)&&(r.preventDefault&&r.preventDefault(),r.stopPropagation&&r.stopPropagation()),!i}function bt(t){var e={args:Array.prototype.slice.call(arguments,1)};zs(this,t,e)}function yt(t){var e;return t=P(S(t)),e=this.viewmodel.get(t,Qs),void 0===e&&this.parent&&!this.isolated&&ls(this,t.str,this.component.parentFragment)&&(e=this.viewmodel.get(t)),e}function _t(e,n){if(!this.fragment.rendered)throw Error("The API has changed - you must call `ractive.render(target[, anchor])` to render your Ractive instance. Once rendered you can use `ractive.insert()`.");if(e=t(e),n=t(n)||null,!e)throw Error("You must specify a valid target to insert into");e.insertBefore(this.detach(),n),this.el=e,(e.__ractive_instances__||(e.__ractive_instances__=[])).push(this),this.detached=null,xt(this)}function xt(t){$s.fire(t),t.findAllComponents("*").forEach(function(t){xt(t.instance)})}function wt(t,e,n){var a,r;return t=P(S(t)),a=this.viewmodel.get(t),i(a)&&i(e)?(r=bs.start(this,!0),this.viewmodel.merge(t,a,e,n),bs.end(),r):this.set(t,e,n&&n.complete)}function kt(t,e){var n,a;return n=C(t,e),a={},n.forEach(function(e){a[e.str]=t.get(e.str)}),a}function Pt(t,e,n,a){var r,i,o;e=P(S(e)),a=a||cp,e.isPattern?(r=new pp(t,e,n,a),t.viewmodel.patternObservers.push(r),i=!0):r=new Zs(t,e,n,a),r.init(a.init),t.viewmodel.register(e,r,i?"patternObservers":"observers"),r.ready=!0;var s={cancel:function(){var n;o||(i?(n=t.viewmodel.patternObservers.indexOf(r),t.viewmodel.patternObservers.splice(n,1),t.viewmodel.unregister(e,r,"patternObservers")):t.viewmodel.unregister(e,r,"observers"),o=!0)}};return t._observers.push(s),s}function Ct(t,e,n){var a,r,i,o;if(u(t)){n=e,r=t,a=[];for(t in r)r.hasOwnProperty(t)&&(e=r[t],a.push(this.observe(t,e,n)));return{cancel:function(){for(;a.length;)a.pop().cancel()}}}if("function"==typeof t)return n=e,e=t,t="",up(this,t,e,n);if(i=t.split(" "),1===i.length)return up(this,t,e,n);for(a=[],o=i.length;o--;)t=i[o],t&&a.push(up(this,t,e,n));return{cancel:function(){for(;a.length;)a.pop().cancel()}}}function Et(t,e,n){var a=this.observe(t,function(){e.apply(this,arguments),a.cancel()},{init:!1,defer:n&&n.defer});return a}function St(t,e){var n,a=this;if(t)n=t.split(" ").map(dp).filter(hp),n.forEach(function(t){var n,r;(n=a._subs[t])&&(e?(r=n.indexOf(e),-1!==r&&n.splice(r,1)):a._subs[t]=[])});else for(t in this._subs)delete this._subs[t];return this}function At(t,e){var n,a,r,i=this;if("object"==typeof t){n=[];for(a in t)t.hasOwnProperty(a)&&n.push(this.on(a,t[a]));return{cancel:function(){for(var t;t=n.pop();)t.cancel()}}}return r=t.split(" ").map(dp).filter(hp),r.forEach(function(t){(i._subs[t]||(i._subs[t]=[])).push(e)}),{cancel:function(){return i.off(t,e)}}}function Ot(t,e){var n=this.on(t,function(){e.apply(this,arguments),n.cancel()});return n}function Tt(t,e,n){var a,r,i,o,s,p,u=[];if(a=Mt(t,e,n),!a)return null;for(r=t.length,s=a.length-2-a[1],i=Math.min(r,a[0]),o=i+a[1],p=0;i>p;p+=1)u.push(p);for(;o>p;p+=1)u.push(-1);for(;r>p;p+=1)u.push(p+s);return 0!==s?u.touchedFrom=a[0]:u.touchedFrom=t.length,u}function Mt(t,e,n){switch(e){case"splice":for(void 0!==n[0]&&n[0]<0&&(n[0]=t.length+Math.max(n[0],-t.length));n.length<2;)n.push(0);return n[1]=Math.min(n[1],t.length-n[0]),n;case"sort":case"reverse":return null;case"pop":return t.length?[t.length-1,1]:[0,0];case"push":return[t.length,0].concat(n);case"shift":return[0,t.length?1:0];case"unshift":return[0,0].concat(n)}}function Rt(e,n){var a,r,i,o=this;if(i=this.transitionsEnabled,this.noIntro&&(this.transitionsEnabled=!1),a=bs.start(this,!0),bs.scheduleTask(function(){return Mp.fire(o)},!0),this.fragment.rendered)throw Error("You cannot call ractive.render() on an already rendered instance! Call ractive.unrender() first");if(e=t(e)||this.el,n=t(n)||this.anchor,this.el=e,this.anchor=n,!this.append&&e){var s=e.__ractive_instances__;s&&s.length&&jt(s),e.innerHTML=""}return this.cssId&&Op.apply(),e&&((r=e.__ractive_instances__)?r.push(this):e.__ractive_instances__=[this],n?e.insertBefore(this.fragment.render(),n):e.appendChild(this.fragment.render())),bs.end(),this.transitionsEnabled=i,a.then(function(){return Rp.fire(o)})}function jt(t){t.splice(0,t.length).forEach(H)}function Lt(t,e){for(var n=t.slice(),a=e.length;a--;)~n.indexOf(e[a])||n.push(e[a]);return n}function Nt(t,e){var n,a,r;return a='[data-ractive-css~="{'+e+'}"]',r=function(t){var e,n,r,i,o,s,p,u=[];for(e=[];n=Ip.exec(t);)e.push({str:n[0],base:n[1],modifiers:n[2]});for(i=e.map(Ft),p=e.length;p--;)s=i.slice(),r=e[p],s[p]=r.base+a+r.modifiers||"",o=i.slice(),o[p]=a+" "+o[p],u.push(s.join(" "),o.join(" "));return u.join(", ")},n=qp.test(t)?t.replace(qp,a):t.replace(Fp,"").replace(Dp,function(t,e){var n,a;return Bp.test(e)?t:(n=e.split(",").map(Dt),a=n.map(r).join(", ")+" ",t.replace(e,a))})}function Dt(t){return t.trim?t.trim():t.replace(/^\s+/,"").replace(/\s+$/,"")}function Ft(t){return t.str}function It(t){t&&t.constructor!==Object&&("function"==typeof t||("object"!=typeof t?l("data option must be an object or a function, `"+t+"` is not valid"):m("If supplied, options.data should be a plain JavaScript object - using a non-POJO as the root object may work, but is discouraged")))}function Bt(t,e){It(e);var n="function"==typeof t,a="function"==typeof e;return e||n||(e={}),n||a?function(){var r=a?qt(e,this):e,i=n?qt(t,this):t;return Gt(r,i)}:Gt(e,t)}function qt(t,e){var n=t.call(e);if(n)return"object"!=typeof n&&l("Data function must return an object"),n.constructor!==Object&&v("Data function returned something other than a plain JavaScript object. This might work, but is strongly discouraged"),n}function Gt(t,e){if(t&&e){for(var n in e)n in t||(t[n]=e[n]);return t}return t||e}function Ut(t){var e=Po(Kp);return e.parse=function(e,n){return Vt(e,n||t)},e}function Vt(t,e){if(!Hp)throw Error("Missing Ractive.parse - cannot parse template. Either preparse or use the version that includes the parser");return Hp(t,e||this.options)}function zt(t,e){var n;if(!Ji){if(e&&e.noThrow)return;throw Error("Cannot retrieve template #"+t+" as Ractive is not running in a browser.")}if(Wt(t)&&(t=t.substring(1)),!(n=document.getElementById(t))){if(e&&e.noThrow)return;throw Error("Could not find template element with id #"+t)}if("SCRIPT"!==n.tagName.toUpperCase()){if(e&&e.noThrow)return;throw Error("Template element with id #"+t+", must be a